/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
 
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

@font-face {
    font-family: 'primary-font';
    src: url("../fonts/blood-and-blade.regular.ttf"); 
}

html, body {
    width: 100vw;
    height: 100vh;
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background:#E4E4E4;
    background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #A7A7A7),
        color-stop(0.51, #E4E4E4)
    );
    background-attachment:scroll;
    font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size:12px;
    height:100%;
    margin:0px;
    /*padding:0px;*/
    text-transform:uppercase;
    width:100%;
    /*padding-top: constant(safe-area-inset-top); /* Iphone X iOS 11.0 */
    /*padding-top: env(safe-area-inset-top); /* Iphone X iOS 11.2 */
}

/* Portrait layout (default) */
.app {
    background:url(../img/logo.png) no-repeat center top; /* 170px x 200px */
    position:absolute;             /* position in the center of the screen */
    left:50%;
    top:50%;
    height:50px;                   /* text area height */
    width:225px;                   /* text area width */
    text-align:center;
    padding:180px 0px 0px 0px;     /* image height is 200px (bottom 20px are overlapped with text) */
    margin:-115px 0px 0px -112px;  /* offset vertical: half of image height and text area height */
                                   /* offset horizontal: half of text area width */
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
        padding:75px 0px 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin:-90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
}

h1 {
    font-size:24px;
    font-weight:normal;
    margin:0px;
    overflow:visible;
    padding:0px;
    text-align:center;
}

.modal {
    margin-top: 60px;
    bottom: initial !important
}
.modal input, .modal select, .modal textarea {
    border-bottom: 1px solid black !important; 
    color: #000000 !important;
}

.event {
    border-radius:4px;
    -webkit-border-radius:4px;
    color:#FFFFFF;
    font-size:12px;
    margin:0px 30px;
    padding:2px 0px;
}

.event.listening {
    background-color:#333333;
    display:block;
}

.event.received {
    background-color:#4B946A;
    display:none;
}

.v-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
@-webkit-keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
.blink {
    animation:fade 3000ms infinite;
    -webkit-animation:fade 3000ms infinite;
}
.homeApp{
    background:url(../img/fundos/interno.jpg);
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
}
.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.7) 17%,rgba(0,0,0,0.7) 35%,rgba(0,0,0,0.7) 62%,rgba(0,0,0,0.7) 100%);  
}
.logo {
    margin-top: 30%;
    width: 100%;
}
.logo img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid black;
    box-shadow: 0px 0px 10px 0px #cac0c1;
    /*box-shadow: 0px 0px 50px 0px grey;*/
}
.appBody {
    padding: 10% 10% 20% 10%;
    width: 100%;
    position: relative;
}
.homeTitle {
    padding-top: 10%;
    color: white;
}
.homeTitle h2 {
    /*font-family: 'primary-font';*/
    font-weight: bold;
    font-size: 2.0rem;
    margin-bottom: 5px;
    /*text-transform: capitalize;
    letter-spacing: 1px;*/
}
.homeTitle h5 {
    font-weight: bold;
    margin-bottom: 0px;
    width: 65%;
    text-align: center;
    margin-left: 16.8%;
}
.spanH5 {
    /*font-family: 'primary-font';*/
    font-weight: bold;
    background: #cac0c1;
    color: black;
    font-size: 1.2rem;
    margin-bottom: 0px;
    padding: 0px 3px 0px 3px;
    /*text-transform: initial;
    box-shadow: 0px 0px 8px 0px #cac0c1;
    letter-spacing: 1px;*/
}
.itemBody { 
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0px 0px 8px 0px #cac0c1;
    /*border: 2px solid white;
    border: 1px solid black;*/
    position: relative;
}
.itemBody  p { 
    margin-top: 10px;
    margin-bottom: 0px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}
.agendaNoivo { 
    background: url(../img/fundos/noivo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.agendaTattoo { 
    background: url(../img/fundos/tattoo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.obsNoivo {
    padding-top: 60px;
    transform: rotate(-3deg);
    font-size: 12px;
}
.obsNoivo .alfinete {
    float: right;
    margin: -15px;
}
.obsNoivo .overlay {
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to bottom, rgba(223, 121, 121, 0.8) 0%,rgba(186, 83, 83, 0.7) 17%,rgba(195, 65, 65, 0.7) 35%,rgba(143, 62, 62, 0.7) 62%,rgba(117, 66, 66, 0.7) 100%);*/
    background: linear-gradient(to bottom, rgba(210, 194, 35, 0.9) 0%,rgba(195, 186, 5, 0.9) 17%,rgba(245, 223, 15, 0.7) 35%,rgba(186, 179, 40, 0.9) 62%,rgba(199, 192, 45, 0.9) 100%);
    border-radius: 5px;
}
.bodyObsNoivo {
    padding: 10px;
    /*border: 2px solid #423535;*/
    /*box-shadow: 0px 0px 5px 2px #7d4848;*/
    border-radius: 5px;
}
.agenda { 
    background: url(../img/fundos/servicos4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
button:active, button:focus {
    border-color: white;
}
.footer {
    background: black;
    color: white;
    padding: 5px;
    margin: 0;
    width: 100%;
    bottom: 0;
    text-transform: none;
    font-size: 10px;
    position: fixed;
    z-index: 9999;
    /*margin-bottom: constant(safe-area-inset-bottom);  Iphone X iOS 11.0 */
    /*margin-bottom: env(safe-area-inset-bottom);  Iphone X iOS 11.2 */
}

/* LOGIN */
.homeLogin{
    background:url(../img/fundos/interno.jpg);
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
}
.bodyLogin {
    padding-top: 30%;
    padding-bottom: 20%;
    color: white;
    text-transform: initial;
    position: relative;
}
.overlayLogin {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.8) 17%,rgba(0,0,0,0.8) 35%,rgba(0,0,0,0.8) 62%,rgba(0,0,0,0.8) 100%);  
}
.titleLogin {
    padding-bottom: 5%;
}
.titleLogin p{
    text-transform: none;
}
.titleLogin h2{
    padding-top: 15px;
}
.formLogin {
    border: 1px solid white;
    border-radius: 15px;
    padding: 5%;
}
.formLogin a{
    color: #7f3616;
    font-size: 12px;
}
.cadastre-se {
    margin-top: 5%;
    padding-top: 5%;
    border-top: 0.5px solid white
}
/* FIM LOGIN */ 
/* AGENDAR */
.homeAgendar{
    background: url(../img/fundos/interno.jpg);
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
}
.bodyAgendar {
    padding-top: 30%;
    padding-bottom: 25%;
    color: white;
    text-transform: initial;
    position: relative;
}
.btnRemover{
    margin-left: -20px; 
    margin-top: 5px;
}
#diaSemana {
    position: absolute;
    right: 0;
    margin-top: -33px;
    margin-right: 30px;
    color: #7f3616;
    text-transform: uppercase;
    /*position: absolute;
    left: 0;
    margin-top: -33px;
    margin-left: 120px;
    color: #7f3616;
    text-transform: uppercase;*/
}
/* FIM AGENDAR*/
/* SERVICOS */
.homeServicos{
    background: url(../img/fundos/interno.jpg);
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
}
.bodyServicos {
    padding-top: 30%;
    padding-bottom: 20%;
    color: white;
    text-transform: initial;
    position: relative;
}
.titleServicos {
    padding-bottom: 15%;
}
.titleServicos h1, .titleSobre h1{
    margin-top: 15px;
    font-size: 2rem;
    text-transform: uppercase;
}
.titleServicos h4 {
    margin-top: 10px;
    text-transform: uppercase;
}
.itemServico { 
    width: 100%;
    height: auto;
    border: 2px solid white;
    border-radius: 15px;
    margin-bottom: 20px;
    color: white;
}
.itemServico p {
    font-weight: bold;
}
#itemServico p {
    margin: 0;
}
.valorServico {
    float: right;
    font-size: 12px;
    color: green;
    /*font-family: cursive;*/
    font-weight: bold;
    margin-top: 10px;
    display: none;
}
.tempoServico{
    /*float: left;*/
    font-size: 12px;
    /*font-family: cursive;
    font-weight: bold;*/
    margin-top: 10px;
}
.overlayServicos {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.7) 17%,rgba(0,0,0,0.7) 35%,rgba(0,0,0,0.7) 62%,rgba(0,0,0,0.7) 100%);  
    padding: 10px;
    border-radius: 15px;
}
.itemServico.bgServico {
    background: url(../img/fundos/barber-vintage3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgMasculino {
    background: url(../img/fundos/servicos1.1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgTintura {
    background: url(../img/fundos/tintura.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgAlisamento {
    background: url(../img/fundos/alisamento.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgRelaxamento {
    background: url(../img/fundos/relaxamento.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgBarba {
    background: url(../img/fundos/corteBarba.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgSobrancelha {
    background: url(../img/fundos/sobrancelha.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgDiaNoivo {
    background: url(../img/fundos/noivo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgProdutos {
    background: url(../img/fundos/produtosCabelo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgRoupas {
    background: url(../img/fundos/roupasAcessorios.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.itemServico.bgBebidas {
    background: url(../img/fundos/bebidas.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
/* FIM SERVICOS*/
/* PRODUTOS */ 
.itemProduto { 
    width: 100%;
    height: auto;
    border: 2px solid white;
    border-radius: 15px;
    margin-bottom: 20px;
    color: white;
}
.itemProduto .overlayProdutos {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    border-radius: 15px;
}
.itemProduto img {
    /*border-top-left-radius: 12px; */
    /* border-bottom-left-radius: 12px; */
    max-height: 100px;
    /* min-height: 70px; */
    padding: 5px;
    border-radius: 15px;
}
.itemProduto h6 {
    font-weight: bold;
    padding-top: 10px;
    margin-left: -20px;
    margin-right: 15px;
}
.itemProduto p{
    font-size: 12px;
    margin-bottom: 10px;
    margin-left: -20px;
    margin-right: 10px;
}
.valorProduto {
    float: right;
    font-size: 16px;
    color: green;
    font-weight: bold;
    /*position: absolute;*/
    right: 0;
    bottom: 0;
    margin-right: 10px;
    margin-bottom: 5px;
}
#itemProduto p {
    margin: 0;
}
/* FIM PRODUTOS */ 
/* LOCALIZAÇAO */
.homeLocalizacao {
    background: url(../img/fundos/local.jpeg);
    background-position: center;
    background-size: cover;
    display: block;
    width: 100%;
    height: 300px;
}
.bodyLocalizacao {
    padding-top: 100px;
    padding-bottom: 50px;
    color: white;
    text-transform: initial;
    height: 100%;
}
.bgBodyLocalizacao {
    background: black;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
}
.titleLocalizacao {
    padding-bottom: 3em;
}
.endereco {
    width: 100%;
    margin-top: 20px; 
}
.endereco h4 {
    color: #7f3616;
    font-weight: bold;
}
.endereco p {
    font-size: 14px;
    color: white;
    font-weight: bold;
}
.itemContato {
    margin: 10px;
}
.mapa {
    width: 100%;
    /*margin: 20px 0px 0px 0px;*/
    padding: 15px;
}
.mapa img {
    /*border: 4px solid white;*/
    border-radius: 8px;
}
.mapa button {
    width: 70%;
    margin-top: 10%;
    margin-bottom: 20%;
}

/* FIM LOCALIZACAO */
/* SOBRE */
.homeSobre{
    background:url(../img/fundos/interno.jpg);
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
}
.homeSobre .overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.8) 17%,rgba(0,0,0,0.8) 35%,rgba(0,0,0,0.8) 62%,rgba(0,0,0,0.8) 100%);  
}
.bodySobre {
    padding-top: 30%;
    color: white;
    text-transform: initial;
}
.titleSobre {
    padding-bottom: 15%;
}
.sobreDescricao {
    padding-bottom: 20px;
    color: white;
    text-transform: none;
}
.sobreDescricao h4 {
    color: #7f3616;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.navbar-nav {
    padding-top: 12px;
}
.nav-item {
    padding-left: 10px;
}
.nav-link img {
    width: 28px;
}
.nav-link .itemMenu {
    color:white;
    margin-left: 10px;
    font-size: 14px;
}
.nav-item.active span{
    color: #8b8b8b;
}
.nav-item.active img{
    filter: invert(0.5);
}
/* FIM SOBRE */
/* PAINEL ADMIN */
.bodyAdmin {
    top: 60px;
    padding-bottom: 20%;
    color: white;
    text-transform: initial;
    position: relative;
}
.viewAgenda {
    height: 100%;
    width: 100%;
    background: rgba(64, 64, 64, 0.72);
    color: white;
    font-size: 14px;
    margin: 20px 5px 20px 5px;
    padding: 5px;
    /* border: 1px solid gray; */
    border-radius: 12px;
    box-shadow: 0px 0px 15px 3px black;
}
.agendaTitle{
    text-align: center;
    /*font-family: cursive;*/
    border-bottom: 1px solid gray
}
.itemHorario {
    border-bottom: 1px solid gray; 
    width: 100%;
    padding: 2px;
    /*font-family: cursive;*/
}
.bodyAdminHeader {
    background: #0c0c0c; /*#131212*/
    padding: 15px 0px 10px 0px;
    box-shadow: 0px 0px 20px 0px #7f3616;
}
.btnServicosEditar, .btnProdutoEditar, .btnBonificacaoEditar, .btnBonificacaoSolicitadaEditar{
    float: right;
    background: #006907;
    height: 30px;
    border-radius: 5px;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 3px;
    margin-right: 3px;
}
.btnServicosExcluir, .btnProdutoExcluir, .btnBonificacaoExcluir{
    float: right;
    background: #981616;
    height: 30px;
    padding: 0px 6px 5px 6px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    margin-right: 2px;
}
.btnInfoAgenda {
    display: block;
    position: absolute;
    width: 14px;
    padding: 19px 2px 19px 2px;
    background: #20a517;
    z-index: 10;
    border-radius: 5px;
}
#textAvisos {
    margin-top: 15px;
    width: 100%;
    background: transparent;
    color: white;
    padding: 5px;
}
#avisos ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #cfcaca;
    opacity: 1; /* Firefox */
}
.table-responsive {
    background: #151515c7;
}
.bonificacaoSolicitadaAdmin {
    background: #f6ff00;
    color: black;
    font-weight: 500;
    margin-top: 5px;
    border-radius:2px; 
    font-size:12px;
    margin-bottom: 2px;
}
.viewFaturamento {
    max-height: 400px;
    width: 100%;
    background: rgba(64, 64, 64, 0.72);
    color: white;
    font-size: 14px;
    margin: 20px 5px 10px 5px;
    padding: 5px;
    /* border: 1px solid gray; */
    border-radius: 12px;
    box-shadow: 0px 0px 15px 3px black;
}
/* FIM PAINEL ADMIN */
/* CLIENTE */
#fotoPerfil {
    box-shadow: none;
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #cac0c1;
    padding: 10px;
    border: 5px solid white;
}
.homeCliente {
    background: url(../img/fundos/interno.jpg);
    background-position: center;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
}
.homeCliente .overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.5) 17%,rgba(0,0,0,0.5) 35%,rgba(0,0,0,0.5) 62%,rgba(0,0,0,0.3) 100%);
}
.homeBodyCliente {
    /*background: #d0caca;*/
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    display: block;
    /*position: absolute;*/
    width: 100%;
    height: 100%;
}
#nomeUser {
    text-transform: capitalize;
    font-size: 28px;
    font-weight: bold;
}
.homeUser img {
    width: 35px;
    margin-left: 5px;
}
.homeUser p {
    font-size: 10px;
    padding: 0px;
    margin: -5px 0px 0px 8px;
}
.btnNegociarHorario{
    font-size: 12px !important;
    padding: 5px !important;
    margin-top: 5px;
    margin-right: 5px;
    margin-left: -10px;
}
.btnCancelarHorario{
    position: absolute;
    right: -3px;
    margin-top: -7px;
    z-index: 9;
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    padding: 0px !important;
    font-weight: bold !important;
    font-size: 12px !important;

    /*position: absolute;
    left: 0;
    top: 0;
    margin-top: -30px;
    margin-left: -6px;
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    padding: 0px!important;
    font-weight: bold !important;
    font-size: 14px !important;

    font-size: 12px !important;
    padding: 5px !important;
    margin-top: 5px;
    margin-right: -10px;
    margin-left: 5px;*/
}
.btnPagar{
    font-size: 12px !important;
    margin-top: 5px;
}
.btnAplicarMulta{
    /*background: #d90022 !important;*/
    font-size: 12px !important;
    padding: 5px !important;
    margin: 5px 0px 5px 0px;
}
#negociacoesHorarios button{
    font-size: 12px !important;
    padding: 5px !important;
    margin-top: 10px;
}
.valorServicoAgendado{
    position: absolute;
    left: -6px;
    margin-top: -8px;
    z-index: 9;
    transform: rotate(-40deg);
    /*position: absolute;
    right: -6px;
    margin-top: -12px;
    z-index: 9;
    transform: rotate(40deg);*/
}
.valorServicoAgendado img {
    width: 40px;
}
.valorServicoAgendado span {
    position: absolute;
    display: flex;
    z-index: 20;
    color: #22b122;
    font-weight: bold;
    font-size: 60%;
    margin-left: 18%;
    margin-top: -27px;
}
.itemBonificaco { 
    width: 100%;
    height: auto;
    background: url(../img/fundos/servicos1.1.jpg); 
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid white;
    border-radius: 15px;
    margin-bottom: 20px;
    color: white;
}
.itemBonificaco p {
    font-weight: bold;
    margin: 0;
}
.itemBonificaco .meta {
    font-size: 10px;
    text-align: left;
    display: block;
    text-transform: none;
    margin-top: 10px;
    color: #e8e8e8;
}
.itemBonificaco .bonificacaoSolicitada {
    display: block;
    font-size: 14px;
    text-transform: none;
    font-weight: bold;
    margin-top: 10px;
}
.itemBonificaco .statusNegociacoesHorarios {
    display: block;
    font-size: 12px;
    text-transform: none;
    font-weight: bold;
    margin-top: 15px;
}
.itemBonificaco .btnSolicitar{
    font-size: 14px; 
    padding: 5px; 
    margin-top: 10px;
}
.itemBonificaco .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    padding: 10px;
    border-radius: 15px;
}
.iconBack {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 70px;
    margin-left: 12px;
    padding: 5px;
    z-index: 9;
}
/* FIM CLIENTE */
.form-control {
    background: transparent !important;
    color: #d65b26  !important;
    border-bottom: 2px solid white !important;
    border-right: none !important;
    border-left: none !important;
    border-top: none !important;
    border-radius: 5px !important;
}
.form-control:focus {
    border-color: none !important;
    box-shadow: none !important;
}
.form-control:disabled, .form-control[readonly] {
    opacity: 0.5 !important;
}
label {
    margin-bottom: 0px !important;
}
.btn-primary {
    background: #cac0c1  !important;
    color: black !important;
    border: none !important;
    border-color: none !important;
    padding: 10px 30px !important;
    font-weight: bold !important;
}
.btn-info {
    color: #fff;
    background-color: #00a7c1;
    border-color: #00a7c1;
}
.btn-primary.focus, .btn-primary:focus, .btn-danger.focus, .btn-danger:focus, .btn:focus {
    box-shadow: 0 0 0 0.1rem white !important;
}
.itemForm {
    margin-top: 25px;
}
#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1010;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.8) 17%,rgba(0,0,0,0.8) 35%,rgba(0,0,0,0.8) 62%,rgba(0,0,0,0.8) 100%);
    padding: 70% 0% 0% 46%;
}
.loader {
    /*border: 6px solid #f3f3f3;*/
    border-radius: 50%;
    border-top: 2px solid #cac0c1;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}
.navbar-style {
    background: black;
    padding: 4px 10px 8px 10px !important;
}
/*.navbar-style-iphoneX {
    background: black;
    padding: 35px 10px 10px 10px !important;
}
.navbar-brand-ios, .navbar-toggler-ios {
    margin-top: 15px;
}*/

.navbar-brand {
    background: #cac0c1;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin-left: 5px;
    margin-right: 5px !important;
    text-align: center;
}
.navbar-brand img {
    margin-top: -2px;
    width: 40px;
    border-radius: 50%;
}

.avisos {
    padding-top: 10px;
    transform: rotate(-1.5deg);
    font-size: 12px;
}
.avisos .alfinete {
    float: right;
    margin: -15px;
}
.avisos .overlay {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(223, 121, 121, 0.8) 0%,rgba(186, 83, 83, 0.7) 17%,rgba(195, 65, 65, 0.7) 35%,rgba(143, 62, 62, 0.7) 62%,rgba(117, 66, 66, 0.7) 100%); */
    background: linear-gradient(to bottom, rgba(255, 244, 0, 0.9) 0%,rgba(255, 244, 0, 0.9) 17%,rgba(255, 244, 0, 0.9) 35%,rgba(255, 244, 0, 0.9) 62%,rgba(255, 244, 0, 0.9) 100%);
    border-radius: 5px;
    box-shadow: 0px 0px 5px 1px #c7c2c2;
}
.avisos .titleAvisos{
    font-size: 18px;
}
.bodyAvisos {
    padding: 10px;
    border-radius: 5px;
    text-transform: initial;
}
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }