.tour-tourists-index__search form {
    display: grid;
    grid-template-columns: repeat(4, 4fr);
    align-items: flex-end;
    grid-gap: 20px;
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
    padding: 20px 0;
    margin-bottom: 20px;
}

.tour-tourists-index__search label {
    display: block;
    font-size: 14px;
}

.tour-tourists-index__search .search__input,
.tour-tourists-index__search .search__select {
    height: 40px;
    font-size: 16px;
    padding: 0 20px;
    width: 100%;
    color: #353535;
    background-color: #F6F6F6;
    border: 1px solid #c5c5c5;
}

.tour-tourists-index__search .search__select + .select2-container {
    border: 1px solid #c5c5c5;
}

.tour-tourists-index__search .search__select {
    background-image: url(../../../../img/arrow-down.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    -webkit-appearance: none;
}

.tour-tourists-index__search button[type="submit"] {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    background: #ffc219 url(../../../../img/tour/history/ico-zoom.png) no-repeat 7% center;
    outline: none;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 20px;
}

.tour-tourists-index__export,
.tour-tourists-index__header {
    display: flex;
    flex-wrap: wrap;
}

.tour-tourists-index__export a,
.tour-tourists-index__header span {
    margin-bottom: 10px;
    margin-right: 15px;
}

.tour-tourists-index__export .tour-buses {
    margin-left: auto;
}

.tour-tourists-index__notice {
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .tour-tourists-index__search form {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .tour-tourists-index__search button[type="submit"] {
        justify-self: center;
        max-width: 200px;
    }
    .tour-tourists-index__export .tour-buses {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .tour-tourists-index__search form {
        grid-template-columns: 1fr;
    }
}