:root {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #494949;
}

.go-checkbox {
    border: 1px solid var(--go-border);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.go-checkbox:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.go-chapters {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 20px;
}
.go-chapter {
    appearance: none;
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border: 1px solid #4a9b2b;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
}
.go-chapter:hover {
    border-color: #6ab64d;
    box-shadow: 0 0 0 4px rgba(106, 182, 77, 0.12);
}
.go-chapter::before {
    content: "\2714";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #6ab64d;
    font-size: 16px;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        color 0.25s ease;
}
.go-chapter:hover::before {
    color: #6ab64d;
}
.go-chapter:checked {
    background: #6ab64d;
    border-color: #4a9b2b;
}
.go-chapter:checked::before {
    color: #fff;
    transform: translate(-50%, -50%) scale(1);
}
.go-chapter:active {
    transform: scale(0.95);
}
.go-grid, .go-combinations {
    display: inline-flex;
    gap: 10px;
    align-content: center;
    margin-bottom: 20px;
    flex-direction: row;
}
.go-question-card {
    margin-top: 30px;
    border: 1px solid var(--go-border);
    border-radius: 18px;
    padding: 20px;
    background: white;
}

.go-question-card img {
    width: 100%;
    display: block;
}

.go-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

.go-steps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.go-button, .go-button:visited, .go-button:active, .go-button:focus {
    border-radius: 50px;
    border: 3px solid #cce8c2;
    color: #fff;
    overflow: hidden;
    font-family: inherit;
    font-size: inherit;
    background: #6ab64d;
    cursor: pointer;
    padding: 15px 30px;
    display: inline-block;
    margin: 15px 0px;
    text-transform: uppercase;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    gap: 8px;
    display: inline-flex;
    align-items: center;
}
.go-button .go-btn-icon {
    width: 24px;
    height: 24px;
}
.go-button:hover {
    background: #418e24;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #b1e19f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active {
    background: #6ab64d;
}
.step.done {
    background: #54a436;
}
.go-test-count input[type="number"] {
    border: 2px solid #ccc;
    color: #000;
    width: 100px;
    border-radius: 7px;
    box-sizing: border-box;
    font-weight: normal;
    line-height: normal;
    outline: none;
    padding: 9px 12px;
    max-width: 100%;
    -webkit-appearance: none;
    background-color: #F7F7F7;
}
.go-question-card h4{
    font-size: 16px;
}
@media print {

    body * {
        visibility: hidden;
    }

    #go-app,
    #go-app * {
        visibility: visible;
    }

    #go-app {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: 100%;
    }

    .go-actions,
    .go-steps,
    .go-header,
    .no-print {
        display: none !important;
    }

    .print-page {
        break-after: page;
        page-break-after: always;
        display: block !important;
    }

    .print-page:last-child {
        page-break-after: auto;
    }
    .print-page h4{
        font-size: 14px;
    }
    .go-print-header {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .go-print-header h4 {
        font-size: 15px;
        margin:0;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 768px) {

    .go-card {
        padding: 20px;
    }

    .go-header h1 {
        font-size: 28px;
    }
}