﻿body {
    font-family: hartwell;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: #ff5b00;
}

    a:hover {

    }

a > i.fa-solid {
    color: #27245e;
}

i.fa-solid.grey {
    margin-left: -40px;
    cursor: pointer;
    color: #aaa;
}

i.fa-solid.grey:hover {
    cursor: pointer;
    color: #ff671f;
}

.info.inactive {
    display:none;
}

.info {
    display:block;
    color: #ffbb44;
}

    .slideshow-container {
        height: 100%;
        width: 100%;
        /*box-sizing: border-box;*/
    }

.slide {
    height: 100%;
    width: 100%;
    display: none;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

.slide-control {
    height: 20px;
    width: 30px;
    background-color: #bbbbbb;
    margin: 5px;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.grid-height {
    /* Hauteur adaptée à 1366 x 768 */
    /*height: calc( 100vh - 220px);*/
    background-color: #ececec;
}
@media (max-width: 768px) {
    .grid-height {
        height: calc( 100vh - 218px);
    }
    footer {

    }
}

@media (min-width: 769px) {
    .grid-height {
        height: calc( 100vh - 312px);
    }
    footer {
        padding-top: 10px;
    }
}



#error {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: red;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    transition: 0.5s linear all;
}
#error .wrapper {
    position:relative;
}

    #error.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s;
        animation: fadein 0.5s;
    }

    #error.hide {
        visibility: hidden;
        -webkit-animation: fadeout 0.5s;
        animation: fadeout 0.5s;
    }

    #error .close {
        font-size: 16px;
        position: absolute;
        top: -12px;
        right: -12px;
    }

#success {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #0b0;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    transition: 0.5s linear all;
}

    #success .wrapper {
        position: relative;
    }

    #success.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s;
        animation: fadein 0.5s;
    }

    #success.hide {
        visibility: hidden;
        -webkit-animation: fadeout 0.5s;
        animation: fadeout 0.5s;
    }

    #success .close {
        font-size: 16px;
        position: absolute;
        top: -12px;
        right: -12px;
    }

#lineContainer > div:nth-child(odd) {
    background-color: #ececec;
}

#lineContainer > div:nth-child(even) {
    background-color: #fff;
}

#doneby_fill {
    color: black;
    border: none;
    background-color: transparent;
    transition: all linear .3s;
}

    #doneby_fill:hover {
        color: #ff5b00;
        cursor: pointer;
    }

.report-label {
    display: inline-block;
    padding: 5px 0 5px 0;
}


.text_error_field {
    color: red;
}

.print_btn {
    border: none;
    padding: 10px 14px;
    color: #ff671f;
    background: transparent;
    font-size: 20px;
    transition: all linear 0.3s;
}

    .print_btn:hover {
        background: #ff5b00;
        color: white;
    }

.pricing-table {
    white-space: nowrap;
    table-layout: fixed;
    width: 100%;
}

    .pricing-table > thead > tr {
        font-size: 24px;
        line-height: 24px;
        border-bottom: 1px solid #ddd;
    }

        .pricing-table > thead > tr > th {
            font-weight: normal;
            padding-bottom: 10px;
        }

    .pricing-table > tbody > tr > td {
        padding-top: 10px;
        font-size: 20px;
    }
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    min-width: 35%;
    max-width: 60%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    min-width: 35%;
    max-width: 60%;
    max-height: 80%;
    overflow-y: auto;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right:20px;
    top:20px;
    line-height:20px;
    height:14px;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.company-header1 {
    color: white;
    background-color: #ff671f;
    font-size: 32px;
    padding: 10px 30px 0 20px;
    border-top-right-radius: 50px;
    display: inline-block;
}

.premium-category {
    color: white;
    background-color: #ff671f;
    font-size: 32px;
    padding: 10px 30px 0 20px;
    border-top-right-radius: 50px;
    display: inline-block;
}

.premium-table {
    white-space: nowrap;
    table-layout: fixed;
    width: 100%;
    background-color: #f5f4f4 !important;
    margin-bottom: 30px;
}

    .premium-table > thead > tr {
        font-size: 16px;
        line-height: 24px;
    }

        .premium-table > thead > tr > th {
            padding: 10px 10px 10px 10px;
            text-align: center;
            font-weight: 700;
            overflow:hidden;
        }

    .premium-table > tbody {
    }

        .premium-table > tbody > tr {
        }

            .premium-table > tbody > tr:nth-child(even) {
                background-color: #ececec;
            }

            .premium-table > tbody > tr:nth-child(odd) {
                background-color: #fff;
            }

            .premium-table > tbody > tr > td {
                padding: 10px 10px 10px 30px;
                overflow: hidden;
            }
.company-content {
    background-color: rgb(245, 244, 244);
    border-top-right-radius: 70px;
    padding-bottom:10px;
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}

.company-table1 {
    max-width: 100%;
    width: 100%;
    background-color: #f5f4f4 !important;
}

    .company-table1 > thead > tr {
        font-size: 16px;
        line-height: 16px;
    }

        .company-table1 > thead > tr > th {
            padding: 10px 10px 10px 20px;
            font-weight: 700;
        }

    .company-table1 > tbody > tr:nth-child(even) {
        background-color: #ececec;
    }

    .company-table1 > tbody > tr:nth-child(odd) {
        background-color: #fff;
    }

    .company-table1 > tbody > tr > td {
        padding: 10px 10px 10px 20px;
    }

.company-table2 {
    max-width: 100%;
    width: 100%;
    background-color: #f5f4f4;
}

    .company-table2 > thead {
        background-color: #ff671f;
        color: white;
    }

        .company-table2 > thead > tr {
            font-size: 16px;
            line-height: 16px;
        }

            .company-table2 > thead > tr > th {
                padding: 10px;
                font-weight: 700;
            }

                .company-table2 > thead > tr > th:first-child {
                    padding: 10px 10px 10px 20px;
                }

                .company-table2 > thead > tr > th:last-child {
                    padding: 10px 20px 10px 10px;
                }

    .company-table2 > tbody > tr:nth-child(even) {
        background-color: #ececec;
    }

    .company-table2 > tbody > tr:nth-child(odd) {
        background-color: #fff;
    }

    .company-table2 > tbody > tr > th {
        background-color: #ff671f;
        color:white;
    }

    .company-table2 > tbody > tr > th {
        padding: 10px;
    }
        .company-table2 > tbody > tr > th:first-child {
            padding: 10px 10px 10px 20px;
        }

        .company-table2 > tbody > tr > th:last-child {
            padding: 10px 20px 10px 10px;
        }

    .company-table2 > tbody > tr > td {
        padding: 10px;
    }

        .company-table2 > tbody > tr > td:first-child {
            padding: 10px 10px 10px 20px;
        }

        .company-table2 > tbody > tr > td:last-child {
            padding: 10px 20px 10px 10px;
        }

.company-table3 {
    max-width: 100%;
    width: 100%;
}
    .company-table3 > thead {
        border-top:.5px solid black;
        border-bottom:.5px solid black;
    }
    .company-table3 > thead > tr > th {
        padding: 10px;
        font-weight: normal;
    }

        .company-table3 > thead > tr > th:first-child {
            padding: 10px 10px 10px 20px;
        }

        .company-table3 > thead > tr > th:last-child {
            padding: 10px 20px 10px 10px;
        }

    .company-table3 > tbody {
    }
    .company-table3 > tbody > tr > td {
        padding: 10px;
    }

        .company-table3 > tbody > tr > td:first-child {
            padding: 10px 10px 10px 20px;
        }

        .company-table3 > tbody > tr > td:last-child {
            padding: 10px 20px 10px 10px;
        }

.company-table4 {

}

    .company-table4 > thead > tr {
        font-size: 16px;
        line-height: 16px;
    }

        .company-table4 > thead > tr > th {
            font-weight: 700;
        }
    .company-table4 > tbody > tr > td > * {
        display: flex;
        justify-content: center;
    }
    .company-table4 > tbody > tr > td:first-child {
        display: flex;
        justify-content: flex-start;
    }

.previous-button {
    display: inline-block;
    font-size: 30px;
    padding: 8px 13px 3px 13px;
    border-radius: 50%;
    background-color: #ff671f;
    color: white;
    transition: all linear 0.3s;
    border: 1px solid transparent;
}

    .previous-button:hover {
        color: #ff671f;
        background-color: white;
        border: 1px solid #ff671f;
    }

.company-background1 {
    background-color: #ffffff;
}

.company-background2 {
    background-color: #ff671f;
}

.company-background3 {
    background-color: #05cabd;
}

.company-background4 {
    background-color: #eeeeee;
}

.company-text1 {
    color: #ff671f;
}

.company-text2 {
    color: #D18316;
}

.company-text3 {
    color: #ffffff;
}

.company-text4 {
    color: #000000;
}

.nav-link {
    color: #ff671f;
    background-color: #ffffff;
    line-height: 31px;
}

    .nav-link:hover {
        background-color: #ff671f;
        color: #ffffff;
    }

    .nav-link:not(:last-child) {
        border-bottom: 1px solid #eeeeee;
    }

    .nav-link:hover:not(:last-child) {
        border-bottom: 1px solid #921034;
    }

.direct-nav-link {
    padding: 20px 20px;
    font-size: 16px;
    display: inline-block;
    line-height: 31px;
    white-space: nowrap;
    color: black;
}

    .direct-nav-link:hover {
        background-color: #ff5b00;
        color: #ffffff;
    }

.mobile-nav-link-category {
    background-color: #ff671f;
    font-weight: bold;
    color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    border-top: 1px solid #eeeeee;
}

    .mobile-nav-link-category:hover {
        color: #ff671f;
        background-color: white;
        border-top: 1px solid #ff671f;
        border-bottom: 1px solid #ff671f;
        cursor: pointer;
    }

.mobile-nav-link {
    color: #ff671f;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

    .mobile-nav-link:hover {
        color: #ff671f;
        background-color: white;
        border-top: 1px solid #ff671f;
        border-bottom: 1px solid #ff671f;
    }

.nav-menu {
    transition: all linear 0.3s;
}

    .nav-menu .fa, .nav-menu .fas {
        transition: all linear 0.3s;
        color: #ff671f;
    }

    .nav-menu:hover {
        background-color: #ff671f;
    }

        .nav-menu:hover .fa, .nav-menu:hover .fas {
            color: #ffffff;
        }

.dropdown:hover > .nav-menu {
    /*background-color: #921034;*/
    transition: all linear 0.3s;
    background-color: #ff671f;
    color: #ffffff;
}

    .dropdown:hover > .nav-menu .fa {
        color: #ffffff;
    }

    .dropdown:hover > .nav-menu .fas {
        color: #ffffff;
    }

.dropdown-content {
    /*background-color: #820024;*/
    background-color: #ffffff;
    color: #ff671f;
}

.nav-menu {
    line-height: 31px;
    height: 100%;
    padding: 20px 20px;
    font-size: 16px;
    white-space: nowrap;
}

.nav-submenu {
}

.nav-link {
    transition: all linear 0.3s;
    font-size: 20px;
    display: block;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    white-space: nowrap;
}

.mobile-nav-link-category {
    transition: all linear 0.3s;
    font-size: 20px;
    display: block;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    white-space: nowrap;
}

.mobile-nav-link {
    transition: all linear 0.3s;
    font-size: 20px;
    display: block;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    white-space: nowrap;
}

.company-label1 {
    text-wrap: none;
    font: 300 20px Cabin;
    color: #ff671f;
}

.company-label2 {
    white-space: nowrap;
    font-family: Cabin, sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: black;
}

.company-label3 {
    white-space: nowrap;
    font-weight: 300;
    color: black;
}

.company-input1 {
    font: 300 20px Cabin;
    padding: 10px 20px 10px 20px;
    color: black;
    border: 2px solid #bbbbbb;
    border-radius: 2px;
}

    .company-input1:hover {
    }

    .company-input1:focus {
        outline: none;
        color: black;
        border: 2px solid #ff671f;
        border-radius: 2px;
    }

.company-input2 {
    font-family: Cabin, sans-serif;
    font-weight: 300;
    font-size: 16px;
    padding: 5px 10px 5px 10px;
    color: black;
    border: 2px solid #bbbbbb;
    border-radius: 2px;
    width: 200px;
}
textarea.company-input2 {
    padding: 0;
    resize:vertical;
    width: -webkit-fill-available;
}

label.company-input2 {
    cursor: pointer;
    display:block;
}

input[type=checkbox].company-input2 {
    appearance: none;
    background-color: #fff;
    margin: 0;
    padding: 0;
    font: inherit;
    color: #bbbbbb;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid #bbbbbb;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: inline-grid;
    place-content: center;
}
    input[type=checkbox].company-input2:checked {
        background-color: #ff671f;
        color: #ff671f;
        border: 0.15em solid #ff671f;
    }
input[type=checkbox].company-input2:focus {
    color: #ff671f;
    border: 0.15em solid #ff671f;
}
input[type="checkbox"].company-input2:hover {
    
}

input[type="checkbox"].company-input2::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    box-shadow: inset 1em 1em #fff;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
input[type="checkbox"].company-input2:hover::before {

}
input[type="checkbox"].company-input2:hover:checked::before {
    transform: scale(1.1);
}
input[type="checkbox"].company-input2:checked::before {
    transform: scale(1);
}
input[type="checkbox"].company-input2:disabled {
    border: 0.15em solid #bbbbbb;
    color: #bbbbbb;
    cursor: not-allowed;
}
    input[type="checkbox"].company-input2:disabled::before {
        box-shadow: inset 1em 1em #bbbbbb;
    }


select.company-input2 {
    width:224px;
}

    .company-input2:hover {
    }

    .company-input2:focus {
        outline: none;
        color: black;
        border: 2px solid #ff671f;
        border-radius: 2px;
    }
.company-input3 {
    font-family: Cabin, sans-serif;
    font-weight: 300;
    font-size: 16px;
    padding: 2px;
    color: black;
    border: 2px solid #bbbbbb;
    border-radius: 2px;
}
.company-input3:hover {
}

.company-input3:focus {
    outline: none;
    color: black;
    border: 2px solid #ff671f;
    border-radius: 2px;
}

.company-input-button {
    font-family: Cabin, sans-serif;
    font-weight: 300;
    font-size: 20px;
    padding: 6px 10px 6px 10px;
    color: black;
    border: 2px solid #bbbbbb;
    border-radius: 2px;
}

    .company-input-button:enabled {
        cursor: pointer;
        background-color: #0b0;
        border: 2px solid #292;
        color: white;
    }

    .company-input-button:disabled {
        cursor: not-allowed;
        color: #777;
    }

    .company-input-button:hover {
    }

    .company-input-button:focus {
        outline: none;
        color: black;
        border: 2px solid #ff671f;
        border-radius: 2px;
    }

.company-button-add {
    font-family: Cabin, sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: black;
    border: 2px solid #bbbbbb;
    border-radius: 2px;
}

    .company-button-add:enabled {
        cursor: pointer;
        background-color: #0b0;
        border: 2px solid #292;
        color: white;
    }

    .company-button-add:disabled {
        cursor: not-allowed;
        color: #777;
    }

    .company-button-add:hover {
    }

    .company-button-add:focus {
        outline: none;
        color: black;
        border: 2px solid #ff671f;
        border-radius: 2px;
    }

.company-button-remove {
    font-family: Cabin, sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: black;
    border: 2px solid #bbbbbb;
    border-radius: 2px;
}

    .company-button-remove:enabled {
        cursor: pointer;
        background-color: #e44;
        border: 2px solid #b44;
        color: white;
    }

    .company-button-remove:disabled {
        cursor: not-allowed;
        color: #777;
    }

    .company-button-remove:hover {
    }

    .company-button-remove:focus {
        outline: none;
        color: black;
        border: 2px solid #b44;
        border-radius: 2px;
    }

.company-button1 {
    font: 300 20px Cabin;
    padding: 10px 20px 10px 20px;
    border-radius: 0;
    background-color: #ffffff;
    color: black;
    border: 1px solid black;
    transition: all linear 0.3s;
    display: inline-block;
}

    .company-button1:disabled {
        cursor: not-allowed;
        color: #ffffff;
        background-color: #ff671f;
        border: 1px solid white;
    }

    .company-button1:hover {
        cursor: pointer;
        color: #ffffff;
        background-color: #ff671f;
        border: 1px solid white;
    }

    .company-button1:focus {
        border-radius: 0;
        outline: none;
        background-color: #ff671f;
        color: white;
        border: 1px solid white;
    }

.company-button2 {
    font-family: Cabin;
    font-family: Cabin;
    font-weight: 300;
    padding: 10px 20px 10px 20px;
    border-radius: 0;
    background-color: #ffffff;
    color: black;
    border: 1px solid black;
    transition: all linear 0.3s;
    display: inline-block;
}

    .company-button2:hover {
        cursor: pointer;
        color: #ffffff;
        background-color: #ff671f;
        border: 1px solid white;
    }

    .company-button2:focus {
        border-radius: 0;
        outline: none;
        background-color: #ff671f;
        color: white;
        border: 1px solid white;
    }

.multi-select-component {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    padding: 2px;
    background-color: #fff;
    color: black;
    font-weight: 300;
    font-size: 16px;
    border: 2px solid #bbbbbb;
    border-radius: 2px;
    box-sizing: border-box;
}

.single-select-component {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    padding: 2px;
    background-color: #fff;
    color: black;
    font-weight: 300;
    font-size: 16px;
    border: 2px solid #bbbbbb;
    border-radius: 2px;
    box-sizing: border-box;
}

.search-container ul {
    list-style: none;
    padding: 0;
    z-index: 3;
    margin-top: 26px;
    width: calc( 100% + 4px);
    right: -2px;
    background: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

    .search-container ul :focus {
        outline: none;
    }
    .search-container ul li:first-child {
        border-top: 2px solid #bbbbbb;
    }

    .search-container ul li {
        display: block;
        text-align: left;
        padding: 4px;
        border-bottom: 2px solid #bbbbbb;
        border-right: 2px solid #bbbbbb;
        border-left: 2px solid #bbbbbb;
    }

        .search-container ul li:hover.not-cursor {
            cursor: default;
        }

        .search-container ul li:hover {
            background-color: #eeeeee;
            border-color: #ff671f;
        }

.search-container .autocomplete-options {
    list-style: none;
    padding: 0;
    z-index: 3;
    margin-top: 26px;
    width: calc( 100% + 4px);
    right: -2px;
    background: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

    .search-container .autocomplete-options :focus {
        outline: none;
    }

.search-container .autocomplete-options {
    display: block;
    text-align: left;
    padding: 4px;
    border-bottom: 2px solid #bbbbbb;
    border-right: 2px solid #bbbbbb;
    border-left: 2px solid #bbbbbb;
}

.search-container .autocomplete-options > option {
    display: block;
    text-align: left;
    padding: 4px;
    border-bottom: 2px solid #bbbbbb;
    border-right: 2px solid #bbbbbb;
    border-left: 2px solid #bbbbbb;
}

.search-container .autocomplete-options:hover.not-cursor {
    cursor: default;
}

.search-container .autocomplete-options:hover {
    background-color: #eeeeee;
    border-color: #ff671f;
}

.selected-wrapper {
    line-height: 1.2em;
    padding: 0.5em 0.25em 0.5em 1em;
    box-sizing: border-box;
    background-color: #ff671f;
    white-space: nowrap;
    color: white;
    height: 2em;
    margin-right: 0.25em;
    border-radius: 1em;
    vertical-align: top;
    cursor: default;
}

    .selected-wrapper .selected-label {
        max-width: 514px;
        vertical-align: middle;
    }

    .selected-wrapper .selected-close {
        vertical-align: middle;
        font-weight: 700;
        padding: 0 0.5em;
        color: black;
    }

.autocomplete-list {
    box-sizing: unset;
}


.autocomplete-selection tr {
    border: 2px solid #bbbbbb;
    border-collapse: collapse;
}

    .autocomplete-selection tr:hover {
        cursor: pointer;
        background-color: #eeeeee;
        border: 2px solid #ff671f;
        border-style: double;
    }

    .autocomplete-selection tr td {
        padding: 10px;
    }

.tab {
    display: flex;
}

    .tab .tablinks {
        font-size: 32px;
        padding: 10px 30px 0 20px;
        border-top-right-radius: 50px;
        transition: background-color linear 0.3s;
        display: inline-block;
        height: 40px;
        color: black;
        cursor: pointer;
        text-wrap: none;
        white-space: nowrap;
    }

        .tab .tablinks.active {
            background-color: #ff671f;
            color: white;
        }

        .tab .tablinks:hover {
            background-color: #ff671f;
            color: white;
        }
.addressDetails {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.addressIcon {
    display: inline;
    position: relative;
    cursor: pointer;
}
    .addressIcon > .addressCard {
        position: absolute;
        right:0;
        top:0;
        display: none;
    }
    .addressIcon:hover > .addressCard {
        display: block;
        background: white;
        border: 2px solid #bbbbbb;
        border-radius: 2px;
    }
.addressCard {
    white-space:nowrap;
}
.notif-x:hover {
    background-color: #eff0f0;
}

.notif_container {
    background: white;
}

.tabcontent {
    position: relative;
    display: none;
}

.table_primes {
    text-align: center;
}
.table_primes td{
    border:1px solid lightgray;
    padding: 8px;
}
.table_primes input{
    width:20%;
    margin: 5px 5px 0 0;
    text-align:center;
}

.logintype-card {
    width: 250px;
    background-color: white;
    color: black;
    transition: all linear 0.2s;
}

    .logintype-card .title {
        background-color: #ff671f;
        color: #ffffff;
        padding: 10px;
    }
    .logintype-card .foot {

    }

.input_group {
    position: relative;
    display: flex;
    padding: .3em;
    width: 90%;
    margin: auto;
}

    .input_group input {
        float: left;
        background-color: #eeeeee;
        border: 1px solid black;
        padding: .3em;
    }

.input_group_addon {
    background-color: #eeeeee;
    border: 1px solid black;
    text-align: center;
    padding: .4em;
    border-left: none;
}

.bottom-overlay {
    background-color: rgb(245, 244, 244);
    position: sticky;
    bottom: 0;
    width: 100%;
    box-shadow: rgb(0 0 0 / 50%) 0px -8px 12px -8px;
}

button[type=submit] {
    background: #ff671f;
    color: white;
    border: 1px solid #ff671f;
    transition: all linear 0.3s;
}

    button[type=submit]:hover {
        background: transparent;
        color: #ff671f;
        border: 1px solid #ff671f;
    }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#create_producer_form input[type=text],
#create_producer_form input[type=tel],
#create_producer_form input[type=email],
#create_producer_form input[type=number],
#create_producer_form select,
#create_distributor_form input[type=text],
#create_distributor_form input[type=tel],
#create_distributor_form input[type=email],
#create_distributor_form input[type=number],
#create_distributor_form select,
#create_agreement_form input[type=text],
#create_agreement_form input[type=number],
#create_agreement_form select,
#create_organic_agreement_form input[type=text],
#create_organic_agreement_form input[type=number],
#create_organic_agreement_form select {
    width: 80%;
    -ms-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

#nbNotifs {
    position: absolute;
    right: -12px;
    top: -8px;
    font-size: 10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}

.span_plus_icon {
    width:40px;
    height:40px;
    background-color: #ff671f;
    color: white;
    border-radius: 50px;
    border: .5px solid #ff671f;
    cursor: pointer;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    transition: all .2s ease-in-out;
}
    .span_plus_icon:hover {
        background-color: transparent;
        color: #ff671f;
        border: .5px solid #ff671f;
    }

.field-validation-valid {
    display:none;
}

.validation-summary-valid {
    display: none;
}

.validation_summary {
    border: red solid 0.5px;
    color: red;
    padding-right: 30px;
}
.validation_text {
    color:red
}

.info-icon {
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all .3s ease-in-out;
    position: relative;
}
    .info-icon .info-container {
        display: none;
        position: absolute;
        right: 0px;
        top: 40px;
        width: 100%;
        border: 1px solid #ff671f;
        min-width: 450px;
        box-shadow: 0 2px 10px 1px rgba(202, 202, 202, 0.5);
        background-color: rgb(245, 244, 244);
    }

    .info-icon:hover .info-container::before {
        content: "";
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #ff671f;
        right: 7px;
        top: -8px;
        position: absolute;
    }

    .info-icon i {
        color: #ff671f;
        transition: all .3s ease-in-out;
    }
.info-icon:hover {
    cursor: pointer;
    border: 1px solid #ff671f;
    background-color: #ff671f;
}
    .info-icon:hover .info-container {
        display: block;
    }
.info-icon .info-container.active {
    display: block;
}

.info-icon:hover i {
    color: white;
}

.fa-2xl {
    line-height:inherit !important;
}

.my-indicator {
    position: relative;
    opacity: 1;
    transition: opacity 500ms ease-in-out;
}

    .my-indicator::after {
        opacity: 0;
        content: '';
        background: url('/images/bars.svg');
        background-repeat: no-repeat;
        background-position: center;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: auto;
        background-size: 50% 50%;
        z-index: 100;
        pointer-events: none;
    }

    .my-indicator::before {
        opacity: 0;
        content: '';
        background-color: #888888;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        pointer-events: none;
    }

.htmx-request .my-indicator::after {
    opacity: 1;
}

.htmx-request.my-indicator::after {
    opacity: 1;
}

.htmx-request .my-indicator::before {
    opacity: 0.5;
}

.htmx-request.my-indicator::before {
    opacity: 0.5;
}

.htmx-request .my-indicator {
    opacity: 1;
}

.htmx-request.my-indicator {
    opacity: 1;
}

@font-face {
    font-family: Cabin;
    src: url('../fonts/Cabin-Regular.woff') format('woff');
}

@font-face {
    font-family: Cabin;
    src: url('../fonts/Cabin-Bold.woff') format('woff');
    font-weight: bold;
}

@font-face {
    font-family: Cabin;
    src: url('../fonts/Cabin-Italic.woff') format('woff');
    font-style: italic;
}

@font-face {
    font-family: AvenirNext;
    src: url(../fonts/AvenirNext-Regular.woff) format("woff"), url(../fonts/AvenirNext-Regular.ttf) format("truetype");
}

@font-face {
    font-family: AvenirNext;
    font-weight: bold;
    src: url('../fonts/AvenirNext-Bold.ttf') format('truetype');
    src: url('../fonts/AvenirNext-Bold.woff') format('woff');
}

@font-face {
    font-family: 'din-condensed';
    src: url(../fonts/D-DIN-Condensed.woff) format("woff");
}

@font-face {
    font-family: 'hartwell';
    src: url(../fonts/Hartwell-Medium.woff) format("woff");
}

@font-face {
    font-family: 'hartwell';
    font-weight: bold;
    src: url(../fonts/Hartwell-Bold.woff) format("woff");
}
