.txt-total-stock{
    display: none;
}
ul#category-product-list,ul#category-product-list-lv2{
    margin: 0;
    list-style: none;
    padding-left: 20px;
}
ul#category-product-list{
    margin-left: 10px;
}
ul#category-product-list-lv2{
    display: none;
}
ul#category-product-list-lv2.active{
    display: block;
}
#category-product-list i.fa{
    float: right;
    padding-right: 15px;
}
.slide_home{
    display: flex;
}
.tab_d.robot a.lib,#tab3{
    display: none;
}
.modal-dialog {
    width: 1000px;
    margin: 5% auto;
}
.slide_home .col1{
    padding-right: 5px;
}
.slide_home .col2{
    padding-left: 5px;
}
.pay_methos .pay-item{
    min-height: 170px;
}
.pay-title{
    padding: 10px;
}
.banner-img-home .owl-nav{
    display: none;
}
#footer-main .flow-foo{
    display: none;
}
.cate-email{
    display: none;
}

.fixed-contact-bottom {
    position: fixed;
    top: auto;
    bottom: 105px;
    right: 18px;
    margin: 0;
    z-index: 1000;
    cursor: pointer;
}

.box-contact .svg {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ffffff;
    cursor: pointer;
    background: #b99d75;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.box-contact .svg img {
    filter: invert(99%) sepia(11%) saturate(398%) hue-rotate(241deg) brightness(119%) contrast(100%);
    width: 28px;
    /*height: 100%;*/
    height: 28px;
    transition: opacity 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
    animation: iconSkew 1s infinite ease-out;
}

.box-contact:before, .box-contact:after {
    position: absolute;
    content: '';
    height: 48px;
    width: 48px;
    left: 0;
    top: 0;
    background: #b99d75;
    border-radius: 50%;
}

.box-contact:before {
    animation: euiBeaconPulseSmall 2s infinite ease-out;
}

.box-contact:after {
    animation: euiBeaconPulseSmall 2s infinite ease-out 0.4s;
}

.box-contact .close {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    height: 100%;
    color: #fff;
    float: unset;
}

.box-contact.open .svg-contact {
    display: none;
}

.box-contact.open .close {
    display: flex;
    color: #000;
}

.addThis_listing .addThis_item a img {
    width: 32px;
}

.addThis_listing {
    position: fixed;
    overflow: hidden;
    bottom: 145px;
    border-radius: 12px;
    right: 30px;
    max-width: 300px;
    background-color: #f5f6fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    -webkit-transform-origin: 100% bottom;
    padding: 0;
    margin: 0;
    transform-origin: 100% bottom;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.addThis_listing.active {
    -ms-transition-delay: 0.1s;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.1s;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.addThis_listing li:not(:last-child) {
    border-bottom: 1px solid #ecedf1;
    box-shadow: 0 1px 0 0 #fff;
}

.addThis_listing li a {
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.addThis_listing .addThis_item .tooltip-text {
    width: calc(100% - 32px);
    padding-left: 15px;
    font-size: 13px;
}

.addThis_listing .addThis_item a:hover {
    background: #ffffff;
}

.addThis_listing .addThis_item a:hover span {
    color: #b99d75;
}

@keyframes euiBeaconPulseSmall {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes iconSkew {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
}