.tours-sidebar-list {}

.tours-sidebar-list a {
    color: #636363;
    font-weight: normal;
}

.tours-sidebar-list a:hover {
    color: #39589c;
    transition: color 0.15s linear;
}


.cookie {
    position: fixed;
    bottom: 30px;
    right: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(150%);
    transition: all 0.15s ease-in-out;
    background-color: #010034d6;
    padding: 20px;
    width: 280px;
    font-size: 14px;
}
@media (max-width: 375px) {
    .cookie {
        width: 220px;
    }
}
.cookie__content {
    align-items: start;
}
.cookie__content a {
    color: #5685ff;
    text-decoration: underline;
}
.cookie__col {
    color: white;
}
.cookie.show {
    transform: translateY(0);
    opacity: 1;
    z-index: 10000;
}
.btn-cookie {
    width: 100%;
    margin-top: 1rem;
}
