:root {
  _global-color: #286de1;
  _global-color-border: #b9cff5;
  _global-background-white: var(--white);
 /*--primary-second: #ccddee;*/
/* --primary: #14b7e2;
 --primary-bold-first: #1795cb;
 --primary-bold-second: #1796cc;
 --primary-bold-three: #1587b8;
 --primary-transparent: #1795cbe6;
 --primary-transparent-opacity: #1795cb59;
 --primary-background-popup: #1795cbe6;
 --primary-background-gray: #f1f1f1;
 --border-yellow: #F9D22F;*/
}
/*body{
	font-family: 'Nunito Sans', sans-serif !important;
	background:var(--white);position:relative;overflow-x:hidden!important;
	line-height: 20px !important;
	font-size:14px;
	text-align: justify;
}*/

/*svg {
    width: 20px;
    height: 20px;
}*/

img {
    height: unset;
    max-width: 100%;
    width: unset;
}

svg.svg-toTop {
    height: 42px;
    color: #fff;
}

.g-recaptcha {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goog-te-banner-frame {
    display: none;
}

.slick-slide img {
    display: block;
    max-width: 100%;
    width: unset;
}

::-webkit-scrollbar {
	width: 10px
}

::-webkit-scrollbar-track {
	background-color: #14303c
}

::-webkit-scrollbar-thumb {
	background-color: var(--primary-normal);
	border-radius: 2px
}

::-webkit-scrollbar-corner {
	background-color: #00000042;
	border-radius: 10px
}

@media screen and (max-width: 576px)
{
    .hidden-sm{
        display: none;
    }
}

.grid {
    display: grid;
}

.grid-30 {
    grid-gap: 30px;
}

.grid:before {
    display: none !important;
}

.grid-item{
    max-width: 100%;
    width: 100% !important;
}

@media screen and (min-width: 1025px)
{
    .grid-1_lg {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-2_lg {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3_lg {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4_lg {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media screen and (min-width: 768px) and (max-width: 1024px)
{

    .grid-1_md {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-2_md {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3_md {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

@media  screen and (max-width: 767px)
{
    .grid-1_sm {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-2_sm {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3_sm {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ======= Preloader style ======= */
#loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0000008f;
    z-index: 99999999;
}
#loader .loading,
#loader .loading > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#loader .loading {
    display: block;
    font-size: 0;
    color: var(--primary);
    height: 40px;
}
#loader .loading > div {
    display: inline-block;
    float: none;
    border: 1px solid;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-color: transparent;
    border-radius: 100%;
    -webkit-animation: loading .75s linear infinite;
    -moz-animation: loading .75s linear infinite;
    -o-animation: loading .75s linear infinite;
    animation: loading .75s linear infinite;
}
@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*End Loading*/

/*PAge Title*/

.breadcrumb-area {
    background: var(--primary-bold-first);
    position: relative;
    height: 190px;
}

.page-title {
    color: var(--white);
    /*padding-top: 150px;*/
    padding-top: calc(250px - 137px);
    padding-bottom: 10px;
    font-weight: 700;
    text-align: center;
    /*font-size: 26px!important;*/
    line-height: 30px
}

@media screend and (min-width: 768px) and (max-width: 1200px)
{
    .page-title {
        padding-top: calc(310px - 200px);
    }
}

/*End PAGE Title*/

/*Sort OF Page*/

.breadcrumb-area .breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

/*.breadcrumb-area .breadcrumb li:not(:last-child):after {
    content: '/';
    right: 0;
    top: 1px;
    margin-left: 10px;
}*/

.breadcrumb
{
    background-color: unset;
    margin-bottom: 0;
    padding: 0;
    position: relative;
}

.breadcrumb svg.home-svg{
    margin-right: 5px;
}

.breadcrumb li
{
    margin-bottom: 0;
    padding: 0 10px;
    position: relative;
}

.breadcrumb li:nth-child(1) {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.breadcrumb li:nth-child(1):after {
    position: absolute;
    content: '/';
    right: 0;
    /*left: 10px;*/
    top: 0;
    color: var(--primary);
}

.breadcrumb li.current {
    /*margin-left: 10px;*/
}

li.option.selected.focus {
    display: none !important;
}

form#formPaginate {
    box-shadow: 1px 1px 5px #ccc;
}

form#formPaginate .shop-toolbar {
    margin-bottom: 0;
}

form#formPaginate .breadcrumb li.current {
    margin-left: 0;
}

.breadcrumb li.current:after{display: none;}

.breadcrumb-area .breadcrumb li {
    color: #000;
    padding-right: 10px;
    padding-left: 5px;
    position: relative;
}
.breadcrumb-area .breadcrumb li a{
    color: var(--white);
}
.breadcrumb-area .breadcrumb li.current {
    color: var(--primary-background-gray);
}

.breadcrumb.page-title li {
    font-size: 20px;
    padding: 0 15px 0 10px;
}

.breadcrumb-area .breadcrumb li:after {
    position: absolute;
    content: '/';
    right: 0;
    top: 0;
    color: #000;
}

.breadcrumb.page-title li.current {
    margin: 0;
}

.breadcrumb.page-title li.current:after {display: none;}

.shop-toolbar {
    padding: 7px 12px;
    margin-bottom: 3rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: var(--primary-background-gray);
}
.btn-search-breadcrumb {
    padding: 5px 10px;
    background-color: var(--primary);
    border-radius: 5px;
    margin-left: 5px;
    color: var(--white);
}

.shop-toolbar span, .shop-toolbar label {
    color: #000;
}
.shop-toolbar .product-showing .select-label, .shop-toolbar .product-short .select-label {
    margin-bottom: 0;
    /*margin-right: 1rem;*/
}
.shop-toolbar .product-showing, .shop-toolbar .product-short {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    z-index: 6;
}

.shop-toolbar .product-short {
    z-index: 5;
}

.product-short .text-select {
    width: 95px;
}

.product-view-mode a {
    display: inline-block;
    width: 28px;
    height: 18px;
    margin-right: 10px;
    text-indent: -999999px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: auto;
    background-position: center;
}
.product-view-mode {
    border-right: 1px solid #2d2d2d;
}
.product-view-mode a.grid-2 {
    background-image: url(../image/icon-grid/bkg_grid2.png);
    display: inline-block;
}
.product-view-mode a.grid-3 {
    background-image: url(../image/icon-grid/bkg_grid3.png);
    display: inline-block;
}
.product-view-mode a.grid-4 {
    background-image: url(../image/icon-grid/bkg_grid4.png);
    display: inline-block;
}
.product-view-mode a.grid-5 {
    background-image: url(../image/icon-grid/bkg_grid5.png);
    display: inline-block;
}

/*.product-view-mode a.grid-4:hover, .product-view-mode a.grid-4.active {
    background-image: url(../image/icon-grid/bkg_grid4_hover.png);
}

.product-view-mode a.grid-4:hover, .product-view-mode a.grid-4.active {
    background-image: url(../image/icon-grid/bkg_grid4_hover.png);
}

.product-view-mode a.grid-4:hover, .product-view-mode a.grid-4.active {
    background-image: url(../image/icon-grid/bkg_grid4_hover.png);
}

.product-view-mode a.grid-5:hover, .product-view-mode a.grid-5.active {
    background-image: url(../image/icon-grid/bkg_grid5_hover.png);
}*/

span.current {
    color: var(--white);
}

/*a:not([href]):not([tabindex]):hover {
    color: #fdb866 !important;
}*/


    
.text-select{
    margin-right: 5px;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: var(--white);
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    height: unset;
    line-height: 40px;
    outline: 0;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left!important;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:after {
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
}

.sort-page {
    position: relative;
    z-index: 5;
}

.sort-page .product-showing {
    /*width: 150px;*/
    /*float: right;*/
    /*margin-right: 20px;*/
}
.sort-page .product-showing.sort-status {
    margin-right: 0;
}

.sort-page .product-showing .nice-select {
    width: 100% !important;
    white-space: normal;
}

.sort-page .product-showing.sort-price .nice-select ul.list {
    width: 200px;
}

.sort-page .product-showing.sort-number .nice-select ul.list, .sort-page .product-showing.sort-status .nice-select ul.list {
    width: 150px;
}

.shop-toolbar .product-showing .nice-select {
    width: 7.6rem;
}
.shop-toolbar .product-short .nice-select, .shop-toolbar .product-showing .nice-select .list {
    width: 58%;
}
.shop-toolbar .product-showing .nice-select, .shop-toolbar .product-short .nice-select {
    border-radius: 0;
    border: none;
    padding: 5px 25px 5px 15px;
    line-height: 25px;
    background: var(--primary);
    color: var(--white) !important;
    z-index: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.nice-select .option.focus, .nice-select .option.selected.focus, .nice-select .option:hover {
    background-color: #f6faff;
}
.nice-select .option:hover {
    border-bottom: 1px solid #286de15e;
}
.shop-toolbar .product-showing .nice-select .nice-select-search-box, .shop-toolbar .product-short .nice-select .nice-select-search-box {
    display: none;
}
.nice-select.open .nice-select-search-box {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}
.shop-toolbar .product-showing .nice-select .list, .shop-toolbar .product-short .nice-select .list {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    left: auto;
    right: 0;
    padding-top: 0;
    /*background: #333333;*/
    color: #000;
    /*width: 100%;*/
}
.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: 0;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.pagination-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    padding: 10px;
    /*border: 1px solid #4c71eb;*/
}

.pagination-wrap .page-ammount {
    margin-bottom: 0;
    margin-right: 20px;
    display: none;
}
.pagination {
    background: transparent;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
}

.pagination li a {
    padding: 4px 13px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid var(--primary);
    color:  var(--primary);
}

.pagination li a.current {
    background-color: #fdb866;
}
.pagination li:not(:last-child) {
    margin-right: 5px;
}
.pagination li a:hover, .pagination li a.current {
    color: var(--white) !important;
    background:  var(--primary);
}

#formPaginate .breadcrumb, #formPaginate .sort-page .product-showing, #formPaginate .search-price {
    /*float: left;*/
    /*margin: auto;*/
}

.right-breadrum {
    display: flex;
    justify-content: flex-end;
}
.right-breadrum > div {
    margin-left: 10px;
}

.nice-select.short-select.open {
    z-index: 3;
}

.nice-select.short-select.open .list {
    width: 100% !important;
    max-width: 100%;
}

@media screen and (min-width: 1000px)
{
    /*page SORT*/
    .breadcrumb-url, .breadcrumb-sort {
        max-width: 50%;
    }
    .nice-select {
        width: 58%;
    }
}

@media screen and (min-width: 990px)
{
        
    .breadcrumb-sort {
        max-width: 60%;
    }
    
    .breadcrumb-url {
        max-width: 40%;
    }
}

@media screen and (max-width: 1220px)
{
    /*page SORT*/
    .breadcrumb-sort{
        max-width: 100%;
        flex: unset;
    }
}

@media screen and (min-width: 1025px)
{
    #formPaginate .box-search-price input {
        width: 100px;
    }
}

@media screen and (max-width: 1024px)
{
    .right-breadrum {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        margin: auto;
        width: 100%;
    }
    
    .right-breadrum > div {
        margin-left: 0;
    }

    #formPaginate .breadcrumb {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 1000px)
{
    .breadcrumb-url {
        /*width: 39%;*/
    }
    
    .breadcrumb-sort {
        /*width: 61%;*/
    }
}
@media screen and (max-width: 990px)
{
    .breadcrumb-sort
    {
        /*width: 100%;*/
    }
}
@media screen and (max-width: 767px)
{
    
    /*page SORT*/

    .breadcrumb-area {
        display: grid;
        align-items: center;
    }
    
    .page-title {
        padding: 0;
    }
    
    .right-breadrum {
        display: block;
        width: 100%;
    }
    
    /*.shop-toolbar .product-showing, .shop-toolbar .product-short
    {
        width: calc(calc(100% - 29px) / 2);
        display: inline-block;
    }*/
    
    .product-showing {
        width: 32% !important;
        display: inline-block;
        float: left;
        margin: 5px 5px 0 0 !important;
    }
    
    .shop-toolbar .product-short
    {
        width: 50%;
    }
    
    .product-showing.sort-number {
        margin-right: 5px;
    }
    
    .product-showing.sort-number, .product-showing.sort-status {
        margin-top: 10px;
    }
    
    .breadcrumb-url {
        margin-bottom: 6px;
    }
    
    .product-short {
        margin-top: 10px;
    }
    
    .product-showing.sort-price {
        /*width: calc(100% - 270px);*/
        display: inline-block;
        float: left;
        margin-right: 5px;
        margin-top: 0;
    }
    
    #formPaginate .box-search-price input[name="price_to"] {
        margin-right: 5px;
    }
    
    .box-search-price {
        /*float: left;*/
        /*display: flex;*/
        width: unset;
    }
    /*End CSS PAge Sort*/
}

@media screen and (max-width: 567px)
{
    /*Sort*/
    .shop-toolbar .product-showing, .shop-toolbar .product-short, .text-select, .shop-toolbar .product-showing .nice-select, .shop-toolbar .product-short .nice-select, .breadcrumb-url, .product-short .text-select 
    {
        /*width: 100%;*/
    }
    
    .right-breadrum > div {
        margin: 0;
        width: 100% !important;
    }
    
    .box-search-price input{
        width: 100%;
    }
    
    .box-search-price button {
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 420px)
{
    /*Sort*/

    .box-search-price {
        display: block !important;
    }
    
    #formPaginate .box-search-price input {
        margin-left: 0 !important;
        margin-bottom: 3px;
        width: 100%;
    }
    
    .sort-page .product-showing {
        margin: 3px 0;
    }
}

/*End CSS SORT*/

/*CSS CUSTOM*/
/*set padding*/
.pt-100{
	padding-top: 100px;
}
.pb-100{
	padding-bottom: 100px;
}
/*end set padding*/

/*set margin*/
.m-1rem{
    margin: 1rem;
}
.mt-1rem{
    margin-top: 1rem;
}
.mb-1rem{
    margin-bottom: 1rem;
}
.ml-1rem{
    margin-left: 1rem;
}
.mr-1rem{
    margin-right: 1rem;
}

.m-2rem{
    margin: 2rem;
}
.mt-2rem{
    margin-top: 2rem;
}
.mb-2rem{
    margin-bottom: 2rem;
}
.ml-2rem{
    margin-left: 2rem;
}
.mr-2rem{
    margin-right: 2rem;
}
/*end set margin*/

a{
    /*color: var(--primary-yellow) !important;*/
    display: inline-block;
    max-width: 100%;
    text-decoration: none !important;
}

button{
    border: none;
}

button:focus {
    outline: unset;
}

img{
	max-width: 100%;
    width: unset;
}

img, svg {
    vertical-align: middle;
}

p{
	/*color: var(--primary);*/
    text-align: justify;
    line-height: 1.4;
}
.color-primary{
   color: var(--primary) !important; 
}
.color-primary-yellow{
   color: var(--primary-yellow) !important; 
}

.title-item{
    font-size: 20px;
}

ul{
    list-style: none;
}

.archive-page .container, .single-products-area .container, .cart-page .container, .search-section .container {
    max-width: 80%;
}

.text-white h2{
    color: var(--white) !important;
}

.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

.w-100{
    width: 100% !important;
}

.mb-20px{
    margin-bottom: 20px;
}

.border-none {
    border: none;
}

.two-text-line, .three-text-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.three-text-line {
    -webkit-line-clamp: 3;
}
.display-none{
    display: none !important;
}
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.align-center{
    align-items: center;
    justify-content: center;
}

.align-item-center {
    align-items: center;
}

.background-css{
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    background-attachment: fixed;
}

.background-over {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    opacity: 0.5;
}

.wrapper section {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
    position: relative !important;
    background-color: var(--white);
    overflow: hidden;
}

.wrapper section:last-child {
    /*padding-bottom: 0px !important;*/
}

.main-content-wrapper section:nth-child(2n) {
    background-color: var(--primary-background);
}

.wrapper section:not(.product-detail):nth-child(2n + 1){
    background-color: #f7f7f7;
}

.wrapper section:last-child:after, .col-item-section .section-commit {
    background: unset;
}

.main-content-wrapper section:not(.home-slider):not(.banner-section) {
    padding: 70px 0;
}

.main-content-wrapper section.home-slider + .counter-area{
    padding: 0;
}

.section-heading .desc-section{
    /*margin-bottom: 50px !important;*/
}

.section-heading .desc-section p{
    text-align: center;
}

/*Css BTN Active*/

.btn-active{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px !important;
}

a.btn-cta {
    /*border: 1px solid var(--white);*/
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    animation: fadeInUp 4s;
    border-radius: 5px;
    transition: 1s;
}

.btn-active:hover svg {
    color: var(--primary);
}

.btn-active:hover a {
    background: var(--primary-hover) !important;
    color: var(--white) !important;
    border: none;
    transition: 1s;
}

/*End CSS Btn Actvie*/

.section-title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    /*color: var(--primary-second);*/
}

.desc-section {
    max-width: 80%;
    margin: auto;
    margin-top: 50px;
}

.show-sm{
    display: none !important;;
}


@media screen and (max-width: 767px)
{
    .hide-sm{
        display: none !important;;
    }
    

    .show-sm{
        display: block !important;;
    }
    
    .archive-page .container, .single-products-area .container, .cart-page .container, .search-section .container {
        max-width: 100%;
    }
    
}
/*svg*/
svg.scroll-up, svg.cart-header-svg, svg.eye-svg, .social-svg svg {
    width: 25px;
    height: 25px;
}
svg.home-svg, svg.date-svg {
    margin-right: 5px;
}

svg.link-svg, svg.date-svg {
    width: 15px;
    height: 15px;
}

svg.down-svg {
    height: 10px;
    width: 10px;
    fill: currentColor;
    display: none;
}
@media screen and (max-width: 767px)
{
    svg.down-svg {
        display: block;
    }
}

svg.down-svg:hover{
    cursor: pointer;
}

svg.down-svg.open {
    transform: rotate(180deg);
}

svg.down-svg.text-white {
    color: #fff;
}

.btn-active {
    /*margin-top: 30px;*/
}

svg {
    fill: currentColor;
}

.error {
    padding-top: 5px;
    color: #e50404 !important;
    font-size: 10px !important;
    text-align: center;
}

.box-comment-like-fb {
    margin-bottom: 45px;
}

.list-number-page{
    margin-bottom: 30px;
}

.search-section{
    padding: 50px 0;
}

.search-section:last-child{
    padding-bottom: 20px;
}

.btn-play-video {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all .2s;
    background: var(--primary);
    color: var(--white);
    border-color: var(--white);
}

/*End CSS CUSTOM*/

/*Animation*/

/*.section-title h2 {animation: fadeInDown 2s;}

.desc-section p {
    animation: fadeInLeft 2s;
}*/
/*End CSS Animation*/

/*CSS Header*/
.avt-cat {
    max-width: 50px;
    /*height: 30px;*/
    text-align: center;
    margin: auto;
    margin-bottom: 5px;
    overflow: hidden;
    /* border-radius: 50%; */
}

.avt-cat i{
    font-size: 25px;
}

a.navbar-brand img {
    max-width: 98px;
}

a.navbar-brand {
    height: 53px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu, .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    position: relative;
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    padding: 0;
    opacity: 1;
    text-align: left;
    z-index: 99999;
    display: none;
}

.main-nav nav .navbar-nav .nav-item ul.dropdown-menu{
    position: absolute;
}

.main-nav nav .navbar-nav .nav-item:hover ul{
    
}

.dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.main-nav {
    background-color: rgb(0 0 0 / 68%);
}

/*Button close open menu mobile*/
.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    border: none;
    border-radius: 0;
    padding: 0;
}

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border-color: rgba(0,0,0,.1);
}

.navbar-toggler .icon-bar {
    width: 35px;
    -moz-transition: all .3s;
    transition: all .3s;
    background: var(--primary);
    height: 4px;
    display: block;
    border-radius: 3px;
}

.navbar-toggler .top-bar {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
    -moz-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
    left: 4px;
    position: relative;
}

.navbar-toggler.collapsed .top-bar {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
    left: 0;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    margin: 5px 0;
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.navbar-toggler .bottom-bar {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 10% 90%;
    -moz-transform-origin: 10% 90%;
    transform-origin: 10% 90%;
    left: 4px;
    position: relative;
}

.navbar-toggler.collapsed .bottom-bar {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
    left: 0;
}
/*End Button close open menu mobile*/

/*End CSS Menu*/

/*CSS FOOTER*/
footer {
    padding: 50px;
    /*overflow: hidden;*/
    background-color: var(--primary-bold);
}

.widget_media_image {
    max-width: 100px;
}

.copyright-area {
    background-color: var(--primary-bold);
}

.copyright-area .copyright-item p {
    margin-bottom: 0;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.footer-item .footer-contact ul li a:hover {
    margin-left: 5px;
    color: var(--white) !important;
}

.footer-item .footer-contact ul {
    margin: 0;
    padding: 0;
}

.footer-item .footer-contact ul li {
    /*list-style-type: none;
    display: block;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;*/
}

.footer-item .footer-contact ul li i {
    font-size: 25px;
    text-align: center;
    position: absolute;
    top: 2px;
    left: 0;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.footer-social-link .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.footer-social-link .social-icon li,
.footer-social-link .social-icon li span {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 3px
}

.footer-social-link ul.social-icon li {
    border-radius: 50%;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px!important;
}

.footer-social-link ul.social-icon li:hover {
    background-color: var(--primary-normal)
}

.footer-social-link ul.social-icon li a:hover {
    margin-left: 0
}

.footer-social-link ul.social-icon li svg {
    margin: 0;
    color: #fff;
}

.footer-social-link ul li svg {
    height: 15px;
    width: 15px;
}

.barcode {
    text-align: center;
    margin-top: 10px;
}

.desc-company p{
    margin-bottom: 10px;
}

/*End CSS FOOTER*/

/*Cart header*/
a#cartDropdown {
    position: relative;
    display: block;
}

.cart-product-svg {
    height: 30px;
    width: 30px;
}

header .cart-product-svg {
    color: #fff;
}

span.mini-cart__count {
    position: absolute;
    /* left: 0; */
    /* right: 0; */
    text-align: center;
    padding: 0px 5px;
    color: #fff;
    border-radius: 50%;
    top: -5px;
    font-size: 12px;
    height: 20px;
    width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cartDropdown i.icofont-cart-alt {
    font-size: 40px;
}

.cart-success {
    position: fixed;
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: 10px;
    padding: 10px 15px;
    top: 150px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    color: #242424;
    transition: .2s;
    opacity: 0;
    z-index: -1;
}
/*End HEADER CSS*/

/*CSS Cart*/

.mini-cart__dropdown-menu {
    min-width: 25rem;
    width: 100%;
    top: 2.5rem !important;
    position: absolute;
    background-color: var(--white);
    z-index: 9999999;
    display: none;
    color: #010101;
    padding: 0;
    /*border: 1px solid #1762df;*/
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    right: 0;
}
.mini-cart__dropdown-menu .slimScrollDiv {
    height: 100% !important;
    max-height: 56rem;
}

.mini-cart__content {
    padding: 1rem;
    height: 100% !important;
    max-height: 56rem;
}
.mini-cart__item--single {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary-background-gray);
    padding-top: 1rem;
}
.mini-cart__item--image {
    -webkit-flex-basis: 5rem;
    -moz-flex-basis: 5rem;
    -ms-flex-preferred-size: 5rem;
    flex-basis: 5rem;
    max-width: 5rem;
    height: 5rem;
}
.mini-cart__item--content {
    -webkit-flex-basis: calc(100% - 8rem);
    -moz-flex-basis: calc(100% - 8rem);
    -ms-flex-preferred-size: calc(100% - 8rem);
    flex-basis: calc(100% - 8rem);
    text-align: left;
}
.mini-cart__item--name {
    margin-bottom: .5rem;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
}
.mini-cart__item--content p {
    margin: 0;
}
.mini-cart__item--quantity {
    color: var(--primary);
    padding: 5px 0;
    font-size: 1.2rem;
}
.mini-cart__item--content p {
    margin: 0;
}

.mini-cart__item--price {
    font-size: 1rem;
    font-weight: 500;
    color: #fdb866;
    padding-top: 2px;
}
.mini-cart__item--remove {
    color: var(--primary);
    font-size: 1.7rem;
}
.mini-cart__calculation {
    margin: 2rem 0;
}
.mini-cart__calculation p {
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    line-height: 1.4;
}
/*.mini-cart__btn {
    margin: 0 -3.5rem;
    padding: 2.5rem 3.5rem;
    background-color: #242424;
}*/
.mini-cart__btn a:not(:last-child) {
    margin-bottom: 1.5rem;
}

.btn-style-1 {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline;
    border: 1px solid #ccc;
    border-radius: 5px;
}

i.fa.fa-cart-plus {
    font-size: 20px;
}

span.mini-cart__count {
    position: absolute;
    top: -1em;
    right: -1em;
    background-color: var(--primary-bold-first);
    padding: 0% 15%;
    border-radius: 50%;
    font-size: 10px;
    border: 1px solid var(--white);
    color: var(--white);
}

a#cartDropdown {
    position: relative;
}

.mini-cart i.fa.fa-search {
    font-size: 20px;
    text-align: center;
}

/*END CSS Cart*/

/*CSS CART PAge*/

form#checkout-form {
    margin-top: 15px;
}

.order-province, .order-country {
    display: none;
}

.cart-page, .checkout-area {
    color: #000;
}

.continue-buy {
    margin-bottom: 20px;
    color: #212121;
    font-size: 1.8rem;
    line-height: 2.5rem;
    text-transform: capitalize;
    font-weight: 400;
    display: block;
    margin-top: 20px;
}
.table thead th {
    text-transform: capitalize;
    white-space: -moz-nowrap;
    white-space: nowrap;
    border-bottom: 0;
    /*color: #e8e8e7;*/
    text-transform: uppercase;
    font-weight: 500;
    padding: 2rem 1.5rem;
    border-top: 0;
}
.table td, .table th {
    vertical-align: middle;
    text-align: center;
    padding: 1.5rem;
    border-color: #bfbbbb;
}
.table thead th:not(:last-child), .table td:not(:last-child) {
    /*border-right: 1px solid #e8e8e8;*/
}

.table td img {
    width: 5rem;
}

.mini-cart__item--attribute, .attribute-text-cart {
    font-size: 13px;
}
.table td.cart-product-price {
    font-size: 1.2rem;
    line-height: 1.6;
    /*color: #e8e8e7;*/
}
.table td .quantity {
    margin: 0 auto;
    /*width: 8.7rem;*/
    width: unset;
}
.table td .quantity .qtybutton {
    /*background: #2e2e2e;*/
}

.checkout-title h2 {
    border-bottom: 1px solid #2d2d2d;
    font-size: 2rem;
    margin: 0 0 2rem;
    padding-bottom: 1rem;
}
.form__input--2 {
    height: 4.5rem;
}
.form__input {
    /* background-color: #242424; */
    /*color: #afafaf;*/
    padding-left: 1.5rem;
    width: 100%;
    height: 3rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #b2945c;
}

.order-details .heading-tertiary {
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2d2d2d;
}
.heading-tertiary {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 0;
    /*color: var(--white);*/
    line-height: 1.35;
}
/*End CSS CArt PAge*/

/*CSS Contact PAge*/

.about-page{
    background-color: var(--primary-bold-first);
}

.content-contact{
    display: none;
}

textarea#customer_message {
    height: 240px;
    padding: 10px;
}

.btn-contact {
    border: 1px solid var(--primary-bold-first);
    background-color: var(--primary-bold-first);
    color: var(--white);
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

button.btn.form__submit.font-weight-bold:hover {
    background-color: var(--primary-bold-first);
    color: var(--white);
}

.map iframe{
    height: 800px !important;
    width: 100%;
}
/*End CSS Contact Page*/

/*CSS BTN Animation*/

.nml-alo-ph-circle{
    border: 1px solid rgb(172 127 0 / 60%);
}
.nml-alo-ph-circle {
    animation: 2s ease-in-out 0s normal none infinite running nml-alo-circle-anim;
    background-color: var(--primary-transparent-opacity);
    border: 1px solid rgb(178 206 249);
    border-radius: 100%;
    height: 70px;
    left: 50%;
    margin-left: -35px;
    opacity: 0.1;
    position: absolute;
    transform-origin: 50% 50% 0;
    transition: all 0.5s ease 0s;
    width: 70px;
}

.nml-alo-ph-circle-fill {
    background-color: var(--primary-transparent);
}
.nml-alo-ph-circle-fill {
    animation: 2.4s ease-in-out 0s normal none infinite running nml-alo-circle-fill-anim;
    background-color: var(--primary);
    border: 2px solid var(--primary-transparent);
    border-radius: 100%;
    height: 70px;
    left: 50%;
    margin-left: -35px;
    opacity: 0.1;
    position: absolute;
    transform-origin: 50% 50% 0;
    transition: all 0.5s ease 0s;
    width: 70px;
}
@keyframes nml-alo-circle-anim {
    0% {
        opacity: 0.1;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    50% {
        opacity: 0.5;
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        opacity: 0.6;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }
}

@-moz-keyframes nml-alo-circle-anim {
    0% {
        opacity: 0.1;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    50% {
        opacity: 0.5;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    100% {
        opacity: 0.6;
        transform: rotate(0deg) scale(1) skew(1deg);
    }
}

@-webkit-keyframes nml-alo-circle-anim {
    0% {
        opacity: 0.1;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    50% {
        opacity: 0.5;
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        opacity: 0.6;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }
}

@keyframes nml-alo-circle-fill-anim {
    0% {
        opacity: 0.2;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    50% {
        opacity: 0.2;
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        opacity: 0.2;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }
}

@-moz-keyframes nml-alo-circle-fill-anim {
    0% {
        opacity: 0.2;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    50% {
        opacity: 0.2;
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        opacity: 0.2;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }
}

@-webkit-keyframes nml-alo-circle-fill-anim {
    0% {
        opacity: 0.2;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }

    50% {
        opacity: 0.2;
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        opacity: 0.2;
        transform: rotate(0deg) scale(0.7) skew(1deg);
    }
}

@keyframes nml-alo-circle-img-anim {
    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);
    }
}

@-moz-keyframes nml-alo-circle-img-anim {
    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);
    }
}

@-webkit-keyframes rotate{
    0%{
    }
    10%{
        -webkit-transform:rotate(20deg);
        -moz-transform:rotate(20deg);
        -o-transform:rotate(20deg)
    }
    20%{
        -webkit-transform:rotate(-20deg);
        -moz-transform:rotate(-20deg);
        -o-transform:rotate(-20deg)
    }
    30%{
        -webkit-transform:rotate(20deg);
        -moz-transform:rotate(20deg);
        -o-transform:rotate(20deg)
    }
    40%{
        -webkit-transform:rotate(-20deg);
        -moz-transform:rotate(-20deg);
        -o-transform:rotate(-20deg)
    }
    50%{
        -webkit-transform:rotate(20deg);
        -moz-transform:rotate(20deg);
        -o-transform:rotate(20deg)
    }
    60%{
        -webkit-transform:rotate(-20deg);
        -moz-transform:rotate(-20deg);
        -o-transform:rotate(-20deg)
    }
    70%{
        -webkit-transform:rotate(20deg);
        -moz-transform:rotate(20deg);
        -o-transform:rotate(20deg)
    }
    80%{
        -webkit-transform:rotate(-20deg);
        -moz-transform:rotate(-20deg);
        -o-transform:rotate(-20deg)
    }
    90%{
        -webkit-transform:rotate(20deg);
        -moz-transform:rotate(20deg);
        -o-transform:rotate(20deg)
    }
    100%{
        -webkit-transform:rotate(-20deg);
        -moz-transform:rotate(-20deg);
        -o-transform:rotate(-20deg)
    }
}

/*scroll to TOP*/
.go-top {
    background-color: var(--primary-yellow);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    margin-right: 28px;
    box-shadow: 0 0 14px var(--primary);
    bottom: 30px;
    cursor: pointer;
    position: fixed;
    right: 12px;
    /* text-align: center; */
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*BTN Slider*/
.slick-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 15px;
    z-index: 9;
    transition: .3s;
    width: 20px;
    height: 20px;
    bottom: -10px;
    border-radius: 5px;
}

button.slide-prev.slick-arrow {
    position: absolute;
    left: 44%;
}

button.slide-next.slick-arrow {
    position: absolute;
    right: 44%;
}

button.slide-prev.slick-arrow:focus, button.slide-next.slick-arrow:focus {
    outline: unset;
}

.slick-arrow:hover {
    /*border: 1px solid var(--primary);*/
    background-color: var(--white) !important;
    color: var(--primary) !important;
    cursor: pointer;
    /* transition: .3s; */
}

ul.slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 0;
}

.customer_list-section ul.slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 45%;
    bottom: -10%;
    padding: 0;
    /* display: none; */
    position: absolute;
}

ul.slick-dots li {
    margin: 0 1px;
}

ul.slick-dots li button {
    border: none;
    border-radius: 50%;
    text-overflow: clip;
    height: 12px;
    width: 5px !important;
    cursor: pointer;
    animation-name: fadeInBig;
    content-visibility: hidden;
    background-color: var(--primary-normal);
    transition: all 200ms ease;
}

ul.slick-dots li.slick-active button, ul.slick-dots li:hover button{
    border: 1px solid var(--white);
    background-color: var(--primary);
    transform: scale(1.5);
    height: 14px;
    margin: 0 3px;
}
/*End CSS BTN Slider*/

/*Related*/
section.related {
    padding: 50px 0;
}

.title-related {
    /*margin: 0 0 50px 0 !important;*/
}

.title-related h2 {
    margin: 0 !important;
}

.social__sharing.mb--30 {
    margin-top: 15px;
}

/*CSS SLIDER*/
.slider-item.slider-item-img {
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slider-item.slider-item-img .d-table {
    position: absolute;
    top: 0;
    bottom: 0;
    color: var(--white);
}

.home-slider .owl-prev, .home-slider .owl-next {
  /* navigation */
  padding: 0;
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  bottom: 45%;
  width: 50px;
  height: 50px;
  background-color: white;
  z-index: 10;
  border: none;
  margin: auto 0;
  transition: 400ms ease;
  transition-property: background-color;
}

.home-slider .owl-next {
    left: unset;
    right: 0;
}

.home-slider .owl-prev span, .home-slider .owl-next span {
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    text-align: center;
    width: 100%;
    line-height: 50px;
    color: #1e222e;
    transition: 400ms ease;
    transition-property: color, opacity;
}
/*End CSS SLIDER*/

/*CSS PRODUCT*/

.mirora-product:hover {
    -webkit-box-shadow: 0 0 15px rgb(171 188 246 / 33%);
    -moz-box-shadow: 0 0 15px rgb(171 188 246 / 33%);
    -ms-box-shadow: 0 0 15px rgb(171 188 246 / 33%);
    -o-box-shadow: 0 0 15px rgb(171 188 246 / 33%);
    box-shadow: 0 0 15px rgb(171 188 246 / 33%);
    z-index: 3;
}
.mirora-product {
    /*margin: 8px 4px 0;*/
    /*background: #242424;*/
    border-radius: 4px;
    position: relative;
    transition: all 0.4s ease-out 0s;
    word-wrap: break-word;
    z-index: 1;
    border: 1px solid #eff2ff;
    display: block;
    margin-top: 30px;
}

.mirora-product .brief-product {
    padding: 53% 15px 0;
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 34, 73, 0.4);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 5;
}

.show-desc:hover .brief-product {
    background: linear-gradient(#1796cc85, #1795cbe8, var(--primary-bold-second));
    padding-top: 80%;
    bottom: 0;
}

.list-badge {
    position: absolute;
    top: 10px;
    right: 5px;
    z-index: 99;
}
.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}
.list-badge .badge {
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    margin-right: 5px;
    background-color: var(--primary-button);
    font-size: 13px;
    color: white;
}

.product-img {
    position: relative;
    overflow: hidden;
}

.product-archive .product-img a {
    text-align: center;
}

.product-img .primary-image {
    margin: 0 auto;
    /* height: 200px; */
    width: 100%;
    object-fit: cover;
}
.product-img .secondary-image {
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* height: 200px; */
    object-fit: cover;
}

.product-img .secondary-image{
    visibility: hidden;
    opacity: 0;
    position: absolute;
}

.mirora-product:hover .secondary-image{
    visibility: visible;
    opacity: 1;
}

.product-img img{
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.product-content {
    padding: 1rem;
    background: var(--white);
}
.product-content h4 {
    padding-bottom: .5rem;
    font-size: 1.2rem;
}
.product-content h4:hover a {
    color: var(--primary);
}

.product-content h4 a{
    /*color: var(--white);*/
}

p.brief-product {
    /*color: #9aa4c6;*/
    font-size: .8rem;
}

.product-price-wrapper {
    display: block;
    transition: all 0.3s ease 0s;
    overflow: hidden;
}

.product-price-wrapper > span {
    margin: 0 2px;
    font-size: 18px;
    font-weight: 500;
}

.product-price-wrapper > span.product-price-old {
    text-decoration: line-through;
    color: #afafaf;
    font-size: 1rem;
    font-weight: 400;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin: 10px auto;
    width: 80%;
}

.product-meta div {
    font-size: 14px;
}

.product-meta div i {
    margin-right: 3px;
}

.product-rating i {
    display: inline-block;
    font-size: .8rem;
}
.product-action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin: 0;
}

.product-action a{
}

.product-action a {
    min-width: 2.5rem;
    min-height: 2.5rem;
    line-height: 2.5rem;
    /*background-color: #2e2e2e;*/
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    color: #304179;
    border: 1px solid #00000014;
}
.action-cart {
    padding: 0px 1rem;
    font-size: 1rem;
    margin: 0 .5rem;
}

.product-action a:nth-child(1):hover {
    color: #000;
    border: 1px double #b1b9d3;
}

h2.no-content {
    font-size: 20px;
    font-weight: normal;
    color: revert;
}

/*End CSS PRoduct*/

/*CSS PRoduct DETAIL*/

section.mirora-single-product {
    border-bottom: 1px solid var(--primary-background-gray);
}

section.mirora-single-product .product-details-thumb-menu{
    margin-top: 20px;
}

section.mirora-single-product .slick-slide .thumb-menu-item{
    border: 1px solid var(--primary-background-gray);
}

section.mirora-single-product .slick-slide.slick-active:last-child .thumb-menu-item{
    border-left: 1px solid var(--primary-background-gray);
}

.product-details-thumb-menu .slick-list.draggable {
    padding: 0 4px;
}

.product-details-thumb-menu .slick-active {
    /*padding: 0 5px;*/
}

.product-details-top {
    border-bottom: 1px solid var(--primary-background-gray);
    padding-bottom: 20px;
    margin-bottom: 15px;
}
.product-details-name {
    /*font-size: 2.4rem;*/
    /*margin-bottom: 20px;*/
    text-transform: capitalize;
}
.product-details-content .ratings-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.product-details-content .ratings {
    margin-right: 20px;
}

.sold-item, .view-item {
    margin-right: 20px;
}

.cart-product-svg, .eye-product-svg, .start-product-svg {
    padding-right: 5px;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: end;
    align-items: end;
}

.check-svg {
    height: 15px;
    width: 15px;
    margin-right: 5px;
}

.start-product-svg {
    height: 17px;
    width: 17px;
    padding: 0;
    margin-right: 2px;
}

.product-details-price-wrapper {
    padding: 25px;
    background-color: var(--primary-background-gray);
    display: flex;
}

p.product-details-availability {
    margin-bottom: 15px;
}

.product-details-price-wrapper > span {
    font-size: 2.4rem;
    font-weight: 500;
    margin-right: .5rem;
    display: inline-block;
}
.product-details-price-wrapper > span.product-price-old {
    font-size: 1.8rem;
    font-weight: 400;
}
.product-price-old .money {
    text-decoration: line-through;
}

.product-details-action-wrapper {
    /*border-top: 1px solid var(--primary-background-gray);*/
    /*padding-top: 15px;*/
}

.box-number {
    position: relative;
}

.box-btn-cart {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    grid-gap: 5px;
}

.btn-medium {
    min-height: 1.5rem;
    line-height: 1.5rem;
    border-radius: unset;
    color: var(--white);
    /*background: var(--primary-bold-second);*/
}

.add-to-cart {
    background-color: rgb(245 0 15);
    color: var(--white) !important;
    border: 1px solid rgb(245 0 15);
    border: 1px solid rgb(245 0 15);
    border-radius: 5px;
}

.add-to-cart:hover {
    background-color: unset;
    color: rgb(245 0 15) !important;
    border: 1px solid rgb(245 0 15);
}

.buy-now-product, button[data-type="buynow"] {
    background-color: #f15900;
    color: var(--white) !important;
    border: 1px solid #f15900;
}

.buy-now-product:hover {
    /*background-color: #f15900 !important;*/
    /*color: var(--primary) !important;*/
    background-color: unset;
    color: #f15900 !important;
    border: 1px solid #f15900;
}

.product-details-availability i {
    padding-right: .5rem;
}

.product-details-availability {
    margin-bottom: 15px;
}

.product-icon {
    color: var(--primary);
}

#text-quantity{
    padding: 0 5px;
}
.product-details-action-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}

.product-details-bottom .list-attribute {
    display: inline-block;
}
.product-details-bottom .attribute-name{
    margin-bottom: 0;
    margin-right: 10px;
}
.product-details-bottom .list-attribute .item {
    float: left;
    padding: .5rem;
    display: flex;
    justify-content: center;
    border: 1px solid var(--primary);
    margin: 0 5px;
    border-radius: 5px;
}

.quantity {
    position: relative;
    margin-right: 1.5rem;
    width: 15rem;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.quantity span {
    display: inline-block;
    padding-right: 1rem;
}
.quantity-input {
    background-color: #efeeee;
    width: 100%;
    height: 2.5rem;
    font-size: 16px;
    padding: 0 2rem;
}
.quantity .qtybutton {
    position: absolute;
    right: 0;
    width: 1.8rem;
    height: 1.3rem;
    line-height: 1rem;
    border: 1px solid var(--primary-background-gray);
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    background: var(--white);
}
.quantity .qtybutton.dec {
    bottom: 0;
    -webkit-border-radius: 0px 0px 5px 0px;
    -moz-border-radius: 0px 0px 5px 0px;
    -ms-border-radius: 0px 0px 5px 0px;
    -o-border-radius: 0px 0px 5px 0px;
    border-radius: 0px 0px 5px 0px;
}
.quantity .qtybutton.inc {
    top: 0;
    border-bottom: none;
    -webkit-border-radius: 0px 5px 0px 0px;
    -moz-border-radius: 0px 5px 0px 0px;
    -ms-border-radius: 0px 5px 0px 0px;
    -o-border-radius: 0px 5px 0px 0px;
    border-radius: 0px 5px 0px 0px;
}

ul.social-round {
    padding-left: 0;
}
.social-round .social__item:not(:last-child) {
    margin-right: .2rem;
}
.social__item:not(:last-child) {
    margin-right: 3rem;
}
.social__item {
    max-width: 90px;
    display: inline-block;
}
section.product-details-tab {
    word-break: break-word;
    background-color: unset !important;
}
.product-details-tab-head {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    padding-left: 3rem;
    padding-right: 3rem;
}
.product-details-tab-item:not(:last-child) {
    margin-right: 4rem;
}
.product-details-tab-link {
    border: none;
    color: #afafaf;
    font-size: 20px;
    /* font-weight: 400; */
    font-weight: 500;
    padding: 0;
    text-transform: capitalize;
}
.product-details-tab-link.active{
    color: var(--global-color);
}

.product-details-tab-content.tab-content {
    /* border: 1px solid #000; */
    padding: 20px;
}

section.product-details-tab img {
    max-width: 100%;
    width: unset !important;
    height: unset !important;
}

.product-details-additional-info .shop_attributes {
    border-bottom: 1px solid #2d2d2d;
    border-left: 1px solid #2d2d2d;
    width: 100%;
}
.product-details-additional-info .shop_attributes tr {
    border-top: 1px solid #2d2d2d;
    border-right: 1px solid #2d2d2d;
}
.product-details-additional-info .shop_attributes tr, .product-details-additional-info .shop_attributes th {
    border: 1px solid var(_global-color-border) !important;
}
.product-details-additional-info .shop_attributes th, .product-details-additional-info .shop_attributes td {
    color: #000;
    font-size: 1rem;
    padding: 1rem 1rem;
    font-weight: 400;
}
.product-details-tab-content.tab-content h2 {
    font-size: 1.2rem;
}
.product-details-tab-content.tab-content ul {
    margin: 10px;
    color: #000;
}

.single-products-area .container+section {
    padding-top: 0 !important;
}

@media screen and (min-width: 1024px) and (max-width: 1200px)
{
    .product-details-price-wrapper > span {
        font-size: 25px;
    }
    
    .product-details-price-wrapper > span.product-price-old {
        font-size: 15px;
    }

    .product-details-action-wrapper {
        display: block;
    }
    
    .product-details-action-top {
        display: block;
    }
    
    .box-btn-cart {
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px)
{
    .quantity.quantity-custom {
        display: flex;
        align-items: center;
        margin: auto;
    }
}

@media screen and (max-width:700px) {
    
	section.mirora-single-product .quantity {
		/*margin-bottom: 20px*/
	}
	section.mirora-single-product .quantity > span{
	    display: none !important;
	}
	.box-btn-cart{
	    margin-top: 0px;
	}
}

@media screen and (max-width: 567px)
{
    .box-number {
        width: 100%;
        margin-bottom: 10px;
    }

    .quantity.quantity-custom {
        width: auto;
        margin: auto;
    }
	.product-details-action-top {
		display: block
	}
	
    .box-btn-cart {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .box-btn-cart button {
        margin-left: 0 !important;
        width: 100%;
    }
}

@media screen and (max-width: 320px)
{
}

/*End CSS PROduct DETAil*/

/*CSS DETAIL POST*/

.toc-block ol {
    padding: revert;
    list-style: revert;
}
.toc-block ul {
    margin: 15px 0;
    list-style: revert;
    padding: revert;
}

.title-related {
    margin-bottom: 20px;
}

.post-content img {
    width: unset !important;
    height: unset !important;
}

.post-content ul, .post-content ol {
    list-style: revert;
    padding-left: 20px;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 0 !important;
}

ul.social.social-round {
    padding: 0;
    margin: 0;
}

.post-date, .post-view {
    margin-bottom: 5px;
}

span.post-date span {
    margin-right: 5px;
}

.page-title-item .entry-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.post-view {
    margin-left: 10px;
    margin-right: 10px;
}

article.post.post-details .post-info h2{
   font-size: 1.3rem;
}

article.post.post-details .post-info h3 {
    font-size: 1.2rem;
}

.social__sharing.mb--30 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.post-details p{
    margin-top: 0;
    margin-bottom: 10px;
    word-break: break-word !important;
}

.post-details table p{
    text-align: left;
}

@media screen and (max-width: 767px)
{
    table {
        margin: 0 0 auto;
        width: 100% !important;
    }
}

@media screen and (max-width: 420px)
{
    
    .single-post-area .breadcrumb-area .entry-meta {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
    
    .single-post-area .breadcrumb-area .entry-meta span {
        display: inline-block;
    }
    
    .single-post-area .breadcrumb-area .single-post-area span.post-view {
        display: flex;
        align-items: center;
        justify-content: center !important;
        margin: 0;
    }
    
    .single-post-area .breadcrumb-area .single-post-area span.view {
        justify-content: center;
    }
    
    .single-post-area .breadcrumb-area span.post-view {
        display: flex;
        justify-content: center !important;
    }
}
/*End DETAIL POST*/

/*CSS Detail GAllerry*/
.blog-area .title {
    margin-top: 10px;
}

.item-gallery-detail
{
    margin-top: 30px;
}

.single-post-area .item-gallery-detail
{
    display: block;
}

.item-gallery-detail:nth-child(1),.item-gallery-detail:nth-child(2),.item-gallery-detail:nth-child(3)
{
    margin-top: 45px;
}

.post-content {
     padding: 0 !important; 
}

/*End CSS Detail GAlerry*/

/*CSS COMMENT FB*/
.fb-comments {
    background: #fff;
}

.fb_iframe_widget_fluid_desktop iframe {
    max-width: 100%;
    width: 100% !important;
}