*, *:after, *:before {
    outline:0 !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    color: #444444;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #EDEDED;
}

a{
    color: #444444;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    color: #444444;
    text-decoration: none;
}

img {
    max-width: 100%;
}

body:not(.pl-article) ul{
    padding-inline-start: 0;
}

body:not(.pl-article) ul > li{
    list-style: none;
}

input:-internal-autofill-selected {
    background: transparent !important;
}

.col-xs-12 {
    width: 100%;
}

h1,
body.cart h2.subtitle {
    font-size: 35px;
    text-align: center;
    margin: 0 auto 50px;
    padding-top: 30px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    line-height: 50px;
    letter-spacing: 5px;
}

h1:after,
body.cart h2.subtitle:after {
    content: '';
    position: absolute;
    width: 54px;
    height: 2px;
    background: #444444;
    bottom: -10px;
    left: calc(50% - 27px);
}

.form-control,
select {
    background: transparent;
    border-radius: 0;
    border-color: #444444;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    border-radius: 3px;
}

section > .container{
    padding: 0;
}

.form-control-grid {
    position: relative;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.7;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.7;
    }
}

.pulse{
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    visibility: visible !important;
}

.form-control-grid .validation-wrapper {
    position: absolute;
    top: 40px;
    right: 5px;
    text-align: right;
    font-size: 13px;
    line-height: 15px;
    padding: 2px 0;
}

.form-control-grid .toggle-pass {
    position: absolute;
    right: 10px;
    top: 0;
    line-height: 40px;
}

.form-control-grid .check-content {
    color: #dc3545;
}

span.btn {
    background: transparent !important;
    padding: 0 !important;
}

span.btn > a,
.btn{
    background: #444444;
    border: none;
    padding: 0 20px;
    line-height: 40px;
    border-radius: 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border:  1px solid #444444;
    color: #ffffff;
    border-radius: 3px;
}

span.btn > a,
.btn-primary {
    background: #444444;
    border: 1px solid #444444 !important;
}

span.btn:hover > a,
.btn:hover,
span.btn > a:hover,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #ffffff !important;
    color: #121212 !important;
    box-shadow: none !important;
}

.btn:focus, .btn.focus {
    box-shadow: none !important;
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #212529;
    background-color: #cacaca;
    border-color: #cacaca;
}

/* header top */
.header-top-nav {
    background: #f4f4f4;
    color: #444444;
    line-height: 40px;
    font-size: 13px;
}

.header-top-nav a {
    color: #444444;
    line-height: 40px;
    font-size: 13px;
}

.header-top-nav .quick-links {
    display: inline-block;
    float: right;
}

.header-top-nav .quick-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-top-nav .quick-links ul li {
    display: inline-block;
    margin-left: 15px;
}

.header-top-nav .social-icons {
    float: right;
}

.header-top-nav .social-icons .item {
    display: inline-block;
}

.header-top-nav > .user {
    cursor: pointer;
}

.header-top-nav .user {
    float: right;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    vertical-align: middle;
    font-weight: 700;
}

.header-top-nav .user .fa-user{
    margin: 0 10px;
}

.header-top-nav .user.login-user .fa-user {
    color: #444444;
}

.header-top-nav .user i.toggle-pass {
    color: #121212;
}

.header-top-nav .user .user-dropdown {
    position: absolute;
    background: #ffffff;
    top: 40px;
    right: 0;
    opacity: 0;
    pointer-events: none;
    padding: 15px 25px;
    line-height: 30px;
    text-align: left;
    width: 360px;
    max-width: 100vw;
    transition: all 0.3s;
    z-index: 100;
    border: 1px solid #444444;
}

.header-top-nav .user .user-dropdown.loged {
    width: max-content;
}

.header-top-nav .user .user-dropdown.active,
.header-top-nav .user:hover .user-dropdown {
    opacity: 1;
    pointer-events: all;
}

.header-top-nav .user .user-dropdown .title{
    font-size: 20px;
    font-weight: 600;
    color: #444444;
    border-bottom: 2px solid;
    width: max-content;
    margin: 0 auto 10px;
}

.header-top-nav .user .user-dropdown label{
    font-size: 10px;
    line-height: 15px;
    font-weight: 300;
    margin: 0;
}

.header-top-nav .user .user-dropdown a{
    display: block;
    line-height: 20px;
    width: max-content;
}

.header-top-nav .modal-login .form-group {
    margin-bottom: 10px;
}

.header-top-nav .user .user-dropdown .user-profile a,
.header-top-nav .user .user-dropdown .logout a {
    line-height: 40px;
}

.header-top-nav .user .user-dropdown .user-profile a {
    margin-top: -10px;
}

.header-top-nav .user .user-dropdown span.btn,
.header-top-nav .user .user-dropdown a.btn {
    line-height: 40px;
    margin: 10px 0;
    width: 100%;
    font-weight: 400;
}

.header-top-nav .user .user-dropdown span.btn.login-btn-ajax {
    color: #444444;
    font-size: 13px;
}

.header-top-nav .user .user-dropdown a.btn.registration-btn {
    color: #ffffff;
}

.header-top-nav .user .user-dropdown a.lost-password {
    margin: 20px 0;
}

.header-top-nav .user .user-dropdown a.lost-password:hover {
    text-decoration: underline;
}

.header-top-nav .social-icons:before {
    content: '';
    width: 1px;
    height: 15px;
    background: #444444;
    vertical-align: middle;
    display: inline-block;
}

.header-top-nav .social-icons .item {
    margin-left: 15px;
}

/* header */
header {
    position: fixed;
    width: 100%;
    background: #EDEDED;
    z-index: 1000;
    top: 0;
    left: 0;
    border-bottom: 5px solid #444444;
}

.header > .container {
    height: 75px;
    padding: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*logo*/
.header .logo {
    flex-shrink: 0;
    margin-right: 60px;
    display: block;
    height: calc(100% + 40px);
    max-width: 400px;
    margin-top: -40px;
}

.header .logo a {
    display: block;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    position: relative;
}

.header .logo a img{
    max-width: 250px;
}

.show-mobile-search {
    position: absolute;
    top: 7px;
    left: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}

.search-wrapper {
    width: 200px;
    display: inline-block;
    float: right;
    margin: 0px 10px;
    position: relative;
}

.search-wrapper #search-input {
    border: 1px solid #ebebeb;
    line-height: 28px;
    padding: 0 10px;
    border-radius: 7px;
    width: 100%;
    background: #d9d9d9;
    font-weight: 700;
}

.search-wrapper .search-input {
    position: relative;
}

.search-wrapper .search-input:after {
    position: absolute;
    content: "\f002";
    font-family: 'Font Awesome 5 Free';
    top: 5px;
    right: 10px;
    line-height: 30px;
    font-weight: 900;
}

.search-wrapper .search-input .close-search {
    position: absolute;
    top: 6px;
    right: 1px;
    z-index: 10;
    width: 40px;
    height: 28px;
    text-align: center;
    line-height: 30px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #ffffff;
    border-radius: 5px;
}

.search-wrapper .search-input .close-search.active {
    opacity: 1;
    pointer-events: all;
}

.search-wrapper .search-input .close-search:after {
    content: '\f00d';
    font-size: 20px;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    width: 40px;
    height: 48px;
}

.search-wrapper .search-resaults {
    position: fixed;
    z-index: 100;
    background: #ffffff;
    width: 100vw;
    max-width: 100vw;
    left: 0;
    top: 120px;
}


.search-wrapper .search-resaults .search-resaults-content {
    display: block;
    width: 100%;
    height: calc(100vh - 120px);
}

.search-wrapper .search-resaults > .container > .row {
    border-radius: 7px;
    max-height: calc(100vh - 113px);
    overflow: hidden auto;
    top: 34px;
}

.search-wrapper .search-resaults > .container > .row > p {
    margin: 5px 10px;
}

.search-wrapper .search-resaults > .container > .row .submit-search-form {
    display: block;
    width: 100%;
    margin: 5px 10px 0;
    text-align: right;
    padding-right: 20px;
}

.search-wrapper .search-resaults > .container > .row .submit-search-form:hover span {
    color: #444444;
    cursor: pointer;
}

.search-wrapper .search-resaults .item {
    display: block;
    float: left;
}

.manu-wrapper {
    flex-shrink: 0;
}

.header .user-wrapper {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.header .user-wrapper a {
    font-size: 18px;
    line-height: 30px;
}

.header .user-wrapper a:hover {
    text-decoration: none;
    color: #444444;
    display: inline-block;
}

.header .user-wrapper > .mini-fav {
    display: inline-block;
    margin: 0 25px;
}

.header .user-wrapper > .mini-cart {
    display: inline-block;
    padding: 0 0 0 10px;
    width: 55px;
}

.cart-item-wrapper{
    position: relative;
    padding: 30px 0;
}

.cart-items .items-wrapper{
    background: #ffffff;
    position: absolute;
    top: 80px;
    right: 0;
    width: 400px;
    max-width: 100vw;
    z-index: 500;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: all;
    border: 1px solid #eeeeee;
    border-radius: 7px;
}

.cart-items .items-wrapper.inactive{
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    pointer-events: none;
}

.cart-items .items-wrapper .mini-cart-items-wrapper {
    display: block;
    max-height: 437px;
    overflow: auto;
}

.cart-items .items-wrapper .item{
    float: left;
    display: block;
    padding: 5px;
    border-bottom: 1px solid #dedede;
    width: 100%;
}

.cart-items .items-wrapper .item:hover{
    background-color: rgba(122, 161, 188, 0.2);;
    clear: both;
}

.cart-items .items-wrapper .item .img-wrapper{
    float: left;
    width: 75px;
    height: 75px;
}

.cart-items .items-wrapper .item .img-wrapper img{
    width: 100%;
}

.cart-items .items-wrapper .item .content{
    float: left;
    width: calc(100% - 75px);;
    text-align: right;
    line-height: 1;
}

.cart-items .items-wrapper .item .content .price{
    font-weight: 700;
    display: inline-block;
}

.cart-items .items-wrapper .item .content .remove-product-minicart{
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
}

.cart-items .items-wrapper .item .content .remove-product-minicart:hover{
    color: #444444;
}

.cart-items .items-wrapper .item .content .title{
    font-size: 14px;
    margin-bottom: 5px;
}

.cart-items .items-wrapper .item .content .title a {
    font-size: 18px;
    line-height: 22px;
    height: 44px;
    display: block;
    margin-bottom: 13px;
}

.cart-items .btn-wrapper{
    float: left;
    display: block;
    width: calc(50% - 15px);
    margin: 10px 0;
}

.cart-items .btn-wrapper .btn-primary{
    width: 100%;
    color: #ffffff;
    background-color: #444444;
    border-color: #444444;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-weight: 400;
    font-size: 15px;
}

.total-price-wrapper{
    width: 50%;
    float: left;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    color: #444444;
    padding: 10px;
    line-height: 32px;
}

/* main */
main {
    margin-top: 116px;
    min-height: calc(100vh - 620px);
}

/*benafits slider*/
.benefits-slider .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.benefits-slider .container .item {
    width: calc(100% / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding: 15px 0;
    pointer-events: none;
}

.benefits-slider .container .item:nth-child(n+2):after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 1px;
    height: calc(100% - 20px);
    background: #e1e1e1;
}

.benefits-slider .container .item .img-wrapper{
    flex-shrink: 0;
    margin-right: 10px;
}

.benefits-slider .container .item .text-wrapper{
    padding: 10px;
}

.benefits-slider .container .item:hover a{
    color: #444444;
}

.benefits-slider .container .item:hover a img{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.benefits-slider .container .item:hover a img{
    filter: invert(63%) sepia(17%) saturate(662%) hue-rotate(162deg) brightness(95%) contrast(88%);
}

/*main slider*/
.main-slider .img-wrapper .second-img {
    display: none;
}

.main-slider .slick-arrow {
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    z-index: 10;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.main-slider .slick-arrow {
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    z-index: 10;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 0;
    cursor: pointer;
}

.main-slider .slick-arrow.next-arrow {
    left: auto;
    right: 0;
}

.main-slider .slick-arrow:after {
    content: '\f053';
    font-size: 20px;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #ffffff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.main-slider .slick-arrow.next-arrow:after {
    content: '\f054';
}

.main-slider .slick-arrow:hover:after {
    color: #444444;
}

.main-slider .text-content {
    position: absolute;
    top: 50%;
    left: -500px;
    background: rgba(0,0,0,0.25);
    padding: 50px;
    transform: translateY(-50%);
    color: #ffffff;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    opacity: 0;
}

.main-slider .text-content .title{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.main-slider .text-content .title:after{
    content: '';
    width: 30px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    top: 30px;
    left: 0;
    display: block;
}

.main-slider .text-content .btn{
    padding: 0 18px;
    line-height: 30px;
    font-size: 14px;
    letter-spacing: 1px;
}

.main-slider .slick-slide.slick-active .text-content{
    opacity: 1;
    left: 50px;
}

.slick-dots{
    text-align: center;
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0;
}
.slick-dots li{
    list-style: none;
    display: inline-block;
    margin-left: 5px;

}

.slick-dots li:first-child{
    margin-left: 0;
}

.slick-dots li.slick-active button:before{
    background-color: #444444;
}

.slick-dots button{
    background-color: transparent;
    color: transparent;
    height: 10px;
    width: 20px;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: none;
}

.slick-dots button:before{
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #cacaca;
}

/*Service info*/
section.service-info  {
    margin: 50px auto;
    text-align: center;
    width: 600px;
    max-width: 100%;
}

section.service-info .description-wrapper{
    margin: 30px auto;
}

/*collections*/
.collection-slider > .container {
    width: 1134px;
    padding: 50px 0;
    max-width: 100%;
}

.collection-slider .content {
    position: absolute;
    top: 50%;
    left: 40px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.collection-slider .content .title {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-transform: uppercase;
}

.collection-slider .content .subtitle {
    font-size: 30px;
    line-height: 35px;
    font-weight: 300;
    text-transform: uppercase;
}

.collection-slider .content .description {
    font-size: 14px;
    line-height: 16px;
    margin: 12px 0 0;
    padding: 15px 0 0;
    border-top: 1px solid #e1e1e1;
    font-weight: 300;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.collection-slider .item:hover .content .description {
    border-color: #444444;
}

/* product sliders */
.best-selling-product-list > .container,
.breands-slider > .container,
.news-list > .container,
.action-product-list > .container {
    width: 1134px;
    padding: 50px 0;
    max-width: caLc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
}

/* product in list */
.product.product-item {
    padding: 10px;
}

.product.product-item .img-wrapper {
    position: relative;
}

.product.product-item .img-wrapper .add-to-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 20px;
    display: none !important;
}

.product.product-item:hover .img-wrapper .add-to-favorite,
.product.product-item .img-wrapper .add-to-favorite.remove-fav {
    opacity: 1;
}

.product.product-item .img-wrapper .add-to-favorite:hover,
.product.product-item .img-wrapper .add-to-favorite.remove-fav {
    color: #444444;
}

.product.product-item .img-wrapper .add-to-favorite .inactive-fav,
.product.product-item .img-wrapper .add-to-favorite.remove-fav .active-fav{
    display: none;
}

.product.product-item .img-wrapper .add-to-favorite.remove-fav .inactive-fav,
.product.product-item .img-wrapper .add-to-favorite .active-fav{
    display: block;
}

.product.product-item .img-wrapper .add-to-cart{
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 44px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 500;
    width: 100%;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 2px solid #444444;
    background: #ffffff;
}

.product.product-item .img-wrapper .add-to-cart:hover{
    color: #444444;
}

.product.product-item .img-wrapper .add-to-cart i{
    margin-right: 5px;
}

.product-list-bootom-description .description {
    margin: -100px 0 100px;
    position: relative;
    padding-top: 20px;
}

.product-list-bootom-description .description:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #444444;
    width: 50px;
    height: 2px;
}

/* Product list ribon */
.product.product-item .img-wrapper .ribon-wrapper {
    position: absolute;
    top: 10px;
    left: -10px;
}

.product.product-item .img-wrapper .ribon-wrapper .item {
    line-height: 21px;
    padding: 0 10px;
    background: #444444;
    color: #fff;
    text-transform: uppercase;
    height: 21px;
    font-size: 12px;
}

.product.product-item .img-wrapper .ribon-wrapper .item:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #d9d9d9 transparent transparent;
}

.product.product-item .img-wrapper .ribon-wrapper .item.item-new {
    background: #F7154A;
}

.product.product-item .img-wrapper .ribon-wrapper .item.item-new:after {
    border-color: transparent #f991aa transparent transparent;
}

/* Product detail ribon */
#product .product-img-wrapper .ribon-wrapper {
    position: absolute;
    top: 55px;
    left: 35px;
    z-index: 1;
}

#product .product-img-wrapper .ribon-wrapper .item {
    line-height: 30px;
    padding: 0 15px;
    background: #444444;
    color: #fff;
    text-transform: uppercase;
    height: 30px;
    font-size: 18px;
}

#product .product-img-wrapper .ribon-wrapper .item:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #d9d9d9 transparent transparent;
}

#product .product-img-wrapper .ribon-wrapper .item.item-new {
    background: #F7154A;
}

#product .product-img-wrapper .ribon-wrapper .item.item-new:after {
    border-color: transparent #f991aa transparent transparent;
}

.product.product-item:hover .img-wrapper .add-to-cart{
    opacity: 1;
}

.product.product-item .content-wrapper{
    padding: 10px;
    text-align: center;
}

.product.product-item .content-wrapper .breand {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product.product-item .content-wrapper .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    height: 60px;
    overflow: hidden;
    display: block;
    width: 100%;
}

.product.product-item .content-wrapper .title a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 20px;
}

.product.product-item .content-wrapper .category {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product.product-item .content-wrapper .available-wrapper {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #0bbf60;
}

.product.product-item .content-wrapper .available-wrapper.not-available {
    color: #f21b05;
}

.product.product-item .content-wrapper .price-wrapper {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    height: 45px;
    overflow: hidden;
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product.product-item .content-wrapper .price-wrapper .main-price.old-price{
    font-size: 15px;
    line-height: 15px;
    display: block;
    text-decoration: line-through;
    color: #cccccc;
}

/* product slider */
.product-slider {
    position: relative;
}

.news-list .heading-wrapper .title,
.product-slider .heading-wrapper .title {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    text-align: center;
    line-height: 50px;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.news-list .heading-wrapper .title:after,
.product-slider .heading-wrapper .title:after {
    content: '';
    position: absolute;
    width: 54px;
    height: 2px;
    background: #444444;
    bottom: -10px;
    left: calc(50% - 27px);
}

.product-slider .slick-arrows-wrapper {
    position: absolute;
    top: 50%;
    left: -50px;
    width: calc(100% + 100px);
    pointer-events: none;
}

.breand-slider .product-slider .slick-arrows-wrapper {
    width: 100%;
    left: 0;
}

.product-slider .slick-arrows-wrapper .slick-arrow{
    font-size: 30px;
    pointer-events: all;
    cursor: pointer;
}

.product-slider .slick-arrows-wrapper .slick-arrow.next-arrow{
    float: right;
}

.breands-slider .slick-arrows-wrapper .slick-arrow:hover,
.product-slider .slick-arrows-wrapper .slick-arrow:hover {
    color: #444444;
}

/* promo baner */
.promo-baner > .container {
    width: 1134px;
    padding: 50px 0;
    max-width: 100%;
}

.promo-baner img.baner-img.mobile-img {
    display: none;
}

/* Breand slider */
.breands-slider .container {
    position: relative;
}

.breands-slider .slick-arrows-wrapper {
    position: absolute;
    top: calc(50% - 22px);
    left: -50px;
    width: calc(100% + 100px);
    pointer-events: none;
}

.breands-slider .slick-arrows-wrapper .slick-arrow{
    font-size: 30px;
    pointer-events: all;
    cursor: pointer;
}

.breands-slider .slick-arrows-wrapper .slick-arrow.next-arrow{
    float: right;
}

.breands-slider .item {
    display: inline-block;
    margin: auto;
    text-align: center;
}

.breands-slider .item img {
    margin: auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.breands-slider .item img:hover {
    opacity: 0.5;
}

/* instagramfeed */
.instagramfeed .heading-wrapper .title {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    text-align: center;
    line-height: 50px;
    letter-spacing: 5px;
    padding: 10px 0;
}

.instagramfeed .heading-wrapper .title:before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background: #444444;
    z-index: -1;
}

.instagramfeed .heading-wrapper .title span {
    padding: 0 10px;
    background: #ffffff;
}

.instagramfeed .item .img-wrapper {
    display: block;
    width: 100%;
    padding: 5px;
    position: relative;
}

.instagramfeed .item .img-wrapper:after {
    content: '';
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: rgba(122, 161, 188, 0.65) url("../images/instalogo.png") center center no-repeat;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
    position: absolute;
    top: 5px;
    left: 5px;
}

.instagramfeed .item:hover .img-wrapper:after {
    opacity: 1;
}

.instagramfeed .item a {
    display: block;
}

/* footer */
footer {
    background: #000000;
    color: #ffffff;
    padding: 65px 0 0;
}

footer a {
    color: #ffffff;
}

footer a:hover {
    color: #ffffff;
}

footer .footer-menu a:hover {
    color: #ffffff;
    padding-left: 10px;
}

footer .heading-wrapper .h3,
footer .heading-wrapper h3 {
    font-size: 23px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 30px 0;
}

footer .newsletter p,
footer .logo-wrapper p {
    font-size: 16px;
    line-height: 30px;
    margin: 20px 0;
}

footer .social-icons .item {
    display: inline-block;
    font-size: 20px;
    margin: 0 10px 10px 0;
}

footer .info-wrapper .content p {
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
}

footer .footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .footer-menu ul li {
    margin: 0;
    padding: 0;
}

footer .footer-menu ul li a {
    margin: 10px 0;
    font-size: 16px;
    line-height: 20px;
    display: block;
    width: max-content;
}

footer #footer-newsletter {
    background: transparent;
    border: 2px solid #ffffff;
    border-width: 0 0 1px;
    width: 100%;
    position: relative;
    line-height: 30px;
    color: #ffffff;
    height: 30px;
}

footer #footer-newsletter:disabled  {
    opacity: 0.5;
}

footer .newsletter .alert-wrapper {
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    font-size: 12px;
    width: 100%;
    text-align: right;
}

footer .newsletter .alert-wrapper.error {
    color: #ff5e5e;
}

footer .newsletter .input-wrapper {
    position: relative;
}

#footer-newsletter::-webkit-input-placeholder {
    color: #ffffff;
    line-break: 30px;
}

#footer-newsletter:-moz-placeholder {
    color: #ffffff;
    line-break: 30px;
}

#footer-newsletter::-moz-placeholder {
    color: #ffffff;
    line-break: 30px;
}

footer .newsletter .input-wrapper i {
    position: absolute;
    line-height: 30px;
    right: 0;
    bottom: 0;
    z-index: 3;
    min-width: 15px;
    cursor: pointer;
    text-shadow: #000000 0px 0px 5px;;
}

footer .newsletter .input-wrapper i:hover {
    color: #444444;
}

footer .disclamer {
    font-size: 15px;
    line-height: 19px;
    text-align: center;
    padding: 20px 0;
}

footer .copyright {
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    background: #444444;
    padding: 0 10px;
}

/* Payment card slider */
.payment-cards-slider .container {
    text-align: center;
    padding-bottom: 20px;
}

.payment-cards-slider .container .item {
    display: inline-block;
    margin: 5px;
    vertical-align: middle;
}

.payment-cards-slider .container .item img {
    height: 40px;
}

/* page */
.page-content {
    padding-bottom: 50px;
}
.page-content .heading-title h2 {
    text-align: center;
    margin: -30px auto 30px;
}

.page-content a:hover {
    text-decoration: underline;
}

/* form page */
#login,
#lost-password,
#registration-form {
    padding: 50px 0 ;
}

#login .lost-pass-wrapper {
    margin-top: 20px;
}

#login .lost-pass-wrapper a:hover{
    text-decoration: underline;
}

#registration-form .antispam-wrapper div.form-control-grid {
    display: inline-block;
    width: 40px;
    margin-left: 10px;
}

#registration-form .submit-wrapper {
    text-align: right;
}

/* profile  */
#edit-profile,
#profile-password {
    padding-bottom: 50px;
}

#profile-password .form-control-grid .toggle-pass {
    right: 25px;
}

.sidemenu{
    padding-right: 30px;
}

.sidemenu .item{
    border-top: 1px solid rgba(120, 120, 120, 0.15);
    border-bottom: 1px solid rgba(120, 120, 120, 0.15);
    margin-bottom: -1px;
}

.sidemenu .item:hover{
    border-color: #000000;
}

.sidemenu .item a{
    display: block;
    padding: 10px 10px;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.sidemenu .item a:hover {
    text-decoration: none;
    color: #444444;
}

/* Breadcrumbs */
.breadcrumbs {
    display: inline-block;
    width: 100%;
    height: 25px;
    margin: 15px 0;
}

.breadcrumbs ul {
    list-style: none;
    padding: 0;
}

.breadcrumbs ul li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
    vertical-align: middle;
}

.breadcrumbs p {
    margin: 0;
    color: #444444;
}

.breadcrumbs ul li::first-letter {
    text-transform: uppercase;
}

.breadcrumbs ul li:not(.first-element):after {
    position: absolute;
    top: 52%;
    left: -10px;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-family: 'Font Awesome 5 Free';
    content: "\f054";
    font-weight: 600;
    font-size: 10px;
}

#products-list .header-info {
    line-height: 40px;
    margin: -40px 0 30px;
    text-align: right;
    pointer-events: none;
}

#products-list .mobile-filters {
    margin: 0 0 20px;
    border: 10px solid #EDEDED;
    border-width: 0 10px;
    display: none;
    line-height: 40px;
}

#products-list .sort select {
    margin: 0 15px;
}

#products-list-wrapper > p.description {
    padding: 50px 0;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

/* Filters */
#products-list .selected-filters {
    max-width: calc(100% - 125px);
}

#products-list .selected-filters span {
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    margin: 10px 10px 0 0;
    display: inline-block;
    background: #444444;
    padding-left: 7px;
    color: #ffffff;
    line-height: 22px;
    border: 1px solid #444444;
}

#products-list .selected-filters span:hover {
    background: #ffffff;
    color: #444444;
}

#products-list .selected-filters span i {
    font-size: 10px;
    margin: 0 10px 0 5px;
}

#products-list .filters-wrapper {
    padding-bottom: 50px;
}

#products-list .filters-wrapper .mobile-filters-wrapper {
    display: none;
}

#products-list .filter-group-wrapper.group-tip {
    display: none;
}

#products-list .filter-group-wrapper .filter-items-wrapper {
    max-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#products-list .filter-group-wrapper.open  .filter-items-wrapper {
    max-height: 280px;
}

#products-list .filter-group-wrapper .show-more-filtters {
    font-size: 14px;
    line-height: 28px;
    padding-top: 5px;
    width: 100%;
    display: block;
    cursor: pointer;
}

#products-list .filter-group-wrapper .show-more-filtters i {
    line-height: 28px;
    float: right;
    width: 28px;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#products-list .filter-group-wrapper:first-child {
    border-top: 1px solid #ebebeb;
}

#products-list .filter-group-wrapper {
    border-bottom: 1px solid #ebebeb;
    position: relative;
}

#products-list .filter-group-wrapper.open {
    padding-bottom: 20px;
}

#products-list .filter-group-wrapper.cattegory-wrapper,
#products-list .filter-group-wrapper.cattegory-wrapper.open {
    margin-bottom: 50px;
}

#products-list .filter-group-wrapper .title {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0;
}

#products-list .filter-group-wrapper .title:hover {
    color: #444444;
}

#products-list .filter-group-wrapper .title i {
    float: right;
    line-height: 22px;
    font-size: 10px;
}

#products-list .filter-group-wrapper .title i.fa-plus,
#products-list .filter-group-wrapper.open .title i.fa-minus {
    display: block;
}

#products-list .filter-group-wrapper.open .title i.fa-plus,
#products-list .filter-group-wrapper .title i.fa-minus {
    display: none;
}

#products-list .filter-group-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

#products-list .filter-group-wrapper.open ul {
    max-height: 280px;
}

#products-list .filter-group-wrapper ul li a {
    font-size: 16px;
    line-height: 20px;
    padding: 4px 0;
    display: block;
}

#products-list .filter-group-wrapper ul li a.active {
    color: #444444;
    text-indent: 10px;
}

#products-list .filter-group-wrapper ul li a:hover {
    text-indent: 10px;
}

#products-list .filter-group-wrapper .form-check {
    font-size: 16px;
    line-height: 20px;
    padding-top: 4px;
    display: block;
    padding-bottom: 4px;
}

#products-list .filter-group-wrapper .form-check label:hover {
    color: #444444;
    cursor: pointer;
}

#products-list .filter-group-wrapper .filter-search {
    border: 1px solid transparent;
    width: 100%;
    line-height: 44px;
    margin: 0;
    padding: 0 20px 0 40px;
    max-height: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
}

#products-list .filter-group-wrapper.open .filter-search {
    max-height: 70px;
    border: 1px solid #f3f3f3;
    margin: 10px 0 20px;
}

#products-list .filter-group-wrapper.open.cattegory-wrapper:after {
    content: none;
}

#products-list .filter-group-wrapper.group-pol .filter-search,
#products-list .filter-group-wrapper.group-dostupnost .filter-search,
#products-list .filter-group-wrapper.group-niche .filter-search,
#products-list .filter-group-wrapper.group-tip .filter-search,
#products-list .filter-group-wrapper.group-akcija .filter-search,
#products-list .filter-group-wrapper.group-tester .filter-search {
    display: none;
}

#products-list .filter-group-wrapper.group-pol.open:after,
#products-list .filter-group-wrapper.group-dostupnost.open:after,
#products-list .filter-group-wrapper.group-niche.open:after,
#products-list .filter-group-wrapper.group-tip.open:after,
#products-list .filter-group-wrapper.group-akcija.open:after,
#products-list .filter-group-wrapper.group-tester.open:after {
    content: none;
}

/* Page pagination */
.page-pagination {
    padding: 50px 0 130px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}

.page-pagination .item {
    padding: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.page-pagination .item.active {
    color: #444444;
    font-weight: 700;
}

.page-pagination .item:hover {
    color: #444444;
}

.page-pagination .gotopage-wrapper {
    float: right;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding-right: 10px;
}

.page-pagination .gotopage-wrapper .title {
    line-height: 40px;
    margin-right: 10px;
}

.page-pagination .gotopage-wrapper #gotopage-input {
    width: 40px;
    height: 40px;
    border: 1px solid #ebebeb;
    text-align: center;
}

.page-pagination .gotopage-wrapper .btn {
    width: 40px;
    height: 40px;
    border: 1px solid #777777;
    color: #ffffff;
    background: #777777 !important;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
}

.page-pagination .gotopage-wrapper .btn:hover {
    background: #444444 !important;
    color: #ffffff !important;
}

/* Article listing */
.artilcle-listing .item {
    padding-bottom: 50px;
}

.artilcle-listing .item .date {
    margin: 30px 0 10px;
    font-size: 13px;
    line-height: 15px;
}

.artilcle-listing .item .date span.category,
.artilcle-listing .item .date span.category a {
    margin-left: 5px;
}

.artilcle-listing .item .title {
    font-size: 27px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.artilcle-listing .item .description {
    font-size: 15px;
    line-height: 21px;
    height: 63px;
    overflow: hidden;
    width: 100%;
}

.artilcle-listing .item .link-btn {
    margin: 20px 0 10px;
}

/* Article detail */
.news-content .main-headline-wrapper .subtitle {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    margin: -40px 0 40px;
}

.news-content .main-headline-wrapper .subtitle .category {
    margin-right: 10px;
}

.news-content .main-headline-wrapper .subtitle .date {
    margin-left: 10px;
}

/* Home breand slider*/
.breand-slider {
    margin-top: 25px;
}

.breand-slider .slick-initialized .slick-slide {
    border-right: 1px solid #444444;
}

.breand-slider .img-wrapper {
    width: 100%;
}

.breand-slider .heading-wrapper .title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    padding: 30px 0 20px;
}

.breand-slider .description-wrapper {
    display: -ms-flexbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #ffffff;
}

.breand-slider .description-wrapper .logo-wrapper {
    width: 30%;
}

.breand-slider .description-wrapper .logo-wrapper img {
    width: 100%;
}

.breand-slider .description-wrapper .description {
    width: 70%;
    position: relative;
}

.breand-slider .description-wrapper .description > p{
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    padding: 20px;
    margin: 0;
}

.breand-slider .product.product-item {
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breand-slider .product-slider {
    padding: 15px 50px;
    background: #ffffff;
}

.breand-slider .product.product-item .img-wrapper,
.breand-slider .product.product-item .content-wrapper {
    width: 50%;
}

.breand-slider span.prev-arrow.slick-arrow,
.breand-slider span.next-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    left: 5px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 30px;
}

.breand-slider span.next-arrow.slick-arrow {
    left: auto;
    right: 5px;
}

/* Breands */
.brands-wrapper .item {
    text-align: center;
    padding: 10px 0;
}

.brands-wrapper .item .title {
    width: 100%;
    display: none;
    font-size: 16px;
}

.brands-wrapper .item img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.brands-wrapper .item:hover img {
    opacity: 0.5;
}

/* PRODUCT */
.pl-product .benefits-slider,
.pl-product .benefits-slider a{
    background: #444444;
    color: #ffffff;
    cursor: pointer;
}

.pl-product .benefits-slider .item:hover a{
    color: #444444;
}

.pl-product .benefits-slider img  {
    filter:  brightness(0) invert(1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pl-product .benefits-slider .item:hover a img  {
    filter:  brightness(1) invert(0);
}

#product .product-thumbs-wrapper > .slider-init.slick-initialized {
    padding: 0 10px;
}

#product .no-gallery {
    margin: auto;
}

#product .product-thumbs-wrapper > .slider-init.slick-initialized.show-arrows {
    padding: 30px 10px;
}

#product .product-thumbs-wrapper .prev-arrow.slick-arrow,
#product .product-thumbs-wrapper .next-arrow.slick-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    cursor: pointer;
}

#product .product-thumbs-wrapper .next-arrow.slick-arrow {
    top: auto;
    bottom: 0;
}

#product .product-thumbs-wrapper .slick-arrow:hover,
#product .product-thumbs-wrapper .slick-arrow:hover {
    color: #444444;
}

#product .product-details h1.title {
    font-size: 32px;
    text-transform: none;
    letter-spacing: 1px;
    text-align: left;
    line-height: 35px;
}

#product .product-details h1.title:after {
    left: 0;
    bottom: -25px;
}

#product .product-details-wrapper .price-wrapper {
    font-weight: 700;
    margin-bottom: 20px;
    min-height: 80px;
}

#product .product-details-wrapper .current-price {
    font-size: 24px;
}

#product .product-details-wrapper .old-price {
    opacity: 0.5;
    text-decoration: line-through;
    margin-bottom: -5px;
}

#product .product-details-wrapper .details {
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 27px;
    max-height: 54px;
    overflow: hidden;
    font-size: 15px;
}

#product .product-details-wrapper .btn-read-more {
    font-size: 12px;
    line-height: 21px;
    color: #444444;
    margin: -20px 0 20px;
    cursor: pointer;
}

#product .product-details-wrapper .code,
#product .product-details-wrapper .category,
#product .product-details-wrapper .category a,
#product .product-details-wrapper .group,
#product .product-details-wrapper .group a,
#product .product-details-wrapper .brand,
#product .product-details-wrapper .brand a {
    font-size: 15px;
    line-height: 20px;
    color: #777777;
}

#product .product-details-wrapper .code span.text,
#product .product-details-wrapper .category span.text,
#product .product-details-wrapper .group span.text,
#product .product-details-wrapper .brand span.text {
    margin-right: 20px;
    color: #444444;
    padding: 10px 0;
    display: inline-block;
}

#product .product-details-wrapper .available-wrapper p {
    margin: 0;
    line-height: 40px;
    padding-left: 20px;
    position: relative;
}

#product .product-details-wrapper .available-wrapper p:before {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: calc(50% - 7px);
    border-radius: 50%;
    background: #28a745;
}

#product .product-details-wrapper .available-wrapper p.notavailable-item:before {
    background: #dc3545;
}

#product .product-details-wrapper .size-wrapper {
    width: 100%;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

#product .product-details-wrapper .size-wrapper .size {
    display: inline-block;
    font-size: 20px;
    border: 1px solid #cdcdcd;
    width: 100%;
    max-width: max-content;
    position: relative;
    margin: 0  5px 5px 0;
    min-width: 50px;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#product .product-details-wrapper .size-wrapper .size:hover {
    border: 1px solid #8f8f8f;
}

#product .product-details-wrapper .size-wrapper .size.price-wiuth-discount:before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 32px 32px 0;
    border-color: transparent #444444 transparent transparent;
    pointer-events: none;
}

#product .product-details-wrapper .size-wrapper .size.price-wiuth-discount:after{
    content: '%';
    position: absolute;
    right: 0;
    top: 0;
    height: 25px;
    width: 17px;
    text-align: center;
    line-height: 21px;
    font-size: 13px;
    color: #ffffff;
    pointer-events: none;
}

#product .product-details-wrapper .size-wrapper .size:first-child {
    padding-left: 0;
}

#product .product-details-wrapper .size-wrapper .size a {
    display: block;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0);
}

#product .product-details-wrapper .size-wrapper .size.active a {
    color: #444444;
    pointer-events: none;
    border: 1px solid #444444;
}

#product .product-details-wrapper .size-wrapper .size a .old-price {
    font-size: 15px;
    line-height: 20px;
    display: block;
    text-decoration: line-through;
    color: #ccc;
}

#product .product-details-wrapper .size-wrapper .size .title {
    display: block;
    font-size: 18px;
}

#product .product-details-wrapper .buy-wrapper {
    margin: 25px  0;
}

#product .product-details-wrapper .buy-wrapper .quantity-wrapper .input-group{
    width: max-content;
}

#product .product-details-wrapper .buy-wrapper .quantity-wrapper .btn,
#product .product-details-wrapper .buy-wrapper .quantity-wrapper input {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border: 1px solid #777777;
    text-align: center;
    background: #ffffff;
    color: #777777;
    padding: 0 0 0 5px;
    font-size: 10px;
}

#product .product-details-wrapper .buy-wrapper .quantity-wrapper .btn:hover{
    color: #ffffff !important;
    background: #444444 !important;
}

#product .product-details-wrapper .buy-wrapper .quantity-wrapper input {
    padding: 0;
    font-size: 15px;
    border-width: 1px 0;
}

#product .product-details-wrapper .detail-social-share,
#product .product-details-wrapper .detail-social-share .sare-items-wrapper{
    display: inline-block;
}

#product .product-details-wrapper .detail-social-share .share-text {
    margin-right: 20px;
    color: #444444;
    padding: 10px 0;
    display: inline-block;
    line-height: 20px;
}

#product .product-details-wrapper .detail-social-share .item {
    display: inline-block;
    margin-right: 15px;
    color: #777777;
    padding: 10px 0;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
}

#product .product-details-wrapper .detail-social-share .item a {
    color: #777777;
}

#product .product-details-wrapper .detail-social-share .item:hover a {
    color: #444444;
}

#product .product-details-wrapper .buy-wrapper .quantity-wrapper,
#product .product-details-wrapper .buy-wrapper .buy-action-wrapper {
    display: inline-block;
}

#product .product-details-wrapper .buy-wrapper .buy-action-wrapper {
    margin: 0 15px;
}

#product .product-details-wrapper .buy-wrapper .add-to-favorite {
    display: none !important;
    border: 1px solid #777777;
    background: #ffffff !important;
    color: #777777 !important;
}

#product .product-details-wrapper .buy-wrapper .add-to-favorite,
#product .product-details-wrapper .buy-wrapper .buy-action-wrapper .btn {
    display: inline-block;
    height: 48px;
    line-height: 48px;
    vertical-align: middle;
    min-width: 48px;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
}

#product .product-details-wrapper .buy-wrapper .add-to-favorite:hover {
    border: 1px solid #444444;
    background: #444444 !important;
    color: #ffffff !important;
}

#product .product-details-wrapper .buy-wrapper .buy-action-wrapper .btn:hover {
    border: 1px solid #444444;
    background: #ffffff !important;
    color: #444444 !important;
}

#product .product-details-wrapper .buy-wrapper .add-to-favorite.remove-fav i {
    font-weight: 900;
}

.product-details-sliders-wrapper {
    margin: 70px auto 30px;
}

.product-main-img .img-wrapper {
    padding: 50px;
}

.product-detail-tabs {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
}

.product-detail-tabs .nav.nav-tabs {
    border: none;
}

.product-detail-tabs .nav.nav-tabs li a {
    font-size: 17px;
    line-height: 20px;
    padding: 0 40px;
    margin: 20px 0;
    border-left: 1px solid #cdcdcd;
    display: inline-block;
}

.product-detail-tabs .nav.nav-tabs li:first-child a {
    padding-left: 0;
    border-left: 0px solid transparent;
}

.product-detail-tabs .tab-content,
.product-detail-tabs .tab-content p {
    font-size: 17px;
    line-height: 27px;
}

.product-detail-tabs .tab-content #spec strong {
    text-transform: uppercase;
    color: #444444;
}

.product-detail-tabs .nav.nav-tabs li:hover a {
    color: #444444;
}

.product-detail-tabs .nav.nav-tabs li a.active {
    font-weight: 700;
    color: #444444;
}

/*cart*/
table.cart-table {
    line-height: 40px;
}

table.cart-table td.product-quantity,
table.cart-table td.product-quantity input {
    width: 70px;
}

table.cart-table .remove-product-from-cart {
    padding: 0;
    width: 40px;
    text-align: center;
    text-indent: 1px;
}

table.cart-table .total-price {
    text-align: right;
}

table.cart-table td span.old-price {
    display: block;
    line-height: 12px;
    font-size: 14px;
    text-decoration: line-through;
    color: #cccccc;
}

body.cart .cart-description a {
    color: #444444;
    font-weight: 700;
}

body.cart .cart-description a:hover {
    color: #444444;
    text-decoration: underline;
}

body.cart .total-sum-wrapper,
body.cart .submit-btn-wrapper,
body.cart .payment-type-wrapper{
    margin: 0 0 50px;
}

body.cart .note-info.alert{
    text-align: center;
    width: 600px;
    margin: 0 auto 30px;
    max-width: 100%;
}

.payment-type-item {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.payment-type-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border-radius: 50%;
}

.payment-type-item:hover input ~ .checkmark {
    background-color: #ccc;
}

.payment-type-item input:checked ~ .checkmark {
    background-color: #444444;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.payment-type-item input:checked ~ .checkmark:after {
    display: block;
}

.payment-type-item .description {
    display: block;
    font-size: 15px;
    line-height: 22px;
    padding: 5px 0;
}

.payment-type-item .checkmark:after {
    top: 4px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
}


body.cart .submit-btn-wrapper a {
    color: #444444;
    font-weight: 700;
}

/* Contact */
#contact {
    margin-bottom: 50px;
}

#contact .company-info {
    margin-top: 30px;
}

#contact_form .antispam-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    line-height: 20px;
    font-style: 14px;
}

#contact_form .antispam-wrapper label{
    margin-right: 15px;
}

#contact_form .btn-wrapper {
    text-align: right;
}

#contact_form .btn-wrapper .btn{
    line-height: 40px;
    height: 42px;
}

.news-pagination {
    color: #333333;
    display: block;
    width: 100%;
    text-align: center;
    margin: 30px auto 100px;
}

.news-pagination a {
    color: #333333;
    display: block;
    width: 100%;
}

.news-pagination .title,
.news-pagination .gotopage-wrapper {
    display: none;
}

.news-pagination .item {
    display: inline-block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 46px;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 20px;
    padding: 0;
    line-height: 42px;
}

.news-pagination .item.active {
    border-color: #444444;
    color: #444444;
}

.news-pagination .item:hover {
    background: #444444;
    color: #ffffff;
    border-color: #444444;
}

.news-pagination .item:hover a {
    color: #ffffff;
}

/* Article datail */
.news-detail-sidebar {
    padding-top: 30px;
    padding-bottom: 30px;
}
.news-detail-sidebar .slider-init{
    padding-bottom: 60px;
}

.news-detail-sidebar .main-headline-wrapper {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 30px;
    padding-bottom: 20px;
}

.news-detail-sidebar .article-item {
    text-align: center;
}

.news-detail-sidebar .article-item .content-wrapper .catdate-wrapper {
    margin-top: 15px;
}

.news-detail-sidebar .article-item .content-wrapper .catdate-wrapper > *{
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
}

.news-detail-sidebar .article-item .content-wrapper .title {
    display: inline-block;
    font-size: 18px;
    line-height: 20px;
    padding: 10px 0;
}

.news-detail-sidebar .social-share > * {
    display: inline-block;
}

.news-detail-sidebar .social-share > .sare-items-wrapper .item {
    display: inline-block;
    margin-left: 5px;
}

.news-detail-sidebar .social-share > .sare-items-wrapper .item:hover a{
    color: #444444;
}

/* Cookie info */
.cookie-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 50px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}

.cookie-wrapper .title {
    font-weight: 700;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 15px;
}

.cookie-wrapper .description {
    margin-bottom: 25px;
}

/* FAQ */
.faq-wrapper {
    padding-bottom: 50px;
}

.faq-wrapper .item {
    border-bottom: 1px solid #444444;
    margin-bottom: 10px;
}

.faq-wrapper .title {
    font-size: 20px;
    font-weight: 700;
    color: #444444;
    position: relative;
    display: block;
    cursor: pointer;
    width: 100%;
    line-height: 24px;
    padding: 5px 0;
}

.faq-wrapper .title i {
    line-height: 24px;
    width: 24px;
    text-align: center;
    float: right;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.faq-wrapper .item.active .title i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-wrapper .description {
    max-height: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

.faq-wrapper .item.active .description {
    max-height: 100vh;
}

/* Product landing page */
.landing_product_list h2.title,
.landing_product_list .two-image-item .title{
    font-size: 25px;
    text-align: center;
    margin: 0 auto 50px;
    padding-top: 30px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    line-height: 40px;
    letter-spacing: 5px;
}

.landing_product_list h2.title:after,
.landing_product_list .two-image-item .title:after {
    content: '';
    position: absolute;
    width: 54px;
    height: 2px;
    background: #444444;
    bottom: -10px;
    left: calc(50% - 27px);
}

.landing_product_list .attribute-list-item {
    margin: 0 auto;
}

.landing_product_list .two-image-item,
.landing_product_list .attribute-list-item,
.landing_product_list .product-list-item {
    margin-bottom: 50px;
    padding: 0 10px;
}

.landing_product_list .page-cover,
.landing_product_list .page-content {
    padding: 0 10px;
}

.landing_product_list .filter-group-wrapper {
    width: 100%;
}

.landing_product_list .two-image-item .description {
    font-size: 25px;
    text-align: center;
    margin: 0 auto 50px;
}

.landing_product_list .attribute-list-item .filter-search {
    margin: 0 auto 50px;
    display: block;
    border: 1px solid #ebebeb;
    line-height: 46px;
    padding: 0 10px;
    border-radius: 7px;
    width: 100%;
}

.etrustmark-wrapper {
    margin: 20px auto;
    display: block;
}