@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/material-icons.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url('../imagens/bg.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-family: 'Montserrat';
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.clear {
    clear: both;
}

.clear:before,
.clear:after {
    content: "";
    display: table;
}

.clear:after {
    clear: both;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

.header {
    display: block;
    position: absolute;
    top: 25px;
    left: 100px;
    text-align: left;
    font-size: 2.5em;
    font-weight: 100;
    color: #ffffff;
    z-index: 2;
}

.header span {
    font-weight: 800;
}

.principalBox {
    display: block;
    position: relative;
    padding: 20px;
    width: calc(85% - 40px);
    height: auto;
    margin: auto;
    top: 100px;
}

body.fodase {
    margin-left: 250px;
}

.menuopen {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 99999;
    top: 20px;
    left: 30px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.menuopen div {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 5px 10px;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.menuopen div:nth-child(1) {
    margin-top: 20px;
}

.menuopen.active {
    z-index: 99999;
    top: 0px;
    left: 250px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background: #0f282f;
}

.menuopen.active #barA {
    -webkit-transform: translateY(3px) rotate(-135deg);
    -moz-transform: translateY(3px) rotate(-135deg);
    -o-transform: translateY(3px) rotate(-135deg);
    transform: translateY(3px) rotate(-135deg);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #fff;
}

.menuopen.active #barB {
    opacity: 0;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.menuopen.active #barC {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background-color: #fff;
}

.menuclose {
    width: 250px;
    left: -250px;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    top: 0px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.menuclose nav ul li.title {
    color: #fff;
    border-bottom: solid 1px #00A5B8;
    font-size: 1.5em;
    text-transform: capitalize;
    font-weight: 700;
    text-align: center;
    height: 50px;
}

.menuclose nav ul li {
    position: relative;
    font-size: 1.2em;
    font-weight: 100;
    height: 60px;
    padding: 0px 30px;
    list-style-type: none;
    line-height: 60px;
}

.menuclose nav ul li ul li {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
}

.menuclose nav ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    list-style: none;
    background-color: rgba(0, 40, 40, 0.95);
    width: 300px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.30);
}

.menuclose nav ul li:hover ul {
    display: block;
}

.menuclose nav ul li a {
    display: block;
    text-decoration: none;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
    color: #fff;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.menuclose nav ul li:hover {
    cursor: default;
    border-left: solid 2px #00A5B8;
}

.menuclose nav ul li a:hover {
    color: #00A5B8;
    -webkit-transform: translate(5px);
    -moz-transform: translate(5px);
    -o-transform: translate(5px);
    transform: translate(5px);
}

.menuclose.show {
    left: 0px;
    background-color: rgba(0, 40, 40, 0.4);
    backdrop-filter: blur(10px);
    background-blend-mode: overlay;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.close.active {
    display: block;
}

.close {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.sidebarBox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    width: 15%;
    min-height: calc(100vh - 50px);
    margin: 0;
    color: #FFFFFF;
    float: left;
    z-index: 999;
}

.btnGerar {
    display: block;
    position: absolute;
    right: 30px;
    top: 20px;
    width: 220px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    text-align: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.30);
    cursor: pointer;
    visibility: visible;
    z-index: 10;
    border: none;
    outline: none;
}

.btnGerar:hover {
    background: rgba(0, 0, 0, 0.60);
}

.btnUp,
.btnDim {
    display: inline-block;
    position: relative;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.30);
    border: none;
    font-size: xx-small;
    cursor: pointer;
    outline: none;
    min-width: calc(100% / 4 - 4px);
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 20px;
    margin-top: 5px;
}

.btnDim {
    background: rgba(0, 0, 0, 0.30);
}

.btnUp:hover,
.btnDim:hover {
    background: rgba(0, 0, 0, 0.90);
}

hr {
    margin-top: 5px;
    margin-bottom: 5px;
    border: none;
    border-bottom: solid 1px #192125;
    height: 0;
}

.fichaBox {
    display: block;
    position: relative;
    float: left;
    width: 70%;
    height: 400px;
    background: rgba(0, 0, 0, 0.10);
    padding: 10px;
    margin: 0 auto;
}

.fichaBox .nome {
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.40);
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    padding-left: 10px;
    top: 5px;
    left: 5px;
    width: 290px;
    z-index: 5;
}

.fichaBox .raca,
.fichaBox .classe,
.fichaBox .nivel {
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.15);
    width: 240px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    z-index: 5;
}

.fichaBox .raca {
    top: 45px;
    left: 65px;
}

.fichaBox .classe {
    top: 75px;
    left: 65px;
}

.fichaBox .nivel {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2em;
    font-weight: 100;
    top: 45px;
    left: 5px;
    background: rgba(0, 0, 0, 0.30);
}

.atributosBox .for,
.atributosBox .agi,
.atributosBox .int,
.atributosBox .von,
.atributosBox .ataquePrimario,
.atributosBox .ataqueSecundario,
.atributosBox .motivacao {
    display: block;
    position: absolute;
    width: 70px;
    height: 50px;
    background: rgba(0, 0, 0, 0.30);
    text-align: center;
    line-height: 50px;
    font-style: oblique;
    font-weight: bold;
    font-size: 26px;
    outline: none;
    border: none;
}

.atributosBox .defesa,
.atributosBox .determinacao {
    display: block;
    position: absolute;
    width: 65px;
    height: 40px;
    background: rgba(0, 0, 0, 0.30);
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 26px;
    outline: none;
    border: none;
}

.atributosBox .determinacao {
    box-shadow: inset 1px 0px 0px 0px rgba(0, 0, 0, 0.10);
}

.atributosBox .defesa>.titulo,
.atributosBox .determinacao>.titulo {
    display: block;
    width: 65px;
    text-align: center;
}

.atributosBox .titulo {
    display: block;
    position: absolute;
    width: inherit;
    height: 20px;
    line-height: 20px;
    top: -20px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.40);
}

.atributosBox .for {
    top: 25px;
    right: 5px;
}

.atributosBox .agi {
    top: 115px;
    right: 5px;
}

.atributosBox .int {
    top: 205px;
    right: 5px;
}

.atributosBox .von {
    top: 295px;
    right: 5px;
}

.atributosBox .esquiva,
.atributosBox .bloqueio {
    display: block;
    position: absolute;
    width: 40px;
    height: 15px;
    line-height: 15px;
    top: 125px;
    left: 135px;
    z-index: 1;
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
}

.atributosBox .bloqueio {
    top: 155px;
    left: 135px;
    z-index: 1;
}

.atributosBox .esquiva>.titulo,
.atributosBox .bloqueio>.titulo {
    height: 15px;
    line-height: 15px;
    text-align: center;
    top: -15px;
    font-size: 8px;
}

.atributosBox .defesa {
    top: 130px;
    left: 175px;
}

.atributosBox .determinacao {
    top: 130px;
    left: 240px;
}

.atributosBox .ataquePrimario {
    width: 300px;
    top: 195px;
    left: 5px;
}

.atributosBox .ataqueSecundario {
    width: 300px;
    top: 270px;
    left: 5px;
}

.atributosBox .motivacao {
    font-size: 11px;
    padding: 0;
    line-height: 11px;
    width: 300px;
    top: 345px;
    left: 5px;
}

.atributosBox .somaFor,
.atributosBox .somaAgi,
.atributosBox .somaInt,
.atributosBox .somaVon {
    display: block;
    position: absolute;
    width: 70px;
    height: 15px;
    background: rgba(0, 0, 0, 0.40);
    text-align: center;
    line-height: 15px;
    font-size: xx-small;
}

.atributosBox .somaFor {
    top: 75px;
    right: 5px;
}

.atributosBox .somaAgi {
    top: 165px;
    right: 5px;
}

.atributosBox .somaInt {
    top: 255px;
    right: 5px;
}

.atributosBox .somaVon {
    top: 345px;
    right: 5px;
}

.imgNPC img {
    display: block;
    position: absolute;
    left: 45%;
    top: -60px;
    width: 350px;
    transition: ease-in-out .3s;
}

.imgNPC img:hover {
    filter: saturate(100%);
}

.equipamentos {
    display: block;
    width: 70%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.30);
}

.equipamentos h2 {
    display: block;
    width: 100%;
    margin: -10px -10px 5px -10px;
    padding: 5px 5px 5px 15px;
    font-weight: 400;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.20);
}

.tabEquipamentos {
    border-collapse: collapse;
}

.tabEquipamentos tr,
.tabEquipamentos td {
    border: solid 1px rgba(0, 0, 0, 0.30);
    text-align: center;
}

.tabEquipamentos td {
    padding: 5px;
    background: rgba(0, 0, 0, 0.10);
}

.tabEquipamentos th {
    padding: 5px;
    background: rgba(0, 0, 0, 0.30);
}

.comandoBox {
    display: block;
    position: fixed;
    width: 300px;
    height: auto;
    top: 10%;
    left: 40%;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(7px);
    padding: 10px;
    padding-top: 40px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
    z-index: 9999;
    visibility: hidden;
}

.comandoBoxHeader {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    background: rgba(0, 0, 0, 0.30);
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    cursor: move;
}

.comandoBox p:first-of-type {
    margin: 0;
    padding: 0;
}

.comandoBox p {
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.comandoBox select {
    padding: 3px;
    border: none;
    border-radius: 20px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.35);
    outline: none;
    float: right;
    min-width: 140px;
}

.comandoBox label {
    height: 25px;
    display: inline-block;
    position: relative;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.30);
    border: none;
    font-size: small;
    outline: none;
    padding-left: 10px;
    width: calc(100% - 10px);
    line-height: 25px;
    text-align: left;
    border-radius: 20px;
    margin-bottom: 3px;
}

.recarregarFicha,
.downloadFicha {
    display: block;
    position: fixed;
    right: 25px;
    bottom: 50px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.40);
    text-align: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.40);
    cursor: pointer;
    visibility: visible;
    z-index: 10;
    font-size: 24px;
}

.recarregarFicha i,
.downloadFicha i {
    width: 60px;
    height: 60px;
    transition: ease-in-out .2s;
}

.recarregarFicha {
    right: 95px;
}

.recarregarFicha i:hover {
    transform: rotate(360deg);
}

.downloadFicha i:hover {
    transform: translateY(5px);
}

.abrirComandoBox:hover,
.recarregarFicha:hover,
.downloadFicha:hover {
    background: #607D8B;
}

.recarregarFicha span,
.downloadFicha span {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    right: 0px;
    min-width: 200px;
    height: 25px;
    line-height: 25px;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
}

.recarregarFicha span:before,
.downloadFicha span::before {
    content: '';
    /* width: 0; height: 0; */
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #37474F;
    position: absolute;
    bottom: -5px;
    left: 175px;
}

.recarregarFicha:hover span,
.downloadFicha:hover span {
    bottom: 70px;
    visibility: visible;
    opacity: 1;
}

.btnEsconderBox {
    font-size: small;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.30);
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    float: right;
    cursor: pointer;
}

.pesquisarEntrada {
    position: relative;
    background-image: url('../imagens/icones/pesquisa.png');
    background-position: 10px 50%;
    background-repeat: no-repeat;
    width: calc(100% - 60px);
    font-size: 20px;
    padding: 12px 20px 12px 40px;
    border: none;
    margin-bottom: 12px;
    background-size: 20px;
    background-color: rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    outline: none;
}

.pesquisarEntrada:focus {
    background-color: rgba(0, 0, 0, 0.50);
}

.tabela {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #263238;
    font-size: 16px;
}

.tabela th {
    cursor: pointer;
}

.tabela th,
.tabela td {
    text-align: left;
    padding: 10px;
}

.tabela tr {
    border-bottom: 1px solid #263238;
    background-color: rgba(0, 0, 0, 0.25)
}

.tabela tr.header,
.tabela tr:hover {
    background-color: rgba(0, 0, 0, 0.50)
}

.fonte {
    margin-bottom: 10px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.25)
}

.fonte a {
    color: #607D8B;
}

.highlight {
    color: #FFFFFF;
    background-color: rgb(255, 255, 0);
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    display: inline-block;
    width: fit-content;
    min-width: 200px;
    visibility: hidden;
    background-color: #263238;
    color: #FFFFFF;
    text-align: center;
    padding: 15px;
    position: absolute;
    z-index: 99999;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    font-size: 14px;

}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #263238 transparent transparent transparent;
}

.modal-window {
    position: fixed;
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.40);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.modal-window:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-window>div {
    width: 60%;
    min-height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 2em;
    font-size: 1.5em;
    overflow-y: auto;
}

.modal-window header {
    font-weight: bold;
}

.modal-window h1 {
    font-size: 150%;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.modal-close {
    color: #607D8B;
    line-height: 50px;
    position: fixed;
    right: 50px;
    text-align: center;
    top: 50px;
    width: 70px;
    text-decoration: none;
    transform: scale(3);
}

.modal-close:hover {
    color: #37474F;
}

.modal-window div:not(:last-of-type) {
    margin-bottom: 15px;
}

.btnModal {
    color: inherit;
    font-weight: bold;
    text-decoration: none;
}

.habilidades {
    display: block;
    position: absolute;
    top: 90px;
    right: 30px;
    margin: 0;
    padding: 0;
    width: 200px;
    background: rgba(0, 0, 0, 0.30);
    padding: 10px;
}

.habilidades h2 {
    display: block;
    width: 200px;
    margin: -10px -10px 0px -10px;
    padding: 5px 5px 5px 15px;
    font-weight: 400;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.20);
}

.habilidades li {
    position: relative;
    list-style: none;
}

.habilidades li a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.50);
    padding: 5px;
}

.habilidades li a:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0.10);
}

.pontosVidaMana {
    display: block;
    position: absolute;
    top: 110px;
    left: 70px;
    width: 130px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-style: oblique;
    font-weight: bold;
    font-size: 26px;
    background: rgba(0, 0, 0, 0.30);
    -webkit-transform: translate(-50%, -0%);
    transform: translate(-50%, -0%);
}

.disqus{
    padding: 20px;
    background-color: #FFFFFF;
}

.avisoWip a{
    color: #00A5B8;
}

.avisoWip {
    display: block;
    padding: 25px;
    color: #FFFFFF;
    font-size: 1.5em;
}
.avisoWip h2{
    text-align: center;
    margin-bottom: 35px;
}

.avisoWip img {
    display: block;
    float: left;
    margin-right: 20px;
}

.novaguia{
    display: block;
    position: fixed;
    top: 15px;
    right: 30px;
    background-color: #455A64;
    color: #FFFFFF;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.dados {
    display: flex;
    background-color: rgba(0, 0, 0, 0.25);
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 5px;
  }

  .dice {
    background-color: rgba(0, 0, 0, 0.25);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 1.5em;
    font-weight: 800;
    margin: 10px;
  }

  .sucessoRolagemDados {
    background: linear-gradient(124deg, #00ff2a, #00530b, #1de889, #0d4210, #1de840, green, #0d4210, #a4ffb8, green);
    background-size: 1800% 1800%;

    -webkit-animation: rainbow 2s ease infinite;
    -z-animation: rainbow 2s ease infinite;
    -o-animation: rainbow 2s ease infinite;
    animation: rainbow 2s ease infinite;
  }
  .erroRolagemDados {
    background: linear-gradient(124deg, #ff0000, #530000, #e81d1d, #420d0d, #e81d1d, red, #420d0d, #ff6666, red);
    background-size: 1800% 1800%;

    -webkit-animation: rainbow 2s ease infinite;
    -z-animation: rainbow 2s ease infinite;
    -o-animation: rainbow 2s ease infinite;
    animation: rainbow 2s ease infinite;
  }

  @-webkit-keyframes rainbow {
    0% {
      background-position: 0% 82%
    }

    50% {
      background-position: 100% 19%
    }

    100% {
      background-position: 0% 82%
    }
  }

  @-moz-keyframes rainbow {
    0% {
      background-position: 0% 82%
    }

    50% {
      background-position: 100% 19%
    }

    100% {
      background-position: 0% 82%
    }
  }

  @-o-keyframes rainbow {
    0% {
      background-position: 0% 82%
    }

    50% {
      background-position: 100% 19%
    }

    100% {
      background-position: 0% 82%
    }
  }

  @keyframes rainbow {
    0% {
      background-position: 0% 82%
    }

    50% {
      background-position: 100% 19%
    }

    100% {
      background-position: 0% 82%
    }
  }