﻿/**
*
* Shop
*/
.card-shop {
    padding: 30px 15px 25px;
    background-color: #edeff4;
    border: 1px solid #e1e1e1;
}

* + .card-shop {
    margin-top: 26px;
}

@media (min-width: 1600px) {
    .card-shop {
        min-height: 161px;
        padding: 30px 22px 25px;
    }
}

.bg-gray-100 .card-shop {
    background-color: #fff;
}

.card-shop-table {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #151515;
    background-color: #fff;
    border: 1px solid #e1e1e1;
}

    .card-shop-table tr + tr {
        border-top: 1px solid #e1e1e1;
    }

    .card-shop-table td {
        width: 50%;
        vertical-align: middle;
        padding: 20px 15px;
        white-space: nowrap;
    }

        .card-shop-table td:first-child {
            text-align: left;
        }

        .card-shop-table td:last-child {
            font-size: 18px;
            font-weight: 400;
            text-align: right;
        }

@media (min-width: 576px) {
    .card-shop-table td {
        padding: 28px 22px;
    }

        .card-shop-table td:last-child {
            padding-right: 60px;
        }
}

.product-inline {
    display: flex;
    align-items: center;
    margin-left: -15px;
}

    .product-inline > * {
        margin-left: 15px;
    }

.product-inline-figure {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 83px;
    background-image: linear-gradient(to bottom, #eef1f4 0%, #d5deeb 100%);
}

    .product-inline-figure::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transform-origin: 50% 100%;
        transform: scale3d(1, 0.3, 1);
        transition: .4s;
        background-image: linear-gradient(to bottom, #eef1f4 0%, #bdcbdf 100%);
    }

    .product-inline-figure:hover::after {
        opacity: 1;
        visibility: visible;
        transform: scale3d(1, 1, 1);
    }

.product-inline-image {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
}

.product-inline-price {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #f20404;
}

.product-inline-meta {
    display: table;
    vertical-align: middle;
    margin-bottom: -12px;
    margin-left: -12px;
}

    .product-inline-meta:empty {
        margin-bottom: 0;
        margin-left: 0;
    }

    .product-inline-meta > * {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 12px;
        margin-left: 12px;
    }

    .product-inline-meta > * {
        vertical-align: middle;
    }

* + .product-inline-title {
    margin-top: 10px;
}

* + .product-inline-meta {
    margin-top: 5px;
}

* + .product-inline {
    margin-top: 20px;
}

.page .cart-inline {
    color: #151515;
    background: #fff;
    border: 1px solid #e1e1e1;
    text-align: left;
}

    .page .cart-inline h1, .page .cart-inline h2, .page .cart-inline h3, .page .cart-inline h4, .page .cart-inline h5, .page .cart-inline h6, .page .cart-inline [class*='heading-'] {
        color: #151515;
    }

    .page .cart-inline .form-label,
    .page .cart-inline .form-input {
        color: #9b9b9b;
    }

    .page .cart-inline .form-input {
        background-color: #fff;
        border-color: #e1e1e1;
    }

    .page .cart-inline .stepper input {
        color: #151515;
    }

    .page .cart-inline .post-classic-title {
        color: #151515;
    }

.cart-inline .cart-inline-inner > * + * {
    border-top: 1px solid #e1e1e1;
}

.cart-inline-toggled-outer {
    position: relative;
}

    .cart-inline-toggled-outer .cart-inline-toggle {
        position: relative;
        z-index: 12;
    }

        .cart-inline-toggled-outer .cart-inline-toggle::after {
            content: '';
            position: absolute;
            bottom: -21px;
            left: 13%;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 9px 9px 9px;
            border-color: transparent transparent #fff transparent;
            pointer-events: none;
        }

        .cart-inline-toggled-outer .cart-inline-toggled,
        .cart-inline-toggled-outer .cart-inline-toggle::after {
            opacity: 0;
            visibility: hidden;
            transition: .22s;
            transform: translate3d(0, -10px, 0);
        }

            .cart-inline-toggled-outer .cart-inline-toggled.active,
            .cart-inline-toggled-outer .cart-inline-toggle.active::after {
                opacity: 1;
                visibility: visible;
                transform: translate3d(0, 0, 0);
            }

.cart-inline-toggled {
    position: absolute;
    right: 0;
    margin-top: 17px;
    top: 100%;
    z-index: 11;
    min-width: 320px;
    max-width: 100%;
}

    .cart-inline-toggled .cart-inline-inner {
        max-height: calc(100vh - 56px);
        overflow-x: hidden;
        overflow-y: auto;
    }

.cart-inline-header,
.cart-inline-main,
.cart-inline-footer {
    padding: 10px 15px;
}

    .cart-inline-footer .button {
        padding-left: 10px;
        padding-right: 10px;
        width: calc(50% - 5px);
    }

        .cart-inline-footer .button + .button {
            margin-top: 0;
            margin-left: 10px;
        }

.cart-inline-title {
    letter-spacing: .025em;
}

.cart-inline-subtitle {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
}

* + .cart-inline-subtitle {
    margin-top: 5px;
}

@media (min-width: 768px) {
    .cart-inline-header,
    .cart-inline-main,
    .cart-inline-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cart-inline-header {
        padding-top: 25px;
    }

    .cart-inline-main {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .cart-inline-footer {
        padding-top: 25px;
        padding-bottom: 30px;
    }
}

.product {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 3px 10px 0 rgba(1, 3, 4, 0);
    transition: .3s ease-out all;
}

.product-header {
    position: relative;
    min-height: 345px;
    background-image: linear-gradient(to bottom, #eef1f4 0%, #d5deeb 100%);
}

    .product-header .badge {
        position: absolute;
        top: 33px;
        left: 21px;
    }

.product-figure {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-out all;
}

    .product-figure img {
        will-change: transfrom;
        transition: .3s ease-out all;
    }

.product-buttons {
    position: absolute;
    right: 13px;
    bottom: 7px;
    transition: .3s ease-out all;
}

.product-button {
    display: block;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    color: #151515;
    background-color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

a.product-button:hover {
    color: #fff;
    background-color: #35ad79;
}

.product-share {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 23px 5px;
    border-radius: 3px;
    transform-origin: 0 0;
    cursor: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out opacity;
    transition-delay: .3s;
}

    .product-share:before {
        content: '';
        position: absolute;
        top: 0;
        height: 65px;
        left: 0;
        right: 0;
        background-color: #fff;
        transition: .3s ease-out all;
    }

.product-button-share:hover:before {
    opacity: 0;
    transform: scale(0);
}

.product-button-share:hover .product-share {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

    .product-button-share:hover .product-share:before {
        height: 100%;
    }

.product-button-share:hover .product-share-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: .2s ease-out all;
}

    .product-button-share:hover .product-share-item:nth-child(1) {
        transition-delay: .1s;
    }

    .product-button-share:hover .product-share-item:nth-child(2) {
        transition-delay: .133s;
    }

    .product-button-share:hover .product-share-item:nth-child(3) {
        transition-delay: .166s;
    }

    .product-button-share:hover .product-share-item:nth-child(4) {
        transition-delay: .199s;
    }

    .product-button-share:hover .product-share-item:nth-child(5) {
        transition-delay: .211s;
    }

    .product-button-share:hover .product-share-item:nth-child(6) {
        transition-delay: .244s;
    }

.product:hover .product-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product:hover .product-button {
    opacity: 1;
}

.product-share-item {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: #9b9b9b;
    transform: translateY(-5px);
    transition: .1s ease-out all;
}

    .product-share-item:nth-child(6) {
        transition: 0s ease-out all;
        transition-delay: .0s;
    }

    .product-share-item:nth-child(5) {
        transition: 0s ease-out all;
        transition-delay: .05s;
    }

    .product-share-item:nth-child(4) {
        transition-delay: .07s;
    }

    .product-share-item:nth-child(3) {
        transition-delay: .08s;
    }

    .product-share-item:nth-child(2) {
        transition-delay: .09s;
    }

    .product-share-item:nth-child(1) {
        transition-delay: .1s;
    }

    .product-share-item .icon {
        font-size: 16px;
        transition: .3s ease-out all;
    }

        .product-share-item .icon.fa-google-plus {
            font-size: 14px;
        }

        .product-share-item .icon, .product-share-item .icon:focus, .product-share-item .icon:active {
            color: #151515;
        }

            .product-share-item .icon:hover {
                color: #35ad79;
            }

.product-button-share::before {
    display: inline-block;
    opacity: 1;
    transform: scale(1);
    transition: .5s ease-out all;
}

.product-content {
    padding: 25px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-top: 0;
}

.product-price {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
}

    .product-price .product-price-new {
        font-weight: 400;
        color: #3f90dc;
    }

    .product-price * + * {
        margin-left: 7px;
    }

.product-price-old {
    text-decoration: line-through;
    color: #9b9b9b;
}

.product-rating {
    line-height: 1;
}

    .product-rating > li {
        display: inline-block;
        margin: 0 -2px;
        font-size: 19px;
        color: #ffcc00;
    }

.product:hover {
    box-shadow: 0 3px 10px 0 rgba(1, 3, 4, 0.35);
}

    .product:hover .product-figure img {
        transform: scale(1.05);
    }

* + .product {
    margin-top: 30px;
}

* + .product-button {
    margin-top: 10px;
}

* + .product-rating {
    margin-top: 1px;
}

* + .product-price {
    margin-top: 9px;
}

@media (min-width: 1200px) {
    .desktop .product-button {
        opacity: 0;
        transition: .3s ease-out all;
    }

    .desktop .product-buttons {
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
    }

    .desktop .product-share-item {
        opacity: 0;
        visibility: hidden;
    }

    .desktop * + .product-button {
        margin-top: -5px;
    }

    .desktop .product:hover * + .product-button {
        margin-top: 10px;
    }
}

.product-sm {
    max-width: 272px;
}

    .product-sm .product-header {
        min-height: 251px;
    }

        .product-sm .product-header .badge {
            top: 21px;
            left: 16px;
        }

    .product-sm .product-content {
        padding: 20px 10px;
    }

    .product-sm .product-title,
    .product-sm .product-price-new,
    .product-sm .product-price-old {
        font-size: 14px;
    }

    .product-sm * + .product-price {
        margin-top: 1px;
    }

    .product-sm .product-button {
        width: 53px;
        height: 53px;
        line-height: 53px;
    }

    .product-sm .product-share {
        padding: 16px 5px;
    }

.product-list {
    border: 1px solid #e1e1e1;
    background-color: #fff;
}

    .product-list .product-list-title {
        font-weight: 400;
    }

    .product-list .badge {
        position: absolute;
        top: 27px;
        left: 19px;
    }

.product-list-aside {
    position: relative;
    width: 100%;
    min-height: 330px;
    background-image: linear-gradient(to bottom, #eef1f4 0%, #d5deeb 100%);
}

    .product-list-aside img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.product-list-main {
    padding: 25px 15px;
}

.product-list-info {
    margin: 0 -4px;
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #9b9b9b;
    text-transform: uppercase;
}

    .product-list-info > li {
        display: inline-block;
        vertical-align: middle;
        padding: 0 4px;
        line-height: 1;
    }

.product-list-rating {
    font-size: 19px;
    color: #ffcc00;
}

    .product-list-rating > li {
        display: inline-block;
        margin: 0 -4px;
    }

.product-list-price {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
}

    .product-list-price > li {
        display: inline-block;
        vertical-align: baseline;
    }

    .product-list-price .product-list-price-new {
        font-family: inherit;
        font-weight: 400;
        color: #3f82c0;
    }

.product-list-price-old {
    text-decoration: line-through;
}

.product-list-buttons {
    margin: 0 -4px;
}

    .product-list-buttons > li {
        display: inline-block;
        vertical-align: middle;
        padding: 5px 4px;
    }

@media (min-width: 1200px) and (max-width: 1599.98px) {
    .product-list-buttons .button {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.product-list-share {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    min-height: 50px;
    overflow: hidden;
}

.product-list-share-btn {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 19px;
    line-height: 50px;
    text-align: center;
    opacity: 1;
    border-radius: 3px;
    cursor: pointer;
    transform: translateX(0);
    transition: .3s ease-out transform, .3s ease-out opacity;
}

    .product-list-share-btn, .product-list-share-btn:focus, .product-list-share-btn:active {
        color: #151515;
        background-color: #f1e557;
    }

.product-list-share ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    margin-left: 50px;
    text-align: left;
    color: #151515;
    background-color: #fff;
    border-radius: 3px;
    opacity: 0;
    transition: .3s ease-out all;
}

    .product-list-share ul li {
        display: inline-block;
        padding: 0 8px;
        font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        line-height: 1;
        font-weight: 500;
        text-transform: uppercase;
        color: #9b9b9b;
        opacity: 0;
        transform: translateX(15px) scale(0.5);
        transition: .3s ease-out transform, .3s ease-out opacity;
    }

.product-list-share a.icon, .product-list-share a.icon:focus, .product-list-share a.icon:active {
    color: #151515;
}

    .product-list-share a.icon:hover {
        color: #35ad79;
    }

.product-list-share.focus .product-list-share-btn {
    opacity: 0;
    transform: translateX(-50%);
}

.product-list-share.focus ul {
    margin-left: 0;
    margin-right: 50px;
    opacity: 1;
}

    .product-list-share.focus ul li {
        opacity: 1;
        transform: translateX(0) scale(1);
        transition-delay: .1s;
    }

        .product-list-share.focus ul li:nth-child(2) {
            transition-delay: .2s;
        }

        .product-list-share.focus ul li:nth-child(3) {
            transition-delay: .3s;
        }

        .product-list-share.focus ul li:nth-child(4) {
            transition-delay: .4s;
        }

        .product-list-share.focus ul li:nth-child(5) {
            transition-delay: .5s;
        }

        .product-list-share.focus ul li:nth-child(6) {
            transition-delay: .6s;
        }

        .product-list-share.focus ul li:nth-child(7) {
            transition-delay: .7s;
        }

        .product-list-share.focus ul li:nth-child(8) {
            transition-delay: .8s;
        }

        .product-list-share.focus ul li:nth-child(9) {
            transition-delay: .9s;
        }

* + .product-list {
    margin-top: 30px;
}

* + .product-list-info,
* + .product-list-price,
* + .product-list-text,
* + .product-list-buttons {
    margin-top: 5px;
}

@media (min-width: 576px) {
    .product-list-main {
        padding: 30px;
    }
}

@media (min-width: 768px) {
    .product-list {
        display: flex;
    }

    .product-list-aside {
        max-width: 370px;
        min-height: 344px;
    }

    .product-list-main {
        align-self: center;
    }

    * + .product-list-info {
        margin-top: 10px;
    }

    * + .product-list-price {
        margin-top: 10px;
    }

    * + .product-list-text {
        margin-top: 10px;
    }

    * + .product-list-buttons {
        margin-top: 10px;
    }
}

@media (min-width: 1200px) {
    .product-list {
        max-width: 870px;
    }
}

.product-single {
    background-color: #fff;
    border: 1px solid #e1e1e1;
}

    .product-single .product-single-title,
    .product-single .product-single-price-new {
        font-weight: 400;
    }

    .product-single .product-single-title {
        text-transform: uppercase;
        color: #151515;
    }

    .product-single .product-single-price-new {
        color: #35ad79;
    }

    .product-single .input-refilter {
        width: 52px;
        height: 38px;
        line-height: 38px;
    }

    .product-single .owl-carousel {
        position: static;
    }

        .product-single .owl-carousel .owl-stage {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .product-single .owl-carousel .owl-item {
            width: 100% !important;
        }

    .product-single .owl-dots {
        position: absolute;
        right: 0;
        bottom: 10px;
        left: 0;
    }

    .product-single .product-list-buttons .button,
    .product-single .product-list-buttons .product-list-share,
    .product-single .product-list-buttons .product-list-share ul,
    .product-single .product-list-buttons .product-list-share-btn {
        min-height: 59px;
    }

    .product-single .product-list-buttons .product-list-share-btn {
        width: 59px;
        line-height: 59px;
    }

.product-single-figure {
    position: relative;
    padding: 90px 15px 80px;
    background-image: linear-gradient(to bottom, #eef1f4 0%, #d5deeb 100%);
}

.product-single-main {
    padding: 30px 15px;
}

.product-single-price-old {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    text-decoration: line-through;
    color: #9b9b9b;
}

.product-single-rating {
    font-size: 19px;
    color: #ffcc00;
}

    .product-single-rating > li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 -2px;
    }

.product-single-text + * {
    margin-top: 22px;
    padding-top: 12px;
    border-top: 1px solid #e1e1e1;
}

.product-single-info > li {
    margin-top: 7px;
}

.product-radio-title {
    display: inline-block;
    min-width: 85px;
    padding-right: 10px;
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #151515;
    text-transform: uppercase;
}

.product-single * + .product-list-buttons {
    margin-top: 23px;
}

* + .product-single-meta,
* + .product-single-text {
    margin-top: 8px;
}

@media (min-width: 992px) {
    .product-single {
        display: flex;
    }

        .product-single .owl-dots {
            bottom: 60px;
        }

    .product-single-figure {
        display: flex;
        flex-basis: 100%;
        flex-grow: 1;
        flex-shrink: 0;
        width: calc(47% - 15px);
        max-width: calc(47% - 15px);
        align-items: center;
        padding: 60px 30px;
    }

    .product-single-main {
        padding: 60px 30px;
    }
}

@media (min-width: 1200px) {
    .product-single-figure {
        width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

.product-single-additional.tabs-corporate .nav-link {
    color: #9b9b9b;
}

* + .product-single-additional,
* + .product-single-additional.tabs-corporate,
* + .product-single-additional.tabs-corporate.tabs-custom {
    margin-top: 35px;
}

@media (min-width: 992px) {
    * + .product-single-additional,
    * + .product-single-additional.tabs-corporate,
    * + .product-single-additional.tabs-corporate.tabs-custom {
        margin-top: 50px;
    }
}

.product-comment-title,
.product-comment-time,
.product-comment-rating {
    display: inline-block;
}

.product-comment-title {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18;
    font-weight: 500;
    text-transform: uppercase;
    color: #151515;
}

    .product-comment-title + .product-comment-time {
        margin-left: 8px;
        padding-left: 12px;
        border-left: 1px solid #d7d7d7;
    }

.product-comment-time {
    line-height: 1;
}

.product-comment-rating {
    display: block;
    font-size: 19px;
    line-height: 1;
    color: #ffcc00;
}

    .product-comment-rating > li {
        display: inline-block;
        margin: 0 -2px;
        line-height: inherit;
    }

* + .product-comment {
    margin-top: 23px;
}

* + .product-comment-main {
    margin-top: 10px;
}

* + .product-comment-main-footer {
    margin-top: 10px;
}

* + .product-comment-rating {
    margin-top: 6px;
}

@media (min-width: 576px) {
    .product-comment {
        display: flex;
    }

    .product-comment-aside {
        flex-shrink: 0;
        padding-right: 20px;
    }

    .product-comment-main {
        flex-grow: 1;
    }

    .product-comment-rating {
        float: right;
    }

    * + .product-comment-rating,
    * + .product-comment-main {
        margin-top: 0;
    }
}

.product-cart-name {
    display: flex;
    align-items: center;
    white-space: normal;
}

.product-cart-media {
    position: relative;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
    width: 70px;
    height: 80px;
    line-height: 80px;
    padding: 0 15px;
    text-align: center;
    background-image: linear-gradient(to bottom, #eef1f4 0%, #d5deeb 100%);
}

    .product-cart-media::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transform-origin: 50% 100%;
        transform: scale3d(1, 0.3, 1);
        transition: .4s;
        background-image: linear-gradient(to bottom, #eef1f4 0%, #bdcbdf 100%);
    }

    .product-cart-media:hover::after {
        opacity: 1;
        visibility: visible;
        transform: scale3d(1, 1, 1);
    }

    .product-cart-media img {
        position: relative;
        z-index: 2;
        display: inline-block;
    }

.product-cart-title {
    margin-top: 0;
    margin-left: 10px;
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #151515;
    min-width: 130px;
}

    .product-cart-title a {
        color: inherit;
    }

        .product-cart-title a:hover {
            color: #35ad79;
        }

.product-cart-color,
.product-cart-size,
.product-cart-price {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #151515;
}

.product-cart-color,
.product-cart-size {
    display: block;
    height: 40px;
    font-weight: 500;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 3px;
}

.product-cart-color {
    width: 40px;
}

.product-cart-color-red {
    background-color: #fb7979;
}

.product-cart-color-dark {
    background-color: #ececec;
}

.product-cart-size {
    width: 42px;
    font-size: 16px;
    border-radius: 3px;
    border: 1px solid #e1e1e1;
}

.product-cart-price {
    font-size: 16px;
}

.product-cart-delete {
    font-size: 24px;
    color: #fb7979;
    cursor: pointer;
    transition: .3s ease-out all;
}

    .product-cart-delete:hover {
        color: #35ad79;
    }

.table-product {
    border: 1px solid #e1e1e1;
}

    .table-product th,
    .table-product td {
        white-space: nowrap;
    }

    .table-product th {
        padding: 17px 11px;
        font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        border-bottom: 1px solid #e1e1e1;
    }

        .table-product th:first-child {
            width: 54%;
        }

    .table-product td {
        padding: 17px 11px;
        text-align: left;
    }

    .table-product tr + tr td {
        padding-top: 0;
    }

.product-cart-footer {
    text-align: right;
}

    .product-cart-footer .button {
        margin-top: 0;
    }

.product-cart-total {
    display: inline-block;
    vertical-align: middle;
    padding: 0 35px;
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #9b9b9b;
    text-transform: uppercase;
}

    .product-cart-total > span {
        display: inline-block;
        vertical-align: middle;
    }

.product-cart-total-price {
    margin-left: 30px;
    font-size: 48px;
    font-weight: 300;
    color: #151515;
    text-transform: none;
}

    .product-cart-total-price .sup {
        font-size: 18px;
        vertical-align: super;
    }

* + .product-cart-footer {
    margin-top: 20px;
}

@media (min-width: 992px) {
    .table-product th {
        padding: 27px 16px;
    }

    .table-product td {
        padding: 27px 16px;
    }
}

@media (min-width: 1200px) {
    .product-cart-media {
        width: 128px;
        height: 118px;
        padding: 0;
        line-height: 118px;
    }

    .product-cart-title {
        margin-left: 20px;
        font-size: 18px;
    }

    .product-cart-color,
    .product-cart-size {
        height: 38px;
        line-height: 38px;
    }

    .product-cart-color {
        width: 38px;
    }

    .product-cart-size {
        width: 52px;
    }

    .product-cart-price {
        font-size: 18px;
    }

    .table-product th {
        padding: 27px 32px;
    }

    .table-product td {
        padding: 27px 32px;
    }

    * + .product-cart-footer {
        margin-top: 30px;
    }
}

.radio-panel .radio-inline + .radio-panel-content {
    height: 0;
    max-height: 0;
    opacity: 0;
}

.radio-panel .radio-inline.active + .radio-panel-content {
    opacity: 1;
    height: 100%;
    max-height: 100%;
    transition: .3s ease-out opacity;
}

* + .radio-panel-content {
    margin-top: 8px;
}
