.customFormLoadingModal {
    width: 100%;
    max-width: 500px;
    border: none;
    background: unset;
    .dialog-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    &::backdrop {
        background-color: rgb(0 0 0 / 50%);
    }

    &:focus-visible {
        outline: none;
    }
}
.contact-section {
    display: flex;
    align-items: center;
    background-color: #1c2d4f;
    color: white;
}
.contact-section img {
    max-width: 40%;
    height: auto;
}
.contact-text {
    padding: 20px;
    p{
        color: white;
    }
}
.contact-text h1 {
    color: #FED417;
    font-size: 50px;
    margin: 0 0 20px;
}
.contact-text p {
    font-size: 16px;
    margin: 0 0 10px;
}
#container-salesforce
{
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    h3
    {
        color: #CC2028;
    }

    h5
    {
        width: 100%;
        background-color: #e5e4e45c;
        color: #585858;
        padding: 5px 5px 5px 15px;
        box-shadow: rgb(0 0 0 / 10%) 0 2px 4px;
        margin-bottom: 1rem;
    }

    input[type="text"] {
        background: #fff;
        width: unset;
        height: 100%;
        border: solid 1px #e3e3e3;
        outline: none;
        padding: 10px;
        border-radius: 0 5px 5px 0!important;
    }

    .form-group
    {
        width: 100%;
        margin: 10px 0 40px 0;

        &>div
        {
            padding: 5px 20px 5px 20px;
        }

        input.form-control {
            margin: 0 0 0 1.5rem;
        }
    }

    .star-form-salesforce
    {
        color: red;
        font-weight: bold;
    }

    /* radio Button */
    .radio-container
    {
        margin: 5px 0 5px 10px;
        input
        {
            display: none;
            &:checked + .form-check-label
            {
                background-color: #173157;
                color: white;
            }
        }
        label
        {
            color: #173157;
            background-color: white;
            border: #173157 1px solid;
            font-weight: bold;
            &:hover
            {
                background-color: #173157;
                color: white;
            }
        }

    }
    .btn-custom-submit{
        color: white;
        background-color: #1F2F53;
        border: #1F2F53 1px solid;
        margin: 0.5rem;
        &:hover{
            color: white;
            background-color: #169c16;
            border: #169c16 1px solid;
        }
    }

    .btn-custom-form{
        color: #173157;
        background-color: white;
        border: #173157 1px solid;
        margin: 0.5rem;
        &:hover{
            color: white;
            background-color: #173157;
            border: #173157 1px solid;
        }
    }

    #dateReception{
        width: unset;
    }

    #form-btn{
        display: flex;
        justify-content: flex-end;
        padding: 0 0 15px 0;
        width: 100%;
    }

    .treeselect-list__item--disabled {
        .treeselect-list__item-checkbox-container {
            display: none;
        }
        label {
            color: #777;

        }
    }
    .custom-checkbox{
        display: flex;
        align-items: flex-start;
    }
    .cgv{
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 12px;
        background-color: #173157;
        border: 1px solid #173157;
        padding: 10px;
        font-weight: bold;
        position: relative;
        top: -12px;
        color:white;
        user-select: none;
        margin-left: 10px;
        border-radius: 5px;
        a{
            color: white;
            &:hover{
                color: #FED417;
            }
        }

    }
}


@media (max-width: 768px) {
    #page-devis-transport {
        max-width: 100%;

        #devis-transport #coord-client input[type="text"]{
            width: 100%;
        }
    }
}

#global-error-sticky {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 4px;
    position: sticky;
    bottom: 20px;
    z-index: 100;
}

.radio-error,
.border-red-error {
    border: 1px solid #dc3545 !important;
    background: rgba(220,53,69,.08);
    border-radius: 4px;
}