@import url(https://db.onlinewebfonts.com/c/516e47a06218699c319bb58e9fa11f33?family=Gill+Sans+Nova+Medium);
@import url(https://db.onlinewebfonts.com/c/17d13d15b3c29dc15e4a62bb8700f206?family=Gill+Sans+Nova+Heavy);
@import url(https://db.onlinewebfonts.com/c/0f15f0dad4d5c120c526718430cf1252?family=Gill+Sans+Nova);

.vz-wrap {
    font-family: "Gill Sans Nova Medium";
    padding: 0;
    width: 100%;
    background: #fff;
}

.vz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 40px 0;
    border-bottom: 3px solid #283583;
    margin-bottom: 20px;
}

.vz-header-left img {
    height: 115px;
    width: auto;
}

.vz-logo img {
    height: 150px;
    width: auto;
}

.vz-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

@media (max-width: 900px) {
    .vz-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .vz-cards { grid-template-columns: repeat(2, 1fr); }
}

.vz-card {
    display: flex;
    flex-direction: column;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: default;
    background: #fff;
}

.vz-card:hover {
    transform: none;
    box-shadow: none;
}

.vz-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #eee;
}

.vz-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.ls-questionhelp {
    display: none;
}

.vz-checkbox-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background: var(--card-color);
    padding: 5px 10px;
    cursor: pointer;
}

.vz-fake-check {
    display: inline-block;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    position: relative;
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s;
}

.vz-card.vz-selected {
    border-color: var(--card-color);
}

.vz-card.vz-selected .vz-fake-check {
    background: #fff;
    border-color: #fff;
}

.vz-card.vz-selected .vz-fake-check::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 7px;
    height: 11px;
    border: 2px solid var(--card-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.vz-check-label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vz-send-row {
    display: flex;
    justify-content: center;
    padding: 28px 0;
}

.vz-send-btn {
    background: #283583;
    color: #fff;
    border: none;
    padding: 0 45px;
    font-family: "Gill Sans Nova";
    font-size: 32px;
    cursor: pointer;
}

.vz-send-btn:disabled {
    background: #b0b0b0;
    cursor: not-allowed;
}

.vz-send-btn:hover:not(:disabled) {
    background: #1a2560;
}

.question-container {
    background-color: transparent !important;
    border: none !important;
    box-shadow: unset !important;
}

.answers-list,
ul.answers,
.answer-container {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

.group-title, #survey-nav, .alert-warning, .alert-danger, #navigator-container, .ls-js-hidden {
    display: none;
}

body {
    padding: 0;
}