.choices__list--dropdown {
    /*
        Z-index must be higher than profile picture (2) and price icon (3)
    */
    z-index: 4;
}

.flag-svg-container>div {
    vertical-align: middle;
    margin-right: 10px;
}

@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 0px;
    }
}

@media (max-width: 768px) {
    .slider-padding {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: var(--bs-primary);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
    opacity: .85;
    transition: opacity .2s;
}

#back-to-top:hover {
    opacity: 1;
}