:root {
    --green-color: #798473;
    --green-color-opaque: #79847366;
    --yellow-color: #d6bf5a;
    --yellow-color-opaque: #d6bf5a66;
    --red-color: #9a6456;
    --red-color-opaque: #9a645666;
    --blue-color: #5a8bbf;
    --blue-color-opaque: #5a8bbf66;
    --light-blue-color: #8bbfe6;
    --light-blue-color-opaque: #8bbfe666;
    --dark-blue-color: #3a6a8d;
    --dark-blue-color-opaque: #3a6a8d66;
    --tree-line-color: rgba(0, 0, 0, 0.2);
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("/fonts/HelveticaNeueLTPro-Roman.otf") format("opentype");
}

@font-face {
    font-family: "Helvetica Neue Fat";
    src: url("/fonts/HelveticaNeueLTPro-Hv.otf") format("opentype");
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/Gotham-Book.otf") format("opentype");
}


@font-face {
    font-family: "Gotham fat";
    src: url("/fonts/Gotham-Black.otf") format("opentype");
}


/*@import url('/fonts/Gotham-Black.otf');
@import url('/fonts/Gotham-Book.otf');
@import url('/fonts/HelveticaNeueLTPro-Hv.otf');
@import url('/fonts/HelveticaNeueLTPro-Roman.otf');
@import url('/fonts/MinionPro-Regular.otf');
*/
.circle, .area {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--admin-background-color);
}

.puk, .area {
    /*border: 10px solid #e6e1dc;*/
    /*background: #e6e1dc;*/
    background-image: url('/Images/Ear/Geist.gallery_Light.svg');
    /*background: linear-gradient(135deg, rgba(238,237,237,0.59) 0%, rgba(231,230,228,0.59) 50%, rgba(140,137,135,0.59) 100%);*/
    box-shadow: 16px 15px 41px 5px rgba(0,0,0,0.49);
    -webkit-box-shadow: 16px 15px 41px 5px rgba(0,0,0,0.49);
    -moz-box-shadow: 16px 15px 41px 5px rgba(0,0,0,0.49);
}

    .puk > p, .area > p {
        font-family: "Helvetica Neue";
        color: white;
        font-size: min(4vw, 75px);
        font-weight: 600;
        text-align: left;
        margin-left: min(4vw, 73px);
        max-width: 400px;
    }

    .area > p {
        font-size: min(25vw, 15px);
        margin-left: min(25vw, 5px);
        color: black;
        font-weight: normal;
    }

    .puk > img {
        display: none;
    }


body {
    font-family: 'Helvetica Neue';
}


dialog a {
    outline: none;
}

dialog[open] {
    animation: myFadeIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) normal;
}

    dialog[open]::backdrop {
        animation: myFadeInBackground 0.4s ease normal;
    }

dialog.hide {
    animation: myFadeOut 0.4s ease normal;
}

    dialog.hide::backdrop {
        animation: myFadeOutBackground 0.4s ease normal;
    }

dialog::backdrop {
    transition-duration: 1s;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.large-screen {
    display: none;
}


.small-screen {
    display: none;
}

@media (min-width: 901px) {
    .large-screen {
        display: initial;
    }
}

@media (max-width: 900px) {
    .small-screen {
        display: initial;
    }

    html, body {
        overflow-x: hidden;
    }

    body {
        position: relative
    }
}

@keyframes myFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    /*
    50% {
        opacity: 1;
        transform: scale(1.2);
    }*/

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes myFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes myFadeInBackground {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes myFadeOutBackground {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.inner-shadow {
    box-shadow: inset 6px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

    .inner-shadow > img {
        z-index: 1;
        display: none;
    }

.circle {
    /*background-size: 500px 500px;*/
    background-size: cover;
}

#circle1 {
    background-image: url('/Images/FrontPage/Circle3.jpg');
}

#circle3 {
    background-image: url('/Images/FrontPage/Circle8.jpg');
}

#circle6 {
    background-image: url('/Images/FrontPage/Circle6.jpg');
}


#login-modal,
#forgot-password-modal,
#geist.gallery-menu-box {
    width: 768px;
    height: 390px;
    max-width: 90vw;
    margin: auto;
    border: none;
    border-radius: 5px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    #login-modal.long-version {
        height: 550px;
    }

    #login-modal > .wrapper {
        display: grid;
        grid-template-columns: auto 400px;
        gap: 20px;
    }

        #login-modal > .wrapper > .left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        #login-modal > .wrapper > .right {
            width: 320px;
            justify-self: right;
        }

    #forgot-password-modal > .wrapper {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr auto;
    }

        #forgot-password-modal > .wrapper .left {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr 1fr;
        }

    #login-modal input, #forgot-password-modal input {
        font-size: 1em;
        padding: 5px;
    }

    #login-modal #forgot-password {
        border: none;
        background: none;
        text-align: left;
        cursor: pointer;
    }

    #login-modal #login,
    #forgot-password-modal #reset-password-button {
        border: none;
        background: white;
        cursor: pointer;
        width: 128px;
        padding: 10px;
        border-radius: 15px;
        font-size: 1em;
        color: white;
        background: var(--green-color);
        opacity: 0.8;
        /*border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);*/
    }

        #login-modal #login:hover,
        #forgot-password-modal #reset-password-button:hover {
            opacity: 1;
        }

    #forgot-password-modal #error-message-forgot-password {
        grid-column: span 2;
        justify-self: center;
    }

    #login-modal #login {
        align-self: end;
    }

    #forgot-password-modal #reset-password-button {
        grid-column: span 2;
        align-self: end;
        justify-self: end;
    }

    #login-modal #error-message,
    #forgot-password-modal #error-message-forgot-password {
        color: red;
    }

    #login-modal #close-login-modal,
    #close-forgot-password-modal {
        border: none;
        background: none;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2em;
    }

        #login-modal #close-login-modal:hover,
        #close-forgot-password-modal:hover {
            color: rgba(255,255,255,0.6);
        }


.close-button {
    border: none;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2em;
}

@media (max-width: 900px) {
    #login-modal,
    #geist.gallery-menu-box {
        height: 100%;
        width: 100%;
        border: none;
        padding: 0px;
    }

        #login-modal .wrapper {
            grid-template-columns: auto;
        }

        #login-modal .left {
            width: 90%;
            margin: 20px;
        }

        #login-modal .right {
            display: none;
        }

    #geist.gallery-menu-box {
        padding: 20px;
    }

    dialog ul > li {
        list-style-type: none;
        margin: 20px;
    }

        dialog ul > li a {
            font-size: 2em;
        }
}

.geist.gallery-button {
    background-color: transparent;
    box-shadow: none;
    border: none;
    color: grey;
    font-size: 18px;
    font-weight: bold;
    margin: unset;
    display: flex;
    align-items: center;
}

    .geist.gallery-button:hover {
        background-color: transparent;
        color: black;
        border-color: black;
    }

    .geist.gallery-button:focus {
        background-color: transparent;
    }

    .geist.gallery-button::before {
        content: '\EA6C';
        font-family: remixicon;
        display: flex;
        align-items: center;
        align-content: center;
        margin-right: 40px;
        border: 1px solid grey;
        padding: 5px;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        display: inline-block;
        text-align: center;
        transition-duration: 0.5s;
    }

    .geist.gallery-button:hover::before {
        color: black;
    }


    .geist.gallery-button.opened:before {
        transform: rotate(90deg);
    }


.geist.gallery-toggle-panel {
    display: none;
}

    .geist.gallery-toggle-panel li {
        list-style: none;
    }

    .geist.gallery-toggle-panel.opened {
        display: block;
    }


.simple-button {
    background-color: transparent;
    color: black;
    border: none;
    box-shadow: none;
    font-weight: bold;
    width: unset;
}

    .simple-button:hover, .simple-button:active, .simple-button:focus {
        background-color: transparent;
        color: black;
        text-decoration: underline;
    }

page-header {
    display: none;
}

#add-new-room-dialog {
    position: absolute;
    top: 100px;
}
