.w-fcn-container {
    width: 93%;
}

.left-flex-button-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 10px;
}

    .left-flex-button-wrapper.with-bot-margin {
        margin-bottom: .8em;
    }

    .left-flex-button-wrapper .btn + .btn {
        margin: 0;
        margin-left: 1em;
    }

.check-order-btn {
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    font-size: 1.125rem;
}

.inactive-check-order-btn {
    background-color: white;
    color: var(--gcard-body-text-color);
    border: 1px solid var(--gcard-body-text-color);
}

.faq-ctg-btn {
    padding: .5rem 1.25rem;
    margin-right: .5rem;
    background-color: white;
    color: var(--gcard-body-text-color);
    border: 1px solid var(--gcard-body-text-color);
    border-radius: 20px;
    font-size: 1.125rem;
    text-decoration: none;
    letter-spacing: 1.8px;
    text-align: center;
    cursor: pointer;
}

    .faq-ctg-btn:hover, .faq-ctg-btn:focus {
        background: var(--blue-fill-hover);
        color: var(--white-fill);
        border: var(--blue-fill-hover);
    }

    .faq-ctg-btn.active {
        background-color: var(--blue-fill);
        color: var(--white-fill);
        border: none;
    }

.two-row-order-grid {
    --col: 1;
    --row: 2;
}

.three-row-order-grid {
    --col: 1;
    --row: 3;
}

.payment-list-bg {
    background-color: var(--gray-fill);
}

@media screen and (max-width: 1000px) {
    .check-order-btn {
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
    }
}

@media screen and (min-width: 800px) {

    .left-flex-button-wrapper {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    .check-order-btn {
        max-width: 145px;
    }

    .order-block.g-finish-block {
        padding-left: 8%;
    }

    .g-finish-block .card + .card {
        margin-left: 0;
        margin-top: 1rem;
    }

    .card.two-row-order-grid, .card.three-row-order-grid {
        grid-template-columns: 30% 70%;
    }

    .two-row-order-grid {
        --col: 2;
        --row: 2;
    }

    .three-row-order-grid {
        --col: 2;
        --row: 3;
    }

        .two-row-order-grid .card-title, .three-row-order-grid .card-title {
            align-self: center;
        }

        .three-row-order-grid .card-title {
            grid-area: 1 / 1 / 2 / 2;
            justify-self: stretch;
        }

        .three-row-order-grid .card-till-area {
            grid-area: 1 / 2 / 2 / 3;
        }

        .three-row-order-grid .card-body {
            grid-area: 2 / 2 / 3 / 3;
        }
}


.divider {
    font-size: 1.125rem;
    width: 100%;
    text-align: center;
    padding: 1.5rem 0 1rem;
    border-bottom: 1px solid var(--placeholder-text-color);
    color: var(--wcard-body-text-color);
    margin-bottom: 0.875rem;
}

.row {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-size: .875rem;
}

    .row + .row {
        margin-top: .8em;
    }

.key-value-spaced, .key-value-start {
    display: flex;
    width: 100%;
    justify-content: space-between;
    color: var(--wcard-body-text-color);
}

    .key-value-spaced + .key-value-spaced,
    .key-value-start + .key-value-start {
        margin-top: .8em;
    }

.key-value-start {
    column-gap: 1.5em;
}

.key {
    white-space: nowrap;
    font-weight: 500;
}

.value {
    text-align: right;
    font-weight: 300;
}

.blue-value {
    color: var(--main-blue-text-color);
}

.order-list-btn-wrapper {
    margin-top: 1rem;
}

.btn-outline {
    height: 30px;
    line-height: 30px;
    font-size: .875rem;
}

.order-list-btn-wrapper > .btn-outline {
    max-width: none;
}


@media screen and (min-width: 800px) {
    .row {
        flex-direction: row;
        column-gap: 10%;
        font-size: 1.125rem;
    }

    .key-value-spaced + .key-value-spaced, .key-value-start + .key-value-start {
        margin: 0;
    }

    .key-value-start {
        column-gap: 1em;
        justify-content: flex-start;
    }

    .three-seven-dist {
        column-gap: 5%;
        justify-content: space-between;
    }

        .three-seven-dist > .key-value-start:nth-child(1) {
            flex-basis: 30%;
        }

        .three-seven-dist > .key-value-start:nth-child(2) {
            flex-basis: 65%;
        }

    .key {
        white-space: normal;
    }

    .count-key {
        font-size: 16px;
    }

    .value {
        text-align: left;
        font-size: 16px;
        padding-top: 2px;
    }

    .blue-value {
        color: var(--main-blue-text-color);
        padding: 0;
    }

    .order-list-btn-wrapper {
        margin-top: 1.5rem;
        height: 45px;
    }

    .btn-outline {
        height: 45px;
        line-height: 43px;
        font-size: 1rem;
    }
}

.detail-foldable {
    margin-top: 1.25rem;
    border: 1px solid var(--placeholder-light-text-color);
    padding: 0;
}

.detail-title {
    width: 100%;
    background-color: var(--placeholder-light-text-color);
    color: var(--gcard-body-text-color);
    text-align: center;
    font-size: .875rem;
    font-weight: 400;
    padding: .4em 0;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    position: relative;
    cursor: pointer;
}

    .detail-title:hover, .detail-title:focus {
        background-color: var(--placeholder-text-color);
    }

    .detail-title::after {
        position: absolute;
        top: 50%;
        right: 1em;
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: 8px solid white;
        border-right: 6px solid transparent;
        border-bottom: 0;
        border-left: 6px solid transparent;
        transform: translateY(-50%) rotate(var(--rotateFlip));
    }

.detail-foldable .w-fcn-container {
    margin: 1em auto;
}

@media screen and (min-width: 800px) {
    .detail-title {
        font-size: 1rem;
    }
}

.operation-btn {
    height: 30px;
    line-height: 28px;
    font-size: .875rem;
    background-color: var(--gray-fill);
    border: 1px solid var(--gcard-title-text-color);
    color: var(--gcard-body-text-color);
}

    .operation-btn:hover, .operation-btn:active {
        background-color: var(--placeholder-text-color);
        color: var(--gcard-body-text-color);
    }

.g-option-block {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 1em;
}

    .g-option-block + .g-option-block {
        margin-top: 1em;
        padding-top: 1em;
    }

    .g-option-block > * + * {
        width: 100%;
    }

.detail-title-round {
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
}

.fold:not(.show) {
    display: none;
}

.add-set {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

@media screen and (min-width: 800px) {
    .operation-btn {
        height: 45px;
        line-height: 43px;
        max-width: 150px;
        font-size: 1rem;
    }

    .add-set {
        flex-direction: row;
        column-gap: 1em;
    }

        .add-set > input {
            flex-basis: 60%;
        }

        .add-set > select {
            flex-basis: 40%;
        }
}

.qa-question {
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    word-break: break-word;
}

.qa-answer {
    margin-top: .75rem;
    font-weight: 400;
    /*  font-size: .875rem;*/
    font-size: 1rem;
    word-break: break-word;
}

.qa-question, .qa-answer {
    display: flex;
    flex-direction: row;
    column-gap: 1em;
    align-items: flex-start;
}

    .qa-question > span {
        align-self: center;
    }

        .qa-question > span:hover {
            text-decoration: underline;
        }

    .qa-question > img, .qa-answer > img {
        width: 1.125rem;
        height: 100%;
    }

.edit-button-wrapper {
    flex-direction: row;
    justify-content: space-between;
}

    .edit-button-wrapper > .btn + .btn {
        margin: 0;
        margin-left: 1.5em;
    }

@media screen and (max-width: 450px) {
    .faq-flex {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .faq-min-btn {
        min-width: 121px;
        min-height: 44px;
        margin-bottom: 5px;
        font-size: 16px;
    }
}
