.cw {

    max-width: 700px;

    display: none;

    font-family: LeituraNews, serif;

}

@media only screen and (max-width:768px) {

    .cw {

        padding: 30px;

        vertical-align: bottom;

    }     

}



.cw * {

    margin: 0;

    padding: 0;

    outline: none;

    box-sizing: border-box;

}

.cw-gray {
    background-color: #f0f3f5;
}



.cw-text {

    font-size: 16px;

    line-height: 1.2;

    font-weight: 400;

}

@media only screen and (max-width:768px) {

    .cw-text {

        font-size: 14px;

    }     

}



.cw-text p {

    padding-bottom: 15px;

}



.cw-text a,

.cw-text b {

    font-weight: 700;

}



.cw-text a {

    text-decoration: none;

    color: #003460

}



.cw-text-dark,

.cw-text a:hover {

    color: #616161

}



.cw-text-black {

    color: #000

}



.cw-controls {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: justify;

    -ms-flex-pack: justify;

    justify-content: space-between

}



@media only screen and (max-width:768px) {

    .cw-controls {

        display: block

    }

}



.cw-button {

    display: inline-block;

    background-color: #003460;

    color: #fff !important;

    padding: 5px 10px;

    font-size: 14px;

    border-radius: 3px;

    text-decoration: none

}



@media only screen and (max-width:768px) {

    .cw-button {

        display: block;

        text-align: center;

        margin-top: 10px

    }

}



.cw-form-name {

    font-size: 16px;

    line-height: 1.2;

    font-weight: 400;

    position: relative;

    padding-left: 35px;

    font-weight: 700;

    margin-bottom: 10px;

    cursor: pointer

}

@media only screen and (max-width:768px) {

    .cw-form-name {

        font-size: 14px;

    }     

}



.cw-form-name:after,

.cw-form-name:before {

    position: absolute;

    display: block;

    content: ""

}



.cw-form-name:before {

    background-color: #dadada;

    height: 16px;

    width: 28px;

    left: 0;

    top: 1px;

    border-radius: 8px

}



.cw-form-name:after {

    background-color: #999;

    height: 16px;

    width: 16px;

    left: 0;

    top: 1px;

    border-radius: 8px;

    -webkit-transition: left .3s;

    transition: left .3s

}



.cw-form-name.active:after {

    background-color: #003460;

    left: 12px

}



.cw-form-nested {

    margin-left: 20px

}



.cw-form-desc {

    display: block;

    font-weight: 400

}



.cw-form {

    margin-bottom: 10px

}



.cw-arrow {

    display: inline-block;

    position: relative;

    height: 10px;

    width: 10px;

    border-bottom: 2px solid #000;

    border-left: 2px solid #000;

    -webkit-transform: rotate(-45deg);

    transform: rotate(-45deg);

    left: 5px;

    top: -2px

}



@media only screen and (max-width:768px) {

    .cw-text-hidden-phone {

        display: none;

    }

}



.cw-button-phone {

    display: none;

}



@media only screen and (max-width:768px) {

    .cw-button-phone {

        display: block;

    }

}



.cw-close-btn {

    position: absolute;

    right: 8px;

    top: 10px;

    width: 21px;

    height: 16px;

}



.cw-close-btn:before {

    content: "";

    display: block;

    position: absolute;

    top: 0;

    width: 100%;

    height: 2px;

    background-color: #003460;

    transform: rotate(45deg);

    transform-origin: 0 0;

}



.cw-close-btn:after {

    content: "";

    display: block;

    width: 100%;

    height: 2px;

    position: absolute;

    bottom: 0;

    background-color: #003460;

    transform: rotate(-45deg);

    transform-origin: 0 2px;

}





/* Default styles for the table */

.cw {
    width: 700px;
    max-width: 100%;
}

.cw-table-wrap {
    overflow-x:auto;
    width: 100% !important;
    margin-top: 10px;
    margin-bottom: 20px;
}

.cw-table {
    border-collapse: collapse;
    font-size: 1.3rem;
    width: 100%;
    min-width: 500px;
}

.cw-table th, .cw-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.cw-table thead {
    background-color: #f0f3f5;
}

/* Styles for screens with a maximum width of 768px (e.g., mobile devices) */
@media only screen and (max-width: 768px) {
    .cw-table {
        font-size: 14px; /* Reduce font size for smaller screens */
    }

    .cw-table th, .cw-table td {
        padding: 6px;
    }
}