.short-filter {
    width: 100%;
    max-width: 100% !important;
    background: transparent;
    padding: 0;
}

.short-filter ul#dest-tab {
    align-items: flex-end;
}

.short-filter ul#dest-tab li.nav-item a.nav-link {
    background: var(--second-color);
    color: var(--main-color);
    font-family: var(--principal-font);
    font-size: 26px;
    font-weight: 700;
    padding: 6px 60px 18px;
    border: 0;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.short-filter ul#dest-tab li.nav-item a.nav-link.active {
    background: var(--main-color);
    color: var(--second-color);
    padding-top: 16px;
}

.short-filter .tab-content {
    background: #fff;
    padding: 40px 24px;
    border-radius: 12px;
    top: -14px;
    position: relative;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 25%);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 25%);
}

.short-filter .tab-content .form-group {
    margin: 0;
}

.short-filter .tab-content .filter-form .form-control {
    background: #f3f3f3;
    border: 1px solid #f5f5f5;
    border-radius: 50px;
    padding: 10px 20px;
    height: 55px;
    -webkit-box-shadow: 0px 0px 10px -2px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 0px 10px -2px rgb(0 0 0 / 25%);
    box-shadow: 0px 0px 10px -2px rgb(0 0 0 / 25%);
    -webkit-appearance: none;
}

.short-filter .tab-content .filter-form .btn {
    width: 100%;
    height: 55px;
    background: var(--main-color);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid #f5f5f5;
    border-radius: 50px;
    padding: 10px 20px;
    -webkit-box-shadow: 0px 0px 10px -2px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 0px 10px -2px rgb(0 0 0 / 25%);
    box-shadow: 0px 0px 10px -2px rgb(0 0 0 / 25%);
    -webkit-appearance: none;
}

.short-filter .tab-content .filter-form .btn i {
    font-size: 20px;
    margin-left: 12px;
}


/* RESPONSIVE */

@media only screen and (max-width: 768px) {
    .short-filter ul#dest-tab li.nav-item a.nav-link {
        font-size: 18px;
        padding: 6px 28px 18px;
    }
    .short-filter .tab-content {
        padding: 40px 24px 16px;
    }
    .short-filter .tab-content .form-group {
        margin-bottom: 24px;
    }
    .short-filter .tab-content .filter-form .btn i {
        font-size: 18px;
    }
}