:root {
    --global-font: 'Open Sans', sans-serif;
    --any-item-registered-color: #A5A5A5;
    --any-item-registered-border-color: #D4D4D4;
    --post-color-link: #12a19b;
    --input-shadow-color-hover: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    --color-input-border: #ced4da;
    --color-input: #495057;
    --msg-ok-color: #468847;
    --msg-ok-border-color: #9FC76F;
    --msg-ok-background-color: #DFF0D8;
    --msg-error-color: #B94A48;
    --msg-error-border-color: #F27B81;
    --msg-error-background-color: #F2DEDE;
    --pace-color: #EA654E;
    --select-color: #EA654E;
    --error-404-color: #EA654E;
    --color-white: #fff;
    --color-black: #000;
    --color-red: #ff0000;
    --color-green: #090;
    --button-primary-color: $[cor_letra_btt];
    --button-primary-bg: #000;
    --button-primary-hover-color: $[cor_letra_btt];
    --button-primary-hover-bg: $[cor_hover];
}

.button-primary {
    text-decoration: none;
    color: var(--button-primary-color);
    background-color: var(--button-primary-bg);
    padding: 12px 32px;
    border-radius: 42px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.button-primary.color-switch:hover {
    color: var(--button-primary-hover-color);
    background-color: var(--button-primary-hover-bg);
}

html {
    font-family: var(--global-font) !important;
}

body {
    font-size: 15px;
}

label {
    display: inline !important;
    text-align: left;
}

.alert-dev {
    color: #c09853;
    background-color: #fcf8e3;
    border-bottom: 1px solid #d4c9b4;
}

::selection {
    color: var(--color-white);
    background: #000;
}

::-webkit-input-placeholder {
    color: var(--color-black);
}

:-ms-input-placeholder {
    color: var(--color-black);
}

::-ms-input-placeholder {
    color: var(--color-black);
}

::placeholder {
    color: var(--color-black);
}

.erro-404 {
    background: var(--error-404-color);
    font-weight: bold;
    font-size: 10.0rem;
}

.texto-404 {
    background: var(--error-404-color);
    font-weight: bold;
}

.pace .pace-progress {
    background: var(--pace-color);
}

.texto-editor,
.texto-editor p {
    text-align: left;
}

.texto-editor img,
.texto-editor iframe {
    max-width: 100%;
    display: block;
}

.texto-editor a {
    display: inline;
    color: var(--post-color-link);
}

.texto-editor a:hover {
    text-decoration: underline;
}

.texto-editor ul {
    list-style: disc;
    padding-left: 10px;
    margin-left: 10px;
}

.texto-editor ul li {
    list-style: disc;
}

.texto-editor p {
    display: block;
    -webkit-margin-before: 2em;
    -webkit-margin-after: 2em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
}

.texto-editor h1 {
    display: block;
    font-size: 2em;
    -webkit-margin-before: 0.67em;
    -webkit-margin-after: 0.67em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.texto-editor h2 {
    display: block;
    font-size: 1.5em;
    -webkit-margin-before: 0.83em;
    -webkit-margin-after: 0.83em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.texto-editor h3 {
    display: block;
    font-size: 1.17em;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.texto-editor h4 {
    display: block;
    -webkit-margin-before: 1.33em;
    -webkit-margin-after: 1.33em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.texto-editor h5 {
    display: block;
    font-size: 0.83em;
    -webkit-margin-before: 1.67em;
    -webkit-margin-after: 1.67em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.texto-editor h6 {
    display: block;
    font-size: 0.67em;
    -webkit-margin-before: 2.33em;
    -webkit-margin-after: 2.33em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.nenhum-item-cadastrado {
    color: var(--any-item-registered-color);
    border: 1px solid var(--any-item-registered-border-color);
}

input,
button,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    border: none;
}

label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
}

input[type='text'],
input[type='num'],
input[type='email'],
input[type='password'],
textarea,
select {
    display: block;
    width: 100%;
    padding: 4px 2px;
    color: var(--color-input);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--color-input-border);
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

​.clear,
.clearfix {
    clear: both;
}

input[type='text']:focus,
input[type='num']:focus,
input[type='email']:focus,
textarea:focus,
input[type='password']:focus,
select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: var(--input-shadow-color-hover);
}

​ input[type='radio'],
input[type='checkbox'] {
    display: inline-block;
    margin-right: 8px;
    min-height: 16px;
    min-width: 16px;
}

​ textarea {
    min-height: 120px;
    width: 100%;
    padding: 4px 2px;
    resize: vertical;
}

​ input[type='submit'] {
    display: block;
    width: 100%;
    padding: 12px 32px;
    border-radius: 6px;
    color: var(--button-primary-color);
    background: var(--button-primary-bg);
    cursor: pointer;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

input[type='submit']:hover {
    color: var(--button-primary-hover-color);
    background-color: var(--button-primary-hover-bg);
}

.msg-erro,
.msg-ok {
    font-size: 1.3rem;
    text-transform: uppercase;
}

.msg-erro {
    color: var(--color-red);
}

.msg-ok {
    color: var(--color-green);
}

.msg-total-ok {
    background-color: var(--msg-ok-background-color);
    color: var(--msg-ok-color);
    border:0px !important;
    padding: 15px;
    font-size: 14px;
}

.msg-total-erro {
    background-color: var(--msg-error-background-color);
    color: var(--msg-error-color);
    border:0px !important;
    padding: 14px;
    font-size: 14px;
}

/* PAGINA */
.total-pagina {
    padding-top: 20px !important;
    padding-bottom: 240px !important;
}

.total-pagina .display {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 35px;
}

.total-pagina .display > h1,
.total-pagina .display > h1 p {
    font-size: 28px;
    color: #000;
    line-height: 39px;
    text-align: left;
}

.total-pagina .display > h1 p strong {
    font-size: 36px;
}
.total-pagina .barra-lateral a {
    font-size: 14px;
    color: #000;
    text-align: left;
    display: table;
     
}

.total-pagina .display a:hover {
    opacity: 0.8;
}

/* CONTORNO GERAL */
.total-pagina .contorno-geral {
    position: relative;
}

/* BARRA LATERAL */
.total-pagina .barra-lateral {
    width: 20%;
    float: left;
    border-radius:8px;
    background:#FFF;
    overflow: hidden;
}

.total-pagina .barra-lateral a {
    width: 100%;
    padding-left: 20px;
    padding-right: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #000;
    font-size: 15px;
    line-height: 20px;
    border-left: 5px solid #FFF;
     border-bottom: 1px solid #E5E5E5;
    display:block;
    text-decoration:none;
}

.total-pagina .barra-lateral .selected,
.total-pagina .barra-lateral a:hover {
     font-weight: 600;
    color: #000;
    border-left: 5px solid #2fa9c3;
}

.total-pagina .row-listagem {
    width: calc(80%);
    float: right;
    padding-left: 30px;
}
.total-pagina .total-listagem-faq {
    width: 100%;
}
form.formulario-ajax .campo-formulario{
    margin-bottom: 16px;
}
form.formulario-ajax .campo-formulario .input{
    border-radius: 5px;
    padding: 7px 10px;
}
form.formulario-ajax .campo-formulario textarea{
    min-height: 100px;
}
form.formulario-ajax .button-primary {
    float:left !important;
    color: #FFF;
}
form.formulario-ajax .button-primary:hover {
    color: #333;
}
.total-pagina .total-listagem-faq .descricao {
    margin-top: 15px;
}
.total-pagina .total-listagem-faq .descricao .button-primary {
    margin-top: 10px !important;
}
.total-pagina .total-listagem-faq .descricao a{
    display: contents !important;
    color: #000 !important;
}
.total-pagina .total-listagem-faq .descricao ol {
    list-style: decimal;
    font-size:15px;
    margin:3px 0px 3px 0px;
    list-style-position: inside;
}
.total-pagina .total-listagem-faq .descricao ul{
    list-style: disc;
    font-size:15px;
    margin:3px 0px 3px 0px;
    list-style-position: inside;
}
.total-pagina .total-listagem-faq .descricao ul,
.total-pagina .total-listagem-faq .descricao ol {
    font-size: 15px;
    line-height: 1.6;
}
.total-pagina .total-listagem-faq .descricao p,
.total-pagina .total-listagem-faq .descricao label {
    font-size: 15px;
    line-height: 1.6;
}

.total-pagina .total-listagem-faq .descricao p+p {
    margin-top: 10px;
}

.total-pagina .total-listagem-faq .descricao h1 {
    display: block;
    font-size: 2em;
    -webkit-margin-before: 0.67em;
    -webkit-margin-after: 0.67em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.total-pagina .total-listagem-faq .descricao h2 {
    display: block;
    font-size: 1.5em;
    -webkit-margin-before: 0.83em;
    -webkit-margin-after: 0.83em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.total-pagina .total-listagem-faq .descricao h3 {
    display: block;
    font-size: 1.17em;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.total-pagina .total-listagem-faq .descricao h4 {
    display: block;
    -webkit-margin-before: 1.33em;
    -webkit-margin-after: 1.33em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.total-pagina .total-listagem-faq .descricao h5 {
    display: block;
    font-size: 0.83em;
    -webkit-margin-before: 1.67em;
    -webkit-margin-after: 1.67em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

.total-pagina .total-listagem-faq .descricao h6 {
    display: block;
    font-size: 0.67em;
    -webkit-margin-before: 2.33em;
    -webkit-margin-after: 2.33em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    font-weight: bold;
}

/* TABLET */
@media (max-width: 991px) and (min-width: 768px) {
    .total-pagina {
        padding-top: 160px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .total-pagina {
        padding-top: 160px;
    }

    .total-pagina .display > h1,
    .total-pagina .display > h1 p {
        font-size: 23px;
        width: 100%;
        text-align: center;
    }

    .total-pagina,
    .total-pagina .display {
        width: 100%;
    }

    /* BARRA LATERAL */
    .total-pagina .barra-lateral {
        width: 100%;
        position: inherit;
        top: inherit;
        left: inherit;
        float: none;
        border-bottom: 0px;
    }

    /* LISTAGEM FAQ */
    .total-pagina .row-listagem {
        width: 100%;
        float: none;
        padding-left: 0px;
        margin-top: 30px;
    }
}

.hidden {
    display: none;
}

/* CABECALHO */
.total-cabecalho-area {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    background: #FFF;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: 0px 0 12px -5px #000;
}

/* LOGO */
.total-cabecalho-area .contorno-logo {
    display: table;
    float: left;
}

.total-cabecalho-area .contorno-logo .logo {
    padding-right: 20px;
    float: left;
    padding-top: 15px;
    padding-bottom: 15px;
}

.total-cabecalho-area .contorno-logo .logo img {
    display: block;
    height: 60px !important;
    max-width: 180px;
    object-fit: contain;
}

.total-cabecalho-area .contorno-logo .logo a {
    float: left;
}

.total-cabecalho-area .contorno-logo .complemento-logo {
    float: left;
    font-size: 16px;
    color: #354658;
    text-align: left;
    padding-left: 10px;
    margin-top: 40px;
    margin-left: 40px;
    border-left: 2px solid #354658;
}

/* BOTAO LOJA */
.button-primary {
    float: right;
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 25px;
    border: 1px solid #fff !important;
    font-size: 15px;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    font-weight: bold;
    cursor: pointer;
}

.button-primary:hover {
    box-shadow: 0 0 12px -5px #fff;
}


/* TABLET */
@media (max-width: 991px) and (min-width: 768px) {

    /* LOGO */
    .total-cabecalho-area .contorno-logo .logo {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .total-cabecalho-area .contorno-logo .complemento-logo {
        margin-top: 55px;
    }

    /* BOTAO LOJA */
    .total-cabecalho-area .button-primary {
        margin-top: 12px;
    }

    .menu-cabecalho-interno {
        padding: 0px 0px !important;
        margin-top: 17px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    /* LOGO */
    .total-cabecalho-area .contorno-logo {
        margin: 0 auto;
        float: none;
    }

    .total-cabecalho-area .contorno-logo .logo {
        padding-top: 20px;
        padding-bottom: 20px;
        width: 100%;
        margin: 0 auto;
    }

    .total-cabecalho-area .contorno-logo .logo img {
        margin: 0 auto;
    }

    .total-cabecalho-area .contorno-logo .complemento-logo {
        margin-top: 42px;
        margin-left: 20px;
        font-size: 14px;
        display: none;

    }

    /* BOTAO LOJA */
    .total-cabecalho-area .button-primary {
        display: table;
        margin-top: 25px;
        padding-left: 25px;
        padding-right: 25px;
        height: 35px;
        line-height: 35px;
        display: none;
    }

    .menu-cabecalho-interno {
        display: none;
    }

}/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span, 
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	padding: 0px !important;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('../../imagens/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('../../imagens/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('../../imagens/blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 28px;
	height: 28px;
	margin-top: -14px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}
.fancybox-prev span {
	left: 10px;
	background: url('../../imagens/seta-verde-popup-esquerda.svg') !important;
}
.fancybox-next span {
	right: 10px;
	background: url('../../imagens/seta-verde-popup-direita.svg') !important;
}
.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	background: url('../../imagens/fancybox_overlay.png');
	z-index: 8020;
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -31px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	color: #000000;
	font-weight: 400;
	font-size: 16px;
	white-space: nowrap;
	background: #FFFFFF;
	padding-left: 30px;
	padding-right: 30px;
	height: 27px;
	line-height: 27px;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('../../imagens/fancybox_sprite@2x.png');
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('../../imagens/fancybox_loading@2x.gif');
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}
.botao-fechar-modal, .fancybox-close{
	background: url(../../imagens/close-pop-up.png) !important;
	background-size: contain;
	background-repeat: no-repeat;
    top: 17px;
    right: 15px;
    width: 30px;
    height: 30px;
}