/*** Global Tab Select Buttons Styles ***/
#main .tab_select_buttons ul.button_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    list-style: none;
    background-color: white;
    padding: 10px;
    border: 2px solid #CCCCCC;
    border-radius: 12px;
    width: fit-content;
    width: max-content;
    margin: 0;
}
#main .tab_select_buttons ul.button_row > li,
#main .tab_select_buttons ul.button_row > li > a {
    margin-bottom: 0;
    display: inline-block;
}
#main .tab_select_buttons ul.button_row > li > a {
    padding: 20px 36px;
    background-color: white;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    text-decoration: none !important;
    font-weight: 800;
    cursor: pointer;
    transition: ease all .3s;
}
#main .tab_select_buttons ul.button_row > li > a:hover {
    opacity: 0.5;
}
#main .tab_select_buttons ul.button_row > li.active > a {
    background-color: #397CCF;
    color: white;
}
#main .tab_select_buttons ul.button_row > li.active > a:hover {
    opacity: 1;
}
@media(max-width: 1599.98px) {
    #main .tab_select_buttons ul.button_row {
        padding: 8px;
        border: 2px solid #CCCCCC;
        border-radius: 10px;
    }
    #main .tab_select_buttons ul.button_row > li > a {
        padding: 17px 28px;
        border-radius: 6px;
        font-size: 15px;
    }
}
@media(max-width: 1199.98px) {
    #main .tab_select_buttons ul.button_row {
        padding: 7px;
        border: 2px solid #CCCCCC;
        border-radius: 10px;
    }
    #main .tab_select_buttons ul.button_row > li > a {
        padding: 15px 22px;
        padding-bottom: 13px;
        border-radius: 6px;
        font-size: 14px;
    }
}

/*** Global Tab Select Dropdown Styles ***/
#main .tab_select_buttons .select_options {
    position: relative;
    height: 50px;
}
#main .tab_select_buttons .select_options .first_dropdown_option {
    position: relative;
    border: solid 1px #CCCCCC;
    background-color: white;
    padding: 15px 20px;
    padding-top: 19px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
    text-decoration: none !important;
    font-weight: 800;
    cursor: pointer;
    transition: ease all .3s;
}
#main .tab_select_buttons .select_options .first_dropdown_option::after {
    content: '';
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 12px;
    background-image: url('assets/arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#main .tab_select_buttons .select_options .first_dropdown_option.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
#main .tab_select_buttons .select_options ul.select_column {
    display: none;
    padding: 6px;
    border: solid 1px #CCCCCC;
    z-index: 3;
    background-color: white;
    position: absolute;
    width: 100%;
    top: 45px;
    left: 0;
    list-style: none;
    margin: 0;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
}
#main .tab_select_buttons .select_options ul.select_column.open {
    display: block;
}
#main .tab_select_buttons .select_options ul.select_column li {
    background-color: white;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 13px;
    text-decoration: none !important;
    margin-bottom: 0;
    position: relative;
}
#main .tab_select_buttons .select_options ul.select_column li::after {
    content: '';
    height: 15px;
    width: 15px;
    display: block;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-image: url('assets/tick.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition: ease all .3s;
}
#main .tab_select_buttons .select_options ul.select_column li,
#main .tab_select_buttons .select_options ul.select_column li a {
    text-decoration: none !important;
}
#main .tab_select_buttons .select_options ul.select_column li.active {
    background-color: #F6F9FC;
}
#main .tab_select_buttons .select_options ul.select_column li.active::after {
    opacity: 1;
}

