
.home{
    margin:0 auto;
    text-align:center;
    max-width:1200px;
    background-color: var(--cor-fundo);
    height:100%;
    overflow:auto;
    padding: 70px 0;
    margin-bottom:200px;
}

.home h2{
    margin:0;
    padding:0;
    color:var(--cor-fundo);
    background-color: #fff;
}
.home h5{
    padding: 0;
    margin: 0;
}
.home .header{
    text-align:center;
    position: fixed;
    width:300px;
    left:50%;
    transform: translate(-50% , 0);
    border-radius:1px;
    height: 15px;
    color: white;
    top: 5px;
     z-index:10;
     background-color: #009688;
}

.home .botao{
    cursor:pointer;
    display:inline-block;
    position:relative;
    float:center;
    margin:5px;
    padding:5px;
    word-wrap: break-word;
   /* border-bottom:1px solid #fff;*/
}
.home p {
    color:white;
    font-size:15px;
    font-weight: bold; 
    padding:0;
    margin:5px;
}
.home .icon{
    display:inline-block;
    background-color:rgb(0, 0, 0);
    color:white;
    padding:10px;
    border-radius:50%;
    
}
.home .icon2{
    display:inline-block;
    background-color:black;
    color:white;
    padding:15px;
    border-radius:50%;
    border:2px solid #fff;
    width:50px;
    height:50px;
}
.container-wa .floating-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  cursor: pointer;
  box-shadow: 0px 2px 5px #666;
}
.container-wa .floating-button:hover {
  background-color: #1fad53;
}
.container-wa .floating-button .icon {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  
  text-align: center;
  transition: all 0.3s;
}
.container-wa .floating-button .icon.wa {
  animation: wa-out 0.3s;
}
.container-wa .floating-button .icon.close {
  opacity: 0;
  margin: auto;
  transform: rotateZ(-70deg);
  animation: close-out 0.3s;
}
.container-wa .card {
  font-family: 'Open Sans', sans-serif;
  position: fixed;
  z-index:100;
  width:85%;
  max-width:350px;
  height: 400px;
  background-color: gray;
  border-radius: 5px;
  right: 40px;
  bottom: 120px;
  display: none;
}
.container-wa .card .banner-header {
  color: white;
  padding: 20px;
  padding-bottom: 40px;
  background-color: #075e54;
 
}
.container-wa .card .banner-body {
  flex-grow: 1;
  background-color: #eaeaea;
  padding: 15px;
}
.container-wa .card .banner-body .card-atendente {
  margin-top: -50px;
  background-color: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  
}
.container-wa .card .banner-body .card-atendente .dados-atendente {
  display: flex;
  justify-content: center;
  
}
.container-wa .card .banner-body .card-atendente .dados-atendente .avatar {
  padding: 15px;
}
.container-wa .card .banner-body .card-atendente .dados-atendente .avatar img {
  border-radius: 50%;
  height:100px;
  margin:0 auto;
  text-align:center;
  background-color:var(--cor-fundo);
}
.container-wa .card .banner-body .card-atendente .dados-atendente .informacoes {
  padding: 5px;
}
.container-wa .card .banner-body .card-atendente .botao-atendente {
  display: flex;
}
.container-wa .card .banner-body .card-atendente .botao-atendente .btn {
  color: white;
  background-color: #24d366;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}
.container-wa.is-opened .icon.wa {
  animation: wa-in 0.15s linear;
  animation-fill-mode: forwards;
}
.container-wa.is-opened .icon.close {
  animation: close-in 0.2s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}
.container-wa.is-opened .card {
  display: flex;
  flex-direction: column;
}
.container-wa.is-opened .icon.wa {
  animation: wa-in 0.15s linear;
  animation-fill-mode: forwards;
}
.container-wa.is-opened .icon.close {
  animation: close-in 0.2s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}
@keyframes close-in {
  from {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@keyframes close-out {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
}
@keyframes wa-in {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(180deg);
  }
}
@keyframes wa-out {
  from {
    opacity: 0;
    transform: rotateZ(180deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}

/*
.menu {
    background: #8627bd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 #8627bd, 0 0 0 0 #8627bd;
    transition: box-shadow 1.1s cubic-bezier(.19, 1, .22, 1);
    z-index:15;
}

.menu:hover {
    box-shadow: 0 0 0 8px #8627bd, 0 0 0 8px #8627bd;
}

.hamburguer {
    position: relative;
    display: block;
    background: #fff;
    width: 30px;
    height: 2px;
    transition: .5s ease-in-out;
}

.hamburguer::before,
.hamburguer::after {
    background: #fff;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: .5s ease-in-out;
}

.hamburguer::before {
    top: -10px;
}

.hamburguer::after {
    bottom: -10px;
}

.input {
    display: none;
}

.input:checked~divmenu {
    opacity: 1;
    visibility: visible;
    
}
divmenu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    opacity: 0;
    transition: .25s .1s cubic-bezier(0, 1.07, 0, 1.02);
    visibility: hidden;
    z-index:15;
}
.input:checked~label .menu {
    box-shadow: 0 0 0 130vw #8627bd, 0 0 0 100vh #8627bd;
}

.input:checked~label .hamburguer {
    transform: rotate(45deg);
}

.input:checked~label .hamburguer::before {
    transform: rotate(90deg);
    top: 0;
}

.input:checked~label .hamburguer::after {
    transform: rotate(90deg);
    bottom: 0;
}
legend{
    margin:10px;
}
form{
    width:100%;
    height:100%;
    overflow:auto;
}

.tabela {
  border-collapse: collapse;
  font-weight: bold;
  margin:0 auto;
}
btModal{
    
    display:inline-block;
    background-color:black;
    color:#fff;
    width:80%;
    border:2px solid #fff;
    border-radius:10px;
    margin:8px auto;
    cursor:pointer;
    text-align:center;
    font-weight: bold; 
    padding:8px;
   
}
btModal > p{
    display:block;
    text-align:center;
    font-weight: 500; 
    color:#fff;
    margin:0;
    padding:0;
}
th {
    padding-top: 2px;
    padding-bottom: 2px;
    color: #fff;
    background-color:#000;
    text-align:center;
}
.tabela td, .tabela th {
  padding:2px;
  text-align: center;
   border-bottom:10px solid #fff;
}
.tabela tr:hover {background-color: #ddd;}
tr{
   background-color: #F2F2F2; 
}
.tabela  a img {
  border-radius: 50%;
  width: 65px;
  height: 65px;
}
.icone{
    display:inline-block;
    margin: 10px auto;
   cursor:pointer;
}
textoicone {
 
    display:block;
    font-size:7px;
    text-align:center;
    cursor:pointer;
}
DetalhesItem img{

    width:90%;
    height:auto;
}
DetalhesItem p{
    font-weight:bold;
    padding:0;
    margin:0;
} 
DetalhesItem span{
    padding-bottom:10px;
}

hr{
    display:block;
}
input[type='file'] {
  display: none
}
.LabelImg{
    display:block;
    background-color: #f00;
    color: #fff;
    padding:10px;
    border-radius:5px;
    cursor:pointer;
    width:90%;
}

.fa-times-circle{
    position:absolute;
    right:10px;
    top:15px;
    z-index:10;
    cursor:pointer;
    color:white;
}
.BtSalvar{
    padding:12px;
    width:90%;
    color:white;
    margin:0 auto;
    padding:15px;
    background-color:green;
    color:#fff;
    position:fixed;
    bottom:0;
    z-index:1000;
    border-radius:5px;
    width:90%;
    font-weight: 600;
    max-width:450px;
    cursor:pointer;
    font-size:18px;
}
textarea{
    width:90%;
    height:200px;
    padding:5px;
}
versao{
    position: fixed;
    width: 100%;
    height: auto;
    bottom: 0;
    left:0;
    
}
versao > p{
    display:block; 
    text-align:left;
    opacity:0.5;
}
.preto{
    color:black;
}
.vermelho{
    color:red;
}
.verde{
    color:green;
}
.azul{
    color:blue;
}
.branco{
    color:#fff;
}
.laranja{
    color:orange;
}
.amarelo{
    color:#f9df16;
}
.bg{
    margin:0 auto;
    text-align:center;
    max-width:500px;
    height:100%;
    overflow:auto;
}
spaceTop{
    display:block;
    height:60px;
    
}
spaceBottom{
    display:block;
    height:120px;
}

card{
    display:block;
    background-color:white;
    border-radius:7px;
    color:black;
    margin:15px auto;
    width:90%;
    padding:10px 0;
    overflow:auto;
}
BgEstilo{
    display:inline-block;
    padding:0px;
    margin-bottom:15px;
    text-align:center;
}

BgEstilo > img{
    height:190px;
    width:120px;
    margin:5px 5px 0 5px;
    border: 5px solid #555;
    border-radius:5px;
    cursor:pointer;
}
BgEstilo > img:hover{
    
    border: 5px solid #6b6b6b;
    
}
BgEstilo > span{
    height:100px;
    width:50px;
    margin:0;
    font-weight: 600;
    padding:0;
    padding-bottom:15px;
}
bt{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
   width:90%;
    border:2px solid #fff;
    border-radius:10px;
    margin:8px auto;
    cursor:pointer;
}
input[type="checkbox"]{
    cursor:pointer;
    width: 25px;
    height: 25px;
    
    
}

.CardCliente {
  width: 75%;
  padding: 40px 30px 30px;
  background: #fff;
  border: 5px solid rgba(255, 255, 255, 0.7);
  text-align: center;
  border-radius: 4px;
  transition: all 200ms ease;
  margin:100px auto;
}

.CardCliente:hover {
  box-shadow: 0px 30px 60px -5px rgba(55, 55, 71, 0.3);
  transform: translate3d(0, -5px, 0);
}


.informacoes{
  margin-bottom:5px
}
.informacoes p {
  font-size: 18px;
  font-style: italic;
  color:#203B7D;
  margin:0;
  padding:0;
  margin-top:1px;
}
.informacoes span {
  font-size: 14px;
  color: #a5a5a5;
  line-height: 1.7;
  font-style: italic;
  margin:0;
  padding:0;
  margin-bottom: 15px;
}



@-webkit-keyframes bounceOut {
  0% {
    box-shadow: 0 0 0 4px #fff;
    opacity: 1;
  }
  25% {
    box-shadow: 0 0 0 1px #fff;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 7px #fff;
    opacity: 1;
  }
  75% {
    box-shadow: 0 0 0 4px #fff;
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 5px #fff;
    opacity: 1;
  }
}
@keyframes bounceOut {
  0% {
    box-shadow: 0 0 0 6px #fff;
    opacity: 1;
  }
  25% {
    box-shadow: 0 0 0 2px #fff;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 9px #fff;
    opacity: 1;
  }
  75% {
    box-shadow: 0 0 0 3px #fff;
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 5px #fff;
    opacity: 1;
  }
}


.CardPublicidade {
  width: 75%;
  padding: 40px 30px 30px;
  background: #fff;
  text-align: center;
  border-radius: 4px;
  transition: all 200ms ease;
  margin:50px auto;
}



.CardPagamento{
  width: 90%;
  padding-bottom: 15px;
  background-color: #fff;
  border: 5px solid rgba(255, 255, 255, 0.7);
  text-align: center;
  border-radius: 4px;
  transition: all 200ms ease;
  margin:0 auto 50px auto;
}
.CardPagamento h1{
    background-color:orange;
}
.CardPagamento botaoPg{
  display:inline-block;
  width: 75%;
  padding: 15px;
  background-color: green;
  color:#fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  text-align: center;
  border-radius: 6px;
  transition: all 200ms ease;
  margin:0 auto;
  font-weight:bold;
}

.checkServicos{
    text-align:left;
}


@-webkit-keyframes bounceOut {
  0% {
    box-shadow: 0 0 0 4px #fff;
    opacity: 1;
  }
  25% {
    box-shadow: 0 0 0 1px #fff;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 7px #fff;
    opacity: 1;
  }
  75% {
    box-shadow: 0 0 0 4px #fff;
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 5px #fff;
    opacity: 1;
  }
}
@keyframes bounceOut {
  0% {
    box-shadow: 0 0 0 6px #fff;
    opacity: 1;
  }
  25% {
    box-shadow: 0 0 0 2px #fff;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 9px #fff;
    opacity: 1;
  }
  75% {
    box-shadow: 0 0 0 3px #fff;
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 5px #fff;
    opacity: 1;
  }
}

FIDELIDADE
.CardFidelidade {
  width: 75%;
  padding: 40px 30px 30px;
  background: #fff;
  border: 5px solid rgba(255, 255, 255, 0.7);
  text-align: center;
  border-radius: 4px;
  transition: all 200ms ease;
  margin:100px auto;
}

.CardFidelidade:hover {
  box-shadow: 0px 30px 60px -5px rgba(55, 55, 71, 0.3);
  transform: translate3d(0, -5px, 0);
}

.CardFidelidade BgImg {
  display: block;
  margin-bottom: 10px;
  
}
.CardFidelidade BgImg a {
  width: 150px;
  height: 150px;
  display: block;
  margin: -120px auto 0;
  
}
.CardFidelidade BgImg a img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}


@-webkit-keyframes bounceOut {
  0% {
    box-shadow: 0 0 0 4px #fff;
    opacity: 1;
  }
  25% {
    box-shadow: 0 0 0 1px #fff;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 7px #fff;
    opacity: 1;
  }
  75% {
    box-shadow: 0 0 0 4px #fff;
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 5px #fff;
    opacity: 1;
  }
}
@keyframes bounceOut {
  0% {
    box-shadow: 0 0 0 6px #fff;
    opacity: 1;
  }
  25% {
    box-shadow: 0 0 0 2px #fff;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 9px #fff;
    opacity: 1;
  }
  75% {
    box-shadow: 0 0 0 3px #fff;
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 5px #fff;
    opacity: 1;
  }
}

h5{
    font-size:13px;
    text-align:center;
    color:white;
    margin:0;
    padding:0;
}
card > p{
    display:block;
    font-size:18px;
    text-align:center;
    color:#fff;
    background-color:#203B7D;
    padding:5px;
    margin:5px;
    font-weight: bold;
   
}
card > img{
    margin-top:3px;
    height:60px;
    width:60px;
    max-width:50px;
    border-radius:10px;
    border:5px solid #203B7D;
    margin:5px;
    float:left;
}
.imgPerfil{
     margin-top:3px;
    height:60px;
    width:60px;
    max-width:50px;
    border-radius:10px;
    border:3px solid #203B7D;
    margin:5px;
    border-radius:5px;
}

card > h2{
    display:block;
    text-align:left;
    word-wrap: break-word;
    background-color:#000;
    height:60px;
    color:white;
}


card > label{
    display:inline-block;
   font-size:15px;
    color:#555;
    padding:0;
    margin:0;
}


.bt span{
    font-size:18px;
}


span{
    display:block;
    
}

.clientes desenho{
    display:block;
    margin:50px auto 0 auto;
    padding:0;
    color:#fff;
    font-size:40px;
}

.clientes hr{
    color:#fff;
    width:100px;
}

.check{
    display:inline-block;
    text-align:left;
    margin:0;
    padding:0;
    width:25px;
    height:25px;
    border-radius:2px;
}
.prof{
    color:black;
    display:inline-block; 
    text-align:left;
    padding:12px;
}

.botao-proximo-ativado{
        color: #fff;
        font-size: 20px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height:50px;
        line-height:50px;
        padding: 5px 5px;
        text-align: center!important;
        background-image: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.4), rgba(255,255,255,0), rgba(255,255,255,.4));
        /*background: linear-gradient(to bottom,#e52d27 ,#b31217);
        z-index: 999;
        cursor: pointer;
}
.botao-proximo-ativado p5{
    color:white;
}
.botao-proximo-desativado{
        
        color: #fff;
        font-size: 20px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height:50px;
        line-height:50px;
        padding: 5px 5px;
        text-align: center!important;
        background: linear-gradient(to bottom,#a39a99 ,#443f3f);
        z-index: 999;
}
.botao-proximo-desativado p{
    color:black;
}   
.fidelidade buscar{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:90%;
    border:2px solid orange;
    border-radius:10px;
    margin:8px auto;
}
.fidelidade zerar{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:90%;
    border:2px solid red;
    border-radius:10px;
    margin:8px auto;
}
.fidelidade pontuar{
    display:inline-block;
    background-color:black;
    color:#F9DF16;
   font-size:10px;
    padding:5px;
    width:80%;
    border:1px solid yellow;
    border-radius:10px;
    margin:8px auto;
}


.fidelidade cardfidelidade{
    display:inline-block;
    word-wrap: break-word;
    width:100%;
    height:100%;
    text-align:100%;
}
.fidelidade hr{
    color:#fff;
    width:100px;
}


.fidelidade obj{
    
    position: fixed;
    width: 90%;
    max-width:500px;
    top: 5px;
    left:50%;
    transform: translate(-50% , 0);
    text-align:center;
    border-radius:7px;
    border: solid 1px white;
    color:white;
    background-color: rgba(0,0,0,.7);
    height:80px;
    font-size:18px;
    font-weight: bold;
 
}

.cartao{
   
    background-color:#ececec;
    width: 90%;
    margin: 100px auto;
    color: black;
    font-size: 20px;
    padding:10px;
    border-radius:8px;
    overflow:auto;
    
}
.star{
    margin:5px;
    cursor:pointer;
}
.star-yes{
    color:#f9df16;
    cursor:pointer;
}
FIDELIDADE

**PRODUTOS*******

.produtos{
    margin:0 auto;
    text-align:center;
    max-width:500px;
    background-color: #fff;
    height:100%;
    overflow:auto;
}
.spaceTopProdutos{
    display:block;
    height:60px;
    
}

.headerProdutos{
    position: fixed;
    max-width: 900px;
    width: 100%;
    color: white;
    top: 0;
    z-index:10;
    background-image: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.4) 49%, rgba(255,255,255,0) 50%, rgba(255,255,255,.4));
        cursor: pointer;
}
.headerProdutos > div{
    background-color:white;
    -webkit-box-shadow: 3px 10px 5px -5px rgba(0,0,0,0.69);
    -moz-box-shadow: 3px 10px 5px -5px rgba(0,0,0,0.69);
    box-shadow: 3px 10px 5px -5px rgba(0,0,0,0.69);
    color:black;
    font-weight: bold;
    padding-top: 3px;
    
}
.imgCatategoriasProdutos{
   
    width:50px;
    height:50px;
    position:relative;
    background-size: cover;
    float:left;
    transform: translate(10% , 0%);
    border-radius:8px;
    margin-right:5px;
   
}
.CardsCatategoriasProdutos{
    word-wrap: break-word;
    overflow:hidden;
    width: 100%;
    background-color:white;
    margin: 0px auto;
    text-align:left;
    border-bottom: 1px solid #ccc;
    padding: 10px 6px;
    cursor: pointer;
    border-radius: 1px; 
}
.CardsCatategoriasProdutos-clicado{
   transition: .2s;
    max-width: 700px;
    width: 100%;
    color:#fff;
    text-align: left;
    border-bottom: 1px solid #000;
    border-top: 1px solid #fff;
    padding: 20px 6px 20px 20px;
    cursor: pointer;
    border-radius: 1px; 
    -webkit-box-shadow: 3px 10px 5px -5px rgba(0,0,0,0.69);
    -moz-box-shadow: 3px 10px 5px -5px rgba(0,0,0,0.69);
    box-shadow: 3px 10px 5px -5px rgba(0,0,0,0.69);
    margin:0px auto;
    margin-bottom:5px;
   background-image: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.4), rgba(255,255,255,0), rgba(255,255,255,.4));
}
 categoriaProdutos{
    display:block;
    font-size: 32px;
    font-weight:500;
    color: black;
}
.CardsCatategoriasProdutos  categoria{
    color: white;
}
infoCatProdutos{
    font-size: 13px;
    color: black;
    padding:0;
    margin:0;
}
.CardsCatategoriasProdutos  infoCat{
    color: white;
}
cardsProdutos2{
    width:auto;
    cursor: pointer;
}
cardsProdutos2 img{
    max-height:150px;
    margin:0;
    padding:0;
    margin-top:40px;
    
} 
produto{
    display:block;
    font-size: 19px;
    font-weight: bold;
    color: black;
    text-align:center;
    padding:0;
    margin:0;
}
info{
    font-size: 14px;
    display:block;
    padding:0;
    margin:0;
}
.desconto{
    display:inline-block;
    background-color:#FF6464;
    font-size:16px;
    color:white;
    border-radius:10%;
    width:auto;
    padding:0 5px;
    font-weight: bold;
}
.red{
    color:black;
    font-weight: bold;
}
strike{
    color:gray;
}
.preco{
    
}
a{
    text-decoration:none;
    color:transparent;
}

*PRODUTOS**********


LOGIN****
.login{
    
    margin:0 auto;
    text-align:center;
    max-width:500px;
    background-color: rgba(0,0,0,.3);
   
    
}
h1{
    display:block;
    color:white;

}
.subcard{
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50% , -50%);
    background-color: rgba(225,225,225,.5);
    width:90%;
    margin:5px;
    border-radius:3px;
    padding:8px;
}

input{
    width:90%;
    margin-bottom:10px;
    padding:2px;
    text-align:center;
    background-color:white;
}
input[type="color"]{
    
    width:50px;
    height:50px;
    border-radius:50%;
    
}

.login p1{
    font-size:18px;
    color:white;
}
.login p2{

    margin:0;
    padding:0; 
    font-size:18px;
    font-weight: bold;
    margin-bottom:5px;
    color:white;
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
}
hr{
    width:40%;
    display:inline-block;
}
.login span{
    display:block;
    font-weight: bold;
}
.login p{
    background-color: rgba(0,0,0,.5);
    margin:0;
    padding:0; 
    font-size:18px;
    font-weight: bold;
    margin-bottom:5px;
    color:white;
}
.login img{
    margin:5px auto;
    padding:0;
    width:130px;
    
}
.cards{
    width: 95%;
    margin: 10px auto;
    color: white;
    font-size: 20px;    
    cursor:pointer;
    border-radius:3px;
    
    
}
LOGIN****

.custom-file{
    background-color: #fff;
    width: 200px;
    height: 30px;
    border: 1px solid #CCC;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}
.custom-file > span{
    font-family: Tahoma, Arial;
    font-size: 15px;
    display: block;
    padding: 5px 0 0 5px;
}
.custom-file input[type="file"]{
    cursor:pointer;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.custom-file:after{
    content: 'clique aqui para nova imagem';
    width: 90%;
    height: 30px;
    border-radius:5px;
    padding:2px;
    margin:5px auto;
    color: #fff;
    background-color: #f00;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    font-family: Tahmoa, Arial;
    margin-bottom:5px;
}



.galeria{
    margin:0 auto;
    text-align:center;
    max-width:500px;

    height:100%;
    overflow:auto;
}
.galeria cardpastas{
    display:block;
}
.galeria p {
    color:black;
    font-size:15px;
    font-weight: bold; 
    padding:0;
    margin:5px;
    color:white;
}
.galeria icon{
    display:inline-block;
    background-color:black;
    color:white;
    padding:10px;
    border-radius:8px;
}
.galeria pasta{
    cursor:pointer;
    display:inline-block;
    position:relative;
    float:center;
    margin:5px;
    padding:5px;
    word-wrap: break-word;
}
.galeria bg{
    cursor:pointer;
    display:inline-block;
    background-color:#fff;
    position:relative;
    float:center;
    color:white;
    margin:5px;
    width:120px;
    height:120px;
    border-radius:8px;
    padding:10px;
    box-sizing: border-box;
    word-wrap: break-word;
}
.galeria img{
    max-width:100px;
    max-height:100px;
}
.zoomImg{
    margin:0 auto;
    text-align:center;
    max-width:500px;
    background-color: rgba(0,0,0,.4);
    height:100%;
    overflow:auto;
}
.zoomImg img{
    width:100%;
    height:auto;
    position:relative;
    top:50%;
    transform: translate(0 , -50%);
}
*GALERIA
*NOVO AGENDAMENTO

.novoagendamento{
    margin-bottom:100px;
    margin:0 auto;
    text-align:center;
    max-width:500px;
    height:100%;
    overflow:auto;
    box-sizing: border-box;
}
.novoagendamento card{
    display:block;
    margin:10px;
    border-radius:4px;
    background-color:#fff;
}
.novoagendamento t{
    display:block;
    color:black;
    font-weight: bold;
}
.novoagendamento > .objetivo{
    display:block;
    background-color:#fff;
    font-weight: bold;
}
.objetivo span{
    display:inline;
    color:black;
    font-weight: bold;
}
.label-bol {
    background: #b31217;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin-right: 5px;
    border-radius: 80%;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.3);
    box-sizing: border-box;
    border: 10px solid #fff;
    transition: border .3s ease;
    transition: .3s;
}
.label-bol-clicado {
    
    background: #b31217;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 80%;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.3);
    box-sizing: border-box;
    border: 10px solid #fff;
    transition: border .3s ease;
    transition: .3s;
    border-color: #fff;
    border-width: 3px;
    margin: 0 10 0 0;
}
.cardsNaoClicado{
    box-sizing: border-box;
    word-wrap: break-word;
    overflow:hidden;
    width: 90%;
    background-color:white;
    margin: 0px auto;
    text-align:left;
    border-bottom: 1px solid #ccc;
    padding: 20px 6px;
    cursor: pointer;
    border-radius: 1px; 
    max-width: 490px;
}
.cardsClicado{
    transition: .2s;
    max-width: 490px;
    box-sizing: border-box;
    width: 90%;
    color:#fff;
    text-align: left;
    cursor: pointer;
    margin:0px auto;
    border-radius: 1px; 
    border-top: 1px solid #fff;
    -webkit-box-shadow: 3px 10px 5px -5px rgba(0,0,0,0.69);
    -moz-box-shadow: 3px 10px 5px -5px rgba(0,0,0,0.69);
    box-shadow: 3px 10px 5px -5px rgba(0,0,0,0.69);
    border-bottom: 1px solid #000;
    margin-bottom:5px;
    background-image: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.4), rgba(255,255,255,0), rgba(255,255,255,.4));
    padding: 20px 6px;
   
}
.botao-proximo-ativado{
        color: #fff;
        font-size: 20px;
        position: fixed;
        bottom: 0;
        left: auto;
        width: 98%;
        height:50px;
        line-height:50px;
        padding: 5px 5px;
        text-align: center!important;
        background-image: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.4), rgba(255,255,255,0), rgba(255,255,255,.4));
        /*background: linear-gradient(to bottom,#e52d27 ,#b31217);
        z-index: 3;
        cursor: pointer;
        max-width: 500px;
}
.botao-proximo-ativado p5{
    color:white;
}
.botao-proximo-desativado{
        max-width: 500px;
        color: #fff;
        font-size: 20px;
        position: fixed;
        bottom: 0;
        left: auto;
        width: 98%;
        height:50px;
        line-height:50px;
        padding: 5px 5px;
        text-align: center!important;
        background: linear-gradient(to bottom,#a39a99 ,#443f3f);
        z-index: 3;
}
.botao-proximo-desativado p5{
    color:black;
    
}
CardTitulo{
    font-size: 19px;
    font-weight: bold;
    color: black;
}
.cardsClicado  CardTitulo{
    font-size: 19px;
    font-weight: bold;
    color: white;
}
CardSubtitulo{
    margin-left:35px;
    padding-right:40px;
    display:block;
    font-size: 16px;
    color: black;
}
.cardsClicado CardSubtitulo{
    margin-left:35px;
    display:block;
    font-size: 16px;
    color: white;
}
CardSubtitulo2{
    margin-left:100px;
    display:block;
    font-size: 13px;
    color: red;
}
.cardsClicado CardSubtitulo2{
    margin-left:35px;
    display:block;
    font-size: 13px;
    color: white;
}
.cardsClicado  h1{
    color: white;
}


calend{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
.calendar
{
    background-color: white;
    padding: 20px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
    box-sizing: border-box;
}

.calendar .dropdown
{
    display: none;
    position: absolute;
    background-color: #009688;
    color: #fff;
    text-align: center;
    font-size: 14pt;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius:5px;
    width: 160px;
    z-index: 2000;
    margin:10px;
    box-sizing: border-box;
}

.calendar .dropdown .dropdown-item
{
    cursor:pointer;
    opacity: .7;
    transition: .5s opacity;
    box-sizing: border-box;
}

.calendar .dropdown .dropdown-item:hover
{
    opacity: 1;
    box-sizing: border-box;
}

.calendar .years
{
    display:none;
    box-sizing: border-box;
}

.calendar .title
{
    text-align:center;
    font-size:20pt;
    box-sizing: border-box;
}

.calendar .calendar-btn
{
    float: left;
    background-color: #009688;
    color: white;
    border-radius:5px;
    text-align: center;
    font-size: 14pt;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    width: 20%;
    cursor: pointer;
    transition: .5s background-color;
    margin:5px;
    box-sizing: border-box;
}

.calendar .calendar-btn:hover{
 
}

.calendar .year-btn
{
    float:center;
    box-sizing: border-box;
}

.calendar .calendar-dates .days .day 
{
    float:left;
    width: 12%;
    margin: 1%;
    padding: 1%;
    font-size:13pt;
    text-align:center;
    border-radius: 10px;
    border: solid 1px #ddd;
    box-sizing: border-box;
}

.calendar .calendar-dates .days .day.blank
{
    background-color: white;
    border:none;
    box-sizing: border-box;
}

.calendar .calendar-dates .days .day.selected/*dias do calendario selecionados
{
   
    color: black;
    cursor:pointer;
    
    box-sizing: border-box;
    
}

.calendar .calendar-dates .days .day.selected:hover
{
    opacity: 1;
    background-color:#009688;
    color:#fff;
    box-sizing: border-box;
    
}

.calendar .calendar-dates .days .day.label
{
    height: 40px;
    background-color: white;
    color: black;
    border:none;
    font-weight:bold;
    box-sizing: border-box;
}

.clear{
    clear:both;
}

@media only screen and (max-width: 960px) {
    .calendar{
        width: 100%;
        margin: 0px;
        margin: 0px;
        box-sizing: border-box;
        position: relative;
        left: 0px;
    }
}

/************NOVO AGENDAMENTO

*AGENDA

.agenda{
    margin:0 auto;
    text-align:center;
    max-width:500px;
    background-color: rgba(0,0,0,.4);
    height:100%;
    overflow:auto;
}
.agenda agenda{
    display:block;
    border:2px #000 solid;
    border-radius:7px;
    margin:5px;
    background-color:white;
}
.agenda data {
    display:block;
    border-radius: 7px 7px 0 0;
    width:100%;
    height:40px;
    line-height:40px;
    color:#fff;
    font-size:15px;
    font-weight: bold; 
    background-color:#000;
    margin:0 auto;
}

.agenda h4{
    color:white;
    background-color:purple;
    padding:5px;
    margin:0 5px;
    border-radius:5px;
}
.agenda desenho{
    display:block;
    margin: 0 auto;
    padding:0;
    color:#fff;
    font-size:40px;
}
.agenda cardagenda{
    display:inline-block;
    word-wrap: break-word;
    width:100%;
    height:100%;
    text-align:100%;
    padding:50px 0;
}
.agenda hr{
    color:#fff;
    width:100px;
}

.agenda p {
    display:block;
    text-align:left;
    font-size:18px;
    padding:3px 0;
    margin:5px;
}
btModal{
    
    display:inline-block;
    background-color:black;
    color:#fff;
    width:80%;
    border:2px solid #fff;
    border-radius:10px;
    margin:8px auto;
    cursor:pointer;
    text-align:center;
    font-weight: bold; 
    padding:8px;
   
}
btModal > p{
    display:block;
    text-align:center;
    font-weight: 500; 
    color:#fff;
    margin:0;
    padding:0;
    
    
}
.agenda bt{
    display:block;
    text-align:center;
    font-weight: bold; 
    color:#fff;
    font-size:18px;
    padding:8px;
    margin:10px 5px;
}
.bgverde{
    background-color:#0f6d14;
}
.bgazul{
    background-color:#27246e;
}
.bgvermelho{
    background-color:#d0063a;
}
.bgroxo{
    background-color:#850196;
}
.botaoAgenda-proximo-ativado{
        color: #fff;
        font-size: 20px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height:50px;
        line-height:50px;
        padding: 5px 5px;
        text-align: center!important;
        background-image: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.4), rgba(255,255,255,0), rgba(255,255,255,.4));
        z-index: 999;
        cursor: pointer;
}
.botaoAgenda-proximo-ativado p5{
    color:white;
}
.botaoAgenda-proximo-desativado{
        
        font-size: 20px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height:50px;
        line-height:50px;
        padding: 5px 5px;
        text-align: center!important;
        background-image: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.4), rgba(255,255,255,0), rgba(255,255,255,.4));
      
        
        z-index: 999;
}
.botaoAgenda-proximo-desativado p5{
    color:black;
}

.agenda spaaceTop{
    display:block;
    height:50px;
}
.divCalendar{
    height:17px;
    position:absolute;
    top:22px;
    width:100%;
    z-index:9;
}
.filtroCalendar{
    position:absolute;
    left:10%;
    top:20px;
    z-index:10;
    cursor:pointer;
    color:#fff;
}

.filtroCalendar2{
    position:absolute;
    left:10%;
    top:70px;
    z-index:10;
    cursor:pointer;
    color:#fff;
}
.filtroCalendarlabel{
    position:absolute;
    left:18%;
    top:30px;
    z-index:10;
    cursor:pointer;
    color:#fff;
}
.filtroCalendarlabel2{
    position:absolute;
    left:18%;
    top:80px;
    z-index:10;
    cursor:pointer;
    color:#fff;
}


.filtroVagos{
    position:absolute;
    left:60%;
    top:45px;
    z-index:10;
    cursor:pointer;
    color:#fff;
}

.filtroVagosLabel{
    position:absolute;
    left:68%;
    top:55px;
    z-index:10;
    cursor:pointer;
    color:#fff;
}


.info{
   
    display:inline-block;
    color:#fff;
    padding:2px;
    font-size:25px;
}
.verificar{
    display:inline-block;
    background-color:green;
    color:#fff;
    border-radius:5px;
    padding:5px;
    
}



.agenda__month {
  position: relative;
  padding-bottom: 65px;
}

.agenda__month:before {
  content: '';
  display: block;
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 71px;
  background: #fff;
  z-index: 0;
}

.agenda__month__title {
  position: relative;
  width: 120px;
  height: 120px;
  padding: 5px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
  background: #fff;
  border-radius: 50%;
  font-weight: bold;
  text-transform: uppercase;
}
.agenda__item__date {
  position: relative;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 29px;
  display: block;
  line-height: 64px;
  background: #009688;
  color: #fff;
  font-size: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
 
}
.agenda dia{
    font-size:8px;
}
.agenda status{
    display:block;
    text-align:center;
    background-color:black;
    color:#fff;
    text-transform: uppercase;
    font-weight: bold;
}
.agenda titulo{
    display:inline-block;
    font-weight: bold;
    text-transform: uppercase;
    padding:0;
    margin:10px;
    
}
.agenda p1{
    display:block;
    color:#555;
    padding:0;
    margin:0;
    padding-left:10px;
}
.agenda btEditar{
    display:block;
    background-color:orange;
    text-align:center;
    color:#555;
    padding:5px;
    margin:5px;
    border-radius:3px;
    
}
escolher{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:15px;
    padding:5px;
    width:80%;
    border:1px solid #555;
    border-radius:10px;
    margin:8px auto;
    cursor:pointer;
    
}
.agenda btCancelar{
    display:block;
    background-color:#a2291c;
    text-align:center;
    color:#fff;
    padding:5px;
    margin:5px;
    border-radius:3px;
}
.agenda btReagendar{
    display:block;
    background-color:#eb640a;
    text-align:center;
    color:#fff;
    padding:5px;
    margin:5px;
    border-radius:3px;
    cursor:pointer;
}
.agenda btDesbloquear{
    display:block;
    background-color:#fff;
    text-align:center;
    color:#a2291c;
    padding:5px;
    margin:5px;
    border-radius:3px;
}


.agenda__month__title time {
  display: inline-block;
  line-height: 1.2;
  font-size: 1.6rem;
  
}
.agenda__list {
  list-style: none;
  margin: 0;
  padding:0 15px ;
  position: relative;

}
.agenda__list li + li {
  margin-top: 4rem;
  /*background-color:pink;/******
}
.agenda__item__detail:before {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  position: absolute;
  transform: rotate(45deg);
  top: calc(1% - 0.6rem);

}

.agenda__item__detail .horaires {
 
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background: #009688;
  width:auto;
  padding:5px;

 
}
.agenda__item__detail .desc {
  padding:0;
  text-align: left;
  width:100%;
  /*background-color:blue;/****
 }
 .agenda__item__detail {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  background: #fff;
  width:100%;

}

AGENDA*

.links{
    margin:0 auto;
    text-align:center;
    max-width:500px;
    height:100%;
    overflow:auto;
    padding:10px 0;
}
.iconLink{
    margin-left:15px;
    float:left;
}
.links span{
    display:inline-block;
    float:left;
    font-size:19px;
    margin:15px;
    font-weight: bold; 
    color:black;
}
.links p{
    display:inline-block;
    float:center;
    font-size:15px;
    font-weight: italic; 
    color:red;
}
.links cm{
    font-weight: normal;
    color:#555;
    font-size:13px;
}

cardsLinks{
    overflow:auto;
    margin:0 auto;
    display:block;
    height:auto;
    background-color:white;
    border-radius:8px;
    text-align:center;
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50% , -50%);
    z-index:1;
    color:black;
    width:90%;
    
}


.links hr{
    width:80%;
    margin-left:10%;
}


.horarios{
    margin:0 auto;
    text-align:center;
    max-width:500px;
    background-color: rgba(0,0,0,.4);
    height:100%;
    overflow:auto;
    padding:5px;
}
.horarios horario{
    text-align:left;
    display:inline-block;
    background-color:white;
    border-radius:7px;
    color:black;
    margin:10px auto;
    min-height:200px;
    width:90%;
    
}
.horarios img{
    margin-top:3px;
    height:60px;
    width:60px;
    max-width:50px;
    border-radius:15px;
    border:5px solid black;
    margin:5px;
    float:left;
}
.horarios h2{
    display:block;
    text-align:center;
    word-wrap: break-word;
    background-color:black;
    color:white;
    
}
.horarios p{
    display:inline-block;
   font-size:18px;
    color:black;
    padding:0;
    margin:0;
    width:100% ;
    padding-top:10px;
   
}
.horarios label{
    display:inline-block;
   font-size:15px;
    color:#555;
    padding:0;
    margin:0;
    
   
}
.horarios novo{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:90%;
    border:2px solid green;
    border-radius:10px;
    margin:8px auto;
    text-align:center;
}
.horarios deletar{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:33%;
    border:1px solid red;
    border-radius:10px;
    margin:8px auto;
}
.horarios editar{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:33%;
    border:1px solid yellow;
    border-radius:10px;
    margin:8px auto;
    text-align:center;
}
.horarios situacao{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:33%;
    border:1px solid blue;
    border-radius:10px;
    margin:8px auto;
    text-align:center;
}
.horarios span{
    display:block;
    
}

.iconProf{
    display:block;
    text-align:left;
    margin:5px;
    
    
   
}



.horarios desenho{
    display:block;
    margin:50px auto 0 auto;
    padding:0;
    color:#fff;
    font-size:40px;
}
.horarios cardprrofissionais{
    display:inline-block;
    word-wrap: break-word;
    width:100%;
    height:100%;
    text-align:100%;
}
.horarios hr{
    color:#fff;
    width:100px;
}

.check{
    display:inline-block;
    text-align:left;
    margin:0;
    padding:0;
    width:25px;
    height:25px;
    border-radius:2px;
}
.prof{
    color:black;
    display:inline-block; 
    text-align:left;
    padding:12px;
}


.fluxodecaixa{
    margin:0 auto;
    text-align:center;
    max-width:500px;
    background-color: rgba(0,0,0,.4);
    height:100%;
    overflow:auto;
}
.fluxodecaixa cards{
    display:inline-block;
    word-wrap: break-word;
    width:100%;
    height:100%;
    text-align:100%;
}
.fluxodecaixa receita{
    display:block;
    background-color:#fff;
    border-radius:7px;
    color:black;
    margin:15px auto;
    width:90%;
    
    
}
.fluxodecaixa despesa{
    display:block;
    background-color:#fff;
    border-radius:7px;
    color:black;
    margin:15px auto;
    width:90%;
   
    
}
.fluxodecaixa receita p{
    background-color:green;
    text-align:center;
    border-radius:7px 7px 0 0;
    font-weight: bold;
    padding:3px;
    font-size:18px;
    color:#fff;
}
.fluxodecaixa receita p1{
    display:block;
    text-align:left;
    font-weight: italic;
    font-size:15px;
    color:#000;
}
.fluxodecaixa despesa p{
    background-color:#d32321;
    text-align:center;
    border-radius:7px 7px 0 0;
    font-weight: bold;
    padding:3px;
    font-size:18px;
    color:#fff;
}
.fluxodecaixa despesa p1{
    display:block;
    text-align:left;
    font-weight: italic;
    font-size:15px;
    color:#000;
}
.fluxodecaixa span{
    
    
    font-weight: bold;
    font-size:20px;
    color:#000;
}
.headerFluxodeCaixa{
   
    text-align:center;
    position: fixed;
    background-color:#000;
    max-width:400px;
    width:98%;
    left:50%;
    transform: translate(-50% , 0);
    border-radius:1px;
    color: #fff;
    top: 0;
     z-index:10;

}

.calendarioFluxodeCaixa{
    
}
.dataFluxodeCaixa{
    
    font-size:13px;
}
TotalFluxoCaixa{
    background-color:#000;
    color:#fff;
    display:block;
    position:fixed;
    bottom:0;
    width:100%;
}


.estatisticas{
    margin:0 auto;
    text-align:center;
    max-width:500px;
    background-color: rgba(0,0,0,.4);
    height:100%;
    overflow:auto;
}
.estatisticas estatisticas2{
    display:block;
    background-color:#4064ac;
    border-radius:7px;
    color:white;
    margin:15px auto;
    min-height:200px;
    width:90%;
     padding:3px;
    
}

.estatisticas estatisticas1{
    display:block;
    background-color:#8627BD;
    border-radius:7px;
    color:white;
    margin:15px auto;
    min-height:200px;
    width:90%;
     padding:3px;
    
}
.estatisticas estatisticas{
    display:block;
    background-color:#207C21;
    border-radius:7px;
    color:#fff;
    margin:15px auto;
    min-height:200px;
    width:90%;
    padding:3px;
    
}
.estatisticas img{
    margin-top:3px;
    height:60px;
    width:60px;
    max-width:50px;
    border-radius:15px;
    border:5px solid black;
    margin:5px;
    float:left;
}
.estatisticas h2{
    display:block;
    text-align:left;
    word-wrap: break-word;
    background-color:gray;
    height:60px;
    border-radius:7px 7px 0 0;
    color:white;
    
}
.estatisticas div{
    display:block;
    margin:20px 0;
    
   
}
.estatisticas p{
    display:inline-block;
   font-size:12px;
   
    padding:0;
    margin:0;
    width:100% ;
    
    font-weight: normal;
   
}
.estatisticas numero{
    display:inline-block;
   font-size:30px;

    padding:0;
    margin:0;
    padding:0 5px;
   font-weight: bold;
}
.estatisticas label{
    display:inline-block;
   font-size:15px;
    color:#555;
    padding:0;
    margin:0;
    
   
}
.estatisticas novo{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:90%;
    border:2px solid green;
    border-radius:10px;
    margin:8px auto;
}
.estatisticas deletar{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:33%;
    border:1px solid red;
    border-radius:10px;
    margin:8px auto;
}

.estatisticas buscar{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:90%;
    border:2px solid orange;
    border-radius:10px;
    margin:8px auto;
}
.estatisticas situacao{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:33%;
    border:1px solid blue;
    border-radius:10px;
    margin:8px auto;
}
.estatisticas span{
    display:block;
    
}

.iconProf{
    display:block;
    text-align:left;
    margin:5px;
    
    
   
}



.estatisticas desenho{
    display:block;
    margin:50px auto 0 auto;
    padding:0;
    color:#fff;
    font-size:40px;
}
.estatisticas cardestatisticas{
    display:inline-block;
    word-wrap: break-word;
    width:100%;
    height:100%;
    text-align:100%;
}
.estatisticas hr{
    color:#fff;
    width:90%;
}

.check{
    display:inline-block;
    text-align:left;
    margin:0;
    padding:0;
    width:25px;
    height:25px;
    border-radius:2px;
}
.prof{
    color:black;
    display:inline-block; 
    text-align:left;
    padding:12px;
}

.profissionais{
    margin:0 auto;
    text-align:center;
    max-width:500px;
    background-color: rgba(0,0,0,.4);
    height:100%;
    overflow:auto;
}
.profissionais profissional{
    display:block;
    background-color:white;
    border-radius:7px;
    color:black;
    margin:15px auto;
    min-height:200px;
    width:90%;
    
}
.profissionais img{
    margin-top:3px;
    height:60px;
    width:60px;
    max-width:50px;
    border-radius:15px;
    border:5px solid black;
    margin:5px;
    float:left;
}
.profissionais h2{
    display:block;
    text-align:left;
    word-wrap: break-word;
    background-color:gray;
    height:60px;
    border-radius:7px 7px 0 0;
    color:white;
    
}
.profissionais p{
    display:inline-block;
   font-size:18px;
    color:black;
    padding:0;
    margin:0;
    width:100% ;
    padding-top:10px;
   
}
.profissionais label{
    display:inline-block;
   font-size:15px;
    color:#555;
    padding:0;
    margin:0;
    
   
}
.profissionais novo{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:90%;
    border:2px solid green;
    border-radius:10px;
    margin:8px auto;
}
.profissionais deletar{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:25%;
    border:1px solid red;
    border-radius:10px;
    margin:8px auto;
}
.profissionais editar{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:25%;
    border:1px solid yellow;
    border-radius:10px;
    margin:8px auto;
}
.profissionais situacao{
    display:inline-block;
    background-color:black;
    color:#fff;
   font-size:10px;
    padding:5px;
    width:25%;
    border:1px solid blue;
    border-radius:10px;
    margin:8px auto;
}
.profissionais span{
    display:block;
    
}

.iconProf{
    display:block;
    text-align:left;
    margin:5px;
    
    
   
}



.profissionais desenho{
    display:block;
    margin:50px auto 0 auto;
    padding:0;
    color:#fff;
    font-size:40px;
}
.profissionais cardprrofissionais{
    display:inline-block;
    word-wrap: break-word;
    width:100%;
    height:100%;
    text-align:100%;
}
.profissionais hr{
    color:#fff;
    width:100px;
}

.check{
    display:inline-block;
    text-align:left;
    margin:0;
    padding:0;
    width:25px;
    height:25px;
    border-radius:2px;
}
.prof{
    color:black;
    display:inline-block; 
    text-align:left;
    padding:12px;
}





.rodape{
    overflow-x: auto;
    position: fixed;
    max-width:500px;
    width: 100%;
    height: auto;
    color: white;
    bottom: 0;

   background-image: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.4) 49%, rgba(255,255,255,0) 50%, rgba(255,255,255,.4));
    text-align:center;
    padding:8px 0;
    
    
}
.rodape div{
    font-size:13px;
    color:white;
    display:inline-block;
    padding:0 12px;
    width:auto;
}
.rodape span{
    display:block;
    padding-top:5px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 5px;
}
.icon{
    margin:0;
    padding:0;
}
.margem{
    display:block;
    height:150px;
   
}



