.container_logistic {
    flex: 1 1 auto;
}

.my_journey_tab,
.two_items_logistic,
.my_quote_tab {
    border-radius: 8px;
    margin-bottom: 15px;
    transition: .2s ease;
    box-shadow: 0 0 10px #cdcdcd;
}

.title_tab_logistic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 5px calc(10px + (20 - 10) * (100vw - 320px) / (1600 - 320));
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #d9d9d9;
}

.title_tab_text {
    transition: .2s ease;
    color: #545454;
}

.title_tab_btn {
    margin-right: 10px;
    padding: 5px 15px;
    background-color: #414141;
    border-radius: 8px;
    transition: .2s ease;
}

.tab_logistic {
    width: 100%;
}

.my_journey_head {
    background-color: var(--bac-color);
    color: white;
}

.my_journey_text:nth-of-type(odd) {
    background-color: #c7e3c7;
}

.my_journey_head th,
.my_journey_text td {
    padding: calc(10px + (15 - 10) * (100vw - 320px) / (1600 - 320)) 0 calc(10px + (15 - 10) * (100vw - 320px) / (1600 - 320)) calc(10px + (15 - 10) * (100vw - 320px) / (1600 - 320));
}

.view_all_btn {
    margin: 15px 10px 15px auto;
    padding: 5px 15px;
    background-color: var(--bac-color);
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    text-transform: uppercase;
    transition: .2s ease;
}

.view_all_btn:hover {
    color: white;
}

.tabs_logistic_row {
    display: flex;
    justify-content: space-between;
}

.two_items_logistic,
.my_quote_tab {
    width: calc(50% - 15px);
}

.info_item_truck {
    display: inline-block;
    padding: 5px;
    margin: 5px 7.5px;
    border: 1px solid #cdcdcd;
}

.info_item_truck img {
    height: 100px;
    width: auto;
    object-fit: cover;
}

.scrolling_container {
    white-space: nowrap;
    overflow-x: auto;
    width: 96%;
    margin: 0 auto;
}

/* scrollbar для .scrolling_container*/
/* scrollbar для Firefox */
.scrolling_container {
    scrollbar-width: 7px;
    scrollbar-color: var(--bac-color) #cdcdcd;
}

/* для Chrome/Edge/Safari */
.scrolling_container::-webkit-scrollbar {
    height: 7px;
    width: 7px;
}

.scrolling_container::-webkit-scrollbar-track {
    background: #cdcdcd;
}

.scrolling_container::-webkit-scrollbar-thumb {
    background-color: var(--bac-color);
    border-radius: 5px;
}

/* /scrollbar*/
.f-size-adaptive-11 {
    font-size: calc(11px + (13 - 11) * (100vw - 320px) / (1600 - 320));
}

.item_quote_tab_logistic {
    margin-top: 10px;
    margin-left: calc(10px + (20 - 10) * (100vw - 320px) / (1600 - 320));
}

.head_quote_logistic {
    font-weight: bold;
}

.date_quote_logistic:first-letter {
    text-transform: uppercase;
}

.date_quote_logistic {
    color: #5c5c5c;
}

.summ_quote_logistic {
    color: #ff2626;
}

@media (max-width: 1600px) {
    .title_tab_logistic,
    .my_journey_head th,
    .my_journey_text td,
    .my_quote_tab,
    .view_all_btn {
        font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1600 - 320));
    }
}

@media (max-width: 768px) {
    .tabs_logistic_row {
        flex-direction: column;
    }

    .two_items_logistic,
    .my_quote_tab {
        width: 100%;
    }
}