.wysiwyg__sidebar {
    background: var(--color-blue-x-light);
    padding: 44px 20px 24px;
    border-radius: 20px;
    margin-top: 50px;
}

.wysiwyg__sidebar h4 {
    font-size: 18px;
    padding-bottom: 45px;
}

.wysiwyg__sidebar .choices[data-type*="select-one"]::after {
    border-left: 1px solid var(--color-gray-x-light) !important;
}

.wysiwyg__sidebar label {
    font-size: 14px;
}

.wysiwyg__sidebar [type="text"],
.wysiwyg__sidebar [type="date"],
.wysiwyg__sidebar [type="datetime"],
.wysiwyg__sidebar [type="datetime-local"],
.wysiwyg__sidebar [type="email"],
.wysiwyg__sidebar [type="month"],
.wysiwyg__sidebar [type="number"],
.wysiwyg__sidebar [type="password"],
.wysiwyg__sidebar [type="search"],
.wysiwyg__sidebar [type="tel"],
.wysiwyg__sidebar [type="url"],
.wysiwyg__sidebar [type="week"],
.wysiwyg__sidebar [type="date"] {
    font-size: 13px;
}

.wysiwyg__sidebar .wpcf7-form-control-wrap.has-error:before {
    top: 13px;
}

.wysiwyg__sidebar .wpcf7-form-control-wrap.has-error:after {
    top: 14px;
}

.wysiwyg__sidebar .choices__inner {
    border: none;
}

.bg-navy-blue .wysiwyg__sidebar h4 {
    color: var(--color-navy-blue-dark);
}

@media (min-width: 768px) {
    .wysiwyg__sidebar {
        padding: 44px 56px 24px;
    }
}

@media (min-width: 1200px) {
    .wysiwyg__sidebar {
        padding: 50px 36px 30px;
        margin: 0 0 0 auto;
        max-width: 420px;
    }

    .wysiwyg__sidebar .form-col-last {
        padding-top: 20px;
    }

    .wysiwyg__sidebar h4 {
        font-size: 20px;
        padding-bottom: 40px;
    }
}

.table-structure {
    padding: 0 0;
    position: relative;
    color: var(--color-gray-dark);
    overflow-x: auto;
    width: 100%;
    background: var(--color-blue-x-light);
    border-radius: 20px;
    margin-bottom: 50px;
}

.table-structure table {
    border-collapse: collapse;
    width: 750px !important;
}

.table-structure table thead {
    color: var(--color-white);
    background: linear-gradient(to right, var(--color-bright-blue) 0%, #145d93 100%);
}

.table-structure table thead tr th,
.table-structure table thead tr td {
    width: auto !important;
    padding: 20px 0 20px 20px;
    text-align: left;
    font-size: 16px;
    line-height: 1em;
    font-weight: 700;
    border: none;
    color: var(--color-white);
}

.table-structure table tbody {
    padding: 0 0;
}

.table-structure table tbody tr {
    position: relative;
    background-color: var(--color-blue-x-light);
}

.table-structure table tbody tr:nth-child(even) {
    background-color: var(--color-white);
}

.table-structure table tbody tr td,
.table-structure table tbody tr th {
    width: auto !important;
    padding: 15px 10px 15px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-dark);
    line-height: 1.56em;
    vertical-align: top;
}

.table-structure table tbody tr td:first-child {
    width: 175px;
}

@media (min-width: 768px) {
    .table-structure {
        overflow-x: hidden;
    }

    .table-structure table {
        width: 100% !important;
    }

    .table-structure table thead tr th,
    .table-structure table thead tr td {
        padding: 20px 0 20px 20px;
    }

    .table-structure table tbody tr td,
    .table-structure table tbody tr th {
        padding: 30px 5px 25px 20px;
    }
}

@media (min-width: 1200px) {
    .table-structure {
        padding-bottom: 0;
        margin: 35px 0 70px;
    }

    .table-structure table thead tr th,
    .table-structure table thead tr td {
        padding: 25px 30px 25px 30px;
        font-size: 18px;
    }

    .table-structure table thead tr th:first-child,
    .table-structure table thead tr td:first-child {
        padding-left: 60px;
    }

    .table-structure table thead tr th:last-child,
    .table-structure table thead tr td:last-child {
        padding-right: 60px;
    }


    .table-structure table tbody tr td,
    .table-structure table tbody tr th {
        padding: 40px 30px;
        font-size: 16px;
    }

    .table-structure table tbody tr td:first-child,
    .table-structure table tbody tr th:first-child {
        padding-left: 60px;
    }

    .table-structure table tbody tr td:last-child,
    .table-structure table tbody tr th:last-child {
        padding-right: 60px;
    }
}