.line {
    padding-bottom: 15px;
    border-color: #e2e2e2;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .check-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.check-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.check-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked ~ .checkmark:after {
    display: block;
}

.check-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



.modal--quickview .prd-block--prv-bottom .product-previews-carousel {
    padding: 0;
}

body:not(.equal-height) .modal--quickview .product-previews-carousel a > span {
    display: block;
    position: relative;
    border: 0;
    height: 0;
    overflow: hidden;
    padding-bottom: 128%;
}

    body:not(.equal-height) .modal--quickview .product-previews-carousel a > span > span {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    body:not(.equal-height) .modal--quickview .product-previews-carousel a > span img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.modal--quickview.modal-quickview--classic .product-previews-carousel {
    height: 0;
    position: relative;
    transition: 0s;
}

@media (min-width: 480px) {
    .modal--quickview.modal-quickview--classic .product-previews-carousel {
        padding-bottom: calc(38% + 10px);
    }
}

@media (max-width: 479px) {
    .modal--quickview.modal-quickview--classic .product-previews-carousel {
        padding-bottom: calc(38% + 10px);
    }
}

@media (min-width: 992px) {
    .modal--quickview .prd-block--no-previews .prd-block_info-bottom, .modal--quickview .prd-block--no-previews .prd-block_info-top {
        width: calc(100% - 50% - 20px);
    }

    .modal--quickview.modal-quickview--classic .prd-block_info-bottom {
        width: calc(100% - 50% - 20px);
    }

    .modal--quickview.modal-quickview--classic .quickview-info {
        min-height: 65vh;
    }
}

@media (max-width: 1024px) {

    .bottom-nav-toggle {
        position: fixed;
        z-index: 162;
        top: auto !important;
        right: 0;
        bottom: 0;
        left: 0;
        height: 69px;
        margin: 0;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(0, 0, 0, .12);
        border-top: 1px solid #2b2f37;
    }

    .bottom-nav-view {
        width: 100%;
        height: 100%;
        text-align: center;
        display: flex;
        justify-content: space-around;
    }

    .bottom-nav-btn {
        width: 25%;
        height: 100%;
        justify-content: center;
        align-items: center;
        padding-top: 9px;
    }

        .bottom-nav-btn,
        .bottom-nav-btn:hover,
        .bottom-nav-btn:focus {
            text-decoration: none;
            color: #fff;
            background-color: #464b5c;
        }

    .bottom-nav-icon {
        text-align: center;
        overflow: hidden;
        color: #fff;
        font-weight: bold;
        font-size: 23px;
        padding: 0px;
    }

    .bottom-nav-name {
        display: block;
        overflow: hidden;
        position: relative;
        color: #fff;
        font-size: 11px;
        transition: 0.5s;
        text-transform: uppercase;
    }

    .bottom-nav-qty {
        display: block;
        overflow: hidden;
        font-size: 12px;
        font-weight: 500;
        position: absolute;
        top: 5px;
        display: inline-block;
        width: 18px;
        height: 19px;
        color: #fff;
        border-radius: 50%;
        background-color: #ff0000;
        -ms-flex-align: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.prd-quantity {
    border: 2px solid #ddd;
    display: inline-flex;
    margin-top: 19px;
    margin-right: 15px;
}

    .prd-quantity,
    .prd-quantity * {
        box-sizing: border-box;
    }

        .prd-quantity .quantity {
            width: 3.5rem;
            padding: .5rem;
            font-size: 17px;
            height: 2.7rem;
            font-weight: bold;
            text-align: center;
            border: none;
            -webkit-appearance: none;
        }

        .prd-quantity button {
            outline: none;
            -webkit-appearance: none;
            background-color: transparent;
            border: none;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.7rem;
            cursor: pointer;
            margin: 0;
            position: relative;
        }

            .prd-quantity button:before,
            .prd-quantity button:after {
                display: inline-block;
                position: absolute;
                content: '';
                width: 1rem;
                height: 2px;
                background-color: #212121;
                transform: translate(-50%, -50%);
            }

            .prd-quantity button.plus:after {
                transform: translate(-50%, -50%) rotate(90deg);
            }