*
{
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

body{
  margin: 0;
  padding: 0;
}

body.off{
  overflow: hidden;
}

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

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

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

a{
  text-decoration: none;
}

img{
  display: block;
}

*:focus{
  outline: none;
}

input, button, textarea{
  -webkit-appearance: none;
}

/**/
header{
  background: #1C2933;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

header .mCursos{
  border: 1px solid red;
  flex-grow: 1;
  cursor: pointer!important;
  min-width: 400px;
}

/* logotipo */
header .logotipo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .logotipo img{
  width: 80px;
  margin: 0 auto;
}

/* ico-back */
header .ico-back[href=""]{display: none !important;}
header .ico-back{
  position: absolute;
  display: flex;
  flex-grow: 1;
  top: 0;
  left: 20px;
  height: 30px;
  top: 50%;
  margin-top: -15px;
  align-items: center;
  cursor: pointer;
}

header .ico-back img{
  flex-grow: 1;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

header .ico-back span{
  flex-grow: 1;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #8591a3;
  margin-left: 10px;
}

/* icon menu */
header .ico-menu{
  position: absolute;
  display: flex;
  flex-grow: 1;
  top: 0;
  right: 20px;
  height: 30px;
  top: 50%;
  margin-top: -15px;
  align-items: center;
}

header .ico-menu img{
  flex-grow: 1;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

header .ico-menu count{
  position: absolute;
  display: flex;
  display: none;
  background-color: red;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #0B1114;
  cursor: pointer !important;
  z-index: 20;
}


header .btn-meus-cursos{
  position: absolute;
  display: flex;
  border: 1px solid #8591a4;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
}

header .btn-meus-cursos > span:hover:not(:active){background-color: rgba(133, 145, 164, .1);}
header .btn-meus-cursos > span{
  font-size: 16px;
  font-weight: 200;
  padding: 4px 10px;
  color: #8591a4;
  cursor: pointer;
}

header .btn-meus-cursos:not(.showing) .submenu-meus-cursos{display: none;}
header .btn-meus-cursos .submenu-meus-cursos{
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #1C2933;
  top: 100%;
  left: 0;
  margin-top: 30px;
  border-radius: 5px;
  overflow: hidden;
  width: 46vw;
}

header .btn-meus-cursos .submenu-meus-cursos a:not(:last-child){border-bottom: 1px solid #444;}
header .btn-meus-cursos .submenu-meus-cursos a:hover:not(:active){background-color: rgba(0,0,0,.1);}
header .btn-meus-cursos .submenu-meus-cursos a{
  display: flex;
  flex-grow: 1;
  padding: 10px 8px;
  align-items: center;
}

header .btn-meus-cursos .submenu-meus-cursos a img{
  flex-grow: 1;
  max-width: 50px;
  max-height: 50px;
}

header .btn-meus-cursos .submenu-meus-cursos a span{
  flex-grow: 1;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 200;
  color: #8591a4;
  margin-right: 15px;
  max-width: 300px;
}

.body-menu{
  position: fixed;
  display: flex;
  justify-content: flex-end;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background-color: rgba(51, 51, 51, .3);
  overflow: hidden;
}

.body-menu:not(.showing){
  visibility: hidden;
}

.body-menu .content-menu{
  display: flex;
  flex-grow: 1;
  max-width: 360px;
  background: #2e2e2e;
  flex-direction: column;
  overflow: hidden;
}

.body-menu .content-menu .user-menu{
  display: flex;
  flex-grow: 1;
  min-height: 120px;
  max-height: 120px;
  align-items: center;
  padding: 20px;
}

.body-menu .content-menu .user-menu .user-picture{
  overflow: hidden;
  border-radius: 50%;
  flex-grow: 1;
  background-color: #0B1114;
  max-width: 120px;
  max-height: 120px;
}

.body-menu .content-menu .user-menu .user-picture img{
  width: 100%;
  height: 100%;
}

.body-menu .content-menu .user-menu .user-infos{
  flex-grow: 1;
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
}

.body-menu .content-menu .user-menu .user-infos span{
  display: flex;
  flex-grow: 1;
  align-items: center;
  font-size: 18px;
  font-weight: 200;
  color: #999;
}

.body-menu .content-menu .user-menu .user-infos span small{
  color: #999;
}

.body-menu .content-menu .user-menu .user-infos span img{
  width: 15px;
  height: 15px;
  opacity: .4;
  margin-right: 5px;
}

.body-menu .content-menu .user-menu .user-config{
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.body-menu .content-menu .user-menu .user-config > img{
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.body-menu .content-menu .user-menu .user-config .user-config-submenu{
  position: absolute;
  display: flex;
  top: 100%;
  right: 0;
  margin-top: -10px;
  background-color: #505050;
  z-index: 100;
  flex-direction: column;
  border-radius: 5px;
}

.body-menu .content-menu .user-menu .user-config .user-config-submenu:not(.showing){display: none;}

.body-menu .content-menu .user-menu .user-config .user-config-submenu::after{
  position: absolute;
  content: "";
  border-bottom: 10px solid #505050;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: 100%;
  right: 10px;
}

.body-menu .content-menu .user-menu .user-config .user-config-submenu a:first-child{border-radius: 5px 5px 0 0;}
.body-menu .content-menu .user-menu .user-config .user-config-submenu a:last-child{border-radius: 0 0 5px 5px;}
.body-menu .content-menu .user-menu .user-config .user-config-submenu a:hover:not(:active){background-color: #555;}
.body-menu .content-menu .user-menu .user-config .user-config-submenu a{
  display: flex;
  flex-grow: 1;
  align-items: center;
  flex-wrap: nowrap;
  padding: 10px 50px 10px 10px;
  text-decoration: none;
}

.body-menu .content-menu .user-menu .user-config .user-config-submenu a:not(:last-child){
  border-bottom: 1px solid #1C2933;
}

.body-menu .content-menu .user-menu .user-config .user-config-submenu a img{
  max-width: 30px;
  max-height: 30px;
  flex-grow: 1;
}

.body-menu .content-menu .user-menu .user-config .user-config-submenu a span{
  flex-grow: 1;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 200;
  color: #ccc;
  margin-left: 5px;
}

.body-menu .content-menu .progress-menu{
  flex-grow: 1;
  padding: 0 5px;
  overflow: hidden;
  background-color: #262626;
}

.body-menu .content-menu .progress-menu .progress-conteudo{
  display: flex;
  flex-wrap: wrap;
  margin: 0 5px;
  margin-top: 5px;
}

.body-menu .content-menu .progress-menu .progress-conteudo .progress-box{
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  max-width: 33%;
  padding: 15px;
}

.body-menu .content-menu .progress-menu .progress-conteudo .progress-box img{
  flex-grow: 1;
  width: 50px;
}

.body-menu .content-menu .progress-menu .progress-conteudo .progress-box span{
  font-size: 15px;
  font-weight: 200;
  flex-grow: 1;
  color: #aaa;
}

.body-menu .content-menu .progress-menu .progress-conteudo .progress-box .progress-barra{
  border-radius: 20px;
  position: relative;
  flex-grow: 1;
  width: 100%;
  max-width: 100px;
  min-height: 7px;
  max-height: 7px;
  overflow: hidden;
  background-color: #555;
  margin-top: 5px;
}

.body-menu .content-menu .progress-menu .progress-conteudo .progress-box .progress-barra .progress-prog{
  position: absolute;
  border-radius: 20px;
  background-color: orange;
  top: 0;
  left: 0;
  height: 100%;
}

.body-menu .content-menu .notification-menu{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 20px;
  overflow: auto;
}

.body-menu .content-menu .notification-menu .notification-header{
  display: flex;
  flex-grow: 1;
  align-items: center;
  min-height: 40px;
  max-height: 40px;
  margin: 0 15px;
}

.body-menu .content-menu .notification-menu .notification-header span{
  font-size: 16px;
  font-weight: 400;
  flex-grow: 1;
  width: 100%;
  color: #aaa;
}

.body-menu .content-menu .notification-menu .notification-header a:hover:not(:active){background-color: #ddd;}
.body-menu .content-menu .notification-menu .notification-header a{
  border-radius: 20px;
  font-size: 16px;
  font-weight: 300;
  flex-grow: 1;
  background-color: #eee;
  color: #1C2933;
  padding: 2px 16px;
  white-space: nowrap;
  cursor: pointer;
}

.body-menu .content-menu .notification-menu #sub_submenu_notificacoes{
  flex-grow: 1;
  overflow: auto;
  height: 100%;
  margin-top: 15px;
  padding-right: 10px;
  padding-left: 5px;
  border-top: 1px solid #444;
}

.body-menu .content-menu .notification-menu #sub_submenu_notificacoes a:first-child{padding-top: 15px;}
.body-menu .content-menu .notification-menu #sub_submenu_notificacoes a{
  display: flex;
  padding-bottom: 15px;
  cursor: pointer;
}

.body-menu .content-menu .notification-menu #sub_submenu_notificacoes a:not(:last-child){margin-bottom: 15px; border-bottom: 1px solid #444;}

.body-menu .content-menu .notification-menu #sub_submenu_notificacoes a .img{
  display: flex;
  flex-grow: 1;
}

.body-menu .content-menu .notification-menu #sub_submenu_notificacoes a .img img{
  width: 30px;
  height: 30px;
}

.body-menu .content-menu .notification-menu #sub_submenu_notificacoes a:hover:not(:active) span{color: #bbb;}
.body-menu .content-menu .notification-menu #sub_submenu_notificacoes a span{
  flex-grow: 1;
  font-size: 16px;
  font-weight: 200;
  margin-left: 5px;
  color: #bbb;
  width: 100%;
  text-align: left;
}

.body-menu .content-menu .notification-menu #sub_submenu_notificacoes a span b{
  font-weight: 200;
  text-decoration: underline;
}

.body-menu .content-menu .notification-menu #sub_submenu_notificacoes #sub_submenu_notificacoes_olds{
  opacity: .4;
}

/*menu*/
header .menu{
  position: absolute;
  display: flex;
  right: 15px;
  height: 100%;
}

header .menu .avatar{
  position: relative;
  display: flex;
  flex-grow: 1;
  align-items: center;
}

header .menu .avatar > .img{
  border-radius: 50%;
  background: #0B1114;
  overflow: hidden;
  cursor: pointer;
  max-width: 45px;
  max-height: 45px;
}

header .menu .avatar > .img img{
  width: 100%;
  height: 100%;
}

header .menu .avatar .sub_menu{
  position: absolute;
  border-radius: 5px;
  right: 0;
  top: 100%;
  margin-top: 10px;
  margin-right: 3px;
  z-index: 1000;
  box-shadow: 0 0 20px #1C2933;
  background: #262626;
  display: none;
}

header .menu .avatar .sub_menu.active{
  display: block;
}

header .menu .avatar .sub_menu::after{
  position: absolute;
  content: "";
  border-bottom: 12px solid #262626;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  bottom: 100%;
  right: 11px;
}

header .menu .avatar .sub_menu a:hover{
  background: #222;
}

header .menu .avatar .sub_menu a:hover span{
  color: #ddd;
}

header .menu .avatar .sub_menu a,
header .menu .avatar .sub_menu a:active{
  position: relative;
  display: flex;
  width: 100%;
  cursor: pointer;
}

header .menu .avatar .sub_menu a:nth-child(1){
  border-radius: 5px 5px 0 0;
}

header .menu .avatar .sub_menu a:last-child{
  border-radius: 0 0 5px 5px;
}

header .menu .avatar .sub_menu a .img{
  flex: 1;
  margin: 15px;
}

header .menu .avatar .sub_menu:not(.showing) a .img.back{
  display: none;
}

header .menu .avatar .sub_menu a .img img{
  width: 30px;
  height: 30px;
}

header .menu .avatar .sub_menu a span{
  flex: 6;
  white-space: nowrap;
  font-size: 15px;
  color: #bbb;
  min-width: 250px;
  margin: 15px;
}

header .menu .avatar .sub_menu a.title{
  border: 1px solid red;
  border-spacing: 30px 0;
  color: #bbb;
}

header .menu .avatar .sub_menu a count{
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  background: red;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  padding: 2px;
  color: #0B1114;
  right: 15px;
  top: 50%;
  margin-top: -0.8em;
}

header .menu .avatar .sub_menu.showing > a{display: none;}
header .menu .avatar .sub_menu.showing.notificacoes > a#btn_notificacoes{display: block;border-radius: 5px 5px 0 0;}

header .menu .avatar .sub_menu .sub_submenu{
  display: none;
  max-height: 450px;
  overflow: auto;
}

/* header .menu .avatar .sub_menu.showing.notificacoes #sub_submenu_notificacoes{display: block !important;} */

header .menu .avatar .sub_menu .sub_submenu a:hover:not(:active){
  background: #191919;
}

header .menu .avatar .sub_menu .sub_submenu a:hover:not(:active) span{
  color: #bbb;
}

header .menu .avatar .sub_menu .sub_submenu a{
  background: #202020;
  border-radius: 0;
}

header .menu .avatar .sub_menu .sub_submenu a .img.right{
  vertical-align: middle;
}

header .menu .avatar .sub_menu .sub_submenu a:hover .img.right img{
  transform: scale(1.1);
}

header .menu .avatar .sub_menu .sub_submenu a .img.right img{
  width: 20px;
  height: 20px;
}

header .menu .avatar .sub_menu .sub_submenu a span{
  white-space: normal;
  font-weight: 200;
  color: #999;
}

/* Busca geral */
header .busca-comentarios {
  position: absolute;
  right: 70px;
	display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  top: 50%;
  margin-top: -15px;
  z-index: 1;
}

header .busca-comentarios img {
  width: 30px;
	height: 30px;
	display: none;
	margin-right: 10px;
  animation: rotate .7s linear infinite;
  opacity: .5;
}

header .busca-comentarios i {
	font-size: 25px;
	cursor: pointer;
  color: #8591a4;
}

header .busca-comentarios #icone_exibe_busca_comentario {
	display: inline;
}

header .busca-comentarios #icone_fecha_busca_comentario {
	display: none;
}

header .busca-comentarios .busca-comentairos-input {
	display: none;
	margin: 0 10px 0 0;
}

header .busca-comentarios .busca-comentairos-input input[type=text] {
	padding: 5px 20px;
  border: none;
  border-radius: 50px;
	font-size: 16px;
  font-weight: 200;
  background-color: rgba(0,0,0,.5);
  color: #ddd;
  font-size: 16px;
  min-width: 350px;
  box-shadow: 0 0 0 15px #1C2933;
}

@media screen and (max-width: 768px){
  header .busca-comentarios .busca-comentairos-input input[type=text]{
    min-width: 280px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #222;
  }
}

header .busca-comentarios .busca-comentairos-input .ui-front{

}

header .busca-comentarios .busca-comentairos-input .ui-front ul{
	min-height: 20px;
	max-height: 500px;
	overflow-y: overlay;
  position: absolute;
  background-color: #0B1114;
  border: 1px solid #f5f5f5 !important;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}

/* Auto complete */
.ui-widget.ui-widget-content {
	z-index: 999;
  border-radius: 5px;
}

.ui-menu .ui-menu-item-wrapper {
	padding: 0 0 5px 0;
}

.ui-menu .ui-menu-item {
	list-style-image: none;
	border-bottom: 1px solid #eee;
  font-family: 'Sora', sans-serif;

	font-size: 16px;
  font-weight: 200;
  padding: 8px 5px !important;
}

.ui-menu .ui-menu-item .nada-encontrado {
	margin: 5px;
}

.ui-menu .ui-menu-item:last-child {
	border-bottom: none;
}

.ui-menu .ui-state-active {
	margin: 0;
	color: #aaa;
}

.ui-widget.ui-widget-content li a div {
	/* margin: 5px 0 5px 5px; */
  margin: 0px 0 0px 10px;
}

.ui-widget.ui-widget-content li a div p span {
	font-weight: 700;
}

.ui-widget.ui-widget-content li a div p b{
  color: #fba33a;
}

.ui-widget.ui-widget-content li a div p {
	/* max-width: 400px; */
}

@media screen and (max-width: 720px) {
	/* header .menu .busca-comentarios .busca-comentairos-input .ui-front ul{
		min-height: 65px;
		max-height: 225px;
		overflow-y: scroll;
	}

	header .menu .busca-comentarios .busca-comentairos-input input[type=text]  {
		width: 170px;
	}

	.ui-widget.ui-widget-content li a div p {
		width: 160px;
	} */
}


/* header .mCursos.aviso:after{
  position: absolute;
  content: "Mude de curso clicando aqui!";
  background: #288ce4;
  top: 100%;
  right: 0;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 200;
  padding: 5px 20px;
  border-radius: 5px;
  color: #0B1114;
}

header .mCursos.aviso::before{
  position: absolute;
  content: "";
  border-bottom: 7px solid #288ce4;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  top: 100%;
  margin-top: -4px;
  right: 23px;
}

@media screen and (max-width: 768px){
  header .mCursos.aviso:after{
    right: auto;
    left: 10px;
    min-width: 170px;
  }
  header .mCursos.aviso::before{
    right: auto;
    left: 35px;
  }
}

header .mCursos .mobileIcon{
  flex: 1;
  opacity: 0;
  visibility: hidden;
}

header .mCursos a:nth-child(1) .mobileIcon{
  opacity: 1;
  visibility: visible;
}

header .mCursos .mobileIcon img{
  width: 40px;
  height: 40px;
}

header .mCursos a:hover{
  background: #2f2f2f;
}

header .mCursos a:nth-child(1){
  display: flex;
  align-items: center;
}

header .mCursos a:last-child{
  border-radius: 0 0 5px 0;
}

header .mCursos a{
  display: none;
  border-spacing: 20px 0;
  background: #1C2933;
  width: 100%;
}

header .mCursos.show a{
  display: flex;
}

header .mCursos:not(.show) a .up,
header .mCursos.show a .down{
  display: none;
}

header .mCursos a span{
  font-size: 16px;
  font-weight: 300;
  white-space: nowrap;
  flex: 3;
  padding: 26px 0;
  width: 100%;
  color: #777;
}

header .mCursos a .icon{
  flex: 1;
}

header .mCursos a .icon img{
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 1024px) {
  header .mCursos{
    max-width: 300px;
  }
}

@media screen and (max-width: 900px) {
  header .mCursos{
    max-width: 250px;
  }
}

@media screen and (max-width: 720px) {
	header .mCursos{
		width: 150px;
	}

	header .mCursos.show{
		width: 100%;
		max-width: 100%;
	}

	header .mCursos a{
		height: 100%;
	}

	header .mCursos:not(.show) a:nth-child(1) span,
	header .mCursos:not(.show) a:nth-child(1) .icon{
		display: none !important;
	}
} */


#container .pagination{
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 10px;
  border-spacing: 5px;
}

#container .pagination span:not(:active):hover,
#container .pagination span.active{
  background: #2B3338;
}

#container .pagination span{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 2px;
  width: 2.5em;
  height: 2.5em;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  background: #1C2933;
  color: #0B1114;
  overflow: hidden;
  margin: 0 2px;
}

#container .pagination span:not(.active).loading::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1C2933;
}

#container .pagination span.active.loading::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2B3338;
}

#container .pagination span:not(.active).loading::after{
  position: absolute;
  content: "";
  border: 3px solid #2B3338;
  border-top: 3px solid #1C2933;
  padding: 3px;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  margin-left: -6px;
}

#container .pagination span.active.loading::after{
  position: absolute;
  content: "";
  border: 3px solid #444;
  border-top: 3px solid #2B3338;
  padding: 3px;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  margin-left: -6px;
}

#container .pagination span.hide{display: none !important;}


/*Tutorial*/
/* .tutorial{
  position: fixed;
  z-index: 100000;
  -webkit-box-shadow: 0 0 1000px 10000px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 1000px 10000px rgba(0, 0, 0, .2);
  box-shadow: 0 0 1000px 10000px rgba(0, 0, 0, .2);
}

.tutorial::before{
  position: absolute;
  content: "";
  top: -10000px;
  left: -10000px;
  right: -10000px;
  bottom: -10000px;
  background: transparent;
}

.tutorial.top::after{
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  margin-left: -10px;
  margin-top: 10px;
  border-bottom: 10px solid #0B1114;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.tutorial.bottom::after{
  position: absolute;
  content: "";
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  margin-bottom: 10px;
  border-top: 10px solid #0B1114;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
} */

/*.tutorial.right::after{
  position: absolute;
  content: "";
  top: 50%;
  right: 100%;
  margin-right: 10px;
  margin-top: -10px;
  border-left: 10px solid #0B1114;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.tutorial.left::after{
  position: absolute;
  content: "";
  top: 50%;
  left: 100%;
  margin-left: 10px;
  margin-top: -10px;
  border-right: 10px solid #0B1114;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}*/

/* .tutorial .tutorial_box{
  position: absolute;
  background: #0B1114;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 20px #aaa;
  padding-bottom: 5px;
}

.tutorial.top.left .tutorial_box{
  top: 100%;
  margin-top: 20px;
}

.tutorial.top.right .tutorial_box{
  top: 100%;
  margin-top: 20px;
  right: 0;
}

.tutorial.bottom.left .tutorial_box{
  margin-bottom: 20px;
  bottom: 100%;
}

.tutorial.bottom.right .tutorial_box{
  margin-bottom: 20px;
  bottom: 100%;
  right: 0;
}

.tutorial .tutorial_box label{
  white-space: nowrap;
  font-size: 17px;
  font-weight: 500;
  color: #1f8ceb;
}

.tutorial .tutorial_box span{
  display: block;
}

.tutorial  .tutorial_box .tutorial_title{
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  margin: 20px 0 5px 0;
  text-transform: uppercase;
  color: #2B3338;
}

.tutorial  .tutorial_box .tutorial_descricao{
  width: 400px;
  font-size: 15px;
  font-weight: 200;
  color: #2B3338;
}

.tutorial .tutorial_footer{
  border: 0px solid #f6f6f6;
  border-width: 1px 0 0 0;
  display: inline-block;
  width: 100%;
  padding-top: 15px;
  margin-top: 10px;
}

.tutorial .tutorial_footer button:hover:not(:active){
  background: #1a7dd4;
}

.tutorial .tutorial_footer button{
  border: none;
  float: right;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 200;
  padding: 10px 15px;
  background: #1f8ceb;
  cursor: pointer;
  color: #0B1114;
}

@media screen and (max-width: 720px) {
  .tutorial .tutorial_box label{
    font-size: 14px;
  }
  .tutorial .tutorial_box .tutorial_title{
    font-size: 14px;
  }
  .tutorial .tutorial_box .tutorial_descricao{
    font-size: 13px;
    width: 300px;
  }
  .tutorial .tutorial_box button{
    font-size: 13px;
  }
} */

/* aviso-header */
.aviso-header,
.aviso-header-bg{
  display: flex;
  background: #308ee1;
  width: 100%;
  z-index: 100000000;
  height: 60px;
  align-items: center;
}

.aviso-header.red,
.aviso-header-bg.red{background: #e0272c;}

.aviso-header{
  position: fixed;
  top: 0;
}

@media screen and (max-width: 720px) {
  .aviso-header,
  .aviso-header-bg{
    position: static;
    height: auto;
    flex-direction: column;
  }
}

.aviso-header img{
  flex-grow: 1;
  height: 40px;
  margin-left: 20px;
}

@media screen and (max-width: 720px) {
  .aviso-header img{
    height: 30px;
    margin-left: 0;
    margin-top: 20px;
  }
}

.aviso-header span{
  flex-grow: 1;
  width: 100%;
  font-size: 18px;
  font-weight: 200;
  color: #0B1114;
  margin: 0 20px;
}

.aviso-header .button:hover:not(:active){background: #f5f5f5;}
.aviso-header .button{
  border-radius: 3px;
  padding: 5px 15px;
  flex-grow: 1;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  background: #0B1114;
  color: #3690de;
  margin: 0 10px;
}

.aviso-header.red .button{color: #e0272c;}

@media screen and (max-width: 720px) {
  .aviso-header span{
    font-size: 17px;
    margin-top: 5px;
    text-align: center;
  }
  .aviso-header .button{
    width: 85%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
  }
}

/*popup*/
.popup{
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100000000;
}

.popup_box{
  position: absolute;
  width: 600px;
  top: 15%;
  left: 50%;
  margin-left: -300px;
  background: #0B1114;
  border-radius: 5px;
  box-shadow: 0 5px 5px #888;
  overflow: hidden;
}

@media screen and (max-width: 768px){
  .popup_box{
    width: 320px;
    margin-left: -160px;
  }
}

.popup_box .header{
  position: relative;
  background: #1C2933;
  padding: 15px;
  color: #0B1114;
  font-size: 18px;
  text-transform: uppercase;
}

.popup_box .header img{
  position: absolute;
  height: 20px;
  top: 50%;
  right: 10px;
  margin-top: -10px;
  cursor: pointer;
}

.popup_box .body{
  display: table;
  width: 100%;
  padding: 30px 15px;
}

@media screen and (max-width: 768px){
  .popup_box .body{
    padding: 15px;
  }
}

.popup_box .body p{
  display: table-cell;
  font-size: 16px;
  font-weight: 400;
  color: #1C2933;
  vertical-align: middle;
  text-align: center;
}

.popup_box .body .btns{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 768px){
  .popup_box .body p{
    display: block;
  }
  .popup_box .body .btns{
    display: block;
    margin-top: 20px;
  }
}

.popup_box .body .btns .opt_button{
  float: right;
  width: 80px;
  padding: 7px 0;
  font-size: 16px;
  font-weight: 200;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 4px;
}

.popup_box input[type=text] { border: 1px solid #ccc; padding: 5px; color: #777; margin: 0 auto }

.popup_box .body .btns .opt_button:nth-child(2):hover:not(:active){background: #bbb;}
.popup_box .body .btns .opt_button:nth-child(2){
  background: #ccc;
  color: #222;
  margin-bottom: 4px;
}

.popup_box .body .btns .opt_button:nth-child(1):hover:not(:active){background: #e95c70;}
.popup_box .body .btns .opt_button:nth-child(1){
  background: #f94862;
  color: #0B1114;
}
