* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    background: var(--bg-body);
    height: 100vh;
    color: var(--text-primary) !important;
}

body {
    padding-top: 50px;
    font-weight: 400;
    letter-spacing: normal;
}

:root {
    font-size: 13px;
    --text-primary: #ffffff;
    --transition-speed: 250ms;
    font-family: "Segoe UI" !important;
}

.dark {
    --text-primary: #ffffff;
    --text-secondary: #00D9AD;
    --bg-primary: linear-gradient(#303030, #1d1d1d);
    --bg-body: linear-gradient(#181818, #0c0c0c);
}

.light {
    --text-primary: #222222;
    --text-secondary: #00D9AD;
    --bg-primary: linear-gradient(rgb(240, 240, 240), rgb(255, 255, 255));
    --bg-body: #ffffff;
}

a {
    text-decoration: none;
}

.row {
    --bs-gutter-x: 0rem;
}

.npe {
    pointer-events: none;
    
}
.npe-div {
    pointer-events: none;
    opacity: 0.4;    
}
 
h4{
    font-size: 16px;
}

input {
    border-radius: 3px !important;
}

button {
    border: none;
}

::placeholder {
    color: rgb(190, 190, 190) !important;
}

div.search-filters__places input[readonly],
div.search-filters__places input[readonly] + label,
div.search-filters__places input[readonly]:active,
div.search-filters__places input[readonly] + label:active {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}



/* COOKIE */
.freeprivacypolicy-com---palette-light {
    box-shadow: 0px 0px 7px rgb(141, 141, 141);
    border-radius: 15px 0 0 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* CHECKBOX SWITCH */

input[type="checkbox"].switch_1{
    font-size: 14px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 3.5em;
    height: 1.5em;
    background: #ddd;
    border-radius: 3em !important;
    border: none !important;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  
  input[type="checkbox"].switch_1:checked{
    background: #0ebeff;
  }
  
  input[type="checkbox"].switch_1:after{
    position: absolute;
    content: "";
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
            box-shadow: 0 0 .25em rgba(0,0,0,.3);
    -webkit-transform: scale(.7);
            transform: scale(.7);
    left: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  
  input[type="checkbox"].switch_1:checked:after{
    left: calc(100% - 1.5em);
  }

/* CONFIRMATION MSG */
.confirmation-popup-msg {
    width: 100px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    color: black;
    border-radius: 6px;
    border: none;
    font-weight: 500;
}

#popup-confirmation-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
}

#popup-confirmation-msg {
    display: flex;
    flex-direction: column;
    height: 120px;
    overflow: auto;
    font-weight: normal;
    color: #636363;
}

#popup-confirmation {
    position: relative;
    width: 330px;
    height: 330px;
    background-color: rgb(255, 255, 255);
    color: rgb(117, 117, 117);
    border-radius: 6px;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.212);
    font-weight: 500;
    padding: 60px 40px;
    animation: fadeInDown 0.5s forwards;
}

/* SUCCESS ERROR */
#popup-msg-container.change, #company-msg-container.change {
    opacity: 1;
    transition: all ease-in-out 3s;
}

#popup-msg-container, #company-msg-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#popup-msg, #company-msg {
    position: relative;
    width: 330px;
    height: 330px;
    background-color: rgb(255, 255, 255);
    color: rgb(117, 117, 117);
    border-radius: 6px;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.212);
    font-weight: 500;
    padding: 60px 40px;
    animation: fadeInDown 0.5s forwards;
}
#popup-msgs, #company-msgs {
    display: flex;
    flex-direction: column;
    height: 120px;
    overflow: auto;
    font-weight: normal;
    color: #636363;
}
#close-popup-msg, #close-company-msg {
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 30px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes fadeOutTop {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-200px);
    }
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(-200px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.popup-icon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    position: absolute;
    top: -47px;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    font-size: 45px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-msg-title {
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: rgb(90, 90, 90);
    font-size: 24px;
    margin-bottom: 10px;
}

.close-popup-msg-s {
    background-color: #00D9AD;
}

.close-popup-msg-e {
    background-color: #da3300;
}

.close-popup-msg-s:hover {
    background-color: #00be98;
}

.close-popup-msg-e:hover {
    background-color: #c22d00;
}
  
#details-societe, .details-carrier{
    cursor: pointer;
    background-color: #e7e7e7;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid #c9c9c9;
}
#details-societe:hover, .details-carrier:hover{
    background-color: #d4d4d4;
}

/* TOOLTIP */

.twtooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}
  
.twtooltip .twtooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 9999;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
}
  
.twtooltip .twtooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}
  
.twtooltip:hover .twtooltiptext {
    visibility: visible;
}

/* GOOGLE PLACES */

.pac-icon {
    display: none;
}

.pac-item {    
    color: rgb(122, 122, 122);
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.pac-item-query {
    font-size: 16px;
    height: 20px;
}

.pac-container {
    border-radius: 7px;
    margin-top: 5px;
    z-index: 100000;
}


/* BALISES */

input[type='text'],
input[type='password'],
input[type='email'] {
    padding-left: 7px;
}

textarea {
    padding: 4px 7px !important;
}

textarea {
    resize: none;
}

/* CHECKBOX */
.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
}

.custom-checkbox-container:hover input~.checkmark {
    background-color: #ccc;
}

.custom-checkbox-container input:checked~.checkmark {
    background-color: #00D9AD;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox-container input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* NAVBAR */

#navbar-items {
    width: 100%;
}

#close-navbar {
    display: none;
    font-size: 45px;
    top: 25px;
    right: 25px;
    cursor: pointer;
    height: 35px;
    width: 35px;
    border-radius: 5px;
}

#close-navbar:hover {
    background-color: rgb(238, 238, 238);
}

#background-blur {
    z-index: 1000;
    position: absolute;
    display: none;
    background-color: #00000050;
    top: 0;
    left: 0;
    width: 991px;
}

.navbar {
    position: fixed;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background: var(--bg-primary);
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.4));
}
.navbar-light .navbar-nav .nav-link {
    color: var(--text-primary);
    
    border-radius: 5px;
    margin-bottom: 5px;
    width: fit-content;
    
    padding: 5px 20px;
    margin: 0px 5px;
}

.navbar-light .navbar-nav .nav-link:hover {
    background-color: rgb(235, 235, 235);
}

.logo {
    width: 220px;
}

.navbar-nav {
    justify-content: center;
    padding-right: 220px;
}

.manage-user {
    border: 1px #00D9AD solid;
    margin-left: auto;
    background-color: #00D9AD;
}

.compte-link {
    position: absolute;
    right: 50px;
}

.dropdown-menu {
    background-color: #ffffff;
    border: 1px solid rgb(211, 211, 211);
    width: 140px;
    border-radius: 0;
    padding: 0;
}

.dropdown-menu a {
    margin: 7px 0;
}

.dropdown-menu .dropdown-item {
    color: rgb(0, 0, 0);
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgb(235, 235, 235);
}

.new-notification {
    animation: color-change 1.75s infinite;
}

@keyframes color-change {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: #00d9ae73;
    }

    100% {
        background-color: transparent;
    }
}

.navbar-light .navbar-toggler {
    border: none;
}


/* MISSIONS */
.plate-country{
    width: 18px;
    height: 20px;
    background-color: #003399;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.plate-tag{
    width: fit-content;
    padding: 0px 5px;
    display: inline-block;
    background-color: white;
    font-weight: bold;
    color: rgb(60, 60, 60);
}
.plate{
    border: 2px solid black;
    border-radius: 5px;
    overflow: hidden;
}
.date-text-input{
    width: 140px !important;
}
.arrow {
    width: 4px;
    height: 50px;
    background-color: #000; /* Black color for the stick */
    margin: 0 auto;
    position: relative;
}
.arrow::before,
.arrow::after {
    content: "";
    width: 20px;
    height: 4px;
    background-color: #000; /* Black color for the arrow lines */
    position: absolute;
    top: 0;
    left: 0;
}
.arrow::before {
    transform: rotate(45deg);
}
.arrow::after {
    transform: rotate(-45deg);
}
.mission-step-number{
    height: 100%;
    width: 25px;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 71, 138, 1);
    color: white;
    margin-right: 10px;
}
.mission-step{
    background-color: rgba(0, 71, 138, 0.300);
    height: 80px;
    padding-left: 10px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1);
    margin: 10px 0px;
}
.mission-step div{
    display: flex;
    align-items: center;
}
.title-bc-blue{
    background-color: rgba(0, 71, 138, 0.175);
    color: #00478a !important;
    height: 30px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    cursor: pointer;
}
.title-bc-blue:hover{
    background-color: rgba(0, 71, 138, 0.300);
}
.title-bc-blue span{
    font-weight: 500;
}
.title-bc-red{
    background-color: rgba(138, 0, 0, 0.175);
    color: #8a0000 !important;
    height: 30px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    cursor: pointer;
}
.title-bc-red:hover{
    background-color: rgba(138, 0, 0, 0.3);
}
.title-bc-red span{
    font-weight: 500;
}
.title-bc{
    background-color: rgba(0, 158, 124, 0.175);
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.title-bc h3{
    margin: 0 !important;
}
.form-horizontal-inputs{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}
.form-horizontal-inputs div{
    width: 100%;
    display: flex;
    gap: 15px 15px;

}
.form-horizontal-inputs-2{
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.form-horizontal-inputs-2 div{
    display: flex;
    gap: 15px 15px;
}
.form-gap{
    gap: 15px;
    margin-bottom: 40px;
}
.step-counter{
    width: 35px;
    height: 100%;
    background-color: #009675;
    color: white;
    font-weight: bold;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.select-bc-green {
    outline: 10px red;
    border: 0;
    box-shadow: none;
    padding: 0 1em;
    color: #fff;
    background-color: #009675;
    background-image: none;
    cursor: pointer;
    height: 100%;
    width: 280px;
    font-weight: 500;
    position: relative;
    margin-left: 10px;
}
/*HOMEPAGE */

.navbar-homepage {
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    height: 75px;
    background-color: white;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.4));
}
.nav-link-homepage{
    color: rgb(48, 48, 48);
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    width: fit-content;
    padding: 8px 30px;
    margin: 0px 5px;
}

.homepage-info{
    height: 35px;
    width: 100%;
    background-color: #183153;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    font-weight: 500;
    font-size: 13px;
    position: absolute;
    top: 0;
    z-index: 10;
}
.homepage-info a{
    color: white;
    font-size: 16px;
    margin-left: 7px;
}
.homepage-info div i{
    margin-right: 5px;
}
.homepage-banner{
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url('/assets/img/imgs/background.jpeg');
    background-position:center center;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.homepage-banner div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1000px;
}
.homepage-banner h1{
    font-weight: 900;
    font-size: 40px;
}
.homepage-banner span{
    font-weight: 500;
    font-size: 15px;
}
.homepage-banner hr{
    border-top: 2px solid white;
    opacity: 1;
    width: 100%;
}
.homepage-link-btn{
    color: white;
    font-size: 16px;
    width: 250px;
    height: 40px;
    background-color: #009675;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    border-radius: 3px;
    justify-self: flex-start;
}
.homepage-link-btn:hover{
    background-color: #00b991;
}
.homepage-section-container{
    width: 100%;
    display: flex;
    justify-content: center;
}
.homepage-section{
    width: 1100px;
    height: 550px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: #303030;
}
.image-container-400-550{
    height: 510px;
    width: 374px;
    display: flex;
    justify-content: space-between;
    padding: 5px 5px 20px 5px;
    align-items: center;
    flex-direction: column;
    font-weight: 900;
    font-size: 24px;
    color: rgb(218, 218, 218);
    background-color: #183153;
}
.image-container-400-300{
    height: 380px;
    width: 410px;
    display: flex;
    justify-content: space-between;
    padding: 5px 5px 20px 5px;
    align-items: center;
    flex-direction: column;
    font-weight: 900;
    font-size: 24px;
    color: rgb(218, 218, 218);
    background-color: #183153;
}
.image-container-400-300-s{
    height: 310px;
    width: 410px;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    align-items: center;
    flex-direction: column;
    background-color: #183153;
}
.homepage-small-uc-title{
    font-weight: 700;
    font-size: 16px;
    color: #009978;
}
.homepage-section h2{
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 25px;
}
.homepage-section p{
    font-size: 15px;
    font-weight: 500;
    color: rgb(90, 90, 90);
}
.service-element-homepage{
    width: 240px;
    height: 60px;
    background-color: #009978;
    font-size: 15px;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}
.service-element-container{
    display: flex;
    column-gap: 40px;
    margin: 20px 0px;
}
.service-element-span{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.service-icon{
    color: #303030;
    font-size: 30px;
}
.service-element-description{
    color: #5a5a5a;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    padding: 0 15px;
}
.homepage-advantage-list{
    list-style: none;
    padding-left: 0;
}
.homepage-advantage-list strong{
    font-size: 15px;
    font-weight: 500;
}
.homepage-advantage-list i{
    color: #009978;
    font-size: 16px;
    margin-right: 10px;
}
.homepage-advantage-list p{
    font-size: 14px;
}
.homepage-footer{
    background-color:#303030;
    color: white;
    height: 270px;
    width: 100%;
    padding: 50px 50px 20px 50px;
}
.homepage-footer strong{
    font-size: 26px;
    font-weight: 550;
    color: #00D9AD;
    margin-bottom: 10px;
}
.homepage-footer p{
    font-size: 16px;
    font-weight: 500;
}
.homepage-footer ul{
    margin-top: 10px;
}
.homepage-footer li{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
}
.homepage-footer i{
    color: white;
}
.homepage-footer a{
    color: white;
}
.homepage-footer a:hover{
    text-decoration: underline;
}
.homepage-footer-socials{
    font-size: 23px;
    display: flex;
    column-gap: 12px;
    margin-top: 20px;
}
.homepage-link-btn-transparent{
    color: white;
    font-size: 16px;
    width: 200px;
    height: 40px;
    background-color: transparent;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    justify-self: flex-start;
    border: 1px solid #009675;
    margin-top: 10px;
}
.homepage-footer-legal{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    margin-top: 25px;
}

/* TDB */
.members-list-div{
    width: 100%;
    height: 300px;
    border-radius: 3px;
    border: 1px solid rgb(211, 211, 211);
}
#members-results{
    width: 100%;
    height: 280px;
    overflow-x: hidden;
}
#members-results div{
    font-size: 13px;
    color:black;
    height: 40px;
    background-color: rgb(245, 245, 245);
    display: flex;
    align-items: center;
    padding-left:20px;
    cursor: pointer;
    border-bottom: #ffffff 1px solid;
}
#members-results div:hover{
    background-color: rgb(235, 235, 235);
}
.div-active{
    background-color: rgba(255, 217, 0, 0.5) !important;
}


#members-list-content {
    position: relative;
    width: 400px;
    height: 530px;
    background-color: rgb(255, 255, 255);
    color: rgb(117, 117, 117);
    border-radius: 6px;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.212);
    font-weight: 500;
    padding: 20px 30px;
    animation: fadeInDown 0.5s forwards;
}

.community-row{
    height: 30px;
    padding-right: 10px !important;
    border-bottom: 1px solid rgb(211, 211, 211);
    display: flex;
    font-weight: 500;
    padding: 5px 0px;
    transition: all 0.15s ease;
}
.community-row span{
    display: flex;
    align-items: center;
}
#invit-mail1 {
    width: 100% !important;
}

.notification-table {
    overflow-y: auto;
    height: 200px;
}

.btn-document {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 500;
    width: fit-content;
    padding: 0px 30px;
    height: 30px;
    background-color: #00b38f;
    cursor: pointer;
    margin-right: 10px;
}

#contact-support-close,
#tdb-fret-btn-close {
    position: absolute;
    top: 30px;
    right: 50px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    cursor: pointer;
    font-size: 22px;
}

#contact-support-close:hover,
#tdb-fret-btn-close:hover {
    background-color: #eeeeee;
}

.contact-support-content{
    display: flex;
    flex-direction: column;
}

#fret-details-container,
#mission-offers-container,
#mission-details-container,
#notif-details-container,
#contact-support-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    background-color: #00000060;
}

.notif-details-window {
    width: 600px;
    height: fit-content;
    border-radius: 6px;
    padding: 30px 50px 30px 50px;
    position: relative;
    background-color: white;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.212);
}

.fret-details-window {
    width: 900px;
    height: 450px;
    border-radius: 6px;
    padding: 30px 50px 100px 50px;
    position: relative;
    background-color: white;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.212);
    animation: fadeInDown 0.25s forwards;
}

#mission-details-window{
    overflow-y: auto;
    height: 650px;
}

.fret-details-window input {
    width: 100%;
}

.fret-details-window input[type="submit"] {
    width: 130px;
}

.fret-details-window h3 {
    font-size: 16px;
    color: #009e7c;
}

/* .fret-details-window h4 {
    font-size: 20px;
} */

.tdb-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    background-color: rgb(243, 243, 243);
    padding: 15px;
}

.tdb-outside-layer {
    padding: 15px;
}

.tdb-outside-layer-r {
    padding-right: 15px;
    width: 100%;
}

.tdb-outside-layer-l {
    padding-left: 15px;
    width: 100%;
}

.tdb-main-element {
    background-color: white;
    box-shadow: 0px 0px 3px 3px rgb(236, 236, 236);
    height: fit-content;
    padding: 20px 30px;
    height: 325px;
}
.tdb-main-element-profil {
    background-color: white;
    box-shadow: 0px 0px 3px 3px rgb(236, 236, 236);
    height: fit-content;
    padding: 20px 30px;
}
.tw-table{
    width: 100%;
}
.tw-table tr:nth-child(even) {
    background-color: #E7E9EB; /* Apply background to odd rows */
}

.tw-table th, .tw-table td{
    border: 1px solid #dddddd;
    padding: 3px 10px;
}
.delete-blacklist{
    background-color: transparent;
    width: 100%;
    height: 100%;
}


.tdb-element {
    width: 100%;
    background-color: white;
    border-radius: 3px;
}

.tdb-btn {
    width: 50%;
    padding: 6px 0px;
    color: #272727;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    font-weight: 500;
    background-color: rgb(245, 245, 245);
}

.tdb-offer-header {
    height: 30px;
    color: #474747;
    background-color: rgb(248, 248, 248);
    display: flex;
    align-items: center;
    font-weight: bold;
    padding-right: 10px;
}

.tdb-element span {
    padding-left: 10px;
}

.tdb-title {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.tdb-title h4 {
    /* font-size: 23px; */
    display: inline;
    margin: 0;
    color: #333333;
}

.tdb-groupe-self {
    cursor: default;
    border-bottom: 1px solid rgb(211, 211, 211);
    display: flex;
    height: fit-content;
    font-weight: 500;
    padding: 5px 0px;
    background-color: rgb(232, 255, 246);
}

.tdb-notif-element,
.tdb-offer-element,
.tdb-groupe-element,
.tdb-validated-element,
.tdb-validated-mission {
    border-bottom: 1px solid rgb(211, 211, 211);
    cursor: pointer;
    display: flex;
    height: fit-content;
    font-weight: 500;
    padding: 5px 0px;
    transition: all 0.15s ease;
}

.tdb-offer-element:hover,
.tdb-notif-element:hover,
.tdb-groupe-element:hover,
.tdb-validated-element:hover,
.tdb-validated-mission:hover {
    background-color: rgb(247, 247, 247);
}

.canceled-mission{
    background-color: rgb(255, 201, 201);
}
.canceled-mission:hover{
    background-color: rgb(255, 167, 167);
}

.tdb-offer-body {
    height: 220px;
    overflow-y: scroll;
}

.tdb-main-element-g {
    background-color: white;
    box-shadow: 0px 0px 3px 3px rgb(236, 236, 236);
    height: 340px;
    padding: 20px 30px;
    display: flex;
    width: 100%;
}

.tdb-groupe-1 {
    padding-right: 20px;
}

.tdb-groupe-2 {
    border-left: 1px solid rgb(211, 211, 211);
    padding: 0 20px 0 20px;
}

.tdb-groupe-3 {
    border-left: 1px solid rgb(211, 211, 211);
    padding: 0 0 0 20px;
}

#tdb-empty-container {
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #525252;
}

.tdb-groupe-3__1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.first-tdb-groupe {
    display: flex;
}

#plus-mail,
#minus-mail {
    width: 30px;
    height: 30px;
    border: 1px solid rgb(211, 211, 211);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin: 0px 3px;
    color: rgb(95, 95, 95);
    cursor: pointer;
}

#plus-mail:hover,
#minus-mail:hover {
    background-color: rgb(240, 240, 240);
}

.tdb-groupe-inv-btn-container {
    display: flex;
}

.folder-path-tdb {
    padding: 6px 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(211, 211, 211);
}

#tdb-empty-container-perf {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 100px;
    font-size: 20px;
    font-weight: 500;
}

.unseen-notif {
    background-color: #00d9ae1e;
}

/* SIGN MINE */

.signup-card {
    border: 1px solid rgba(109, 109, 109, 0.623);
    border-radius: 0;
    box-shadow: 0px 0px 5px 1px rgb(241, 241, 241);
    background-color: #ffffff;
    width: 165px;
    height: 180px;
    cursor: pointer;
    padding: 20px;
}

.signup-card .card-title {
    font-size: 12px;
}

.signup-card .card-text {
    font-size: 12px;
}

.grade-active {
    background-color: #dffff8;
    border: 2px solid #009e7e;
}

.btn_login_sign {
    width: 350px;
    border-radius: 3px;
    
    transition: all 0.1s ease-out;
    background-color: #00D9AD;
    height: 35px;
    color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn_login_sign:hover {
    background-color: #00c09a;
}

.btn_login_sign_b {
    width: 350px;
    border-radius: 3px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.329) !important;
    color: rgb(66, 66, 66);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: not-allowed;
}

#login-step1 {
    width: 350px;
}

#login-step2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 35px;
}

#login-step3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#login-step4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ville_cp input {
    width: 165px !important;
}

.ville_cp {
    width: 350px;
    display: flex;
    justify-content: space-between;
}

.error_span {
    color: #ff4949;
    font-size: 12px;
    padding-bottom: 15px;
}

#kbis,
#licence,
#assurance,
#attestation,
#assurance-remorque-inv,
#ct-remorque-inv,
#cg-remorque-inv {
    display: none;
}

.input-file{
    display: none;
}

.document-btn {
    height: 35px;
    width: 350px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(39, 39, 39);
    margin-bottom: 14px;
    color: rgb(39, 39, 39);
    padding: 0px 0px 0px 15px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.document-btn-s {
    height: 25px;
    width: 150px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(39, 39, 39);
    margin-bottom: 14px;
    color: rgb(39, 39, 39);
    padding: 0px 0px 0px 15px;
    display: flex;
    align-items: center;
}

.document-active {
    background-color: #a1ffec !important;
}

.document-btn:hover, .document-btn-s:hover {
    background-color: #e6fffa;
    cursor: pointer;
}

.document-btn i, .document-btn-s i {
    color: #00D9AD;
    margin-right: 15px;
}


/* LOGIN / SIGN */

.center-link-button {
    width: 350px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    color: black;
    background-color: rgb(221, 221, 221);
    
}

.center-link-button:hover {
    color: black;
    background-color: rgb(212, 212, 212);
}

.error {
    color: #ff000d;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.25);
}

.img_login_sign {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    margin-top:-50px;
    min-height: calc(100% + 50px);
    background-position:bottom;
}

.right_login_sign {
    height: fit-content;
    width: 440px;
    padding: 30px 0px;
    background-color: white;
    border: 1px solid rgb(219, 219, 219);
    border-radius: 3px;
    color: rgb(50, 50, 50);
    box-shadow: 0px 0px 10px 3px rgb(50 50 50);
}

.logo_login_sign img {
    width: 350px;
}

.go_back,
.no_account {
    text-decoration: none;
    margin: 20px;
    font-weight: bold;
}

.go_back {
    color: rgb(50, 50, 50);
}



.no_account:hover i {
    color: rgb(50, 50, 50);
}

.img_login_sign p {
    color: rgb(50, 50, 50);
    
}

.img_login_sign h1 {
    color: rgb(50, 50, 50);
    font-weight: bold;
}

.border-left {
    height: 3px;
    background-color: #00D9AD;
    border-radius: 5px;
    width: 150px;
}

.border-right {
    height: 3px;
    background-color: #3d3d3d;
    border-radius: 5px;
    width: 150px;

    background: linear-gradient(to left, #3d3d3d 50%, #00D9AD 50%);
    background-size: 200%;
    background-position: right;
    transition: all 1s ease-out;
}

.border-right:hover {
    background-position: left;
}

.img_login_sign textarea {
    width: 350px;
    border: 1px solid rgb(211, 211, 211);
    border-radius: 3px;
    margin-bottom: 25px;
    color: rgb(50, 50, 50);
}

.img_login_sign input {
    height: 35px;
    width: 350px;
    border: none;
    border-radius: 3px;
    margin-bottom: 25px;
    color: rgb(50, 50, 50);
}

.img_login_sign input:focus {
    outline: none;
}

.img_login_sign input:focus::placeholder {
    color: rgba(0, 0, 0, 0);
}

.img_login_sign input::placeholder {
    color: rgb(50, 50, 50);
}

.error::placeholder {
    color: #ff4949 !important;
}



.success {
    border: 1px solid #00b16d !important;
}

.error {
    border: 1px solid rgb(173, 0, 0) !important;
}

/* MESSAGE DE SUCCES */

.success-grp {
    background-color: rgba(224, 252, 229, 0.596);
    border: 1px solid #000;
    border-radius: 5px;
    height: 150px;
    width: 300px;
    position: fixed;
    z-index: 10000;
    top: 760px;
    left: 1600px;
    opacity: 0;
    box-shadow: 1px 0 5px 0 rgba(0, 0, 0, 0.356);
    padding: 20px;
}

.success-grp2 {
    background-color: rgba(224, 252, 229, 0.596);
    border: 1px solid #000;
    border-radius: 5px;
    height: 150px;
    width: 300px;
    position: fixed;
    z-index: 10000;
    top: 760px;
    left: 1600px;
    opacity: 0;
    box-shadow: 1px 0 5px 0 rgba(0, 0, 0, 0.356);
    padding: 20px;
}

.load-success {
    opacity: 1;
    transform: translateY(-15px);
    transition: transform 0.4s ease-in-out, opacity 0.6s ease-in-out;
}

.load-success-remove {
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.4s ease-in-out, opacity 0.2s ease-in-out;

}

/* RECHERCHE FRET NOUVEAU */
.fa-fire{
    font-size: 14px;
    color: rgb(146, 22, 0);
}
.fa-moon{
    margin-right: 3px;
    font-size: 14px;
    color: rgb(0, 20, 134);
}

.fret-nouveau{
    border-right-color: rgb(0 185 161 / 70%) !important;
}
#hidden-filters{
    width: 100%;
}
.show-filters {
    display: flex !important;
    flex-wrap: wrap;
}

.show-filters_height {
    height: 170px !important;
}

#open-filters {
    display: none;
}

#go-back {
    background-color: rgb(230, 230, 230);
    border-radius: 3px;
    border: 1px solid gray;
    font-weight: 500;
    padding: 2px 8px;
    display: none;
}

.txt-shadow {
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
        1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

#voir-retours,
#voir-rechargements {
    background-color: #94ffea;
    border-radius: 3px;
    width: fit-content;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
    margin-bottom: 15px;
}

.search-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.folder-path {
    padding-left: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    
    border-bottom: 1px solid rgb(211, 211, 211);
}

#search-filters-container {
    background-color: rgb(240, 240, 240);
    padding: 10px 30px;
    border-bottom: 1px solid rgb(211, 211, 211);
    transition: all 0.2s ease;
    height: 60px;
    width: 100%;
}

.search-filters--expanded {
    height: 160px !important;
    transition: all 0.2s ease;
}

.search-filters {
    display: flex;
    
}

.search-filters div {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.search-filters__places {
    position: relative;
}

.search-filters__places input {
    height: 30px;
    width: 150px;
    border: 1px solid rgb(211, 211, 211);
    border-radius: 3px;
}

.search-filters__places .top-element {
    top: -10px;
    z-index: 1;
}

.div-icon {
    width: 150px;
    height: 30px;
    background-color: white;
    border: 1px solid rgb(211, 211, 211);
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-radius: 3px;
    transition: all 0.15s ease;
}
.div-icon:hover {
    background-color: rgb(247, 247, 247);
}

.select-white {
    width: 150px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid rgb(211, 211, 211);
}

.select-white-s {
    width: 150px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid rgb(211, 211, 211);
    padding: 0 0 0 10px;
}

#swap-content {
    height: 35px;
    width: 35px;
    margin-top: 5.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
}

#enlevement-btn,
#livraison-btn {
    background-color: #00D9AD;
}

#more-filters {
    border-top: 1px solid rgb(66, 66, 66);
    margin-top: 20px;
    padding-top: 30px;
    padding-left: 20px;
}

.vertical-hr-35 {
    background-color: rgb(121, 121, 121);
    width: 1px;
    height: 45px;
    margin-left: 15px;
    margin-right: 30px;
}

.vertical-hr-75 {
    background-color: rgb(121, 121, 121);
    width: 1px;
    height: 75px;
    margin: 0;
}

.vertical-hr-300 {
    background-color: rgb(121, 121, 121);
    width: 1px;
    height: 460px;
    margin: 0 30px 0px 30px;
}

.search-icon-div {
    background-color: white;
    height: 30px;
    width: 30px;
    margin: 0;
    display: flex;
    justify-content: center;
    border-radius: 3px;
    border: 1px solid rgb(211, 211, 211);
    cursor: pointer;
    position: relative;
}

#search-save-div,
#search-load-div {
    width: 200px;
    position: absolute;
    background-color: white;
    top: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(211, 211, 211);
    border-radius: 3px;
    padding: 20px 15px 0px 15px;
    z-index: 1000;
    box-shadow: 0px 0px 3px 1px rgb(209, 209, 209);
}

#search-save-div div,
#search-load-div div {
    
    width: fit-content;
    height: fit-content;
    padding: 5px 10px;
    margin: 5px;
}

#search-save-div label {
    font-size: 12px;
    top: 10px;
    left: 15px;
}

#search-load-div ul {
    list-style: none;
    height: 150px;
    width: 100%;
    padding: 0;
    border-radius: 3px;
    border: 1px black solid;
    overflow-y: auto;
}

#search-load-div ::-webkit-scrollbar {
    width: 4px;
}

#search-load-div ul li {
    display: inline-block;
    width: 100%;
    height: 30px;
    padding: 15px 10px;
    font-weight: 500;
    background-color: #fcfcfc;
    border-bottom: 1px solid rgb(231, 231, 231);
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #474747;
}

#search-load-div ul li:hover {
    background-color: #e4e4e4;
}
.my-transport{
    background-color: rgb(212, 252, 255);
}
.active-outline {
    border-color: #1985dd;
    box-shadow: 0 0 0 0.25rem rgba(33, 135, 202, 0.25);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#submit-recherche {
    height: 30px;
    font-weight: bold;
    color: white;
    background-color: #00D9AD;
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-radius: 3px;
}

#submit-recherche:hover,
.btn-submit:hover {
    background-color: #00be98;
}

.search-bot-container {
    width: 100%;
    flex: 1;
    overflow-y: auto;
    display: flex;
}

.search-left-container {
    width: 60%;
    height: 100%;
}

.search-right-container {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#search-table-container {
    width: 100%;
    height: calc(100% - 50px);
    overflow-y: auto;
    overflow-x: hidden;
}

#search-table-container-empty {
    width: 100%;
    height: calc(100% - 50px);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 23px;
    font-weight: 500;
    padding: 30px 150px;
    text-align: center;
}

#search-offer-container {
    padding: 20px 40px;
    border: 1px solid rgb(211, 211, 211);
}

.search-table-element {
    height: fit-content;
    border: 1px solid rgb(211, 211, 211);
    border-top: none;
    border-left: none;
    padding: 10px 30px 10px 15px;
    align-items: center;
    cursor: pointer;
    background-color: rgb(254, 254, 254);
    font-weight: 500;
    position: relative;
    transition: all 0.15s ease;
}

.search-table-element:hover {
    background-color: rgb(247, 247, 247);
}

.search-block-start {
    display: flex;
    flex-direction: column;
    
    border-right: 1px solid rgb(223, 223, 223);
    height: 100%;
}

.search-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    border-right: 1px solid rgb(223, 223, 223);
    height: 63px;
}

.search-block span {
    
}

.search-block__div {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-left: 50px;
    padding-top: 7px;
}

.search-table-element .search-block:first-of-type .search-block__div {
    padding: 0;
}

#search-start-date,
#search-end-date {
    font-size: 11px;
    margin-left: 5px;
    align-self: flex-end;
}

#search-start,
#search-end {
    
    font-weight: bold;
}

#search-offer-input {
    height: 35px;
    width: 200px;
    padding-left: 20px;
}

.euro-sign {
    display: inline-block;
    position: relative;
}

.euro-sign::before {
    content: "€";
    position: absolute;
    left: 5px;
    top: 19px;
    transform: translateY(-50%);
    font-weight: bold;
}

.top-element {
    position: absolute;
    margin-left: 8px;
}

.top-element-currency {
    position: absolute;
    margin-left: 8px;
    z-index: 1;
}

.top-element span,
.top-element-currency span {
    border-radius: 3px;
}

.euro-sign input {
    padding-left: 20px;
}

.assign-member-popup{
    cursor: pointer;
}

.btn-submit {
    background-color: #00D9AD;
    border: none;
    height: 30px;
    width: fit-content;
    padding: 0px 15px;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0 0 5px 5px rgb(243, 243, 243);
    margin: 0;
    transition: all 0.15s ease;
}

.btn-submit-s {
    background-color: #00D9AD;
    border: none;
    height: 30px;
    width: 100%;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.15s ease;
}

#search-details-container {
    padding: 30px 40px;
    display: flex;
    
    border-left: 1px solid rgb(211, 211, 211);
    font-weight: 500;
    overflow-y: auto;
    flex: 1;
}

.fret-details-container {
    width: 100%;
    height: 300px;
    display: flex;
    
    font-weight: 500;
}

.notif-details-container {
    width: 100%;
    height: 100%;
    padding: 30px 40px;
    display: flex;
    
    font-weight: 500;
}

#search-details-container h3,
.fret-details-container h3 {
    font-size: 16px;
    color: #009e7c;
}

#search-details-container h2,
.fret-details-container h2 {
    font-size: 13px;
}

.search-filters__places input[type="date"] {
    padding: 0px 20px;
}

.search-table-active {
    box-shadow: inset 0 2px 35px #c9c9c9bb, inset 0 -2px 35px #c9c9c9bb !important
}

#search-empty-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 100px;
    font-size: 23px;
    font-weight: 500;
    border-left: 1px solid rgb(211, 211, 211);
}

.search-block__div .fa-arrow-down {
    margin-left: 4px;
}

#offer-made {
    background-color: #00D9AD;
    color: white;
    width: fit-content;
    height: 35px;
    border-radius: 3px;
    padding: 3px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: all 0.2s;
}

#offer-made:hover {
    background-color: #00c29b;
}

#offer-open {
    display: flex;
}

#montant-offre {
    border-radius: 3px;
    width: 200px;
}

.offer-true-icon {
    position: absolute;
    left: 15px;
    top: 55%;
}

.offer-true {
    background-color: rgb(255, 255, 205) !important;
}

.offer-true:hover {
    background-color: rgb(243, 243, 211) !important;
}

.submit-disabled {
    background-color: #9b9b9b !important;
}

.view-more {
    cursor: pointer;
}

#window-is-open {
    width: 100%;
    height: 100%;
    position: absolute;
}

.save-active {
    background-color: #00d9ae3d !important;
}

.tooltip-info {
    display: flex;
    background-color: rgb(231, 150, 0);
    padding: 3px 10px;
    border-radius: 3px;
    height: 30px;
    width: 80px;
    color: white;
    font-weight: bold;
    align-items: center;
    justify-content: space-between;
}

/* SUBSCRIPTION */

.sp-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: rgb(243, 243, 243);
    padding: 30px;
}
.sp-card{
    height: 400px;
    width: 300px;
    font-size: 18px;
    background-color: rgb(228, 228, 228);
    padding: 30px 50px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-sp{
    width: 600px;
}


/* AUCTION */
.square{
    width: 13px;
    height: 13px;
    border: 2px black solid;
    margin-left: 15px;
    margin-right: 5px;
}
.square-gold{
    background-color: rgb(255, 231, 124);
}
.square-green{
    background-color: rgb(123, 235, 255);
}

#frais-info {
    width: 80px;
    height: 30px;
    background-color: rgb(141, 92, 0);
    color: white;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 3px;
    font-weight: bold;
}

#marge-pourcentage-div {
    width: fit-content;
    padding: 1px 7px;
    border-radius: 3px;
}

#contre-offre-div1 {
    display: flex;
}

#contre-offre-div1 .btn-submit {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-border {
    width: 21px;
    height: 21px;
    border-width: 3px;
    margin-right: 10px;
}

.document-viewer {
    height: 100%;
    width: 100%;
}

#document-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    background-color: #0000002f;
}

#document-div {
    width: 70%;
    height: 80%;
}

.btn-submit-b {
    background-color: gray !important;
    pointer-events: none;
}

.btn-submit-b:hover {
    background-color: gray !important;
    cursor: not-allowed;
}

#view-document {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 500;
    width: 230px;
    padding: 0px 30px;
    height: 40px;
    background-color: #00b38f;
    cursor: pointer;
}

.signature-div form {
    display: flex;
    flex-direction: column;
}

.signature-div {
    background-color: white;
    padding: 40px;
    border-radius: 7px;
    width: 600px;
}

#signature-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    background-color: #0000002f;
}

.tdb-offer-signature {
    border-bottom: 1px solid rgb(211, 211, 211);
    cursor: pointer;
    display: flex;
    height: fit-content;
    font-weight: 500;
    padding: 5px 0px;
    background-color: rgb(255, 231, 124) !important;
}

.tdb-offer-deleted {
    border-bottom: 1px solid rgb(211, 211, 211);
    cursor: pointer;
    display: flex;
    height: fit-content;
    font-weight: 500;
    padding: 5px 0px;
    background-color: rgb(255, 124, 124) !important;
}

.tdb-offer-signed {
    border-bottom: 1px solid rgb(211, 211, 211);
    cursor: pointer;
    display: flex;
    height: fit-content;
    font-weight: 500;
    padding: 5px 0px;
    background-color: rgb(123, 235, 255) !important;
}

.toggle-auction-container {
    display: flex;
    justify-content: end;
    padding-right: 15px;
    width: 415px;
}

.toggle-auction-page {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00caa2;
    color: white;
    font-weight: bold;
    height: 60px;
    cursor: pointer;
}

.auction-header {
    background-color: rgb(243, 243, 243);
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

@keyframes new-offer {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: #00d9ae48;
    }

    100% {
        background-color: transparent;
    }
}

.new-offer {
    animation: new-offer 2s infinite;
}

@keyframes new-offer-2 {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: #0021d948;
    }

    100% {
        background-color: transparent;
    }
}

.new-offer-2 {
    animation: new-offer-2 2s infinite;
}

.folder-path-auction {
    padding-left: 30px;
    height: 47.05px;
    display: flex;
    align-items: center;
    
    border-bottom: 1px solid rgb(211, 211, 211);
}

.auction-container {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgb(243, 243, 243);
    padding: 15px;
}

.auction-main-element {
    background-color: white;
    box-shadow: 0px 0px 3px 3px rgb(236, 236, 236);
    height: 100%;
    padding: 20px 30px;
}

.folder-path-link {
    color: black;
}

.refresh-table {
    background-color: white;
    height: 60px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1px 15px;
    box-shadow: 0px 0px 3px 3px rgb(236, 236, 236);
}

.refresh-table-container {
    padding: 30px 0px 0px 15px;
}

#refresh-page:hover,
#pause-play-page:hover {
    cursor: pointer;
    background-color: #00d9ae75;
}

#refresh-page,
#pause-play-page {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    border-radius: 3px;
}
/* COMMUNITY */
.results-div{
    width: 100%;
    height: 60px;
    border-radius: 3px;
    border: 1px solid rgb(211, 211, 211);
}
#results-div span{
    font-size: 13px;
    color:black;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#results-div span button{
    font-size: 13px;
    text-align:center;
    color:black;
    padding: 1px 10px;
}

/* CALENDAR IMPORTED */
.calendar {
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
    font-size: 11px;
    margin-right: 50px;
    height: 220px;
    width: 200px;
    box-shadow: 0 0 5px 5px rgb(233, 233, 233);

}

.top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.month,
.year {
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}

option {
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0px;
}

.week {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid gray;
}

.week__day {
    color: gray;
    width: 24px;
    height: 24px;
    margin: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-transform: uppercase;
}

.date__row {
    display: flex;
    align-items: center;
}

.date__number {
    width: 24px;
    height: 24px;
    margin: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: 0.5s ease;
}

.empty_date__number {
    width: 24px;
    height: 24px;
    margin: 1px;
}

.date__number:hover {
    cursor: pointer;
    background-color: #189ab4;
    color: #fff;
}

.date__number--true {
    background-color: #189ab4;
    color: #fff;
}

.choosen {
    text-align: center;
    margin-top: 40px;
    color: gray;
}

/* AUTOMATIC SEARCH / CALENDAR */
.select-bc {
    appearance: none;
    outline: 10px red;
    border: 0;
    box-shadow: none;
    padding: 0 1em;
    color: #fff;
    background-image: none;
    cursor: pointer;
    height: 30px;
    width: 180px;
    font-weight: 500;
    border-radius: 3px;
}

.dark-blue{
    background-color: #2c3e50;
}



.as_event_start,
.as_event_end,
.as_mission {
    position: absolute;
    border-radius: 3px;
    width: 100%;
    font-size: 13px;
    padding-top: 12px;
    padding-bottom: 25px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.as_event_start {
    background-color: rgb(0, 219, 146);
}

.as_event_start:hover {
    background-color: rgb(0, 199, 133);
}

.as_mission{
    background-color: rgb(62, 0, 161);
}
.as_mission:hover {
    background-color: rgb(51, 0, 133);
}

.as_event_end {
    background-color: rgb(0, 174, 255);
}

.as_event_end:hover {
    background-color: rgb(0, 157, 230);
}

.as_search_active_icon {
    position: absolute;
    right: 15px;
    color: black !important;
}

.as_search_active {
    background: linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(170, 255, 220, 0.479) 100%);
}

#as_next_week,
#as_previous_week {
    cursor: pointer;
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#as_next_week:hover,
#as_previous_week:hover {
    background-color: rgb(240, 240, 240);
}

#as_next_week .fa-chevron-right {
    font-size: 20px;
    margin: 0;
}

.transparent-element {
    opacity: 0;
    pointer-events: none;
}

.as_btns_container {
    background-color: red;
    width: 10px;
    height: 10px;
}

.as_filters {
    width: 100%;
    display: flex;
    background-color: rgb(243, 243, 243);
    padding: 65px 30px 30px 30px;
    height: 480px;
    overflow: hidden;
    transition: height 0.5s ease;
    /* Add a smooth transition effect */

}

.as_filters__minimized {
    height: 47px;
    padding: 0 30px;
}

#as_toggle_filters {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 40px;
    width: 100%;
    padding-left: 30px;
    display: flex;
    align-items: center;
    background-color: rgb(100, 100, 100);
    color: white;
    z-index: 1;
}

.as_automatic-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    padding: 30px 30px 0px 30px;
}

.as_week_day {
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(220, 220, 220);
    border-bottom: 1px solid rgb(200, 200, 200);
    ;
    border-top: none;
    border-right: none;
    position: relative;
}

.as_week_day:first-child {
    border-left: none;
}

.as_week_day span:first-child {
    color: rgb(90, 90, 90);
    font-size: 12px;
}

.as_week_day span:nth-child(2) {
    font-weight: 500;
    font-size: 16px;
}

.as_day_column {
    height: fit-content;
    border-right: 1px solid rgb(220, 220, 220);
    position: relative;
}

.as_day_column:first-child {
    border-left: 1px solid rgb(220, 220, 220);
}

.as_hour {
    height: 52px;
    border-bottom: 1px solid rgb(220, 220, 220);
}

.as_hour_labels {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.as_hour_label {
    height: 52px;
    width: fit-content;
    position: relative;
}

.as_hour_format {
    position: absolute;
    bottom: -8.2px;
    left: -40px;
    font-weight: 500;
}

#as_selected_week_dates {
    padding: 0px 10px 0px 40px;
}

#as_selected_day_dates {
    flex: 1;
    overflow: hidden;
    padding-left: 40px;
    position: relative;
}
#no-truck-selected{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00000060;
    color: white;
    font-size: 24px;
    z-index: 10;
    pointer-events: none;
    font-weight: bold;
}
#automatic-search-list {
    list-style: none;
    height: 150px;
    width: 100%;
    padding: 0;
    border-radius: 3px;
    border: 1px rgb(102, 102, 102) solid;
    overflow-y: auto;
}

.window-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
}

#automatic-search-content {
    position: relative;
    width: 400px;
    height: 480px;
    background-color: rgb(255, 255, 255);
    color: rgb(117, 117, 117);
    border-radius: 6px;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.212);
    font-weight: 500;
    padding: 20px 30px;
    animation: fadeInDown 0.5s forwards;
}

#post-truck-content {
    position: relative;
    width: 400px;
    height: 350px;
    background-color: rgb(255, 255, 255);
    color: rgb(117, 117, 117);
    border-radius: 6px;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.212);
    font-weight: 500;
    padding: 20px 30px;
    animation: fadeInDown 0.5s forwards;
}

#validated-freight-content, #validated-missions-content {
    position: relative;
    width: 700px;
    height: 600px;
    background-color: rgb(255, 255, 255);
    color: rgb(117, 117, 117);
    border-radius: 6px;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.212);
    font-weight: 500;
    animation: fadeInDown 0.5s forwards;
    overflow: hidden;
}

#automatic-search-content input {
    width: 100% !important;
}

#automatic-search-name,
#truck-name {
    width: 100%;
}

.submit-automatic-search {
    background-color: #00D9AD;
}

/* CHECKLIST */

#search-fret-type,
#search-fret-type-as,
#search-remorque-type-as,
#search-remorque-type {
    position: absolute;
    height: 200px;
    width: 150px;
    background-color: white;
    top: 29px;
    z-index: 1000;
    border: 1px solid rgb(211, 211, 211);
    border-radius: 3px;
    padding: 15px 25px 0 25px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    align-items: start;
    overflow-x: hidden;
    gap: 7px 0px;
}
/* DEPOT */
.freight-seen-table{
    border-collapse: collapse;
    border: 1px solid gray;
}
.freight-seen-table tr{
    border: 1px solid gray;
}
.freight-seen-table tr:nth-child(even){
    background-color: rgb(148, 224, 224)
}


.hide {
    opacity: 0;
}

#montant-fret {
    width: 130px;
}

.document-btn-small {
    height: 35px;
    width: 130px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(39, 39, 39);
    border-radius: 3px;
    color: rgb(39, 39, 39);
    padding: 0px 0px 0px 15px;
    display: flex;
    align-items: center;
}

.document-btn-small:hover {
    background-color: #e6fffa;
    cursor: pointer;
}

.document-btn-small i {
    color: #000000;
    margin-right: 15px;
}

#freelance-document-prix {
    width: 250px;
    display: flex;
    justify-content: space-between;
    padding: 0px 15px;
    height: 30px;
    background-color: rgb(197, 255, 228);
    font-weight: 500;
    border: 1px solid rgb(228, 228, 228);
}

.freelance-div {
    height: 30px;
    position: absolute;
    bottom: 30px;
    right: 450px;
    display: flex;
    justify-content: space-between;
    width: 390px;
}

.depots-container {
    width: 100%;
    height: 100%;
}

#deposer-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    background-color: #0000002f;
}

.deposer-window {
    width: 80%;
    height: 580px;
    border-radius: 6px;
    padding: 30px 50px;
    position: relative;
    background-color: white;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.212);
    overflow-y: auto;
    animation: fadeInDown 0.25s forwards;
}

.deposer-window input {
    width: 100%;
}

.deposer-window input[type="submit"] {
    width: 130px;
}

.deposer-window input[type="radio"] {
    width: auto;
}

.deposer-window h3 {
    font-size: 13px;
    color: #009e7c;
    margin-bottom: 30px;
}

/* .deposer-window h4 {
    font-size: 20px;
} */

.depot-section-container div,
.depot-info-trajet div {
    display: flex;
}

.depot-section-container div div,
.depot-info-trajet div div {
    margin-right: 25px;
    margin-bottom: 25px;
}

.depot-info-trajet {
    padding-right: 50px;
}

.depot-info-trajet div {
    width: 100%;
}

.depot-info-trajet .search-filters__places {
    width: 100%;
}

.depot-section-container .euro-sign::before {
    top: 19px;
}

.depot-btn-gerer {
    display: flex;
}

#depot-btn-actions input {
    margin: 0;
}

#contre-offre-div2 {
    display: flex;
    position: relative;
}

#contre-offre-div2 input {
    width: 130px;
    margin: 0;
}

.return-btn {
    position: absolute;
    top: -35px;
    font-weight: 500;
    cursor: pointer;
    background-color: rgb(218, 218, 218);
    border-radius: 3px;
    padding: 1px 5px;
}

.return-btn:hover {
    background-color: rgb(209, 209, 209);
}

.btn-annuler {
    background-color: #b6b6b6 !important;
    border: none;
    height: 30px;
    width: fit-content;
    padding: 0px 15px;
    border-radius: 3px;
    font-size: 12px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 5px 5px rgb(243, 243, 243);
    transition: all 0.15s ease;
}

.btn-annuler:hover {
    background-color: #a5a5a5;
}

.btn-annuler-div {
    background-color: #b6b6b6;
    border: none;
    height: 30px;
    width: 200px;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#depot-btn-close, #carrier-offers-close {
    width: 30px;
    height: 30px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    cursor: pointer;
}

#depot-btn-close:hover, #carrier-offers-close:hover {
    background-color: #eeeeee;
}

.mes-depots-title {
    background-color: rgb(255, 255, 255);
    padding: 10px 30px;
    border-bottom: 1px solid rgb(211, 211, 211);
    transition: all 0.2s ease;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 0;
}


.mes-depots-title h4 {
    /* font-size: 20px; */
    margin: 0;
    margin-right: 30px;
}

.icon-container {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.15s ease;
}

.icon-container-a {
    color: black;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.15s ease;
}

.icon-container-a:hover {
    background-color: #00D9AD;
}

#delete-element:hover {
    background-color: rgb(255, 203, 203);
}

#offline-element:hover {
    background-color: rgb(240, 221, 116);
}

#online-element:hover {
    background-color: #64dac2;
}

.blocked-div {
    pointer-events: none;
    background-color: gray;
}

.blocked-element {
    pointer-events: none;
}

.blocked-element i {
    color: #3a3a3a !important;
}

.blocked-element:hover {
    background-color: white !important;
}

.action-div-depot {
    display: flex;
    justify-content: space-between;
    width: 140px;
}

.action-div-depot-hold {
    display: flex;
    justify-content: space-between;
    width: 40px;
    margin-right: 25px;
}

.save-depot-container {
    display: flex;
}

.save-depot-container div {
    display: flex;
    align-items: center;
}


/* PAGINATION */
#pagination,
#pagination-depots {
    display: flex;
    width: fit-content;
}

.page-pagination,
.page-pagination-btn,
.page-pagination-depots {
    background-color: white;
    color: black !important;
    height: 25px;
    width: fit-content;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
}

.page-pagination:hover,
.page-pagination-btn:hover,
.page-pagination-depots:hover {
    background-color: #96ecdb;
}

.pagination-container {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgb(211, 211, 211);
    padding: 0 30px;
    border-left: none;
    border-right: none;
}

#page-pagination-container,
#page-pagination-container-depots {
    display: flex;
    height: fit-content;
}

.page-pagination-active {
    background-color: #00D9AD;
}

.color-active {
    background-color: rgba(0, 217, 174, 0.4) !important;
}



/* ICONS SVG */
.notif-circle {
    position: absolute;
    left: 10px;
    top: 7px;
}

.circle {
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    padding: 0;
}
.rectangle{
    display: inline-block;
    height: 15px;
    width: 30px;
    border-radius: 1px;
    padding: 0;
    border: 1px solid rgb(0, 0, 0);

}
.circle-legend{
    background-color: #00D9AD;
    border: 1px solid #008369;
    color: white;

    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: 1px solid #008369;
    font-weight: bold;
    padding-bottom: 2px;
}
.circle-legend-abs{
    font-size: 22px;
    height: 17px;
    width: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    position: absolute;
    right: 10px;
}
.fw-500{
    font-weight: 500;
}

.green-circle {
    background-color: #00D9AD;
}

.red-circle {
    background-color: rgb(247, 40, 40);
}

.yellow-circle {
    background-color: rgb(218, 203, 0);
}

.fa-chevron-down {
    font-size: 13px;
    margin-left: 5px;
}

.fa-chevron-right {
    font-size: 13px;
    margin: 10px;
}

.fa-earth-europe,
.submit-automatic-search,
.fa-arrow-right {
    font-size: 20px;
    width: 35px;
    line-height: 28px;
    text-align: center;
    position: absolute;
    right: 1px;
    top: 1px;
    color: white;
    border-left: 1px solid rgb(206, 206, 206);
    border-radius: 0 3px 3px 0;
}

.fa-earth-europe:hover,
.submit-automatic-search:hover,
.fa-arrow-right:hover {
    color: #f0ececc9;
}

.fa-arrow-down {
    
    color: black;
}

.fa-magnifying-glass {
    color: white;
}

.j_search {
    padding: 2px 8px;
    border-radius: 3px;
}

/* .fa-xmark {
    font-size: 23px;
    color: rgba(0, 0, 0, 0.781);
    cursor: pointer;
} */

/* DNONE */
.hide {
    display: none !important;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 0.2s 0s ease-in-out,
        transform 0.2s 0s ease-in-out;
    pointer-events: none;
}

.show {
    opacity: 1;
    transform: scale(1);
}

.display-none {
    display: none !important;
}

/* MAP SVG */
.map-number-label {
    font-size: 12px;
    fill: #000;
    stroke: none;
    text-anchor: middle;
    text-shadow: none;
    user-select: none;
}

.st0 {
    fill: none;
    stroke: #000000;
    stroke-width: 0.5;
    stroke-miterlimit: 10;
}

.st1 {
    stroke: #000000;
    stroke-width: 0.1;
    stroke-miterlimit: 10;
    fill: white;
}

.st1-1 {
    fill: rgb(255, 224, 181);
}
.st1-2 {
    fill: rgb(255, 215, 159);
}
.st1-3 {
    fill: rgb(255, 208, 141);
}
.st1-4 {
    fill: rgb(255, 202, 128);
}
.st1-5 {
    fill: rgb(255, 198, 119);
}


.st2 {
    fill: #ffffff;
    stroke: #000000;
    stroke-width: 0.1;
    stroke-miterlimit: 10;
}
.st2-1 {
    fill: #F9FFAA;
}
.st2-2 {
    fill: #f6ff75;
}
.st2-3 {
    fill: #f4ff57;
}
.st2-4 {
    fill: #f3ff45;
}
.st2-5 {
    fill: #f0ff18;
}

.st3 {
    fill: #ffffff;
    stroke: #000000;
    stroke-width: 0.1;
    stroke-miterlimit: 10;
}
.st3-1 {
    fill: #B4FFCF;
}
.st3-2 {
    fill: #9effc2;
}
.st3-3 {
    fill: #7effae;
}
.st3-4 {
    fill: #6fffa4;
}
.st3-5 {
    fill: #5eff99;
}

.st4 {
    stroke: #000000;
    stroke-width: 0.1;
    stroke-miterlimit: 10;
}
.st4-1 {
    fill: rgb(246, 191, 255);
}
.st4-2 {
    fill: rgb(244, 184, 255);
}
.st4-3 {
    fill: rgb(243, 176, 255);
}
.st4-4 {
    fill: rgb(242, 168, 255);
}
.st4-5 {
    fill: rgb(240, 156, 255);
}

.st5 {
    fill: #AAB5FF;
    stroke: #000000;
    stroke-width: 0.25;
    stroke-miterlimit: 10;
}

.st6 {
    fill: #AAB5FF;
    stroke: #000000;
    stroke-width: 0.1;
    stroke-miterlimit: 10;
}

.st7 {
    fill: #F6BFFF;
    stroke: #000000;
    stroke-width: 0.25;
    stroke-miterlimit: 10;
}

.st8 {
    fill: none;
    stroke: #000000;
    stroke-width: 0.5;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

.st9 {
    fill: #AAB5FF;
    stroke: #000000;
    stroke-width: 0.1;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}


/* MAP */
#zoom1,
#zoom2 {
    width: 100%;
    height: 100%;
    transform-origin: 0px 0px;
    transform: scale(1) translate(0px, 0px);
    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#zoom2>img {
    width: 100%;
}

div#zoom1>img {
    width: 100%;
}

svg {
    width: 100%;
}

#layer1 {
    width: 100%;
    height: auto;
}

.zoom_outer {
    height: 100%;
}

#svg2 {
    width: fit-content;
}

g {
    cursor: pointer;
}

text:hover {
    cursor: pointer;
}

.active {
    fill: #00D9AD;
}

.active polygon,
.active path {
    fill: inherit;
}

.modal-body-s {
    overflow: hidden;
}

.modal-body {
    overflow: hidden;
    padding-top: 50px;
}

.selectedcontainer {
    width: 40%;
}

#selected-enlevement {
    width: 100%;
    height: calc(100% - 150px);
    font-weight: bold;
    border: 2px solid gray;
    color: black;
    margin: 0;
}

#map-container-div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 100000;
    top: 0px;
}

.selected-enlevement-container {
    z-index: 1000;
    width: 500px;
    height: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    color: black;
    font-weight: bold;
    border-right: 2px solid gray;
    margin: 0;
    background-color: rgba(161, 161, 161, 0.678);
    padding: 0px 50px;
    box-shadow: 0px 0px 3px 3px rgba(128, 128, 128, 0.205);
}
.map-buttons-container{
    display: flex;
    justify-content: space-between;
}

#valider-map {
    align-self: flex-start;
    background-color: rgba(0, 105, 0, 0.8);
    color: white;
    padding: 1px 15px;
}

#switch-map {
    align-self: flex-start;
    background-color: rgba(21, 0, 206, 0.479);
    color: white;
    padding: 1px 15px;
}

.map-subcontainer {
    display: flex;
    width: 97%;
    height: 95%;
    background-color: rgb(206, 253, 255);
    overflow: hidden;
    border: 3px solid gray;
    border-radius: 5px;
}

g:hover>polygon,
g:hover>path {
    fill: #85ffef;
}

g {
    position: relative;
}

body.window-open {
    overflow: hidden;
}

.modalMap .modal-dialog {
    max-width: 100%;
    max-height: 100%;
    height: 150px;
    margin: 0.5rem !important;
    padding: 50px;
    padding-top: 100px;
    overflow: hidden;
}

.modalMap .modal-content {
    height: 800px;
}

.modal-backdrop {
    z-index: 5;
}

.btn-close-modal .fa-xmark {
    color: rgba(255, 255, 255);
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #00000048;
    border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0000005e;
}

/* INDEX */
.freight-sub{
    height: 31px;
    width: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 3px;
}
.subbed{
    background-color: #00D9AD;
}
.subbed:hover{
    background-color: #01b18e;
}
.not-subbed{
    background-color: gray;
}
.not-subbed:hover{
    background-color: rgb(92, 92, 92);
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -78px 0 0 0 !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}

.gutter {
    --bs-gutter-x: 0;
}


/* LOGIN */

#toggle {
    border: 1px solid rgb(211, 211, 211);
    border-left: none;
    width: 10%;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}

#mdp {
    border-radius: 3px 0px 0px 3px !important;
}

/* TOWN AUTOMCOMPLETE */

.town-autocomplete-container{
    position: relative;
}
.town-suggestions{
    position: absolute;
    top: 29px;
    background-color: white;
    border: 1px solid rgb(211, 211, 211);
    box-shadow: 0 0 3px 1px rgb(211, 211, 211);
    width: 100%;
    flex-direction: column;
    z-index: 1000;
    gap: 0px 0px !important;
}
.town-suggestion{
    height: 25px;
    display: flex;
    align-items: center;
    padding-left: 7px;
}
.town-suggestion:hover{
    cursor: pointer;
    background-color: #cbdde5;
}

/* CARD-SIGNUP */
.card {
    border: 1px solid rgba(109, 109, 109, 0.623);
    border-radius: 0;
    filter: drop-shadow(5px 5px 6px rgba(0, 0, 0, 0.616));
    background-color: #f0fffc;
}

.card-title {
    text-align: center;
    font-size: 17px;
    color: #00D9AD;
    font-weight: bolder;
}

.card-text {
    margin: 20px 0;
    text-align: center;
    
}

.card-body .btn-infos {
    display: flex;
    justify-content: center;
    border: 2px solid #00D9AD;
    color: #00D9AD;
    font-weight: bolder;
    
    padding: 2px 0;
    transition: all 0.5s ease-out;
}

.card-body .btn-infos:focus {
    box-shadow: none;
}

.card-body .btn-infos:hover {
    background-color: #00D9AD;
    color: #fff;
}

/* LOGIN MINE*/
.input-top-label {
    position: relative;
}

.input-top-label input {
    border: 1px solid rgb(211, 211, 211);
}

.input-top-label .top-element {
    top: -10px;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.password-div {
    display: flex;
}

.password-div input {
    border-radius: 3px 0 0 3px;
}

.login-footer {
    width: 100%;
    height: 44px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    font-size: 12px;
    bottom: 10px;
}

.login-footer span a {
    color: rgb(90, 90, 90);
}

#pays_signup {
    width: 350px;
    height: 35px;
}

/* LOGIN */
.text-green{
    transition: all 0.3s;
    color: #000;
    font-weight: 500;
}
.text-green:hover{
    color: #00D9AD;
    cursor: pointer;
}

.champ_login {
    display: flex;
    justify-content: center;
}

.champ_login a:hover {
    color: #00D9AD;
}

input[type="checkbox"] {
    height: 11px;
    width: 11px;
    border: 1px solid rgba(204, 204, 204, 0);
    line-height: 11px;
    margin-right: 3px;
    margin-bottom: 0px;
}

.img_login_sign #mdp {
    margin-bottom: 8px;
}

.check_save {
    color: rgb(50, 50, 50);
    font-size: 11px;
}

.small-font {
    font-size: 13px;
    color: black;
}

/* SIGN */
.champ_sign {
    display: flex;
    justify-content: center;
}

.border-mid {
    height: 3px;
    background: linear-gradient(to left, #3d3d3d 65%, #00D9AD 20%);
    border-radius: 5px;
    width: 350px;
}

.chargeur_sign {
    height: 165px;
    width: 176px !important;
    background-color: #002a2100;
}

.chargeur_sign_disabled {
    height: 165px;
    width: 176px !important;
    background-color: #0f0f0f;
}

.chargeur_sign_disabled:hover {
    cursor: not-allowed !important;
}

.champ_sign h5 {
    
}

.champ_sign p {
    font-size: 12px;
}

.chargeur_sign:hover {
    border: 1px solid #009e7e;
    background-color: #004638a9;

}

.arrow-left {
    font-size: 13px;
    font-weight: 500;
    color: #00b38f;
}

.arrow-left:hover {
    color: #00caa2;
}

.border-mid2 {
    height: 3px;
    background: linear-gradient(to left, #3d3d3d 35%, #00D9AD 20%);

    width: 350px;
}

.border-mid3 {
    height: 3px;
    background-color: #00D9AD;
    border-radius: 5px;
    width: 350px;
}


@media (max-width : 1500px) {

    .search-filters div {
        margin-right: 5px;
    }
}

@media (max-width : 1200px) {
    .depot-btn-gerer {
        bottom: -700px;
    }

    .search-filters--expanded {
        height: 300px !important;
    }

    #hidden-filters {
        display: none;
        flex-wrap: wrap;
    }

    #more-filters {
        flex-wrap: wrap;
    }

    #open-filters {
        display: flex;
    }

    .search-left-container {
        width: 100%;
    }

    .search-right-container {
        width: 100%;
        display: none;
    }

    #go-back {
        display: inline-block;
    }

    .search-filters div {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    #close-filters {
        font-size: 23px;
        position: absolute;
        right: -15px;
        top: 0px;
        padding: 3px;
        margin: 0;
        height: 25px;
        width: 25px;
        color: rgb(87, 87, 87);
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
    }
    #close-filters:hover {
        background-color: rgb(87, 87, 87);
        color: white;
    }

    .search-filters {
        position: relative;
    }
}

@media (max-width : 991px) {
    .compte-link {
        position: static;
    }

    #close-navbar {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        user-select: none;
    }

    #navbar-items {
        flex-direction: column;
        position: fixed;
        right: 0px;
        top: 0px;
        width: 310px;
        padding: 50px 20px;
        background-color: white;
        z-index: 10000;
        padding-top: 100px;
        transform: translate3d(310px, 0, 0);
        transition: transform .3s cubic-bezier(0, .52, 0, 1);
        overflow: scroll;
    }

    #navbar-items.show-window {
        transform: translate3d(0, 0, 0);
    }

    #navbar-items ul {
        display: flex;
        flex-direction: column;
    }

    #navbar-items ul li {
        width: 200px;
    }

    .navbar-light .navbar-nav .nav-link {
        
        padding: 5px 10px;
        border-radius: 5px;
        margin-bottom: 5px;
        width: 200px;
    }

    .navbar-light .navbar-nav .nav-link:hover {
        background-color: rgb(235, 235, 235);
    }

    .button_1 {
        flex-direction: row;
    }

    .background {
        margin-top: 34px;
        background: linear-gradient(#000000, #002A21) !important;
        width: 500px;
        margin-left: 35px;
    }

    .manage-user {
        border: none;
        background-color: white;
    }

    .dropdown-menu {
        border: none;
        
    }

    .tdb-main-element-g {
        height: fit-content;
    }

    .tdb-offer-body {
        height: fit-content;
        padding-bottom: 30px;
    }
}