/* /Components/PhotoShow.razor.rz.scp.css */
.photo-show[b-o8hotr89up]
{
    z-index: 2000;
    position: fixed;
    display: grid;
    inset: 0;
    grid-template-areas:
        '. . close'
        'left . right'
        'author author author';
    grid-template-columns: min-content 1fr min-content;
    grid-template-rows: min-content 1fr;
    backdrop-filter: blur(10px);
    background-color: #000c;
    opacity: 0;
    transform: scale(.4);
    overflow: hidden;
}

.photo-show.show[b-o8hotr89up]
{
    animation: fade-in-b-o8hotr89up ease-in .25s forwards;
}

.photo-show.hide[b-o8hotr89up]
{
    animation: fade-out-b-o8hotr89up ease-in .25s forwards;
}

@keyframes fade-in-b-o8hotr89up
{
    from
    {
        opacity: 0;
        transform: scale(.4);
    }
    to
    {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-out-b-o8hotr89up
{
    from
    {
        opacity: 1;
        transform: scale(1);
    }
    to
    {
        opacity: 0;
        transform: scale(.4);
    }
}


.photo-show button[b-o8hotr89up]
{
    border: none;
    background-color: transparent;
}

.photo-show > .author[b-o8hotr89up]
{
    grid-area: author;
    color: #fff8;
    text-align: right;
    font-size: 4em;
    text-shadow: 0 0 10px #000;
    z-index: 2010;
    mix-blend-mode: hard-light;
    padding: 0 10px;
}

.photo-show > .control-close[b-o8hotr89up],
.photo-show > .navigation[b-o8hotr89up]
{
    z-index: 2010;
    width: 100px;
}


.photo-show > .control-close[b-o8hotr89up]
{
    z-index: 2010;
    grid-area: close;
    height: 60px;
    padding: 10px;
}



.photo-show > button > img[b-o8hotr89up]
{
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.photo-show > button[b-o8hotr89up]
{
    overflow: hidden;
    background-color: #0000;
}

@media (hover: hover) and (pointer: fine)
{
    .photo-show > button:hover[b-o8hotr89up]
    {
        background-color: #000a;
    }


    .photo-show > button:hover > img[b-o8hotr89up]
    {
        opacity: 0.5;
    }
}

.photo-show > button:active[b-o8hotr89up]
{
    background-color: #000a;
}


.photo-show > button:active > img[b-o8hotr89up]
{
    opacity: 0.5;
}

.photo-show > .control-previous[b-o8hotr89up]
{
    grid-area: left;
}

.photo-show > .control-next[b-o8hotr89up]
{
    grid-area: right;
}

.photo-show .view[b-o8hotr89up]
{
    overflow: hidden;
}

.photo-show .images[b-o8hotr89up]
{
    grid-area: 1 / 1 / -1 / -1;
    display: grid;
    width: 100%;
    height: 100%;
}

.photo-show .images > .image[b-o8hotr89up]
{
    grid-area: 1 / 1 / -1 / -1;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    transition: transform ease-in-out .25s, opacity ease-in-out .25s;
}

.photo-show .images .image.begin[b-o8hotr89up],
.photo-show .images .image.end[b-o8hotr89up]
{
    opacity: 0;
}

.photo-show .images .image.begin[b-o8hotr89up]
{
    transform: translateX(-10%)
}

.photo-show .images .image.end[b-o8hotr89up]
{
    transform: translateX(10%)
}

.photo-show .images > .image.center[b-o8hotr89up]
{
    opacity: 1;
}

.photo-show .images > .image > img[b-o8hotr89up]
{
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}
/* /Pages/Managements/CategoriesManagementPage.razor.rz.scp.css */
.category[b-7zd2qawze0]
{
    width: 400px;
    max-width: 600px;
    grid-template-areas:
        'name'
        'title'
        'desc'
        'buttons';
    grid-template-rows: auto auto auto auto;
}

.category > .name[b-7zd2qawze0]
{
    grid-area: name;
}

.category > .name > span[b-7zd2qawze0]
{
    font-weight: bold;
}

.category > .name a[b-7zd2qawze0]
{
    font-size: 1.4em;
    color: #26a;
    background-color: transparent;
    border: none;
    font-weight: bold;
}

.category > .name a:hover[b-7zd2qawze0]
{
    color: #48e;
}

.category > .title[b-7zd2qawze0]
{
    grid-area: title;
}

.category > .buttons[b-7zd2qawze0]
{
    grid-area: buttons;
}
/* /Pages/Managements/CategoryManagementPage.razor.rz.scp.css */

.category[b-1rm3e4wydf]
{
    width: 400px;
    max-width: 600px;
    grid-template-areas:
        'name'
        'title'
        'desc'
        'buttons';
    grid-template-rows: auto auto auto auto;
}

.category > .name[b-1rm3e4wydf]
{
    grid-area: name;
}

.category > .name > span[b-1rm3e4wydf]
{
    font-weight: bold;
}

.category > .title[b-1rm3e4wydf]
{
    grid-area: title;
}

.category > .buttons[b-1rm3e4wydf]
{
    grid-area: buttons;
}

.photo[b-1rm3e4wydf]
{
    width: 500px;
    max-width: 600px;
    grid-template-areas:
        'image name'
        'image title'
        'image author'
        'image desc'
        'image size'
        'image tags'
        'image .'
        'image buttons';
    grid-template-columns: min-content auto;
    grid-template-rows: auto auto auto auto auto auto auto;
}

.photo > img[b-1rm3e4wydf]
{

    grid-area: image;
    width: 200px;
    height: 200px;
    object-fit: contain;
    align-self: center;
}

.photo > div.name[b-1rm3e4wydf]
{
    grid-area: name;
}

.photo > div.size[b-1rm3e4wydf]
{
    grid-area: size;
}

.photo > div.title[b-1rm3e4wydf]
{
    grid-area: title;
}

.photo > div.author[b-1rm3e4wydf]
{
    grid-area: author;
}


.photo > div.description[b-1rm3e4wydf]
{
    grid-area: desc;
}

.photo > div.tags[b-1rm3e4wydf]
{
    grid-area: tags;
}

.photo > .buttons[b-1rm3e4wydf]
{
    grid-area: buttons;
}

.size[b-1rm3e4wydf]
{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

ul.tags[b-1rm3e4wydf]
{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

ul.tags > li[b-1rm3e4wydf]
{
    background-color: #eee;
    padding: 5px;
    color: #0008;
}

ul.tags > li.true[b-1rm3e4wydf]
{
    background-color: #5a58;
    padding: 5px;
    color: #000d;
}
/* /Pages/Managements/ManagementPage.razor.rz.scp.css */
.management-item.site[b-vz0dxlkvla]
{
    width: 400px;
    max-width: 500px;
    grid-template-areas:
        'name'
        'buttons';
    grid-template-rows: auto auto;
}

.management-item.site .name[b-vz0dxlkvla]
{
    font-weight: bold;
}

.management-item.site .description[b-vz0dxlkvla]
{
    color: #555;

}

/* /Pages/Managements/TagsManagementPage.razor.rz.scp.css */
.management-item.tag[b-k4jsr7ppc7]
{
    width: 400px;
    max-width: 500px;
    grid-template-areas: 'name buttons';
    grid-template-columns: auto min-content;
    padding: 0;
}

.management-item.tag > .name[b-k4jsr7ppc7]
{
    grid-area: name;
    display: flex;
    align-items: center;
    padding: 10px;
}

.management-item.tag > .name > span[b-k4jsr7ppc7]
{
    font-weight: bold;
}

.management-item.tag > .name a:hover[b-k4jsr7ppc7]
{
    color: #48e;
}

.management-item.tag > .buttons[b-k4jsr7ppc7]
{
    grid-area: buttons;
}
/* /Pages/Sections/AboutSection.razor.rz.scp.css */
.portrait[b-gebwkxjor3]
{
    width: 100%;
}
/* /Pages/Sections/GallerySection.razor.rz.scp.css */
.photos[b-shlln7d466]
{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.photos > .column[b-shlln7d466]
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.photo[b-shlln7d466]
{
    display: grid;
    box-shadow: #000a 0px 0px 20px;
    overflow: hidden;
    opacity: 0;
    transition: opacity ease-in-out 1s, height ease-in-out 1s;
}

.photo.loaded[b-shlln7d466]
{
    height: auto;
    opacity: 1;
}

.photo > img[b-shlln7d466]
{
    grid-area: 1 / 1 / -1 / -1;
    width: 100%;
    object-fit: cover;
    object-position: top;
    filter: blur(5px);
    opacity: .3;
    transition: transform ease-in-out 1s, filter ease-in-out 1s, opacity ease-in-out 1s;
    transform: scale(1.05);
}

.photo.loaded.visible img[b-shlln7d466]
{
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}

.photo.loaded.visible:hover img[b-shlln7d466]
{
    transform: scale(1.05);
}

.photo .overlay[b-shlln7d466]
{
    grid-area: 1 / 1 / -1 / -1;
    z-index: 5;
    display: grid;
    grid-template-areas:
        '. . . edit'
        ' . . . .'
        'tags tags tags tags'
        'show cat author author';
    grid-template-columns: 50px 50px auto 50px;
    grid-template-rows: 50px auto min-content 50px;
    opacity: 0;
    transition: opacity ease-in-out .5s;
}

.photo:hover .overlay[b-shlln7d466]
{
    opacity: 1;
}

.photo .overlay button[b-shlln7d466]
{
    background-color: #0005;
    border: none;
    padding: 0;
    margin: 0;
    opacity: .5;
    display: grid;
    align-items: center;
    justify-items: center;
}

@media (hover: hover) and (pointer: fine)
{

    .photo .overlay button:hover[b-shlln7d466]
    {
        background-color: #0008;
        opacity: .7;
    }
}

.photo .overlay button:active[b-shlln7d466]
{
    opacity: 1;
    background-color: #0008;
}

.photo .overlay > button.edit[b-shlln7d466]
{
    grid-area: edit;
}


.photo .overlay > button.show[b-shlln7d466]
{
    grid-area: show;
}

.photo .overlay > button.category[b-shlln7d466]
{
    grid-area: cat;
}

.photo .overlay > button.author[b-shlln7d466]
{
    grid-area: author;
    justify-self: end;
    color: #fff;
    padding: 0 20px;
    font-size: 1.4em;
}


.photo .overlay ul.tags[b-shlln7d466]
{
    grid-area: tags;
}

.photo .overlay > ul[b-shlln7d466]
{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    justify-content: left;
    align-content: center;
}

.photo .overlay > ul.tags > li[b-shlln7d466]
{
    padding: 0;
    margin: 0;
}

.photo .overlay > ul.tags > li > button[b-shlln7d466]
{
    color: #fff;
    padding: 5px;
}

.photo > .title[b-shlln7d466]
{
    grid-area: title;
    font-size: 3em;
    color: #fffa;
    background-color: #0004;
    backdrop-filter: blur(5px);
    text-align: center;
    opacity: .1;
    transition: opacity ease-in-out .4s;
    font-family: 'ArtFont';
}


.photo:hover > .title[b-shlln7d466]
{
    opacity: 1;
}

ul.filters[b-shlln7d466]
{
    display: block;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 5px;
}

ul.filters > li > button[b-shlln7d466]
{
    background-color: #fffa;
    border: none;
    padding: 10px;
    color: #555;
}

@media (hover: hover) and (pointer: fine)
{
    ul.filters > li > button:hover[b-shlln7d466]
    {
        background-color: #faaa;
    }
}

ul.filters > li > button:active[b-shlln7d466]
{
    background-color: #f888;
    color: #222;
}



.loadmore[b-shlln7d466]
{
    font-size: 1.2em;
    border: none;
    opacity: .7;
    background-color: #0002;
    padding: 10px;
    color: #000;
}

.loadmore:hover[b-shlln7d466]
{
    background-color: #0005;
    box-shadow: #0005 0 0 10px;
}





