@import url(main.css);

*::-webkit-scrollbar {
    width: 10px;
    background: rgba(226, 228, 231, 1);
    height: 8px;
}

*::-webkit-scrollbar-thumb {
    background: rgba(183, 187, 193, 1);
    border-radius: 8px;
    cursor: pointer;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Hanken Grotesk', serif;
}

body {
    background: rgb(255, 255, 248);
    color: rgba(23, 33, 45, 1);
}

.bx-login {
    background: url(../../images/trace.svg);
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}

.bx-login .violet {
    background: rgb(50, 89, 232);
    position: relative;
}

.bx-login .violet div {
    background: url(../../images/trace.svg);
    width: 100%;
    height: 100vh;
}

.bx-login .bloc {
    position: absolute;
    background: rgb(255, 255, 248);
    width: 500px;
    border-radius: 40px;
    box-shadow: 0px 0px 30px 0px #0B1B561A;
    min-height: 432px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding-inline: 60px;
    padding-block: 40px;
}

.bx-login .bloc h1 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 26px;
    color: rgb(23, 33, 45);
    margin-bottom: 34px;
}

.bx-login .bloc form {
    float: left;
    width: 100%;
}

.bx-login .bloc .label {
    float: left;
    width: 100%;
    font-size: 14px;
    color: rgb(23, 33, 45);
    margin-bottom: 8px;
}

.bx-login .bloc .input {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 12px;
    background: rgb(247, 248, 248);
    border-radius: 8px;
    height: 46px;
    padding-inline: 14px;
    gap: 10px;
    margin-bottom: 10px;
    border: 1px solid rgb(190, 190, 190);
}

.bx-login .bloc .input input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    font-size: 14px;
    color: rgba(23, 33, 45, 1);
}

.bx-login .bloc .input input::placeholder {
    color: rgb(142, 150, 160);
    font-weight: 400;
}

.bx-login .bloc button {
    background: rgba(50, 89, 232, 1);
    height: 46px;
    border-radius: 8px;
    float: left;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.bx-login .bloc button div {
    border: 5px solid rgb(247, 248, 248);
    border-right-color: rgba(247, 248, 248, 0.386);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
    display: none;
}

@keyframes rotate {
    0% {
        transform: rotate(365deg);
    }

    100% {
        transform: rotate(-365deg);
    }
}

.bx-login .bloc button:hover {
    opacity: 0.8;
}

.bx-login .bloc button:active {
    opacity: 0.5;
}

.bx-login .bloc .check-toggle {
    cursor: pointer;
}

.bx-login .bloc .check-toggle.hide {
    display: none;
}

.bx-login .bloc .check-toggle:hover {
    opacity: 0.6;
}

.bx-login .bloc .check-toggle:active {
    opacity: 0.8;
}

.bx-login .bloc .remember {
    float: left;
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.bx-login .bloc .remember input {
    accent-color: rgb(50, 89, 232);
    ;
}

.bx-login .bloc .remember label {
    color: rgba(23, 33, 45, 1);
    font-size: 14px;
    font-weight: 400;
}

.bx-login .bloc .notice {
    float: left;
    width: 100%;
    text-align: center;
    color: rgba(113, 127, 146, 1);
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

.bx-login .bloc .alerte {
    float: left;
    width: 100%;
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 5px;
    color: rgba(244, 19, 19, 1);
}

.nav-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    bottom: 0;
    background: rgba(255, 255, 255, 1);
    z-index: 1000;
}

.nav-1 .head {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 64px;
    background: rgba(50, 89, 232, 1);
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 20px;
}

.nav-1 .head svg {
    position: absolute;
    right: 20px;
    top: 20px;
    fill: rgba(255, 255, 255, 1);
    cursor: pointer;
}

.nav-1 .head svg.close-nav-left {
    display: none;
}

.nav-1 .head h4 {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 16px;
    float: left;
    width: 100%;
    line-height: 28px;
}

.nav-1 .head p {
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    font-size: 14px;
    float: left;
    width: 100%;
}

.nav-1 .body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 64px;
}

.nav-1 .body .link {
    float: left;
    width: 100%;
    padding-top: 30px;
}

.nav-1 .body .link a {
    display: block;
    float: left;
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-inline: 40px;
    gap: 10px;
    text-decoration: none;
    color: rgba(23, 33, 45, 1);
}

.nav-1 .body .link a span {
    font-weight: 600;
    font-size: 14px;
}

.nav-1 .body .link a svg {
    width: 20px;
    height: 20px;
}

.nav-1 .body .link a.active {
    background: linear-gradient(90deg, #F3F5FE 0%, rgba(243, 245, 254, 0) 100%);
    border-left: 4px solid rgba(50, 89, 232, 1)
}

.nav-1 .body .link a:hover {
    background: linear-gradient(90deg, #F3F5FE 0%, rgba(243, 245, 254, 0) 100%);
}

.nav-2 {
    position: fixed;
    top: 0;
    left: 240px;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 40px;
    z-index: 30;
}

.nav-2 .search {
    display: flex;
    justify-content: left;
    align-items: center;
    background: rgba(247, 248, 248, 1);
    padding-inline: 14px;
    padding-block: 12px;
    width: 360px;
    border-radius: 8px;
}

.nav-2 .left {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 50px;
    position: relative;
    width: 100%;
}

.nav-2 .left .btn-menu {
    display: none;
}

.nav-2 .left svg {
    fill: rgb(50, 89, 232);
    cursor: pointer;
}

.nav-2 .left .notice {
    position: absolute;
    background: rgba(255, 255, 255, 1);
    width: 300px;
    top: 50px;
    right: 40px;
    height: 330px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px #0B1B561A;
    display: none;
}

.nav-2 .left .notice h1 {
    float: left;
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
}

.nav-2 .left .notice .not {
    float: left;
    font-size: 14px;
    margin-bottom: 13px;
    background: rgba(142, 150, 160, 0.08);
    padding: 5px;
    border-radius: 10px;
}

.nav-2 .left .notice a {
    text-decoration: none;
    width: 100%;
    text-align: center;
    float: left;
    padding: 9px;
    color: rgb(50, 89, 232);
    border: 1px solid rgb(50, 89, 232);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
}

.nav-2 .left .notice a:hover {
    background: rgba(50, 89, 232, 1);
    color: rgb(255, 255, 248);
    opacity: 0.5;
}

.nav-2 .left .notice a:active {
    background: rgba(50, 89, 232, 1);
    color: rgb(255, 255, 248);
    opacity: 0.8;
}

.nav-2 .search input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.nav-2 .search input::placeholder {
    color: rgb(142, 150, 160);
    font-weight: 400;
}

.nav-2 button {
    padding-block: 12px;
    padding-inline: 20px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    border: none;
    outline: none;
    background: rgba(50, 89, 232, 1);
}

.main-1 {
    padding-top: 96px;
    width: 100%;
    padding-left: 280px;
    padding-right: 40px;
    float: left;
    background: rgba(247, 248, 248, 1);
    padding-bottom: 40px;
    z-index: 10;
    position: relative;
    min-height: 100vh;
}

.main-1 .div-1 {
    float: left;
    width: 100%;
    position: relative;
}

.main-1 .div-1 h1 {
    float: left;
    width: 100%;
    font-size: 28px;
    line-height: 36px;
}

.main-1 .div-1 p {
    float: left;
    width: 100%;
    margin-top: 10px;
    color: rgba(113, 127, 146, 1);
}

.main-1 .div-1 .etat-y,
.main-1 .div-1 .date-y {
    display: none;
}

.main-1 .div-1 .date {
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.main-1 .div-1 .date .etat {
    position: relative;
    cursor: pointer;
}

.main-1 .div-1 .date .etat .my-infos {
    position: absolute;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 30px 0px #0B1B561A;
    top: 40px;
    padding: 30px;
    padding-bottom: 10px;
    width: 300px;
    z-index: 20;
    border-radius: 14px;
    display: none;
}

.main-1 .div-1 .date .etat .my-infos h5 {
    float: left;
    width: 100%;
    margin-bottom: 5px;
    font-size: 14px;
}

.main-1 .div-1 .date .etat .my-infos h6 {
    float: left;
    width: 100%;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(113, 127, 146, 1);
    margin-bottom: 20px;
}

.main-1 .div-1 .date .div {
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 20px;
    padding-block: 5px;
    font-size: 13px;
    min-height: 32px;
    border: 1px solid rgba(223, 228, 234, 1);
    gap: 10px;
}

.main-1 .div-2 {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 15px;
    margin-top: 20px;
}

.main-1 .div-2 .bx {
    background: rgba(255, 255, 255, 1);
    padding-block: 28px;
    padding-inline: 30px;
    border-radius: 8px;
    position: relative;
}

.main-1 .div-2 .bx .etiquette {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 13px;
}

.main-1 .div-2 .bx h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
}

.main-1 .div-2 .bx .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(113, 127, 146, 1);
    margin-top: 10px;
    font-weight: 500;
}

.main-1 .div-2 .bx .bottom b {
    border-radius: 6px;
    padding-inline: 10px;
    padding-block: 5px;
}

.main-1 .div-2 .bx .bottom b.error {
    color: rgba(244, 19, 19, 1);
    background: rgba(255, 246, 246, 1);
}

.main-1 .div-2 .bx .bottom b.check {
    color: rgba(56, 176, 14, 1);
    background: rgba(235, 247, 231, 1);
}

.main-1 .div-2 .bx .bottom .statut-x {
    color: rgba(244, 19, 19, 1);
}

.main-1 .div-2 .bx .bottom .statut-y {
    color: rgba(56, 176, 14, 1);
}

.main-1 .box-chart {
    float: left;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    margin-top: 40px;
    overflow: hidden;
    padding-bottom: 14px;
    padding-top: 20px;
    padding-inline: 10px;
}

.main-1 .box-chart .chart {
    float: left;
    width: 100%;
}

.apexcharts-legend.apexcharts-align-center.apx-legend-position-bottom,
.apexcharts-yaxistooltip.apexcharts-yaxistooltip-0.apexcharts-yaxistooltip-left.apexcharts-theme-light {
    display: none !important;
}

.apexcharts-title-text {
    font-family: 'Hanken Grotesk', serif !important;
}

.main-1 .div-service {
    float: left;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    padding-inline: 30px;
    padding-block: 30px;
    margin-top: 20px;
    color: rgba(113, 127, 146, 1);
    font-size: 17px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.039);
    border-radius: 8px;
}

.main-1 .div-service b {
    color: rgb(23, 33, 45);
}

.main-1 .consult {
    float: left;
    width: 100%;
}

.main-1 .consult button {
    border-radius: 30px;
    padding-inline: 50px;
    padding-block: 15px;
    background: rgb(50, 89, 232);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
}

.bg-black {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(23, 33, 45, 0.3);
    z-index: 99999;
    display: none;
    opacity: 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: auto;
}

.main-1 .consult-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}


.bg-black .div-service {
    float: left;
    width: 500px;
    cursor: default;
    background: rgba(255, 255, 255, 1);
    border-radius: 30px;
    box-shadow: 0px 0px 30px 0px #0B1B561A;
    padding-block: 30px;
    position: relative;
}

.bg-black .div-service h1 {
    float: left;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgb(234, 234, 234);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    position: relative;
}

.bg-black .div-service .close-x {
    position: absolute;
    right: 30px;
    top: 1px;
    cursor: pointer;
    border-radius: 50%;
}

.bg-black .div-service .close-x:hover {
    opacity: 0.5;
    background: rgb(227, 229, 231);
}

.bg-black .div-service .close-x:active {
    opacity: 0.8;
    background: rgb(227, 229, 231);
}

.bg-black .div-service .list {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 5px;
    padding-inline: 30px;
}

.bg-black .div-service .list .bx {
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr;
    column-gap: 30px;
    row-gap: 20px;
    padding-inline: 20px;
    padding-block: 15px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgb(234, 234, 234);
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.bg-black .div-service .list .bx svg {
    position: absolute;
    right: 20px;
    fill: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.217);
    border-radius: 50%;
    cursor: pointer;
}

.bg-black .div-service .list .bx .left {
    border: 1px solid rgb(234, 234, 234);
    padding-inline: 10px;
    padding-block: 5px;
    border-radius: 12px;
}

.bg-black .div-service .list form {
    float: left;
    width: 100%;
    position: relative;
}

.bg-black .div-service .list form input {
    width: 100%;
    height: 50px;
    outline: none;
    border: none;
    background: rgba(247, 248, 248, 1);
    border-radius: 8px;
    padding-inline: 20px;
    font-weight: 600;
    font-size: 16px;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
}

.bg-black .div-service .list form ul {
    float: left;
    margin-top: 70px;
    width: 100%;
    display: block;
    list-style-type: none;
    height: 120px;
    overflow: auto;
    padding-inline: 4px;
}

.bg-black .div-service .list form ul li {
    cursor: pointer;
    float: left;
    width: 100%;
    padding-inline: 20px;
    padding-block: 10px;
    border-radius: 5px;
    position: relative;
}

.bg-black .div-service .list form ul li div {
    width: 20px;
    height: 20px;
    background-color: rgba(247, 248, 248, 1);
    border: 1px solid rgb(188, 188, 188);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 5px;
}

.bg-black .div-service .list form ul li:hover {
    background: rgba(247, 248, 248, 1);
}

.bg-black .div-service .list form ul li.active {
    background: rgba(247, 248, 248, 1);
}

.bg-black .div-service .list form ul li div svg {
    display: none;
}

.bg-black .div-service .list form ul li.active div svg {
    fill: rgba(56, 176, 14, 1);
    stroke: rgba(56, 176, 14, 1);
    display: block;
}

.bg-black .div-service .list form input::placeholder {
    color: rgb(142, 150, 160);
    font-weight: 400;
}

.bg-black .div-service .list .bx .left h3 {
    text-align: left;
    font-weight: 600;
}

.bg-black .div-service .list .bx .right h3 {
    text-align: left;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 5px;
}

.bg-black .div-service .list .bx p {
    color: rgba(113, 127, 146, 1);
    font-size: 15px;
    font-weight: 400;
}

.bg-black .div-service .list .bx:hover {
    background: rgba(247, 248, 248, 1);
}

.bg-black .div-service .list .bx.active {
    background: rgb(50, 89, 232);
    color: rgba(255, 255, 255, 1);
}

.bg-black .div-service .list .bx.active p {
    color: rgb(234, 234, 234);
}

.bg-black .div-service .list-2 {
    display: none;
}

.bg-black .div-service .continue {
    float: left;
    width: 100%;
    padding-inline: 30px;
    margin-top: 20px;
    position: relative;
}

.bg-black .div-service button {
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 56px;
    cursor: pointer;
    border-radius: 12px;
    border: 2px solid rgb(50, 89, 232);
    background: rgba(255, 255, 255, 1);
    color: rgb(50, 89, 232);
    font-weight: 600;
    font-size: 16px;
    opacity: 0.3;
    cursor: not-allowed;
    outline: none;
    transition: all 0.5s ease-in-out;
}

.bg-black .div-service button.active {
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
    background: rgb(50, 89, 232);
    border: none;
    opacity: 1;
}

.bg-black .div-service .continue div {
    position: absolute;
    background: rgb(227, 229, 231);
    padding: 8px;
    border-radius: 5px;
    cursor: not-allowed;
    top: -40px;
    left: 50%;
    transform: translate(-50%);
    display: none;
    white-space: nowrap;
}

.bg-black .div-service .continue div::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 50%;
    top: 20px;
    z-index: -100;
    transform: translate(-50%) rotate(-50deg);
    background: rgb(227, 229, 231);
}

.main-1 .table {
    float: left;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    padding-inline: 20px;
    padding-block: 25px;
    overflow: auto;
    padding-bottom: 10px;
    margin-top: 40px;

}

.main-1 .table table {
    float: left;
    border-collapse: collapse;
    width: 100%;
}

.main-1 .table table thead {
    background: rgba(247, 248, 248, 1);
}

.main-1 .table table thead th {
    padding-inline: 10px;
    padding-block: 20px;
    text-align: center;
    color: rgba(113, 127, 146, 1);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.main-1 .table table thead div {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.main-1 .table table thead div svg {
    width: 19px;
    height: 13px;
}

.main-1 .table table tbody td {
    font-weight: 500;
    font-size: 13px;
    padding-inline: 10px;
    padding-block: 20px;
}

.main-1 .table table input {
    float: left;
    cursor: pointer;
    accent-color: rgba(50, 89, 232, 1);
}


.main-1 .table table tbody tr {
    border-bottom: 1px solid rgb(234, 236, 236);

}

.main-1 .table table tbody .div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.main-1 .table table tbody .ico {
    background: rgba(247, 248, 248, 1);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.main-1 .table table tbody .ico.ico-not-bg {
    background: transparent;
}

.main-1 .table table tbody button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 10px;
    padding-block: 8px;
    gap: 5px;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid rgba(223, 228, 234, 1);
    background: rgba(255, 255, 255, 1);
}

.main-1 .table table tbody .statut {
    padding: 7px;
    border-radius: 20px;
    font-weight: 500;
}

.main-1 .table table tbody .statut.ok {
    background: rgba(235, 247, 231, 1);
    color: rgba(56, 176, 14, 1);
    border: 1px solid rgba(57, 176, 14, 0.189);
    ;
}

.main-1 .table table tbody .statut.load {
    background: rgba(247, 248, 248, 1);
    color: rgba(113, 127, 146, 1);
    border: 1px solid rgba(113, 127, 146, 0.189);
}

.main-1 .table .bottom {
    float: left;
    width: 100%;
    text-align: center;
    padding-block: 40px;
    font-size: 13px;
}

.bg-black-2 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(23, 33, 45, 0.3);
    z-index: 99999;
    display: none;
    opacity: 1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: auto;
}

.bg-black-2 .group {
    float: left;
    width: 500px;
    cursor: default;
    background: rgba(255, 255, 255, 1);
    border-radius: 30px;
    box-shadow: 0px 0px 30px 0px #0B1B561A;
    padding-block: 30px;
}

.bg-black-2 .group h1 {
    float: left;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgb(234, 234, 234);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    position: relative;
}

.bg-black-2 .group .close-x-2 {
    position: absolute;
    right: 30px;
    top: 1px;
    cursor: pointer;
    border-radius: 50%;
}

.bg-black-2 .group .return {
    position: absolute;
    left: 30px;
    top: 1px;
    cursor: pointer;
    border-radius: 50%;
}

.bg-black .div-service .return {
    position: absolute;
    left: 30px;
    top: 1px;
    cursor: pointer;
    border-radius: 50%;
    display: none;
}

.bg-black-2 .group .close-x-2:hover,
.bg-black-2 .group .return:hover,
.bg-black .div-service .return:hover {
    opacity: 0.5;
    background: rgb(227, 229, 231);
}

.bg-black-2 .group .close-x-2:active,
.bg-black-2 .group .return:active,
.bg-black .div-service .return:active {
    opacity: 0.8;
    background: rgb(227, 229, 231);
}

.bg-black-2 .group form {
    float: left;
    width: 100%;
    padding-inline: 30px;
    padding-block: 20px;
}

.bg-black-2 .group form label {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.bg-black-2 .group form .input {
    display: flex;
    justify-content: left;
    align-items: center;
    background: rgba(247, 248, 248, 1);
    padding-inline: 14px;
    padding-block: 12px;
    width: 100%;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid rgb(190, 190, 190);
}

.bg-black-2 .group form .input input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
}

.bg-black-2 .group form .input input::placeholder {
    color: rgb(142, 150, 160);
    font-weight: 400;
}

.bg-black-2 .group form .btns {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    width: 100%;
    float: left;
}

.bg-black-2 .group form .btns button {
    padding-block: 15px;
    border-radius: 30px;
    background: rgb(23, 33, 45);
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    width: 200px;
}

.bg-black-2 .group form .btns button div {
    border: 5px solid rgb(247, 248, 248);
    border-right-color: rgba(247, 248, 248, 0.386);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
    display: none;
}

.bg-black-2 .group form .btns .btn {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 30px;
    background: rgb(255, 70, 8);
    color: rgb(255, 255, 248);
}

.bg-black-2 .group form .qr {
    float: left;
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

.bg-black-2 .group form .qr a {
    text-decoration: none;
    font-weight: 700;
    color: rgb(23, 33, 45);
    font-size: 16px;
}

.bg-black-2 .group form .register {
    float: left;
    width: 100%;
    padding-block: 18px;
    border: none;
    font-weight: 700;
    outline: none;
    margin-top: 20px;
    font-size: 16px;
    border-radius: 30px;
    background: rgb(0, 192, 218);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
}

.bg-black-2 .group form .or {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 100%;
    gap: 30px;
    margin-top: 20px;
}

.bg-black-2 .group form .or p {
    border: 1px solid #f2f2f2;
    width: 100%;
}

.bg-black-2 .group .links {
    float: left;
    width: 100%;
    margin-top: 15px;
    display: none;
    transition: all 0.7s ease-in-out;
}

.bg-black-2 .group .links a {
    display: right;
    font-weight: 700;
    color: rgb(23, 33, 45);
}

.main-1 .bx-form {
    float: left;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    padding-inline: 40px;
    padding-block: 30px;
    border-radius: 10px;
    display: none;
}

.main-1 .bx-form h1 {
    width: 100%;
    font-size: 26px;
    margin-bottom: 20px;
    float: left;
}

.main-1 .bx-form input,
.main-1 .bx-form select {
    display: flex;
    justify-content: left;
    align-items: center;
    background: rgba(247, 248, 248, 1);
    padding-inline: 14px;
    padding-block: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    border: 1px solid rgb(228, 228, 228);
    font-size: 16px;
    width: 100%;
    font-weight: 500;
}

.main-1 .bx-form input:focus,
.main-1 .bx-form select:focus,
.main-1 .bx-form textarea:focus {
    border: 2px solid rgb(50, 89, 232);
    background: rgba(255, 255, 255, 1);
}


.main-1 .form-data {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: 1fr 320px;
    column-gap: 20px;
    margin-bottom: 100px;
    position: relative;
}


.main-1 .form-data .card-1 .form-bx {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 1);
    padding: 20px;
}

.main-1 .form-data .card-1 .form-bx .view_form {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    column-gap: 20px;
    float: left;
    width: 100%;
}

.main-1 .form-data .card-1 .form-bx .long {
    float: left;
    width: 100%;
    margin-bottom: 12px;
}

.main-1 .form-data .card-1 .form-bx .long-x {
    grid-column: span 2;
}

.main-1 .form-data .card-1 .form-bx .long-x .div-y {
    overflow: hidden;
    float: left;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-top: 5px;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x {
    background-color: rgb(239, 238, 238);
    padding: 1rem;
    float: left;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #e5e5e5;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x .tog_h {
    display: none;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x ul {
    float: left;
    white-space: wrap;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x table {
    border-collapse: collapse;
    width: 100%;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x table th,
.main-1 .form-data .card-1 .form-bx .long-x .div_x table td {
    border: 1px solid black;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x.active table th,
.main-1 .form-data .card-1 .form-bx .long-x .div_x.active table td {
    border: 1px solid #ffffff;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x ul li {
    width: 100%;
    white-space: wrap;
    word-break: break-all;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x:nth-child(1) {
    border-bottom: 1px solid #d6d6d6;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x a {
    color: #ffffff;
    font-weight: 600;
    float: left;
    margin-top: 10px;
    padding-inline: 10px;
    background: #0782a2;
    border-radius: 6px;
    padding-block: 5px;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x.active {
    background-color: #43c8ff;
    color: #ffffff;
    width: 100%;
    float: left;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x.active a {
    color: blue;
    animation: col_a 1.5s infinite ease-in-out;
    transition: all;
}

.main-1 .form-data .card-1 .form-bx .long-m .btn {
    background-color: #1f1a1a;
    border-radius: 10px;
    float: unset;
    margin-inline: auto;
    margin-top: 50px;
}

.main-1 .form-data .card-1 .form-bx .long-k img {
    width: 100%;
    margin-top: 20px;
    float: left;
}

.main-1 .form-data .card-1 .form-bx .long-k .btn {
    float: right;
    margin: 0;
    margin-left: 10px;
    background-color: #1f1a1a;
    border-radius: 10px;
}

@keyframes col_a {
    0% {
        color: #000000;
        background-color: #ffffff;
    }

    10% {
        color: #1a1a1a;
        background-color: #f0f0f0;
    }

    20% {
        color: #333333;
        background-color: #e0e0e0;
    }

    30% {
        color: #4d4d4d;
        background-color: #d0d0d0;
    }

    40% {
        color: #666666;
        background-color: #c0c0c0;
    }

    50% {
        color: #808080;
        background-color: #b0b0b0;
    }

    60% {
        color: #999999;
        background-color: #a0a0a0;
    }

    70% {
        color: #b3b3b3;
        background-color: #909090;
    }

    80% {
        color: #cccccc;
        background-color: #808080;
    }

    90% {
        color: #e6e6e6;
        background-color: #707070;
    }

    100% {
        color: #ffffff;
        background-color: #606060;
    }
}


.main-1 .form-data .card-1 .form-bx .long-x .div_x.active input[type=checkbox] {
    accent-color: aliceblue;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x .div {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.main-1 .form-data .card-1 .form-bx .long-x .div_x .div input {
    width: auto;
}

.main-1 .form-data .card-1 .form-bx .long-x .table-x {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
}

.main-1 .form-data .card-1 .form-bx .long-x .table-x .line {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    border-bottom: 1px solid rgb(158, 158, 158);
}

.main-1 .form-data .card-1 .form-bx .long-x .table-x .line div {
    border: 1px solid rgb(158, 158, 158);
    display: flex;
    justify-content: left;
    align-items: center;
    padding-inline: 20px;
    font-weight: 600;
    border-right: none;
    border-bottom: none;
}

.main-1 .form-data .card-1 .form-bx .long-x .table-x .line div:nth-child(even) {
    border-top: none;
}

.main-1 .form-data .card-1 .form-bx .long-x .table-x .line div.center {
    justify-content: center;
}

.main-1 .form-data .card-1 .form-bx .long-x .table-x .line span {
    border: 1px solid rgb(158, 158, 158);
    text-align: center;
    border-bottom: none;
}

.main-1 .form-data .card-1 .form-bx .long-x .table-x .line input {
    border: 1px solid rgb(158, 158, 158);
    border-bottom: none;
    background: rgb(255, 255, 255);
    border-radius: 0;
    height: 30px;
    text-align: center;
    font-weight: 600;
}

.main-1 .form-data .card-1 .form-bx .input {
    float: left;
    width: 100%;
    position: relative;
}

.main-1 .form-data .card-1 .form-bx h2 {
    text-align: center;
    font-size: 20px;
    grid-column: span 2;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}

.main-1 .form-data .card-1 .form-bx .input span {
    position: absolute;
    right: 10px;
    top: 12px;
    font-weight: 600;
    font-size: 13px;
}

.main-1 .form-data .card-1 .form-bx .btn {
    grid-column: span 2;

}

.main-1 .form-data .card-1 .form-bx button {
    padding-inline: 40px;
    height: 45px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50px;
    background: rgba(50, 89, 232, 1);
    color: rgb(255, 255, 248);
    font-weight: 500;
    font-size: 14px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 0.2rem;
    position: relative;
}

.main-1 .form-data .card-1 .form-bx button.active::after {
    content: "";
    border: 5px solid rgb(247, 248, 248);
    border-right-color: rgba(247, 248, 248, 0.386);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.main-1 .form-data .card-1 .form-bx button div {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 5px solid #f9f9f99e;
    border-top-color: #fff;
    animation: rotate 2s linear infinite;
    display: none;
}

.main-1 .form-data .card-1 .form-bx button.active div {
    display: block;
}

.main-1 .form-data .card-1 .form-bx .short {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    ;
    column-gap: 20px;
    margin-bottom: 12px;
}

.main-1 .form-data .card-1 .form-bx .short-x {
    column-gap: 10px;
}

.main-1 .form-data .card-1 .form-bx .hide {
    display: none;
}

.main-1 .form-data .card-1 .form-bx label {
    float: left;
    width: 100%;
    white-space: nowrap;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 13px;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
}

.main-1 .form-data .card-1 .form-bx input,
.main-1 .form-data .card-1 .form-bx select,
.main-1 .form-data .card-1 .form-bx textarea {
    width: 100%;
    height: 40px;
    padding-inline: 10px;
    border: 1px solid rgb(190, 190, 190);
    border-radius: 6px;
    outline: none;
    background: rgb(247, 248, 248);
    float: left;
    white-space: nowrap;
    color: rgba(23, 33, 45, 1);
}

.main-1 .form-data .card-1 .form-bx input:disabled,
.main-1 .form-data .card-1 .form-bx select:disabled,
.main-1 .form-data .card-1 .form-bx textarea:disabled {
    color: rgba(23, 33, 45, 1) !important;
    opacity: 1;
}

.main-1 .form-data .card-1 .form-bx textarea {
    resize: none;
    padding-block: 10px;
}

.main-1 .form-data .card-1 .form-bx .textarea {
    height: 60px;
}

.main-1 .form-data .card-1 .form-bx input:focus,
.main-1 .form-data .card-1 .form-bx select:focus,
.main-1 .form-data .card-1 .form-bx textarea:focus {
    border: 2px solid rgba(50, 89, 232, 1);
    background: rgb(255, 255, 255);
}

.main-1 .form-data .card-1 .title {
    float: left;
    text-align: left;
    font-size: 22px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.main-1 .form-data .card-1 .title svg {
    cursor: pointer;
}

.main-1 .form-data .card-2 {
    width: 100%;
    position: relative;
    z-index: 100;
}

.main-1 .form-data .card-2 ul {
    float: left;
    width: 100%;
    list-style-type: none;
    font-size: 14px;
}

.main-1 .form-data .card-2 ul li {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.main-1 .form-data .card-2 ul li div {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: 1px solid rgb(215, 212, 212);
    display: flex;
    justify-content: left;
    align-items: center;
}

.main-1 .form-data .card-2 ul li span {
    margin-left: 10px;
}

.main-1 .form-data .card-2 ul li div svg {
    display: none;
}

.main-1 .form-data .card-2 ul li.active div .svg-1 {
    display: block;
    fill: rgb(255, 255, 255);
    stroke-width: 1px;
    stroke: rgb(255, 255, 225);
}

.main-1 .form-data .card-2 ul li.active div {
    background: rgba(50, 89, 232, 1);
    border: none;
}

.main-1 .form-data .card-2 ul li.load div .svg-2 {
    display: block;
    fill: rgb(255, 255, 255);
    stroke-width: 1px;
    stroke: rgb(255, 255, 225);
    width: 16px;
    height: 16px;
    margin-left: 2px;
    margin-bottom: 1px;
}

.main-1 .form-data .card-2 ul li.load div {
    background: gray;
    border: none;
}

.main-1 .form-data .card-2 .plan {
    background-color: rgb(255, 255, 255);
    float: left;
    padding: 20px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-1 .form-data .card-2 .plan h3 {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.bx-login .bloc .logo-svg {
    width: 80px;
    margin-inline: auto;
    display: block;
    margin-bottom: 20px;
}


.main-1 .search-box {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 300px;
    column-gap: 20px;
}

.main-1 .search-box .short {
    display: block;
}

.main-1 .search-box .short button {
    float: left;
    width: 100%;
    height: 56px;
    border: none;
    background: rgba(255, 255, 255, 1);
    outline: none;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: rgba(23, 33, 45, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid rgb(242, 240, 240);
}

.main-1 .search-box .long {
    float: left;
    width: 100%;
    overflow: auto;
}


.main-1 .search-box .long .tb-box {
    float: left;
    width: 100%;
    background: rgb(255, 255, 248);
    padding: 20px;
}

.main-1 .search-box .long .tb-box .load,
.main-1 .table .loadx {
    width: 100%;
    height: 100px;
    display: none;
    justify-content: center;
    align-items: center;
}

.main-1 .search-box .long .tb-box .load div,
.main-1 .table .loadx div {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 8px solid #cacaca;
    border-left-color: #003a8c;
    animation: rotate 2s linear infinite;
}

.main-1 .search-box .long .tb-box table {
    float: left;
    width: 100%;
    border-collapse: collapse;
}

.main-1 .search-box .long .tb-box table thead {
    background: rgba(247, 248, 248, 1);
}

.main-1 .search-box .long .tb-box table th {
    padding-inline: 10px;
    padding-block: 20px;
    text-align: center;
    color: rgba(113, 127, 146, 1);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.main-1 .search-box .long .tb-box table td {
    font-weight: 500;
    font-size: 13px;
    padding-inline: 10px;
    padding-block: 20px;
}

.main-1 .search-box .long .tb-box table th div {
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: space-between;
}

.main-1 .search-box .long .tb-box table th svg {
    width: 19px;
    height: 13px;
}

.main-1 .search-box .long .tb-box table tbody tr {
    border-bottom: 1px solid rgb(234, 236, 236);
}

.main-1 .search-box .long .tb-box table tbody button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 10px;
    padding-block: 8px;
    gap: 5px;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid rgba(223, 228, 234, 1);
    background: rgba(255, 255, 255, 1);
}

.main-1 .search-box .long .tb-box table tbody div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.main-1 .search-box .long .tb-box table tbody .ico {
    background: rgba(247, 248, 248, 1);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.main-1 .search-h1 {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    font-size: 30px;
}

.main-1 .filter-search {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 20px;
}

.main-1 .filter-search button {
    margin-left: 10px;
    padding-inline: 5px;
    height: 45px;
    width: 45px;
    border-radius: 999px;
    cursor: pointer;
    background-color: rgba(50, 89, 232, 1);
    border: none;
    overflow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-1 .filter-search button svg {
    width: 24px;
    height: 24px;
}

.main-1 .search-box .bottom {
    float: left;
    width: 100%;
    text-align: center;
    padding-block: 40px;
    font-size: 13px;
}

.main-1 .filter-search div {
    display: flex;
    justify-content: left;
    align-items: center;
    background: rgb(255, 255, 248);
    width: 300px;
    padding-inline: 20px;
    height: 45px;
    border-radius: 8px;
    gap: 10px;
    border: 1px solid rgb(190, 190, 190);
}

.main-1 .filter-search div input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    font-size: 14px;
    color: rgba(23, 33, 45, 1);
}

.main-1 .filter-search div input::placeholder {
    color: rgb(142, 150, 160);
    font-weight: 400;
}

.bx-scan {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(23, 33, 45, 0.3);
    z-index: 1000;
    display: none;
    opacity: 1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: auto;
}

.bx-scan .bloc {
    float: left;
    width: 400px;
    cursor: default;
    box-shadow: rgba(11, 27, 86, 0.1) 0px 0px 30px 0px;
    position: relative;
    background: rgb(255, 255, 255);
    border-radius: 30px;
    padding-block: 30px;
}

.bx-scan .bloc h1 {
    float: left;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgb(234, 234, 234);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    position: relative;
}

.bx-scan .bloc .img-box {
    float: left;
    width: 100%;
    height: 200px;
    border: 1px solid #e1e1e1;
    margin-top: 10px;
    position: relative;
}

.bx-scan .bloc .img-box video,
.bx-scan .bloc .img-box img,
.bx-scan .bloc .img-box canvas {
    float: left;
    width: 100%;
    object-fit: cover;
    max-height: 100%;
    display: none;
}

.bx-scan .bloc .img-box button {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, -50%);
    background: rgb(255, 255, 248);
    border: none;
    padding-inline: 20px;
    padding-block: 10px;
    border-radius: 30px;
    box-shadow: 0px 0px 4px rgb(207, 203, 203);
    cursor: pointer;
    color: rgba(50, 89, 232, 1);
    font-weight: 500;
    display: none;
}

.bx-scan .bloc .center {
    float: left;
    width: 100%;
    padding-inline: 30px;
}

.bx-scan .bloc .center .btns {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.bx-scan .bloc .center .btns .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.bx-scan .bloc .center .btns button {
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    border: none;
    color: rgba(255, 255, 255, 1);
}

.bx-scan .bloc .center .btns .btn-flex {
    width: 45%;
    border-radius: 50px;
}

.bx-scan .bloc .center .btns .btn-flex:first-child {
    background: rgb(23, 33, 45);
}

.bx-scan .bloc .center .btns .btn-flex:last-child {
    background: rgb(255, 70, 8);
}

.bx-scan .bloc .center .btns .btn-long {
    width: 100%;
    margin-top: 20px;
    float: left;
    width: 100%;
    height: 56px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    opacity: 0.3;
    cursor: not-allowed;
    outline: none;
    transition: all 0.5s ease-in-out;
    background: rgb(0, 192, 218);
}

.bx-scan .bloc .center .btns .btn-long.active {
    opacity: 1;
    cursor: pointer;
}

.bx-scan .bloc .center .btns input {
    display: none;
}

.bx-scan .bloc .load {
    float: left;
    width: 100%;
    display: none;
}

.bx-scan .bloc .load .load-bx {
    float: left;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bx-scan .bloc .load .load-bx div {
    border: 5px solid rgb(234, 226, 226);
    height: 50px;
    width: 50px;
    border-left-color: rgba(0, 90, 255, 0.761);
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.bx-scan .bloc .load .load-bx span {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, -50%);
}

.bx-scan .bloc .result {
    float: left;
    width: 100%;
    padding-inline: 40px;
    display: none;
}

.bx-scan .bloc .result span {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.bx-scan .bloc .result div {
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 1px solid rgb(235, 233, 233);
    float: left;
    font-size: 13px;
    overflow: auto;
}

.bx-scan .bloc .result button {
    padding-inline: 20px;
    border-radius: 30px;
    height: 50px;
    width: 100%;
    border: none;
    outline: none;
    font-weight: 500;
    color: rgb(255, 255, 255);
    background: rgba(50, 89, 232, 1);
    margin-top: 20px;
    cursor: not-allowed;
    opacity: 0.5;
}

.bx-scan .bloc .result button.active {
    opacity: 1;
    cursor: pointer;
}

.bx-scan .bloc .result button.active:hover {
    opacity: 0.5;
}

.bx-scan .bloc .result button.active:active {
    opacity: 0.8;
}

.bx-scan .bloc h1 svg {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    top: 1px;
}

.bx-scan .bloc h1 .close-x {
    right: 30px;
}

.bx-scan .bloc h1 .return {
    left: 30px;
    display: none;
}

.bx-scan .bloc h1 svg:hover {
    opacity: 0.5;
    background: rgb(227, 229, 231);
}

.bx-scan .bloc h1 svg:active {
    opacity: 0.8;
    background: rgb(227, 229, 231);
}

.main-1 .settgs-bx {
    float: left;
    width: 100%;
    padding: 40px;
    background: rgb(255, 255, 255);
}

.main-1 .settgs-bx h1 {
    float: left;
    width: 100%;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    color: rgba(23, 33, 45, 1);
}

.main-1 .settgs-bx .child-4 {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-right: 40%;
    margin-bottom: 30px;
}

.main-1 .settgs-bx .child-4-2 {
    grid-template-columns: 1fr 1fr;
}

.main-1 .settgs-bx label {
    float: left;
    width: 150px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-1 .settgs-bx input {
    float: left;
    width: 100%;
    height: 45px;
    padding-inline: 10px;
    border-radius: 8px;
    border: 1px solid rgb(188, 188, 188);
    outline: none;
    background: rgba(247, 248, 248, 1);
}

.main-1 .settgs-bx input:disabled {
    background: #ededed;
    cursor: not-allowed;
}

.main-1 .settgs-bx .large {
    grid-column: span 2;
}

.main-1 .settgs-bx input:focus {
    border: 2px solid rgba(50, 89, 232, 1);
    background: rgb(255, 255, 255);
}

.main-1 .settgs-bx button {
    padding-inline: 100px;
    height: 45px;
    border-radius: 50px;
    background: rgba(50, 89, 232, 1);
    opacity: 0.5;
    color: rgb(255, 255, 255);
    border: none;
    cursor: not-allowed;
}

.main-1 .settgs-bx button.active {
    opacity: 1;
    cursor: pointer;
}

.main-1 .settgs-bx button.active:hover {
    opacity: 0.7;
}

.main-1 .settgs-bx button.active:active {
    opacity: 0.8;
}

.bg-load-img {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: rgb(255 255 255 / 80%);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-load-img img {
    width: 60px;
    height: 60px;
    animation: rotate 5s linear infinite;
    box-shadow: 0px 0px 4px rgb(194, 194, 194);
    border-radius: 50%;
}

.main-1 .box-ptt {
    float: left;
    width: 100%;
}

.main-1 .box-ptt .top {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(255, 255, 255);
    padding: 30px;
}

.main-1 .box-ptt .top .div-2 .img {
    background: url(../../images/Union.svg);
    background-size: cover;
    width: 200px;
    height: 140px;
    border-radius: 12px;
    border: 1px solid rgba(142, 150, 160, 1);
    float: right;
}

.main-1 .box-ptt .top .div-2 {
    display: block;
}

.main-1 .box-ptt .top .div-1 {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}

.main-1 .box-ptt .top .div-1 .line {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    font-size: 13px;
}

.main-1 .box-ptt .top .div-2 h1 {
    text-align: right;
    margin-bottom: 20px;
    font-size: 25px;
}

.main-1 .box-ptt ul {
    display: flex;
    float: left;
    justify-content: left;
    gap: 30px;
    list-style-type: none;
    margin-top: 20px;
}

.main-1 .box-ptt ul button {
    float: left;
    height: 56px;
    border: none;
    background: rgba(255, 255, 255, 1);
    outline: none;
    margin-bottom: 12px;
    padding-inline: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: rgba(23, 33, 45, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid rgb(242, 240, 240);
    color: rgba(255, 255, 255, 1);
}


.main-1 .box-ptt ul .btn-2 {
    background: rgba(0, 0, 0, 1);
}

.main-1 .box-ptt ul .btn-1 {
    background: rgba(50, 89, 232, 1);
}

.main-1 .box-ptt ul svg {
    fill: rgba(255, 255, 255, 1);
}

.main-1 .table h1 {
    float: left;
    width: 100%;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.toast {
    background-color: #fff;
    position: fixed;
    bottom: 10px;
    padding: 1rem;
    z-index: 5000;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    gap: 1rem;
    border: 1px solid #e1e1e1;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.148);
    display: grid;
    grid-template-columns: 50px minmax(0, auto);
    justify-content: center;
    align-items: center;
    display: none;
}

.toast div {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    flex-direction: column;
    padding-bottom: 10px;
}

.toast svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
}

.toast button {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    width: 50px;
    height: 50px;
    border: none;
}

.toast.success button {
    background-color: #237a05;
    color: #fff !important;
    border: 5px solid #a1ff8c;
}

.toast.success span {
    color: #237a05;
    font-weight: 700;
    text-shadow: 0px 0px #237a05;
}

.toast.error button {
    background-color: #ba1616;
    color: #fff !important;
    border: 5px solid #f38585;
}

.toast.error span {
    color: #ba1616;
    font-weight: 700;
    text-shadow: 0px 0px #ba1616;
}

.alert-patient-id {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    z-index: 9999;
    background-color: #6f6c6ca1;
    padding: 1rem;
}

.alert-patient-id .container {
    background-color: #fff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 5px solid #809bff;

}

.alert-patient-id .btn {
    background: rgba(50, 89, 232, 1);
    height: 46px;
    border-radius: 8px;
    float: left;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.alert-patient-id .div {
    width: 100%;
    background-color: #121e1f;
    color: #ffffff;
    padding: 10px;
    margin-block: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.alert-patient-id .h1 {
    font-size: 1.5rem;
}

.form-bx-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.212) !important;
    top: 0;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.form-bx-fixed .div-x {
    max-width: 600px;
    width: 100%;
    background-color: #ffffff;
    padding: 3rem;
    padding-top: 0;
    overflow: auto;
    max-height: 750px;
}

.form-bx-fixed .title {
    position: sticky !important;
    top: 0;
    background-color: white;
    z-index: 1000;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.form-bx-fixed .div-x::-webkit-scrollbar {
    width: 15px;
}

.form-bx-fixed .div-x::-webkit-scrollbar-thumb {
    background-color: rgba(70, 107, 243, 0.511);
}

.main-1 .form-data .card-1 .title .btn {
    background-color: #ffffff;
    color: rgba(50, 89, 232, 1);
    border: 1px solid rgba(50, 89, 232, 1);
    padding-inline: 1rem;
    font-weight: 700;
    float: right;
    border-radius: 10px;
    position: absolute;
    right: 0;
}

.main-1 .form-data .card-1 .form-bx .btn .btn-2 {
    background-color: #0eb06b;
    margin-left: 1rem;
}

.form-bx-fixed .title {
    cursor: default !important;
}


.visite-finish {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    z-index: 9999;
    background-color: #6f6c6ca1;
    padding: 1rem;
    color: #01855e;
}

.visite-finish svg {
    fill: #01855e;
    width: 200px;
    height: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.visite-finish .h1 {
    font-size: 1.5rem;
}

.visite-finish .container {
    background-color: #fff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 5px solid #80ff97;

}

.visite-finish .btn {
    background: rgba(50, 89, 232, 1);
    height: 46px;
    border-radius: 8px;
    float: left;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.nav-2 .list-drop {
    position: absolute;
    background: rgba(255, 255, 255, 1);
    width: 240px;
    right: 0px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px #0B1B561A;
    display: none;
    top: 55px;
    z-index: 10000;
}

.nav-2 .list-drop ul {
    float: left;
    width: 100%;
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}

.nav-2 .list-drop ul li {
    width: 100%;
    height: 50px;
    display: flex;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: rgba(50, 89, 232, 1);
    justify-content: center;
    gap: 10px;
    padding-inline: 10px;
    align-items: center;
    border: 1px solid #e7e7e7;
}

.main-1 .box-not {
    float: left;
    width: 100%;
    background-color: #e3f2fd;
    border-radius: 5px;
    border: 1px solid #bbdefb;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    padding: 20px;
}

.main-1 .filter_search {
    float: left;
    width: 100%;
}

.main-1 .filter_search .contenair {
    float: left;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 20px;
    margin-top: 10px;
}

.main-1 .filter_search .contenair input,
.main-1 .filter_search .contenair select {
    display: flex;
    justify-content: left;
    align-items: center;
    background: rgb(255, 255, 248);
    padding-inline: 20px;
    height: 45px;
    border-radius: 8px;
    gap: 10px;
    border: 1px solid rgb(190, 190, 190);
}

.main-1 .filter_search button {
    border-radius: 30px;
    background: rgb(50, 89, 232);
    font-weight: 700;
    border: none;
    outline: none;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 17px;
    width: 45px;
    height: 45px;
}

.main-1 .filter_search button svg {
    width: 24px;
    height: 24px;
}

.bg-black-2 .group form .btns .btn.active div {
    width: 20px;
    height: 20px;
    border: 5px solid #d28585;
    border-left-color: #0c3b82;
    animation: rotate 2s linear infinite;
    display: block;
}

#text-show-notice {
    position: absolute;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -15px;
    background: #ff4d00;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    left: -10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    width: 20px;
    height: 20px;
}

.bg-black-2 .group .links span {
    animation: color_change 3s ease-in-out infinite;
}

@keyframes color_change {
    0% {
        color: blue;
    }

    25% {
        color: red;
    }

    50% {
        color: green;
    }

    100% {
        color: black;
    }
}


.main-1 .form-data .card-1 .form-bx .lng-x {
    background-color: #f8f2f2;
    padding: 10px;
    border-radius: 10px;
}

.main-1 .form-data .card-1 .form-bx .lng-x .box {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 10px;
}

.main-1 .form-data .card-1 .form-bx .lng-x .box .ligne {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #6669d533;
    padding: 5px;
    float: left;
    border-radius: 4px;
}

.main-1 .form-data .card-1 .form-bx .lng-x .box .ligne input {
    width: 20px;
    height: 20px;
    padding-inline: unset;
    accent-color: rgb(50, 89, 232);
}

.main-1 .form-data .card-1 .form-bx .lng-x .spx {
    font-size: 14px;
    cursor: pointer;
}