body {
    background-color: white;
}

.form-wrapper {
    max-width: 20%;
    min-width: 400px;
    padding: 50px 30px 50px 30px;
    margin: 50px auto;
    background-color: var(--gray);
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.form-wrapper p {
    line-height: 24px;
}

.form-wrapper .logo {
    margin: 10px auto;
    display: block;
}

.form-group {
    font-size: 16px;
    position: relative;
    border-radius: 4px;
    border: 1.5px var(--border) solid;
    background-color: white;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.form-group.focused {
    border: 1.5px var(--orange) solid;
}

.form-group+.form-group {
    margin-top: 10px;
}

.form-label {
    position: absolute;
    left: 15px;
    top: 13px;
    color: #999;
    background-color: transparent;
    z-index: 3;
    transform-origin: center left;
    transition: transform 150ms ease-out, color 150ms ease-out;
    cursor: text !important;
    padding: 0 5px;
}

.choice {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: ". . .";
    text-align: center;
}

.choice label,
.line.two label {
    cursor: pointer;
}

input[type="radio"] {
    cursor: pointer;
}

.form-title {
    color: #000000;
    background-color: var(--gray);
    z-index: 10;
}

.focused .form-label,
.filled .form-label {
    transform: translateY(-24px) scale(0.8) translateX(-10px);
    color: #999;
    background: linear-gradient(180deg, var(--gray) 0%, var(--gray) 50%, white 50%);
}

.element_box .focused .form-label,
.element_box .filled .form-label {
    background: linear-gradient(180deg, #f2f2f2 0%, #f2f2f2 50%, white 50%);
}

.focused .form-label {
    color: var(--orange);
}

.filled .form-input,
.focused .form-input {
    opacity: 1;
}

.form-input {
    position: relative;
    margin: 10px 0px 10px 15px;
    width: calc(100% - 25px);
    outline: 0;
    border: none;
    background-color: transparent !important;
    transition: opacity 150ms ease-out;
    height: 20px;
    font-size: 16px;
}

.form-input:-webkit-autofill::first-line {
    font-size: 16px;
}

.form-input[jqtype="date"] {
    width: calc(100% - 50px);
}

.form-group textarea {
    font-size: 16px;
    resize: none;
    position: relative;
    margin: 15px;
    width: calc(100% - 40px);
    outline: 0;
    border: none;
    background-color: transparent;
    transition: opacity 150ms ease-out;
}

.form-label~.form-input {
    margin: 13px 0px 10px 15px;
}

.form-group:not(.filled, .focused) .form-label~.form-input {
    opacity: 0;
}

.caps {
    text-transform: capitalize;
}

.form-group.error {
    border: 1.5px #e09b9b solid;
}

.form-group.error label {
    color: #e09b9b;
}

label[for="confirmcgu"].error {
    color: #e09b9b;
}

.noborders {
    border: none;
    background-color: var(--gray);
}

.noborders.error {
    border: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    box-shadow: 0 0 0px 1000px white inset;
}

.form-wrapper h1 {
    text-align: center;
    margin-top: 0;
}

.form-wrapper .cgu {
    margin: 20px 0;
    display: flex;
}


/*
.form-wrapper .cgu .cgu_check {
    margin-top: auto;
    margin-left: 0;
    margin-right: 10px;
    margin-bottom: auto;
}

.form-wrapper .cgu .cgu_label {
    margin-top: auto;
    margin-left: 10px;
    margin-right: 0;
    margin-bottom: auto;
}
//*/

div.button {
    text-align: center;
    display: block;
    padding: 20px;
    border-radius: 50px;
    margin-top: 10px;
    user-select: none;
    cursor: pointer;
    /*
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    //*/
}

div.button#signinfb {
    border: 2px solid #4169a7;
    color: #4169a7;
    transition: 400ms;
    border-radius: 50px;
}

div.button#signingl {
    border: 2px solid #000000;
    color: #000000;
    transition: 400ms;
    border-radius: 50px;
}

div.button#signinfb:hover {
    border: 2px solid transparent;
    color: #fff;
    transition: 400ms;
    background-color: #7f8fa8;
}

div.button#signingl:hover {
    border: 2px solid transparent;
    color: #000;
    transition: 400ms;
    background-color: #ddd;
}

.form-wrapper hr {
    margin: 20px;
}

.psw-indicator {
    opacity: 0;
    position: absolute;
    top: 18px;
    right: -8px;
    width: 37px;
    height: 10px;
    overflow: hidden;
    background-color: #e5e5e5;
    transform: rotate(-90deg);
    transition-duration: 0.5s;
    border-radius: 4px;
}

.focused .psw-indicator {
    opacity: 1;
}

.filled .psw-indicator {
    opacity: 0.5;
}

.psw-indicator .fill {
    position: absolute;
    top: 0;
    background-color: #55b155;
    width: 0%;
    height: 10px;
    transition: width 0.5s;
}

.bottominfos {
    text-align: center;
}

.bottominfos a {
    color: var(--orange);
    text-decoration: none;
}

.bottominfos a:hover {
    text-decoration: underline;
}

.error-notice {
    transform: scale(0);
    height: 0;
    overflow: hidden;
    transition: transform 0.5s;
}

.error-notice.visible {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transform: scale(1);
}

.oaerror {
    width: auto;
    margin: 10px 0;
}

.phoneprefix {
    opacity: 0;
    margin: 0;
    min-width: 0px;
    text-align: right;
    max-width: 70px;
    margin-left: 20px;
    font: 16px;
    transition: opacity 0.3s;
    cursor: pointer;
    font-weight: 700;
}

.prefix-section {
    display: inline-block;
    position: relative;
}

.prefix-section ul.prefixselector {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 10px;
    max-height: 200px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: absolute;
    background-color: #fcfcfc;
    left: 0;
    z-index: 200;
    border-radius: 0 0 10px 10px;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
}

.prefix-section ul.prefixselector::-webkit-scrollbar {
    display: none;
}

.prefix-section ul.prefixselector li {
    padding: 15px 5px;
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-overflow: ellipsis;
}

.prefix-section ul.prefixselector li .fa-ban {
    color: #f75252;
}

.prefix-section ul.prefixselector li:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.focused .phoneprefix,
.filled .phoneprefix {
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.dropdown-menu * {
    font-size: 14px !important;
}

span.icons {
    float: right;
    margin-right: 25px;
}

span.infoicon {
    color: var(--orange);
    margin-left: 5px;
    font-size: 15px;
    vertical-align: middle;
    cursor: pointer;
}

.datepicker-days td {
    padding: 5px;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active[disabled],
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active[disabled] {
    background-image: var(--orangegradient);
    background-color: transparent;
}

.timepicker .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    color: var(--orange) !important;
}

.bootstrap-datetimepicker-widget table td.today:before {
    border-bottom-color: var(--orange);
}

.switcheck {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switcheck input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slidercheckbox {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.slidercheckbox:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

input:checked+.slidercheckbox {
    background-color: var(--orange);
}

input:focus+.slidercheckbox {
    box-shadow: 0 0 1px var(--orange);
}

input:checked+.slidercheckbox:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slidercheckbox.round {
    border-radius: 34px;
}

.slidercheckbox.round:before {
    border-radius: 50%;
}

.radio_box {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio_box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio_box .checkmark {
    display: block;
    position: relative;
    height: 14px;
    width: 14px;
    background-color: rgb(255, 255, 255);
    border: 1px solid var(--border);
    border-radius: 50%;
}

.radio_box input:checked~.checkmark {
    background-color: var(--orange);
    border-color: var(--orange);
}

.radio_box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio_box input:checked~.checkmark:after {
    display: block;
}

.radio_box .checkmark:after {
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.checkmark_box+label,
.radio_box+label {
    vertical-align: middle;
    padding-left: 10px;
}

.checkmark_box {
    margin-top: 0;
    margin-bottom: auto;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkmark_box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark_box .checkmark {
    position: relative;
    display: block;
    height: 16px;
    width: 16px;
    background-color: rgb(255, 255, 255);
    border: 1px solid var(--border);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.checkmark_box input:checked~.checkmark {
    background-color: var(--orange);
    border-color: var(--orange);
}

.checkmark_box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkmark_box input:checked~.checkmark:after {
    display: block;
}

.checkmark_box .checkmark:after {
    left: 5px;
    top: 1.9px;
    width: 3px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.forgotpassword {
    margin: 4px 0 10px auto;
    display: block;
    width: fit-content;
    width: -moz-fit-content;
    color: var(--text_gray) !important;
    font-size: 14px;
}

.forgotpassword:hover {
    text-decoration: underline;
}

.formbox h1+p {
    text-align: center;
}

.confirm_modal {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.confirm_modal span {
    color: var(--text_gray);
    font-size: 13px;
}

.confirm_modal p {
    font-weight: bold;
    margin: 10px 0;
}

.confirm_modal a.btn {
    padding: 5px 7px;
}

.confirm_modal a.btn i {
    margin-right: 5px;
}

.registration_type {
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
}

.registration_type>div {
    color: #999;
    padding: 5px 20px;
    border: 1px solid var(--border);
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    border-right: none;
}

.registration_type>div.active {
    color: white;
    background-color: var(--orange_light);
    border-color: var(--orange_light) !important;
}

.registration_type>div:last-of-type {
    border-radius: 0 10px 10px 0;
    border-right: 1px solid var(--border);
    border-left: none;
}

.registration_type>div:hover {
    color: var(--texts);
    border-color: var(--orange);
}