.window {
    position: absolute;
    top: 50%;
    left: -150%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90vh;
    background-color: rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    border-radius: 10px;
    z-index: 102;
    transition: all 500ms;
    transition-delay: 500ms;
    font-family: 'Montserrat', sans-serif;
}



.window-roll {
    left: 50%
}

.window-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 15%;
    margin: 0 !important;
    padding: 0 !important;
    color: white;
    font-size: 3rem;
    text-align: center;
    border-bottom: .2rem solid white;
    flex-wrap: nowrap !important;
}

.logo-container {
    height: 100%;
    padding: 0 !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.window-header-text {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    font-size: 45px;
    text-decoration: underline;
    text-decoration-color: #e63a4b;
    font-weight: 900;
    transition: all 500ms;

}


.close-window {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
}

.close-window span {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    transition: all 500ms;
}

.close-window span:hover {
   color: #2363cb;
    transform: scale(1.4);
}

.window-content {
    display: flex;
    width: 100%;
    height: 70%;
    border-bottom: .2rem solid white;
}

.window-left {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    transition: all 400ms ;
}

.window-right {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    width: 35%;
    height: 100%;
}

.county-img-container {
    position: relative;
    width: 90%;
    height: 60%;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center center !important;
}

@media (hover: hover) {
    .county-img-container img:hover {
        animation: gelatine 2s infinite;
    }
}

.county-img-container img:hover {
    animation: gelatine 2s;
}

@keyframes gelatine {
    from, to { transform: scale(1, 1); }
    25% { transform: scale(0.9, 1.1); }
    50% { transform: scale(1.1, 0.9); }
    75% { transform: scale(0.95, 1.05); }
}



.info-panel {
    padding: 0;
    margin: 0;
    width: 80%;
    height: 100%;
    overflow-y: scroll;
    justify-content: center;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    color: white;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.info-panel::-webkit-scrollbar {
    display: none;
}

.logo-placeholder {
    align-self: center;
    justify-self: center;
    width: 35% !important;
    margin-left: 12rem;
}


.img-panel {
    position: relative;
    contain: content;
    width: 20%;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.img-panel::-webkit-scrollbar {
    display: none;
}


.img-container {
    cursor: pointer;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    padding: .1rem 0;
}

.img-container img {
    width: 100%;
}

.img-container:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    /*border: 3px solid #e63a4b;*/
}

.arrow-container {
    position: relative;
    height: 100%;
}

.arrow-container-2 {
    position: relative;
    height: 100%;
}

.img-roll-up,
.img-roll-down {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 102;
    background-color: rgb(35, 99, 203, .8);
    backdrop-filter: blur(5px);
    color: white;
}

.img-roll-up {
    display: none;
    top: 1%;
    right: 0%;
    transform: translateX(-10px);

}

.img-roll-down {
    display: none;
    bottom: 1%;
    right: 0%;
    transform: translateX(-10px);
}



.img-roll-up:hover,
.img-roll-down:hover {
    background-color: rgb(35, 99, 203, 1);
    cursor: pointer;
}

.img-roll-up-2,
.img-roll-down-2 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 102;
    background-color: rgb(35, 99, 203, .8);
    backdrop-filter: blur(5px);
    color: white;
}

.img-roll-up-2 {
    display: none;
    top: 1%;
    right: 0%;
    transform: translateX(-10px);

}

.img-roll-down-2 {
    display: none;
    bottom: 1%;
    right: 0%;
    transform: translateX(-10px);
}



.img-roll-up-2:hover,
.img-roll-down-2:hover {
    background-color: rgb(35, 99, 203, 1);
    cursor: pointer;
}


.info-contact {
    padding-right: 0 !important;
}

.info-panel h3 {
    font-size: 26px;
    font-weight: bold;
}

.info-contact b,
.info-area b,
.info-terminal b,
.info-route b
{
    color: #2363cb;
    font-size: 18px;

}


.info-contact p,
.info-area p,
.info-terminal p {
    line-height: 18px;
    padding: 0;
    margin-bottom: 15px;
}


.info-btn-container {
    width: 100%;
    height: 15%;
    border-bottom: 2px solid black;
}

.gallery-btn {
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 0 15px  #2363cb;
    font-size: 35px;
    position: absolute;
    top: 1px;
    width: 101%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    backdrop-filter: blur(2px);
    z-index: 200;
    cursor: pointer;
}

@media screen and (min-width: 1600px) {
    .info-panel h3 {
        font-size: 34px;
    }
    .info-contact b,
    .info-area b,
    .info-terminal b,
    .info-route b
    {
        font-size: 20px;
    }

    .info-contact p,
    .info-area p,
    .info-terminal p {
        font-size: 18px;
        line-height: 22px;
    }
}
@media screen and (max-width: 1460px) {
    .window-header-text {
        font-size: 35px;

    }
}



@media screen and (max-width: 1200px) {


    .window-header-text {
        font-size: 30px;
    }

    .window-left {
        position: relative;
        flex-direction: column-reverse;
    }

    .arrow-container-2 {
        position: absolute;
        right: 0;
        bottom: 3.5%;
        height: 70%;
    }

    .window-right {
        width: 30%;
    }

    .info-panel {
        width: 100%;
    }

    .logo-placeholder {
        margin-left: 0;
    }

    .img-panel {
        display: flex;
        justify-content: flex-start;
        height: 30%;
        width: 100%;
        border-bottom: 3px solid #133875;
        overflow-y: hidden;
        overflow-x: scroll;
        object-fit: contain;
    }

    .img-container {
        object-fit: contain;
        height: 100%;
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }

    .img-container img {
        width: 200px;
        object-fit: contain;
    }

    .arrow-container {
        display: none;
    }


    .info-panel h3 {
        font-size: 24px;
    }

    .info-contact b,
    .info-area b,
    .info-terminal b,
    .info-route b{
        font-size: 15px;
        padding: 0;
        margin-bottom: 0px;
    }
    .info-contact p,
    .info-area p,
    .info-terminal p,
    .info-route p{
        font-size: 13px;
        padding: 0;
        margin-bottom: 5px;
    }


    .gallery-btn {
        display: flex;
    }


}

@media screen and (max-width: 1000px) {
    .window-header-text {
        font-size: 25px;
    }
}

@media screen and (max-width: 850px) {
    .window-content {
        height: 82%;
        border-bottom: 1px solid white;
    }
    .window-header {
        border-bottom: 1px solid white;
    }
    .window-header-text {
        font-weight: normal;
        font-size: 18px;
    }
    .close-window span {
        font-size: 1.2rem;
    }

    .county-img-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: none !important;
    }

}

@media screen and (max-width: 600px) {
    .window-header {
        font-size: .8rem !important;

    }

    .info-panel h3 {
        font-size: 12px;
    }

    .info-contact b,
    .info-area b,
    .info-terminal b,
    .info-route b{
        font-size: 10px;
    }
    .info-contact p,
    .info-area p,
    .info-terminal p,
    .info-route p
    {
        font-size: 10px;
    }


}
