input {
    position: fixed;
    opacity: 0;
    z-index: -1;
}

.row {
    display: flex;
}

.row .col {
    flex: 1;
}

.row .col:last-child {
    margin-left: 1em;
}

/* Accordion styles */
.tabs {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.tab-label {
    display: flex;
    justify-content: space-between;
    padding: 1em !important;
    background: #f2f2f2;
    font-weight: bold;
    cursor: pointer;
    color: black !important;

    /* Icon */
}

.tab-label:hover {
    background: #eaeaea;
}

.tab-label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
}

.tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #676767;
    background: white;
    transition: all 0.35s;
}

input:checked + .tab-label {
    background: #eaeaea;
}

input:checked + .tab-label::after {
    transform: rotate(90deg);
}

input:checked ~ .tab-content {
    max-height: 1000vh;
    padding: 1em !important;
}


/* Not accordion */
.columns.col-3 .col-1-4.col-right {
    display: none;
}

.columns.col-3 .col-2-4 {
    width: 75%;
}

.gom-rteStyle-Highlight {
    background-color: #FAE032;
}