.dko-wysiwyg {
    display: flex;
    flex-direction: column;
    padding: 50px var(--global-lateral-padding);
}

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

.dko-wysiwyg__container h1,
.dko-wysiwyg__container h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 30px;
    color: var(--crf--shiny-blue);
}

.dko-wysiwyg__container h3,
.dko-wysiwyg__container h4,
.dko-wysiwyg__container h5,
.dko-wysiwyg__container h6 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    color: var(--crf--shiny-blue);
}
.dko-wysiwyg__container p {
    font-size: 14px;
    line-height: 22px;
    color: black;
    margin-bottom: 30px;
    /*max-width: 968px;*/
}
.dko-wysiwyg__container p[style="text-align: center;"] {
    margin-right: auto;
    margin-left: auto;
}
.dko-wysiwyg__container h1 img,
.dko-wysiwyg__container h2 img,
.dko-wysiwyg__container h3 img,
.dko-wysiwyg__container h4 img,
.dko-wysiwyg__container h5 img,
.dko-wysiwyg__container h6 img {
    border-radius: 0;
    overflow: inherit;
}
.dko-wysiwyg__container img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
}
.dko-wysiwyg__container sup {
    vertical-align: middle;
}
.dko-wysiwyg__container strong {
    font-weight: bold;
}
.dko-wysiwyg__container em {
    font-weight: 300;
}
.dko-wysiwyg__container a {
    text-decoration: underline;
}
.dko-wysiwyg__container a.cta {
    background-color: var(--crf--shiny-blue);
    color: white;
    text-decoration: none;
    transition: all 350ms ease-in-out;
}
.dko-wysiwyg__container a.cta:hover {
    background-color: var(--crf--blue);
}

.dko-wysiwyg__container ul,
.dko-wysiwyg__container ol {
    margin-bottom: 30px;
    padding-left: 20px;
}
.dko-wysiwyg__container ul ul,
.dko-wysiwyg__container ul ol,
.dko-wysiwyg__container ol ul,
.dko-wysiwyg__container ol ol {
    margin-bottom: 0;
}
.dko-wysiwyg__container li {
    list-style: inherit !important;
    /*max-width: 968px;*/
    font-size: 14px;
    line-height: 22px;
}

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

.dko-wysiwyg__container table {
    background: white;
    border-spacing: 0;
    border-collapse: separate!important;
    border-bottom: 1px solid var(--crf--light-grey);
    margin-bottom: 30px;
    display: flex;
    overflow: auto;
    width: inherit !important;
    max-width: 100%;
    height: inherit !important;
}

/* Apply a border to the right of all but the last column */
.dko-wysiwyg__container table th:not(:last-child),
.dko-wysiwyg__container table td:not(:last-child) {
    border-right: 1px solid var(--crf--middle-grey-2);
}
.dko-wysiwyg__container table td {
    padding: 10px 15px;  
    min-width: 200px;
    border-left: 1px solid var(--crf--light-grey);
    border-right: 1px solid var(--crf--light-grey);
}
.dko-wysiwyg__container table td.fond-colore {
  background-color: #d2afff36;
}
.dko-wysiwyg__container table tr:first-child {
    border: none !important;
    font-weight: 700;
    background-color: transparent !important;
    color: var(--crf--shiny-blue);
}
.dko-wysiwyg__container table tr:first-child td {
    border: none;
}
.dko-wysiwyg__container table tr:nth-child(odd) {
    background-color: var(--crf--light-grey);
}


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

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

.dko-wysiwyg a {
    color: var(--crf--shiny-blue);
}



.dko-wysiwyg iframe {
    max-width: 100%;
}