/* Navigation rapide entre section avec CTRL + F et rechercher "CSS :" */
/* CSS : Skin global */
*:not(i):not(.glyphicon):not(:fas) {
    font-family: 'Poppins', sans-serif !important;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

header {
    position: relative;
    /*height: 80px;*/
    background-color: white;
    box-shadow: 0px 7px 16px rgba(21, 28, 76, 0.2);
    font-family: 'Poppins', sans-serif;
}

footer {
    background: #fff;
    padding: 20px;
    height: 65px;
    color: #000;
    text-align: right;
    font-size: 12px;
    bottom: 0;
    border-top: 1px solid #4671ee;
}

#skin {
    position: relative;
    background: #f6f6f6;
    min-height: calc(100vh);
}

header > div,
header .row {
    height: 100%;
}

    header .row div[class^=col] {
        display: grid;
        align-items: center;
    }

        header .row div[class^=col]:nth-of-type(2) {
            text-align: right;
        }

        header .row div[class^=col]:nth-of-type(1) {
            text-align: left;
        }

@media (max-width:425px) {
    header .row div[class^=col] {
        text-align: center;
    }

    header {
        height: 120px;
    }
}

#skin header .logo img {
    height: 55px;
}
/* CSS : Menu */
#jsc-sidebar ul {
    margin: 45px 35px;
}

.jsc-menu a,
.jsc-menu a:hover {
    text-decoration: none;
    color: #000;
    display: inline-block;
    width: 100%;
    margin: 10px 0;
    background: none !important;
    margin: 0;
    font-size: 15px;
}

    .jsc-menu a:after {
        content: '';
        width: 0;
        display: block;
        height: 2px;
        transition: width 0.2s;
		background: var(--main-color);
    }

    .jsc-menu a:hover:after, .jsc-menu .active a:after {
        width: 80%;
        transition: width 0.2s;
    }
	

/* CSS : Formulaires & Controles */
.alert {
    margin: 0 !important;
}

input {
    outline: none;
}

select {
    cursor: pointer;
}

.jsc-btn,
.jsc-btn-outer {
    cursor: pointer;
    border: none;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 5px;
}

.jsc-erreur {
    color: red;
}

.jsc-form .row {
    margin: 5px -15px;
}

    .jsc-form .row input[type=text],
    .jsc-form .row select {
        width: 100%;
        padding: 2px 10px;
        border-radius: 2px;
        border: 1px solid;
    }

        .jsc-form .row input[type=text].aspNetDisabled,
        .jsc-form .row select.aspNetDisabled {
            color: #989898;
        }

        .jsc-form .row select
        cursor:pointer;
}

:focus-visible {
    outline: none;
}

.jsc-radio td:not(:first-child) {
    padding-left: 5px;
}

.jsc-radio input,
.jsc-check input {
    margin-right: 5px;
}

    .jsc-radio input + label,
    .jsc-check input + label {
        cursor: pointer;
    }
/* CSS : Tables */
.jsc-table {
    width: 100%;
    margin: 10px 0;
}

    .jsc-table th {
        background: #EAEAEA;
        padding: 10px;
    }

    .jsc-table,
    .jsc-table td,
    .jsc-table th {
        border: none;
    }

        .jsc-table > tbody > tr:not(.jsc-paging):nth-child(odd) {
            background: #EAEAEA;
        }

        .jsc-table > tbody > tr:not(.jsc-paging):nth-child(even) {
            background: #FFFFFF;
        }

            .jsc-table > tbody > tr:not(.jsc-paging):nth-child(odd) td,
            .jsc-table > tbody > tr:not(.jsc-paging):nth-child(even) td {
                padding: 10px;
            }

.jsc-paging {
    background: #ffffff;
}

    .jsc-paging > td {
        padding: 0;
    }

    .jsc-paging table td a,
    .jsc-paging table td span {
        display: block;
        padding: 5px 10px;
    }

    .jsc-paging td span {
        text-decoration: underline;
    }

    .jsc-paging td a:hover {
        color: #c8c9d0;
    }

.jsc-table .btn-minus {
    display: none;
}

.jsc-table #rowSelected .btn-minus {
    display: inherit;
}

.jsc-table #rowSelected .btn-plus {
    display: none;
}

.jsc-table-empty {
    background: none !important;
}
/* CSS : Custom */
/* CSS : Skin global */
.container-fluid {
    padding: 0 120px;
}

#skin {
    color: white;
}

    #skin.login {
        background: #fff;
    }

        #skin.login h1,
        #skin.login div,
        #skin.client h1,
        #skin.client div {
            color: #000;
            font-family: 'Poppins';
        }

h1 {
    font-size: 3rem;
}
/* CSS : Formulaires & Controles */
.jsc-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 10px 0;
    font-family: 'Poppins', sans-serif;
}

#jsc-login {
    font-family: 'Poppins', sans-serif;
}

    #jsc-login .jsc-txt {
        background: #F0F2FF;
        border: 2px solid transparent;
        box-sizing: border-box;
        width: 100%;
        height: 40px;
        border-radius: 10px;
        padding: 0 5px;
        color: #222;
        font-size: 16px !important;
    }

        #jsc-login .jsc-txt:focus {
            border: 2px solid #F7B82D !important;
        }

    #jsc-login .jsc-form {
        width: 400px;
        max-width: 100%;
    }

.jsc-container h5 {
    font-weight: bold;
    margin-bottom: 25px;
}

.jsc-btn.outer {
    background: transparent;
    color: white;
    border: 1px solid #F2961E;
}

.jsc-btn .icon {
    font-size: 8px;
}

i[class^=icon] {
    display: inline-block;
    margin: 0;
}

.jsc-btn .icon-next-2 {
    padding-left: 2px;
}

.jsc-btn-register,
.jsc-btn-register:visited,
.jsc-btn-register:hover {
    color: #000;
    display: inline-block;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
}

.jsc-btn-login,
.jsc-btn-login:visited,
.jsc-btn-login:hover {
    text-decoration: none;
    background: #13100D;
    color: white;
    padding: 6px;
    border-radius: 50px;
    display: inline-block;
    font-family: 'Poppins';
}

    .jsc-btn-login span {
        vertical-align: middle;
        margin: 0px 20px;
        font-size: 20px;
    }

    .jsc-btn-login img {
        height: 30px;
    }

/* CSS : Par page */
#jsc-accueil {
    /* margin-top:115px; */
    font-family: 'Poppins', sans-serif;
}

    #jsc-accueil h4 {
        font-weight: bold;
    }

    #jsc-accueil .jsc-btn,
    #jsc-accueil .jsc-btn-outer {
        width: 225px;
        max-width: 100%;
    }

    #jsc-accueil .accueil-images img {
        max-width: 100%;
        width: 500px;
        margin-top: 55px;
    }

#jsc-login img {
    max-width: 100%;
    width: 85%;
}

#jsc-accueil input[type=text] {
    border-radius: 10px;
    background: #F0F2FF;
    width: 225px;
    max-width: 100%;
    height: 35px;
    padding: 5px;
    border: 2px transparent;
}

div[id$=pnlMentionObligatoire] > div {
    margin: 10px 0;
}

input[type=text]:focus,
select:focus {
}

#jsc-inscription #txtNom,
#jsc-inscription #txtContrat {
    width: 100%;
}

#jsc-inscription .jsc-btn {
    max-width: 225px;
}

#skin.logout #jsc-sidebar {
    display: none;
}

#skin.login #content {
    display: grid;
    min-height: 100%;
    grid-template-columns: 273px 1fr;
}

.divBorderBottom {
    background: linear-gradient(180deg, rgba(90,217,149,1) 0%, rgba(21,164,235,1) 44%, rgba(111,51,235,1) 100%);
}

#skin.logout .content-inner {
    min-height: 100%;
}

#content #jsc-sidebar {
    width: 273px;
    flex-grow: 0;
    flex-shrink: 0;
    background-color: #fff;
}

#content .content-inner {
    width: 100%;
    position: relative;
}

.accueil-carte {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    gap: 40px;
}

    .accueil-carte img {
        width: 300px;
    }

    .accueil-carte span:not(:last-child) {
        color: #A3A9E1;
    }

h1 {
    margin-bottom: 50px;
}

.contrat-carte,
.contrat-carte-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 40px;
}

    .contrat-carte img {
        width: 300px;
    }

    .contrat-carte-2 img {
        width: 240px;
    }

    .contrat-carte h5,
    .contrat-carte span:not(:last-child) {
        color: #A3A9E1;
    }

.content-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(150deg, rgba(90,217,149,1) 0%, rgba(21,164,235,1) 20%, rgba(111,51,235,1) 53%);
    padding-left: 15px;
}

.container {
    margin: auto !important;
    margin-top: 0px !important;
    width: 100%;
    padding: 0px;
    height: 100%;
}

    .container #dnn_contentPane {
        background-color: #fff;
        height: 100%;
        padding: 15px !important;
    }

div[id$="pnlGenerique"], .AutorisationTextDessus {
    width: 80%;
    margin: auto;
}

.carte-etat {
    border: 1px solid #E9EBF9;
    background: white;
    padding: 6px 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .carte-etat svg {
        color: white;
        background: #35E599;
        padding: 5px;
        font-size: 12px;
        border-radius: 50%;
    }

#jsc-documents input[type=text],
#jsc-documents select {
    text-align: center;
    border: 2px solid #e9ebf9;
    border-radius: 3px;
    background: white;
    padding: 5px 0;
}

.jsc-table > tbody > tr:not(.jsc-paging):nth-child(odd),
.jsc-table th {
    background: white;
}

.jsc-table a {
    color: #E9EBF9;
}

    .jsc-table a:hover {
        color: #c8c9d0;
    }

.services-liste {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 45px;
}

div[class^=to-carousel] {
    background: white;
    padding: 35px;
}

#jsc-contrats .jsc-btn {
    width: 100%;
    justify-content: center;
    color: #000;
    text-decoration: underline;
}

#skin.logout .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 120px;
    max-width: 100%;
}

.LoginPanel {
    width: 100%;
    padding-right: 0;
}

.divAutorisation {
    padding: 0 15px;
}

.divEtape1388 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width:600px) {
    .divEtape1388 {
        grid-template-columns: 1fr;
    }
}

.divEtape1388 .FixedTDChamp,
.divEtape1388 .FixedCenterChamp {
    width: 100%;
}

.divEtape1388 .rowChamp {
    padding: 5px 0;
}

.divEtape1388 h1 {
    margin: 0 0 15px;
    font-size: 18px;
    color: #000 !important;
    font-weight: bold;
}

.divGroupe1219, .divGroupe1220 {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px;
}

@media (max-width:768px) {
    .container-fluid {
        padding: 0 35px;
    }

    #skin.logout .container {
        padding: 0 35px;
    }
}

@media (max-width:992px) {
    #skin.login #content {
        grid-template-columns: 1fr;
    }
}
