@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --primary-color: #0c1d55;
    --primary-color-light: #324b9f;
    --secondary-color: #fda54e;
    --secondary-color-light: #f6b97c;
    --black-color: #202020;
    --font-family: 'Roboto', sans-serif;;
    --font-size: 13px;
    --background: #ffffff;
}
* {
	margin: 0px;
	padding: 0px;
    box-sizing: border-box;
}
*:focus {
    outline: none  !important;
}
.text-left {
    text-align: left;
}
form {
    width: 100%;
}
html {
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-family);
    font-size: 26px;
    margin-top: 0 !important;
    color: var(--primary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.relative {
    position: relative;
}
#mirror_loader {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.5px);
    -webkit-backdrop-filter: blur(8.5px);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
}
.innerloading {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    text-align: center;
}
.innerloading p {
    margin-top: 10px;
}

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--black-color);
    font-size: var(--font-size);
    box-sizing: border-box;
    background: var(--background);
    background-size: 100% 100%;
    background-size: cover;
    background-position: center center;
    display: flex;

    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    min-height: 100%;
}
.bars_mobile {
    cursor: pointer;
}
.bars_mobile i {
    font-size: 25px;
}
.bars_mobile input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 27px;
    right: 15px;
    height: 22px;
    width: 22px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #202020;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}
.sidebarMenu_click {
    transform: translateX(0) !important;
}
.menu_left_pad {
    padding: 15px;
}
.menu_left_pad a {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    padding: 15px;
}
.menu_cat a {
    text-align: left;
    font-size: 14px;
}

#sidebarMenu {
    height: 100%;
    position: fixed;
    left: 0;
    width: 275px;
    top: 0;
    transform: translateX(-275px);
    transition: transform 250ms ease-in-out;
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    z-index: 100;
}
#sidebarMenu_dashboard {
    height: 100%;
    position: fixed;
    left: 0;
    width: 275px;
    top: 0;
    transform: translateX(0px);
    transition: transform 250ms ease-in-out;
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    z-index: 100;
}
.text-center {
    text-align: center;
}
.pull-right {
    float: right !important;
    text-align: right;
}
input, select, textarea {
    font-family: var(--font-family);
    font-size: var(--font-size)
}
input[readonly], input[disabled] {
    background-color: #f7f7f7 !important;
    color: #505050;
}
.mobile {display: none;}
a {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: var(--primary-color);
}
.wd100 {
    width: 100% !important;
}
.wd80 {
    width: 80% !important;
}
.wd60 {
    width: 70% !important;
}
a:hover {
    color: var(--secondary-color);
}
ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fixed_top_bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    border-bottom: 5px solid #f4f5f7;
    background: #fff;
    box-shadow: 1px 5px 14px 5px #f4f5f7;
    z-index: 99;
}
.flex_space_between_column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.flex_space_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex_start_justify {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flex_space_between_start {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
. {
    gap: 10px;
}
.gap_15 {
    gap: 15px;
}
.gap_20 {
    gap: 20px;
}
.gap_30 {
    gap: 30px;
}
.gap_40 {
    gap: 40px;
}
.container {
    width: 100%;
    padding: 73px 0 50px 0;
    flex: 1;
}
.wrapper {
    width: 95%;
    margin: 0 auto;
}
.wrapper_pages {
    width: 80%;
    margin: 0 auto;
    position: relative;
}
.nav_link li a {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
}
.nav_link li a:hover {
    color: var(--secondary-color);
}
.active_top_menu {
    color: var(--secondary-color) !important;
}
.logo img{
   height: 35px;
}
.btn_custom {
    background: var(--primary-color-light);
    color: #fff;
    border: 1px solid var(--primary-color-light);
    padding: 10px 25px;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0px 0px 14px 3px rgb(0 0 0 / 10%);
    transition: 0.5s;
    transition-timing-function: ease-in;
    cursor: pointer;
}
.btn_custom:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
.white {
    background: #ffffff;
    color: var(--black-color);
    border: 1px solid #fff;
}
.white:hover {
    background: #f7f7f7;
    color: var(--black-color);
    border: 1px solid #f7f7f7;
}

.d20 {
    width: 20%;
}
.d30 {
    width: 30%;
}
.d70 {
    width: 70%;
}
.d35 {
    width: 35%;
}
.d65 {
    width: 65%;
}
.d80 {
    width: 80%;
}
.d60 {
    width: 60%;
}
.d40 {
    width: 40%;
}

.mb-0 {
    margin-bottom: 0px !important;
}
.mb-1 {
    margin-bottom: 10px;
}
.m-r-5{
    margin-right: 5px;
}
.m-b-5 {
    margin-bottom: 2rem;
}
.m-t{
    margin-top: 1rem;
}
.m-t-5{
    margin-top: 2rem;
}
.m-r-10{
    margin-right: 10px;
}
.margin_bottom_page{
    margin-bottom: 10rem;
}

.slider_top {
    margin-top: 35px;
}
.left_slider h1 {
    color: var(--primary-color);
    font-size: 35px;
    margin-bottom: 20px;
}
.left_slider p {
    color: #00000080;
    font-weight: bold;
    font-size: 15px;
}

.slider_two_boxes {
    margin: 45px 0;
}
.side_two_sldier {
    width: 47%;
}
.side_two_sldier h3 {
    font-weight: bolder;
    color: var(--black-color);
    font-size: 21px;
    margin-bottom: 15px;
}
.side_two_sldier li {
    margin: 15px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}
.side_two_sldier li img {
    width: 20px;
}
.side_two_sldier .button_two_sides button {
    padding: 18px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;

}
.button_two_sides a {
        display: block;
}

.primary {
    background: var(--primary-color-light);
    color: #FFFFFF;
}
.primary:hover {
    background: var(--primary-color);
    color: #fff;
}
.secondary {
    background: var(--secondary-color-light);
    border: 1px solid var(--secondary-color-light);
    color: #fff;
}
.secondary:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
}
.black {
    background: var(--black-color);
    color: #fff;
}
.black:hover {
    background: var(--secondary-color);
    color: #fff;
}

.right_slider  img {
        width: 400px;
    float: right;
    text-align: right;
}


section {
    margin: 80px 0 0 0;
    width: 100%;
}
section h2 {
    color: var(--primary-color);
    font-size: 40px;
    text-align: center;
    font-weight: 900;
/*    text-transform: uppercase;*/
    margin-bottom: 60px;
}
section h2 span {
    color: #4c6ffe;
}
.box_work {
    width: 100%;
}
.box_work h4 {
    font-weight: 900;
    color: var(--primary-color-light);
    margin-bottom: 25px;
    text-align: center;
}
.right_section_work {
    width: 70%;
}
.right_section_work li span {
    font-size: 28px;
    font-weight: 800;
}
.route_section, .right_cargo  {
    width: 70%;
    margin: auto;
}
.route_section .image_left {
    width: 70%;
    height: 334px;
    overflow: hidden;
    border-radius: 10px;
    padding: 5px;
    /* border: 1px solid #f0f0f0; */
    margin-bottom: 50px;
}
.route_section .image_left img {
    width: 100%;
}
.right_section_work li {
    border: 1px solid #f0f0f0;
    padding: 16px 25px;
    margin-bottom: 14px;
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.15);
        display: flex;
    gap: 19px;
    align-items: center;
}
.top_head {
    display: flex;
    flex-direction: column;
}
.top_head span {
    color: var(--primary-color);
    font-size: 20px !important;
}
.top_head small {
    font-size: 12px;
    color: #8f8f8f;
}
.right_cargo img {
    width: 100%;
}
.input_to_from select, .input_to_from input {
    background: #e1e1e1;
    padding: 14px 35px;
    border: 1px solid #e1e1e1;
    color: #545454;
    border-radius: 3px;
    width: 100%;
}
.input_to_from span {
        position: absolute;
    left: 13px;
    top: 13px;
    font-size: 17px;
    color: #7c7c7c;
}
.route_search {
    margin: auto;
    margin-top: 25px;
}

.input_to_from {
    width: 36%;
    position: relative;
}
.button_to_from button {
    padding: 14px 35px;
}
.right_top_bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.language_switcher {
        display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    cursor: pointer;
    text-transform: capitalize;
    position: relative;
}
.language_switcher img {
    width: 23px
}
.switcher_dropdown {
    position: absolute;
    top: 35px;
    background: #fff;
    padding: 5px;
    width: 173px;
    left: -104px;
    border-radius: 5px;
    box-shadow: 1px 5px 14px 5px #f4f5f7;
    display: none;
}
.switcher_dropdown a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    padding: 10px 10px;
}
.switcher_dropdown a:hover {
    background: #f0f0f0;
}
.switcher_dropdown a:last-child {
    margin-bottom: 0;
}

.switcher_dropdown:after, .switcher_dropdown:before{
    bottom: 100%;
    right: 2.5%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.switcher_dropdown:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #f5f5f5;
    border-width: 10px;
}
.testimonials_wrap {
    width: 70%;
    margin: auto;
}

.top_testimonial_user {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.top_testimonial_user img {
    width: 70px !important;
    height: 70px;
    border-radius: 100px;
    object-fit: cover;
}
.name_testimonial {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}
.name_testimonial b {
    text-transform: uppercase;
    font-size: 16px;
}
.text_testimonial {
    font-size: 15px;
    line-height: 21px;
    color: #626262;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.owl-carousel .owl-item {
    margin: 10px;

}
.owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
        background: #fff;
    padding: 10px;
    width: 42px;
    height: 42px;
    border-radius: 100px;
    margin-left: -16px;
    text-align: center;
    box-shadow: 1px 5px 14px 5px #00000010;
        line-height: 24px;
    font-weight: bold;
    font-size: 18px;
}
.owl-nav .owl-next { 
    position: absolute;
    right: -14px;
}

#customers-testimonials .item {
    text-align: center;
    padding: 40px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
        border: 1px solid #f0f0f0;
        background: #fff;
        box-shadow: 1px 5px 14px 5px #f4f5f7;
        border-radius: 5px;
        cursor: pointer;
        min-height: 310px;
}
#customers-testimonials .item:hover{
    background: var(--primary-color);
    color: #fff !important;
}
#customers-testimonials .item:hover > .text_testimonial {
    color: #fff !important;
}

.why_boxes_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 75%;
    margin: auto;
}

.boxes_why_choose .front {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.why_boxes_wrap .boxes_why_choose {
    padding: 0 !important;
    height: 200px;
}
.boxes_why_choose {
        width: 24%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    box-shadow: 1px 5px 14px 5px #f4f5f7;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.boxes_why_choose .image_why {}
.boxes_why_choose img {     height: 100%;
    width: 100px;
    margin-bottom: 8px; 
    object-fit: cover;
}
.boxes_why_choose .text_why  {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 16px;
    color: var(--primary-color);
    text-align: center;
    min-height: 45px;
    display: flex;
    align-items: center;
}

/*.boxes_why_choose:hover .rotate_text {
  visibility: visible;
}*/
.rotate_text {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: #0c1d55;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 29px;
    font-size: 13px;
    line-height: 19px;
/*    visibility: hidden;*/
    color: #fff;
    border-radius: 10px;
}
.hide_now {
    display: none;
}
.read_more {
    width: 75%;
    margin: auto;
    margin-bottom: 50px;
        display: flex;
    justify-content: center;
}
.read_more a {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 22px;
    background: #fff;
    padding: 5px 0;
    font-weight: 600;
}
.extra_btn {
    padding: 20px 50px;
    margin: 0 20px;
}

footer {
    background: #0c1d55;
    padding: 70px 0 13px 0;
    width: 100%;
    text-align: center;
}
.links_footers {
        text-align: left;
}
.links_footers h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}
.how_it  {
    margin-top: 0;
}
.links_footers a { 
    color: #d1d1d1;
    width: 100%;
    display: block;
    padding: 7px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.links_footers a:hover {
    color: var(--secondary-color);
}
.links_footers a span {
    background: var(--secondary-color);
    padding: 4px;
    border-radius: 38px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.copyright {
    color: #fff;
    text-align: center;
    margin-top: 22px;
    border-top: 1px solid #15296c;
    padding-top: 16px;
}
.title_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('../images/backgrounds/About_us.jpg');
    width: 100%;
    height: 250px;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}
.pricing_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('../images/backgrounds/pricing.jpg');
    width: 100%;
    height: 250px;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}
.contact_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('../images/backgrounds/Contact_Us.jpg');
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}
.cookie_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('../images/backgrounds/Footer_Background.jpg');
    width: 100%;
    height: 250px;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}
.terms_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('../images/backgrounds/Footer_Background.jpg');
    width: 100%;
    height: 250px;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}
.privacy_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('../images/backgrounds/Footer_Background.jpg');
    width: 100%;
    height: 250px;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}
.legal_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('../images/backgrounds/Footer_Background.jpg');
    width: 100%;
    height: 250px;
    background-position: top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.ethical_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('../images/backgrounds/Footer_Background.jpg');
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.faq_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url('../images/backgrounds/Footer_Background.jpg');
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}


.content_inner h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}
.content_inner p {
    font-size: 14px;
    font-weight: 400;
}
.video_left img {
    width: 380px;
}
.video_right h4 {
    margin-bottom: 20px;
    font-weight: 900;
}
.video_right h4.right_ {
        text-align: right;
    border-bottom: 4px solid #4c6ffe;
    float: right;
    clear: both;
    text-transform: uppercase;
}
.center_ {
    text-align: center;
    border-bottom: 4px solid #fff;
    text-transform: uppercase;
}
.right_p {
    text-align: right;
}
.video_right h4.left_ {
    text-align: left;
    border-bottom: 0px solid #4c6ffe;
    float: left;
    clear: both;
    text-transform: uppercase;
}
.video_right p {
    margin-bottom: 15px;
    font-size: 14px;
    width: 100%;
    clear: both;
    text-align: justify;
}
.value_center {
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.value_boxes .boxes_why_choose {
    width: 32%;
    min-height: 240px;
}
.value_boxes .boxes_why_choose p {
    margin-top: 10px;
    text-align: justify;
    line-height: 18px;
    font-size: 14px;
}
.value_boxes .boxes_why_choose:hover {
    background: var(--primary-color);
    color: #fff;
}
.value_boxes .boxes_why_choose:hover .text_why {
    color: #fff;
}
.about_testimonial h2{
    font-size: 29px;
    margin-bottom: 25px;
}
.about_testimonial .read_more {
    margin-top: 40px;
}
.form_contact_us {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}
.form_contact_us .form-group {
    width: 48%;
    margin-bottom: 10px;
}
.form_contact_us .form-group label {
    width: 100%;
    clear: both;
    float: left;
    color: #9b9b9b;
    margin-bottom: 7px;
}
.form_contact_us .contatc_input {
    width: 100%;
    padding: 17px;
    border: 1px solid #f3f6fb;
    background: #f3f6fb;
    border-radius: 5px;
}
.white_input {
    width: 100%;
    padding: 10px;
    border: 1px solid #f0f0f0;
    background: #fff;
    border-radius: 5px;
}
.contatc_button {
    float: right;
}
.contact_heading h3 {
    font-size: 33px;
    font-weight: 900;
    margin-bottom: 30px;
}
.contatc_map {
    width: 60% !important;
    margin-top: 100px;
}
.video_right .links_footers a {
    color: var(--black-color);
}
.pricing_heading {
    margin-bottom: 20px;
    text-align: center;
}
.pricing_heading h2 {
    font-weight: 900;
}
.pricing_heading p {
    margin-top: 15px;
}
.center_boxes_selection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}
.center_boxes_selection .selection_box {
    width: 36%;
    min-height: 195px;
    justify-content: center;
    display: flex;
    height: 100%;
}
.center_boxes_selection .selection_box  img {
    height: 100px;
    width: auto;
    margin-bottom: 25px;
}
.center_boxes_selection .selection_box  h5 {
        font-size: 18px;
}
.center_boxes_selection .selection_box:hover {
    background: var(--primary-color);
    color: #fff;
}
.center_boxes_selection .selection_box:hover h5{
    color: #fff;
}
.rev_text_displ {
    word-break: break-all;
    word-wrap: break-word;
    font-size: 16px;
}
.flex_align_top {
    align-items: flex-start !important;
    
}
.flex_align_top .review_left_overall {
    margin-top: 50px;
}

/***********************PLANS CSS****************/
    .pricing {
            display: -webkit-flex;
            display: flex;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-justify-content: center;
            justify-content: center;
            width: 100%;
            margin: 0 auto;
        }
        
        .pricing-item {
            position: relative;
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: column;
            flex-direction: column;
            -webkit-align-items: stretch;
            align-items: stretch;
            text-align: center;
            -webkit-flex: 0 1 330px;
            flex: 0 1 330px;
        }
        
        .pricing-action {
            color: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }
        
        .pricing-action:focus {
            outline: none;
        }
        
        .pricing-feature-list {
            text-align: left;
        }
        .pricing-feature-list li {
            list-style: none;
            padding: 5px 0;
            display: flex;
            justify-content: flex-start;
            align-items: stretch;
        }
        
        .pricing-palden .pricing-item {
            cursor: default;
            color: #84697c;
            background: #fff;
            box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
            border-radius: 20px 20px 10px 10px;
            margin: 1em;
            cursor: pointer;
        }
        
        @media screen and (min-width: 66.25em) {
            .pricing-palden .pricing-item {
                margin: 1em -0.5em;
            }
            .pricing-palden .pricing__item--featured {
                margin: 0;
                z-index: 6;
                box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
            }
        }
        
        .pricing-palden .pricing-deco {
            border-radius: 10px 10px 0 0;
            background: linear-gradient(333deg,#0c1d55,#5d72b5);
            padding: 1em 0 12em;
            position: relative;
        }
        
        .pricing-palden .pricing-deco-img {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 160px;
        }
        
        .pricing-palden .pricing-title {
            font-size: 28px;
            margin: 0;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff !important;
        }
        
        .pricing-palden .deco-layer {
            -webkit-transition: -webkit-transform 0.5s;
            transition: transform 0.5s;
        }
        
        .pricing-item:hover {
            box-shadow: 1px 5px 14px 5px rgba(0,0,0,0.3);
            transform: scale(1.04);
        }
        /*.pricing-palden .pricing-item:hover .deco-layer--1 {
            -webkit-transform: translate3d(15px, 0, 0);
            transform: translate3d(15px, 0, 0);
        }
        
        .pricing-palden .pricing-item:hover .deco-layer--2 {
            -webkit-transform: translate3d(-15px, 0, 0);
            transform: translate3d(-15px, 0, 0);
        }*/
        
        .pricing-palden .icon {
            font-size: 2.5em;
        }
        
        .pricing-palden .pricing-price {
            font-size: 4.5em;
            font-weight: bold;
            padding: 0;
            color: #fff;
            margin: 0 0 0.25em 0;
            line-height: 0.75;
            position: relative;
        }
        
        .pricing-palden .pricing-currency {
            font-size: 0.25em;
            vertical-align: top;
        }
        .month_text_left {
            font-size: 14px;
        }
        .pricing-palden .pricing-period {
            font-style: italic;
            font-size: 12px;
            line-height: 15px;
            font-weight: 500;
            width: 65px;
                margin-right: -36px;
            margin-left: 4px;
            text-align: left;
        }
        
        .pricing-palden .pricing__sentence {
            font-weight: bold;
            margin: 0 0 1em 0;
            padding: 0 0 0.5em;
        }
        .month_sub_text {
            font-size: 11px;
            font-weight: normal;
        }
        
        .pricing-palden .pricing-feature-list {
            margin: 0 30px;
            padding: 0.25em 0 2.5em;
            list-style: none;
            text-align: left;
            margin-top: -65px;
            z-index: 9;
            min-height: 214px;
            position: relative;
            margin-bottom: 20px;
        }
        .actual_price_text {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .left_price_a {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
        .pricing-feature-list li i {
                width: 24px;
                height: 24px;
                float: left;
                color: green;
                margin-right: 0px;
                min-width: 23px;
        }
        .pricing-feature-list li i.yellow {
            color: #fca54f;
        }
        .pricing-palden .pricing-feature {
            padding: 1em 0;
        }
        
        .pricing-palden .pricing-action {
            font-weight: bold;
            margin: auto 3em 2em 3em;
            padding: 1em 2em;
            color: #fff;
            border-radius: 30px;
            background: linear-gradient(135deg,#a93bfe,#584efd);
            -webkit-transition: background-color 0.3s;
            transition: background-color 0.3s;
        }
        
        .pricing-palden .pricing-action:hover,
        .pricing-palden .pricing-action:focus {
            background: linear-gradient(135deg,#fd7d57,#f55d59);
        }
        
        .pricing-palden .pricing-item--featured .pricing-deco {
            padding: 5em 0 8.885em 0;
        }

.inner-header {
  height:100%;
  width:100%;
  margin: 0;
  padding: 0;
  margin-bottom: 80px;
}

.flex { /*Flexbox for containers*/
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:150vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:250px;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

.validation_success, .validation_error {
    background: green;
    padding: 12px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}
.validation_success p, .validation_error p{
    margin-bottom: 0 !important;
}
.validation_error {
    background: #fd6d6d;
}

.fa_head {
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 40px;
}
.faq_wrap {
    background: #f3f6fb;
    margin: 10px 0;
    padding: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.faq_wrap .faq_question {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq_wrap .faq_answer {
    margin-top: 15px;
    font-size: 13px;
    line-height: 21px;
    display: none;
}
.cms_pages_text {
    font-size: 14px;
}
.cms_pages_text p {
    margin-bottom: 15px;
    line-height: 20px;
}
.logo_footer {
    text-align: left;
}
.table_responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 15px;
    position: relative;
}
.mobile_button_show  {
    width: 100%;
    padding: 10px;
    margin-top: 25px;
}
.mobile_button_show  a {
    width: 100%;
    margin-bottom: 10px;
}
.mobile_button_show button {
    width: 100%;
}
/****************PLANS CSS END*****************/

 @media (max-width: 780px) {

    .planDetails2 {
        width: 300px;
        margin-top: 0 !important;
        margin-bottom: 20px;
        margin-right: 40px;
    }

    .payment_form {
        width: 100% !important;
    }
    .other_currency_name {
        width: 100% !important;
    }
    .whatsapp_button {
        width: 46px;
        height: 46px;
    }
    .whatsapp_button span {
        display: none;
    }
    .whatsapp_button_page span {
        display: none;
    }
    .dashboard_load_wrap {
        flex-direction: column;
    }
    .dashboard_left_wrap, .dashboar_right_wrap, .chart_left_div, .chart_right_div {
        width: 100% !important;
    }
    .chart_left_div, .chart_right_div {
        padding:  0 !important;
    }
    .register_now_plans span {
        text-align: center;
    }
    .register_now_plans {
        flex-direction: column;
        align-items: center;
    }
    .center_margin_70 {
        width: 100% !important;
    }
    .center_margin_70 .flex_space_between, .poup_box_data .flex_space_between {
        flex-direction: row !important;
    }
    .review_questions .flex_space_between {
        flex-direction: column !important;
    }
    .new_side_bar {
        width: 175px !important;
    }
    .top_search_bar .double_search_box {
        flex-direction: column;
    }
    .box_form_select_center.only_top_sho {
        align-items: flex-start !important; 
    }
    .pricing-palden {
        margin-top: 0px !important;
    }
    .dele_cus {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
    }
    /*.logo_dashboard {
            width: 170px !important;
    }
    .buttons_dashboardd {
        display: flex;
    }*/
    .table_responsives {
        width: 100%;
        overflow-x: auto;
        margin-top: 15px;
        position: relative;
    }
    .status_column {
        position: relative !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 37px;
    }
/*    .form_view_wrap .wrap_around,*/
    .mobile_inner .left_relative .spinner {
        background: var(--primary-color) !important;
    }
     .review_left_overall, .delete_center, .wrap_around.wd100 {
        width: 100% !important;
    }
    .delete_center .inner_delete_content {
        padding: 20px 30px !important;
    }
    .form_view_wrap {
        flex-direction: row;
    }
    .summary_wrap {
        width: 95% !important;
    }
    .review_right_overall {
        width: 100% !important;
    }
    .right_side_dashboard {
        padding: 0px !important;
        justify-content: flex-end !important;
        width: 53% !important;
    }
    .logo_dashboard {
        width: 175px !important;
    }
    .navigation_profile, .navigation_profiles {
        max-height: 166px;
        overflow: auto;
    }
    .chat_exclamation .flex_start_justify {
        flex-direction: column;
        text-align: center;
    }
    .chat_heading {
        text-align: center;
    }
    .register_now_plans {
        
        gap: 30px !important;
    }
    .pricing-price .disocunt_price_text {
        flex-direction: column;
    }
    .slider_top .flex_space_between_start {
        flex-direction: column-reverse !important;
    }
    .image_uploaded, .l_plancc__ {
        width: 100% !important;
    }
    .plan_details_popup_view {
        text-align: center;
    }
    .summary_sub_data select[disabled], .summary_sub_data select {
        width: 100% !important;
    }
    .custom_abs_cur {
        clear: both;
    }
    .summary_sub_data, .boxes_choose_plan {
        flex-direction: column;
    }
    .summary_data_row .form_login .form-group {
        width: 100% !important;
    }
    .form_three_row .w60 {
        width: 100% !important;
    }
    .form_three_row {
        flex-direction: column;
    }
    .form_three_row .form-group {
        width: 100% !important;
    }
    .route_section, .right_cargo {
        width: 100%;
    }
    .slider_two_boxes {
        margin-bottom: 14px;
    }
    .right_cargo {
        margin-top: 25px;
    }
    .contact_links a {
            display: flex !important;
        justify-content: center;
        align-items: center;
    }
    .language_switcher {
        margin-right: 50px;
    }
    .d40 {width: 100% !important}
    .desktop {display: none;}
    .mobile {display: block;}
    .slider_top .flex_space_between_start, .slider_top .flex_space_between { flex-direction:column; }
    .side_two_sldier, .d60, .d30, .box_work, .image_left, .right_section_work, .boxes_why_choose, .why_boxes_wrap { width:100% !important }
    .left_slider h1 {font-size: 28px;  text-align: center;}
    .how_it .flex_space_between_start, .route_search  { flex-direction: column; }
    .input_to_from { width:100%; margin-bottom:10px }
    .how_it { margin-top:80px }
    .testimonials_wrap {width: 100%;     margin: initial;}
    .side_two_sldier .button_two_sides button { flex-direction:row !important; }
    .side_two_sldier { margin-bottom:25px }
    .flex_space_between_start, .login_wrapper_flex {
        flex-direction: column;
    }
    .links_footers, .links_footers a {
        text-align: center;
        display: block;
    }
    .links_footers {
        margin-top: 25px;
    }
    .logo_footer { margin-bottom:25px; text-align:center; }
    .social_icons {justify-content: center !important;}
    .links_footers a span {float: left;}
    .why_boxes_wrap {flex-direction: column;}
    .read_more {flex-direction: column; align-items: center; width: 100%;}
    .extra_btn {width: 100%;margin-bottom: 20px;}
    .flex_space_between, .center_boxes_selection {flex-direction: column;}
    .video_right h4.left_, .value_center {margin-top: 25px !important}
    .fixed_top_bar .flex_space_between { flex-direction:row !important; }
    .contatc_map, .right_login_box {width: 100% !important}
    .wrapper_pages {width: 90%}
    .d20 {width: 100% !important}
    .left_login_box {
        width: 100% !important;
        border-radius: 10px !important;
    }
    .signup_form .form-group {width: 100% !important}
    .button_login a{ margin-bottom:20px }
    .signup_new {text-align: center !important;}
    .w_center_div_forgot, .w_center_div_signup, .w_center_div_login, .w_center_div_forgot {width: 90% !important}
    .agree_class {align-items: flex-start !important; }

    .new_side_bar {
        transform: translateX(-275px) !important;
    }
    .sidebarMenu_click {
        transform: translateX(0) !important;
    }
    .logo_side_bar img {
        width: 100px !important;
    }
    .logo_dashboard{
        height: 65px;
    }
/*    .language_switcher span {display: none;}*/
    .right_dashboard_content {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .profile_left_wrap, .profile_right_wrap, 
     .show_delete_message, 
    .show_contatc_support_message, 
    .left_price_section_box,
    .right_price_section_box
    {
        width: 100% !important;
    }
    .box_form_price_inner {
        width: 95% !important;
    }
    .profile_wrap, .plans_box_show {
        flex-direction: column;
    }
    .show_delete_message, .show_contatc_support_message {
        padding: 15px !important;
    }
    .logo_side_bar {
        margin-left: 32px;
    }
    .currency_selection_pricing {
        position: relative !important;
        margin-top: 15px;
        top: 0 !important;
            width: 64%;
        margin: auto;

    }
    .curreny_select_box {
        justify-content: space-around !important;
    }

    .loads_database_wrap {
        flex-direction: column;
    }
    .description_text_wrap {
        width: 100% !important;
        border-top: 1px solid #cbcbcb;
        margin-top: 15px;
        padding-top: 10px;
    }
    .bid_box {
        align-items: center;
        margin-top: 20px;
    }
    .loading_place_infor_wrap {
        margin-right: 0px !important;
        border-right: none !important;
    }
    .left_image_load {
        width: 100% !important;
        text-align: center;
    }
    .wrap_around {
        width: 46% !important;
    }
    .form_view_wrap {
        flex-wrap: wrap;
    }
    .bidding_info_data {
        margin: 25px !important;
    }
    .review_star_view span:first-child {
        width: 75% !important;
    }
    .not_received,  {
        width: 100% !important;
    }
    .center_margin_auto_forms_only {
        width: 95% !important;
    }
    .custom_load_info {
        width: 100% !important;
    }
    .left_load_info, .left_load_info_right {
        width: 100% !important;
    }
    .show_load_info_flex {
        flex-direction: column;
    }

    .bidding_info_data .form-groups {
        justify-content: center;
        display: flex;
        align-items: center;
        width: 100%;
    }
    .overall_review .flex_space_between {
        flex-direction: column !important;
    }
    .review_star_view span {
        width: 120px;
    }
    .testimonials_wrap  .flex_space_between, .custom_order_Row {
        flex-direction: row;
    }
    .truck_type_div, .trailer_type_div, .form_three_row .w50 {
        width: 100% !important;
    }
}




.flip-card {
  background-color: transparent;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Style the back side */
.flip-card-back {
  transform: rotateY(180deg);
}
.social_icons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
}
.social_icons a {
    color: #fff;
    font-size: 24px;
}
.social_icons a:hover {
    color: var(--secondary-color);
}
.margin-top-wappe {
    margin-top: 4%;
}
.w_center_div_login {
    width: 60%;
    margin: auto;
}
.w_center_div_signup {
    width: 50%;
    margin: auto;
    background: #fff;
    padding: 25px;
    box-shadow: 1px 5px 14px 5px #f4f5f7;
}
.w_center_div_forgot {
    width: 35%;
    margin: auto;
    background: #fff;
    padding: 25px;
    box-shadow: 1px 5px 14px 5px #f4f5f7;
}
.left_login_box {
    background: #4b72fd;
    padding: 40px 20px;
    width: 40%;
    text-align: center;
    border-radius: 10px 0 0 10px;
}
.left_login_box .login_image img {
    width: 100%;
}
.signup_flex .right_login_box {
    width: 100%;
}
.right_login_box {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.right_login_box section {
    margin-top: 0;
}
.login_wrapper_flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 45px;
    width: 100%;
}
.form_login {
    width: 100%;
}
.form_login .form-group {
    width: 100%;
    margin-bottom: 15px;
}
.signup_form .form-group {
    width: 49%;
}
.right_login_box .contatc_input {
    width: 100%;
    padding: 17px;
    border: 1px solid #f3f6fb;
    background: #f3f6fb;
    border-radius: 5px;
}
.form-group label {
    width: 100%;
    clear: both;
    float: left;
    color: #9b9b9b;
    margin-bottom: 7px;
}
.signup_new {
        float: left;
    text-align: left;
    width: 100%;
    margin-top: 24px;
}

.full_radio .radio-toolbar label {
    width: 100%;
    margin-top: 10px;
    box-shadow: 1px 2px 7px 1px rgb(0 0 0 / 20%);
    border-radius: 3px;
    border: 2px solid #fff;
    padding: 20px !important;
    text-align: center;
    cursor: pointer;
    font-weight: 800;
}
.full_radio {
    width: 100%;
}
.full_radio .radio-toolbar div {
    width: 100%;
}
.full_radio .radio-toolbar {
   flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}
.radio-toolbar input[type=radio] {
    display: none;
}
.full_radio .radio-toolbar input[type=radio]:checked + label {
    position: relative;
    content: " ";
    display: block;
    background: var(--primary-color) !important;
    color: white;
}
.signup_flex {
    align-items: stretch !important;
}
.agree_class {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}
.hiden_divs {
    display: none;
}
.w_center_div_signup h2 {
    color: var(--primary-color);
    font-size: 36px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 10px;
}
.w_center_div_signup p {
    margin-bottom: 20px;
}

.w_center_div_forgot h2 {
    color: var(--primary-color);
    font-size: 36px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 10px;
}
.w_center_div_forgot p {
    margin-bottom: 20px;
}
.pricing_section section {
    margin-top: 25px;
}

.curreny_select_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    border: 1px solid #f0f0f0;
    padding: 5px 10px;
    cursor: pointer;
}
.curreny_select_box img {
    width: 26px;
    height: 26px;
}
.curreny_select_box .arrow_select {
    margin-left: 25px;
    color: #aaa;
    display: none;
}
.curren_name {
    width: 50px;
}
.currency_selection_pricing {
    text-align: left;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 11;
        background: #fff;
}
.currency_selection_pricing p {
    margin-bottom: 5px;
}

.borderSelect {
    border: 1px solid var(--primary-color);
}
.pricing_section {
    margin-top: 0px;
}
.short_descp {
    color: #fff;
    width: 72%;
    margin: auto;
    margin-bottom: 15px;
    font-size: 15px;
}
.disocunt_price_text {
    font-size: 13px;
    margin-bottom: 23px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
.cut_price_discount .underline_price{
    text-decoration: line-through;
}
.cut_price_discount sup {
    font-size: 10px;
}
.save_perce {
    font-size: 12px;
}
.cut_price_discount .pricing-currency {
    font-size: 10px;
}
.price_less_space {
}

.popup_curreny_converter {
        display: flex !important; 
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.left_price_section_box h3 {
    margin-bottom: 30px;
}
.price_text_plan div {
    font-size: 30px;
    font-weight: bold;
}
.box_form_popup_outer {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(233 233 233 / 90%);
    z-index: 11;
    height: 100%;
    display: none;
}
.box_form_select_center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.box_form_price_inner {
    background: #fff;
    padding: 20px;
    width: 60%;
    border-radius: 3px;
}
.go_back_form {
    float: right;
}
.plans_box_show {
    clear: both;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    float: left;
    width: 100%;
    align-items: center;
    gap: 25px;
}
.right_price_section_box {
    width: 40%;
}
.right_price_section_box h5 {
    font-size: 15px;
}
.right_price_section_box h5 span {
    font-weight: normal;
    font-size: 13px;
}
.list_sub_plan {
    float: left;
    margin-top: 15px;
    line-height: 20px;
}
.list_sub_plan i {
    color: green;
}
.list_sub_plan i.yellow {
    color: #fca54f !important;
}

.left_price_section_box {
    width: 65%;
}
.left_price_section_box h3 {
    text-align: center;
}
.l_plancc__ {
    width: 49%;
    border: 4px solid #f0f0f0;
    padding: 20px 12px;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.l_plancc__ input {
    position: absolute;
    left: 12px;
}
/*.l_plancc__ .save_box {
        position: absolute;
        top: -15px;
        left: 31%;
        background: var(--primary-color);
        color: #fff;
        padding: 5px 15px;
        border-radius: 50px;
}*/
.l_plancc__ .save_box {
    background: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    width: 85px;
    align-items: center;
    margin: auto;
    margin-top: -36px;
    margin-bottom: 12px;
}
.boxes_choose_plan {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
    margin-top: 13px;
}
.month_text_plan {
        font-weight: bold;
    text-transform: uppercase;
}

.price_text_plan {
    font-size: 22px;
    font-weight: bolder;
    margin: 10px;
    color: var(--primary-color);
}
.price_text_plan span {
    display: inline-block;
    font-size: 12px;
    width: 100%;
}
.l_plancc__ p {
    font-size: 12px;
    line-height: 18px;
}
.register_now_plans {
    clear: both;
    width: 100%;
    float: right;
    margin-top: 14px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 21px;
}
.validation_pro_ {
    font-size: 18px;
    font-weight: bold;
    width: 70%;
    text-align: center;
    margin-top: 45px;
    color: var(--secondary-color);
}

.new_side_bar {
    background: #0c1d55 !important;
/*    background: #111924 !important;*/
    top: 62px !important;
    width: 275px;
    overflow: auto;
}

.menu_cat_dashboard {
    height: 100%;
    padding-bottom: 40px;
}

.logo_dashboard {
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 275px;
    background: var(--primary-color);
}
.left_relative {
    left: 19px;
    color: #fff;
    top: 24px;
}
.left_relative .spinner {
    background: #7589a2;
}

.top_dashboard_logo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 99;
}

.logo_side_bar {
    
    margin-top: 4px;
}
.logo_side_bar img {
    width: 150px;
}

.menu_cat_dashboard {
    margin-top: 20px;
}
.menu_cat_dashboard a {
    width: 100%;
    padding: 18px 20px;
    font-size: 13.5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    color: #dfdfdf;
    border-bottom: 1px dotted #21272e;
}
.menu_cat_dashboard a:last-child {
    border-bottom: none;
}
.menu_cat_dashboard a i {
    font-size: 18px;
}
.menu_cat_dashboard a:hover {
    color: #fff;
    font-weight: bold;
}

.right_side_dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: calc( 100% - 275px);
    padding: 10px 30px;
    position: relative;
}
.name_login_dashboard {
    color: #546382;
    font-weight: 600;
    cursor: pointer;
}


.profile_switcher {
    position: absolute;
    top: 65px;
    background: #fff;
    padding: 5px;
    width: 173px;
    right: 32px;
    border-radius: 5px;
    box-shadow: 1px 5px 14px 5px #f4f5f7;
    display: none;
}
.profile_switcher a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    padding: 10px 10px;
    font-weight: normal;
}
.profile_switcher a:hover {
    background: #f0f0f0;
}
.switcher_dropdown a:last-child {
    margin-bottom: 0;
}

.profile_switcher:after, .profile_switcher:before{
    bottom: 100%;
    right: 2.5%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.profile_switcher:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #f5f5f5;
    border-width: 10px;
}

.right_dashboard_content {
    width: calc( 100% - 305px );
    margin-left: 290px;
    float: right;
/*    background: #fff;*/
    margin-top: 75px;
/*    border: 1px solid #f0f0f0;*/
    border-radius: 10px;
    box-shadow: 1px 5px 14px 5px #f4f5f7;
    margin-bottom: 50px;
}

.profile_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}
.white_bg_dashboard {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    float: left;
    width: 100%;
}

.profile_left_wrap {
    width: 30%;
    padding: 15px;
    border-right: 1px solid #f0f0f0;
}
.profile_heading_info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.profile_heading_info img {
    width: 48px;
    height: 48px;
    border-radius: 50px;
}
.name_profile_person b {
    color: #344a61;
    font-weight: 600;
}
.name_profile_person span {
    color: #979ea8;
    font-weight: 400;
    display: block;
    line-height: 24px;
    font-size: 13px;
}
.profile_type_user_details {
    margin: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}
.type_display {
    margin-bottom: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #668aff;
}
.navigation_profile a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px dotted #f0f0f0;
    font-size: 14px;
    font-weight: 500;
}
.left_nav_pro {
    display: flex;
    gap: 10px;
    align-items: center;
}
.left_nav_pro i {
    width: 20px;
}
.small_class {
        font-weight: normal;
    font-size: 12px;
}
.navigation_profile_active{
    color: var(--secondary-color);
}

.profile_right_wrap {
    width: 70%;
}

.profile_information {
    padding: 15px 25px;
}
.profile_data_row_flex .form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}
.profile_data_row_flex {
    margin-top: 40px;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.profile_data_row_flex .form-group label {
    width: 30%;
    font-size: 13px;
    color: #979797;
    margin-bottom: 0;
}
.profile_data_row_flex .form-group input, .profile_data_row_flex .form-group select {
    width: 40%;
        border: 1px solid #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    text-align: right;
}
.profile_data_row_flex .form-group input[disabled], .profile_data_row_flex .form-group select[disabled] {
    background-color: #fff !important;
    color: #505050;
    border: none;
    text-align: right;
}

.change_button_submit, .change_sub_submit {
    display: none;
   

}
.change_button_type, .change_button_submit, .change_sub_type, .change_sub_submit  {
 border-bottom: none !important;
 margin-bottom: 0;
}

.star_smooth {

}

.show_delete_message {
    padding: 50px 50px 36px;
    text-align: center;
    width: 70%;
    margin: auto;
}
.show_delete_message h4, .show_contatc_support_message h4 {
    margin-bottom: 15px;
}

.show_contatc_support_message {
    padding: 50px 50px 36px;
    text-align: center;
    width: 70%;
    margin: auto;
}
.show_contatc_support_message .form_contact_us {
    margin-bottom: 10px;
}
.summary_wrap {
    margin: auto;
    width: 75%;
    
}
.summary_inner_wrap {
    float: left;
    width: 100%;
    clear: both;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.summary_wrap h4 {
    font-size: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.summary_data_row {
        margin-top: 0px;
}
.summary_data_row .form_login {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.summary_data_row .form_login .form-group {
    width: 31%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 0px;
    border-bottom: none;
    margin-bottom: 0;
}
.summary_data_row .form-group input[disabled], .summary_data_row .form-group select[disabled] {
    text-align: left;
    background: #fbfbfb !important;
    width: 100%;
}
.summary_data_row .form-group label {
    width: 100%;
    margin-bottom: 5px;
}
.white_blue {
    background: white;
    color: #728fed;
    border: none;
    font-weight: bold;
    cursor: pointer;
}
.summary_sub_data select[disabled]{
    text-align: left;
    background: #fbfbfb !important;
    border: none;
    width: 25%;
    padding: 15px;
}
.summary_sub_data select {
    text-align: left;
    background: #f3f6fb !important;
    border: none;
    width: 25%;
    padding: 10px 10px;
}
.summary_data_row .form-group input, .summary_data_row .form-group select {
    width: 100%;
        border: 1px solid #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    background: #f3f6fb !important;
}
.clear_plan {
    width: 100%;
    clear: left;
    float: left;
}
.summary_sub_data {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
    float: left;
    clear: both;
    width: 100%;
}
.summary_sub_data span {
    border: 1px solid #f3f6fb;
    padding: 10px 25px;
    display: inline-block;
}

.plan_div_sub {
    display: none;
}

.attaching_doc {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.sub_tex_attach {
    line-height: 22px;
}
.question_info_div_show {
    background: #f5f5f5;
    padding: 10px;
    margin: 15px 0;
    border-radius: 10px;
    display: none;
}
.question_info_div_show li {
    list-style: circle;
    margin-left: 22px;
    line-height: 20px;
}
.close_ {
    top: 9px;
    right: 6%;
    font-size: 23px;
    cursor: pointer;
    position: absolute;
    z-index: 8;
}
.close_left {
    top: 6px;
    left: 10px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
}
.plan_details_popup_view {
    cursor: pointer;
}
.notification_div i {
    font-size: 18px;
    margin-right: 10px;
}
.buttons_dashboardd a {
    margin-right: 45px;
}
.current_plans_summ {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}
.current_plans_summ b {
    font-weight: normal;
}
.current_plans_summ .summary_sub_data {
    margin-bottom: 0;
}
.plan_heading_ {
    margin-bottom: 10px;
}
.plan_heading_ h4 {
    font-size: 20px;
}
.already_plan {
    text-align: center;
    background: #ffbdbd;
    padding: 15px;
    border-radius: 10px;
    line-height: 20px;
    clear: both;
}
.info_text {
    text-align: center;
    padding: 30px;
    font-size: 13px;
}

.header_top_rigght {
    display: flex;
    align-items: center;
}
.inner_form_padding {
    padding: 20px;
}
.inner_form_padding .form-group{
    margin-bottom: 10px;
}
.inner_form_padding .form_heading {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}
.form_three_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    clear: both;
}
.form_three_row .form-group {
    width: 40%;
}
.form_three_row .w60 {
    width: 50%;
}
.form_three_row .w50 {
    width: 40%;
}
.w100 {
    width: 100% !important;
}
.mb-10 {
    margin-bottom: 15px !important;
    float: left;
}
.image_ltl img {
    width: 60px;
}
.custom_info_ltl p{
    color: #afafaf;
}
.vehicle_type {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin: 10px 0;
    float: left;
}
.vehicle_type label {
    width: auto;
}
.button_stop_flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
.button_stop_flex_space_between {
    justify-content: space-between !important;
}
.button_stop_flex label {
    width: auto;
}
.interm_stop_div {
    border: 3px solid #f0f0f0;
    clear: both;
    padding: 13px 20px;
    margin-bottom: 10px;
    position: relative;
}
.interm_stop_div .close_ {
        right: 0px;
    background: #ffb2b2;
    padding: 7px 10px;
    font-size: 12px;
    top: 0px;
    color: #fff;
}
.pad25 {
    padding: 25px;
}
.post_route_loads_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.table_loads {
    width: 100%;
    margin-top: 20px;
    border: 1px solid #f0f0f0;
}
.table_loads th{
    background: #f0f0f0;
    padding: 10px !important;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}
.table_loads td {
    background: #fff;
    padding: 10px !important;
    font-weight: normal;
    font-size: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
}
.delete_center {
    width: 50%;
    margin: auto;
    
}
.flo_delet {
    float: left;
    width: 100%;
    background: #fff;
    padding-bottom: 25px;
}
.header_top_delete {
    background: var(--primary-color);
    padding: 30px 0 15px;
    text-align: center;
}
.header_top_delete h3 {
    color: #fff;
    padding: 25px 0 10px;
}
.inner_delete_content {
    padding: 25px 60px;
}
.inner_delete_content p {
    margin-bottom: 20px;
}
.question_dlete {
    margin-bottom: 15px;
    margin-top: 16px;
    float: left;
    width: 100%;
}
.answer_question label {
    width: 100%;
    margin-left: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.question_input {
    padding: 5px 10px;
}
.textarea_question {
    width: 50%;
    height: 100px;
}

#top_city, #unload_city, .relative_city {
    position: relative;
}
.autocomplete_div {
    position: absolute;
    width: 100%;
    
    background: #f0f0f0;
    box-shadow: 1px 5px 14px 5px #f4f5f7;
    display: none;
}
.autocomplete_div a {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    width: 100%;
    padding: 10px;
}
.autocomplete_div a:last-child {
    border-bottom: none;
}
#files_list, #files_list_2 {
    float: left;
    clear: both;
    width: 100%;
    display: none;
    margin-bottom: 10px;
}
.upload_image i {
        display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #e0e0e0;
}
.image_uploaded {
    width: 24.1%;
    height: 135px;
    float: left;
    /* margin-right: 5px; */
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
    margin-right: 5px;

}
#files_list img, #files_list_2 img {
    width: 100%;
}
.crossbutton {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 25px;
    height: 25px;
    background: #be1e2d;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}
.crossbutton:hover {
    background: #2a2a2a;
}

/*.pricing-feature-list li:last-child::after {
    content: "\f29c";
    font: normal normal normal 14px/1 FontAwesome;
        margin-left: 8px;
    font-size: 18px;
    margin-top: -3px;

}*/
.show_popup_questionmark {
    position: absolute;
    background: #f0f0f0;
    padding: 10px;
    font-size: 12px;
    border-radius: 6px;
    width: 100%;
    text-align: center;
    line-height: 21px;
    display: none;
    bottom: 0px;
}
.pricing-feature-list li .question_mark {
    margin-left: 9px;
    font-size: 18px;
    margin-top: -2px;
}
.loadin_image{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.loadin_image img {
    width: 30px !important;
    
    mix-blend-mode: hard-light;
}
.flex_pop_money {
        display: flex;
    justify-content: center;
    align-items: center;
}
.custom_abs_cur {
    position: relative;
}
.custom_abs_cur .currency_selection_pricing {
    right: 0;
    left: auto;
}


.load_route_add_heading {
    padding: 20px 0;
}
.load_route_add_heading h2 {
    font-size: 30px;
    font-weight: 900;
}
.load_route_add_heading p {
    color: #5e5e5e;
}
.inner_form_padding .form-group label {
    color: #4e4e4e;
    font-size: 14px;
        display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
 }
.inner_form_padding .form-group input, .inner_form_padding .form-group select {
    color: #646464;
}
.center_margin_auto_forms_only {
    width: 80%;
    margin: auto;
}
.cmall_button {
        padding: 0 10px;
    margin-bottom: 6px;
}
.cmall_button_pad {
    padding: 3px 10px;
    margin-bottom: 6px;
}




/**********CALENDAR ************/

.ui-datepicker {
  background: #ffffff;
  border-radius: 15px;
}
.ui-datepicker-header {
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  background: #31639c;
  margin-bottom: 10px;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  width: 20px;
  height: 20px;
  text-indent: 9999px;
  border-radius: 100%;
  cursor: pointer;
  overflow: hidden;
  margin-top: 12px;
}
.ui-datepicker-prev {
  float: left;
  margin-left: 12px;
}
.ui-datepicker-prev:after {
  transform: rotate(45deg);
  margin: -43px 0px 0px 8px;
}
.ui-datepicker-next {
  float: right;
  margin-right: 12px;
}
.ui-datepicker-next:after {
  transform: rotate(-135deg);
  margin: -43px 0px 0px 6px;
}
.ui-datepicker-prev:after,
.ui-datepicker-next:after {
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.ui-datepicker-prev:hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover:after,
.ui-datepicker-next:hover:after {
  border-color: #333333;
}
.ui-datepicker-title {
  text-align: center;
  font-size:20px;
}
.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}
.ui-datepicker-calendar thead tr th span {
  display: block;
  width: 40px;
  color: #31639c;
  margin-bottom: 5px;
  font-size: 18px;
}
.ui-state-default {
  display: block;
  text-decoration: none;
  color: #333333;
  line-height: 40px;
  font-size: 13px;
}
.ui-state-default:hover {
  color: #ffffff;
  background:#31639c;
  border-radius:50px;
  transition: all 0.25s cubic-bezier(0.7, -0.12, 0.2, 1.12);
}
.ui-state-highlight {
  color: #ffffff;
  background-color:#31639c;
  border-radius:50px;
}
}
.ui-state-active {
  color: #ffffff;
  background-color:#31639c;
  border-radius:50px;
}
.ui-datepicker-unselectable .ui-state-default {
  color: #eee;
  border: 2px solid transparent;
}

.icon {
    margin-left: -30px;
    margin-top: -26px;
    position: relative;
    color: #31639c;
    font-size:20px;
}
.vodiapicker{
  display: none; 
}
#a li{
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

#a li:hover{
 background-color: #F4F3F3;
}

#a li img{
  height: 30px;
}

#a li span, .btn-select li span{
  margin-left: 30px;
}

/* item list */

.b{
  display: none;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 5px;
  
}

.open{
  display: show !important;
}

.btn-select{
  margin-top: 10px;
  width: 100%;
  max-width: 350px;
  height: 34px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ccc;
  float: right;
 
}
.btn-select li{
  list-style: none;
  float: left;
  padding-bottom: 0px;
}

.btn-select:hover li{
  margin-left: 0px;
}

.btn-select:hover{
  background-color: #F4F3F3;
  border: 1px solid transparent;
  box-shadow: inset 0 0px 0px 1px #ccc;
  
  
}

.btn-select:focus{
   outline:none;
}

.lang-select{
  margin-left: 50px;
}
.custom_dropdwon{
    position: relative;
}
.custom_dropdwon #a{
    position: absolute;
    width: 100%;
    background: #fff;
}
.truck_type_div, .trailer_type_div {
    width: 65%;
    float: right;
}
.abs_choose_selection {
    position: absolute;
    right: 6px;
    bottom: 13px;
}
.abs_choose_selection .date_range, .abs_choose_selection .single_date {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 10px;
    cursor: pointer;
}
.abs_choose_selection .date_range:hover, .abs_choose_selection .single_date:hover {
    background: #d5d5d5;
}
.pos-relative {
    position: relative;
}
.upload_image_name {
    position: absolute;
    background: rgba(0,0,0,0.5);
    width: 100%;
    padding: 9px;
    color: #fff;
    bottom: 0;
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top_flex_ltl {
    justify-content: center !important;
    align-items: flex-start !important;
}
.picture_buttons {
    margin-top: 15px;
    text-align: center;
}
.icon_calendar {
    position: absolute;
    bottom: 7px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
}
.wc_50 {
    width: 50% !important;
}
.doc_custom_image {
    justify-content: center;
    text-align: center;
}
.doc_custom_image img {
    height: 80%;
    width: unset !important;
}
.upload_image_name_doc {
    position: absolute;
    background: rgba(0,0,0,0.5);
    width: 100%;
    padding: 9px;
    color: #fff;
    bottom: 0;
        word-break: break-all;
}

.wrapper_search_data {
    margin-top: 20px;
}
.no_load_found {
    padding: 60px 30px;
    text-align: center;
    color: #ff6868;
}

.image_load img {
    width: 60px;
    height: 60px;
    aspect-ratio: 3/3;
}
.ltl_ftl_load img {
    width: 60px;
    margin-top: 15px;
}
.loads_database_wrap {
    background: #f9f9f9;
    border: 2px solid #ededed;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: stretch;
    height: 100%;
    justify-content: space-between;
}
.left_image_load {
    float: left;
    text-align: center;
    margin-right: 10px;
    width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.time_load {
    margin-top: 5px;
    font-size: 12px;
}
.countries_address {
    color: #8f8f8f;
}
.loading_text_country {
    margin-bottom: 7px;
}
.loading_text_country:last-child {
    margin-bottom: 0;
}
.intermediate_stops {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 11px;
    margin-bottom: 7px;
}
.loading_location {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 135px;
}
.loading_place_infor_wrap {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
    border-right: 2px solid #e5e5e5;
    margin-right: 15px;
}
.loading_weight {
    width: 70px;
    text-align: center;
}
.kg_capacity {
    margin-top: 10px;
    margin-bottom: 10px;
}
.description_text {
    color: #3680b1;
    font-size: 10px;
    margin-bottom: 5px;
}
.loading_dates {
    font-size: 12px;
    margin-bottom: 5px;
}
.requires_truck {
    margin-top: 0px;
}
.requires_remarks {
    margin-bottom: 5px;
}
.image_currency img{
    width: 22px;
    margin-right: 5px;
}
.snowflake_data img  {
    width: 20px;
    margin-right: 5px;
}
.currency_dates {
    display: flex;
    align-items: center;
    gap: 25px;
}
.snowflake_data, .curreny_felex {
    display: flex;
    align-items: center;
}
.description_text_wrap {
    width: 48%;
}
.rating_data {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.bid_button {}
.bid_button button {
        background: #005bc8;
    border: 1px solid #005bc8;
    padding: 0px 10px;
    height: 30px;
    text-align: center;
    width: 105px;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
}
.bid_button button:hover {
    background: var(--primary-color);
    border: 1px solid var(--black-color);
}
.validity_date {
    font-size: 12px;
    color: #8f8f8f;
    text-align: right;
    margin-top: 10px;
}
.bid_box {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.top_search_bar {
    background: var(--secondary-color);
    width: 90%;
    margin: auto;
    padding: 15px 10px;
    display: flex;
    border-radius: 4px;
}
.top_search_bar_filter {
    background: #fff;
    width: 90%;
    margin: auto;
    padding: 15px 10px;
    margin-bottom: 80px;
}
.top_search_bar .form-group, .filter_inputs .form-group {
    margin-bottom: 10px;
}
.top_search_bar label {
    color: #202020;
}
.search_input {
        width: 100%;
    padding: 8px;
    border: inherit;
    border-radius: 2px;
    font-size: 11px;
}
.double_search_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.button_search_left {
    width: 100%;
    margin-top: 10px;
}
.filter_inputs .search_input {
    border: 2px solid #f0f0f0;
}
.below_filter h5 {
    font-size: 20px;
    margin-top: 25px;
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

#weight_input_text, #package_input_text {
    margin-top: 10px;
    display: none;
}

.clear_filter_text {
        text-align: center;
    width: 100% !important;
    display: block !important;
    color: red !important;
    font-size: 11px !important;
}

.loading_search_information {
    margin: 10px 0;
}
.form_view_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    clear: both;
    margin-bottom: 10px;
}

.wrap_around {
    width: auto;
    min-width: 24%;
}
.wrap_around label {
    margin-bottom: 5px;
    float: left;
    width: 100%;
    color: #818181;
}
.wrap_data_box {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #f8fbff;
    background: #f8fbff;
    border-radius: 5px;
    clear: both;
    float: left;
}

.heading_wrap_information {
    margin: 10px 0;
}

.heading_wrap_information h5 {
    font-size: 15px;
    width: 100%;
    float: left;
    clear: both;
    margin-bottom: 10px;
}

.bidding_info_data {
    float: left;
    clear: both;
    margin: 40px 20% 50px;
    box-sizing: border-box;
    
}
.bididng_default_text {
    text-align: center;
    line-height: 17px;
    color: #727272;
    margin-bottom: 25px;
}
.bidding_info_data .form_login {
    gap: 10px !important;
}
.bidding_info_data .form-group {
    width: 37% !important;
}
.bidding_info_data .form-groups {
    margin-top: 20px;
}
button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
button:disabled:hover,
button[disabled]:hover{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}

.poup_box_data {
    height: calc( 100vh - 20vh);
    overflow: auto;
}
.wrapper_search_data .box_form_price_inner {
    width: 85% !important;
}

.box_form_price_inner .close {
    position: absolute;
    /*left: -7px;
    top: -13px;*/
    left: 6px;
    top: 0px;
    font-size: 22px;
    color: red;
    cursor: pointer;
}
.amount_commission {
    color: var(--primary-color);
    font-weight: bold;
}
.already_submitted {
    background: var(--secondary-color) !important; 
    border:1px solid var(--secondary-color) !important;
/*    cursor: not-allowed !important;*/
}
.notification_div {
    position: relative;
}
.notification_div span {
    position: absolute;
    right: 4px;
    z-index: 1;
    top: -9px;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #fca54f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    padding: 9px;
    color: #fff;
}
.chat_notif_buttons {
    padding: 20px 15px;
    border-bottom: 1px solid #f0f0f0;
}
.chat_notif_buttons a {
    width: 50%;
    margin-right: -2px;
}
.chat_notif_buttons_active {
    background: var(--primary-color);
    color: #fff !important;
    border: 1px solid var(--primary-color);
}

.notification_box_left {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    position: relative;
}
.notification_box_left:hover {
    background: #fafafa !important;
}
.notification_box_left .icon_notif i {
    font-size: 18px;
    color: #7a7a7a;
}
.icon_notif img {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    position: relative;
}
.notification_box_left .notif_desc {
    font-size: 12px;
    margin-bottom: 7px;
}
.notification_box_left .notif_content span {
    font-size: 11px;
    color: #b1b1b1;
}
.bord_down {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    font-weight: 500;
}
.bg_lower_select {
    background: #f0f0f0 !important;
}
.notif_right_box h4 {
    padding: 15px 20px;
}
.notifcation_inner_box {
    padding: 15px 20px;
}
.congratz_text {
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}
.notifcation_inner_box {
    text-align: center;
}
.blue_bg {
        width: 100%;
    border: 1px solid #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    background: #f3f6fb !important;
}
.custom_center_margin {
    justify-content: center;
    margin-top: 30px;
}
.custom_center_margin label {
    font-size: 15px !important;
    font-weight: 500;
}
.custom_center_margin .blue_bg {
    text-align: center;
}
.text_info_load_accepy {
    margin: 30px auto;
    width: 70%;
    font-size: 12px;
}
.flex_ {
    display: flex;
}
.center_margin_70 {
    margin: 0 auto;
    width: 70%;
    margin-bottom: 40px;
}
.button_flex_end {
    margin-top: 20px;
}
.chat_abst {
    position: absolute;
    right: 10px;
    top: 9px;
}
.font-big {
    font-size: 14px;
}
.count_message {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    position: absolute;
    right: 13px;
}
.chat_info_notice {
    padding: 50px;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat_heading {
    font-size: 15px;
    color: #202020;
}
.chat_exclamation {
    padding: 0px 20px;
    font-size: 12px;
    color: #818181;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}
.chat_exclamation i {
    font-size: 20px;
}
.time_show {
    margin-left: 25px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}
.message_parent {
    max-width: 70%;
}
.message_wrap  .message_parent .time_small {
    font-size: 11px;
    color: #a3a3a3;
    float: right;
    margin-top: 4px;
}
.message_wrap_left  .message_parent .time_small {
    font-size: 11px;
    color: #a3a3a3;
    float: left;
    margin-top: 4px;
}
.message_wrap .message, .message_wrap_left .message  {
    background: rgba(222, 222, 222, 0.41);
    box-shadow: 0px 10px 99px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    padding: 10px 10px;
    max-width: 100%;
    background: #000000b8;
    color: #fff;
    position: relative;
    text-align: left;
    font-size: 12px;
}
.message_wrap .message_time {
    color: #878787;
    margin-top: 9px;
    font-size: 11px;
    position: absolute;
    right: 46px;
    top: 41px;
}
.message_wrap_left .message_time {
    color: #878787;
    margin-top: 9px;
    font-size: 11px;
    position: absolute;
    left: 58px;
    top: 41px;
    right: auto;
}
.message_wrap_left .message {
/*    background: var(--secondary-color) !important;*/
    background: #bcbcbc !important;
    color: #fff;
}
.message_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 11px;
    margin-bottom: 20px;
    position: relative;
}
.image_person img {
    width: 36px;
    height: 36px;
    border-radius: 100px;
}
.message_wrap_left {
    flex-direction: row-reverse;
}
.options_chat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 10px;
}
.message_footer {
    padding: 15px 15px 0 15px;
    clear: both;
}
.small_button {
    padding: 5px 20px;
    font-size: 12px;
    margin-top: 5px;
}
.message_footer textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 7px;
    border-radius: 5px;
    height: 60px;
}
.borderred {
    border: 1px solid #f00 !important;
}
.message_div {
    width: 100%;
    padding: 20px;
    clear: both;
    float: left;
    height: calc( 100vh - 48vh );
    overflow: auto;
} 
.icon_notif {
    position: relative;
}

.offline {
    width: 14px;
    height: 14px;
    border-radius: 50px;
    background: #c9c9c9;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
}
.online_status {
    background: green !important;
}
.link_attach svg {
    cursor: pointer;
}

.chat_files .image_uploaded {
    width: 12%;
    height: auto;
}
.chat_files{
    margin-bottom: 0 !important;
}
.message img {
    width: 60%;
}
.icon_hover_show {
    position: absolute;
    right: 10px;
    bottom: 8px;
}
.icon_hover_show i {
    color: #52525287;
    font-size: 14px;
}
.icon_hover_show div:first-child {
    margin-bottom: 5px;
}


/*TOAST MESSAGE*/
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #33333390;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 13px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 14px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.center_blue {
    text-align: center;
    color: #668aff;
}
.left_blue {
    text-align: left;
    color: var(--primary-color);
}

.not_received {
    width: 70%;
    margin: 15% auto;
    text-align: center;
    opacity: 0.7
}
.not_received h5 {
    margin-bottom: 10px;
    font-size: 18px;
}

.custom_center h5{
    text-align: center;
}
.light_grey {
    color: #838383;
    font-size: 12px;
}
.userclass {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}
.text_normal_review {
    margin: 15px 0;
}
.review_questions {
}
.question_review {

}
.review_to_show {
    margin-top: 20px;
    border-bottom: 1px solid #ededed;
    padding-bottom: 15px;
}
.gold_color {
    color: #ffc700;
}

.review_posted_time {
    font-size: 11px;
    color: #838383;
}
.review_star_view {
    margin-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.review_star_view span:first-child {
    width: 40%;
    display: inline-block;
}

.edit_icon i {
    cursor: pointer;
    font-size: 12px;
}
.extra_small {
    font-weight: normal;
    font-size: 11px;
    color: var(--secondary-color);
}

/*RATING CSS*/
.rate {
    float: left;
    height: 46px;
    padding: 0 10px;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
    visibility: hidden;
}
.rate:not(:checked) > label {
    float:right;
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:30px;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '★ ';
}
.rate > input:checked ~ label {
    color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

/*RATING CSS ENDS*/

.review_overall {}
.review_left_overall  {
    width: 40%;
}
.review_right_overall {
    width: 60%;
    height: calc( 100vh - 30vh );
    overflow: auto;
}
.member_since_user {
    font-size: 16px;

}
.final_total_review {
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-color);
}
.star_total_rev i {
    font-size: 21px;
}

.small_text_notice {
    font-size: 12px;
    line-height: 18px;
}
.policy_text_uli ul{
    margin: 30px;
}
.policy_text_uli li {
    list-style: auto;
    margin-bottom: 25px;
}
.filter_review {
    cursor: pointer;
}
.filter_review i {
    margin-right: 5px;
}

.unread_notif {
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: 3px;
}
.info_review_pending {
    border: 1px solid #efefef;
    margin-top: 25px;
    padding: 25px;
    text-align: center;
    background: #fff1f1;
}
.offer_width_div {
    width: 50%;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 10px 18px;
    border-bottom: 1px solid #fff !important;
    border: 1px solid #e6e6e6;
}
table.dataTable.no-footer {
    border-bottom: 1px solid #e6e6e6 !important;
}

.dataTables_info {
    margin-top: 9px !important;
}
.dataTables_length, .dataTables_filter, .dataTables_info, .dataTables_paginate {
    margin-top: 13px;
    margin-bottom: 12px;
    font-size: 12px;
}
.dataTables_wrapper input {
    border: 1px solid #ccc;
    padding: 7px;
    border-radius: 3px;
}
.dataTables_wrapper select {
    border: 1px solid #ccc;
    padding: 3px;
    border-radius: 3px;
    font-size: 12px;
}
.dataTables_wrapper {
    width: 99.8%;
}

.status_column {
    position: absolute;
    top: 12px;
    z-index: 11;
}
.status_column select {
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
}
.show_load_info_flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.left_load_info {
    width: 60%;
}
.left_load_info_right {
    width: 40%;
}
.custom_load_info_a th {
    text-align: left;
    width: 40%;
}
.custom_load_info_a td {
    text-align: left;
}

.custom_load_info th {
    text-align: left;
    width: 30%;
}
.custom_load_info td {
    text-align: left;
}

.summary_wrap_f {
    width: 90% !important;
}
.document_div select {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 3px;
    font-size: 12px;
    width: 100%;
}
.fll_doc_link {
    width: 100%;
    display: inline-block;
    border-bottom: 1px dotted #f0f0f0;
    padding: 7px 0;
    text-decoration: underline;
}

.red_bg td {
    background: #ffb8b8 !important;
}
.normal_div {
    display: none;
}
.top_alert {
    background: #becaff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
}

.center_location {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.wrap_latest_loads {
    overflow: auto;
    max-height: 455px;
}

.payment_form {
    border: 1px solid #e3e3e3;
    padding: 20px;
    margin: 20px auto;
    width: 60%;
    border-radius: 5px;
    background: #fefefe;
}

.form_pament_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.form_pament_wrap .form-group {
    width: 49%;
}
.payment_class {
    border: 1px solid #e3e3e3;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
}
.dashboard_load_wrap {
    display: flex;
    justify-content: space-between;
/*    align-items: flex-start;*/
align-items: center;
    gap: 10px;
}
.dashboard_load_wrap .dashboard_left_wrap {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.dashboard_load_wrap .dashboard_left_wrap .stats_wrap_box {
    width: 45%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.dashboard_load_wrap .dashboar_right_wrap {
    width: 40%;
}

.stats_ornage_circle {
    font-size: 35px;
    font-weight: bold;
    border: 10px solid orange;
    border-radius: 100%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.text_transpory p, .text_transpory h4 {
    margin-bottom: 10px;
}
.text_transpory li {
    list-style: circle;
    margin-bottom: 9px;
    margin-left: 14px;
}
.upload_button {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    float: left;
    width: 50%;
    text-align: center;
    padding: 16px 10px;
    margin-top: 10px;
    cursor: pointer;
}
#fileInfo span {
    color: var(--secondary-color);
}
.clear_both {
    float: left;
    width: 100%;
    clear: both;
}
.charts_wrap .chart_left_div, .charts_wrap .chart_right_div {
    border: 1px solid #fff;
    padding: 0 20px;
    width: 49%;
}
.lang_check {
    color:#212aa3; font-weight: bold; text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card_all_listing {
    clear: both;
    float: left;
    width: 100%;
    margin-top: 20px;
}
.card_div_wrap {
        border: 1px solid #f0f0f0;
    padding: 19px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}
.card_left_side {
    display: flex;
    gap: 20px;
    align-items: center;
}
.image_card {
    font-size: 30px;
}
.card_actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.name_card {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 7px;
}
.card_actions  i {
    font-size: 18px;
    color: red;
    cursor: pointer;
}
.card_default_or_not a {
    color: var(--secondary-color);
}
.def_card {
    color: green;
    text-transform: uppercase;
    font-weight: bold;
}

.flex_cross {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 10px;
}
.fa-star.text-primary {
    color: #ffc700;
}

.search_load_right {
    color:#434343
}
.search_load_left {
    color:#000; font-weight: 500;
}


.stats_dropdown {
    float: right;
    clear: both;
    width: 100%;
    z-index: 9;
    position: relative;
}
.stats_dropdown select {
   display: flex;
    justify-content: flex-end;
    float: right;
    margin-top: 12px;
    margin-right: 18%;
    padding: 5px;
}

.navigation_profile .left_nav_pro i {
    display: none;
}

.navigation_profiles, .navigation_profile {
    border: 1px solid #fff;
    height: calc( 100vh - 31vh );
    overflow: auto;
}
.whatsapp_button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 23px;
    display: flex;
    gap: 9px;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}
.whatsapp_button:hover {
    background: var(--secondary-color);
    color: #fff;
}
.whatsapp_button_page {

    background: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 23px;
    display: flex;
    gap: 9px;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}
.whatsapp_button_page:hover {
    background: var(--secondary-color);
    color: #fff;
}
.charge_transport {
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    color: #ff5a5a;
    text-align: center;
}

.name_co_dash {
    font-family: var(--font-family);
    font-size: 25px;
    margin-top: 0 !important;
    color: var(--primary-color);
    -webkit-font-smoothing: antialiased;
}


.planDetails{
    margin: 0 auto;
    margin-bottom: -50px ;
    width: 30%; 
}

.planDetails table {
    padding: 10px;

    width: 100%;
    border-collapse: collapse;
}

.planDetails th, .planDetails td {
    padding: 12px; /* Adjust padding as needed */
    text-align: left;
}


.planDetails tr {
    background-color: #fff; /* Set background color to white */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow effect */
}

/* .paymentFormDiv{
    position: relative;
   
} */

.planDetails2{
    position: relative;
    margin-top: -170px;;
    float: right;
    margin-left: -30px;
}


.planDetails2 table {
    padding: 10px;

    width: 100%;
    border-collapse: collapse;
}

.planDetails2 th, .planDetails2 td {
    padding: 20px; /* Adjust padding as needed */
    text-align: left;
}


.planDetails2 tr {
    border-radius: 20px;
    background-color: #fff; /* Set background color to white */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}