﻿.payment_img {
    height: 30px;
    width: auto;
    margin: 0 5px;
    float: left;
}
/*.footer__widget--inner ul li a{
    color:white;
}*/


.q_complete {
    background-color: #fff;
    border: solid 1px #ccc;
    padding: 10px;
    position: absolute;
    margin-top: -10px;
    width: 50%;
    display: none;
    max-height: 400px;
    overflow: auto;
    z-index: 100;
    left: 25%;
    top: 55px;
    margin-top:20px;
}

    .q_complete ul {
        margin: 0;
        padding: 0;
    }

        .q_complete ul li {
            display: block;
            float: left;
            width: 25%;
            line-height: 30px;
        }

            .q_complete ul li.w100 {
                width: 100%;
            }

            .q_complete ul li a {
                font-size: 12px; /*12*/
            }

@media screen and (max-width:780px) {
    .q_complete {
        width: 78%;
        margin-top: 0;
    }

        .q_complete ul li {
            float: none;
        }

            .q_complete ul li.w100 {
                width: 90%;
            }

            .q_complete ul li a {
                font-size: 16px; /*12*/
            }
}


.q_tags {
    display: none;
    margin-bottom: 1px;
}

    .q_tags ul {
        list-style: none;
        margin: 0;
        padding: 0;
        padding-left: 11px;
    }

        .q_tags ul li {
            float: left;
            display: block;
            margin-left: -10px;
            position: relative;
        }

            .q_tags ul li a {
                font-weight: bold;
                padding: 3px 5px 2px 15px;
                color: #fff;
            }

                .q_tags ul li a i.fa {
                    color: rgba(255,255,255,0.5);
                }

            .q_tags ul li:first-child a {
                padding-left: 5px;
            }

            .q_tags ul li a:last-child {
                -webkit-border-top-right-radius: 10px;
                -moz-border-radius-topright: 10px;
                border-top-right-radius: 10px;
            }

            .q_tags ul li a.level1 {
                background: #910000;
            }

            .q_tags ul li a.level2 {
                background: #a81a1a;
            }

            .q_tags ul li a.level3 {
                background: #db2929;
            }

            .q_tags ul li a.level4 {
                background: #fc3c3c;
            }

            .q_tags ul li a.level5 {
                background: #869495;
            }

.v-bottom {
    vertical-align: bottom !important;
}


:root {
    /* Base scale (can tweak later) */
    --btn-radius: 2.4rem;
    --btn-font-w: 600;
    --btn-line: 3.8rem;
    --btn-pad-x: 2rem;
    /* Color tokens */
    --c-primary: #0d6efd;
    --c-secondary: #6c63ff;
    --c-success: #198754;
    --c-warning: #f59f00;
    --c-danger: #dc3545;
    --c-info: #0dcaf0;
    --c-dark: #212529;
    --c-light: #e9ecef;
    --c-white: #fff;
    --c-black: #000;
}

/* Core button */
.btn {
    display: inline-block;
    font-weight: var(--btn-font-w);
    font-size: 1.3rem;
    line-height: var(--btn-line);
    height: var(--btn-line);
    padding-inline: var(--btn-pad-x);
    letter-spacing: .2px;
    border-radius: var(--btn-radius);
    border: 0;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    color: var(--btn-fg, var(--c-white));
    background: var(--btn-bg, var(--c-secondary));
    transition: background .2s ease, box-shadow .2s ease, transform .05s ease, color .2s ease, opacity .2s ease;
}

    .btn:hover {
        background: var(--btn-bg-hover, var(--btn-bg));
    }

    .btn:active {
        transform: translateY(1px);
    }

    .btn:focus-visible {
        outline: none;
        box-shadow: 0 0 0 .2rem color-mix(in oklab, var(--btn-bg) 35%, white 65%), 0 2px 10px rgba(0,0,0,.08);
    }

    .btn:disabled,
    .btn[aria-disabled="true"] {
        opacity: .6;
        pointer-events: none;
        cursor: not-allowed;
    }

/* Size tweaks */
@media (min-width:768px) {
    .btn {
        font-size: 1.4rem;
        line-height: 4rem;
        height: 4rem;
        padding-inline: 2.2rem;
        padding-top: 0.03rem;
    }
}

@media (min-width:992px) {
    .btn {
        font-size: 1.5rem;
        line-height: 4.2rem;
        height: 4.2rem;
        padding-inline: 2.5rem;
        padding-top: 0.03rem;
    }
}

@media (min-width:1600px) {
    .btn {
        line-height: 4.6rem;
        height: 4.6rem;
        padding-inline: 3rem;
        padding-top:0.03rem;
    }
}

.btn--block {
    display: block;
    width: 100%;
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none;
    }
}

/* Solid variants (set bg + hover + readable text) */
.btn--primary {
    --btn-bg: var(--c-primary);
    --btn-bg-hover: color-mix(in oklab, var(--c-primary) 85%, black 15%);
    --btn-fg: var(--c-white);
}

.btn--secondary {
    --btn-bg: var(--c-secondary);
    --btn-bg-hover: color-mix(in oklab, var(--c-secondary) 85%, black 15%);
    --btn-fg: var(--c-white);
}

.btn--success {
    --btn-bg: var(--c-success);
    --btn-bg-hover: color-mix(in oklab, var(--c-success) 85%, black 15%);
    --btn-fg: var(--c-white);
}

.btn--warning {
    --btn-bg: var(--c-warning);
    --btn-bg-hover: color-mix(in oklab, var(--c-warning) 85%, black 15%);
    --btn-fg: var(--c-black);
}

.btn--danger {
    --btn-bg: var(--c-danger);
    --btn-bg-hover: color-mix(in oklab, var(--c-danger) 85%, black 15%);
    --btn-fg: var(--c-white);
}

.btn--info {
    --btn-bg: var(--c-info);
    --btn-bg-hover: color-mix(in oklab, var(--c-info) 85%, black 15%);
    --btn-fg: var(--c-black);
}

.btn--dark {
    --btn-bg: var(--c-dark);
    --btn-bg-hover: color-mix(in oklab, var(--c-dark) 85%, black 15%);
    --btn-fg: var(--c-white);
}

.btn--light {
    --btn-bg: var(--c-light);
    --btn-bg-hover: color-mix(in oklab, var(--c-light) 85%, black 15%);
    --btn-fg: var(--c-black);
}

/* Outline style (same classes, add .btn--outline to invert) */
.btn--outline {
    background: transparent;
    color: var(--btn-bg, var(--c-secondary));
    box-shadow: inset 0 0 0 2px currentColor;
}

    .btn--outline:hover {
        background: var(--btn-bg, var(--c-secondary));
        color: var(--btn-fg, var(--c-white));
    }

/* Optional subtle glow on dark scheme */
@media (prefers-color-scheme: dark) {
    .btn {
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }
}

/* Size variants */
.btn-sm {
    font-size: 1.2rem;
    line-height: 3.2rem;
    height: 3.2rem;
    padding-inline: 1.4rem;
    border-radius: calc(var(--btn-radius) - .4rem);
}

.btn-xs {
    font-size: 1.1rem;
    line-height: 2.6rem;
    height: 2.6rem;
    padding-inline: 1.1rem;
    border-radius: calc(var(--btn-radius) - .8rem);
}

/* Keep them compact on larger screens, overriding global upsizing */
@media (min-width: 768px) {
    .btn-sm {
        font-size: 1.2rem;
        line-height: 3.2rem;
        height: 3.2rem;
        padding-inline: 1.4rem;
    }

    .btn-xs {
        font-size: 1.05rem;
        line-height: 2.6rem;
        height: 2.6rem;
        padding-inline: 1rem;
    }
}

.form-control{
    font-size:1.3rem;
}


.product-description {
    font-family: system-ui,Arial,sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    margin: 1.5rem auto;
   /* max-width: 900px;*/
    padding: 0 1rem
}

.product-description h2 {
    font-size: 1.5rem;
    color: #c40000;
    border-bottom: 2px solid #eee;
    padding-bottom: 4px;
    margin-top: 1.8rem
}

.product-description h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 1.4rem
}

.product-description ul {
    /*margin-left: 1.2rem;*/
    list-style: disc
}

.product-description li {
    margin: 6px 0
}

.product-description .summary {
    background: #f8f9fa;
    border-left: 4px solid #c40000;
    padding: 12px;
    margin: 18px 0;
    font-weight: 500
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 1rem;
    border-radius: 12px
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 12px
    }

@media (max-width:768px) {
    .product-description {
        font-size: 15px
    }

        .product-description h2 {
            font-size: 1.3rem
        }
}


.deals__product--card__thumbnail {
    margin-bottom: 2.2rem;
    height: 120px;
}

.deals__product--card__thumbnail--img {
    margin: 0 auto;
    height: 150px;
}