@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";

.clear {
    clear: both
}

.clear.h10 {
    height: 10px
}

.clear.h20 {
    height: 20px
}

.clear.h30 {
    height: 30px
}

.clear.h40 {
    height: 40px
}

.clear.h50 {
    height: 50px
}

.clear.h60 {
    height: 60px
}

:root {
    --swiper-theme-color: #fff;
    --swiper-navigation-color: #fff
}

html,
body {
    font-family: "Poppins", sans-serif !important;
    width: 100%;
    height: 100%
}

.container {
    max-width: 1380px;
    width: unset
}

.header-sec {
    background-color: #000;
    color: #fff
}

.header-ter {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 20px 0
}

.header-ter .container .wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.header-ter .container .wrapper .logo {
    flex: 1;
    display: flex;
    justify-content: center
}

.header-ter .container .wrapper .logo img {
    max-width: 100%;
    height: auto
}

.header-ter .container .wrapper .search {
    width: 320px
}

@media(min-width: 1260px)and (max-width: 1444px) {
    .header-ter .container .wrapper .search {
        width: 250px
    }
}

@media(min-width: 1024px)and (max-width: 1259px) {
    .header-ter .container .wrapper .search {
        width: 250px
    }
}

@media(min-width: 768px)and (max-width: 1023px) {
    .header-ter .container .wrapper .search {
        width: 250px
    }
}

.header-ter .container .wrapper .search .search-box {
    display: flex;
    background: #f9f9f9;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 45px;
    margin: 10px
}

.header-ter .container .wrapper .search .search-field {
    flex: 1;
    width: unset;
    float: unset
}

.header-ter .container .wrapper .search .search-btn {
    width: unset;
    float: unset
}

.header-ter .container .wrapper .search .search-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 15px;
    line-height: unset;
    width: unset;
    margin: 0;
    border: 0;
    background: transparent;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
    color: #000
}

.header-ter .container .wrapper .search .search-btn button i {
    color: #000
}

.header-ter .container .wrapper .search .search-btn button:hover {
    background-color: #000
}

.header-ter .container .wrapper .search .search-btn button:hover i {
    color: #fff
}

.header-ter .container .wrapper .account {
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px
}

.header-ter .container .wrapper .account .user {
    border-left: 1px solid rgba(0, 0, 0, .1);
    border-right: 1px solid rgba(0, 0, 0, .1);
    padding: 0 20px
}

.header-ter .container .wrapper .menu .button {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #484848;
    font-size: 15px;
    font-weight: bold;
    background-color: #f9f9f9;
    border-radius: 50px;
    padding: 15px 30px;
    text-transform: none;
    letter-spacing: unset
}

.header-ter .container .wrapper .menu:hover .button {
    background-color: #1982c0;
    color: #fff;
    border-radius: 20px 20px 0 0
}

.header-ter .container .wrapper .menu:hover .submenu {
    display: block
}

.header-ter .container .wrapper .menu .submenu {
    display: none;
    position: absolute;
    z-index: 6;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
    border-radius: 0 0 20px 20px;
    padding: 30px
}

.header-ter .container .wrapper .menu .submenu .wrapper {
    display: flex;
    align-items: stretch;
    gap: 50px
}

.header-ter .container .wrapper .menu .submenu .wrapper .banners {
    display: flex;
    gap: 30px
}

.header-ter .container .wrapper .menu .submenu .wrapper .nav {
    flex: 1;
    border-left: 1px solid rgba(0, 0, 0, .1);
    padding-left: 50px
}

.header-ter .container .wrapper .menu .submenu .wrapper .nav ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%
}

.header-ter .container .wrapper .menu .submenu .wrapper .nav ul li a {
    display: block;
    padding: 10px;
    border-radius: 20px;
    color: #484848;
    font-size: 24px;
    font-weight: 400
}

.header-ter .container .wrapper .menu .submenu .wrapper .nav ul li a:hover {
    text-indent: 20px;
    color: #fff;
    background-color: #1982c0
}

.header-ter .container .wrapper .cart {
    display: flex;
    align-items: center;
    position: relative
}

.header-ter .container .wrapper .cart .count {
    position: absolute;
    margin: 0 auto;
    right: 0;
    left: 0;
    bottom: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000010;
    color: #fff;
    width: 17px;
    height: 17px;
    border-radius: 50px;
    font-size: 12px
}

.header-ter .container .wrapper .cart .quantity {
    color: #fff;
    font-size: 15px;
    font-weight: 600
}

@media(min-width: 768px)and (max-width: 1023px) {
    .header-ter .container .wrapper .cart .quantity {
        display: none
    }
}

.header-ter .container .wrapper .cart .total {
    color: #484848;
    font-size: 15px;
    font-weight: 600
}

.header-cat {
    background-color: #fff
}

.header-cat .cats {
    padding-bottom: 0
}

.header-cat .menuzord-menu {
    justify-content: space-evenly
}

.header-cat .menuzord-menu li>a {
    font-family: unset;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    padding: 1.5em 0
}

footer .footer-banner img {
    width: 100%
}

footer .footer-contact h1 {
    color: #fff
}

footer ul.list-line-footer li {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 500
}

footer .footer-bg {
    background-color: #000010;
    color: #fff
}

@media(min-width: 1024px)and (max-width: 1259px) {
    footer .footer-bg .logo {
        margin-bottom: 50px
    }
}

@media(min-width: 768px)and (max-width: 1023px) {
    footer .footer-bg .logo {
        margin-bottom: 50px
    }
}

@media(min-width: 264px)and (max-width: 767px) {
    footer .footer-bg .logo {
        text-align: center;
        margin-bottom: 50px
    }
}

footer .footer-bg a {
    color: #fff !important
}

footer .footer-bg h3 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 50px 0 20px 0
}

footer .footer-bg .footer-payment {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px
}

footer .footer-credits {
    background-color: #2c2b2f;
    color: #fff
}

footer .social {
    display: inline-block
}

footer .social li {
    display: inline-block
}

footer .social li a {
    font-size: 20px;
    color: #fff !important
}

footer .social li a i {
    color: #fff !important
}

.no-gutter {
    margin-right: 0;
    margin-left: 0
}

.no-gutter>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.header-cat {
    font-family: "Montserrat", sans-serif;
    border-bottom: 1px solid #ececec;
    margin: 0;
    padding: 0;
    position: relative
}

@media(max-width: tela-menor-width) {
    .header-cat nav {
        display: none
    }
}

.header-cat nav>ul {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.header-cat nav>ul>li:first-child a {
    font-size: 16px;
    font-weight: bold
}

.header-cat nav>ul>li>a {
    display: block;
    padding: 1.8em 1em;
    color: #0c4ca3;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500
}

.header-cat nav>ul>li>a:hover {
    color: #fff;
    background-color: #0c4ca3
}

.header-cat .fastlojas-megamenu>a i {
    margin-right: 1em;
    color: #f78022
}

.header-cat .fastlojas-megamenu:hover>a {
    color: #fff;
    background-color: #0c4ca3
}

.header-cat .fastlojas-megamenu:hover>a i {
    color: #f78022
}

.header-cat .fastlojas-megamenu:hover .content {
    display: block
}

.header-cat .fastlojas-megamenu>.content {
    display: none;
    position: absolute;
    left: 0;
    z-index: 9999 !important;
    padding: 0;
    width: 100%;
    background-color: #fff;
    border-top: 2px solid #0c4ca3;
    color: #282828;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, .09);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, .09);
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, .09)
}

.header-cat .fastlojas-megamenu>.content .p-3 {
    padding: 3em
}

.header-cat .fastlojas-megamenu>.content .nav-pills li a {
    font-size: 14px;
    font-weight: normal
}

.header-cat .fastlojas-megamenu>.content .nav-pills li.active a {
    background-color: #f7f7f7 !important;
    color: #282828
}

.header-cat .fastlojas-megamenu>.content .tab-content,
.header-cat .fastlojas-megamenu>.content .panel-group {
    padding: 2em
}

.header-cat .fastlojas-megamenu>.content .tab-content .panel,
.header-cat .fastlojas-megamenu>.content .panel-group .panel {
    border: 0
}

.header-cat .fastlojas-megamenu>.content .tab-content .panel .panel-heading,
.header-cat .fastlojas-megamenu>.content .panel-group .panel .panel-heading {
    border-radius: 0;
    border: 0;
    background-color: #fff;
    font-weight: normal;
    padding: 0
}

.header-cat .fastlojas-megamenu>.content .tab-content .panel .panel-heading .panel-title,
.header-cat .fastlojas-megamenu>.content .panel-group .panel .panel-heading .panel-title {
    padding: 0
}

.header-cat .fastlojas-megamenu>.content .tab-content .panel .panel-heading .panel-title a,
.header-cat .fastlojas-megamenu>.content .panel-group .panel .panel-heading .panel-title a {
    font-size: 13px;
    display: block;
    padding: 1em;
    background-color: #f7f7f7
}

.header-cat .fastlojas-megamenu>.content .tab-content.b-left,
.header-cat .fastlojas-megamenu>.content .panel-group.b-left {
    border-left: 1px solid #e7e7e7
}

.header-cat .fastlojas-megamenu>.content .tab-content.b-right,
.header-cat .fastlojas-megamenu>.content .panel-group.b-right {
    border-right: 1px solid #e7e7e7
}

.header-cat .fastlojas-megamenu>.content .tab-content h3,
.header-cat .fastlojas-megamenu>.content .panel-group h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1em;
    text-transform: uppercase;
    color: #282828
}

.header-cat .fastlojas-megamenu>.content .tab-content .categories,
.header-cat .fastlojas-megamenu>.content .panel-group .categories {
    margin-bottom: 1em
}

.header-cat .fastlojas-megamenu>.content .tab-content .categories .cover,
.header-cat .fastlojas-megamenu>.content .panel-group .categories .cover {
    margin-bottom: 1em
}

.header-cat .fastlojas-megamenu>.content .tab-content .categories ul li a,
.header-cat .fastlojas-megamenu>.content .panel-group .categories ul li a {
    display: block;
    margin-bottom: 1em
}

.header-cat .fastlojas-megamenu>.content .tab-pane {
    height: auto;
    padding: 0
}

h1.title {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    font-size: 24px;
    text-transform: none;
    font-weight: 500;
    color: #0b0b0b;
    margin: 1.4em 0;
    text-align: left
}

@media(min-width: 264px)and (max-width: 767px) {
    h1.title {
        margin-top: 3.4em
    }
}

h1.title .swiper-control {
    display: flex;
    gap: 10px
}

h1.title .swiper-control .swiper-button-disabled i {
    opacity: .3
}

h1.title .swiper-control i {
    font-weight: normal;
    font-size: 14px
}

.header-content {
    text-align: center;
    padding: 20px 0 0px 0;
    position: relative
}

.header-content h1 {
    font-size: 32px;
    font-weight: 500;
    color: #000
}

.title-bar {
    display: block;
    text-align: center
}

.title-bar h1 {
    font-weight: 300;
    margin: 0;
    text-transform: uppercase
}

.title-bar h3 {
    font-size: 32px;
    font-weight: 500;
    color: #7cc142;
    text-transform: lowercase;
    position: relative
}

.title-bar h3 span {
    color: #1982c0
}

.title-bar.instagram h3 {
    padding-bottom: 0em !important;
    margin-bottom: 0em !important
}

.accordion dt a.is-expanded {
    background-color: #000;
    color: #fff;
    text-indent: 2em;
    margin-bottom: 1em;
    border-radius: 10px
}

.nav-mobile {
    background-color: #fff
}

.nav-mobile .logo-nav-mobile {
    display: block;
    margin: 0 auto;
    margin-top: 18px;
    margin-bottom: 18px;
    width: 138px
}

.steps {
    background: #000
}

.steps ul.list-steps li {
    opacity: .5;
    color: #fff
}

.steps ul.list-steps li i.fa-inverse {
    color: #d9d9d9
}

.steps ul.list-steps li.active {
    opacity: 1;
    color: #fff
}

.steps ul.list-steps li.active i.fa-inverse {
    color: #494949
}

@media(min-width: 1260px)and (max-width: 1444px) {
    .home #swiper-home-slide {
        width: 95%
    }
}

@media(min-width: 1260px) {
    .home #swiper-home-slide {
        width: 95%
    }
}

.home #swiper-home-slide img {
    width: 100%
}

@media(min-width: 264px)and (max-width: 767px) {
    .home #swiper-home-slide img {
        height: 100%;
        object-fit: cover
    }
}

.home .swiper-products-categories {
    margin: 0 auto;
    margin-top: 25px
}

@media(min-width: 1260px)and (max-width: 1444px) {
    .home .swiper-products-categories {
        width: 95%
    }
}

@media(min-width: 1260px) {
    .home .swiper-products-categories {
        width: 95%
    }
}

.home .swiper-products-categories .swiper-slide {
    position: relative
}

.home .swiper-products-categories .swiper-slide:hover .data h3 {
    padding-bottom: .8em
}

.home .swiper-products-categories .swiper-slide .data {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.home .swiper-products-categories .swiper-slide .data h3 {
    text-transform: uppercase;
    color: #fff;
    font-weight: normal;
    font-size: 32px;
    border-bottom: 1px solid #fff;
    padding-bottom: .5em;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s
}

.home .swiper-products-categories img {
    width: 100%;
    height: 600px;
    object-fit: cover
}

.home .title small {
    font-size: 15px;
    font-weight: bold;
    color: #d9d9d9;
    letter-spacing: 2px;
    text-transform: uppercase
}

.home .title h3 {
    font-size: 48px;
    font-weight: bold;
    line-height: 58px;
    color: #7cc142
}

.home .title h3 span {
    color: #0098c9
}

.home .title h3 span.black {
    color: #484848
}

.home .slide {
    position: relative
}

.home .slide .ellipse-slide {
    position: absolute;
    z-index: 2;
    bottom: -110px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-image: url("../img/semanalight/ellipse-slide.png");
    background-repeat: no-repeat;
    width: 400px;
    height: 240px;
    max-width: 100%
}

.home .categories {
    position: relative;
    padding: 60px 0;
    margin-top: -1px;
    background-color: #fff
}

.home .categories .items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
    gap: 20px
}

.home .categories .items a.item {
    background-color: #7cc142;
    border-radius: 20px;
    padding: 10px 10px;
    text-align: center;
    color: #fff;
    color: #fff;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    line-height: 18px
}

.home .categories .items a.item small {
    display: block
}

@media(min-width: 264px)and (max-width: 767px) {
    .home .categories .items a.item {
        padding: 15px 10px
    }
}

.home .categories .items a.item:hover {
    background-color: #57a711
}

.home .categories .owl-categories .item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: stretch;
    background-color: #b5ebff;
    border-radius: 20px;
    padding: 40px 10px;
    text-align: center;
    color: #202020
}

.home .categories .owl-categories .item:hover {
    background-color: #fdd400
}

.home .categories .owl-categories .item h3 {
    font-size: 22px;
    font-weight: normal;
    min-height: 50px
}

.home .products {
    margin: 0 0 25px 0
}

.home .products .title-bar {
    margin-bottom: 100px
}

@media(min-width: 1024px)and (max-width: 1259px) {
    .home .products.with-categories {
        display: none
    }
}

@media(min-width: 768px)and (max-width: 1023px) {
    .home .products.with-categories {
        display: none
    }
}

@media(min-width: 264px)and (max-width: 767px) {
    .home .products.with-categories {
        display: none
    }
}

.home .products.with-categories aside {
    position: sticky;
    background-color: #1982c0;
    border-radius: 0 50px 50px 0;
    padding: 100px 0;
    position: relative
}

.home .products.with-categories aside::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: -100%;
    background-color: #1982c0;
    top: 0
}

.home .products.with-categories aside ul {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.home .products.with-categories aside ul li a {
    display: flex;
    align-items: center;
    padding-left: 20px;
    height: 75px;
    border-radius: 50px 0 0 50px;
    font-family: fantasy;
    font-size: xx-large;
    color: #fff
}

.home .products.with-categories aside ul li a:hover {
    padding-left: 30px;
    background-color: #0098c9
}

.home .banner {
    text-align: center
}

.home .depoiments {
    margin: 100px 0;
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.home .depoiments .depoiment .content {
    background-color: #f9f9f9;
    padding: 50px 50px 80px 50px;
    border-radius: 20px;
    font-size: 18px;
    line-height: 32px;
    color: #000
}

.home .depoiments .depoiment .stars {
    margin-top: 30px;
    color: #e7e7e7
}

.home .depoiments .depoiment .stars .checked {
    color: #fdd400
}

.home .depoiments .user {
    padding: 0 50px;
    margin-top: -35px
}

.home .depoiments .user .avatar img {
    width: 65px;
    height: 65px;
    object-fit: cover
}

.home .depoiments .user h3 {
    font-size: 16px;
    font-weight: 600;
    color: #373737
}

.home .depoiments .user small {
    font-size: 12px;
    color: #898989
}

.home .blog {
    margin-bottom: 100px
}

.home .blog .title {
    margin-bottom: 50px
}

.home .featured-products {
    margin-bottom: 25px
}

.home .featured-products .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 20px;
    min-width: 0
}

@media(min-width: 768px)and (max-width: 1023px) {
    .home .featured-products .wrapper {
        display: block
    }
}

@media(min-width: 264px)and (max-width: 767px) {
    .home .featured-products .wrapper {
        display: block;
        flex-direction: column
    }
}

.home .featured-products .wrapper .banner {
    position: relative;
    flex: 1
}

@media(min-width: 768px)and (max-width: 1023px) {
    .home .featured-products .wrapper .banner {
        margin-bottom: 20px
    }
}

@media(min-width: 264px)and (max-width: 767px) {
    .home .featured-products .wrapper .banner {
        margin-bottom: 20px
    }
}

@media(min-width: 264px)and (max-width: 767px) {
    .home .featured-products .wrapper .banner img {
        max-width: 100%
    }
}

.home .featured-products .wrapper .banner .swiper-control {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px
}

.home .featured-products .wrapper .products {
    min-width: 0;
    margin: 0;
    display: flex;
    gap: 20px
}

.page.list-products {
    margin-top: 80px;
    margin-bottom: 80px
}

.page.list-products .side-cat-content {
    border-radius: 20px;
    padding: 50px 40px
}

.page.list-products .side-cat-content .side-cat-title {
    display: none
}

.page.list-products .side-cat-content .categories ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%
}

.page.list-products .side-cat-content .categories ul li a {
    display: block;
    padding: 10px;
    border-radius: 20px;
    color: #484848;
    font-size: 24px;
    font-weight: 400
}

@media(min-width: 1024px)and (max-width: 1259px) {
    .page.list-products .side-cat-content .categories ul li a {
        font-size: 18px
    }
}

@media(min-width: 768px)and (max-width: 1023px) {
    .page.list-products .side-cat-content .categories ul li a {
        font-size: 18px
    }
}

.page.list-products .side-cat-content .categories ul li a:hover {
    text-indent: 20px;
    color: #fff;
    background-color: #1982c0
}

.page.list-products .side-cat-content .categories ul li a.menusel {
    text-indent: 20px;
    color: #fff;
    background-color: #1982c0
}

.page.list-products .side-cat-content .filter {
    margin: 50px 0;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.page.list-products .side-cat-content .filter .side-title {
    font-size: 15px;
    font-weight: 500;
    color: #bababa;
    text-transform: none
}

.page.list-products .side-cat-content .filter .side-cat-list li a {
    color: #1982c0
}

.page.product.view .list-bread {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 50px
}

.page.product.view .details .prod-info {
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 50px
}

.page.product.view .details .prod-info h1 {
    font-size: 32px;
    font-weight: bold;
    color: #1982c0
}

.page.product.view .details .prod-info .description p {
    font-size: 15px;
    font-weight: 500;
    color: #484848;
    line-height: 25px
}

.page.product.view .details .prod-info .add-cart {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding-top: 30px;
    padding-bottom: 30px
}

.page.product.view .details .prod-info .add-cart form {
    display: flex;
    gap: 10px
}

.page.product.view .details .prod-info .add-cart .quantity {
    display: flex;
    gap: 10px;
    align-items: center
}

.page.product.view .details .prod-info .add-cart .quantity .decrease,
.page.product.view .details .prod-info .add-cart .quantity .increase {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: #7cc142;
    color: #fff;
    border: none
}

.page.product.view .details .prod-info .add-cart .quantity input {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 60px;
    border-radius: 50px;
    background-color: #efefef;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #484848
}

.page.product.view .details .prod-info .add-cart .button {
    flex: 1;
    align-self: stretch
}

.page.product.view .details .prod-info .add-cart .button button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    min-height: 30px;
    font-weight: 500;
    color: #fff;
    background-color: #7cc142;
    border-radius: 50px;
    border: none;
    height: 100%;
    width: 100%
}

.page.product.view .details .prod-info .price {
    display: flex;
    gap: 10px
}

.page.product.view .details .prod-info .price h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000
}

.page.product.view .details .prod-info .price span {
    font-size: 15px;
    font-weight: 500;
    color: #bababa
}

.page.product .products-relacted {
    margin-top: 100px;
    margin-bottom: 100px
}

.page.product .products-relacted .title-bar {
    margin: 50px 0
}

.prod-item {
    height: unset !important
}

.prod-item .prod-sku {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #6f6f6f
}

.prod-item .prod-img {
    height: unset
}

.prod-item .prod-img .prod-align {
    height: unset
}

.prod-item .prod-img .prod-align picture img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.prod-item .prod-desc h1 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    height: 75px
}

.prod-item .prod-desc .btn-cart {
    display: none;
    position: relative
}

.variables {
    margin: 20px 0
}

.variables .colors {
    display: flex;
    gap: 5px
}

.variables .colors li a {
    display: flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: red;
    border: 1px solid #e7e7e7
}

ul.paginacao li.active a {
    background: #000;
    border-color: #000;
    pointer-events: none
}

.blog .list .item {
    display: flex;
    gap: 40px
}

@media(min-width: 768px)and (max-width: 1023px) {
    .blog .list .item {
        flex-direction: column
    }
}

@media(min-width: 264px)and (max-width: 767px) {
    .blog .list .item {
        flex-direction: column
    }
}

.blog .list .item .img img {
    width: 100%
}

.blog .list .item .data {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.blog .list .item .data .info {
    padding-top: 10px
}

.blog .list .item .data .info h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 14px
}

.blog .list .item .data .info .date {
    font-size: 14px;
    font-weight: 400;
    color: #686868;
    margin-bottom: 14px
}

.blog .list .item .data .info .excerpt {
    font-size: 14px;
    font-weight: 400;
    color: #686868;
    margin-bottom: 14px
}

/*# sourceMappingURL=fastlojas.min.css.map */