.wrapper_region_table,
.region_table_box {
    display: flex;
    width: 100%;
}

.region_table_box table {
    display: block;
    width: 100%;
}

.region_table_box table tbody {
    display: table;
    width: 100%;
}

.region_table_box tr th {
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
}

tr.tr_thead {
    background-color: rgba(0, 0, 0, .05);
}

tr td {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.region_table_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.table_box_month_tab {
    display: none;
}

.table_box_month_tab.active {
     display: flex;
    flex-direction: column;
    gap: 20px;
}

h3.table_box_month_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid;
    padding: 12px 24px;
    color: #0093c3;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    margin: 2em 0 1em;
    text-transform: uppercase;
    line-height: inherit;
    border-radius: inherit;
    cursor: pointer;
    transition: all .5s ease;
}

h3.table_box_month_title .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-width: 5px 5px 0;
    border-bottom-width: 0;
    transform: rotate(-180deg);
    transition: all .5s ease;
}

.region_table_box_month.active .caret {
    transform: rotate(0deg);
}
td.cruise_price{
    position: relative;
}
.table_box_month_tab_btn {
    display: flex;
    justify-content: flex-end;
}
.table_box_month_tab_btn a {
    background: #0076FF;
    text-align: center;
    padding: 15px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    z-index: 2;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}



@media screen and (max-width: 767px) {
    .table_box_month_tab tr {
        display: flex;
        flex-wrap: wrap;
        border: 1px solid;
        margin-bottom: 10px;
    }

    tr.tr_thead {
        display: none;
    }

    .table_box_month_tab.active tr td {
        border: none;
        padding: 5px;
    }

    .table_box_month_tab td.cruise_route,
    .table_box_month_tab td.cruise_datestart,
    .table_box_month_tab td.cruise_ship_name,
    .table_box_month_tab td.cruise_days,
    .table_box_month_tab td.cruise_price{
        width: 100%;
    }
    .table_box_month_tab tr td.cruise_price {
    padding-left: 25px;
}
.table_box_month_tab tr td.cruise_price::before {
           content: attr(data-title);
        position: absolute;
        display: inline-flex;
        left: 5px;
}
}