/** Shopify CDN: Minification failed

Line 16:19 Unexpected "{"
Line 16:28 Expected ":"
Line 16:35 Unexpected "{"
Line 17:16 Expected identifier but found whitespace
Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 17:53 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
... and 12 more hidden warnings

**/
.cu-quiz-data-row-{{ section.id }} {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
}
.cu-quiz-data-column-image {
    display: flex;
    align-items: center;
}

.cu-quiz-data-col_image {
    width: 50%;
}

.cu-quiz-data-col_info {
    width: 50%;
    padding: 50px;
    height: 100%;
}
.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.cu-quiz-data-col_image img {
    width: 100%;
}

.cu-quiz-data-col_info h2 {
    font-size: 45px;
    line-height: 68px;
    font-weight: 600;
    color: #5F5656;
}

button.cu-quiz-data-col_info-btn {
    background: #ed1c24;
    color: white;
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}
.cu-quiz-data-column-quizs {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top:50px;
    padding-bottom:50px;
    gap: 20px;
}

.cu-quiz-data-column-quizs-data {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.cu-quiz-data-column-quizs-data h2 {
    font-size: 30px;
    color: #ED1C24;
    font-weight: 700;
    width: 100%;
    text-align: center;
    line-height: 1;
    margin-bottom: 40px;
}

.column-quizs-data_items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.column-quizs-data_items_child {
    width: 100%;
    background: #F6DAD9;
    padding: 11px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: #ED1C24;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.column-quizs-data_items_child img {
    position: absolute;
    width: 100%;
    max-width: 150px;
    right: 0px;
    height: 100%;
}
.column-quizs-data_items_child span {
    display: flex;
}

.cu-quiz-data-column-quizs-progress_bar {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* display: none; */
}

.quizs-progress_bar_counter {
    font-size: 15px;
    color: #ED1C24;
    margin-bottom: 5px;
}

.quizs-progress_bar_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.quizs-progress_bar_line {
    width: 100%;
    height: 12px;
    border: 1px solid #ed1c24;
    border-radius: 70px;
}

.progress_bar_line-filling {
    height: 100%;
    background: #ed1c24;
    border-radius: 70px;
    width: var(--bar-width);
    transition: 0.3s ease;
}

.quizs-progress_bar_arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: fit-content;
    height: fit-content;
}

.bar_arrow {
    height: 40px;
    width: 40px;
    border: 3px solid #ed1c24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
    cursor: pointer;
}
.bar_arrows-prev.bar_arrow {
    transform: rotate(180deg);
}
path.inner_circle {
    opacity: 0;
    transition: 0.3s ease;
}
.column-quizs-data_items_child.active path.inner_circle, .column-quizs-data_items_child:hover path.inner_circle {
    opacity: 1;
}
.hide {
  display: none;
}
.column-quizs-data_items_child {
    min-height: 90px;
}
.column-quizs-data_items_child img {
    object-fit: cover;
}
@media screen and (max-width: 700px) {
    .cu-quiz-data-row-{{ section.id }} {
        padding-top: {{ section.settings.padding_top_mobile }}px;
        padding-bottom: {{ section.settings.padding_bottom_mobile }}px;
    }
    .cu-quiz-data-column-image {
        flex-direction: column;
    }

    .cu-quiz-data-col_image {
        width: 100%;
    }

    .cu-quiz-data-col_info {
        width: 100%;
        padding: 15px 15px;
    }

    .cu-quiz-data-col_info h2 {
        font-size: 30px;
        line-height: 37px;
    }
    .bar_arrow {
        height: 30px;
        width: 30px;
        border: 2px solid #ed1c24;
    }
    .bar_arrow svg {
        width: 14px;
        height: 14px;
    }
}
@media (max-width:360px){
  .column-quizs-data_items_child img {
      max-width: 90px;
  }
}