/* embedded cart */

.cd-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.6s;
    -moz-transition: visibility 0s 0.6s;
    transition: visibility 0s 0.6s;
    z-index: 5;
}

.cd-panel::after {
    /* overlay layer */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    -webkit-transition: background 0.3s 0.3s;
    -moz-transition: background 0.3s 0.3s;
    transition: background 0.3s 0.3s;
}

.cd-panel.is-visible {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
}

.cd-panel.is-visible::after {
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: background 0.3s 0s;
    -moz-transition: background 0.3s 0s;
    transition: background 0.3s 0s;
    content: "";
}
.cd-panel.is-visible .cd-panel-close::after,
.cd-panel.is-visible .cd-panel-close::before {
    content: "";
}

.cd-panel.is-visible .cd-panel-close::before {
    -webkit-animation: cd-close-1 0.6s 0.3s;
    -moz-animation: cd-close-1 0.6s 0.3s;
    animation: cd-close-1 0.6s 0.3s;
}

.cd-panel.is-visible .cd-panel-close::after {
    -webkit-animation: cd-close-2 0.6s 0.3s;
    -moz-animation: cd-close-2 0.6s 0.3s;
    animation: cd-close-2 0.6s 0.3s;
}

@-webkit-keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@-moz-keyframes cd-close-1 {
    0%, 50% {
        -moz-transform: rotate(0);
    }
    100% {
        -moz-transform: rotate(45deg);
    }
}

@keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@-webkit-keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-45deg);
    }
}

@-moz-keyframes cd-close-2 {
    0%, 50% {
        -moz-transform: rotate(0);
    }
    100% {
        -moz-transform: rotate(-45deg);
    }
}

@keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

.cd-panel-header {
    position: fixed;
    width: 90%;
    height: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.96);
    z-index: 2;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    -webkit-transition: top 0.3s 0s;
    -moz-transition: top 0.3s 0s;
    transition: top 0.3s 0s;
}

.cd-panel-header h1 {
    font-weight: bold;
    color: #89ba2c;
    padding-left: 5%;
}

.from-right .cd-panel-header, .from-left .cd-panel-header {
    top: -50px;
}

.from-right .cd-panel-header {
    right: 0;
}

.from-left .cd-panel-header {
    left: 0;
}

.is-visible .cd-panel-header {
    top: 0;
    -webkit-transition: top 0.3s 0.3s;
    -moz-transition: top 0.3s 0.3s;
    transition: top 0.3s 0.3s;
}

@media only screen and (min-width: 768px) {
    .cd-panel-header {
        width: 70%;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-panel-header {
        width: 50%;
    }
}

.cd-panel-close {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    /* image replacement */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.cd-panel-close::before, .cd-panel-close::after {
    /* close icon created in CSS */
    content: "";
    position: absolute;
    top: 22px;
    left: 20px;
    height: 3px;
    width: 20px;
    background-color: #424f5c;
    /* this fixes a bug where pseudo elements are slighty off position */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.cd-panel-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-panel-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.no-touch .cd-panel-close:hover {
    background-color: #424f5c;
}

.no-touch .cd-panel-close:hover::before, .no-touch .cd-panel-close:hover::after {
    background-color: #ffffff;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.no-touch .cd-panel-close:hover::before {
    -webkit-transform: rotate(220deg);
    -moz-transform: rotate(220deg);
    -ms-transform: rotate(220deg);
    -o-transform: rotate(220deg);
    transform: rotate(220deg);
}

.no-touch .cd-panel-close:hover::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.cd-panel-container {
    position: fixed;
    width: 90%;
    height: 100%;
    top: 0;
    background: #FFFFFF;
    z-index: 1;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.from-right .cd-panel-container {
    right: 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    overflow: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.from-left .cd-panel-container {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.is-visible .cd-panel-container {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}

@media only screen and (min-width: 768px) {
    .cd-panel-container {
        width: 573px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-panel-container {
        width: 573px;
    }
}

.cd-panel-content {
    position: absolute;
    top: 110px;
    bottom: 140px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    overflow: auto;
    /* smooth scrolling on touch devices */
    -webkit-overflow-scrolling: touch;
}

.cd-panel-content p {
    font-size: 14px;
    font-size: 0.875rem;
    color: #424f5c;
    line-height: 1.4;
    margin: 2em 0;
}

.cd-panel-content p:first-of-type {
    margin-top: 0;
}

.cd-panel-content .accumolo {
    background: rgba(247,156,37,0.80);
    padding: 15px 15px 15px 60px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #FFFFFF;
    letter-spacing: 1px;
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 30px auto;
}

@media only screen and (min-width: 768px) {
    .cd-panel-content p {
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media only screen and (max-width: 575px) {
    .cd-panel-content {
        top: 70px;
    }
}

/* Custom Style */

.cd-panel-content h3 {
    font-size: 20px;
    color: #000000;
    letter-spacing: 0.29px;
    font-weight: bold;
}

.cd-panel-content div.description {
    line-height: 1.42;
}

.cd-panel-content span.name {
    font-size: 13px;
    color: #000000;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.cd-panel-content span.category {
    color: var(--theme-color);
    font-size: 12px;
    font-weight: bold;
}

.cd-panel-content span.ingredients,
.cd-panel-content span.mode,
.product-info span.ingredients,
.product-info span.mode,
.col-description span.ingredients,
.col-description span.mode {
    font-size: 12px;
    color: #666666;
    line-height: 16px;
}

.cd-panel-content span.mode, 
.product-info span.mode,
.col-description span.mode {
    font-weight: bold;
}

.embed-cart .header {
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 11px;
    letter-spacing: 1px;
    padding-bottom: 8px;
    padding-top: 20px; 
}

.embed-cart .item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.embed-cart .item .picture img {
    width: 60px;
    height: 60px;
    background: #d7d8dd;
    object-fit: contain;
}

.embed-cart .item .name {
    font-weight: bold;
}

.embed-cart .item .weight,
.embed-cart .item .ratio {
    color: #777;
}

.embed-cart button[name^=delete] {
    border: none;
    background: none;
    font-size: 26px;
    color: #999;
    font-weight: 300;
    position: relative;
    top: 5px;
}

.embed-cart input[type=number] {
    width: 100%;
    border: 0px solid #eee;
    color: var(--theme-color);
    text-align: center;
    border-radius: 15px;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

@media all and (max-width: 575px){
    .embed-cart button[name^=delete] {
        position: static;
        line-height: 0.9;
    }
}

.cd-panel-footer {
    width: 100%;
    background-color: var(--theme-color);
    /* height: 140px; */
    position: absolute;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    bottom: 0;
}

.cd-panel-footer .shipping-cost {
    line-height: 23px;
    background-color: rgba(255,255,255,0.2);
    color: #FFF;
    font-weight: 900;
    font-size: 15px;
    padding-top: 10px;
}

.cd-panel-footer .shipping-cost p {
    padding-left: 15px;
    padding-right: 15px;
}

.cd-panel-footer .shipping-cost p .small-text {
    font-weight: 400;
}

.cd-panel-footer .wrapper-payment {
    /* height: 140px;
    margin-bottom: 20px; */
    padding: 25px 15px;
    color: #FFF;
    font-weight: 500;
}

.cd-panel-footer .wrapper-payment .btn-secondary:hover,
.cd-panel-footer .wrapper-payment .btn-secondary:focus {
    border-color: #FFFFFF;
}

.cd-panel-footer .total span {
    font-weight: 900;
}

.cd-panel-footer .total img {
    display: inline-block;
    height: 36px;
    margin: 10px 10px 10px 0;
    border: 1px solid #d88922;
    border-radius: 3px;
}

.cd-panel-footer .total span {
    font-weight: 900;
}

#coupon_row{
    padding: 0px 0 0px 0;
}

#coupon_row h2{
    
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000000;
    letter-spacing: 0;
    font-weight: normal;
}
#coupon_row .padding_top{
    margin-top: 10px !important;
}
#coupon_section_form input{
    display: inline-block;
    padding: 10px 15px;
    margin: 0;
    border: 1px solid var(--theme-color);
    border-radius: 100px;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.17px;
    line-height: 1;
    transition: all .3s;
    color: var(--theme-color);
    background-color: #FFFFFF;
}

#coupon_section_button input{
    margin-top: 0;
}

#coupon_section_button_mobile input{
    margin-top: 0;
    margin-bottom: 20px;
}


#coupon_row p, #coupon_row_mobile p{
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    margin-top: 0px;
    font-size: 16px;
}
#coupon_row_mobile p{
   margin-bottom: 10px; 
}
#coupon_section_title_mobile p{
    padding-top: 10px;
    border-top:1px solid #eee;
 }
#coupon_section_form a{
    color: #000;
    text-decoration: none;
}
#coupon_section_form .button_like:hover a{
    color: #fff !important;
}
#coupon_section_form .button_like{
    border: 1px solid var(--theme-color);
    border-radius: 100px;
    padding: 10px 15px;
    font-size: 14px;
}
#coupon_section_form .button_like:hover{
    background-color: var(--theme-color);
    color: #fff;
}
