.glass-search-container {
    background: -webkit-linear-gradient(#FAFAFAB5, #D8D8D866);
    border-radius: 20px;
    padding: 20px;
    margin-top: 40px;
    margin-left: 100px;
    margin-right: 100px;
    width: auto;
    height: 182px;
    border-radius: 25px;
    position: relative;
}

.glass-search-container img {
    width: 20px;
    height: 20px;
}

.container-input {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-tabs {
    display: flex;
    justify-content: space-between;
    width: 985px;
    height: 53px;
    border-radius: 12px;

}

.tabs-left {
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    background: white;
    font-size: 15px;
    width: 448px;
    border-radius: 12px;
    height: 52px;
}

.tabs-left button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #00000052;
}

.tabs-left button.active {
    font-weight: 600;
    color: #7DA6E580;

}

.tabs-left button img {
    width: 19px;
    height: 19px;
}

.search-btn {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background-color: #3b5998;
    border: none;
    cursor: pointer;
    color: #FFFFFFD1;
    width: 129px;
    height: 53px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 15px;
    position: absolute;
    top: 20px;
    left: calc(20px + 985px - 129px);
}

.search-btn img {
    width: 19px;
    height: 19px;
}

.search-inputs {
    margin-top: 5px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: flex-start;
    gap: 20px;
    width: 985px;
    height: 71px;
    border-radius: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 15px;

}

.input-group input {
    border: none;
    outline: none;
    color: #00000052;
    font-weight: bold;
    font-size: 13px;
    width: 120px;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: #00000052;
}

#footer-more-countries {
    color: #FFFFFFB2;
    text-decoration: none;
    font-size: 15px;
}

@media (max-width: 768px) {

    .glass-search-container {
        margin-left: 15px;
        margin-right: 15px;
        height: auto;
        padding: 15px;
    }

    .search-tabs {
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 10px;
    }

    .tabs-left {
        width: 100%;
        padding: 10px 15px;
        height: auto;
        overflow: hidden;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .tabs-left::-webkit-scrollbar {
        display: none;
    }

    .search-inputs {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 15px;
        gap: 15px;
    }

    .container-input {
        width: 100%;
    }

    .divider {
        display: none;
    }

    .search-btn {
        position: static;
        width: 100%;
        margin-top: 10px;
    }
}