/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.12,
* Autoprefixer: v10.4.4
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

/************ RESET CSS ***********/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/************* VARIABLES ***************/
:root {
    --fontColor: #333333;
    --fontColor2: #888888;
    --detailColor: #b0b0b0;
    --bgFooter: #f2f2f2;
    --primaryColor: #e30712;
    --secondaryColor: #0C6596;
    --blueIce: #AEC5D6;
    --endCOntent: 50px;
    --fontePrincipal: Arial, Helvetica, sans-serif;
}
/**************** GLOBALS ****************/
*{
    outline: none;
}
body { 
    font-family: Arial, Helvetica, sans-serif; 
    color: var(--fontColor);
    margin-top: 120px;
    background-color: var(--bgFooter);
}
body.body-home { 
    font-family: Arial, Helvetica, sans-serif; 
    color: var(--fontColor);
    margin-top: 100px;
    background-color: var(--bgFooter);
}

h1{
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--fontColor);
    position: relative;
}
h2{
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: bold;
    position: relative;
}
h3{
    font-size: 1.2rem;
    font-weight: bold;
}
h4{
    font-size: .95rem;
    font-weight: bold;
}
h5{ font-size: .95rem; }
.hidden{ display: none; }

.destaque{ color: var(--fontColor); }

.uppercase{ text-transform: uppercase; }
.bolded{ font-weight: bold; }

.color-red{ color: var(--primaryColor); }

.content-container{
    width: 94vw;
    margin: 0 auto;
    max-width: 1400px;
    margin-bottom: var(--endCOntent);
    padding: 30px 2vw;
    background-color: #FFF;
    border-radius: 15px;
}
.content-container2{ margin: 0 calc(3vw + 10px); }
.content-container2 span{ line-height: 1.4rem; }

.generic-error{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.p-error{
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.4rem;
}
.back-error{ 
    color: var(--primaryColor); 
    cursor: pointer;
}

.show1000{ display: none; }
.show600{display: none;}
.show500{ display: none; }

.red-bg{ background-color: var(--primaryColor); }

.wCover80{
    width: 80% !important;
    height: 100% !important;
    margin: 0 auto;
}
.wCover90{
    width: 90% !important;
    height: 100% !important;
    margin: 0 auto;
}
.wCover100{
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto;
}
img.foto{
    max-width: calc(100% - 10px);
    image-rendering: -webkit-optimize-contrast;
}

/************ END GLOBALS **************/
/*---------- HEADER ----------*/
header{ 
    background-color: #FFF;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
}
.header-div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 15px;
    z-index: 99994;
    height: 100px;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    margin-bottom: 0;
    padding: 0;
}
header.active .header-div{ height: 50px; }
header.active{ -webkit-box-shadow: 0px 1px 5px 0px #d4d4d4; box-shadow: 0px 1px 5px 0px #d4d4d4; }
header .logo-header{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
}
.logo-header a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
header .logo-header a h1{
    margin-left: 12px; 
    color: var(--fontColor);
}
header img{
    width: 100%;
    height: auto;
    min-width: 150px;
    max-width: 205px;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}
header.active img{
    max-width: 170px;
}
#menu-header{-ms-flex-item-align: center;-ms-grid-row-align: center;align-self: center;}
#menu-header > nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}
#menu-header > nav > ul > li > a { 
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--fontColor);
    font-weight: bold;
    font-family: 'Roboto Condensed';
    text-transform: uppercase;
    padding: 4px 11px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
#menu-header > nav > ul > li > a.active{ border-bottom: 2px solid var(--primaryColor) }
#menu-header > nav > ul > li > a:hover{
    color: #FFF;
    background-color: var(--primaryColor);
    border-radius: 15px;
}
/*---------- FOOTER ----------*/
footer{ 
    background: var(--bgFooter);
    padding-bottom: 10px;
}
footer > .content-container{ 
    margin-bottom: 0; 
    padding-bottom: 20px;
}
.logos-editors{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #bbbbbb;
    margin-bottom: 20px;
}
.logos-editors > h2{ margin: 20px 0 10px 0; }
.logos-editors > div{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 20px;
    width: 90%;
    margin-bottom: 38px;
}
.logos-editors > div > img{
    height: auto;
    width: 80%;
    max-width: unset;
}
.centralizado{
    -ms-grid-column-span: 4;
    grid-column-end: 4;
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
}
.logos-editors > div > a{ 
    width: 100%; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.logos-editors > div > a img{
    margin: 0;
    width: 80%;
}
.logos-editors > div > img.logo-via-lactea{ width: 35%; }
footer img{
    height: auto;
    margin-right: 10px;
    width: 45%;
}
.infos-footer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.infos-footer > div{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center;
    margin-left: 12px;
}
footer p{
    font-size: .75rem;
    line-height: .88rem;
    color: var(--fontColor2);
}
.construtiva p > a{
    font-style: italic;
    font-weight: bold;
    text-decoration: none;
    color: var(--fontColor2);
}
.construtiva p > a:hover{ 
    text-decoration: underline; 
    font-size: unset;
}
/*--------- HOME ---------*/
.banner-home{
    width: auto !important;
    height: 27vw;
    max-height: 350px;
}
.banner-home-mobile{
    width: auto !important;
    height: 425px;
}
.owl-carousel.owl-loaded.carousel-home-mobile{display: none;}
.home-carousel.owl-carousel .owl-stage{ padding-top: 0px !important; }
.home-carousel.owl-theme .owl-nav .owl-prev{left: 3%;}
.home-carousel.owl-theme .owl-nav .owl-next{right: 3%;}
.home-carousel.owl-theme .owl-nav .owl-prev span{ margin-right: 2px; }

.trigger-fade-in-animation{
    position: fixed;
    top: 105%;
    right: 0;
}

.body{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.body > img{
    width: 87vw;
    height: auto;
    margin-bottom: 50px;
}
section.section-title.text{
    position: relative;
    margin-bottom: 38px;
}
/* h1 */
section.section-title.text > h1 { margin: 0 3vw; font-size: 1.9rem; color: var(--fontColor); }
/* h2 */
section.section-title.text > h2 { margin: 0 3vw; font-size: 1.7rem; }
section.section-title > hr.line2{ top: 6px; }
/* h3 */
section.section-title.text > h3 { margin: 0 3vw; font-size: 1.5rem; }
section.section-title > hr.line3{ top: 4px; }
/*-----------------------*/
section.section-title{
    position: relative;
    margin-bottom: 38px;
}
section.section-title > h2 { margin: 0 3vw; }
section.section-title.text > h1 > span,
section.section-title > h2 > span,
section.section-title.text > h3 > span{
    background: #FFF; 
    padding: 0 10px;
    font-family: 'Roboto';
    position: relative;
    z-index: 1;
}
section.section-title > hr{
    position: absolute;
    width: 100%;
    border: 0;
    border-top: 1px solid var(--detailColor);
    top: 6px;
}
.content-section{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.content-section.book-list{-webkit-column-gap: 30px;-moz-column-gap: 30px;column-gap: 30px;}
.content-section .menu-lateral{
    width: 20%;
}
.content-section .menu-lateral > nav { margin-bottom: 20px; }
.content-section .menu-lateral > nav:last-child { 
    position: relative; 
    margin-bottom: 75px;
}
.content-section .menu-lateral > nav > ul > li > u{text-decoration: none;font-family: monospace;font-size:.7rem;}
.content-section .menu-lateral > nav > ul > li.lineHeight{line-height: .95rem;}
.content-section .menu-lateral > nav > ul > li:first-child{ margin: 0; }
.content-section .menu-lateral > nav > ul > li > h3{
    border-left: 5px solid var(--primaryColor);
    padding: 0 0 0 9px;
    margin-bottom: 12px;
}
.content-section .menu-lateral > nav > ul > li{
    font-size: .85rem;
    text-decoration: none;
    color: var(--fontColor);
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    margin-left: 16px; 
    margin-bottom: 10px;
}
.options-books.active{ font-weight: bold; }
#owl-carousel-banner-home.owl-theme .owl-nav { margin-top: 5px; }
.content-section .menu-lateral > nav > ul > li:hover{ font-weight: bold; }
.content-section > div{ width: 80%; }
.filter-all{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.filter-all:hover span{ font-weight: normal; }
.filter-all span:hover{ font-weight: bold; }
.filter-all span{
    font-size: .75rem;
    margin-top: 5px;
    margin-right: 25px;
    color: var(--fontColor2);
}
.book-line{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.book-home {
    width: 21%;
    display: -ms-grid;
    display: grid;
    align-self: baseline;
    row-gap: 0px;
    opacity: 1;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    min-width: 130px;
    padding-top: 4px;
    justify-items: center;
}
#show-books{ -webkit-transition: .2s; -o-transition: .2s; transition: .2s; }
#show-books.active #book1,
#show-books.active #book2,
#show-books.active #book3,
#show-books.active #book4 { opacity: 1; }
#show-books.active-second #book5,
#show-books.active-second #book6,
#show-books.active-second #book7,
#show-books.active-second #book8 { opacity: 1; }
#show-books.active-third #book9,
#show-books.active-third #book10,
#show-books.active-third #book11,
#show-books.active-third #book12 { opacity: 1; }
.book-page section { opacity: 1; }
.book-page .book-home{ min-width: 80%; }
.owl-item.active{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
/*-- BOOKS ANIMATION IN --*/
#show-books.active section#book1, 
#show-books.active-second section#book5, 
#show-books.active-third section#book9{ 
    -webkit-transition-delay: 0s; 
         -o-transition-delay: 0s; 
            transition-delay: 0s; 
}
#show-books.active section#book2, 
#show-books.active-second section#book6, 
#show-books.active-third section#book10{ 
    -webkit-transition-delay: .1s; 
         -o-transition-delay: .1s; 
            transition-delay: .1s; 
}
#show-books.active section#book3, 
#show-books.active-second section#book7, 
#show-books.active-third section#book11{ 
    -webkit-transition-delay: .2s; 
         -o-transition-delay: .2s; 
            transition-delay: .2s; 
}
#show-books.active section#book4, 
#show-books.active-second section#book8, 
#show-books.active-third section#book12{ 
    -webkit-transition-delay: .3s; 
         -o-transition-delay: .3s; 
            transition-delay: .3s; 
}
/*-- BOOKS ANIMATION OUT --*/
#show-books section#book3, 
#show-books section#book7, 
#show-books section#book11{ 
    -webkit-transition-delay: .3s; 
         -o-transition-delay: .3s; 
            transition-delay: .3s; 
}
#show-books section#book2, 
#show-books section#book6, 
#show-books section#book10{ 
    -webkit-transition-delay: .6s; 
         -o-transition-delay: .6s; 
            transition-delay: .6s; 
}
#show-books section#book1, 
#show-books section#book5, 
#show-books section#book9{ 
    -webkit-transition-delay: .9s; 
         -o-transition-delay: .9s; 
            transition-delay: .9s; 
}
/*-----------------------------*/
#show-books{
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 3%;
       -moz-column-gap: 3%;
            column-gap: 3%;
    row-gap: 30px;
    grid-template-columns: repeat(auto-fill,minmax(215px,1fr));
}
#show-books.layout .book-home{width: 100%;}
.book-home > div > a{ 
    text-decoration: none; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    position: relative;
}
.img-book-container{
    position: relative;
}
.book-home.related-align > a{
    text-decoration: none; 
    display: -ms-grid; 
    display: grid;
    -ms-flex-line-pack: end;
        align-content: flex-end;
} 
.book-home img {
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0px 2px 7px 0px #4a4a4a30;
            box-shadow: 0px 2px 7px 0px #4a4a4a30;
    z-index: 9996;
}
.book-home .book-infos h3 { 
    line-height: 1.3rem;
    margin-bottom: 2px;
    margin-top: 5px;
}
.book-home .book-infos h3 > a {
    color: var(--secondaryColor);
    text-decoration: none;
    letter-spacing: -.5px;
    font-family: 'Roboto';
    font-size: .95rem;
    line-height: 0rem;
}
.book-home .book-infos h3 > a:hover { 
    text-decoration: underline; 
    font-weight: bold;
}
.book-home .book-infos h4,
.book-home .book-infos h5,
.book-home .book-infos h5.forced,
.book-home .book-infos h6 {
    margin-bottom: 6px;
    font-size: .85rem;
}
.book-infos > div > a > h5.forced{
    font-weight: bold;
    color: #ca0306;
}
.book-home .book-infos h5.categoria{
    background-color: #f5f5f5;
    padding: 5px 10px;
    /* width: fit-content; */
    border-radius: 20px;
    text-align: center;
    margin-bottom: 0;
    color: #14967F;
}
.book-home .book-infos h5 {
    margin-bottom: 3px;
    font-size: .8rem;
}
.book-home .book-infos h5.forced:hover {text-decoration: underline;}
.book-space-bottom{margin-bottom: 10px !important;}
.book-home .book-infos h4{
    /*margin: 0 0 10px 0;*/
    color: #989898;
    font-size: .82rem;
    font-family: Roboto;
    color: #000;
}
.book-home .book-infos h4:hover{
  text-decoration: underline;
}
.book-home .book-infos{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 205px;
    width: 100%;
}
.book-home .book-infos > div div { text-align: center; }
.book-home .book-infos .book-code-list {
    margin-top: 0;
    margin-bottom: 5px;
    height: 32px;
    width: 110px;
    border-radius: 10px;
    border: none;
    color: #FFF;
    /* background: var(--secondaryColor); */
    background: #14967F;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.book-home .book-infos .book-code-list *{cursor: pointer;}
.book-home .book-infos .book-code-list > label{
    opacity: 0;
    height: 0;
    width: 0;
    position: absolute;
}
.book-home .book-infos .book-code-list > img{
    width: 18px;
    height: auto;
}
.book-home .book-infos .book-code-list{position: relative;}
.book-home .book-infos .book-code-list input{
    border: none;
    background-color: transparent;
    padding: 0;
    opacity: 0;
    position: absolute;
}
.book-home .book-infos .book-code-list p{
    color: #FFF;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    padding: 0;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px;
}
.book-home .book-infos .book-code-list.cod-ref p{
    font-size: 14px;
    color: var(--secondaryColor);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    line-break: anywhere;
}
.book-home .book-infos .book-code-list.cod-ref {
    border: 1px solid var(--secondaryColor);
    background: #FFF;
}
.book-home .book-infos .book-code-list svg{
    fill: #FFF;
    width: 18px;
    height: auto;
}
.book-home .book-infos .book-code-list.cod-ref svg{fill: var(--secondaryColor);}
.book-home .book-infos div > a > button.know-more {
    margin-top: 12px;
    margin-bottom: 5px;
    height: 30px;
    width: 100%;
    border-radius: 10px;
    border: none;
    color: var(--secondaryColor);
    cursor: pointer;
    background-color: #FFF;
    border: 1px solid var(--secondaryColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.book-home .book-infos div > a > button.know-more {
    margin-top: 12px;
    margin-bottom: 5px;
    height: 30px;
    width: 100%;
    border-radius: 10px;
    border: none;
    color: var(--secondaryColor);
    cursor: pointer;
    background-color: #FFF;
    border: 1px solid var(--secondaryColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.book-home .book-infos div > a > button.know-more:hover {
    color: #FFF;
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}
.book-home .book-infos div > a > button > span { font-size: 1rem; }
.add-in-book{
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 9997;
    height: 60px;
    width: 60px;
    background-image: -o-radial-gradient(100% 100% , 1px , #000000ba 0px, #0000006b 0px, #00000003 0px, #00000000 0px);
    background-image: radial-gradient(1px at 100% 100% , #000000ba 0px, #0000006b 0px, #00000003 0px, #00000000 0px);
    pointer-events: none;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.add-in-book.keep-heart{opacity: 1;}
.img-book-container:hover .add-in-book{
    background-image: -o-radial-gradient(100% 100% , 1px , #000000ba 1px, #0000006b 30px, #00000003 62px, #00000000 35px);
    background-image: radial-gradient(1px at 100% 100% , #000000ba 1px, #0000006b 30px, #00000003 62px, #00000000 35px);
    opacity: 1;
}
.img-book-container:hover .add-in-book.keep-heart{
    background-image: none;
}
.add-in-book img{
    width: 30px;
    height: 29px;
    margin: 5px 5px;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.book-in-list-check{ 
    display: none; 
    pointer-events: all; 
    cursor: pointer; 
}
.book-in-list-check.active{ display: block; }

.home-teacher{ 
    -webkit-box-pack: justify; 
        -ms-flex-pack: justify; 
            justify-content: space-between; 

}
.code-explanation{
    font-size: 10pt;
    font-weight: normal;
    color: var(--fontColor);
    text-decoration: none;
    font-style: normal;
    margin-top: 15px;
    line-height: 17px;
    text-align: center;
}
.home-teacher > div{
    width: 24%;
    height: 150px;
    background-image: url(../Image/fundo.jpg);
    background-size: 350px;
    background-position: center;
    -webkit-transition: 1.5s;
    -o-transition: 1.5s;
    transition: 1.5s;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.home-teacher > div > a{
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--fontColor);
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.home-teacher > div > a > svg{
    height: 75px;
    width: auto;
    margin-bottom: 15px;
    fill: #FFF;
}
.home-teacher h3{color: #FFF;}
.home-teacher > div:hover h3{color: #FFF;}
.home-teacher > div:hover > a > svg{ fill: #FFF; }
.home-teacher > div:hover > a > svg path{ fill: #FFF; }
.home-teacher > div:hover{
    background-size: 600px;
}
.home-teacher > div:hover > a{
    color: #FFF;
}
.home-teacher > div:nth-child(1) > .prof-filter{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #009cd95e;
}
.home-teacher > div:nth-child(2) > .prof-filter{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #d900005e;
}
.home-teacher > div:nth-child(3) > .prof-filter{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00d91d5e;
}
.home-teacher > div:nth-child(4) > .prof-filter{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0e00d95e;
}

.home-infos{ -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.home-infos > div:first-child {
    width: 54%;
    padding: 30px calc(4% - 6px) 15px 4%;
    background-color: var(--secondaryColor);
    border-radius: 15px;
    color: #FFF;
}
.home-infos > div:first-child p { color: #FFF; }
.home-infos > div:first-child > p{ 
    margin-bottom: 20px;
    font-size: 1.05rem;   
}
.home-infos > div.form-resposta > p{ font-size: 1.3rem; }
.home-infos > div:first-child > form > div{ margin-bottom: 12px; }
.home-infos > div:first-child > form > div:last-child{ text-align: end; }
.home-infos > div:first-child > form > div > p{ 
    margin-bottom: 6px; 
    font-size: .95rem;  
}
.home-infos > div:first-child > form > div > input {
    width: calc(96% - 4px);
    height: 35px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 20px;
    padding: 0 2%;
    margin-left: -6px;
}
.home-infos > div:first-child > form > div > textarea {
    width: calc(96% - 4px);
    height: 75px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 20px;
    padding: 8px 2%;
    margin-left: -6px;
    resize: none;
}
.home-infos > div:first-child > form > div > input[type="submit"] {
    width: 125px;
    height: 35px;
    background-color: var(--secondaryColor);
    border: 2px solid #FFF;
    color: #FFF;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 10px;
    margin-right: 10px;
}
.home-infos > div:first-child > form > div > input[type="submit"]:hover {
    background-color: #FFF;
    color: var(--secondaryColor);
    font-weight: bold;
}
.check-news{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.check-news input{
    width: unset !important;
    margin-right: 8px !important;
    margin-left: 4px !important;
}
.check-news p{
    margin-top: 5px;
}
div.form-teacher-side{
    width: 28%;
    padding: 20px 3%;
    border-radius: 15px;
    color: #FFF;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
}
.form-teacher-side h2{
    background-color: #FFF;
    color: var(--secondaryColor);
    padding: 20px;
    text-align: center;
}
.form-teacher-side h2 span{color: var(--primaryColor);}

.home-news{position: relative;}
.home-news > .noticias{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
}
.home-news div.more-news a {
    width: 115px;
    height: 25px;
    font-size: .8rem;
    margin-right: 7px;
    background: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #FFF;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.home-news div.more-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.link-news { 
    width: 95%; 
    color: var(--fontColor);
    text-decoration: none;
    font-size: .9rem;
    font-weight: bold;
}
.link-news:hover .news-info:last-child { text-decoration: underline; }
.container-info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 225px;
    width: 100%;
    background-size: cover; 
    background-position: center; 
}
.news-info{
    background: #ffffffde;
    padding: 10px;
    width: 100%;
    position: relative;
    -webkit-box-shadow: 2px 4px 4px 0px #00000038;
            box-shadow: 2px 4px 4px 0px #00000038;
    min-height: 38px;
}
.news-info > p{
    font-size: 1.2rem;
    font-family: 'Roboto';
}
.info-news-absolute{
    position: absolute;
    top: -15px;
    left: 10px;
    background: var(--primaryColor);
    color: #FFF;
    padding: 2px 8px;
    font-weight: 400;
    font-size: 1rem !important;
}
.home-news > div:last-child{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.home-news > div:last-child > a{
    width: 115px;
    height: 25px;
    font-size: .8rem;
    margin-right: 7px;
    background: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #FFF;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.home-news > div:last-child > a:hover{
    color: var(--primaryColor);
    background: #FFF;
}
/*---------- LIVRO ----------*/
.book-prev-next{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.book-prev-next > section{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center;
    border: 1px solid #FFF;
    padding: 5px 10px;
    border-radius: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.book-prev-next > section:last-child{ text-align: end; }
.book-prev-next > section > p{ font-size: 1.8rem; font-weight: bold; color: var(--fontColor2); }
.book-prev-next > section > p:first-child{ margin-right: 10px; }
.book-prev-next > section > p:last-child{ margin-left: 10px; }
.book-prev-next > section > a { text-decoration: none; }
.book-prev-next > section > a > p{ font-size: .9rem; color: var(--detailColor); }
.book-prev-next > section > a > p:first-child{ font-weight: bold; }
.book-prev-next > section:last-child > a > p:first-child{ text-align: end; }
.book-prev-next > section:hover p {color: #FFF; }
.book-prev-next > section:hover .arrow-left {border-right:8px solid #FFF; }
.book-prev-next > section:hover .arrow-right {border-left:8px solid #FFF; }
.book-prev-next > section:hover{
    border: 1px solid var(--primaryColor);
    background-color: var(--primaryColor);
}

.book-editor img{
    width: 72%;
    height: auto;
}

.all-book-infos{ 
    margin: 30px 0; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cover-book{ width: 24%; }
.cover-book img{ 
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    -webkit-box-shadow: 0px 2px 7px 0px #4a4a4a30;
            box-shadow: 0px 2px 7px 0px #4a4a4a30;
}
.book-page-img{ position: relative; }
.cover-book > .book-page-img-itens{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.cover-book > .book-page-img-itens > a,
.cover-book > .book-page-img-itens > a button,
.cover-book > .book-page-img-itens .book-content-area a button,
.cover-book > .book-page-img-itens .book-content-area button,
.cover-book > .book-page-img-itens > div{ 
    width: 100%; 
    background: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    padding: 10px 0;
    font-size: .8rem;
    color: #FFF;
    letter-spacing: .5px;
    margin-bottom: 5px;
    border-radius: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}
.cover-book > .book-page-img-itens > a:hover,
.cover-book > .book-page-img-itens > a button:hover,
.cover-book > .book-page-img-itens > .get-user-infos.active,
.cover-book > .book-page-img-itens .book-content-area a button:hover,
.cover-book > .book-page-img-itens .book-content-area button:hover,
.cover-book > .book-page-img-itens > div:hover{ 
    background: #FFF;
    color: var(--primaryColor);
}
.cover-book > .book-page-img-itens > a,
.cover-book > .book-page-img-itens > .get-user-infos > a,
.cover-book > .book-page-img-itens > div{
    width: 80%;
    text-align: center;
    padding: 5px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: .3fr 1fr;
    grid-template-columns: .3fr 1fr;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.cover-book > .book-page-img-itens > a > p,
.cover-book > .book-page-img-itens > .get-user-infos > a > p,
.cover-book > .book-page-img-itens > div > p{
    width: 100%;
    text-align: start;
    color: #FFF;
}
.cover-book > .book-page-img-itens > a:hover > p,
.cover-book > .book-page-img-itens > .get-user-infos:hover > a > p,
.cover-book > .book-page-img-itens > .get-user-infos.active > a > p,
.cover-book > .book-page-img-itens > div:hover > p{color: var(--primaryColor);}
.cover-book > .book-page-img-itens > a > svg,
.cover-book > .book-page-img-itens > .get-user-infos > a > svg,
.cover-book > .book-page-img-itens > div > svg{
    height: 32px;
    width: auto;
    fill: #FFF;
}
.cover-book > .book-page-img-itens > a > svg.paratextoSVG{height: 30px;}
.cover-book > .book-page-img-itens > a:hover > svg,
.cover-book > .book-page-img-itens > .get-user-infos:hover > a > svg,
.cover-book > .book-page-img-itens > .get-user-infos.active > a > svg,
.cover-book > .book-page-img-itens > div:hover > svg{fill: var(--primaryColor);}
.get-user-infos{
    display: block !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.get-user-infos > a{width: 100% !important;}
.book-content-area{
    width: 80%;
    border-radius: 10px;
    overflow: hidden;
}
.book-content-area h4{
    text-align: center;
    font-size: .8rem;
    color: var(--fontColor);
    padding: 8px 0;
    text-transform: uppercase;
}
.arrow-right {
    width: 0; 
    height: 0; 
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--detailColor);
    margin-left: 5px;
}
.arrow-left {
    width: 0; 
    height: 0; 
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent; 
    border-right:8px solid var(--detailColor); 
    margin-right: 5px;
}
.cover-book > div{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.cover-book > div > a{
    width: 80%;
    text-align: center;
}
.cover-book > div > a button{ 
    width: 100%; 
    background: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    padding: 10px 0;
    font-size: .8rem;
    color: #FFF;
    letter-spacing: .5px;
    margin-bottom: 5px;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}
.cover-book > div > a button:hover{ 
    background: #FFF;
    color: var(--primaryColor);
}
.infos-book{ 
    width: 48%;
}
.infos-book > section{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.infos-book > section > div > h2{
    margin: 0 15px 5px 0;
    font-size: 1.6rem;
    font-family: 'Roboto';
    color: var(--secondaryColor);
}
.infos-book > section > div > h3{ 
    font-size: 1.1rem; 
    font-family: 'Roboto';
}
.infos-book > section > div:last-child{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    width: 22%;
    padding-top: 3px;
    margin-bottom: -2px;
    cursor: pointer;
}
.infos-book > section > div > img{ 
    height: 17px;
    width: auto;
    margin-right: 5px;
    cursor: pointer;
}
.infos-book > section > div:hover > img{ background: var(--primaryColor); }
.infos-book > section > div > p{ font-size: .75rem; margin-top: 3px; }
.book-resume{ 
    margin-top: 20px; 
    position: relative;
    padding-bottom: 10px;
}
.book-resume > div{ 
    margin-top: 15px;
    font-size: .85rem;
    line-height: 1.2rem;
    overflow: hidden;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.book-resume #book-resume-p-more{ 
    position: absolute;
    bottom: -10px;
    text-align: end;
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: var(--fontColor2);
    padding-top: 24px;
    padding-bottom: 2px;
    background-image: -o-linear-gradient(transparent, #FFF, #FFF);
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#FFF), to(#FFF));
    background-image: linear-gradient(transparent, #FFF, #FFF);
    font-size: .9rem;
    cursor: pointer;
    display: none;
}
#book-resume-p-more.active{ display: block; }
.book-resume:hover #book-resume-p-more.active{ -webkit-transition: .3s; -o-transition: .3s; transition: .3s; text-decoration: underline; }
.book-resume em{ font-style: italic;}
div#book-resume-p p span,
div#book-resume-p p,
.text-participantes p, 
.text-participantes p span,
.text-participantes p em{
    font-family: var(--fontePrincipal) !important;
    font-size: .9rem !important;
}

.book-resume #book-resume-p-less{ 
    position: absolute;
    bottom: -10px;
    text-align: end;
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: var(--fontColor2);
    padding-top: 24px;
    padding-bottom: 2px;
    font-size: .9rem;
    cursor: pointer;
    display: none;
}
#book-resume-p-less.active{ display: block; }
.book-resume:hover #book-resume-p-less.active{ -webkit-transition: .3s; -o-transition: .3s; transition: .3s; text-decoration: underline; }
.book-resume em{font-size:14px; font-style: italic;}

.book-author-link{
    font-weight: bold;
    color: var(--fontColor2);
    line-height: 2rem;
}
.book-author-link:hover{ text-decoration: underline; }


.book-switch{ 
    margin-top: 30px; 
    -webkit-transition: .5s; 
    -o-transition: .5s; 
    transition: .5s;
}
.book-switch > section{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.book-switch > section > button{ 
    width: 32%; 
    padding: 12px 0;
    border: 1px solid var(--secondaryColor);
    background: var(--secondaryColor);
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    border-bottom: transparent;
    color: #FFF;
}
.book-switch > section > button.active{ 
    border: 1px solid var(--secondaryColor);
    color: var(--secondaryColor);
    background: #FFF;
    font-weight: bold;
    border-bottom: none;
    z-index: 98;
}
.book-switch > section > button:hover{ 
    border: 1px solid var(--secondaryColor);
    background-color: #FFF;
    color: var(--secondaryColor);
    border-bottom: 1px solid var(--secondaryColor);
    z-index: 99;
    padding: 11.5px 0;
}
.book-switch > section > button.active:hover{padding: 12px 0;}
.book-switch > section > button.active:hover{ 
    border-bottom: #FFF;
}
.book-tab{
    display: none;
    padding: 30px 30px;
    border: 1px solid var(--secondaryColor);
    margin-top: -1px;
    position: relative;
    z-index: 9;
    border-radius: 0 0 5px 5px;
}
.book-tab.active{ display: block; }
.book-tab h3{
    font-size: 1rem;
    margin-bottom: 5px;
}
#aguarde{
    background-color: #2c2c2c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 300px;
    margin: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 20px;
    border-radius: 5px;
}
#aguardeImagem{
    width: 12%;
    margin-bottom: 65px;
}   
#aguardeH2{
    padding-top: 20px;
    color: white;
    text-align: center;
    font-size: 2rem;
    line-height: 2.4rem;
}

#book-video.book-tab{
    padding: 0;
    padding-bottom: 56.25%;
}
#book-video.book-tab.paddingNeutro{
    padding-bottom: 0;
}
#book-video iframe{
    width: calc(100% - 61px);
    height: calc(100% - 35px);
    padding: 18.5px 30.5px;
    position: absolute;
}
.inactive-none{display: none;}
.inactive-none.active{display: block;}
/** Formataï¿½ï¿½es para o que vem do editor de texto **/
#book-prop ul{list-style: disc; padding-left: 12px;}
#book-prop ul li{
    font-size: .9rem;
    line-height: 1rem;
    margin-bottom: 10px;
}
#book-prop ul li ul{margin-top: 2px; list-style: circle;}
#book-prop ul li strong{font-weight: bold; font-size: .9rem !important;}
#book-prop ul li em{font-style: italic; font-size:14px;}
#book-prop ul li ul li{margin: 5px 2px 0 10px;}
/***********************************************/
#book-author.active > div{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-pack: justify; 
        -ms-flex-pack: justify; 
            justify-content: space-between;
    margin-bottom: 25px;
}
.img-author{
    height: 10vw;
    width: 10vw;
    background-size: cover;
    background-position: center;
    border-radius: 200px;
    max-width: 170px;
    max-height: 170px;
}
#book-author.active div .text-participantes{width: 70%; height: 200px; overflow: hidden;position: relative;}
#book-author.active div.text-participantes p{ 
    width: 100%; 
    font-size: .9rem;
    line-height: 1.1rem;
}
.text-participantes em{font-style: italic;}
#book-author.active div.text-participantes .participantes-resume{ 
    position: absolute;
    bottom: -10px;
    text-align: end;
    width: 100%;
    color: var(--fontColor2);
    padding-top: 24px;
    padding-bottom: 2px;
    background-image: -o-linear-gradient(transparent, #FFF, #FFF);
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#FFF), to(#FFF));
    background-image: linear-gradient(transparent, #FFF, #FFF);
    font-size: .9rem;
}
#book-author.active div.text-participantes p::first-letter{text-transform: uppercase;}
.book-tab#book-author{padding: 30px 20px !important;}
.credito-foto{
    margin-top: 8px; 
    font-size: .7rem !important;
    width: 95% !important;
    text-align: center;
}
.credito-foto span{font-weight: bold;}

.codes-book{ width: 22%; }
.codes-book > .container-codes{
    border: 1px solid #e9e9e9;
    background-color: #f9f9f9;
    padding: 12px;
}
.container-codes > section{
    width: 100%;
    background-color: var(--secondaryColor);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 8px 0;
    color: #FFF;
    border-radius: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.container-codes > section > p{ 
    font-size: .9rem; 
    margin-bottom: 2px;
    color: #FFF;
    width: 25px;
    margin-top: 4px;
}
.container-codes > section > input{
    border: none;
    background-color: transparent;
    width: 170px;
    color: #FFF;
    font-size: .95rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    margin-right: 3px;
}
.container-codes > section > img{
    width: 18px;
    height: auto;
}
.container-codes > ul > li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 23px 0;
}
.container-codes > ul > li:first-child{ margin-top: 13px; }
.container-codes > ul > li .left{
    width: 36%;
    font-size: .8rem;
}
.container-codes > ul > li .right{
    width: 64%;
    font-size: .8rem;
    text-align: left;
}
.container-codes > ul > li .right p{
    margin-bottom: 6px;
}
.book-line.book-page section{ width: 18%; }
.hidden-list{ -webkit-transform: translateX(500px); -ms-transform: translateX(500px); transform: translateX(500px); }
.show-list{ display: block; }

.my-list{
    position: fixed;
    bottom: 10px;
    right: 2%;
    height: 19px;
    width: 219px;
    background-color: var(--primaryColor);
    z-index: 99995;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-radius: 15px;
    padding-bottom: 2px;
    padding: 5px 0;
    overflow: hidden;
    border: 3px solid var(--primaryColor);
    border-top: none;
}
.my-list.upper{ bottom: 65px; }
.my-list:hover{ height: 330px; }
.my-list-books::-webkit-scrollbar { width: 4px; }
  /* Track */
.my-list-books::-webkit-scrollbar-track { background: #FFF; }
  /* Handle */
.my-list-books::-webkit-scrollbar-thumb { background: #c50710; }
  /* Handle on hover */
.my-list-books::-webkit-scrollbar-thumb:hover { background: #a1020a; }
.my-list-books{
    width: 96%;
    padding: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #FFF;
    border-bottom: none;
    border-radius: 0 0 5px 5px;
    overflow-y: auto;
    height: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.my-list:hover .my-list-books{
    height: 270px;
}
.to-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 30px;
    margin-top: 2px;
}
.to-list a{ color: #FFF; }
.to-list a:hover{ text-decoration: underline; }
.book-my-list > div > p.my-list-author{
    font-size: .8rem;
    font-weight: unset;
}
.book-my-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 5px 0;
    padding-left: 5px;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.book-my-list > div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.book-my-list > div > p{
    font-size: .9rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.book-my-list > div button{
    background: var(--secondaryColor);
    border: none;
    color: #FFF;
    padding: 5px 0;
    width: 130px;
    border-radius: 4px;
}
.book-my-list img{
    width: 30%;
    margin-right: 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.my-list > div:first-child > img{ 
    height: 85%; 
    width: auto;
    margin-left: 10px;
    margin-bottom: 2px;
}
.my-list > div:first-child{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.my-list > div:first-child > p{ 
    color: #FFF;
    font-size: 1rem;
    left: 32px;
    font-weight: bold;
    font-family: 'Roboto';
}
.float-quant-livros{
    position: absolute;
    color: var(--primaryColor);
    right: 48px;
    font-size: .85rem;
}
.fixed-code{
    height: 32px;
    padding: 0 12px;
    background-color: var(--secondaryColor);
    position: fixed;
    bottom: 40px;
    right: 2%;
    border: none;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    z-index: 99999999;
    width: 225px;
}
.fixed-code.item2{
    bottom: 4px;
}
.fixed-code > input{
    background-color: transparent;
    border: none;
    color: #FFF;
    font-size: .95rem;
    font-weight: bold;
    width: 168px;
    cursor: pointer;
}
.fixed-code > img{
    height: 22px;
    width: 18px;
    margin-left: 10px;
}
.fixed-code.item2{
    border: 1px solid var(--secondaryColor);
    background-color: #FFF;
}
.fixed-code.item2 > svg{
    height: auto;
    width: 18px;
    margin-left: 5px;
    fill: var(--secondaryColor);
}
.fixed-code.item2 > input{
    color: var(--secondaryColor);
}
.fixed-list-inBook{
    height: 32px;
    padding: 0 25px;
    background-color: var(--primaryColor);
    position: fixed;
    bottom: 60px;
    right: 3%;
    border: none;
    border-radius: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    z-index: 99999999;
    width: 225px;
}
.fixed-list-inBook > div{
    position: relative;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.inbook-number{
    font-size: .9rem !important;
    color: var(--primaryColor) !important;
    position: absolute;
    top: 6px;
    right: 41px;
    font-weight: bold;
}
.fixed-list-inBook p{
    color: #FFF;
    font-size: 1rem;
}
.fixed-list-inBook img{
    height: 22px;
    width: auto;
    margin-left: 8px;
}
.hamburger.hamburger--collapse{ display: none; }
.hamburger{ padding: 3px 0px !important; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after{ width: 30px !important; }

.menu-mobile{ display: none; }

.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0 !important;
    width: 34px;
    border-radius: 100px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #c507118c !important;
}
.owl-theme .owl-nav .owl-prev{ left: -5px; }
.owl-theme .owl-nav .owl-next{ right: -5px; }
.owl-theme .owl-nav .owl-prev span,
.owl-theme .owl-nav .owl-next span{
    font-size: 40px;
    margin-bottom: 1px;
    margin-top: -7px;
    margin-right: -4px;
    color: #FFF;
}

#mylist-close{
    display: none;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99990;
}
#mylist-close.active{ display: block; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after{ background-color: var(--fontColor) !important; }
.owl-carousel .owl-stage{ padding-top: 4px !important; }

.book-home.item{height: 100%;}
.book-line.book-page .owl-stage{display: -webkit-box;display: -ms-flexbox;display: flex; -webkit-box-align: baseline; -ms-flex-align: baseline; align-items: baseline;}

#menu-header ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-list{
    position: relative;
    cursor: pointer;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
}
.header-list > p{
    color: #FFF;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-70%);
        -ms-transform: translateY(-70%);
            transform: translateY(-70%);
    left: 13px;
    font-size: .9rem;
}
.header-list img{
    min-width: unset;
    height: 32px;
    width: auto;
}

.news-list li{ margin-bottom: 25px; }
.news-list li h2{
    font-size: 1.35rem;
    color: var(--fontColor);
    font-weight: 700;
    margin-bottom: 5px;
}
.news-list li a:hover h2{ text-decoration: underline; }
.news-list li font{
    font-weight: normal;
    font-size: 1rem;
    color: var(--fontColor2);
    margin-bottom: 7px;
    margin-left: 10px;
}
.news-list li a:hover h2 font{
    text-decoration: none;
}

.registers-title{
    position: absolute;
    right: 3vw;
    top: 9px;
    background: #FFF;
    padding: 0 10px;
}
.registers-title p{
    font-size: .9rem;
    font-weight: bold;
}

.paginacao{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 60px 0 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: bold;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ajustes-paginacao{
    margin-left: 2rem;
    text-decoration: none;
    color: var(--fontColor);
}

.ajustes-paginacao:hover{
    text-decoration: underline;
}

.ajustes-paginacao-atual{
    border: 1px solid #ca0306;
    border-radius: 50px;
    margin-left: 2rem;
    background: #ca0306;
    padding: 4px 8px;
    color: #FFF;
}

.ajustes-paginacao-atual:nth-child(1){ margin-left: 0; }

.paginacao-seta{
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.news-filter{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 25px;
    margin-top: -10px;
}
.news-field-filter{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center;
}
.news-field-filter p{ 
    font-weight: bold; 
    color: var(--fontColor);
    margin-left: 5px;
}
.news-field-filter select{ 
    border: 1px solid var(--detailColor);
    height: 37px;
    margin-left: 5px;
    border-radius: 5px;
    background-color: #fff;
}
.news-field-filter input{ 
    padding: 0 5px;
    border: 1px solid var(--detailColor);
    height: 35px;
    margin-left: 5px;
    border-radius: 5px;
}
.news-field-filter input[type="submit"]{ 
    height: 37px;
    padding: 0 15px;
    border-color: var(--primaryColor);
    background-color: var(--primaryColor);
    font-weight: bold;
    color: #FFF;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.news-field-filter input[type="submit"]:hover{ 
    background-color: #FFF;
    color: var(--primaryColor);
    cursor: pointer;
}

.lay-conteudo.item{ margin-bottom: 50px; }
.lay-conteudo.item strong{font-weight: bold;}
.lay-conteudo.item em{font-style: italic;}
.lay-conteudo.item article ul{
    list-style: initial;
    margin-left: 30px;
}
.lay-conteudo.item article ul li{margin-bottom: 4px;}
.lay-conteudo.item article ul li ul{list-style: circle;}
.texto.text{ font-size: 1rem; line-height: 1.15rem; }

.news-img{
    width: auto;
    height: auto;
    max-width: 100%;
    float: right;
    margin-bottom: 15px;
}
.more-news li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 12px;
}
.more-news li p{ font-size: .9rem; color: var(--fontColor2); }
.more-news li a{ font-size: .95rem; color: var(--fontColor); }
.more-news li a:hover{ font-size: .95rem; color: var(--fontColor); text-decoration: underline; }

.list-authors{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.author-list{
    padding: 10px 0;
    cursor: pointer; 
    -webkit-transition: .2s; 
    -o-transition: .2s; 
    transition: .2s;
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 10px;
    margin-bottom: 10px;
    background-color: #FFF;
}
ul .author-list:hover{ 
    -webkit-box-shadow: 0 0 5px 3px #00000020; 
            box-shadow: 0 0 5px 3px #00000020; 
    z-index: 9;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.author-list p:nth-child(1){
    width: 100px;
    margin: 0 20px;
}
.author-list div{
    width: 150px;
    height: 150px;
    background-position: center;
    background-size: cover;
    border-radius: 100px;
    margin: 0 20px;
}
.author-list p:nth-child(2),
.author-list a{
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--fontColor);
    margin: 0 8px;
}
.author-list a:nth-child(3){
    text-align: center;
    font-size: .9rem;
    font-weight: normal;
    margin-top: -5px;
}
.author-list a:nth-child(3):hover{ text-decoration: underline; }

.search-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.search-wrapper > div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.search-wrapper input{
    padding: 0 5px;
    border: 1px solid var(--detailColor);
    height: 35px;
    margin-left: 5px;
    border-radius: 5px;
}
.search-wrapper p{
    font-weight: bold;
    color: var(--fontColor);
    margin-left: 5px;
}

.letters{
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.letters a{ padding: 3px 5px 1px 5px; }
.letters font{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3px 5px 1px 5px;
    color: var(--primaryColor);
}
.letters a:hover{
    background-color: var(--primaryColor);
    color: #FFF;
    border-radius: 10px;
}
.author-error a{ font-weight: bold; }
.author-error a:hover{ text-decoration: underline; }

.show-author{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.author-left{
    width: 19%;
}
.author-left img{
    width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}
.author-right{
    width: 79%;
}
.author-right em{font-style: italic;font-size: 14px;}
.author-right h1{
    margin-bottom: 20px;
}
.author-right p{line-height: 1.2rem;}

.form-intro{
    font-size: 1.2rem;
    color: #545454;
    line-height: 1.5rem;
    margin-bottom: 30px;
}
.dinamic-form{
    max-width: 1200px;
    margin: 0 auto;
}
.dinamic-form li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}
.dinamic-form li .left{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 45%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 1%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.dinamic-form li .left p{
    font-size: 1rem;
}
.dinamic-form li .right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 54%;
    font-size: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.dinamic-form li .right input[type=text],
.dinamic-form li .right select{
    width: 300px;
    height: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    font-size: .95rem;
    border: 1px solid var(--detailColor);
}
.dinamic-form li .right input[type=text]{ padding: 0 5px; }
.dinamic-form li .right textarea,
.dinamic-form li .right select.multi-select{
    width: 300px;
    height: 75px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: .95rem;
}
.dinamic-form li .right font{ font-size: .9rem; }

.dinamic-form li .right input[type=submit]{
    width: 300px;
    height: 35px;
}

.form-button{
    border: 1px solid var(--secondaryColor);
    background-color: var(--secondaryColor);
    color: #FFF;
    font-weight: bold;
    border-radius: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}
.form-button:hover{
    background-color: #FFF;
    color: var(--secondaryColor);
}

li.erro-obs{ margin-bottom: 20px; }
li.erro-obs p{
    color: var(--primaryColor);
    font-weight: bold;
    line-height: 1.2rem;
    width: 298px;
    text-align: center;
    border: 2px solid var(--primaryColor);
    padding: 7px 0;
}

.fomr-contato-erro p{
    text-align: center;
    border: 2px solid #FFF;
    border-radius: 15px;
    padding: 9px 0;
    color: var(--primaryColor) !important;
    background: #FFF;
}
.form-resposta{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.container-codes > ul > li.code-addthis{ 
    margin: 40px 0; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.code-addthis p{ 
    margin-bottom: 8px;
    font-size: .8rem;
    font-weight: bold;
}
.align-addthis{ 
    text-align: right; 
    margin-top: 10px;
}
.div_botoes{ margin-right: 4px; }
.my-list-icons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.filtred-by{
    margin-left: 3%;
    margin-right: 3%;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.filtred-by button{
    font-size: .9rem;
    border: none;
    background-color: transparent;
    font-weight: bold;
    color: var(--fontColor2);
    cursor: pointer;
}
.filtred-by button:hover{ text-decoration: underline; }
.underline-red{ border-bottom: 2px solid var(--primaryColor); }

@-webkit-keyframes biggerLoading {
    from {-webkit-transform: rotate(0);transform: rotate(0)}
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg)}
}

@keyframes biggerLoading {
    from {-webkit-transform: rotate(0);transform: rotate(0)}
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg)}
}
@-webkit-keyframes lowerLoading {
    from {-webkit-transform: rotate(0);transform: rotate(0)}
    to {-webkit-transform: rotate(-360deg);transform: rotate(-360deg)}
}
@keyframes lowerLoading {
    from {-webkit-transform: rotate(0);transform: rotate(0)}
    to {-webkit-transform: rotate(-360deg);transform: rotate(-360deg)}
}
  
#ajax-book-loading{
    position: absolute;
    top: 50px;
    left: calc(50% - 100px);
    display: none;
}
#ajax-book-loading div{ position: relative; }
#ajax-book-loading div .bigger-loading{
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    width: 100px;
    border-radius: 100px;
    border-left: 2px solid var(--primaryColor);
    border-right: 2px solid var(--primaryColor);
    -webkit-animation-name: biggerLoading;
            animation-name: biggerLoading;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: -2s;
            animation-delay: -2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}
#ajax-book-loading div .lower-loading{
    position: absolute;
    top: 10px;
    left: 10px;
    height: 80px;
    width: 80px;
    border-radius: 100px;
    border-top: 2px solid var(--secondaryColor);
    border-bottom: 2px solid var(--secondaryColor);
    -webkit-animation-name: lowerLoading;
            animation-name: lowerLoading;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: -2s;
            animation-delay: -2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

#show-books-father{ 
    -webkit-transition: .2s; 
    -o-transition: .2s; 
    transition: .2s;
    position: relative;
}

.my-list-container-books{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.my-list-share{
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.my-list-share .share-text{
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: bold;
}
.page-my-list-books{
    width: 80%;
}

/*** Ajuste dos corraï¿½ï¿½es no carrossel na pï¿½gina do livro ***/
.owl-carousel .owl-item .book-in-list-check{
    width: 30px;
    display: none;
}
.owl-carousel .owl-item .book-in-list-check.active{display: block;}
/**************************/

/*** Layout do Cadastre-se ***/
.cadastro-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cadastro-container div.form-teacher-side{
    height: unset !important;
    padding: 0 !important;
    background-color: #FFF;
}
.cadastro-simples{
    width: calc(48% - 60px);
    padding:30px 30px 30px 36px;
    border-radius: 15px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--secondaryColor);
}
.cadastro-simples .cadastro-titulo{
    width:100%;
    text-align:left;
    margin-bottom:30px;
    color: #FFF;
}
.cadastro-simples .cadastro-enviar{
    width:100%;
    text-align:right;
}
.cadastro-simples .cadastro-enviar .btn-enviar{
    width: 125px;
    border:2px solid #FFF;
    border-radius:10px;
    background:var(--secondaryColor);
    margin-top:10px;
    color: #FFF;
    cursor:pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    height: 35px;
}
.cadastro-simples .cadastro-enviar .btn-enviar:hover{
    background:white;
    color:var(--secondaryColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-weight: bold;
}
.cadastro-simples input[type="text"]{
    border-radius:20px;
    border: 1px solid #b0b0b0;
    width:80%;
    padding:10px;
    margin-bottom:20px;
}
.cadastro-simples .resposta{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.cadastro-simples .resposta p{
    font-size: 1.3rem;
    color: #FFF;
    line-height: 1.7rem;
}
.cadastro-completo{    
    width:48%;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 0;
}
.cadastro-campos{
    width: 100%;
}
.cadastro-campos p{
    font-weight: bold;
    color: #FFF;
    margin-bottom: 5px;
    font-size: .95rem;
}
.cadastro-campos input{
    margin-left: -6px;
    width: 96% !important;
    margin-bottom: 12px !important;
}
.form-teacher-side.cadastre-se h2{
    padding: 5px 0;
    color: var(--fontColor);
    font-size: 2rem;
}
/*******************************/

.my-list-copy{
    width:15%;
    text-align:right;
}

.form-teacher-side .banner-form{width: 100%;}
.form-teacher-side img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.form-home-icons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 30px;
}
.form-home-icons a{
    background-color: #FFF;
    padding: 9px 10px 7px 10px;
    border-radius: 50px;
    border: 1px solid var(--detailColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.form-home-icons svg{
    max-width: 40px;
    min-width: 25px;
    height: auto;
    width: 2.5vw;
}
.form-home-icons a:hover{border: 1px solid var(--secondaryColor);}
svg.icon-facebook path{fill: #395692;-webkit-transition: .2s;-o-transition: .2s;transition: .2s;}
svg.icon-instagram path{fill: #e12149;-webkit-transition: .2s;-o-transition: .2s;transition: .2s;}
svg.icon-twitter path{fill: #29ade0;-webkit-transition: .2s;-o-transition: .2s;transition: .2s;}
svg.icon-youtube path{fill: #f6000f;-webkit-transition: .2s;-o-transition: .2s;transition: .2s;}
svg.icon-whats path.st2{fill: #FFF;-webkit-transition: .2s;-o-transition: .2s;transition: .2s;}
.form-home-icons .change-all svg:hover path{fill: var(--secondaryColor);}
.form-home-icons svg.icon-whats:hover path.st2{fill: var(--secondaryColor);}

/*** LAYOUT LISTA MIDIAS ***/
.midia-list h2{
    border-left: 5px solid var(--secondaryColor);
    padding-left: 5px;
    margin-bottom: 25px;
}
.mida-group{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 50px;
}
.mida-group-item{
    width: 24%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.mida-group-item a{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.mida-group-item svg,
.mida-group-item img{
    width: 80%;
    height: auto;
    margin-bottom: 10px;
}
.mida-group-item .link-light{
    background-size: cover;
    background-position: center;
    min-height: 300px;
    width: 80%;
}
.mida-group-item .midia-img{
    background-size: cover;
    background-position: center;
    min-height: 300px;
    width: 100%;
    margin-bottom: 10px;
}
.mida-group-item iframe{
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.link-download{
    width: 100%;
    text-align: center;
}
.link-download h3{font-size: 1rem; margin-bottom: 2px;}
.link-download a{font-size: .9rem; text-align: -webkit-center;}
.link-download a:hover{color: var(--secondaryColor); font-weight: bold;}
.midia-relative-link{position: relative;}
.midia-relative-span{
    position: absolute;
    bottom: 23%;
    right: 28%;
    background-color: #fac603;
    padding: 2px 6px;
    color: #FFF;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
/*** FAQ ***/
.faq-list article{margin-bottom: 18px;}
.div-faq{
    padding-left: 25px;
    margin-top: 8px;
    overflow: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
   /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;*/
}
.div-faq img{
    height: 100%;
    width: auto;
    margin-right: 10px;
}
.div-faq p{
    font-size: .9rem;
}
.faq-plus-less{
    width: 15px;
    height: 4px;
    background-color: var(--primaryColor);
    position: relative;
    margin-right: 6px;
}
.faq-plus-less::after{
    content: "";
    width: 4px;
    height: 14px;
    background-color: var(--primaryColor);
    position: absolute;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    top: -5px;
    left: 6px;
}
.faq-plus-less.opened::after{
    height: 4px;
    top: 0;
}

div.box-input-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.full-size-input {width: 100%;}

label.label-input-form {
	background: transparent;
	padding: 0px 5px;
    font-weight: bold;
	cursor: pointer;
	color: var(--fontColor);
}

label.label-input-form.no-transition {
	background: #ffffff;
	border-radius: 65px 65px 10px 10px;
	padding: 0 4px;
}
.Form-input:required {border: 1px solid var(--detailColor) !important;}
.Form-input {
	height: 1rem;
	padding: 17px;
	border-radius: 4px;
	width: inherit;
	background: #ffffff;
	border: 2px solid #969595;
}

.Form-input:focus {
	outline: none;
	border-radius: 4px;
	-webkit-transition: all 0.42s ease;
	-o-transition: all 0.42s ease;
	transition: all 0.42s ease;
	color: #000000 !important;
}

.Form-input:invalid {
	color: transparent;
	border: 2px solid #969595;

}

.Form-input:valid~label,
.Form-input:focus~label {
	-webkit-transform: translate(-145px, 6px);
	-ms-transform: translate(-145px, 6px);
	transform: translate(-145px, 6px);
	-webkit-transition: background 0.42s ease, -webkit-transform 0.42s ease;
	transition: background 0.42s ease, -webkit-transform 0.42s ease;
	-o-transition: transform 0.42s ease, background 0.42s ease;
	-o-transition: background 0.42s ease, -o-transform 0.42s ease;
	transition: transform 0.42s ease, background 0.42s ease;
	transition: transform 0.42s ease, background 0.42s ease, -webkit-transform 0.42s ease;
	background: #ffffff;
	color: var(--primaryColor);
	font-weight: normal;
}

.faq-search-adjust{
    max-width: 200px;
    padding: 8px 17px !important;
    font-size: .9rem;
    height: 19px;
    width: 176px !important;
}

/** SVGS PADRï¿½ES **/
.icon-pdf_color .st0{opacity:0 !important;fill:#FFFFFF !important;}
.icon-pdf_color .st1{opacity:1 !important; fill:#CC4E4D !important;}
.icon-pdf_color .st2{opacity:1 !important; fill:#E9E9E0 !important;}
.icon-pdf_color .st3{opacity:1 !important; fill:#DAD8CB !important;}
.icon-pdf_color .st4{opacity:1 !important; fill:#FEFBFB !important;}
.icon-pdf_color .st5{opacity:1 !important; fill:#CC4F4E !important;}

.icon-file_color .st0{opacity:1 !important;fill:#EFEDEF !important;}
.icon-file_color .st1{opacity:0 !important;fill:#FFFFFF !important;}
.icon-file_color .st2{opacity:1 !important;fill:#FFD406 !important;}
.icon-file_color .st3{opacity:1 !important;fill:#D7D0D6 !important;}
.icon-file_color .st4{opacity:1 !important;fill:#FAC603 !important;}
.icon-file_color .st5{opacity:1 !important;fill:#B5ADB6 !important;}
.icon-file_color .st6{opacity:1 !important;fill:#F2E7BF !important;}
.icon-file_color .st7{opacity:1 !important;fill:#91C5EC !important;}
.icon-file_color .st8{opacity:1 !important;fill:#71B2E2 !important;}
.icon-file_color .st9{opacity:1 !important;fill:#9ECBD5 !important;}
.icon-file_color .st10{opacity:1 !important;fill:#F4D315 !important;}


.show-new{display: table;}
.show-new strong{
    font-weight: bold;
}
.show-new em{
    font-style: italic;
}

.listagem-imagens{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.listagem-imagens img{
    border: 3px solid #DCDDDE;
    width:70%;
    image-rendering: -webkit-optimize-contrast;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.listagem-imagens img:hover{
    border: 3px solid #b30b1394;
    -webkit-transform: translate(1px, -5px);
        -ms-transform: translate(1px, -5px);
            transform: translate(1px, -5px);
}

.listagem-imagens > *:nth-child(1){
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.listagem-imagens > *:nth-child(2){
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}

.listagem-imagens > *:nth-child(3){
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}

.listagem-imagens > *:nth-child(4){
	-ms-grid-row: 1;
	-ms-grid-column: 4;
}

.listagem-videos{
    display:-ms-grid;
    display:grid;
    -ms-grid-columns: 1fr 1fr ;
    grid-template-columns: 1fr 1fr ;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    justify-items: center;
}

.listagem-videos > *:nth-child(1){
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.listagem-videos > *:nth-child(2){
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}

.listagem-videos .video {
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    margin-bottom: 10px;
}

.teacher-manual{text-align: center;}
.teacher-manual > a{
    color: #e30712;
    text-decoration: underline;
}
.teacher-manual > a:hover{font-weight: bold;}

#CapaLivro{
    -webkit-transition: opacity 400ms;
    -o-transition: opacity 400ms;
    transition: opacity 400ms;
    margin-bottom: 15px;
}
#ContraCapaLivro{
    -webkit-transition: opacity 400ms;
    -o-transition: opacity 400ms;
    transition: opacity 400ms;
    margin-bottom: 15px;
}
#containerCapas{
    max-width:320px;
    position:relative;
}
#containerCapas > span{
    width:50px;
    height:50px;
    background:white;
    position:absolute;
    bottom:18px;
    right:0px;
    border-radius:50px 0px 0px;
    z-index: 999;
}
#containerCapas.contraCapa > span{bottom:15px;}
#containerCapas > span > img{
    cursor: pointer;
    -webkit-box-shadow:none;
            box-shadow:none;
    width:30px;
    height:30px;
    position:absolute;
    bottom:5px;
    margin-bottom:0px;
    right:5px;
    z-index: 999;
}

/* formulï¿½rio infos usuï¿½rio para liberar livro na integra */
.get-user-infos{position: relative;}
.get-user-infos.active{
    border-radius: 10px 0 0 10px !important;
    width: 85% !important;
    margin-left: 5%;
}
.get-user-infos.active > a{
    border-right: 2px solid #FFF;
    position: relative;
    z-index: 999;
    width: calc(100% - 5px) !important;
}
#userInfosReadBook{
    position: absolute;
    width: 300px;
    left: 100%;
    top: -2px;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background-color: #FFF;
    z-index: 99;
    pointer-events: none;
    border-radius: 0 10px 10px 10px;
    border: 2px solid var(--primaryColor);
    padding: 10px;
}
#userInfosReadBook.active{
    opacity: 1;
    pointer-events: all;
}
#userInfosReadBook > ul > li, #userInfosReadBook2 > ul > li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
}
#userInfosReadBook > ul > li label, #userInfosReadBook2 > ul > li label{
    font-size: .9rem;
    font-weight: bold;
    text-align: start;
    margin: 0 0 4px 5px;
}
#userInfosReadBook > ul > li > label, #userInfosReadBook2 > ul > li > label {
    color: var(--secondaryColor);
    cursor: auto;
}
#userInfosReadBook > ul > li > p,
#userInfosReadBook > ul > li > h3 {
    color: var(--primaryColor);
}
#userInfosReadBook2 > ul > li > h3, #userInfosReadBook2 > ul > li > p {
    color: var(--primaryColor);
    text-align: center;
}
#userInfosReadBook2 > ul > li > p > a {
    font-weight: bold;
    color: var(--primaryColor);
}
#userInfosReadBook > ul > li > p > a{
    font-weight: bold;
    color: var(--primaryColor);
}
#userInfosReadBook > ul > li > p > a:hover,
#userInfosReadBook2 > ul > li > p > a:hover{text-decoration: underline;}

#userInfosReadBook > ul > li > input, #userInfosReadBook2 > ul > li > input,
#userInfosReadBook > ul > li > select, #userInfosReadBook2 > ul > li > select {
    height: 32px;
    padding: 0 10px;
    border-radius: 50px;
    border: 2px solid var(--primaryColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
#userInfosReadBook > ul > li > input:not([value=""]),
#userInfosReadBook > ul > li > select.selected{
    border-color: var(--secondaryColor);
}
#userInfosReadBook > ul > li > select{
    height: 36px;
}
#userInfosReadBook > ul > li > div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#userInfosReadBook > ul > li > button,
#userInfosReadBook2 > ul > li > button{
    height: 32px;
    border-radius: 50px;
    background-color: var(--primaryColor);
    color: #FFF;
    font-weight: bold;
    border: 2px solid var(--primaryColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}
#bookOnline.active{
    height: 32px;
    border-radius: 50px;
    background-color: var(--primaryColor);
    color: #FFF;
    font-weight: bold;
    border: 2px solid var(--primaryColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
    width: 50%;
    min-width: 200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
#userInfosReadBook > ul > li > button:hover,
#userInfosReadBook2 > ul > li > button:hover, 
#bookOnline.active:hover{
    color: var(--primaryColor);
    background-color: #FFF;
}

.layout-banner-inferior{
    width: 100%;
    border-radius: 15px;
}
.layout-banner-inferior.mobile{display: none;}

.float-img{
    position: absolute;
    width: 85px !important;
    z-index: 9;
}
.float-img.grande{width: 200px !important;}
.float-img.header{
    height: 60px !important;
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;
}
header.active .float-img.header{height: 50px !important;}
.top-right{top: 0;right: 0;}
.top-right.percent{top: -50%}
.top-right.img-size{right: -85px;}
.top-left{top: 0;left: 0;}
.bottom-right{bottom: 0;right: 0;}
.bottom-right.percent{bottom: 55%;right: 0;}
.bottom-left{bottom: 0;left: 0;}
.bottom-left.percent{bottom: -55%;}
.bottom-center{bottom: 0;left: 50%;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}
.bottom-center.percent{bottom: -55%;}
.bottom-img-size{bottom: -70px !important;}
.top-img-size{top: -70px !important;}
.right-img-size{right: -70px !important;}
.left-img-size{left: -70px !important;}
.top-img-size.half{top: -40px !important;}
.right-img-size.half{right: -40px !important;}
.right-img-size.half.header{
    right: -58px !important;
    top: 12px;
}
header.active .right-img-size.half.header{top: 0px;}
.left-img-size.half{left: -40px !important;}
.top-center{top: 0;left: 50%;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}
.left-center{top: 50%;left: 0;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);}
.right-center{top: 50%;right: 0;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);}
.bottom-right.inside{bottom: 15px;right: 15px;}

.float-img.top-right.percent.especifico{right: -60px;}

.nova-img-materiais{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.no-border{border: none !important;}


.texto-img-materiais{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
}
.texto-img-materiais img{
    width: 250px;
    height: auto;
    max-width: 45%;
}
.texto-img-materiais p{
    font-family:arial,helvetica,sans-serif;
    font-size:18px;
    color: #000000;
    font-weight: bold;
}
.texto-img-materiais p a{color:#FF0000}
.texto-img-materiais p a:hover{text-decoration: underline;}
.img-limit img{max-width: 55%;}

.div-autoras{
    clear: both;
    float: none;
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.div-autoras img{
    max-width: 65% !important;
    width: 215px !important;
}

.book-home .book-infos.negativo .book-code-list{
    background: #FFF;
    border: 1px solid #14967F;
}
.book-home .book-infos.negativo .book-code-list p{
    color: #14967F;
    text-transform: uppercase;
    font-size: .9rem;
}
.book-home .book-infos.negativo .book-code-list svg{
    width: 16px;
    fill: #14967F;
}

.form-recaptcha{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.btn-livro-online {
    margin: 30px;
    gap:30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.btn-livro-online li > a {
background: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    padding: 15px 20px;
    font-size: .9rem;
    font-weight: 600;
    color: #FFF;
    letter-spacing: .5px;
    margin-bottom: 5px;
    border-radius: 10px;
    width: 100px;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.btn-livro-online > p {
    font-size: 11pt;
    text-align: center;
    line-height: 1.5rem;
}
.btn-livro-online p span {
    font-style: italic;
    font-weight: bold;
    text-transform: lowercase;
}
.btn-livro-online a:hover {
background: #FFF;
color: var(--primaryColor);
}


img.livro-selo{
    position: absolute;
    left: -12px;
    max-width: 56px !important;
    width: 20%;
    height: auto;
    z-index: 9997;
    -webkit-transform: rotate(-14deg);
        -ms-transform: rotate(-14deg);
            transform: rotate(-14deg);
    -webkit-box-shadow: none;
            box-shadow: none;
}
img.livro-selo.top{bottom: 80px;}
img.livro-selo.bottom{bottom: 25px;}


.book-desc-acervo h5{
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Roboto';
    border-bottom: 1px saddlebrown;
    color: var(--bgFooter);
    background-color: var(--primaryColor);
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;

}
.book-desc-acervo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 15px;
    background-color: var(--primaryColor);
    padding: 5px 10px;
    margin-bottom: 8px;
}
.bookCervoExibir{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-top: 10px;
}
.bookCervoExibir h5{
    color: white;
    background-color: var(--secondaryColor);
    padding: 6px;
}