.excursion-btn span {
  font-size: 14px;
}

.excursion-filter .nice-select {
    border: #fff !important;
}

div.excursion-filter .nice-select .list {
    width: 100%;
    max-height: 350px;
    overflow-y: auto;
}

/* сообщение что ничего не найдено */

div.row.excursion-rov .noresult_message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}
div.row.excursion-rov .noresult_message div {
    text-align: center;
}

/* прелоадер экскурсий */

div.row.excursion-rov .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    flex-direction: column;
}

div.row.excursion-rov .bouncing-dots {
    display: flex;
    justify-content: space-between;
    width: 60px;
}

div.row.excursion-rov .dot {
    width: 15px;
    height: 15px;
    background-color: #FF5C35;
    border-radius: 50%;
    animation: bounce 1.5s infinite;
}

div.row.excursion-rov .dot:nth-child(1) {
    animation-delay: 0s;
}

div.row.excursion-rov .dot:nth-child(2) {
    animation-delay: 0.3s;
}

div.row.excursion-rov .dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}