/* ZERA MARGENS E PADDING DEFAULT DO NAVEGADOR, RETIRA BORDAS DE INPUTS E FAZ CÁLCULO DE LARGURA EM BOXES */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    list-style: none;
}

/* ALINHAMENTO DE BOXES E TEXTOS */
.t-center {text-align: center}
.t-justify {text-align: justify}
.t-right {text-align: right}
.t-upper {text-transform: uppercase}

/* TEXTO INVISÍVEL */
.font-zero {font-size: 0px !important}

/* PRÉ-FORMATAÇÃO DE LINKS */
a {text-decoration: none;}

/* TRATAMENTO E LARGURA FLUÍDA DE IMAGENS */
.img {width: 100%; height: auto;}
img {margin-bottom: -4px;}

/* TRANSIÇÃO SUAVIZADA */
.transition {-webkit-transition-duration: 0.3s; -moz-transition-duration: 0.3s;}

/* FLUTUACÃO DE ELEMENTOS */
.float_l {float: left;}
.float_r {float: right;}

/* BORDAS ARREDONDADAS EM ELEMENTOS */
.radius-p {-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;}
.radius-m {-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;}
.radius-g {-webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px;}
.round {-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;}

/* VÍDEOS DO YOUTUBE E VIMEO RESPONSIVOS PARA DIV CONTROLADORA */
.video-container { position: relative; padding-bottom: 56.25%; padding-top: 0px; height: 0; overflow: hidden;}
.video-container iframe, .video-container object, .video-container embed, .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}

/*
 LINE -> ADICIONA LINHA PARA SEPARAR ELEMENTOS 
 CLEAR -> LIMPA FLUTUAÇÃO PARA OS PRÓXIMOS ELEMENTOS
*/
.line {width: 100%; float: left;}
.clear {clear: both;}

/* POSIÇÕES DE ELEMENTOS */
.absolute {position: absolute}
.relative {position: relative}
.fixed {position: fixed}

/* PADDINGS PADRÕES */
.padding-small {padding: 10px 0}
.padding-low {padding: 20px 0}
.padding-normal {padding: 30px 0}
.padding-default {padding: 60px 0}
.padding-high {padding: 80px 0}

.padding-total-small {padding: 10px}
.padding-total-low {padding: 20px}
.padding-total-normal {padding: 35px}
.padding-total-high {padding: 50px}

/* WALLPAPERS STYLE */
.wall {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.wall.fixed {background-attachment: fixed;}

/* ****************************
***** GENERIC WIDTH BOXS ******
**************************** */
.container {display: block;}
.container-float {width: 100%; float: left; position: relative}
.box {display: inline-block; vertical-align: top; margin-left: -4px; padding: 10px;}

.box20 {width: 20%;}
.box25 {width: 25%;}
.box30 {width: 30%}
.box33 {width: 33.3333%;}
.box35 {width: 35%;}
.box40 {width: 40%;}
.box45 {width: 45%;}
.box50 {width: 50%;}
.box60 {width: 60%;}
.box65 {width: 65%;}
.box70 {width: 70%;}
.box75 {width: 75%;}
.box100 {width: 100%;}

/* ****************************
******* FLEXBOX LAYOUT ********
**************************** */
.flex-container {display: flex;}

/* FLEX DIRECTION */
.flex-direction-row {flex-direction: row;}
.flex-direction-row-reverse {flex-direction: row-reverse;}
.flex-direction-column {flex-direction: column;}
.flex-direction-column-reverse {flex-direction: column-reverse;}

/* FLEX WRAP */
.flex-nowrap {flex-wrap: nowrap;}
.flex-wrap {flex-wrap: wrap;}
.flex-wrap-reverse {flex-wrap: wrap-reverse;}

/* JUSTIFY CONTENT */
.flex-justify-start {justify-content: flex-start;}
.flex-justify-end {justify-content: flex-end;}
.flex-justify-center {justify-content: center;}
.flex-justify-space-between {justify-content: space-between;}
.flex-justify-space-around {justify-content: space-around;}

/* ALIGN ITENS */
.flex-itens-stretch {align-items: stretch;}
.flex-itens-start {align-items: flex-start;}
.flex-itens-end {align-items: flex-end;}
.flex-itens-center {align-items: center;}
.flex-itens-baseline {align-items: baseline;}

/* ALIGN CONTENT */
.flex-content-stretch {align-content: stretch;}
.flex-content-start {align-content: flex-start;}
.flex-content-end {align-content: flex-end;}
.flex-content-center {align-content: center;}
.flex-content-space-between {align-content: space-between;}
.flex-content-space-around {align-content: space-around;}

/* FLEX BASIS */
.flex {margin: 10px;}
.flex20 {flex-basis: 20%;}
.flex25 {flex-basis: 25%;}
.flex30 {flex-basis: 30%;}
.flex33 {flex-basis: 33.33%;}
.flex40 {flex-basis: 40%;}
.flex50 {flex-basis: 50%;}
.flex60 {flex-basis: 60%;}
.flex70 {flex-basis: 70%;}
.flex80 {flex-basis: 80%;}
.flex100 {flex-basis: 100%;}

.flex.flex20 {flex-basis: calc(20% - 20px);}
.flex.flex25 {flex-basis: calc(25% - 20px);}
.flex.flex30 {flex-basis: calc(30% - 20px);}
.flex.flex33 {flex-basis: calc(33.33% - 20px);}
.flex.flex40 {flex-basis: calc(40% - 20px);}
.flex.flex50 {flex-basis: calc(50% - 20px);}
.flex.flex60 {flex-basis: calc(60% - 20px);}
.flex.flex70 {flex-basis: calc(70% - 20px);}
.flex.flex80 {flex-basis: calc(80% - 20px);}
.flex.flex100 {flex-basis: calc(100% - 20px);}

/* ****************************
***** TRIGGER ERRORS BOXS *****
**************************** */
.trigger {
    display: block;
    margin-bottom: 13px;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    position: relative;
}

.trigger-close {position: absolute; top: 7px; right: 7px; font-size: 12px; color: rgba(0, 0, 0, 0.4); cursor: pointer}
.trigger-close:hover {color: rgba(0, 0, 0, 0.6);}

.accept {background-color: rgba(52, 189, 57, .9);}
.info {background-color: rgba(2, 131, 255, .9);}
.alert {background-color: rgba(247, 192, 87, .9);}
.error {background-color: rgba(239, 55, 53, .9);}

/* ****************************
******** TABLES STYLES ********
**************************** */
.content-table {overflow: hidden; overflow-x: auto;}
.content-table table .bg {background-color: rgba(0, 0, 0, .1);}
.table {
    width: 100%;
    vertical-align: top;
    max-width: 100%;
    white-space: nowrap;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}
.table tbody {-webkit-overflow-scrolling: touch;}
.table .tb-field {padding: 15px; font-size: 13px; border-bottom: 1px solid rgba(255, 255, 255, .1);}
.table tr:last-child .tb-field {border-bottom: none;}
.table .tb-field2 {padding: 15px; font-size: 11px; border-bottom: 1px solid rgba(0, 0, 0, .05)}
.table .tb-hover:hover {background-color: #ffec9a}

/* ****************************
******** MODAL DEFAULT ********
**************************** */
.mask_modal, .mask_modal2 {width: 100%; height: 100%; min-height: 100%; position: fixed; background-color: rgba(0, 0, 0, 0.7); z-index: 20; display: none;}
.mask_modal2 {z-index: 20;}
.content-modal {position: fixed; padding: 50px 0; z-index: 21; display: none; width: 100%; height: 100%; left: 0; top: 0; overflow: hidden; overflow-y: auto}
.modal {width: 1000px; max-width: 90%; margin: 0 auto; position: relative; display: none;}
.close_modal {position: absolute; cursor: pointer; top: -10px; right: -10px; z-index: 1}
.load_modal {width: 50px; height: 40px; position: fixed; z-index: 22; left: 50%; top: 50%; margin-left: -25px; margin-top: -20px; display: none}

.trigger-modal {position: fixed; display: block; padding: 0; top: 20px; right: -400px; width: 400px; z-index: 110}
.trigger-modal .trigger {padding: 30px; font-size: 15px; margin-bottom: 0;}
.trigger-modal .trigger i {font-size: 45px; float: left}
.trigger-modal .trigger p {margin-left: 64px;}
.trigger-modal .trigger p strong {display: block; margin-bottom: 5px;}
.trigger-modal .close-modal {position: absolute; cursor: pointer; top: 18px; right: 18px; font-size: 14px; text-align: center; z-index: 111; color: rgba(0, 0, 0, 0.4);}

.trigger-modal .trigger .load {
    position: absolute;
    width: 0;
    height: 3px;
    background-color: rgba(0, 0, 0, .3);
    left: 3%;
    bottom: 0;
}

.tiny_imageupload {position: fixed; display: none; z-index: 21; width: 450px; left: 0; right: 0; margin-left: auto; margin-right: auto; top: 50%; margin-top: -225px;}
.tiny_imageupload .close {position: absolute; z-index: 12; width: 35px; height: 35px; padding: 4px; cursor: pointer; text-align: center; right: -10px; top: -10px; font-size: 21px;}
.tiny_imageupload .btn-medio {width: 100%;}
.tiny_imageupload .image_up {height: 180px; overflow: hidden; overflow-y: auto;}
.tiny_imageupload #image_up {display: none;}

/*------Margin left-------*/
.ml-0 { margin-left: 0px }
.ml-5 { margin-left: 5px }
.ml-10 { margin-left: 10px }
.ml-15 { margin-left: 15px }
.ml-20 { margin-left: 20px }
.ml-30 { margin-left: 30px }
.ml-40 { margin-left: 40px }
.ml-50 { margin-left: 50px }
.ml-60 { margin-left: 60px }
.ml-70 { margin-left: 70px }
.ml-80 { margin-left: 80px }
.ml-90 { margin-left: 90px }
.ml-100 { margin-left: 100px }
/*------Margin right-------*/
.mr-0 { margin-right: 0px }
.mr-5 { margin-right: 5px }
.mr-10 { margin-right: 10px }
.mr-15 { margin-right: 15px }
.mr-20 { margin-right: 20px }
.mr-30 { margin-right: 30px }
.mr-40 { margin-right: 40px }
.mr-50 { margin-right: 50px }
.mr-60 { margin-right: 60px }
.mr-70 { margin-right: 70px }
.mr-80 { margin-right: 80px }
.mr-90 { margin-right: 90px }
.mr-100 { margin-right: 100px }
/*------Margin Top-------*/
.mt-0 { margin-top: 0px }
.mt-5 { margin-top: 5px }
.mt-10 { margin-top: 10px }
.mt-15 { margin-top: 15px }
.mt-20 { margin-top: 20px }
.mt-30 { margin-top: 30px }
.mt-40 { margin-top: 40px }
.mt-50 { margin-top: 50px }
.mt-60 { margin-top: 60px }
.mt-70 { margin-top: 70px }
.mt-80 { margin-top: 80px }
.mt-90 { margin-top: 90px }
.mt-100 { margin-top: 100px }
/*------Margin Bottom-------*/
.mb-0 { margin-bottom: 0px }
.mb-5 { margin-bottom: 5px }
.mb-10 { margin-bottom: 10px }
.mb-15 { margin-bottom: 15px }
.mb-20 { margin-bottom: 20px }
.mb-30 { margin-bottom: 30px }
.mb-40 { margin-bottom: 40px }
.mb-50 { margin-bottom: 50px }
.mb-60 { margin-bottom: 60px }
.mb-70 { margin-bottom: 70px }
.mb-80 { margin-bottom: 80px }
.mb-90 { margin-bottom: 90px }
.mb-100 { margin-bottom: 100px }
/*------Padding left-------*/
.pl-0 { padding-left: 0px }
.pl-5 { padding-left: 5px }
.pl-10 { padding-left: 10px }
.pl-15 { padding-left: 15px }
.pl-20 { padding-left: 20px }
.pl-30 { padding-left: 30px }
.pl-40 { padding-left: 40px }
.pl-50 { padding-left: 50px }
.pl-60 { padding-left: 60px }
.pl-70 { padding-left: 70px }
.pl-80 { padding-left: 80px }
.pl-90 { padding-left: 90px }
.pl-100 { padding-left: 100px }
/*------Padding right-------*/
.pr-0 { padding-right: 0px }
.pr-5 { padding-right: 5px }
.pr-10 { padding-right: 10px }
.pr-15 { padding-right: 15px }
.pr-20 { padding-right: 20px }
.pr-30 { padding-right: 30px }
.pr-40 { padding-right: 40px }
.pr-50 { padding-right: 50px }
.pr-60 { padding-right: 60px }
.pr-70 { padding-right: 70px }
.pr-80 { padding-right: 80px }
.pr-90 { padding-right: 90px }
.pr-100 { padding-right: 100px }
/*------Padding Top-------*/
.pt-0 { padding-top: 0px }
.pt-5 { padding-top: 5px }
.pt-10 { padding-top: 10px }
.pt-15 { padding-top: 15px }
.pt-20 { padding-top: 20px }
.pt-30 { padding-top: 30px }
.pt-40 { padding-top: 40px }
.pt-50 { padding-top: 50px }
.pt-60 { padding-top: 60px }
.pt-70 { padding-top: 70px }
.pt-80 { padding-top: 80px }
.pt-90 { padding-top: 90px }
.pt-100 { padding-top: 100px }
.pt-110 { padding-top: 110px }
/*------Padding Bottom-------*/
.pb-0 { padding-bottom: 0px }
.pb-5 { padding-bottom: 5px }
.pb-10 { padding-bottom: 10px }
.pb-15 { padding-bottom: 15px }
.pb-20 { padding-bottom: 20px }
.pb-30 { padding-bottom: 30px }
.pb-40 { padding-bottom: 40px }
.pb-50 { padding-bottom: 50px }
.pb-60 { padding-bottom: 60px }
.pb-70 { padding-bottom: 70px }
.pb-80 { padding-bottom: 80px }
.pb-90 { padding-bottom: 90px }
.pb-100 { padding-bottom: 100px }
.pb-110 { padding-bottom: 110px }
.pb-120 { padding-bottom: 120px }
.pb-130 { padding-bottom: 130px }




