.tab-nav2 {
    display: none;
}

.tab-content4 {
    display: none;
}

.tab-content2 {
    display: none;
}

.biggerHidden {
    display: none;
}

.options-container {
    display: none;
    width: 120px;
}

.tab-content2.active {
    display: block;
}

.search-container {
    display: flex;
    width: 100%;
}

.custom-select {
    position: relative;
    height: 54px;
    margin-right: 10px;
}

.selected-option {
    background-color: white;
    display: block;
    border: 1px solid #07819D;
    border-radius: 5px;
    cursor: pointer;
    width: 120px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #07819D;
    font-size: 18px;
}

.options-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: auto;
}

.options-container ul li {
    width: 100%;
    height: 45px;
    border-bottom: 1px #07819D solid;
    border-right: 1px #07819D solid;
    border-left: 1px #07819D solid;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #07819D;
    background: #fff;
}

#searchInput {
    font-size: 18px;
    height: 54px;
    border: 0px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.inputbox {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    width: calc(100% - 242px);
}

button {
    width: 100px;
    height: 58px;
    border: none;
    border-radius: 5px;
    background-color: #00CCDE;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.smallHidden:hover {
    background-color: #fff;
    color: #b7282e;
}

.smallHidden {
    background: #b7282e;
    font-size: 22px;
}

#searchInput::placeholder {
    color: #ccc;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .selected-option {
        border-radius: 5px;
        width: 75px;
        height: 35px;
        font-size: 14px;
    }

    .options-container {
        width: 75px;
    }

    #searchInput {
        font-size: 14px;
        height: 35px;
        padding: 0 10px;
    }

    .options-container ul li {
        width: 75px;
        height: 35px;
        font-size: 13px;
    }

    .inputbox {
        width: calc(100% - 145px);
        height: 35px;
        margin-right: 5px;
    }

    #searchInput::placeholder {
        font-size: 14px;
    }

    .smallHidden {
        height: 37px;
        font-size: 14px;
        width: 60px;
    }

    .custom-select {
        margin-right: 5px;
    }

}