@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100;300&display=swap');
body {
    background: var(--background-color-front);
    font-weight: revert;
    line-height: 1.5;
    font-size: 16px;
    text-align: center;
}

body.dark-mode {
    background-color: #343a40;
    color: #fff;
}

*,
*::after,
*::before {
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.ratio>* {
    position: relative;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

a {
    color: #03a9f4;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

small {
    font-size: small;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.3rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.2rem;
}

.overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.285);
    z-index: 1001;
}

/* For Typography */
.ul-base {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* -----------------------------------------------------

Clearfix

-------------------------------------------------------- */
.clearfix {
    *zoom: 1;
}

.clearfix::after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
}

/* -----------------------------------------------------

   Header

-------------------------------------------------------- */
header {
    display: block;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99;
    position: fixed;
}

header .header-inner {
    background-color: var(--background-color-website);
    background: var(--background-header);
    width: 100%;
    height: 64px;
    color: #fff;
    padding: 0 20px;
    border-bottom: none;
    display: flex;
}

header .nav-btn {
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    margin: 12px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

nav.sidebar {
    background-color: var(--background-color-website);
    background: var(--background-color-gradient-website);
}

.sidebar:after,
    .off-canvas-sidebar:after {
        background-color: var(--background-color-website);
        background: var(--background-color-gradient-website);
    }
    nav .navbar-nav.sidebar_home li a {
        color: var(--color-text-sidebar);
    }

    .off-canvas-sidebar .nav li>a,
    .sidebar .nav li>a {
        color:var(--color-text-sidebar);
    }

    .btn_nav a {
        color:var(--color-text-sidebar);
    }

    nav .copyright span {
        color:var(--color-text-sidebar);
    }

    header .nav-btn.nav-slider {
        color: #fff;
        float: left;
        background: #00000021;
        border-radius: 8px;
        margin-right: 6px;
    }


header .nav-btn.search {
    display: none;
}

header .nav-btn i {
    vertical-align: middle;
}

header .header-logo {
    display: inline-block;
    float: left;
    padding: 8px 0px;
}

header .header-logo img {
    display: block;
    max-height: 46px;
    vertical-align: middle;
}

header .header-options {
    display: flex;
    position: relative;
}

header .header-search {
    float: left;
    display: block;
    position: relative;
    width: 48%;
    height: 64px;
    margin: 0;
    padding: 10px 0;
}

header .header-search .search {
    display: block;
    position: relative;
    width: calc(100% - 10px);
    margin: 0 auto;
}

header .header-search .search i {
    position: absolute;
    top: 8px;
    left: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
}

header .header-search .search input[type="search"] {
    width: 100%;
    height: 44px;
    padding: 0 15px 0 50px;
    color: #000000;
    font-size: 16px;
    outline: none;
    border-radius: 30px;
}

header .header-search .search input[type="search"]:focus-visible {
    border: none;
    background: white;
}

header .header-search .search ::-webkit-input-placeholder {
    color: #c9c9c9;
}

header .header-search .search ::-moz-placeholder {
    color: #c9c9c9;
}

header .header-search .search :-moz-placeholder {
    color: #c9c9c9;
}

header .header-search .search :-ms-input-placeholder {
    color: #c9c9c9;
}

header .header-menu {
    float: right;
}

header .header-menu ul {
    height: 64px;
}

header .header-menu ul li {
    display: block;
    position: relative;
    float: left;
    margin: 0;
    padding: 0 0 0 12px;
    line-height: 64px;
}

header .header-menu ul li a {
    color: #000;
    font-size: 17px;
    padding: 4px;
}

header .header-menu ul li a:hover {
    opacity: 0.6;
    text-decoration: none;
}

@media only screen and (max-width: 1024px) {
    header .header-search {
        width: calc(100% - 230px);
    }

}

@media only screen and (max-width: 600px) {
    header .header-search {
        width: calc(100% - 60px);
    }
}

@media only screen and (max-width: 860px) {
    header .header-search {
        display: block;
    }

    header .header-menu ul li:last-child {
        display: none;
    }
}

@media only screen and (max-width: 1025px) {
    header .header-options {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    header .header-search {
        width: calc(100% - 40px);
    }
}

@media only screen and (max-width: 720px) {

    header .header-logo {
        float: right;
        padding-left: 0px;
        padding-right: 0px;
        display: none;
    }

    header .header-menu {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    header .header-inner {
        padding: 0 12px;
        text-align: center;
    }

    header .nav-btn {
        background-color: transparent;
    }

}


.header-options .notifications_icon {
        padding: 18px;
}
.header-options .notifications_icon i {
    font-size: 28px;
    color:var(--color-text-sidebar);
}

/* -----------------------------------------------------

   Nav

-------------------------------------------------------- */
nav {
    overflow-y: auto;
    position: fixed;
    top: 0px;
    left: -250px;
    width: 250px;
    height: 100%;
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.9;
    z-index: 1002;
}

nav .nav-header {
    display: block;
    background-color: #f4f4f4;
}

nav .nav-header .logo-wrap {
    padding: 1.7em 1em;
}

nav .nav-header .logo-wrap .logo-icon {
    display: inline-block;
    text-decoration: none;
}

nav .nav-header .logo-wrap .logo-icon img {
    display: block;
    border-radius: 50%;
}

nav .nav-header .logo-wrap .logo-text {
    display: inline-block;
    color: #fff;
    font-size: 1.2em;
    vertical-align: 12px;
    margin-left: 8px;
    text-decoration: none;
}

nav .nav-header .nav-search {
    position: relative;
    height: 40px;
}

nav .nav-header .nav-search .search {
    display: block;
    position: relative;
}

nav .nav-header .nav-search .search i {
    position: absolute;
    top: 8px;
    right: .7em;
    color: #4b4b4b;
    font-size: 24px;
    cursor: pointer;
}

nav .nav-header .nav-search .search input[type="search"] {
    width: 100%;
    height: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    padding: 0 48px 0 20px;
    outline: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
}

nav .nav-header .nav-search .search ::-webkit-input-placeholder {
    color: #aaa6a6;
}

nav .nav-header .nav-search .search ::-moz-placeholder {
    color: #aaa6a6;
}

nav .nav-header .nav-search .search :-moz-placeholder {
    color: #aaa6a6;
}

nav .nav-header .nav-search .search :-ms-input-placeholder {
    color: #aaa6a6;
}

nav .nav-categories li {
    display: block;
    position: relative;
}

nav .nav-categories li a {
    display: block;
    width: 100%;
    font-size: 1rem;
    color: #000;
    padding: .625em 1.3em;
    text-decoration: none;
}

nav .nav-categories li a:hover {
    background-color: #16151533;
}

nav.open {
    left: 0px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.275);
    opacity: 1;
}

nav .nav-separator {
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background-color: rgba(0, 0, 0, 0.175);
}

nav .nav-link-title {
    display: block;
    color: #3f51b5;
    font-size: 1rem;
    padding: .5em 1.3em;
}

nav .social {
    display: -webkit-box;
    display: flex;
    margin: 4px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.155);
    border-bottom: 1px solid rgba(0, 0, 0, 0.155);
}

nav .social li {
    display: inline-block;
    position: relative;
    width: 25%;
    height: 28px;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 28px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    border-right: 1px solid rgba(0, 0, 0, 0.175);
}

nav .social li:last-child {
    border-right: 0;
}

nav .social li a {
    display: block;
    color: #5c5c5c;
    font-size: 15px;
    padding: 2px;
    text-decoration: none;
}

nav .social li a.twitter:hover {
    color: #00baf0;
}

nav .social li a.facebook:hover {
    color: #3b5997;
}

nav .social li a.google-plus:hover {
    color: #c43c2c;
}

nav .social li a.rss:hover {
    color: #ff6600;
}

nav .copyright {
    display: block;
    color: #5c5c5c;
    text-align: center;
    padding: .5em 0 1em;
}

nav .copyright span {
    display: block;
    width: 100%;
    font-size: 11px;
    margin-bottom: 4px;
}

.logo_sidebar {
    width: 150px;
    padding: 10px;
}

/* -----------------------------------------------------

   Dropdown Menu

-------------------------------------------------------- */
li.dropdown {
    display: inline-block;
    position: relative;
}

li.dropdown a {
    display: block;
    height: 64px;
    padding: 0 35px;
    font-weight: bold;
    font-size: 20px;
    line-height: 64px;
    text-decoration: none;
}

li.dropdown a i {
    vertical-align: middle;
}

li.dropdown .dropdown-menu {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 100%;
    min-width: 206px;
    margin: 1px 0;
    padding: 0;
    text-align: left;
    border-radius: 8px;
    background-color: #f5f5f5;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

ul.dropdown-menu::before {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #000;
    /* Cor da seta */
}

li.dropdown .dropdown-menu li {
    display: block;
    border-bottom: 1px solid #bcbcbc;
}

li.dropdown .dropdown-menu li a {
    display: block;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    text-decoration: none;
    color: #3f3f3f!Important;
    font-weight: 400;
}

li.dropdown.open .dropdown-menu {
    display: block;
}

.blocos {
    display: grid;
    margin: 0 auto;
    padding: 0.75em;
    grid-gap: 1.25em;
    grid-auto-flow: dense;
    max-width: 1280px;
}

@media screen and (min-width: 20em) {
    .blocos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 30em) {
    .blocos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 40em) {
    .blocos {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (min-width: 50em) {
    .blocos {
        grid-template-columns: repeat(6, 1fr);
    }
}

.blocos .bloco {
    margin: 0;
    background: rgb(255 255 255);
    max-width: 100%;
    border-radius: 10px;
    display: block;
    padding: 0px;
    height: auto;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.06);
}

.blocos .bloco img {
    text-align: center;
    margin: auto;
    max-width: 100%;
    width: 100%;
    padding: 0px;
    display: flex;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.blocos .bloco p a {
    line-height: 0;
}

.blocos .bloco span {
    font-size: 17px;
    color: #acaaaa;
    font-weight: 200;
}

.mt60 {
    margin-top: 65px;
}

.mt90 {
    margin-top: 90px;
}


.main_post {
    margin: 3em auto 8em;
    color: var(--foregroundColor);
    text-align: left;
}

main {
    margin: 4.3em auto 8em;
    color: var(--foregroundColor);
    text-align: left;
}

/*colors*/
.palette {
    display: grid;
    grid: 80px 45px min-content/repeat(5, minmax(50px, 1fr));
    margin-bottom: 1em;
}

.palette__main {
    grid-column: span 5;
}

.palette h5 {
    grid-column: span 5;
    text-align: left;
    padding: 10px 0;
}

.palette.main div:nth-child(1) {
    background: var(--primaryColor);
}

.palette.main div:nth-child(2) {
    background: var(--primaryShade1);
}

.palette.main div:nth-child(3) {
    background: var(--primaryShade2);
}

.palette.main div:nth-child(4) {
    background: var(--primaryShade3);
}

.palette.main div:nth-child(5) {
    background: var(--primaryShade4);
}

.palette.main div:nth-child(6) {
    background: var(--primaryShade5);
}

.palette.secondary div:nth-child(1) {
    background: var(--secondaryColor);
}

.palette.secondary div:nth-child(2) {
    background: var(--secondaryShade1);
}

.palette.secondary div:nth-child(3) {
    background: var(--secondaryShade2);
}

.palette.secondary div:nth-child(4) {
    background: var(--secondaryShade3);
}

.palette.secondary div:nth-child(5) {
    background: var(--secondaryShade4);
}

.palette.secondary div:nth-child(6) {
    background: var(--secondaryShade5);
}

.palette.accent1 div:nth-child(1) {
    background: var(--accentColor);
}

.palette.accent1 div:nth-child(2) {
    background: var(--accentShade1);
}

.palette.accent1 div:nth-child(3) {
    background: var(--accentShade2);
}

.palette.accent1 div:nth-child(4) {
    background: var(--accentShade3);
}

.palette.accent1 div:nth-child(5) {
    background: var(--accentShade4);
}

.palette.accent1 div:nth-child(6) {
    background: var(--accentShade5);
}

.palette.accent2 div:nth-child(1) {
    background: var(--accent2Color);
}

.palette.accent2 div:nth-child(2) {
    background: var(--accent2Shade1);
}

.palette.accent2 div:nth-child(3) {
    background: var(--accent2Shade2);
}

.palette.accent2 div:nth-child(4) {
    background: var(--accent2Shade3);
}

.palette.accent2 div:nth-child(5) {
    background: var(--accent2Shade4);
}

.palette.accent2 div:nth-child(6) {
    background: var(--accent2Shade5);
}

.palette.accent3 div:nth-child(1) {
    background: var(--accent3Color);
}

.palette.accent3 div:nth-child(2) {
    background: var(--accent3Shade1);
}

.palette.accent3 div:nth-child(3) {
    background: var(--accent3Shade2);
}

.palette.accent3 div:nth-child(4) {
    background: var(--accent3Shade3);
}

.palette.accent3 div:nth-child(5) {
    background: var(--accent3Shade4);
}

.palette.accent3 div:nth-child(6) {
    background: var(--accent3Shade5);
}

.palette.neutrals {
    grid-template-rows: repeat(2, 50px) min-content;
    grid-template-columns: repeat(4, 1fr);
}

.palette.neutrals div:nth-child(1) {
    background: var(--neutralShade1);
}

.palette.neutrals div:nth-child(2) {
    background: var(--neutralShade2);
}

.palette.neutrals div:nth-child(3) {
    background: var(--neutralShade3);
}

.palette.neutrals div:nth-child(4) {
    background: var(--neutralShade4);
}

.palette.neutrals div:nth-child(5) {
    background: var(--neutralShade5);
    grid-row: 2;
}

.palette.neutrals div:nth-child(6) {
    background: var(--neutralShade6);
    grid-row: 2;
}

.palette.neutrals div:nth-child(7) {
    background: var(--neutralShade7);
    grid-row: 2;
}

.palette.neutrals div:nth-child(8) {
    background: var(--neutralShade8);
    grid-row: 2;
}

/*typography*/
strong {
    font-weight: 500;
}

em {
    font-style: italic;
}

h1 {
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 4px;
    color: #000;
}

h3 {
    margin-bottom: 10px;
}

h4 {
    margin-bottom: 10px;
    color: var(--color-title);
}

h5 {
    margin-bottom: 10px;
}

h6 {
    text-transform: uppercase;
}

a.button {
    outline: none;
    width: 50%;
    text-align: center;
    display: inline-block;
    border: none;
    padding: 10px 6px;
    background: rgb(180, 21, 166);
    background: linear-gradient(90deg, rgba(180, 21, 166, 1) 0%, rgba(227, 0, 85, 1) 100%);
    cursor: pointer;
    border-radius: 50px;
    color: #fff;
    transition: 0.2s ease;
}

a.button:hover,
a.button.hover {
    top: -3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

a.button:active,
a.button.active {
    background: #22b14c;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    top: 0;
}

a.button.disabled {
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
}

a.button.medium {
    padding: 15px 18px;
    width: auto;
    margin-right: 20px;
    margin-bottom: 20px;
}

a.button.small {
    padding: 10px 12px;
    width: auto;
    font-size: 14px;
    font-weight: 500;
}

a.button.secondary {
    background: var(--secondaryColor);
}

a.button.secondary:active,
a.button.secondary:focus,
a.button.secondary.active {
    background: var(--secondaryShade4);
    outline: none;
}

a.button.accent {
    background: var(--accentColor);
}

a.button.accent:active,
a.button.accent:focus,
a.button.accent.active {
    background: var(--accentShade4);
}

a.button.accent2 {
    background: var(--accent2Color);
}

a.button.accent2:active,
a.button.accent2:focus,
a.button.accent2.active {
    background: var(--accent2Shade4);
}

a.button.accent3 {
    background: var(--accent3Color);
}

a.button.accent3:active,
a.button.accent3:focus,
a.button.accent3.active {
    background: var(--accent3Shade4);
}

/*variations*/
input.variation {
    display: none;
}

input.variation+label {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 70px 20px 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 6px solid #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
}

#bluepurple+label {
    background: linear-gradient(to left, #673ab7 50%, #03a9f4 50%);
}

#bluepurple:checked~main {
    --backgroundColor: #fff;
    --foregroundColor: #111;
    --primaryColor: #03a9f4;
    --primaryShade1: #e1f5fe;
    --primaryShade2: #b3e5fc;
    --primaryShade3: #4fc3f7;
    --primaryShade4: #0288d1;
    --primaryShade5: #0277bd;
    --secondaryColor: #673ab7;
    --secondaryShade1: #ede7f6;
    --secondaryShade2: #d1c4e9;
    --secondaryShade3: #9575cd;
    --secondaryShade4: #512da8;
    --secondaryShade5: #311b92;
    --accentColor: #009688;
    --accentShade1: #e0f2f1;
    --accentShade2: #b2dfdb;
    --accentShade3: #4db6ac;
    --accentShade4: #00796b;
    --accentShade5: #004d40;
    --accent2Color: #8bc34a;
    --accent2Shade1: #e7f6d5;
    --accent2Shade2: #c5e1a5;
    --accent2Shade3: #aed581;
    --accent2Shade4: #689f38;
    --accent2Shade5: #558b2f;
    --accent3Color: #f44336;
    --accent3Shade1: #ffdde0;
    --accent3Shade2: #ffcdd2;
    --accent3Shade3: #ef9a9a;
    --accent3Shade4: #d32f2f;
    --accent3Shade5: #b71c1c;
}

#sunset+label {
    background: linear-gradient(to right, #ff9557 50%, #ffcc67 50%);
}

#sunset:checked~main {
    --canvasColor: #f9f9f9;
    --backgroundColor: #fff;
    --foregroundColor: #111;
    --primaryColor: #ff9557;
    --primaryShade1: #ffe2d1;
    --primaryShade2: #ffceb2;
    --primaryShade3: #ffb184;
    --primaryShade4: #e88850;
    --primaryShade5: #d17a48;
    --secondaryColor: #ffcc67;
    --secondaryShade1: #fff1d5;
    --secondaryShade2: #ffde9e;
    --secondaryShade3: #ffd074;
    --secondaryShade4: #e8ba5e;
    --secondaryShade5: #ba954b;
    --accentColor: #4e5166;
    --accentShade1: #cecfd5;
    --accentShade2: #aeafb9;
    --accentShade3: #8e909d;
    --accentShade4: #6e7081;
    --accentShade5: #404354;
    --accent2Color: #588b8b;
    --accent2Shade1: #c2d4d4;
    --accent2Shade2: #a3bfbf;
    --accent2Shade3: #85aaaa;
    --accent2Shade4: #507f7f;
    --accent2Shade5: #497272;
    --accent3Color: #fe5f55;
    --accent3Shade1: #fec4c1;
    --accent3Shade2: #fea7a2;
    --accent3Shade3: #fe7c73;
    --accent3Shade4: #e7574e;
    --accent3Shade5: #b9463e;
}

#godiva+label {
    background: linear-gradient(to right, #a05793 50%, #a3d858 50%);
}

#godiva:checked~main {
    --canvasColor: #f9f9f9;
    --backgroundColor: #fff;
    --foregroundColor: #111;
    --primaryColor: #a05793;
    --primaryShade1: #e5d1e1;
    --primaryShade2: #d3b2cd;
    --primaryShade3: #b984b0;
    --primaryShade4: #925086;
    --primaryShade5: #834879;
    --secondaryColor: #a3d858;
    --secondaryShade1: #e5f4d1;
    --secondaryShade2: #cce9a3;
    --secondaryShade3: #bce285;
    --secondaryShade4: #95c550;
    --secondaryShade5: #779e41;
    --accentColor: #245e71;
    --accentShade1: #d7e1e5;
    --accentShade2: #afc4cb;
    --accentShade3: #7398a4;
    --accentShade4: #4b7b8a;
    --accentShade5: #1e4d5d;
    --accent2Color: #2aa5a1;
    --accent2Shade1: #d8eeed;
    --accent2Shade2: #9ed6d4;
    --accent2Shade3: #64bdba;
    --accent2Shade4: #279693;
    --accent2Shade5: #1f7976;
    --accent3Color: #92374d;
    --accent3Shade1: #ebdad3;
    --accent3Shade2: #cda4ae;
    --accent3Shade3: #af6d7d;
    --accent3Shade4: #853246;
    --accent3Shade5: #6b2939;
}

#dark+label {
    background: linear-gradient(to right, #367bc3 50%, #38bfa7 50%);
}

#dark:checked~main {
    --canvasColor: #2a313b;
    --backgroundColor: #2a313b;
    --foregroundColor: #ebe8d8;
    --primaryColor: #367bc3;
    --primaryShade5: #b5cfe9;
    --primaryShade4: #91b7de;
    --primaryShade3: #5a93cd;
    --primaryShade2: #3270b2;
    --primaryShade1: #285a8e;
    --secondaryColor: #38bfa7;
    --secondaryShade5: #c8ede7;
    --secondaryShade4: #92dccf;
    --secondaryShade3: #6ed0be;
    --secondaryShade2: #33ae98;
    --secondaryShade1: #2e9d89;
    --accentColor: #586994;
    --accentShade5: #d1d6e1;
    --accentShade4: #a3adc4;
    --accentShade3: #7684a7;
    --accentShade2: #49567a;
    --accentShade1: #39435f;
    --accent2Color: #8fe1a2;
    --accent2Shade5: #d6f4dd;
    --accent2Shade4: #c1eecc;
    --accent2Shade3: #a3e6b2;
    --accent2Shade2: #82cd94;
    --accent2Shade1: #76b985;
    --accent3Color: #fe938c;
    --accent3Shade5: #fee1df;
    --accent3Shade4: #fec4c0;
    --accent3Shade3: #fea6a0;
    --accent3Shade2: #e78680;
    --accent3Shade1: #b96b66;
    color: #f1f2eb;
    border-color: #f1f2eb;
}

#dark:checked~main>section {
    border-color: #f1f2eb;
}

#dark:checked~main>section>h6 {
    color: #f1f2eb;
}

#pinkaru+label {
    background: linear-gradient(to right, #f95794 50%, #323da5 50%);
}

#pinkaru:checked~main {
    border-color: #fff;
    --canvasColor: #2a313b;
    --backgroundColor: #2a313b;
    --foregroundColor: #e3f2fd;
    --primaryColor: #f95794;
    --primaryShade5: #fdd1e1;
    --primaryShade4: #fba3c4;
    --primaryShade3: #fa75a7;
    --primaryShade2: #e35087;
    --primaryShade1: #b6406c;
    --secondaryColor: #323da5;
    --secondaryShade5: #c7cae6;
    --secondaryShade4: #8f95cd;
    --secondaryShade3: #6971bd;
    --secondaryShade2: #2e3896;
    --secondaryShade1: #293288;
    --accentColor: #FFC729;
    --accentShade5: #ffefc4;
    --accentShade4: #ffe08a;
    --accentShade3: #ffd14f;
    --accentShade2: #e8b526;
    --accentShade1: #d1a322;
    --accent2Color: #53dd6c;
    --accent2Shade5: #d0f5d6;
    --accent2Shade4: #a1ecae;
    --accent2Shade3: #72e386;
    --accent2Shade2: #4cc963;
    --accent2Shade1: #3da14f;
    --accent3Color: #f52f57;
    --accent3Shade5: #fcc6d1;
    --accent3Shade4: #f98da3;
    --accent3Shade3: #f65475;
    --accent3Shade2: #df2b50;
    --accent3Shade1: #b32340;
}

#pinkaru:checked~main>section {
    border-color: #fff;
}

#pinkaru:checked~main>section>h6 {
    color: #fff;
}


.profile {
    position: relative;
    color: var(--foregroundColor);
    transition: .2s ease;
}

.profile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile__stats__title {
    color: var(--grayColor);
    text-transform: uppercase;
    font-size: 16px;
}

.profile a:hover {
    top: 0;
    box-shadow: none;
    background: var(--primaryShade4);
}

.profile a:active,
.profile a:focus {
    top: 0;
    box-shadow: none;
    background: var(--primaryShade5);
}

.profile-default {
    min-width: 400px;
    max-width: 450px;
    margin: auto;
    overflow: hidden;
    display: grid;
    grid: 340px auto auto/repeat(3, minmax(80px, 1fr));
    grid-gap: 10px;
}

.profile-default .profile__image {
    grid-column: span 3;
}

.profile-default .profile__image img {
    border-bottom: 7px solid var(--secondaryColor);
}

.profile-default .profile__info {
    grid-column: span 3;
    margin: 20px 25px 0;
}

.profile-default .profile__stats {
    margin: 5px 25px;
}

.profile-default .profile__cta {
    grid-column: span 3;
    margin: 0 25px 25px;
}

.profile-smallimg {
    width: 300px;
    border-radius: 10px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    text-align: center;
}

.profile-smallimg .profile__image {
    margin-top: -40px;
}

.profile-smallimg .profile__image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--backgroundColor);
    box-shadow: 0 0 0 7px var(--secondaryColor);
}

.profile-smallimg .profile__info {
    margin: 10px 30px 15px;
}

.profile-smallimg .profile__stats {
    margin: 0 30px 10px;
}

.profile-smallimg .profile__stats:nth-of-type(n+4) {
    display: none;
}

.profile-smallimg .profile__cta a {
    border-radius: 0 0 10px 10px;
}

.profile-long {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 100px;
    padding: 20px 20px 15px;
    min-width: 570px;
}

.profile-long .profile__image {
    grid-column: 5 / 6;
    margin-bottom: 10px;
}

.profile-long .profile__image img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.profile-long .profile__info {
    grid-column: 1 / 5;
    grid-row: 1;
    padding: 5px 20px 20px 0;
}

.profile-long .profile__stats {
    min-width: 100px;
    padding-top: 20px;
    border-top: 0.5px solid var(--grayColor);
}

.profile-long .profile__cta {
    grid-column: span 2;
    border-top: 0.5px solid var(--grayColor);
    padding-top: 15px;
}

.profile-table {
    display: grid;
    max-width: 780px;
    grid-template-columns: 100px 1fr auto;
    grid-auto-flow: dense;
    overflow: hidden;
}

.profile-table .profile__image {
    grid-column: 1;
}

.profile-table .profile__stats {
    display: none;
}

.profile-table .profile__info {
    grid-column: 2 / 5;
    padding: 20px 15px 20px 20px;
}

.profile-table .profile__cta {
    grid-column: 5 / 6;
    align-self: center;
    padding-right: 25px;
}

.profile-wide {
    display: grid;
    grid-template-columns: auto repeat(3, 1fr);
    grid-auto-flow: dense;
    min-width: 500px;
    max-width: 590px;
}

.profile-wide .profile__image {
    padding: 30px 20px 20px;
    grid-row: 1 / 3;
}

.profile-wide .profile__image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--backgroundColor);
    box-shadow: 0 0 0 4px var(--secondaryColor);
}

.profile-wide .profile__stats {
    margin-bottom: 12px;
}

.profile-wide .profile__info {
    grid-column: span 3;
    padding: 25px 25px 15px 0;
}

.profile-wide .profile__cta {
    grid-column: span 4;
}

.profile-wide .profile__cta a {
    border-radius: 0 0 10px 10px;
}

.profile-imgonly {
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    display: grid;
    grid: 390px 0px / 100%;
}

.profile-imgonly:hover {
    grid: 334px 56px / 100%;
}

.profile-imgonly .profile__image,
.profile-imgonly .profile__info {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.profile-imgonly .profile__image {
    position: relative;
}

.profile-imgonly .profile__image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
}

.profile-imgonly .profile__stats {
    display: none;
}

.profile-imgonly .profile__info {
    z-index: 5;
    grid-row: 1 / 2;
    align-self: end;
    margin: 10px 20px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.profile-imgonly .profile__info p {
    display: none;
}

.profile-imgonly .profile__cta a {
    border-radius: 0;
}

.profile-bigimg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 400px auto 0px;
    border-radius: 10px;
    width: 650px;
    overflow: hidden;
    margin: auto;
}

.profile-bigimg .profile__image {
    grid-column: span 3;
}

.profile-bigimg .profile__info {
    grid-column: span 2;
    align-self: center;
    padding: 20px 10px 20px 25px;
}

.profile-bigimg .profile__info h3 {
    margin-bottom: 0;
}

.profile-bigimg .profile__info__extra {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .3s ease .3s, margin .3s ease;
}

.profile-bigimg .profile__stats {
    display: none;
}

.profile-bigimg .profile__cta {
    padding: 20px 20px 20px 0;
    align-self: center;
}

.profile-bigimg:hover .profile__info__extra {
    display: block;
    max-height: 200px;
    margin: 10px 0 0;
    opacity: 1;
}

.mainr {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(6, auto);
    grid-template-rows: repeat(4, auto);
    width: 550px;
    justify-content: center;
}

#dark:checked~main a.button,
#pinkaru:checked~main a.button {
    color: var(--foregroundColor);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#dark:checked~main .button:hover,
#pinkaru:checked~main .button:hover {
    background: var(--primaryShade2);
}

#dark:checked~main .button:active,
#pinkaru:checked~main .button:active {
    background: var(--primaryShade1);
}

#dark:checked~main .profile-default img,
#pinkaru:checked~main .profile-default img {
    border-bottom: 7px solid var(--secondaryShade5);
}

#dark:checked~main .profile-smallimg img,
#pinkaru:checked~main .profile-smallimg img {
    box-shadow: 0 0 0 7px var(--secondaryShade5);
}

#dark:checked~main .profile-wide img,
#pinkaru:checked~main .profile-wide img {
    box-shadow: 0 0 0 4px var(--secondaryShade5);
}

.recomendados {
    margin: 4% 29%;
}

.outros-l {
    text-align: center;
    margin: 23px;
    color: #000;
    font-weight: 400;
    font-size: 19px;
}

hr {
    border-width: 0;
    border-bottom: 1px solid #dfdfdf;
}

div.search svg {
    float: left;
    position: absolute;
    left: 10px;
    font-size: 10px;
    top: 10px;
}

.branco {
    background: #fff;
}

.titulo-cat {
    font-size: 20px;
    text-align: left;
    margin-left: 9%;
    color: #000;
}

.container-profile {
    width: 100%;
    display: flex;
}

.container-profile h1 {
    font-size: 14px;
    margin: 17px 5px;
}

.img-perfil {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    float: left;
    margin: 5px 3px;
}

.links-perfil {
    margin: 0px;
}


.modal-body {
    padding: 14px;
    text-align: center;
}

.modal-content {
    padding: 0px;
    max-width: 480px;
    min-width: 360px;
    max-height: 85%;
    overflow: auto;
    position: fixed;
    top: 30%;
    left: 50%;
    z-index: 11;
    border-radius: 8px;
    background: #eeeeee;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.modal-content img {
    display: block;
    width: 100%;
    margin: 10px 0 0;
}

.modal-content p {
    text-align: center;
    color: black;
}


.modal.fade.show {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1055;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.1s 0.1s ease-in-out;
    transition: all 0.1s 0.1s ease-in-out;
}

.modal-footer {
    border-top: 1px solid #adadad;
    padding: 0px;
}

.modal-footer button {
    width: 49%;
    text-align: center;
    font-size: 14px;
    padding: 14px;
    text-transform: uppercase;
    margin: 0px 0px;
    float: left;
}

.modal-footer .line {
    border-right: 1px solid #adadad;
}

.modal-close:after {
    content: "X";
    float: right;
    margin: 5px 5px 0 0;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 3;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 0 3px #000;
}

.in {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

.ekko-lightbox.modal.fade.in div.modal-dialog div.modal-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

div#myModal.modal.fade.in div.modal-dialog div.modal-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.ordem {
    width: 100%;
    height: 70px;
}

.ordem-ul {
    float: right;
}

.conteudo {
    width: 90%;
    margin: auto;
}

.form-control {
    width: 100%;
    padding: 10px;
}

.input-group {
    margin: 12px 10px;
}

.btn-custom {
    background: #08c40e;
    border: none;
    padding: 10px 70px;
    border-radius: 1px;
    border-bottom: 2px solid #249d16;
    color: #fff;
    font-size: 15px;
}

.imgperfil {
    float: left;
    width: 40px;
    height: 40px;
    margin: 11px 10px;
    border-radius: 50px;
}

.ui-container {
    margin: 93px 5%;
}

.alert-danger {
    background: #ffcccc;
    color: #000000;
    padding: 10px;
    margin: 10px 4px;
    text-align: center;
}

.alert-success {
    padding: 10px;
    margin: 10px 4px;
    background: #11cb17;
    color: #fff;
    text-align: center;
}

.profile_header h1 {
    font-size: 18px;
    font-weight: 300;
    color: #000;
}

.btn {
    padding: 10px 20px;
    margin: 16px;
    border-radius: 1px;
    border: none;
}

.btn-danger {
    color: #fff;
    background: #f64646;
}

.btn-default {
    background: #ccc;
}

.close {
    font-size: 27px;
    background: transparent;
    border: none;
    float: right;
    color: #474747;
}

.post-box {
    text-align: center;
}

.licat {
    font-weight: 400;
    background: #f6f6f6;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    color: #b8b8b8;
    padding: 10px;
}

.share-box li {
    border-top: 1px solid #ffe2ce;
    padding: 10px;
}

.share-box li a {
    color: #e3641a;
    font-weight: 500;
}

.profile__cta a.button {
    color: #fff;
}

.bloco h2 {
    padding: 2px 10px 20px 10px;
    width: 100%;
    line-height: 1.2;
}

.bloco h2 a {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.profileaffimg {
    float: left;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: -3px 10px;
}

.links {
    font-weight: bold !Important;
}
.profile_user {
    margin: 20px;
    min-height: 130px;
    padding: 0px 20px;
    width: -webkit-fill-available;
    border-bottom: 1px solid silver;
}
.img_profile_user {
    border-radius: 60px;
    width: 100px;
    height: 100px;
    margin-right: 10px;
    border: 4px solid #ffffff;
}
.social {
    display: inline-block;
    margin: 10px 0px;
}

.lista-social {
    padding: 6px;
    text-align: center;
    display: inline-flex;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #bdbdbd;
}

.lista-social:hover {
    background: #cdcdcd;
}
.lista-social img {
    width: 24px!Important;
    height: 24px!Important;
    border-radius: 0!Important;
    padding: 4px;
}
.profile_user_name {
    font-weight: 100;
    font-size: 22px;
    margin-top: 10px;
}

.bioinfo {
    color: #000
}

.btn_nav {
    background: rgb(0 0 0 / 20%);
    margin: 10px;
    border-radius: 24px;
    color: white;
}

.btn_nav:hover  {
    background: #10101059;
    color: white;
}

.input-group input {
    border: 1px solid #d3d3d3;
    font-weight: 700;
    font-family: inherit;
    font-size: 16px;
    border-radius: 10px;
}

.input-group textarea {
    border: 1px solid #d3d3d3;
    font-weight: 700;
    font-family: inherit;
    font-size: 16px;
    border-radius: 10px;
}

.form-group label {
    color: #303030;
    font-weight: 400;
}

.form-group input {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
}

.btnDelete {
    font-size: 14px;
    color: #ffffff;
    float: left;
    background: #d90505;
    padding: 8px 10px;
}

.imagempost {
    width: 100%;
    height: auto;
    border: none;
    mix-blend-mode: multiply;
    display: block;
    padding: 60px;
}

.left {
    float: left;
}

.fontsizemenu {
    font-size: 40px;
    margin: 0px 0px;
}

.imgperfil2 {
    width: 30px;
    height: 30px;
    float: left;
    margin: -3px 4px;
    border-radius: 28px;
}

.svg_externo {
    width: 15px;
}

.icon_login {
    font-size: 30px;
    margin: 18px 0px;
    color: #fff;
}

.icon_comprar {
    float: right;
}

.ceimHt {
    margin-bottom: 20px;
    padding-bottom: 0px !important;
}

.bGwFiF {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    padding-left: calc(50vw - 640px);
    padding-bottom: 20px;
}

.jmonRw .sc-edoZmE:first-child {
    margin-left: 20px;
}

.jmonRw .sc-edoZmE {
    margin-right: 20px;
}

.hyACfo {
    display: flex;
    flex-direction: column;
    max-width: 290px;
    min-width: 290px;
    margin: 6px 15px;
    width: 100%;
    margin-bottom: 40px;
}

.cUdUkR {
    border-radius: 16px;
    overflow: hidden;
}

.daagyf {
    display: flex;
}

.jfgTmU:last-child {
    margin-right: 0px;
}

.jfgTmU {
    display: flex;
    -webkit-box-flex: 1;
    flex-grow: 1;
    margin-right: 4px;
}

.kKYixH {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 4px;
    padding: 16px;
    width: 100%;
}

.jIpSXX {
    background: rgb(237, 238, 241);
    border-radius: 0px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 4px;
}

.kKYixH img {
    max-width: 60px;
    max-height: 60px;
    width: 60px;
    height: 60px;
}

.kKYixH img {
    max-width: 200px;
    max-height: 200px;
    width: 200px;
    height: 200px;
}

.daagyf {
    display: flex;
}

.JiLrb {
    mix-blend-mode: multiply;
    width: 100%;
    height: auto;
    display: block;
    max-width: 400px;
}

.jzzsgq {
    margin-top: 16px;
    text-align: center;
    font-weight: 700;
}

.iGXflu {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: rgb(59, 60, 83);
}

.ikQpRK {
    color: rgb(158, 158, 170);
    margin-top: 4px;
    text-align: center;
}

.criador {
    margin-left: 8%;
    margin-right: 8%;
    min-height: 40px;
}

.criador img {
    width: 35px;
    height: 35px;
    border-radius: 27px;
    float: left;
}

.criador h3 {
    padding: 8px 2px;
    margin: 10px 40px;
    font-size: 16px;
    font-weight: 100;
}

.eMijpD {
    margin-top: 40px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    flex-grow: 1;
    margin-left: 7%;
    margin-right: 7%;
}

.alert {

    border-radius: 8px;
}

.material-icons {
    font-family: 'Material Icons Round';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

.font30 {
    font-size: 30px;
}

.content {
    margin: 0 auto;
    padding: 0rem 0;
    width: 90%;
    max-width: 100%;
}

article {
    width: 100%;
    margin-bottom: 0;
    padding: 2% 4%;
    background: white;
    border: none;
}

article p:first-of-type {
    margin-top: 0;
    color: black;
}

article p {
    font-size: 14px;
}

aside {
    float: right;
    width: 100%;
}

p img {
    max-width: 100%;
}

@media only screen and (max-width: 960px) {
    .content {
        padding: 0.5rem 0;
    }

    article {
        float: none;
        margin: 0 auto;
        width: 100%;
    }

    article:last-of-type {
        margin-bottom: 0rem;
    }

    aside {
        float: none;
        text-align: center;
        width: 100%;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

@media screen {
    .content_article {
        width: 70%;
        margin: 0px auto;
    }
}

@media screen and (max-width: 1199px) {
    .content_article {
        width: 96%;
    }

}

@media screen {
    .article_area {
        width: 70%;
        display: block;
    }
}

@media screen and (max-width: 999px) {
    .article_area {
        width: 100%;
        display: block;
    }
}

@media screen {
    .area_sidebar {
        width: 30%;
        position: fixed;
        display: block;
        text-align: center;
        margin: 0px auto;
        right: 10px;
        top: 100px;
    }
}

@media screen and (max-width: 999px) {
    .area_sidebar {
        display: none !Important;
    }
}
.space {
    width: 100%;
    text-align: center;
    height: 280px;
    overflow: hidden;
    transform: translateZ(0px);
    margin-bottom: 0px;
    padding: 10px 0px;
    border: 1px solid #dedede;
}

.space img {
    overflow: hidden;
    z-index: 2;
    position: relative;
    width: auto;
    max-height: 250px;
    border-radius: 8px;
}

.fundo {
    top: 0%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 6% center !important;
    filter: blur(60px);
    position: absolute;
    width: 110%;
    transform: translate(-32px, -32px);
    height: 130%;
}

.list_posts {
    width: 100%;
    margin: 10px 0px;
    display: flex;
    border-radius: 4px;
    padding: 0px;
}

.mini_post {
    float: left;
    width: 33.3%;
    background: #ffffff;
    margin: 6px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.06);
}

.mini_post img {
    width: 100%;
    height: auto;
    max-height: 253px;
    max-width: 100%;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.mini_post div {
    font-size: 10px;
    padding: 4px;
}

.comments {
    width: 100%;
    padding: 0px;
    border-top: 1px solid #e2e2e2;
}

.comment {
    width: 100%;
    display: flex;
    padding: 2px 10px;
}

.avatar_comment {
    width: 48px;
    border-radius: 30px;
    float: left;
    height: 48px;
    margin: 8px 2px;
    border: 1px solid #d1d1d1;
}

.comment_input {
    background: #e4e4e4;
    border-radius: 8px;
    margin: 8px;
    height: 50px;
    padding: 11px 10px;
    width: 78%;
    float: left;
    border: none;
}

.comment_login {
    padding: 10px 25px 25px 25px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.comment_login h3 {
    font-weight: bold;
    margin-bottom: 1px;
    font-size: 21px;
}

.comment_login p {
    font-size: 15px;
}

.comment_login .btn {
    border-radius: 33px;
    padding: 4px 40px;
    margin: 0px;
}

.comment_login a.btn {
    font-weight: bold;
}

.comment_login span {
    font-size: 10px;
    font-weight: bold;
    color: #909192;
    margin: 0px 8px;
}

.btn_comment_register {
    padding: 5px 45px;
    border: 2px solid #dfdfdf;
    border-radius: 41px;
}

a.btn_comment_register {
    font-weight: bold;
    color: black;
}

.btn_comment_register i {
    line-height: 0.7;
    display: table-caption;
    color: #6b6a6a;
}

.comment_input:focus-visible {
    border: 1px solid gray;
    background: white;
    outline: none;
}

.comment_btn {
    background: #0f26f0;
    border: none;
    padding: 12px;
    width: 48px;
    height: 48px;
    margin: 9px 0px;
    border-radius: 30px;
    color: #fff;
}

.comment_btn i {
    font-size: 25px;
}

.date_comment {
    font-size: 11px;
    color: #b0b0b0;
    font-weight: bold;
}

.date_comment::before {
    content: "•";
    margin: 0 4px 0 2px;
}

form {
    width: 100%;
}

.box_comment {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
}

.p1020 {
    padding: 10px 0px 0px 0px;
}
.box_comment img {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    float: left;
    margin: 0px 10px;
}

.replyComment {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.replyComment a {
    color: #878787;
}

.replyComment i  {
    font-size: 16px;
    color: #a0a0a0;
}
@keyframes floatDown {
    0% {
      transform: translatey(0px);
    }
    50% {
      transform: translatey(4px);
    }
    100% {
      transform: translatey(0px);
    }
  }

.avatar_reply{
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 30px;
    border: 2px solid white;
    transform: translatey(0px);
    animation: float 8s ease-in-out infinite;
    overflow: hidden;
}
@keyframes float {
    0% {
      box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
      transform: translatey(0px);
    }
    50% {
      box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
      transform: translatey(-5px);
    }
    100% {
      box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
      transform: translatey(0px);
    }
  }

  @keyframes float-2 {
    0%, 100% {
        transform: translateY(0); /* Ponto inicial e final */
    }
    50% {
        transform: translateY(-5px); /* Subir um pouco no meio */
    }
}


.icon_reply {
    content: url(/images/reply.svg);
    display: inline-block;
    width: 26px;
    position: absolute;
    height: 26px;
    padding: 6px;
    margin-right: 5px;
    margin-top: 0px;
    margin-left: 20px;
    border-radius: 18px;
    background: aliceblue;
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}

.box_comment.no_comment {
    border-bottom: none;
    display: block;
    border-bottom: 1px solid #dddddd;
}

.comment_View {
    background-color: #fcfcfc;
    border-bottom: 2px solid #d8d8d8;
    border-top: 1px solid #d8d8d8;
}


.comment_response {
    display: flex;
    font-size: 13px;
}
.comment_response a {
    font-size: 12px;
    margin-left: 2px;
}

.see_all  {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #e3e3e3;
    font-weight: bold;
}
.ad_user {
    width: 300px;
    height: 300px;
    text-align: center;
    display: block;
    border: 2px solid #ccc;
}

.box_side {
    width: 330px;
    height: auto;
    padding: 0px 10px;
}

.bar_ad {
    width: 300px;
    background: #dbdbdb;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    text-align: initial;
    padding: 6px 6px 0px 6px;
    font-size: 15px;
    color: #000;
}

.bar_ad span {
    margin: 0px 8px;
    position: absolute;
}

#rg {
    width: 300px;
    height: 300px;
}

.sticky {
    position: fixed;
    top: 85px;
    right: 83px;
    transition: width 2s;
}


.sticky+.content {
    padding-top: 120px;
}

.category {
    padding: 2px 10px;
}

.category a {
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}

.info_block {
    width: 100%;
    height: 30px;
    display: flex;
}

.info_block img {
    display: initial !Important;
    margin: 0px 7px !Important;
    ;
    border-radius: 50px;
}

.title_post {
    font-size: 25px;
    font-weight: bold;
}
.source {
    padding: 0px;
    border-radius: 4px;
    height: 66px;
    border: 1px;
    border-style: dashed;
    border-color: #bfbfbf;
}

.source .sharethis-inline-share-buttons  {
    margin: 4px;
}

.icon_source {
    position: absolute;
    margin: -2px 0px;
    font-size: 30px;
}

.source a {
    margin-left: 4px;
    font-weight: 700;
    color: #5a5a5a;
    font-style: italic;
}

.a2a_default_style {
    margin: 10px 0px;
    padding: 6px;
}

.footer_article {
    background: white;
    padding: 10px 20px;
    margin: 0px 0px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: none;
}
.post-options {
    width: 10px;
    float: right;
}

.post-options ul.dropdown {
    padding-left: 2px;
    margin-bottom: 0;
}
.post-options .dropdown-toggle::after {
    display: none;
}
.post-options li.dropdown a {
    display: block;
    height: 30px;
    padding: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
    text-decoration: none;
    color: #4f4f4f;
}

.post-options li.dropdown .dropdown-menu {
    min-width: 100px;
    border-radius: 6px;
}
.post-options li.dropdown .dropdown-menu li {
    display: block;
    border-bottom: none;
}

.post-options li.dropdown .dropdown-menu li a {
    height: 28px;
    font-size: 14px;
    margin: 2px 12px;
    line-height: 30px;
}

.link_source {
    margin-left: 35px;
}

.tag {
    padding: 2px 8px;
    margin: 2px;
    font-size: 12px;
    border: 1px solid;
    display: inline-block;
    border-radius: 5px;
}

.tag :hover {
    filter: brightness(0.5);
}

#infscr-loading {
    width: 100%;
    text-align: center;
    height: auto;
    margin: 0px auto;
    position: absolute;
}

#infscr-loading img {
    width: 60px;
}

#infscr-loading div {
    opacity: 1;
    padding: 10px;
    background: #e7e7e7;
    width: 290px;
    font-weight: bolder;
    color: #6c6c6c;
    text-align: center;
    margin: 25px auto;
    border-radius: 38px;
}

.box_comments {
    background: #ffffff;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.06);
}

.comment_loading {
    width: 100%;
    background: #e1e1e1;
}

.sk_bg {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: sk_bg_animation;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eee 8%, #ddd 18%, #eee 33%);
    background-size: 800px 104px;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}


@keyframes sk_bg_animation {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}


.sk_bg.big {
    height: 70px;
}


.ad_home_top img {
        width: 100%;
        border-radius: 3px;
    }

.mt_80 {
    margin-top: 80px;
}

.no_comment {
    width: 100%;
    margin: 12px auto;
    text-align: center;
    color: black;
}

.box_comment strong {
    font-size: 13px;
    color: #c24d4d;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

.box_comment strong i {
    display: block;
    font-size: 20px;
    height: 20px;
    width: 24px;
}

.no_comment i {
    font-size: 50px;
    color: #d2d2d2;
}

.title_comments {
    font-size: 17px;
    font-weight: bold;
    padding: 6px 20px;
}

.title_comments small {
    font-size: 15px;
    color: #8c8c8c;
    font-weight: 400;
}

.title_comments small i {
    font-size: 11px;
}

.btnDeleteComment {
    background: transparent;
    border: 1px solid;
    color: red;
    padding: 0px 5px;
    font-size: 12px;
    border-radius: 4px;
    margin: 0px 8px;
    cursor: pointer;
}

.box_comment_reply {
    border-top: 1px solid #e8e8e8;
    padding-top: 15px;
    margin-top: 5px;
    padding-left: 8%;
}
.box_comment_reply img {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    float: left;
    margin: 0px 10px;
}

.box_comment_reply strong {
    font-size: 11px;
}

.box_user_article {
    margin: 0px;
    background: #ffffff;
    padding: 10px;
    display: inline-block;
    border-bottom: 0;
    width: 100%;
    color: #686868;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: 1px solid #c8c8c8;
}

.box_reply {
    display: flex;
    margin-top: 10px;
}

.see_answers  {
    margin-left: 10px;
}

.see_answers a {
    font-size: 16px;
    font-weight: 100!important;
    color: #a0a0a0;
}
.see_answers i {
    line-height: 0;
    font-size: 15px;
}

.m_06 {
    margin: 0px 6px;
}

.box_user_article i {
    margin: 2px 7px;
    color: #878787;
}

.ad300 a img {
    border-radius: 4px;
    border: 1px solid #d7d7d7;
}

#slider-wrap {
    width: 310px;
    height: 310px;
    position: relative;
    overflow: hidden;
}

#slider-wrap ul#slider {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
}

#slider-wrap ul#slider li {
    float: left;
    position: relative;
    width: 310px;
    height: 310px;
}

#slider-wrap ul#slider li>div {
    position: absolute;
    top: 20px;
    left: 35px;
}

#slider li a img {
    border: 2px solid #979797;
}

#slider-wrap ul#slider li>div h3 {
    font-size: 36px;
    text-transform: uppercase;
}

#slider-wrap ul#slider li>div span {
    font-family: Neucha, Arial, sans serif;
    font-size: 21px;
}

#slider-wrap ul#slider li i {
    text-align: center;
    line-height: 400px;
    display: block;
    width: 100%;
    font-size: 90px;
}


/*btns*/
.btns {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    margin-top: -25px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    z-index: 100;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.btns i {
    color: white;
}

.btns:hover {
    background: rgba(0, 0, 0, 0.3);
}

#next {
    right: -50px;
    border-radius: 7px 0px 0px 7px;
}

#previous {
    left: -50px;
    border-radius: 0px 7px 7px 7px;
}

#counter {
    top: 30px;
    right: 35px;
    width: auto;
    position: absolute;
}

#slider-wrap.active #next {
    right: 0px;
}

#slider-wrap.active #previous {
    left: 0px;
}


/*bar*/
#pagination-wrap {
    min-width: 20px;
    margin-top: 350px;
    margin-left: auto;
    margin-right: auto;
    height: 15px;
    position: relative;
    text-align: center;
}

#pagination-wrap ul {
    width: 100%;
}

#pagination-wrap ul li {
    margin: 0 4px;
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    position: relative;
    top: 0;


}

#pagination-wrap ul li.active {
    width: 12px;
    height: 12px;
    top: 3px;
    opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 0px;
}

.tags {
    padding: 0px;
}

.profile {
    margin: 6% 22% 3% 22%;
}

.profile::after {
    content: "";
    display: block;
    clear: both;
}

.profile-image {
    float: left;
    width: calc(33.333% - 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0rem;
}

.profile-image img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
}

.profile-user-settings,
.profile-stats,
.profile-bio {
    float: left;
    width: calc(66.666% - 2rem);
}

.profile-user-settings {
    margin-top: 1.1rem;
}

.profile-user-name {
    display: inline-block;
    font-size: 21px;
    font-weight: 800;
    color: #010101;
}

.profile-edit-btn {
    font-size: 13px;
    line-height: 1.8;
    border: 1px solid;
    border-radius: 0.3rem;
    padding: 6px 14px;
    margin-left: 2rem;
}

.profile-settings-btn {
    font-size: 2rem;
    margin-left: 1rem;
}

.profile-stats {
    margin-top: 0.3rem;
}

.profile-stats li {
    display: inline-block;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
    margin-right: 4rem;
    cursor: pointer;
}

.profile-stats li:last-of-type {
    margin-right: 0;
}

.profile-bio {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 1.3rem;
}

.profile-real-name,
.profile-stat-count,
.profile-edit-btn {
    font-weight: bold;
}

.cover_profile {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 63px;
    overflow: hidden;
    transform: translateZ(0px);
}

.background_img_color {
    top: 0%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 6% center !important;
    filter: blur(20px);
    position: absolute;
    width: 110%;
    transform: translate(-32px, -32px);
    height: 130%;
}

.featured_tag {
    position: absolute;
    z-index: 9;
    padding: 8px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 12px;
}

.mbm-m {
    mix-blend-mode: multiply;
}

.cat_img {
    width: 26px;
    height: 26px;
    border-radius: 3px;
}

.box_icon {
    width: 40px;
    height: 40px;
    background: #ffffff2e;
    border-radius: 31px;
    font-size: 22px;
    line-height: 1.6;
    padding: 2px;
    text-align: center;
}

.navbar-nav>.nav-item {
    margin-top: 0.125rem;
}

.navbar-nav .nav-link {
    text-align: initial;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    margin: 0 1rem;
    margin-bottom: 1px;
}

.ad_user_mobile {
    padding: 2px;
    height: auto
}

.ad_user_mobile figure img {
    width: 100%;
    padding: 4px;
    border-radius: 8px;
    mix-blend-mode: multiply;
}

.ad_imgs {
    height: 76px;
    overflow: hidden;
    transform: translateZ(0px);
}

@media screen {
    .ad_imgs p {
        font-size: 16px;
        line-height: 4;
        z-index: 10;
        position: absolute;
        max-width: 60%;
        left: 75px;
    }
}

@media screen and (max-width: 800px) {

    .ad_imgs p {
        line-height: 1;
        padding: 8px;
    }
}

.ad_imgs p a {
    color: #040404;
}

.bg_ad {
    top: 0%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 6% center !important;
    filter: blur(40px);
    position: absolute;
    width: 110%;
    transform: translate(-32px, -32px);
    height: 180%;
}

.ad_imgs figure {
    width: 60px;
    padding: 0px;
    background: #f7f7f7;
    margin: 2px;
    border-radius: 8px;
    float: left;
}

.ad600 {
    border: none;
}

.ad600 img {
    height: 100%;
    border-radius: 4px;
}

.ad_rh {
    width: 100%;
    padding-bottom: 20px;
}

.ad_rh img {
    width: 100%;
    border-radius: 4px;
}

.profile_info img {
    width: 110px;
    height: 110px;
    border-radius: 100px;
}

.profile_info h1 {
    font-size: 24px;
}

.profile_info ul li {
    float: left;
    list-style: none;
    margin-right: 10px;
}

.by img {
    width: 25px;
}

div.box_comment span a {
    font-weight: bold;
}

.separator::before {
    content: "•";
    margin: 0 4px 0 2px;
}

.user_name_post {
    font-weight: bold;
    color: #383838;
}

.select_language {
    padding: 8px 20px;
}

.select_language .form-control {
    text-align: center;
    border-radius: 37px;
    padding: 4px;
    border: none;
    font-weight: bold;
    color: #686868;
}

.nav-link-text {
    font-weight: 500;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.navbar-nav .nav-item:hover {
    background: #01010136;
}

.title_card {
    color: #000000;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
}

.date_post {
    width: 100%;
}

.date_post div {
    text-align: end;
}

.category_article {
    padding: 2px 6px;
    border-radius: 16px;
    color: #6a6a6a;
    font-size: 14px;
    display: inline-flex;
}

.category_article img {
    width: 21px;
    border-radius: 30px;
    margin-right: 6px;
}

.box_btn_darkmode {
    display: flex;
    height: 64px;
}

.box_btn_darkmode button {
    background: transparent;
    border: none;
    margin: 17px 0px;
}

.box_btn_darkmode button i {
    font-size: 28px;
}

body.dark-mode article {
    width: 100%;
    margin-bottom: 0;
    padding: 2% 4%;
    background:rgb(33 37 42);
    border: none;
    color: white;
}

body.dark-mode .title {
    color: #f7f7f7 !Important;
}

body.dark-mode .bloco {
    background: rgb(33 37 42);
    border: none;
}

body.dark-mode .title_card {
    color: #f6f6f6;

}

body.dark-mode .price_product {
    color: #d7d7d7;
    }

body.dark-mode .bloco img {
    mix-blend-mode: inherit;
}

body.dark-mode .box_comments {
    background:rgb(48 53 57);
    border: none;
}

body.dark-mode .not_comment_img {
    mix-blend-mode: color-burn;
}

body.dark-mode .vitrine_user_ad {
    background:#313943;
    
}
body.dark-mode .vitrine_user_ad li:not(:last-child) {
    border-bottom: 1px solid #47445e;
}

body.dark-mode .no_comment {
    color: #e2e2e2;
}

body.dark-mode .comment_login {
    background: rgb(48 53 57);
    border-top: 1px solid #303539;
}

body.dark-mode .comment_login h3 {
    color: white;
}

body.dark-mode .title_comments {
    color: aliceblue;
}

body.dark-mode .box_user_article {
    background:rgb(33 37 42);
    color: #dfdfdf
}

body.dark-mode .profile_info h1 {
    color: aliceblue;
}

body.dark-mode .lead {
    color: aliceblue;
}

body.dark-mode .profile_info ul li {
    color: aliceblue;
}

body.dark-mode .box_comment {
    color: white;
}

body.dark-mode div.box_comment span a {
    color: #c1b5ff;
}

body.dark-mode .profile-edit-btn {
    color: #72bdff;
}

body.dark-mode .user_name_post {
    font-weight: bold;
    color: #ffffff;
}

body.dark-mode .footer_article {
    background: #283643;
}

body.dark-mode #st-1 {
    background-color: #283643 !Important;
}


body.dark-mode .top_ad_header {
    background: #283643;
}

body.dark-mode .botton_ad_header {
    background: #283643;
}

body.dark-mode .ad_imgs p a {
    color: #d2d8ff;
}

body.dark-mode a.btn_comment_register {
    color: white;
}

body.dark-mode .source {
    border-color: #6a6a6a;
}

body.dark-mode .source a {
    color: #c1d3ed;
}

body.dark-mode article p:first-of-type {
    margin-top: 0;
    color: white;
}
body.dark-mode .comment {
    border-top: 1px solid #130e34;
    background: #21252a;
}

body.dark-mode .comment_View{
    background: #22242e;
    border-top: 1px solid #332e43;
}

body.dark-mode .comment_input {
    background: #353947;
}

body.dark-mode .social-media img {
    filter: invert(1);
    mix-blend-mode: color-dodge;
}
body.dark-mode .mp3-play i,
body.dark-mode .mp3-rewind i,
body.dark-mode .speed i,
body.dark-mode .mp3-mute i
{
    color: #d6d6d6;
}
body.dark-mode .mini_post {
    background: rgb(33 37 42);
    border: 1px solid #3b3b3b;
}

body.dark-mode .mini_post div a {
    color: #e8e8e8;
}

body.dark-mode .card_featured {
    background: linear-gradient(#6c6f74, #21252a) padding-box, linear-gradient(to bottom right, #b827fc, #2c90fc, #b8fd33, #fec837, #fd1892) border-box !important;
}

body.dark-mode .border_1 {
    border: 1px solid #51576e;
}

body.dark-mode .withBackground_1 {
    background: #1f202f;
}

body.dark-mode .box_comment.no_comment{
    border-bottom: 2px solid #343a40;
}

body.dark-mode .comments {
    border-top: 2px solid #343a40;
}

body.dark-mode .box_comment {
    border-bottom: 2px solid #343a40;
}

body.dark-mode .display-count {
    color: #c0cfde;
    background: #424a53;
}

body.dark-mode .lista-social {
    border: 2px solid white;
    background: transparent;
}

body.dark-mode .lista-social img {
    filter: invert(1);
}

body.dark-mode .img_profile_user {
    border: 4px solid #515d6b;
}

body.dark-mode .profile_user_name {
    color: #cecece;
}

body.dark-mode .profile-card .analytics {
    background: white;
}

body.dark-mode .bbd {
    border-bottom: 1px dashed #595959;
}

body.dark-mode  .bio-text {
    color: #a4b9ce;
}

body.dark-mode .bar {
    background: #21252a;
    box-shadow: none;
}

body.dark-mode .bar-75 h1 {
    color: #c1d9ed;
}

body.dark-mode .border-bottom {
    border-bottom: 1px solid #41424c;
}

body.dark-mode .text-body-secondary {
    --bs-text-opacity: 1;
    color: #aeaeae;
}

body.dark-mode .sub-categories button,
 body.dark-mode .filters-cat button {
    color: #cfcfcf;
}

body.dark-mode .title-cat {
    color: #f7f7f7;
}
body.dark-mode .breadcrumb-item.active {
    color: #c6c6c6;
}
body.dark-mode .breadcrumb-item+.breadcrumb-item::before {
    color: #c6c6c6;
}
body.dark-mode .hero .arc svg path {
    fill: #343a40;
}
body.dark-mode .section-title h3 {
    color: #c0c0c0;
}
body.dark-mode .section-title h4 {
    color: #ffffff;
}

body.dark-mode .blogs .card {
    background: #232a30;
}

body.dark-mode .blogs .card .card-text {
    color: #c8c8c8;
}
body.dark-mode .text-body-secondary {
    color: rgb(255 255 255 / 75%) !important;
}

body.dark-mode .social-network img {
    border: 1px solid #000000;
    filter: invert(0.9);
}

body.dark-mode .box_user_link {
    background: #303539;
    border: 1px solid #4e4747;
    color: #c8c7c7;
}

body.dark-mode .space {
    border: 1px solid #303539;
}
body.dark-mode .bdb {
    border-color: #555353;
}

body.dark-mode .list-container .a-img-cat .caption {
    color: #dbdcdd;
}

body.dark-mode hr {
    border-bottom: 1px solid #6a6363;
}

body.dark-mode .tag-title {
    color: #f4f4f4;
}

body.dark-mode .recommended label small {
    color: #b7b7b7;
}

body.dark-mode .recents label h1 {
    font-size: 11px;
    margin: 8px 6px;
    color: #b4b4b4;
}

body.dark-mode .lastcomments .card {
    background: #a0a7af;
    border: 1px solid #333333;
}

body.dark-mode .sharing-links h2{
    color: #ffffff;
}

body.dark-mode .sharing-links .platform {
    background-color: #525558;
    border: 1px solid #393939;
}
body.dark-mode .nav-filter {
    border-bottom: 1px solid #4a4a4a;
}

body.dark-mode .nav-filter .nav-link.active {
    background: transparent;
    border-color: #505050;
    border-bottom: 1px solid;
    border-bottom-color: #343a40;
    color: #a4a4a4;
}

body.dark-mode  .card-coupon {
    background: #343a40;
}

body.dark-mode .card-coupon .img {
    background: #3a3e41;
}

body.dark-mode .card-coupon .textBox a {
    color: #c5c5c5;
}

body.dark-mode .card-coupon .textBox {
    color: #a5a5a5;
}

body.dark-mode .tag_price {

    color: #73ffa8 ! Important;
    background-color: #434343 ! Important;

}
.breadcrumb {
    margin-bottom: 0.5rem;
}

.not_comment_img {
    float: inherit !Important;
    width: 196px !Important;
    height: 100% !Important;
}

.date_article {
    float: right;
    font-size: 14px;
    color: #8f8f8f;
}

.top_ad_header {
    background: white;
    height: 4px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.botton_ad_header {
    background: white;
    height: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.nav-breadcrumb {
    background: white;
    margin: 20px auto;
    padding: 0.75em;
    max-width: 1280px;
    border-radius: 6px;
    height: 48px;
}

.vitrine_user_ad {
    padding-left: 0;
    border-radius: 10px;
    margin: 16px 0px;
    background: #f8f8f8;
}

.vitrine_user_ad li:not(:last-child) {
    border-bottom: 1px solid lightgrey;
}

.vitrine_user_ad i {
    float: right;
    margin-top: 24px;
    margin-right: 14px;
    font-size: 24px;
}

.note-video-clip {
    width: 100% !Important;
}

body.modal-open {
    padding-right: 0 !important;
    overflow: auto !important;
}

body.rtl .featured_tag {
    position: absolute;
    z-index: 9;
    padding: 8px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 12px;
    display: block;
}

body.rtl .area_sidebar {
    width: 30%;
    position: fixed;
    display: block;
    text-align: center;
    margin: 0px auto;
    left: 32px;
    right: auto;
}

body.rtl nav.open {
    right: 0px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.275);
    opacity: 1;
}

.last_posts_title {
    margin: 10px 4px 0px 4px;
    font-size: 17px;
    font-weight:100;
    color: #898989;
}

.last_posts_title i {
    float: left;
}

.swal2-content {
    background: #741313 !Important;
    color: #ffffff !Important;
}

.swal2-popup {
    background: #f4f4f4 !Important;
}

.ha-img {
    width: 150px;
}

.swal2-container.swal2-shown {
    background-color: rgb(0 0 0 / 83%) !Important;
}


.likes {
    float: right;
    display: inline-flex;
}

.display-likes {
    line-height: 1.2em;
    color: #b8b8b8;
    margin: 0px 2px;
    font-size: 16px;
    font-weight: 200;
}

.likes .icon-like  {
    color: #d5d5d5;
    font-size: 16px;
}

.likes .icon-like.liked {
    color: #d10000!Important;
}
.likes_item .icon-like.liked {
    color: #d10000!Important;
}

.likes_item a  {
    cursor: pointer;
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .pulse-animation {
    animation-name: pulse;
    animation-duration: 0.5s;
  }

  .likes_item {
    float: right;
    display: inline-flex;
    order: 3;
    margin-right: 15px;
}
.likes_item a.icon-like.liked i {
    color: #d10000!Important;
}
.likes_item .display-likes {
    font-size: 21px;
}

.likes_item i  {
    line-height: 1.3;
    color: #969899;
}

.user_sidebar i {
        vertical-align: middle;
 }

.user_sidebar img {
    width: 30px;
    height: 30px;
    border-radius: 30px;
}
.sub-menu {
    display: none;
  }
  ul.sub-menu  {
    padding-left: 0rem;
}

.social-media img {
    filter: opacity(0.4);
    mix-blend-mode: multiply;
    height: auto;
    width: 19px;
}
.social-media img:hover {

    filter: opacity(1);
}

.social-media li {
    margin: 0px 5px;
}

.loader-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}
  
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -55px;
    width: 110px;
    height: 14px;
  }
  
  .circle {
    width: 10px;
    height: 10px;
    border-radius: 14px;
    border: 2px solid white;
    margin: 10px;
    animation: rotate 2s infinite linear;
    animation-fill-mode: both; 
    display: inline-block;
  }
  
  .circle:nth-of-type(2) {
      animation: rotate2 2s infinite linear;
    animation-fill-mode: both; 
  }
  
  .circle:nth-of-type(3) {
      animation: rotate3 2s infinite linear;
    animation-fill-mode: both; 
  }
  
  @keyframes rotate {
    0% { 
      transform: scale(0);
      opacity: 0;
    }
    25% { 
      transform: scale(1);
      opacity: 1;
    }
    75% { 
      transform: scale(1);
      opacity: 1;
    }
    85% { 
      transform: scale(1);
      opacity: 1;
    }
    100% { 
      transform: scale(1);
      opacity: 0;
    }
  }
  
  @keyframes rotate2 {
    0% { 
      transform: scale(0);
      opacity: 0;
    }
    25% { 
      transform: scale(0);
      opacity: 0;
    }
    50% { 
      transform: scale(1);
      opacity: 1;
    }
    75% { 
      transform: scale(1);
      opacity: 1;
    }
    85% { 
      transform: scale(1);
      opacity: 1;
    } 
    100% { 
      transform: scale(1);
      opacity: 0;
    }
  }
  
  @keyframes rotate3 {
    0% { 
      transform: scale(0);
      opacity: 0;
    }
    50% { 
      transform: scale(0);
      opacity: 0;
    }
    75% { 
      transform: scale(1);
      opacity: 1;
    }
    85% { 
      transform: scale(1);
      opacity: 1;
    }
    100% { 
      transform: scale(1);
      opacity: 0;
    }
  }
  .mini_post div a {
    font-size: 11px;
    font-weight: 600;
    color: #000000;
}
.reports   {
    text-align: end;
    padding: 4px;
} 
.reports a i {
    float: right;
    font-size: 24px;
    color: #959595;
}

.btn-outline-lg  {
    border: 1px solid;
    border-radius: 6px;
    padding: 10px;
    margin: 1px;
    line-height: 0;
}

.blocos-list .bloco {
    margin: 0;
    background: rgb(255 255 255);
    max-width: 100%;
    border-radius: 14px;
    display: block;
    padding: 0px;
    box-shadow: rgba(18, 35, 75, 0.06) 0px 0px 16px 0px;
    height: auto;
}

@media screen {
    .list-mode {
        display: none;
    }


    .blocos-list{
        grid-template-columns: repeat(6, 1fr);
        display: grid;
        margin: 0 auto;
        padding: 0.75em;
        grid-gap: 1.25em;
        grid-auto-flow: dense;
        max-width: 1280px;
    }

    .blocos-list .bloco {
        display: flex;
        flex-direction: column;
    }

    .blocos-list img {
        height: 193px;
        max-height: 193px !important;
        border-bottom-left-radius: 0;
        border-radius: 6px;
    }
    
}
@media  (max-width: 768px) {
    .list-mode {
        display: block;
        width: 115px
    }
    .view_last {
        display: none;
    }
    .title_last  {
            line-height: 2;
        }
       
        .blocos-list {
            grid-template-columns: repeat(1, 1fr);
        }


        .blocos-list .bloco {
            display: flex !important;
            flex-direction: inherit!important
        }
        .blocos-list img {
            height: 130px;
            max-height: 130px!Important;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }
    }
        
.nav-list-mode  {  
 position: absolute;
right: 0;
}

.bar {
    padding: 4px;
    margin: 8px auto;
    width: 100%;
    background: white;
    box-shadow: 0px 1px 2px #e9e9e9;
    border-radius: 8px;
}

.toast-container {
    animation: slide-up 0.5s ease-in-out 4s forwards; 
}

@keyframes slide-up {
    from {
        transform: translateY(100%); 
    }
    to {
        transform: translateY(0%); 
    }
}
.show {
    display: block!important;
}

.btn-follow {
    border-radius: 25px;
    padding: 8px 63px;
    color: #5d5d5d;
    border: 1px solid #9e9e9e;
    margin: 4px 0px;
    background: transparent;
    font-weight: bold;
}


.btn-follow:hover {
        background: #cbcbcb;
        background-position: right center;
        background-size: 200% auto;
        -webkit-animation: pulse 2s infinite;
        animation: pulse512 1.5s infinite;
       }
       
       @keyframes pulse512 {
        0% {
         box-shadow: 0 0 0 0 #05bada66;
        }
       
        70% {
         box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
        }
       
        100% {
         box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
        }
       }
       
.line-icon {
    line-height: 1.2;
}

.type-posts button {
    padding: 3px 18px;
    background: white;
    border: 1px solid #c6c6c6;
    border-radius: 6px;
    color: #545454;
    font-size: 14px;
    font-weight: 100;
    margin: 6px 24px;
}
.dropdown-toggle-posts::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle-posts::after {
    color: #8f8f8f !Important;
}

.visually-hidden {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding:0 !important;
    border:0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

.mp3-player {

.mp3-player-controls {
    box-sizing: border-box;
    border: 1px solid #c5c5c5;
    color: #fff;
    font-size: 14px;
    height: 42px;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
    display: flex;
} 
  
 .mp3-player-controls button {
    border: none;
    background: transparent;
    margin: 3px;
    color: #3f3f3f;
}
    
    span {
      @extend .visually-hidden;
    }
  }
  
  progress {
    height: 13px;
    width: calc(100% - 281px);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  }

  progress[value]::-webkit-progress-bar {
    background-color: #908d8d;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
  }
  
  progress[value]::-webkit-progress-value {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
  
  .mp3-time {
    display: inline-block;
    font-size: 13px;
    padding: 0 5px;
    text-align: center;
    width: 4em;
  }
  
  .mp3-speed {
    width: 2.5em;
  }
  
  .mp3-progress {
        margin: 10px;
    }
.mp3-currenttime {
    margin: 6px;
    color: #6d6d6d;
    min-width: 60px;
}

.mp3-duration{
    margin: 6px;
    color: #6d6d6d;
    min-width: 60px;
}
  
.upload_audio {
    width: 70px;
    height: 70px;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    border-radius: 6px;
}

.inline-image__image-credits {
    text-align: center;
    margin-bottom: 10px;
    font-size: 12px;
}
.withBackground_ {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 3px;
}
.stretched_1{
    width: 100%;
}
.withBackground_ img {
    width: 100%;
    border-radius: 3px;
}

.withBackground_1 {
    width: 100%;
    text-align: center;
    background: #e8e8e8;
    border-radius: 3px;
    margin-bottom: 10px;
}

.border_1  {
    border: 1px solid #bebebe;
    padding: 4px;
}
.iframe_embed {
    width: 100%;
    min-height: 385px;
}

.embed_youtube  {
    height: 385px;
}

.embed_facebook  {
    height: 600px;
}

.embed_instagram {
    height: 1040px;
}

.embed_caption  {
    font-size: 11px;
    text-align: center;
    color: #7f8081;
    line-height: 0.5;
}
blockquote {
    color: rgb(86 82 76 / 60%);
    font-family: Tahoma, sans-serif;
    font-size: 16px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 35px;
}
 blockquote h1 {
    font-size: 4rem;
 }
 blockquote p {
    font-style: italic;
    margin-bottom: 0;
 }
 
 blockquote p::before, blockquote p::after {
    content: "“";
    font-family: Georgia;
    font-size: 6rem;
    margin: -3rem 0 0 -3rem;
    position: absolute;
    opacity: 0.5;
    color: #b3b3b3;
}
 
 blockquote p::after {
    content: "”";
    margin: -1rem -4rem 0 0;
 }
 
 blockquote cite {
    font-size: 1.5rem;
 }
 
 article .table td {
    text-align: center;
    border-left: 1px solid #dee2e6;
}

.table>tbody {
    vertical-align: inherit;
    border: 1px solid #dee2e6;
}

.button_color {
    background-color:var(--color-button-front);
}
.button_border_color {
    border: 2px solid var(--color-button-front);
    color: var(--color-button-front);
    font-weight: bold;
}

.border_search {
    border: 1px solid var(--color-text-sidebar);
}
.page-link.active,
    .active>.page-link {
        background-color: var(--color-button-front);
        border-color: var(--color-button-front);
    }

    .button_color:hover {
        background-color:var(--color-button-front);
        color: var(--color-text-button);
        filter: brightness(0.9) !Important;
    }

    a,
    .links_color {
        color: var(--color-link);
    }

    .button_text_color {

        color: var(--color-text-button);
    }

    .text-color-theme {
        color: var(--color-button-front);
    }

    .featured_tag {
        background: var(--background-color-website);
        background: var(--background-color-gradient-website);
        color: var(--color-text-sidebar);
    }

    .acceptcookies {
        background-color: var(--color-button-front);
        border-color: var(--color-button-front);
        color: var(--color-text-button);
    }

    .loader-wrap:after {
        background: var(--background-loader-wrap);
    }

    .title {
        color: var(--color-title);
    }

    #mic-init-access-tool .mic-access-tool-general-button {
        background: var(--background-color-website);
        background: var(--background-color-gradient-website);
        color: var(--color-text-sidebar);
    }

    #mic-init-access-tool .mic-access-tool-box.mic-access-tool-box-right {
        background: var(--background-color-website);
        background: var(--background-color-gradient-website);
        color: var(--color-text-sidebar);

    }

    #mic-init-access-tool .mic-access-tool-box .mic-access-tool-box-header {
        color: var(--color-text-sidebar);
    }

    .color_h {
        color: var(--background-color-website);
    }

    .dropdown-toggle::after {
        color: var(--color-text-sidebar);
    }

    .loader-wrap {
        background: var(--background-loader-wrap);
    }

    header .header-inner .box_btn_darkmode i {
        color: var(--color-text-sidebar);

    }

    .bg-color {
        background: var(--background-color-website);
        background: var(--background-color-gradient-website);
    }

    .bg-color .navbar-toggler-bar {
        background: var(--background-color-website);
    }

    .form-control:focus {
        border: 2px solid var(--color-button-front);
    }

    .background_color {
        background: var(--background-color-website);
        background: var(--background-color-gradient-website);
    }

    .btn-outline-lg {
        color: var(--background-color-website);
    }

    .btn-outline-lg.active {
        background: var(--background-color-website);
        color: var(--color-text-sidebar);
        border-color: var(--background-color-website);

    }

    .btn-outline-lg:hover {
        background: var(--background-color-website);
        color: var(--color-text-sidebar);
        border-color: var(--background-color-website);

    }

    .icon_reply {
        background: var(--background-color-website);
        background: var(--background-color-gradient-website);

    }

    progress[value]::-webkit-progress-value {
        background: var(--background-color-website);
        background: var(--background-color-gradient-website);
    }

    .close_reply i {
        margin: 13px 0px;
        background: #d0d0d0;
        padding: 10px;
        border-radius: 25px;
        position: relative;
    }
    .follow_before{
        position: relative;
        padding-right: 10px; 
    }

    .display-count {
        padding: 9px 18px;
        font-size: 14px;
        margin: 2px 10px;
        font-weight: bold;
        color: #686868;
        border: 2px solid #989898;
        border-radius: 28px;
        height: 42px;
    }

    .display-count span {
        padding-left: 6px;
        font-size: 13px;
        font-weight: 400;
    }
    .verified_badge {
        width: 30px;
    }

.min_verified_badge {
    width: 20px!important;
    height: 20px!important;
    margin: 3px 0px!important;
    float: none!important;
}

.back_link {
    font-weight: bold;
    font-size: 16px;
    display: flex;
    margin: 6px 0px;
}

.back_link i {
    line-height: 1.3;
}

.content_bg  {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 1px 1px 2px gray;
}

.bio-text {
    font-size: 13px;
    font-style: italic;
    font-weight: 100;
}

.card-premium {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    gap: 10px;
    box-shadow: 0px 0px 2px #afafaf;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
  .card-premium:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .card-premium > video {
    width: 100px;
    height: 100px;
    transition: all 0.1s ease-in-out;
  }
  
  .card-premium > .button-premium {
    font-size: 15px;
    font-weight: bold;
    padding: 5px 7px;
    border-radius: 10px;
    color: white;
    background-color: #e57e25;
  }

  .card-premium > .price_article {
    font-size: 40px;
    font-weight: bold;
}
  
  .card-premium > .h1 {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
  }
  
  .card-premium > .p {
    color: #9e9da1;
    font-size: 14px;
    text-align: center;
  }

  .card-comments-premium {
    width: 100%;
    height: 70px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    backdrop-filter: blur(10px);
    transition: 0.5s ease-in-out;
}
  
  .card-comments-premium .card:hover {
    cursor: pointer;
    transform: scale(1.05);
  }
  
  .card-comments-premium .img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    border-radius: 10px;
    background: linear-gradient(#d7cfcf, #9198e5);
  }
  
  .card-comments-premium .card:hover .img {
    transition: 0.5s ease-in-out;
    background: linear-gradient(#9198e5, #712020);
  }

  .card-comments-premium video {
    width: 50px;
}
  
  .card-comments-premium .textBox {
    width: calc(100% - 90px);
    margin-left: 10px;
    color: white;
    font-family: 'Poppins' sans-serif;
  }
  
  .card-comments-premium .textContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .card-comments-premium .span {
    font-size: 10px;
  }
  
  .card-comments-premium .h1 {
    font-size: 16px;
    font-weight: bold;
    color:black;
  }
  
  .card-comments-premium .p {
    font-size: 12px;
    font-weight: lighter;
    color: #1f1f1f;
}
  
.icon-100{
    font-size: 100px;
}
.tag_premium {
    width: 100%;
    height: 28px;
    border: none;
    border-radius: 0;
    background: linear-gradient(to right,#bf953f,#fcf6ba,#b38728,#fbf5b7,#aa771c);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8em;
    color: rgb(121, 103, 3);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition-duration: 3s;
    background-size: 200% 200%;
}
  
  .tag_premium .logoIcon path {
    fill: rgb(121, 103, 3);
  }
  
  .tag_premium:hover {
    transition-duration: 3s;
    animation: gradient 5s ease infinite;
    background-position: right;
  }

  .button-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10rem;
    transition: all 0.02s;
    font-weight: bold;
    color: rgb(37, 37, 37);
    z-index: 0;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
  }
  
  .button-send:hover {
    background: rgb(193, 228, 248);
    color: rgb(33, 0, 85);
  }
  
  .button-send:active {
    transform: scale(0.97);
  }
  
  .button-send .hoverEffect {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  
  .button-send .hoverEffect div {
    background: var(--color-button-front);
    background: var(--background-color-gradient-website);
    border-radius: 40rem;
    width: 10rem;
    height: 10rem;
    transition: 0.4s;
    filter: blur(20px);
    animation: effect infinite 3s linear;
    opacity: 0.5;
  }
  
  .button-send:hover .hoverEffect div {
    width: 8rem;
    height: 8rem;
  }
  
  @keyframes effect {
  
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  @media screen {
    .box_mobile {
        display: none;
    }
  }

  @media  (max-width: 1000px) {
    .box_mobile {
        display: block;
        text-align: center;

    }
      
  }
  
  .ad300 img  {
    max-width: 300px;
}


.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 25px;
    position: relative;
}

  .profile-card  .image {
    position: relative;
    height: 150px;
    width: 150px;
    padding: 3px;
    margin-bottom: 10px;
  }
  .profile-card  .image .profile-img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  .profile-card  .profile-card .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
  }
  .profile-card .text .name {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}
  .profile-card  .bio {
        width: 300px;
        font-size: 12px;
        font-style: italic;
        font-weight: 300;
        text-align: center;
  }
  .profile-card  .profile-card .media {
    display: flex;
    align-items: center;
    margin-top: 15px;
    cursor: pointer;
  }
  .profile-card  .profile-card .btns_profile {
    display: flex;
    align-items: center;
    margin-top: 25px;
  }
  .profile-card .analytics {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid #ababab;
}
  .profile-card  .analytics .data{
    display: flex;
    align-items: center;
    color: #333;
    padding: 0 20px;
    border-right: 1px solid #b0b0b0;
}
  .profile-card  .data i {
    font-size: 18px;
    margin-right: 6px;
  }
  .profile-card  .data:last-child {
    border-right: none;
  }

  .btn-donation {
    background-color: var(--color-button-front);
    color: var(--color-text-button);
    padding: 10px 40px;
    border: 1px solid var(--color-button-front);
    border-radius: 31px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
}

.bbd {
    border-bottom: 1px dashed #c2c2c2;
}


.notification-dot {
    width: 8px;
    margin: 8px 4px;
    height: 8px;
    position: absolute;
    background: #FF339C;
    border-radius: 50%;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
    animation-name: pulse-shadow;
}
  
@-webkit-keyframes pulse-shadow {
    from {
      box-shadow: 0px 0px 0px 0px rgba(255, 51, 156, 0.16);
    }
    to {
      box-shadow: 0px 0px 0px 16px rgba(255, 51, 156, 0.16);
    }
  } 

  .filters-cat button {
    margin: 6px 4px;
    background: transparent;
    padding: 4px 6px;
    border-radius: 6px;
    color: #4d4949;
    font-weight: 100;
    font-size: 15px;
}

.filters-cat .dropdown-toggle::after {
    color: #919191;
    display: inline-block;
    margin-left: .255em;
    vertical-align: 0.1em;
   
}

.filters-cat  button.btn:active, .filters-cat button.btn:hover {
    color: black;
    background-color: transparent;
    border-color: transparent;
}

.filters-cat i  {
    font-size: 20px;
    padding: 4px;
}

.title-cat {
    font-size: 16px;
    font-weight: bold;
    color: #2d2d2d;
    margin-top: 25px;
}

.sub-categories button {
    margin: 6px;
    padding: 4px;
    background: #ffffff00;
    font-size: 15px;
    font-weight: 100;
    color: #4d4949;
}

.sub-categories button.btn:active, .sub-categories button.btn:hover {
    color: black;
    background-color: transparent;
    border-color: transparent;
}

.sub-categories .dropdown-toggle::after {
    color: #919191;
}

.sub-categories .dropdown-item img {
    width: 30px;
    border-radius: 30px;
}

.badge-subcategory {
    background: #ffffff;
    margin-left: 10px;
    width: max-content;
}

.badge-subcategory a  {
    color: #818181;
}

.badge-subcategory i {
    font-size: 17px;
}

.featured-tag {
    position: absolute;
    width: 30px;
    margin: 0px 20px;
    padding: 9px 4px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--color-button-front);
}

.featured-tag i {
    color:var(--color-text-button);
    float: inline-end;
}

.categories_home {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.category-list {
    display: flex;
    flex-direction: row;
}
.category-item {
    flex: 0 0 auto;
    width: 130px;
    margin: 4px;
    text-align: center;
    background: white;
    display: inline-block;
    padding: 4px;
    box-shadow: 1px 1px 1px #b3b3b3;
    border-radius: 5px;
}
.category-item img {
    width: 100%;
    border-radius: 8px;
}
@media screen {
.box_user_link {
    margin: 0px;
    background: #ffffff;
    padding: 10px;
    width: 100%;
    color: #686868;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.06);
}

.link_img {
    box-shadow: 2px 5px 4px #8080802e;
    width: 250px;
    height: 250px;
    border-radius: 8px;
}

}

@media (max-width: 600px) {
    .link_img {
        margin: 0px auto;
        border-radius: 0px;
}
}

.title_link {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1px ! Important;
}

.bdb {
    border: 0;
    border-bottom: 1px;
    border-color: #dbdbdb;
    border-style: dashed;
}

.text {
    font-size: 20px;
    padding: 30px 0px 0px 4px;
    font-weight: bold;
    color: #696969;
}

.false-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .false-navbar svg {
    margin: 20px;
  }
  .false-navbar svg #De, .false-navbar svg #Autos {
    fill: white;
  }
  .false-navbar .menu {
    margin-top: 30px;
  }
  

  .hero {
    position: relative;
    height: 55vh;
    padding-top: 80px;
    min-height: 360px;
    margin-bottom: 30px;
  }
  @media (min-width: 768px) {
    .hero {
      height: 60vh;
    }
  }
  .hero .arc {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: rotate(180deg);
  }
  .hero .arc svg path {
    fill: #ededed;
  }
  .hero .cta-search {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
  }
  .hero .cta-search h2 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: white;
    padding: 5vh 0;
    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
            animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
  @media (min-width: 768px) {
    .hero .cta-search h2 {
      font-size: 52px;
      padding: 2vh 0 5vh 0;
    }
  }
  .hero .cta-search .blob {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 60vw;
    height: 50vw;
  }
  @media (min-width: 768px) {
    .hero .cta-search .blob {
      display: none;
    }
  }
  .hero .cta-search .blob svg {
    opacity: 0.1;
  }
  .hero .cta-search .blob svg path {
    -webkit-animation: changeBlobMorph infinite 10s both ease-in-out;
            animation: changeBlobMorph infinite 10s both ease-in-out;
  }
  .hero .group_input_home {
    position: relative;
    width: 90%;
    background: white;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 0px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
    cursor: pointer;
    z-index: 4;
  }
  @media (min-width: 768px) {
    .hero .group_input_home {
      padding: 0px;
      transition: ease all 0.3s;
    }
    .hero .group_input_home:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
  }
  .hero .main-input {
    padding: 11px 40px;
    width: 100%;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
}
 
.hero .group_input_home svg {
    float: left;
    position: absolute;
    left: 10px;
    font-size: 10px;
    top: 10px;
}

  .hero .fake-waves {
    position: absolute;
    width: 100%;
    bottom: 0;
    top: 0%;
    right: 0;
    height: 100%;
    top: 0%;
    overflow: hidden;
    z-index: 0;
    background-size: cover;
  }
  .hero .fake-waves:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) top center;
    z-index: 1;
    mix-blend-mode: overlay;
  }
  .hero .fake-waves > span {
    position: absolute;
    display: block;
    background: #FBFCFF;
    width: 200vw;
    height: 200vw;
    left: -50vw;
    bottom: -200vw;
    border-radius: 50%/45%;
    transform-origin: center;
    transform: rotate(0);
    opacity: 0.2;
    margin-bottom: 50px;
  }
  @media (min-width: 768px) {
    .hero .fake-waves > span {
      bottom: -300vw;
      left: -100vw;
      width: 300vw;
      height: 300vw;
    }
  }
  .hero .fake-waves > span.a {
    -webkit-animation: rotateInfinite 30s linear infinite;
            animation: rotateInfinite 30s linear infinite;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .hero .fake-waves > span.b {
    -webkit-animation: rotateInfinite 30s linear infinite;
            animation: rotateInfinite 30s linear infinite;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .hero .fake-waves > span.c {
    transition-delay: 0.1s;
    opacity: 0.2;
    -webkit-animation: rotateInfinite 30s linear infinite;
            animation: rotateInfinite 30s linear infinite;
  }
  
  .section-title {
    margin-bottom: 15px;
    -webkit-animation: fadeInUp;
    animation: fadeInUp;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    text-align: left;
    padding: 0px 10px;
}

.section-title h4 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 10px;
    color: #000;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 100;
}

  .section-title h3 {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    color: var(--color-title);
    margin-bottom: 5px;
    font-weight: bold;
    
}

.section-title h1  {
    font-size: 18px;
    font-weight: bold;
    color: #6a6a6a;
}
  
.list-container {
    display: flex;
    text-align: center;
}

@media screen {
    
.container-overflow {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    white-space: nowrap;
    transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    padding: 6px 0px;
    height: 155px;
    margin: auto;
}
}

@media (max-width: 769px) {
    .container-overflow {
        height: 130px;
    }

}

  .list-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .list-container ul li {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 50%;
  }
  @media (min-widh: 768px) {
    .list-container ul li {
      width: 20%;
    }
  }
  .list-container ul li .box {
    background: white;
    width: 80%;
    height: 50px;
    border-radius: 18px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: block;
  }
  .list-container ul li .text {
    width: 100%;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 12px;
    color: #353B48;
    display: block;
    text-align: center;
    margin-top: 5px;
  }

  .list-container .item {
    display: inline-flex;
}

.list-container .list-categories  {
    display: flex;
    flex-direction: row;
}
  .list-container .item .slick-slide {
    display: inline-block;
  }
  .list-container .item .slick-list {
    padding: 0 10% 0 0;
  }
 .cat-more a.a-img-cat {
        border-radius: 60%;
        background-color: var(--background-color-website);
        background: var(--background-color-gradient-website);
    }

    @media screen {
       .cat-more a.a-img-cat i {
        margin-top: 11%;
        font-size: 80px;
        color: var(--color-text-sidebar);
    }
    }
    
    @media (max-width: 768px) {
       .cat-more a.a-img-cat i {
        margin-top: 6%;
    }
    }


  .list-container .a-img-cat {
    display: block;
    background-position: center;
    background-size:102%;
    background-repeat: no-repeat;
    border-radius: 50px;
    position: relative;
    height: 100px;
    outline: none;
    transition: ease all 0.3s;
    top: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }

  @media (max-width: 768px) {
    .list-container .a-img-cat {
      height: 90px;
    }
  }
  .list-container .a-img-cat:hover {
    top: -5px;
  }
  .list-container .a-img-cat:hover:before {
    margin-top: 5px;
    opacity: 0.5;
    filter: blur(15px);
  }

  .list-container .a-img-cat .caption {
    position: absolute;
    bottom: -25px;
    text-align: center;
    width: 100%;
}
@media screen{
.list-container .a-img-cat .caption {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
}
@media (max-width: 769px) {
    .list-container .a-img-cat .caption {
        font-size: 12px;
        font-weight: 400;
    }
}

  .list-container .a-img-cat .caption h4 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    display: block;
  }
  @media (min-width: 768px) {
    .list-container .a-img-cat .caption h4 {
      font-size: 26px;
      bottom: 15px;
    }
  }

  
  @-webkit-keyframes rotateInfinite {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotateInfinite {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes changeBlobMorph {
    0% {
      d: path("M58.4,-49.5C70,-32.1,69.6,-8.2,64.9,15.7C60.2,39.6,51.1,63.5,34.6,71.1C18.2,78.7,-5.7,70.1,-28.3,59.1C-50.9,48.1,-72.2,34.7,-73.8,19.3C-75.4,3.8,-57.3,-13.7,-41.7,-32C-26.1,-50.3,-13.1,-69.4,5.2,-73.5C23.5,-77.7,46.9,-66.9,58.4,-49.5Z");
    }
    33% {
      d: path("M55.4,-47.3C67.4,-29.2,69.7,-6.4,63.8,12.6C57.9,31.5,43.8,46.6,26.8,54.2C9.8,61.9,-10.1,62.1,-26.8,54.5C-43.5,46.9,-56.9,31.5,-63.8,11.6C-70.7,-8.3,-71,-32.6,-59.3,-50.6C-47.6,-68.7,-23.8,-80.5,-1,-79.6C21.7,-78.8,43.4,-65.4,55.4,-47.3Z");
    }
    66% {
      d: path("M43.2,-33.1C58,-15.9,73.4,2.2,72.1,19.8C70.7,37.4,52.6,54.6,33.1,60.9C13.6,67.3,-7.3,62.9,-28.7,54.5C-50.2,46.2,-72.2,33.8,-77.4,16.2C-82.6,-1.5,-71.1,-24.5,-55.4,-41.9C-39.7,-59.3,-19.9,-71,-2.8,-68.8C14.2,-66.5,28.4,-50.2,43.2,-33.1Z");
    }
    100% {
      d: path("M58.4,-49.5C70,-32.1,69.6,-8.2,64.9,15.7C60.2,39.6,51.1,63.5,34.6,71.1C18.2,78.7,-5.7,70.1,-28.3,59.1C-50.9,48.1,-72.2,34.7,-73.8,19.3C-75.4,3.8,-57.3,-13.7,-41.7,-32C-26.1,-50.3,-13.1,-69.4,5.2,-73.5C23.5,-77.7,46.9,-66.9,58.4,-49.5Z");
    }
  }
  @keyframes changeBlobMorph {
    0% {
      d: path("M58.4,-49.5C70,-32.1,69.6,-8.2,64.9,15.7C60.2,39.6,51.1,63.5,34.6,71.1C18.2,78.7,-5.7,70.1,-28.3,59.1C-50.9,48.1,-72.2,34.7,-73.8,19.3C-75.4,3.8,-57.3,-13.7,-41.7,-32C-26.1,-50.3,-13.1,-69.4,5.2,-73.5C23.5,-77.7,46.9,-66.9,58.4,-49.5Z");
    }
    33% {
      d: path("M55.4,-47.3C67.4,-29.2,69.7,-6.4,63.8,12.6C57.9,31.5,43.8,46.6,26.8,54.2C9.8,61.9,-10.1,62.1,-26.8,54.5C-43.5,46.9,-56.9,31.5,-63.8,11.6C-70.7,-8.3,-71,-32.6,-59.3,-50.6C-47.6,-68.7,-23.8,-80.5,-1,-79.6C21.7,-78.8,43.4,-65.4,55.4,-47.3Z");
    }
    66% {
      d: path("M43.2,-33.1C58,-15.9,73.4,2.2,72.1,19.8C70.7,37.4,52.6,54.6,33.1,60.9C13.6,67.3,-7.3,62.9,-28.7,54.5C-50.2,46.2,-72.2,33.8,-77.4,16.2C-82.6,-1.5,-71.1,-24.5,-55.4,-41.9C-39.7,-59.3,-19.9,-71,-2.8,-68.8C14.2,-66.5,28.4,-50.2,43.2,-33.1Z");
    }
    100% {
      d: path("M58.4,-49.5C70,-32.1,69.6,-8.2,64.9,15.7C60.2,39.6,51.1,63.5,34.6,71.1C18.2,78.7,-5.7,70.1,-28.3,59.1C-50.9,48.1,-72.2,34.7,-73.8,19.3C-75.4,3.8,-57.3,-13.7,-41.7,-32C-26.1,-50.3,-13.1,-69.4,5.2,-73.5C23.5,-77.7,46.9,-66.9,58.4,-49.5Z");
    }
  }
 
  @-webkit-keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }

  @media screen {
  .box_cat {
    width: 100px;
    margin-left: 8px;
}
  }

  @media (max-width: 768px)  {
    .box_cat {
        width: 90px;

  }
}

.group_input_home  {
    -webkit-animation: fadeInUp;
    animation: fadeInUp;
-webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 2px 2px;
    vertical-align: middle;
    z-index: 4;
}


@media screen {
.gallery-items img {
    padding: 4px;
    cursor: zoom-in;
    mix-blend-mode: multiply;
    height: 118px;
}
}
@media (max-width: 1300px)  {
    .gallery-items img {
height: 110px;
    }
}

@media (max-width: 992px)  {
    .gallery-items img {
        height: -webkit-fill-available;
    }
}

.star-rating {
    direction: rtl;
}

.star-rating input[type=radio] {
    display: none;
}
.star-rating label {
    color: #bbb;
    font-size: 24px;
    padding: 0;
    cursor: pointer;
    display: inline-block;
}
.star-rating label.active {
    color: #f2b600!important;
 }

.star-rating label:before {
    content: '★';
}
.star-rating input[type=radio]:checked ~ label {
    color: #f2b600;
}
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f2b600;
}



.blogs .card  {
    border-radius: 16px;
}

.blogs .card img {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: 5px solid;
    border-color: var(--background-color-website);
}

.blogs .card .card-text  {
    color: #545454;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 14px;
}

.blogs .card .card-body  {
    min-height: 80px;
}

.blogs label i {
    line-height: 0;
    font-size: 13px;
}

.blogs label small  {
    font-size: 11px;
    padding: 1px 3px;
    color: #4c4c4c;
    font-weight: 400;
}

.blogs label small::before {
    content: "•";
    margin: 1px;
}


.btn-more {
    padding: 6px 30px;
    background: var(--color-button-front);
    border-radius: 30px;
    font-size: 18px;
    color:var(--color-text-button);
}

.btn-more:hover {
    filter: saturate(0.7);
    background: var(--color-button-front);
}

.all_categories  .col .card   {  
background-size: cover;
background-repeat: no-repeat;
}

.all_categories  .col .card h3 {
    text-shadow: 2px 0px 8px black;
}

.social-network img {
    margin: 2px;
    width: 30px;
    border: 1px solid gray;
    padding: 6px;
    border-radius: 8px;
    filter: opacity(0.6);
}

.social-network img:hover {
    filter: opacity(1);
}

footer p  {
    font-size: 13px;
}

.videos-youtube img {
    border-radius: 4px;
    filter: brightness(0.8);
}

.videos-youtube img:hover {
    filter: brightness(1);
}
@media screen {
.videos-youtube i {

    font-size: 13px;
    color: var(--color-button-front); 
    cursor: pointer;
}
}
@media  (max-width: 992px) {
    .videos-youtube i {
        font-size: 40px;
    }
}

.videos-home label small::before {
    content: "•";
    margin: 1px;
}

.videos-home label i {
    font-size: 13px;
    margin: 5px;
}

.videos-home label small {
    font-size: 11px;
    padding: 1px 3px;
    color: #4c4c4c;
    font-weight: 400;
}

.swal2-image {
    border-radius:0px !important;
    margin: 3em auto 1em!important;

}

.bg-col-comments {
    background-image: url(https://watermelon.codigolaranja.com/uploads/posts/reddit_-_dive_into_anything_8973398781.png);
    top: 0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 6% center !important;
    filter: blur(60px);
    position: absolute;
    width: 110%;
    transform: translate(-32px, -32px);
    height: 130%;
}

.lastcomments .card  {
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #E6E6E6;
}

.lastcomments h5 {
    font-size: 15px;
    font-weight: bold;
    color:var(--color-title);
    text-transform: capitalize;
}

.lastcomments a {
    color: black;

}

.lastcomments p {
    text-transform: capitalize;
    font-style: italic;
    font-size: 12px;
    font-weight: 500;
    min-height: 40px;
}

.lastcomments small {
    color: #000;
}

.lastcomments .avatar-user {

        position: absolute;
        margin: 18px -17px;
        width: 24px;
        height: 24px;
    }

    .tags-cloud {
        background: #d3d3d3;
        padding: 10px 16px;
        border-radius: 29px;
        margin: 8px 0px;
        color: #2e2e2e;
        font-weight: 500;
    }

    @media screen {
    .suggestions {
        width: 39%;
        text-align: center;
        margin: 4px auto;
        padding: 0px;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 2px 3px 6px #b2b2b2;
    }
}
@media  (max-width: 1260px) {
    .suggestions {
        width: 47%;
    }
}
@media  (max-width: 1020px) {
    .suggestions {
        width: 59%;
    }
}

@media  (max-width: 850px) {
    .suggestions {
        width: 70%;
    }
}

@media  (max-width: 650px) {
    .suggestions {
        width: 90%;
    }
}


    .suggestions .list-group-item {
        padding: 10px;
        border: 0;
        border-bottom: 1px solid #eaeaea;
        text-align: justify;
        font-size: 15px;
        font-weight: 400;
        color: #5a5a5a;
    }
    .button_explore {
        line-height: 1;
        text-decoration: none;
        display: inline-flex;
        border: none;
        cursor: pointer;
        align-items: center;
        gap: 0.75rem;
        color: var(--color-text-button);
        border-radius: 30px;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        padding-left: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: background-color 0.3s;
        background: var(--color-button-front);

      }
      
      .button_explore .button__icon-wrapper {
        flex-shrink: 0;
        width: 25px;
        height: 25px;
        position: relative;
        color: var(--color-button-front);
        background-color:var(--color-text-button);
        border-radius: 50%;
        display: grid;
        place-items: center;
        overflow: hidden;
      }
      
      .button_explore:hover {
        filter: saturate(0.5);
      }
      
      .button_explore:hover .button__icon-wrapper {
        color: var(--color-button-front);
      }
      
      .button_explore .button__icon-svg--copy {
        position: absolute;
        transform: translate(-150%, 150%);
      }
      
      .button_explore:hover .button__icon-svg:first-child {
        transition: transform 0.3s ease-in-out;
        transform: translate(150%, -150%);
      }
      
      .button_explore:hover .button__icon-svg--copy {
        transition: transform 0.3s ease-in-out 0.1s;
        transform: translate(0);
      }

      .button_store {
        width: 100%;
        line-height: 1;
        text-decoration: none;
        display: inline-flex;
        border: none;
        cursor: pointer;
        align-items: center;
        gap: 0.75rem;
        color: var(--color-text-button);
        border-radius: 2px;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: background-color 0.3s;
        background: var(--color-button-front);

      }
      
      .button_store .button__icon-wrapper {
        flex-shrink: 0;
        width: 25px;
        height: 25px;
        position: relative;
        color: var(--color-button-front);
        background-color:var(--color-text-button);
        border-radius: 50%;
        display: grid;
        place-items: center;
        overflow: hidden;
      }
      
      .button_store:hover {
        filter: saturate(0.5);
      }
      
      .button_store:hover .button__icon-wrapper {
        color: var(--color-button-front);
      }
      
      .button_store .button__icon-svg--copy {
        position: absolute;
        transform: translate(-150%, 150%);
      }
      
      .button_store:hover .button__icon-svg:first-child {
        transition: transform 0.3s ease-in-out;
        transform: translate(150%, -150%);
      }
      
      .button_store:hover .button__icon-svg--copy {
        transition: transform 0.3s ease-in-out 0.1s;
        transform: translate(0);
      }

  .btn-coupon {
    border-radius: 3px;
    color: gray;
}

   .platform_logo_post img {
    width: 30px;
   }



.img-platform-post {
    height: 70px;
}

.price_product {
    font-size: 28px;
    font-weight: bold;
    color: #323232;
}

.price_product del {
    color: #989898;
    font-size: 16px;
    font-weight: 400;
}

.price_product span {
    font-size: 11px;
    font-weight: 600;
}

.box_product .img_pp {
    height: 275px;
    padding: 0px;
    border-radius: 2px;
    border: 1px solid #dddddd;
}

    .card_product  {
        margin-left: 0;
        margin-right: 0;
    }

    @media (max-width: 603px) {
        .card_product .col-auto {
            text-align: center;
            margin: auto;
            width: 100%;
        }
}

.cover-container {
    max-width: 42em;
}

@media screen  {
.cookies-card {
    position: fixed;
    bottom: 5%;
    right: 10px;
    border: 1px solid #cccccc;
}
}
@media screen and (max-width: 600px) {
    .cookies-card {
        position: sticky;
        bottom: 5%;
        margin: 0px auto;
        
    }

}

.cookies-card {
    width: 300px;
    height: 220px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    gap: 13px;
    overflow: hidden;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
    animation: float-2 8s ease-in-out infinite;
  }
  
  .cookies-card #cookieSvg {
    width: 50px;
}
  
  .cookies-card #cookieSvg g path {
    fill: rgb(97, 81, 81);
  }
  
  .cookies-card .cookieHeading {
    font-size: 1.2em;
    font-weight: 800;
    color: rgb(26, 26, 26);
  }
  
  .cookies-card .cookieDescription {
    text-align: center;
    font-size: 0.7em;
    font-weight: 600;
    color: rgb(99, 99, 99);
  }
  
  
  .cookies-card .acceptButton {
    width: 80px;
    height: 30px;
    background-color: var(--color-button-front);
    transition-duration: .2s;
    border: none;
    color: var(--color-text-button); 
    cursor: pointer;
    font-weight: 600;
    border-radius: 20px;
  }
  
  .cookies-card .declineButton {
    width: 80px;
    height: 30px;
    background-color: rgb(218, 218, 218);
    transition-duration: .2s;
    color: rgb(46, 46, 46);
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 20px;
  }
  
  .cookies-card .declineButton:hover {
    background-color: #ebebeb;
    transition-duration: .2s;
  }
  
  .cookies-card .acceptButton:hover {
    background-color: #9173ff;
    transition-duration: .2s;
  }

  @media screen {
  .carousel-indicators {
    margin-bottom: 0rem;
  }
}

@media (max-width: 800px) {
    .carousel-indicators {
        display: none!Important;
      }
}

.banners-ads-home {
    width: auto;
    padding: 0px 10px;
}
.sharing-links .platform {
    background-color: white;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.06);
}

.sharing-links .platform img {
    width: 100px;
}

.sharing-links h2 {
    font-size: 28px;
}

.sharing-links i {
    font-size: 12px;
}

.btn-sharing-home {
    background: var(--color-button-front);
    color: var(--color-text-button);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.btn-sharing-home:hover {
    background: var(--color-button-front);
    color: var(--color-text-button);
    filter: opacity(0.5)!Important;
}

.tag_stock {
    margin: 0px 10px;
    background: var(--background-color-website);
    padding: 0px 10px;
    border-radius: 25px;
    color: var(--color-text-sidebar);
    font-size: 10px;
    font-weight: 300;
    line-height: 2;
}

.filters-search button {
    background: #ffffff;
    color: #303030;
    border: 1px solid #e9e9e9;
    margin: 6px 0px;
    padding: 7px 17px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.06);
}

.filters-search button::after {
    color: #343434;
}
.recommended h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #292929;
    margin: 0px 18px;
}

.recommended label i {
    line-height: 0;
    font-size: 13px;
}

.recommended label small  {
    font-size: 11px;
    padding: 1px 3px;
    color: #4c4c4c;
    font-weight: 400;
}

.recommended label small::before {
    content: "•";
    margin: 1px;
}

.recommended article .ratio { text-align: center;}

.recommended article .ratio img {
    width: auto;
    height: 100px;
    mix-blend-mode: multiply;
}

.recents label  {
    display: flex;
}

.recents label h1 {
    font-size: 11px;
    margin: 8px 6px;
    color: #4e4e4e;
}
.recents label i {
    font-size: 13px;
    margin: 5px;
}

.recents label h1::before {
    content: "•";
    margin: 4px;
}

.ad_web_banner_home img {
    height: auto;
    width: 100%;
    border-radius: 0px;
}

.tag-title {
    color: #212121;
    font-size: 17px;
    font-weight: bold;
    margin: 0px 0px 0px 15px;
}

.section-title label i {
    line-height: 0;
    font-size: 12px;
}

.section-title h2  {
    font-size: 17px;
    color: #323232;
}

.line-center {
    width: 100%;
    height: 1px;
    background: #d0d0d0;
    margin: auto;
}

.nav-filter .nav-link.active  {
    background: transparent;
    border-bottom: 1px solid;
    border-bottom-color: var(--background-color-front);
}
.product-meta {
    height: 28px;
    overflow: hidden;
    margin: 0 auto 5px;
}
 
.product-meta del {
    font-size: 11px;
    color: #8f8c8c;
}

.descount_tag {
    font-size: 13px!Important;
    width: 100%;
    background: var(--background-color-gradient-website);
    color: var(--color-text-button)!Important;
    border-radius: 100px!Important;
    padding: 4px 6px;
    font-weight: 600 ! Important;
    vertical-align: baseline!Important;
    min-width: fit-content!Important;
}

.tag_price {
    color: #30d06d ! Important;
    background-color: #ebfffe ! Important;
    font-size: 12px ! Important;
    border-radius: 100px ! Important;
    padding: 4px 6px;
    font-weight: 600 ! Important;
    vertical-align: baseline;
    min-width: fit-content;
}

.tag_category {
    padding: 4px 6px;
    background: #e6e6e6!Important;
    border-radius: 100px;
    font-size: 12px!Important;
    font-weight: 600 ! Important;
    vertical-align: baseline;
    min-width: fit-content;

}
.price_range input {
    background: #ffffff;
    color: #303030;
    border: 1px solid #e9e9e9;
    margin: 6px 3px;
    padding: 7px 17px;
    border-radius: 10px;
    font-size: 16px;
    width: 124px;
    font-weight: 400;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.06);
}

.btn-filter {
    padding: 9px 10px ! Important;
    border-radius: 10px ! Important;
    margin: 5px 2px ! Important;
    line-height: 0;
}

.newsletter-subscribe {
    color:#313437;
    background-color:#fff;
    padding:50px 0;
  }
  
  .newsletter-subscribe p {
    color:#7d8285;
    line-height:1.5;
  }
  
  .newsletter-subscribe h2 {
    font-size:24px;
    font-weight:bold;
    margin-bottom:25px;
    line-height:1.5;
    padding-top:0;
    margin-top:0;
    color:inherit;
  }
  
  .newsletter-subscribe .intro {
    font-size:16px;
    max-width:500px;
    margin:0 auto 25px;
  }
  
  .newsletter-subscribe .intro p {
    margin-bottom:35px;
  }
  
  .newsletter-subscribe form {
    justify-content:center;
  }
  
  .newsletter-subscribe form .form-control {
    background:#eff1f4;
    border:none;
    border-radius:3px;
    box-shadow:none;
    outline:none;
    color:inherit;
    text-indent:9px;
    height:45px;
    margin-right:10px;
    min-width:250px;
  }
  
  .newsletter-subscribe form .btn {
    padding:16px 32px;
    border:none;
    background:none;
    box-shadow:none;
    text-shadow:none;
    opacity:0.9;
    text-transform:uppercase;
    font-weight:bold;
    font-size:13px;
    letter-spacing:0.4px;
    line-height:1;
  }
  
  .newsletter-subscribe form .btn:hover {
    opacity:1;
  }
  
  .newsletter-subscribe form .btn:active {
    transform:translateY(1px);
  }
  
  .newsletter-subscribe form .btn-primary {
    background-color:#055ada !important;
    color:#fff;
    outline:none !important;
  }
  
.card-coupon {
    width: 100%;
    height: 30px;
    display: flex
;
    align-items: center;
    justify-content: left;
    backdrop-filter: blur(10px);
    transition: 0.5s ease-in-out;
    background: #f4f4f4;
    border-radius: 39px;
}

.card-coupon .img {
    width: 30px;
    height: 30px;
    margin-left: 2px;
    border-radius: 22px;
    background: #f9f9f9;
    padding: 2px 5px;
}


.card-coupon .textBox {
    width: calc(100% - 90px);
    margin-left: 10px;
    color: #1a1919;
}
.card-coupon .textBox a {
    color: #1a1919;
}

.card-coupon .textContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-coupon .span {
  font-size: 10px;
}

.card-coupon .h5 {
    font-size: 13px;
    font-weight: 400;
    margin-top: 7px;
    text-decoration: underline;
}

.card_featured  {
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(to bottom right, #b827fc, #2c90fc, #b8fd33, #fec837, #fd1892) border-box !important;
    border: 4px solid transparent ! Important;
    border-radius: 10px ! Important;
}
 
.box_shadow {
    border: 1px solid #E6E6E6;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.06);
}
 