@charset "UTF-8";

.dko-text[style="background-color: var(--pmn--pink);"],
.dko-text[style="background-color: var(--pmn--pink);"] .dko-text__container h2,
.dko-text[style="background-color: var(--pmn--pink);"] .dko-text__container h1{
    color:white;
}

.dko-text__container {
    display: flex;
    flex-direction: column;
    padding: 60px var(--global-block-padding);
    /*overflow: auto;*/
}

.dko-text__container h1,
.dko-text__container h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 30px;
    color:var(--pmn--pink);
}

.dko-text__container h3,
.dko-text__container h4,
.dko-text__container h5,
.dko-text__container h6 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
}
.dko-text__container p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 30px;
    max-width: 968px;
}
.dko-text__container p[style="text-align: center;"] {
    margin-right: auto;
    margin-left: auto;
}
.dko-text__container h1 img,
.dko-text__container h2 img,
.dko-text__container h3 img,
.dko-text__container h4 img,
.dko-text__container h5 img,
.dko-text__container h6 img {
    border-radius: 0;
    overflow: inherit;
}

.dko-text__container pre {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.dko-text__container img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}
.dko-text__container sup {
    vertical-align: middle;
}
.dko-text__container strong {
    font-weight: bold;
}
.dko-text__container a {
    text-decoration: underline;
    color: var(--pmn--blue);
}
.dko-text__container a.cta {
    border: 2px solid  var(--pmn--blue);
    background-color: var(--pmn--blue);
    color: white;
    text-decoration: none;
    transition: all 350ms ease-in-out;
}
.dko-text__container a.cta:hover {
    border: 2px solid var(--pmn--blue-light);
    background-color: var(--pmn--blue-light);
}

.dko-text__container ul,
.dko-text__container ol {
    margin-bottom: 30px;
    padding-left: 20px;
}
.dko-text__container ul ul,
.dko-text__container ul ol,
.dko-text__container ol ul,
.dko-text__container ol ol {
    margin-bottom: 0;
}
.dko-text__container li {
    max-width: 968px;
    font-size: 14px;
    line-height: 22px;
}

.dko-text__container ol li::marker,
.dko-text__container ul li::marker {
    font-size: 100%;
}

.dko-text__container table {
    background: white;
    border-radius: 20px;
    border-spacing: 0;
    border-collapse: separate!important;
    border-radius: 30px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    max-width: 100%;
    border:1px solid black;
    display: flex;
    overflow: auto;
}

/* Apply a border to the right of all but the last column */
.dko-text__container table th:not(:last-child),
.dko-text__container table td:not(:last-child) {
    border-right: 1px solid black;
}
.dko-text__container table th {
    padding:15px 30px;
    border-bottom:1px solid black;
}
.dko-text__container table td {
    padding: 15px 30px;  
    min-width: 200px;
}
.dko-text__container table td.fond-colore {
  background-color: var(--pmn--blue-light);
  color:white;
}
.dko-text__container table tr:first-of-type td:first-of-type {
    border-top-left-radius: 30px;
}
.dko-text__container table tr:first-of-type td:last-of-type {
    border-top-right-radius: 30px;
}
.dko-text__container table tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 30px;
}
.dko-text__container table tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 30px;
}

/* Apply a border to the bottom of all but the last row */
.dko-text__container table >thead>tr:not(:last-child)>th,
.dko-text__container table >thead>tr:not(:last-child)>td,
.dko-text__container table >tbody>tr:not(:last-child)>th,
.dko-text__container table >tbody>tr:not(:last-child)>td,
.dko-text__container table >tfoot>tr:not(:last-child)>td,
.dko-text__container table >tfoot>tr:not(:last-child)>th,
.dko-text__container table >tr:not(:last-child)>td,
.dko-text__container table >tr:not(:last-child)>th,
.dko-text__container table >thead:not(:last-child),
.dko-text__container table >tbody:not(:last-child),
.dko-text__container table >tfoot:not(:last-child) {
    border-bottom: 1px solid  black;
}


@media screen and (min-width: 768px) {
    .dko-text__container h1 {
         font-size: 56px;
        line-height: 66px;
    }
    .dko-text__container h2 {
        font-size: 48px;
        line-height: 52px;
    }
    
    .dko-text__container h3 {
        font-size: 24px;
        line-height: 28px;
    }
    .dko-text__container h4,
    .dko-text__container h5,
    .dko-text__container h6 {
        font-size: 18px;
        line-height: 26px;
    }
    .dko-text__container p,
    .dko-text__container li {
        font-size: 18px;
        line-height: 28px;
    }
    .dko-text__container table {
        display: table;
        overflow: inherit;
    }
      
}

/* === INTERLIGNE ENTRE TITRES === */

@media screen and (max-width: 767px) {
    .dko-text__container h2 {
        line-height:1.3 ;
    }
}
@media screen and (min-width: 768px) {
    .dko-text__container h2 {
        line-height:1.25 ;
    }
}