.inscription{
    padding: 4rem 0;
}

.inscription .container{
    width: 100%;
    max-width: calc(1180px + 140px);
    padding: 0 20px;
}

.inscription .steps{
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    box-shadow: 0 2px 2px 0 #00000024,0 1px 5px 0 #0000001f,0 3px 1px -2px #00000033;
    margin-bottom: 1rem;
}

.inscription .steps>*{
    /* cursor: pointer; */
    text-align: center;
    align-content: center;
    color: rgba(238,110,115,0.7);
    width: 100%;
    padding: 1rem;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.inscription .steps>*.active{
    background-color: #f1f1f1;
}

.inscription .table-responsive{
    overflow: auto hidden;
}

.inscription .table{
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #000;
    font-size: 14px;
}

.inscription .table thead{
    color: #fff;
    background-color: #0e3d85;
}

.inscription .table thead>*>*,
.inscription .table tbody>*>*{
    border: 1px solid #000;
    border-radius: 0;
}

.inscription .table thead>*>*{
    border-color: #0e3d85;
    /* border-right-color: #fff; */
}

.inscription .stepscreens{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 #00000024,0 1px 5px 0 #0000001f,0 3px 1px -2px #00000033;
}

.inscription .stepscreens>*{
    display: none;
    display: -webkit-none;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    width: 100%;
    padding: 1.5rem;
}

.inscription .stepscreens>* .row{
    margin: 0 -.75rem;
}

.inscription .stepscreens>* input:focus{
    border: none;
}

.inscription .stepscreens>*:nth-child(2){
    grid-gap: 1.5rem;
}

.inscription .stepscreens>*.active{
    display: flex;
    display: -webkit-flex;
}

.inscription .stepscreens>* label:has(input[type="checkbox"]){
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: .5rem;
}

.inscription .stepscreens>* label input[type="checkbox"]{
    position: relative;
    opacity: 100%;
    -webkit-opacity: 100%;
    width: 18px;
    height: 18px;
}

.inscription .stepscreens>* select{
    display: block !important;
    position: relative !important;
    width: 100% !important;
    pointer-events: auto !important;
    height: 45px !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 1 !important;
    background-color: rgba(255,255,255,0.9);
    width: 100%;
    padding: 5px;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    height: 3rem;
}

.inscription .stepscreens>* .btn{
    width: fit-content;
}

.inscription .stepscreens>* .btn.next{
    margin: 1.5rem 0 0 auto;
}

.inscription .stepscreens>* .btn.previous{
    margin: 0 0 1.5rem 0;
}

.inscription .stepscreens>* .warning{
    font-size: .8rem;
    color: #9e9e9e;
    border: 2px solid #d63638;
    padding: .5rem 1rem;
}

.inscription .stepscreens>* .qr_code{
    margin: 0 auto;
}

.inscription .stepscreens>* .qr_code img{
    max-width: 100%;
    margin: 0 auto 2rem;
}

.inscription .stepscreens>* .dff{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 1rem;
}

.inscription .stepscreens>* .dff .cod{
    width: 100%;
    border: 1px solid #888;
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    padding: 10px 1rem;
}

.inscription .stepscreens>* .dff .copy{
    position: relative;
    cursor: pointer;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    min-width: 50px;
    max-width: 50px;
    aspect-ratio: 1/1;
    border: 1px solid #888;
    border-radius: 5px;
}

.inscription .stepscreens>* .dff .copy .msg{
    position: absolute;
    inset: auto 0 100% 0;
    color: green;
    font-size: 12px;
    white-space: nowrap;
}

@media(min-width:768px){
    .inscription .container{
        padding: 0 70px;
    }
}