@media (min-width: 992px) {
    #sideSearchFilter {
        display: block !important;
    }
}

.nav-select-sync .select2-selection {
    display: flex;
    align-items: center;
    text-align: left;
    border-color: #CCD0D5;
    border-radius: 8px;
    height: 48px;
    padding-left: 16px;
    padding-right: 40px;
}

.nav-select-sync .select2-selection .select2-selection__rendered {
    font-size: 18px;
    font-weight: 600 !important;
}

.nav-select-sync .select2-selection .select2-selection__rendered {
    padding: 0;
}

.select2-dropdown .select2-results__options .select2-results__option {
    padding-left: 16px;
}

.nav-select-sync .select2-selection .select2-selection__arrow {
    top: 10px;
    right: 4px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 6px 8px 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 8px 6px 0 6px;
}

.page-content-body-holder a[target=_blank]:after {
    content: unset;
}

.page-content-body-holder .video-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-content-body-holder .hidden-answer {
    width: auto !important;
}

.page-content-body-holder .btn-primary a {
    color: #fff !important;
}

.select2-select-holder .select2-selection {
    display: flex;
    align-items: center;
    text-align: left;
    border-color: #CCD0D5;
    border-radius: 8px;
    height: 36px;
    padding-left: 16px;
    padding-right: 40px;
}

.select2-select-holder .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 4px;
    right: 4px;
}

.page-content-body-holder .eae-answer {
    text-align: left;
}

/* Red play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* White triangle */
.play-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.right-column {
    width: 100%;
}

.custom-checkbox input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin-bottom: 12px;
}

.custom-checkbox .checkmark {
    position: relative;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    transition: border-color 0.25s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}

.custom-checkbox:hover .checkmark {
    border-color: #6b7280;
}

.custom-checkbox input[type="radio"]:checked + .checkmark {
    border-color: #22c55e;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 0px;
    width: 7px;
    height: 16px;
    border: solid #56bd7c;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    box-sizing: content-box;
}

.custom-checkbox input[type="radio"]:checked + .checkmark::after {
    display: block;
}

.custom-checkbox span {
    margin-left: 12px;
    font-size: 18px;
    color: #1f2937;
}

.question {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: #374151;
}

.answer-content {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    margin: 6px 0;
    display: none;
}

.answer-content.active {
    display: block;
}

