
/*CARRUSEL*******************************************************/

#gallery-big {
    display: none;
}

.gallery {
    width: 100%;
    display: flex;
}

.gallery-container-big,
.gallery-container-small {
    align-items: center;
    display: flex;
    margin: 0 auto;
    max-width: 100%;
    /*position: relative;*/
}

.gallery-item-big,
.gallery-item-small {
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease-in-out;
    z-index: 0;
    width: 5%;
}

.gallery-item-1,
.gallery-item-5 {
    height: auto;
    width: 24%;
    max-width: 250px;
    max-height: 250px;
}

.gallery-item-1 {
    left: 15%;
    opacity: 1;
    transform: translateX(-50%);
}

.gallery-item-2,
.gallery-item-4 {
    height: auto;
    width: 36%;
    opacity: 1;
    z-index: 1;
    max-width: 400px;
    max-height: 400px;
}

.gallery-item-2 {
    left: 30%;
    transform: translateX(-50%);
}

.gallery-item-3 {
    height: auto;
    width: 50%;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    max-width: 550px;
    max-height: 550px;
}

.gallery-item-4 {
    left: 70%;
    transform: translateX(-50%);
}

.gallery-item-5 {
    left: 85%;
    opacity: 1;
    transform: translateX(-50%);
}

.gallery-controls-small {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    width: 100%;
    margin: auto;
}

    .gallery-controls-small button {
        color: transparent;
        background-color: transparent;
        cursor: pointer;
        height: 200px;
        width: 50%;
    }

        .gallery-controls-big button:focus,
        .gallery-controls-small button:focus {
            outline: none;
        }

.gallery-controls-previous {
    position: relative;
}

.gallery-controls-next {
    position: relative;
}

.selector {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    max-width: 90vw;
    margin: auto;
    gap: 15px;
    text-align: center;
}

.selector__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dark-blue);
    background-color: rgba(235, 245, 249, 0.5);
    /*border: solid 3px var(--dark-blue);*/
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    opacity: 60%;
    border: solid 3px #888;
}

    .selector__container.active {
        background-color: rgba(235, 245, 249, 1);
        border-width: 5px;
        border-color: var(--gold);
        opacity: 100%;
    }

.selector__label {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.selector__input {
}

#selector__input--p {
    font-family: var(--font-normal);
    font-weight: var(--regular);
    color: var(--dark-blue);
    font-size: 14px;
    line-height: 20px;
    padding-top: 20px;
}

@media all and (min-width: 768px) {
    .popular-intro {
        display: block;
        height: 90vh;
        min-height: 800px;
        max-height: 1100px;
        padding-top: 0;
    }


    #gallery-big {
        display: block;
    }

    .gallery {
        z-index: 5;
        display: flex;
    }

    .gallery-container-big,
    .gallery-container-small {
        align-items: center;
        display: flex;
        margin: 0 auto;
        max-width: 100%;
        /*position: relative;*/
    }

    .gallery-item-big,
    .gallery-item-small {
        height: 0;
        opacity: 0;
        position: absolute;
        transform: translateX(-50%);
        transition: all 0.3s ease-in-out;
        width: 0;
    }

    .gallery-item-1,
    .gallery-item-5 {
        opacity: 1;
        height: auto;
        width: 10%;
    }

    .gallery-item-1 {
    }

    .gallery-item-2,
    .gallery-item-4 {
        opacity: 1;
        height: auto;
        width: 20%;
    }

    .gallery-item-2 {
    }

    .gallery-item-3 {
        opacity: 1;
        height: auto;
        width: 30%;
    }

    .gallery-item-4 {
    }

    .gallery-item-5 {
    }

    .gallery-controls-big {
        gap: 42%;
        position: relative;
        z-index: 5;
        max-width: 839px;
        bottom: 53vh;
        margin: auto;
    }

        .gallery-controls-big button,
        .gallery-controls-small button {
            background-color: transparent;
            height: 200px;
            width: 29%;
        }

            .gallery-controls-big button:focus,
            .gallery-controls-small button:focus {
            }

    .gallery-controls-previous {
    }

    .gallery-controls-next {
    }


    .gallery-controls-big {
        display: flex;
        justify-content: center;
        gap: 42%;
        position: relative;
        z-index: 5;
        max-width: 100%;
        top: -25vh;
        margin: auto;
    }

        .gallery-controls-big button {
            color: transparent;
            background-color: transparent;
            cursor: pointer;
            height: 400px;
            width: 25%;
        }

    #gallery-small {
        display: none;
    }
}
