/************************************
OPENER
 */
.rgt-modal-opener,
.rgt-modal-opener:hover{
    color: #F08243;
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
}
/************************************
MODAL
 */

#rgt-guide-modal-wrapper{
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    display: none;
}

#rgt-guide-modal-wrapper.show{
    display: flex;
}
#rgt-guide-modal{
    background: #ffffff;
    width: 780px;
    max-width: 95vw;
    height: 540px;
    max-height: 90vh;
    padding: 1rem;
    overflow: auto;
    font-size: 16px;
}

/************************************
ACTIONS
 */
#rgt-guide-modal .rgt-guide-modal-actions{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#rgt-guide-modal .rgt-guide-modal-actions span{
    color: #252626;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
#rgt-guide-modal .rgt-guide-modal-actions span img{
    margin: 0 5px 0 0;
}
#rgt-guide-modal .rgt-guide-modal-closer-wrapper span img{
    margin: 0 0 0 5px;
}

#rgt-guide-modal .rgt-guide-modal-actions .rgt-guide-modal-back{
    display: none;
}
#rgt-guide-modal .rgt-guide-modal-actions .rgt-guide-modal-back.show{
    display: inline-flex;
}


/************************************
TITRES
 */
#rgt-guide-modal .h21{
    font-size: 16px;
    font-family: Roboto, Sans-serif, serif;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
}

/************************************
TABLEAU DES TAILLES
 */
.rgt-guide-tailles-wrapper{
    display: none;
}
.rgt-guide-tailles-wrapper.show{
    display: block;
}

.rgt-guide-table-wrapper {
    overflow-x: auto;
    padding: 0 0 1rem 0;
    margin: 4rem 0 1rem 0;
    font-size: 14px;
}

table.rgt-guide-table {
    position: relative;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
    width: 100%;
    border-top: 1px solid #c0c0c0;
    white-space: nowrap;
    text-align: center;
}
table.rgt-guide-table * {
    border: none;
}
table.rgt-guide-table thead tr {
    color: #2d3748;
}
table.rgt-guide-table thead tr th {
    background: #edf2f7;
    padding: 5px 20px;
    vertical-align: middle;
    border-right: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
}
table.rgt-guide-table tbody tr td:nth-child(odd) {
    background: #ffffff;
}
table.rgt-guide-table tbody tr td:nth-child(even) {
    background: #F2F2F2;
}
table.rgt-guide-table tbody td {
    padding: 5px 20px;
    vertical-align: middle;
    border-right: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
}
table.rgt-guide-table tr > th:first-child,
table.rgt-guide-table tr > td:first-child {
    position: sticky;
    left: 0;
    font-weight: 700;
    text-align: left;
    border-left: 1px solid #c0c0c0;
    box-shadow: 2px 0px 2px #00000029;
}


/****************************
LIEN INTERFACE
 */

.interface-link,
.interface-link:hover{
    color: #F08243;
    cursor: pointer;
    font-weight: 500;
}
.interface-link span{
    text-decoration: underline;
}

/************************************
PRENDRE DES MESURES
 */
.rgt-prendre-mesures-wrapper{
    display: none;
}
.rgt-prendre-mesures-wrapper.show{
    display: block;
}
.rgt-prendre-mesures-wrapper:after{
    display: block;
    content: "";
    clear: both;
}

.rgt-prendre-mesures-wrapper .intro{
    font-size: 13px;
    float: left;
    width: calc(100% - 170px);
}
.rgt-prendre-mesures-wrapper .image{
    float: right;
    margin: 2rem 0 0 0;
}
.rgt-prendre-mesures-wrapper .steps{
    float: left;
    width: calc(100% - 170px);
}

@media (max-width: 767px) {
    .rgt-prendre-mesures-wrapper .intro,
    .rgt-prendre-mesures-wrapper .image,
    .rgt-prendre-mesures-wrapper .steps{
        float: none;
        width: 100%;
        margin: 0 0 1rem 0;
    }
    .rgt-prendre-mesures-wrapper .image{
        text-align: center;
    }
    .rgt-prendre-mesures-wrapper .image img{
        width: 90px;
        height: 234px;
    }
}

.rgt-prendre-mesures-wrapper .step{
    margin: 0 0 19px 0;
}
.rgt-prendre-mesures-wrapper .step .title{
    color: #F08243;
    font-size: 14px;
    font-weight: 500;
}
.rgt-prendre-mesures-wrapper .step .text{
    font-size: 12px;
    font-weight: 300;
}
