@import "./_theme-variables.css";
@import "./fonts.css";
@import "./wc-block.css";


body {
    font-family: 'Paralucent Medium', sans-serif;
}

/* bootstrap */
.btn {
    border-radius: 0;
}
.card {
    border-radius:0;
}
.btn-primary {
    background-color: var(--dot-primary-color);
    border-color: var(--dot-primary-color);
}

/* General */
.size-auto, 
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
	max-width: 100%;
	height: auto;
}

#header_website {
    background: var(--dot-primary-color);
    padding: 17px 0;
}
#header_website .logo-website {
    max-width: 171px;
}
#header_website .logo-website img {
    width: 100%;
    height: auto;
}
body.to-header-sticky #header_website {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1045;
    padding: 3px 0;
    left: 0;
    right: 0;
    -webkit-animation-name: fadeInDown;
    -webkit-animation-duration: 5.0s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: anim_titles;
    -moz-animation-duration: 5.0s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: normal;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
}

@keyframes fadeInDown {
    0% {
       opacity: 0;
       transform: translateY(-21px);
    }
    100% {
       opacity: 1;
       transform: translateY(0);
    }
 } 

body.to-header-sticky #header_website .logo-website {
    max-width: 151px;
}
body.to-header-sticky > div {
    /* padding-top: 7.1rem; */
    padding-top: 90px;
}

#header_website .header-site-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#header_website .header-site-main .menu-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: .5rem;
}

@media (min-width: 992px){
    #header_website .header-site-main .navbar.btn-mobile-menu-w {
        display: none;
    }
}
@media (max-width: 992px){
    #header_website .header-site-main .menu-wrapper .btn-red-custom,
    #header_website .header-site-main .menu-wrapper .navbar {
        display: none;
    }
}


/* #header_website .header-item {
    display: flex;
    align-items: center;
} */

.btn-red-custom {
    border-color: var(--dot-red-color);
    color: var(--dot-red-color) !important;
    /* margin: 0 .5rem; */
}
.btn-red-custom:focus-visible,
.btn-red-custom:active,
.btn-red-custom:hover{
    border-color: var(--dot-red-hover-color);
    color: var(--dot-red-hover-color);
}

button#btn_search {
    background: none;
    border: 1px solid #ffffff7a;
    padding: 5px;
}

button#btn_search > svg {
    stroke: white;
}

@media (max-width: 768px){
    .wrapper-btn-trabalhe-conosco {
        display: none;
    }
}



.site-footer {
    border-top: 5px solid rgba(var(--dot-primary-color), 0.8);
    min-height: 91px;
    background-color: var(--dot-primary-color);
    color: white;
    padding: 51px 0 21px;
    font-size: 81%;
}
.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer .copyright {
    text-align: center;
}

.site-footer .footer-widgets {
    margin-bottom: 51px;
}
@media (max-width: 992px){
    .site-footer .footer-widgets {
        text-align: center;
    }
}

.site-footer .footer-widgets ul.menu {
    padding: 0;
}
.site-footer .footer-widgets ul.menu li {
    list-style: none;
    margin-bottom: 15px;
}
.site-footer .footer-widgets .widget-title {
    font-size: 21px;
}

/* WooCommerce */

/* Grid System */
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2{
    flex: 0 0 50%;
    max-width: 50%;
}

.woocommerce .related.products > h2 {
    font-size: 1.5rem;
}

/* Shop */

.shop-content{
    padding: 3rem 0;
}

.shop-content .row{
    margin-left: 0;
    margin-right: 0;
}

.post-type-archive-product .content-area, 
.product-template-default .content-area,
.tax-product_cat .content-area{
    padding: 0;
}

.woocommerce .woocommerce-breadcrumb a {
    font-weight: 700;
}

.woocommerce ul.products.columns-1 li.product:first-child, 
.woocommerce-page ul.products.columns-1 li.product:first-child {
    margin-top: 20px;
}

.woocommerce .products ul,
.woocommerce ul.products {
    border-top: 1px solid var(--dot-border-light-color);
    padding-top: 21px;
}
.woocommerce ul.products {
    grid-gap: 20px !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0;
    padding: 0 !important;
}

.woocommerce ul.products li.product .wc_dot-product-image {
    border: 1px solid #e8e8e8;
    padding: 11px;
    margin: 0 0 12px;
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
    padding-top: 100%;
    position: relative;
    transition-duration: .1s;
    transition-property: transform;

    
}
@media (max-width: 769px) {
    .woocommerce ul.products li.product .wc_dot-product-image {
        padding-top: 67%;
    }
}


.woocommerce ul.products li.product a img {
    left: 50%;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size: 15px;
    color: #000;
    margin: 0;
    padding: 0;
    margin-bottom: 7px;
}

.post-type-archive-product .woocommerce-loop-product__title{
    margin-bottom: 0.5rem !important;
}

.woocommerce ul.products li.product .button {
    margin-top: 0;
}

.woocommerce ul.products li.product p{
    color: #000;
}

.woocommerce ul.products li.product .price{
    color: #000;
    font-weight: 600;    
}

.woocommerce ul.products li.product .price ins {
    font-size: 140%;
}

.woocommerce ul.products li.product .onsale{
    top: 16px;
    right: 0;
    left: 0;
    transform: rotate(90deg);
    border-radius: 0;   
    width: 83px;
    padding: 0;
    background-color: var(--dot-primary-color);
    margin: 0;
    font-weight: 400;
}

.woocommerce ul.products li.product .onsale:before {
    content: "";
    position: absolute;
    top: 0;
    left: 83px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 22px 0 0;
    border-color: var(--dot-primary-color) transparent transparent transparent;
}

.woocommerce ul.products li.product .onsale:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 83px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 22px 24px 0;
    border-color: transparent transparent var(--dot-primary-color) transparent;
}

.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span{
    color: #000;
}

.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 12px;
}


/* Single Product */
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt,
.woocommerce ul.products li.product .button {
    background-color: var(--dot-primary-color);
    color: #fff;
}

.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover,
.woocommerce ul.products li.product .button:hover {
    background-color: var(--dot-primary-highlight);
}

.product_meta > span{
    display: block;
}
.product_meta {
    font-size: .85em;
}
.product_meta .posted_in > a {
    color: var(--dot-primary-color);
}

.woocommerce div.product p.price del, 
.woocommerce div.product span.price del,
.woocommerce ul.products li.product .price del .woocommerce-Price-amount{
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.woocommerce div.product p.price ins, 
.woocommerce div.product span.price ins, 
.woocommerce-Price-amount {
    font-size: 25px;
    color: #000;
    font-weight: 700;
}

.woocommerce span.onsale{
    top: 19px;
    left: 35px;
    transform: rotate(90deg);
    border-radius: 0;   
    width: 84px;
    padding: 0;
    background-color: var(--dot-primary-color);
    margin: 0;
    font-weight: 400;
}

.woocommerce span.onsale:before {
    content: "";
    position: absolute;
    top: 0;
    left: 83px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 23px 22px 0 0;
    border-color: var(--dot-primary-color) transparent transparent transparent;
}

.woocommerce span.onsale:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 83px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 22px 23px 0;
    border-color: transparent transparent var(--dot-primary-color) transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs{
    padding: 0;

}

.woocommerce div.product .woocommerce-tabs ul.tabs li{
    border-radius: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after, 
.woocommerce div.product .woocommerce-tabs ul.tabs li::before{
    content: none;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button{
    background-color: #ffeb8a;
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover{
    background-color: #ffe252;
}



.woocommerce ul.products li.product {
    background-color: #fff;
    border-radius: 0;
    border: none;
    box-shadow: none;
    height: 100%;
    display: block;
    text-decoration: none;
    /* overflow: hidden; */
    width: inherit;
    padding: 7px;
}
.woocommerce ul.products li.product a img {
    margin: 0;
}

/* Cart */

.woocommerce-cart table.cart td.actions .coupon .input-text{
    width: 150px;
}


/* Checkout */
.woocommerce form .form-row {
    display: block;
}
.woocommerce-checkout #customer_details{
    margin-bottom: 20px;
}
.woocommerce table.shop_table{
    border-collapse: collapse;
}
.woocommerce table.shop_table thead{
    background-color: var(--dot-primary-color);
    color: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    display: block;
    text-align: left;
}
.woocommerce ul.products li.product a img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 1em;
    box-shadow: none;
    float: unset;
    max-height: 151px;
}
.woocommerce ul.products li.product:hover {
    background-color: #fcfcfc;
    border-color: var(--dot-primary-highlight);
}

/* Convert the standard WooCommerce products list into a modern responsive grid. */
.woocommerce ul.products {
    --grid-gap: 32px;
    --auto-grid-min-size: 200px;
    grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
    grid-gap: var(--grid-gap);
    display: grid;
}
.woocommerce ul.products:before{
    content:unset!important;
}
.woocommerce ul.products li.product {
    width: 100%!important;
    display:flex;
    flex-direction:column;
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    flex-grow: 1;
    text-align: center;
}

/* Product Categories list sidebar */

.woocommerce .wp-block-woocommerce-product-categories a {
    color: var(--dot-primary-color);
    text-decoration: none;
}
.woocommerce .wp-block-woocommerce-product-categories > ul {
    padding: 0;
    list-style: none;
}
.woocommerce .wp-block-woocommerce-product-categories > ul > li > a {
    font-weight: bold;
}
.woocommerce .wp-block-woocommerce-product-categories .wc-block-product-categories-list-item-count {
    font-size: 81%;
    color: var(--dot-gray-color);
    font-style: italic;
}

.woocommerce .wp-block-woocommerce-product-categories .wc-block-product-categories-list--depth-2 {
    font-style: italic;
}

.woocommerce .wc-block-product-categories-list--depth-1 {
    border-bottom: 1px solid var(--dot-gray-color);
    border-left: 1px solid var(--dot-gray-color);
    margin-bottom: 7px;
    margin-left: 0;
    padding-left: 0;
    display: none;
}

.woocommerce li.dot-category-expanded > ul.wc-block-product-categories-list--depth-1 {
    display: block;
}

.woocommerce .wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item {
    position: relative;
    margin-bottom: 9px;
}

.woocommerce .wc-block-product-categories-list--depth-1 > li {
    list-style: none;
    background: var(--dot-gray-light-extra-color);
    padding: 7px 7px 7px 11px;
}

/*.woocommerce .wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item::after {*/

.btn-dot-accordion::before {
    color: var(--dot-gray-color);
    content: "+";
    font-style: normal!important;
    font-weight: bold!important;
    font-variant: normal!important;
    text-transform: none!important;
    height: 15px;
    font-size: 15px;
    margin-left: 0;
    vertical-align: middle;
    transition: .2s ease-out;
    font-family: serif;
    padding: 0;
    margin: 0;
    line-height: 1;
}
li.dot-category-expanded .btn-dot-accordion::before {
    content: "-";
}

.woocommerce .wc-block-product-categories-list--depth-0 .btn-dot-accordion {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    margin: 0;
    padding: 0 9px;
}


/*
.woocommerce ul.wc-block-product-categories-list {
    list-style-type: none;
    padding: 0;
}

.woocommerce ul.wc-block-product-categories-list > li {
    padding: 0 0 0 11px;
}
*/

/* main menu product categories */
.navbar-toggler {
    border: none;
    border-radius: 0;
}

/* #menu-intersul-theme-main-menu > li:not(:last-child) {
    border-right: 1px solid #fff;
} */
#menu-intersul-theme-main-menu li a.nav-link {
    color: white;
}

.offcanvas {
    background-color: var(--dot-primary-color);
}
.offcanvas .offcanvas-body {
    text-align: center;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 1px;
}

.menu-mobile .nav-mobile-wrapper {
    flex-grow: 1;
    height: calc(100% - 180px);
    margin: 1.875rem 0;
    padding: 1.875rem 0;
    overflow: auto;
    border-top: solid 2px var(--color_header_details);
    border-bottom: solid 2px var(--color_header_details);
}

.menu-product-categories-mobile {
    padding: 0;
    list-style: none;
    margin:0;
}

.menu-product-categories-mobile a {
    color: var(--dot-primary-color);
    text-decoration: none;
}

.menu-product-categories-mobile > li {
    /* background-color: var(--dot-primary-color); */
    position: relative;
}

/*
.menu-product-categories-mobile > li::after {
    transform: rotate(-180deg);
    top: 7px;
    color: var(--dot-gray-color);
    position: absolute;
    right: 7px;
    content: "^";
    font-style: normal!important;
    font-weight: bold!important;
    font-variant: normal!important;
    text-transform: none!important;
    height: 15px;
    font-size: 15px;
    margin-left: 0.3125rem;
    vertical-align: middle;
    transition: .2s ease-out;
}*/
.menu-product-categories-mobile > li > a {
    font-weight: bold;
    color: #ffffff;
    display: block;
    padding: 3px 0;
    margin-bottom: 15px;
}
.menu-product-categories-mobile > li > ul {
    /* border-bottom: 1px solid var(--dot-gray-color);
    border-left: 1px solid var(--dot-gray-color); */
    margin-bottom: 7px;
    margin-left: 0;
    padding-left: 0;
}

.menu-product-categories-mobile > li > ul > li {
    list-style: none;
    background: var(--dot-gray-light-extra-color);
    padding: 7px 7px 7px 11px;
}
/* end: mobile menu product categories */

/* WC product detail */
#content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
    float: none;
    width: unset;
}
#content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    float: none;
    width: unset;
    clear: unset;
}

.woocommerce div.product div.images img {
    width: auto;
    box-shadow: none;
    max-height: 400px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: auto;
    max-width: 100%;
}

.custom-wc-single-product-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

.custom-wc-single-product-columns .custom-wc-single-product-image-column {
    width: 33%;
}
.custom-wc-single-product-image-column .woocommerce-product-gallery {
    position: -webkit-sticky;
    position: sticky !important;
    top: 111px;
}

.custom-wc-single-product-columns .custom-wc-single-product-description-column {
    width: 68%;
}

@media (max-width: 768px){
    .custom-wc-single-product-columns .custom-wc-single-product-image-column,
    .custom-wc-single-product-columns .custom-wc-single-product-description-column {
        width: 100%;
    }
}



/* @media (max-width: 768px){
    #content div.product div.images,
    .woocommerce #content div.product div.summary,
    .woocommerce div.product div.images,
    .woocommerce div.product div.summary,
    .woocommerce-page #content div.product div.images,
    .woocommerce-page #content div.product div.summary,
    .woocommerce-page div.product div.images,
    .woocommerce-page div.product div.summary {
        float: none;
        width: 100%;
    }
} */
/* end: WC product detail */


/* home articles */
.dot-home-articles {
    display: grid;
    grid-gap: 20px;
}
@media (min-width: 600px){
    .dot-home-articles {
        grid-template-columns: unset !important;
        grid-template: 
                "a b"
                "a c";
    }

    .dot-home-articles li:nth-child(1) {
        grid-area: a;
    }
    .dot-home-articles li:nth-child(1) img {
        height: 520px;
    }
    
    .dot-home-articles li:nth-child(2) {
        grid-area: b;
    }
    
    .dot-home-articles li:nth-child(3) {
        grid-area: c;
    }
}

.dot-home-articles li {
    position: relative;
    overflow: hidden;
    background-color: black;
}
.dot-home-articles li figure {
    margin: 0;
}
.dot-home-articles li img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 250px;
    opacity: .7;
}
.dot-home-articles li .wp-block-post-title {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 11px;
    color: white;
    line-height: 1;
}

/* video */
.wp-block-embed {
	background: lightgray;
    position: relative;
    padding-top: 56.25%;
}
/* .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
    padding-top: 56.25%;
    position: relative;
    content: "";
    display: block;
} */
.wp-block-embed.wp-embed-aspect-16-9 figure {
    margin: 0;
}
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* grid posts */
.dotdigital-posts-w {
    display: grid;
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    grid-template-columns: repeat(3,1fr);
}

@media (max-width: 992px){
    .dotdigital-posts-w {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 544px){
    .dotdigital-posts-w {
        grid-template-columns: 1fr;
    }
}






.dotdigital-posts-w .wp-post-image {
    border-radius: 0;
    box-shadow: rgb(0 0 0/41%) 0px 5px 11px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.dotdigital-posts-w .card {
    width: 100%;
    height: 100%;
}
.dotdigital-posts-w .entry-title {
    display: block;
    line-height: 1.1;
}
.dotdigital-posts-w .entry-title a {
    display: block;
    color: var(--dot-text-color-default);
    font-size: 19px;
    text-decoration: none;
    margin-bottom: 11px;
}

/* post */
.posted-on {
    font-size: 14px;
}

/* nav pagination */
.comment-navigation .nav-next,
.comment-navigation .nav-previous,
.post-navigation .nav-next,
.post-navigation .nav-previous,
.posts-navigation .nav-next,
.posts-navigation .nav-previous {
    width: 50%;
    display: inline-block;
}
.post-navigation {
    margin: 21px 0;
}
.comment-navigation .nav-next,
.post-navigation .nav-next,
.posts-navigation .nav-next {
    text-align: right;
}

.single .post-navigation a {
    margin: 2px;
    display: inline-block;
    text-align: center;
    color: var(--dot-primary-color);
}

.nav-previous a,
.nav-next a {
    border: solid 1px;
    border-color: var(--dot-primary-color);
    border-radius: 0;
}

.nav-previous a:before {
    content: '←';
    margin-right: 9px;
}
.nav-next a:after {
    content: '→';
    margin-left: 9px;
}

.post-navigation a {
    background: 0 0;
    font-size: 16px;
    font-size: 1.06666rem;
    padding: 0 1.5em;
    height: 2.33333em;
    line-height: calc(2.33333em - 3px);
}
.post-navigation a,
.post-navigation a:focus,
.post-navigation a:hover,
.post-navigation a:visited {
    text-decoration: none;
}

@media (min-width: 421px){
    .single .post-navigation .nav-links {
        display: flex;
    }

    .single .post-navigation .nav-next,
    .single .post-navigation .nav-previous {
        flex: auto;
    }
}

/* blog pagination */
body.blog .dot-pagination {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}
body.blog .dot-pagination .page-numbers {
    border-radius: 0;
}
body.blog .dot-pagination a {
    text-decoration: none;
}

body.blog .dot-pagination .nav-links {
    display: inline-block;
    width: 100%;
}
body.blog .dot-pagination .page-numbers.current,
body.blog .dot-pagination .page-numbers:focus,
body.blog .dot-pagination .page-numbers:hover {
    color: #fff;
    background-color: var(--dot-primary-color);
    border-color: var(--dot-primary-color);
}

body.blog .dot-pagination .page-numbers,
body.blog .dot-pagination .page-numbers {
    border-style: solid;
    border-width: 1px;
    line-height: 2.33333em;
}
body.blog .dot-pagination .page-numbers {
    display: inline-block;
    width: 2.33333em;
    height: 2.33333em;
    font-size: 16px;
    font-size: 1.06666rem;
    line-height: calc(2.33333em - 3px);
}
body.blog .dot-pagination .page-numbers {
    color: var(--dot-primary-color);
    border-color: var(--dot-primary-color);
}

body.blog .dot-pagination .prev,
body.blog .dot-pagination .prev:visited,
body.blog .dot-pagination .prev:focus,
body.blog .dot-pagination .next,
body.blog .dot-pagination .next:visited,
body.blog .dot-pagination .next:focus {
    display: inline-block;
    width: auto;
}
body.blog .dot-pagination .prev.page-numbers,
body.blog .dot-pagination .next.page-numbers {
    padding: 0 1.5em;
    height: 2.33333em;
    line-height: calc(2.33333em - 3px);
}
body.blog .dot-pagination .next.page-numbers {
    float: right;
}
body.blog .dot-pagination .prev.page-numbers {
    float: left;
}
/* end: blog pagination */





/* header with image */
header.post-title-with-image-featured {
    align-items: flex-end;
    background-position: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 530px;
    overflow: hidden;
    overflow: clip;
    padding: 3.3em 0;
    position: relative;
}

@media (max-width: 768px) {
    header.post-title-with-image-featured {
        min-height: 51vw;
        padding: 1em;
    }
}
header.post-title-with-image-featured img {
    border: none;
    bottom: 0;
    box-shadow: none;
    width: 100%;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
}
header.post-title-with-image-featured .entry-title {
    z-index: 1;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 3px gray;
}

/* title in single without image featured */
body.single-post header.without-image-featured h1.entry-title {
    margin-top: 2em;
    color: var(--dot-primary-color);
}

/* related posts */
.dotdigital-single-related-posts-container {
    margin-bottom: 3em;
}
.dotdigital-single-related-posts-container .post-has-thumb {
    margin-bottom: 1em;
}

@media (min-width: 992px){
    .dotdigital-single-related-posts-container .dotdigital-posts-w {
        grid-template-columns: repeat(4,1fr);
    }
}

/* whatsapp fixed */
#buttonsBottomFixedWrapper {
    bottom: 0;
    position: fixed;
    right: 0;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 9px 9px 0;
    row-gap: 9px;
}

#buttonsBottomFixedWrapper > a {
    border-radius: 8px;
    opacity: .75;
    padding: 5px 9px;
    position: relative;
    line-height: 1;
    font-size: 3em;
    display: block;
    width: 73px;
    height: 65px;
}

 #btnScrollToTop {
    position: relative;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;

    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    background: #FFF;

    height: 9px;
    opacity: 0;
    padding: 0 0 31px 0;
    
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    width: 35px;
    filter: alpha(opacity=75);
    opacity: 1;
}
#btnScrollToTop:hover {
    filter: alpha(opacity=100);
    opacity: 1;
}
#btnScrollToTop svg {
    fill: var(--dot-primary-color);;
}




.btn-whats {
    background-color: #1f6624;
    border-color: #44904a;
    color: #fff;
}
.btn-whats:hover {
    background-color: #104714;
    color: #fff;
}
.btn-whats svg {
    fill: #fff;
}
