.img-one-line-text {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    align-content: center;
}

.img-one-line-text img {
    width: 40px;
    margin-right: 12px;
}

.loading {
    position: absolute;
    background: #000000cf;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    align-content: stretch;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    display: none;
    height: 100%;
    min-height: 100%;
    color: #fff;
    padding: 50px;
}

.loadingV2 {
    position: absolute;
    background: #000000cf;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    align-content: stretch;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    display: none;
    height: 100%;
    min-height: 100%;
    color: #fff;
    padding: 50px;
}

.hide {
    display: none !important;
}

.blob:not(:focus) {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation: pulse-black 1s infinite;
    animation: pulse-black 1s infinite;
}

.blob.blob-blue:not(:focus) {
    --bg-on : rgba(33, 150, 243,1);
    --bg-off : rgba(33, 150, 243,0);
    -webkit-box-shadow: 0 0 0 0 var(--bg-on);
    box-shadow: 0 0 0 0 var(--bg-on);
    -webkit-animation: pulse-blob 1.5s infinite;
    animation: pulse-blob 1.5s infinite;
}

.blob.blob-red:not(:focus) {
    --bg-on : rgba(255, 82, 82,1);
    --bg-off : rgba(255, 82, 82,0);
    -webkit-box-shadow: 0 0 0 0 var(--bg-on);
    box-shadow: 0 0 0 0 var(--bg-on);
    -webkit-animation: pulse-blob 1s infinite;
    animation: pulse-blob 1s infinite;
}

.blob.blob-yellow:not(:focus) {
    --bg-on : rgba(255,193,7,1);
    --bg-off : rgba(255,193,7,0);
    -webkit-box-shadow: 0 0 0 0 var(--bg-on);
    box-shadow: 0 0 0 0 var(--bg-on);
    -webkit-animation: pulse-blob 1s infinite;
    animation: pulse-blob 1s infinite;
}

.blob.blob-green:not(:focus) {
    --bg-on : rgba(76, 175, 80,1);
    --bg-off : rgba(76, 175, 80,0);
    -webkit-box-shadow: 0 0 0 0 rgba(76, 175, 80,1);
    box-shadow: 0 0 0 0 rgba(76, 175, 80,1);
    -webkit-animation: pulse-blob 2s infinite;
    animation: pulse-blob 2s infinite;
}

@-webkit-keyframes pulse-blob {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--bg-on);
        box-shadow: 0 0 0 0 var(--bg-on);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px var(--bg-off);
        box-shadow: 0 0 0 10px var(--bg-off);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 var(--bg-off);
        box-shadow: 0 0 0 0 var(--bg-off);
    }
}

@keyframes pulse-blob {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--bg-on);
        box-shadow: 0 0 0 0 var(--bg-on);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px var(--bg-off);
        box-shadow: 0 0 0 10px var(--bg-off);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 var(--bg-off);
        box-shadow: 0 0 0 0 var(--bg-off);
    }
}

.loader {
    overflow: hidden !important;
}

span.one-line-text {
    width: 100%;
    min-width: 100%;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}

span.one-line-text.one-line-text-alternative {
    -webkit-line-clamp: 3;
}

.dica {
    display: none;
}

.jcrop-holder {
    background-color: #a4a4a4 !important;
}

.buttons-card {
    display: -webkit-box;
    display: flex;
    justify-content: space-around;
    -webkit-box-align: stretch;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    gap: 15px;
}

.page-with-menu {
    display: -webkit-box;
    display: flex;
    /* -webkit-box-orient: horizontal; */
    /* -webkit-box-direction: normal; */
    flex-direction: row;
    -webkit-box-pack: space-evenly;
    /* justify-content: space-evenly; */
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    align-items: stretch;
    gap: 15px;
}

.card-body {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 10px 4px !important;
}

.card-selectable .card-body {
    display: -webkit-box;
    display: flex;
}

.card-selectable .card-body .card-title {
    margin: 0;
    margin-bottom: 15px;
}

.card-interesse h3.card-title {
    font-size: 1.5rem;
    padding: 15px;
    text-align: center;
    font-weight: 700;
}

.buttons-card a.btn {
    -webkit-box-flex: 1;
    flex: 1;
}

.card-marca .card-img-top,.card-public-produto .card-img-top {
    aspect-ratio: 100/37;
    -o-object-fit: contain;
    object-fit: contain;
}

a.card {
    text-decoration: none;
    color: #0a0a0a;
}

a.card:hover {
    text-decoration: none;
}

.row-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 15px;
}

.pem_auto_suggest_image_for_create.card {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border: 0px;
    padding: 10px 15px;
}

.pem_auto_suggest_image_for_create.card.criado-com-sucesso {
    margin: 0;
    padding: 0;
}

.criado-com-sucesso .menu-metas {
    display: none;
}

.lista {
    padding-top: 15px !important;
}

p.detail-label {
    font-size: 10px;
    color: #000;
    font-weight: 300;
    margin-right: 15px;
}

.BTN_ACTION {
    font-weight: 700 !important;
    text-transform: uppercase;
    max-width: 300px;
}

li.nav-item.send-logo {
    margin-left: auto;
}

.header ul.nav.nav-pills {
    display: -webkit-box;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

nav.navbar {
    width: 100%;
    background-color: #ffffff!important;
    -webkit-box-shadow: 1px 1px 3px #c6c6c6;
    box-shadow: 1px 1px 3px #c6c6c6;
    padding: 0 1rem;
    top: 0;
    z-index: 100;
    height: 60px;
    min-height: 60px;
}

a.navbar-brand {
    max-width: 65%;
}

img.logo {
    /* max-width: -webkit-fill-available; */
    display: block;
    height: 42px;
    -o-object-fit: contain;
    object-fit: contain;
}

ul.navbar-nav:not(.ml-auto) {
    width: 100%;
    background: white;
}

.nav-destaque:not(.modal-cadastro) {
    background: #ffc107;
    color: #000 !important;
    border-radius: 15px;
    margin-right: 25px;
    padding: 0.5rem 15px !important;
}

.nav-link {
    padding: 0.5rem 15px !important;
}

.navbar-nav .nav-link {
    padding: 0.5rem 10px !important;
}

li.nav-item.send-logo a {
    color: #007bff !important;
}

.nav-detrat a {
    color: #f80000 !important;
}

li.nav-item {
    position: relative;
}

.ml-auto {
    margin-left: auto;
}

.header-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    margin-top: 15px;
}

.header-content h1 {
    margin: 0;
    font-size: 1.5rem;
}

.card .card-title {
    font-size: 1rem;
}

.HEADER_TEMAS {
    position: sticky;
    position: -webkit-sticky;
    top: 76px;
    max-height: calc(100vh - 77px);
    width: 200px;
    min-width: 200px;
}

html {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    min-width: 100vw;
}

.bg-select-tema {
    background: #fff;
    gap: 15px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    overflow: auto;
}

.col-12.col-md-3.col-lg-2.pl-0.h-100 {
    min-height: 100%;
}

body {
    min-width: 100vw;
}



.list-cards {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

:not(.no-simple-scroll)::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

.menu-tabs ul::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

::-webkit-scrollbar-track {
    border-radius: 4px;
    background: #fdfdfd;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgb(173 173 173);
}

:not(.no-simple-scroll)::-webkit-scrollbar-track {
    border-radius: 4px;
    background: transparent;
    width: 8px;
}

:not(.no-simple-scroll)::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgb(101 101 101);
    cursor:pointer;
}

.builder-cartazes :not(.no-simple-scroll)::-webkit-scrollbar-thumb {
    border-radius: 4px;
    /* background: #172052; */
    cursor:pointer;
}

.menu-tabs ul::-webkit-scrollbar-thumb {
    visibility: hidden;
    cursor:pointer;
}

::-webkit-scrollbar-thumb:active {
    background: rgb(65 65 65 / 90%);
    cursor:pointer;
}

:not(.no-simple-scroll)::-webkit-scrollbar-thumb:hover {
    background: rgb(63 63 63 / 90%);
    cursor:pointer;
}

:not(.no-simple-scroll)::-webkit-scrollbar-thumb:active {
    background: rgb(63 63 63 / 90%);
    cursor:pointer;
}

.list-cards>.col-12 {
    margin-bottom: 15px !important;
    padding: 0 5px;
}

a.modal-iframe.btn.btn-danger.btn-lg.btn-block {
}

iframe#modalframe {
    width: 100%;
    height: 100%;
}

li.list-group-item.active a {
    color: #fff;
}

ul.LIST_CHOICE_MULT {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 15px;
    background: #f2f2f2;
    padding: 15px;
    margin-bottom: 10px;
}

.LIST_CHOICE_MULT-item {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background: #fff;
    padding: 10px;
    width: calc(25% - 12px);
    cursor: pointer;
    border: solid 3px #fff;
    border-radius: 5px;
    position: relative;
}

.LIST_CHOICE_MULT-item.active {
    border: solid 3px #8bc34a;
}

.LIST_CHOICE_MULT-item .selected-bubble {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #8bc34a;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 20px;
    display: none;
}

.LIST_CHOICE_MULT-item .selected-bubble .text-out {
    display: none;
}

.LIST_CHOICE_MULT-item.active .selected-bubble {
    display: -webkit-box;
    display: flex;
}

.LIST_CHOICE_MULT-item img {
    width: 100%;
    aspect-ratio: 79/50;
    margin-bottom: 10px;
    -o-object-fit: contain;
    object-fit: contain;
}

span.LIST_CHOICE_MULT-name {
    white-space: normal;
}

.menu-page {
    padding: 15px;
    width: 240px;
    min-width: 240px;
}

.conteudo-page {
    padding: 15px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    align-content: center;
    -webkit-box-flex: 1;
    flex: 1;
    max-width: 100%;
    padding-bottom: 70px;
    height: 100vh;
    overflow-y: auto;
}

.conteudo-page .xcrud,.conteudo-page-full .xcrud {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

div#preview {
    z-index: 999999 !important;
    display: none;
}

div#modal {
    background-color: #000000d6;
    z-index: 999999;
}

.help-article-overlay {
    position: fixed;
    background: #000000a6;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    flex-wrap: nowrap;
}

.help-article-overlay .article-box {
    background: #fff;
    width: 70%;
    height: 70%;
    border-radius: 5px;
    position: relative;
}

.article-box .close {
    background: #fff;
    position: absolute;
    right: -10px;
    top: -20px;
    height: 60px;
    width: 60px;
    display: -webkit-box;
    display: flex;
    color: #f44336;
    font-size: 40px;
    border-radius: 50%;
    text-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-shadow: #00000063 -1px 0px 3px;
    box-shadow: #00000063 -1px 0px 3px;
    cursor: pointer;
    opacity: 1;
    z-index: 99;
}

.article-content {
    overflow-y: scroll;
    height: 100%;
    padding: 15px;
}

.article-content.no-scroll {
    overflow: hidden;
}

.article-content p {
    font-size: 18px;
}

.evaluate {
    border-top: 1px #c6bcbc solid;
    margin-top: 25px;
    padding: 25px;
}

.evaluate .stars-input {
    font-size: 30px;
    color: #aeaeae;
    -webkit-box-flex: 1;
    flex: 1;
    min-width: 230px;
}

.evaluate .stars-input i {
    cursor: pointer;
}

.evaluate .stars-input i.active, .evaluate .stars-input i:hover {
    color: #ffc107;
}

.evaluate-form {
}

.evaluate-form .stars-input {
    font-size: 30px;
    color: #aeaeae;
    -webkit-box-flex: 1;
    flex: 1;
    min-width: 230px;
}

.evaluate-form .stars-input i {
    cursor: pointer;
}

.evaluate-form .stars-input i.active, .evaluate .stars-input i:hover {
    color: #ffc107;
}

.col-12.article {
    padding: 0;
}

.article-content-page img {
    max-width: 60%;
    -o-object-fit: contain;
    object-fit: contain;
    height: auto;
    border: solid 1px #000;
    margin: 0 auto;
    display: block;
}

.article-header span.update-at {
    color: #919191;
    font-size: 12px;
}

.article-header {
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 26px;
}

.evaluate span.tanks {
    margin-top: 15px;
    display: none;
}

.evaluate-complete span.tanks {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
    flex: 1;
}

.evaluate {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    align-content: stretch;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    padding: 15px 0;
}

.evaluate h2 {
    margin: 0 15px 0 0;
}

.evaluate h2 {
    font-size: 15px;
}

.form-check-input {
    cursor: pointer;
}

.btn {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    align-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    white-space: nowrap;
}

.form-check-input {
    clear: left;
}

.form-switch.form-switch-sm {
    margin-bottom: 0.5rem;
}

.form-switch .form-check-input, .form-check-input[type=checkbox] {
    margin-right: 0.6em;
}

.form-switch.form-switch-sm .form-check-input {
    height: 1rem;
    width: calc(1rem + 0.75rem);
    border-radius: 2rem;
}

.form-switch.form-switch-md {
    margin-bottom: 1rem;
}

.form-switch.form-switch-md .form-check-input {
    height: 1.5rem;
    width: calc(2rem + 0.75rem);
    border-radius: 3rem;
}

.flags .form-switch.form-switch-lg {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 21px;
    margin: 35px !important;
}

.form-switch.form-switch-lg .form-check-input {
    height: 2rem;
    width: calc(3rem + 0.75rem);
    border-radius: 4rem;
}

.form-switch.form-switch-xl {
    margin-bottom: 2rem;
}

.form-switch.form-switch-xl .form-check-input {
    height: 2.5rem;
    width: calc(4rem + 0.75rem);
    border-radius: 5rem;
}

#preview .buttons {
    position: fixed;
    bottom: 50px;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    align-content: center;
    -webkit-box-align: start;
    align-items: flex-start;
    gap: 10px;
    z-index: 999999;
}

.bg-inverse-white {
    background: #000 !important;
}

a.buuble-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 10px;
    background: #ffffff;
    width: 80px;
    /* height: 100px; */
    z-index: 104;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    color: #4caf50;
    -webkit-box-shadow: 1px 1px 6px #00000082;
    box-shadow: 0px 1px 2px #ababab82;
    padding: 10px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    border: solid 1px #eee;
}
.focused-search-produtos a.buuble-whatsapp {
    z-index: 103;
}
.no-conversion-help a.buuble-whatsapp {
    position: inherit;
}

a.buuble-whatsapp i {
    font-size: 40px;
    color: #4caf50;
}

a.buuble-whatsapp .badge {
    background: #4caf50;
}

.conteudo-page-full {
    width: 100vw;
    overflow-y: auto;
    height: 100vh;
    padding-bottom: 100px;
}

div#modalforms {
    z-index: 2000!important;
}

a.null-link,a.null-link:active,a.null-link:hover {
    text-decoration: none;
    color: #191919;
}

.card-marca a.link-img,.card-public-produto a.link-img {
    aspect-ratio: 100/37;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 15px;
    width: auto;
}

.ads.ads-horizontal {
    border-radius: 15px;
    max-width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background: #e7e7e7;
    margin-bottom: 15px;
}

.ads.ads-horizontal.ads-bottom-produtos {
    margin-top: 50px;
}

.ads.ads-horizontal .ads-remove {
    margin-bottom: 5px;
    padding: 10px;
    color: #000;
}

.ads.ads-horizontal .ads-remove i {
    margin-right: 5px;
}

.ads.ads-horizontal .ads-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-around;
    background: #f7f7f7;
    padding-bottom: 10px;
    border-radius: 0 0 15px 15px;
}

a.nav-link.btn.btn-primary {
    color: #fff;
}

a,a:hover {
    text-decoration: none !important;
}

strong.cut {
    text-decoration: line-through;
    color: #e00;
}

.assine-ja p {
    margin-bottom: 5px;
}

a.btn.btn-cartaz {
    color: #fff;
    background-color: #3f51b5;
    border-color: #3f51b5;
    -webkit-box-flex: 1;
    flex: 1;
}

a.btn.btn-encarte {
    color: #fff;
    background-color: #181818;
    border-color: #303030;
    -webkit-box-flex: 1;
    flex: 1;
}

.row-buttons {
    display: -webkit-box;
    display: flex;
    gap: 5px;
}

.bg-purple {
    background: #ffe500;
    color: #000 !important;
}

a.nav-link {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 2px;
}

a.buuble-whatsapp.btn-whatsapp.nav-link {
    justify-content: center;
}

a.buuble-whatsapp.btn-whatsapp.nav-link svg {
    width: 20px;
    height: 20px;
    color: #4caf50;
    fill: #4caf50;
}

svg.svg-chevron-up {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

svg.svg-chevron-down {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.loader-app {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 999999999;
    background: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    font-size: 25px;
}

.loader-carregando {
    display: block;
    height: 10px;
    background: #e5e5e5;
    width: 80%;
    border-radius: 15px;
    z-index: 2147483647;
    position: relative;
}

.loader-progress {
    display: block;
    height: 10px;
    background: #2196f3;
    width: 50%;
    border-radius: 15px;
    position: relative;
}

.loader-progress {
    -o-transition: width 500ms ease-out,opacity 400ms linear;
    -webkit-transition: width 500ms ease-out,opacity 400ms linear;
    transition: width 500ms ease-out,opacity 400ms linear
}

.loader-progress dd,.loader-progress dt {
    position: absolute;
    top: 2px;
    height: 6px;
    -webkit-box-shadow: #0d6efd 1px 0 6px 1px;
    box-shadow: #0d6efd 1px 0 6px 1px;
    border-radius: 15px;
    z-index: -1;
}

.loader-progress dd {
    opacity: 1;
    width: 30px;
    right: 1px;
}

.loader-progress dt {
    opacity: 0;
    width: 70px;
    right: -80px;
}

@-webkit-keyframes pulse {
    30% {
        opacity: .6
    }

    60% {
        opacity: 0
    }

    100% {
        opacity: .6
    }
}

@keyframes pulse {
    30% {
        opacity: 1
    }

    60% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.loader-progress dd,.loader-progress dt {
    -webkit-animation: pulse 2s ease-out 0s infinite;
    animation: pulse 2s ease-out 0s infinite;
}

.loader-xhr {
    display: -webkit-box;
    display: flex;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 40px;
    width: 100%;
    min-width: 100%;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    flex: 1;
}

.loader-xhr-carregando {
    min-width: 90%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
}

.swal2-container.swal2-center.swal2-backdrop-show {
    z-index: 9999999999999999;
}


.input-search-produtos-multiline {
     /* display: flex; */
     /* position: relative; */
     /* background: #fff; */
     /* flex-direction: column; */
     /* padding: 15px 0; */
     /* flex-wrap: nowrap; */
     /* width: 100%; */
     /* flex: 1; */
}

.input-search-produtos-multiline .helper-area {
  position: absolute;
  left: 0;
  /* right: 0; */
  top: 0;
  bottom: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-direction: normal;
  box-sizing: border-box;
  font-family: inherit;
  display: none;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #c6c6c6;
  appearance: none;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  min-height: calc(1.5em + 1rem + 2px);
  padding: .5rem 1rem;
  font-size: 1.25rem;
  border-radius: .3rem;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 2;
  background: transparent;
  /* margin-left: 0 !important; */
  max-width: calc(100% - 32px);
  margin: 1px 0px 0px 0px;
  overflow: hidden;
  white-space: nowrap;
  /* padding: 1px 0 0 0; */
  /* position: absolute; */
}

.input-search-produtos-multiline::before,.input-search-produtos-multiline::after {
    content: " ";
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 1px;
    background: #ffffff;
    display: flex;
    width: 1rem;
    z-index: 3;
    border-radius: 0.25rem;
}

.input-search-produtos-multiline::after {
    right: 0px;
    left: inherit;
}



.input-items-lines > .input-item-line:only-child .menu-search-input-v2 ,.input-items-lines > .input-item-line:only-child .helper-area {
    max-width: calc(100%);
}
.focused-input .helper-area{
    display: inline;
}
/*
.focused-input .helper-area,.input-item-line:last-of-type .focused-input  .helper-area{
    display: inline;
     max-width: calc(100%); 
}
*/
/*.focused-input .menu-search-input-v2,.input-item-line:last-of-type .menu-search-input-v2{
    max-width: calc(100%);
}*/
.focused-input .icon-remove-search{
    /* display:none; */
}

.input-search-produtos-multiline .helper-area .current-txt {
    /* color: #fff; */
}

.input-search-produtos-multiline .helper-area .icon-to-add {
    border: solid 1px #b2b2b2;
    padding: 0 5px;
    border-radius: 5px;
}

.input-search-produtos-multiline .helper-area>div {
    display: inline-flex;
    white-space: pre;
}

.input-search-produtos-multiline .helper-area .add-txt {/* white-space: pre-wrap; */}


input.menu-search-input-v2 {
    background: transparent;
}

.input-search-produtos-multiline {
    display: flex;
    position: relative;
    background: #fff;
    border: none;
    border-radius: 0.50rem;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    /* width: calc(100% - 21px); */
    /* overflow-x: scroll; */
    margin: 0;
    padding: 0;
    width: 100%;
    border: solid 3px #252627;
    overflow: hidden;
}

.input-search-produtos-multiline {}

.focused-input.input-search-produtos-multiline {
    /* box-shadow: 0px 0px 5px 9px #2196f3e0; */
    border: solid 3px #2196F3;
}

.input-search-produtos-multiline input,.input-search-produtos-multiline input:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}


input.menu-search-input-v2,input.menu-search-input-v2:focus {
    /* position: absolute; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* top: 0; */
    /* display: flex; */
    z-index: 2;
    /* flex: 1; */
    background: transparent;
    /* padding-top: 5px; */
    /* padding-top: 5px !important; */
    max-width: calc(100% - 32px);
    /* width: fit-content; */
    /* min-width: fit-content; */
    /* display: flex; */
}

input.menu-search-input-v2 {
    /* padding-right: 30px; */
}

img.logoPublicacaoTurmoModal {
    display: block;
    margin: 10px auto;
}

.tituloItemPubT {
    font-weight: bold;
    font-size: 19px;
    margin-bottom: 12px;
}

p.avisoPubTRedesSociais1 {
    font-size: 13px;
    max-width: 420px;
}

div#modalItensPublicados .modal-body {
    padding: 0px 30px;
}

.itemPublicacaoTurboMod {
    margin-bottom: 30px;
}

.linkPortalComercial {
    background: #eee;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    color: blue !important;
    text-align: center;
    font-size: 14px;
}

.linkPortalComercial a {
    color: blue !important;
}

.linkPortalComercial a {
    word-wrap: break-word;
}

div#modalItensPublicados {
    z-index:4001;
}

div#modalItensPublicados .modal-header {
    border-bottom: none;
    padding: 1rem 1rem !important;
}

.hideDBR {
    display: none !important;
}

.groupDownload .form-check {
    display: flex;
}

.en-us .help-article.open-video-tutorial {
    display: none;
}

.es-es .help-article.open-video-tutorial {
    display: none;
}

.cadastreseMobile, .bemVindoMobile {
    display: none;
  }

  .ofertaRelampago {
    background: #f7f7f7;
    padding: 8px 30px;
    border-radius: 20px;
    color: #d3002f;
}

.ofertaRelampago b {
  color: #d3002f;
}

.selectCta {
    background: #005eeb;
    border-radius: 10px;
    text-align: center;
    padding: 2px;
    text-transform: uppercase;
    font-size: 12px;
    position: absolute;
    bottom: 2px;
    width: calc(100% - 10px);
    border-bottom: solid 1px #5699ff;
}

span.selectCta svg {
    margin-top: -5px;
}

.areaTel .text-box-text, .item-chip-3 .text {
    vertical-align: middle;
}

div.square .areaImagemIlustrativa span {
    width: fit-content;
}

div.square .areaImagemIlustrativa {
    display: flex;
    align-items: center;
}

/* --- Estilo do tooltip de erro, que aparece quando na Frase Promocional
    atinge o limite de 200 caracteres
--- */ 
.tooltip-erro {
    /* position: absolute;
    top: 100%;
    left: 0; */
    width: 250px;
    background-color: #f44336;
    color: white;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 4px;
    margin-top: 4px;
    z-index: 10;
    white-space: nowrap;
  }

  .erro-borda {
    border: 2px solid #f44336 !important;
  }

  .erro-borda:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
.TEXTO_RODAPE .text-box-text {
    width: fit-content;
    height: fit-content;
}