.menu-desktop {
    width: 55px;
    height: 100px;
    position: fixed;
    z-index: 1000;
    right: 30px;
    top: 40rem;
    background-color: transparent;
}
.menu-mobile {
    width: 55px;
    height: 100px;
    position: fixed;
    z-index: 1000;
    left: 30px;
    top: 30px;
    background-color: transparent;
}
@media only screen and (max-width: 700px) {
    .mobile-hide {
        display: none !important;
    }
}
@media only screen and (max-width: 698px) {
    .mobile {
        display: inline !important;
    }
}
@media only screen and (min-width: 699px) {
    .desktop-hide {
        display: none !important;
    }
}
@media only screen and (min-width: 701px) {
    .desktop {
        display: inline !important;
    }
}
@media only screen and (max-width: 1270px) {
    .mobile-hide-logo {
        display: none !important;
    }
}
@media only screen and (max-width: 800px) {
    .mobile-logo {
        display: inline !important;
    }
}
@media only screen and (min-width: 801px) {
    .desktop-hide-logo {
        display: none !important;
    }
}
@media only screen and (min-width: 1271px) {
    .desktop-logo {
        display: inline !important;
    }
}
.btn-outline-success{
    background-color: #fff;
    color: #b80f52;
    padding: 5px 8px;
    border: 1px solid #b80f52;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-outline-success:hover{
    background-color: #b80f52;
    color: #fff;
}

.modal{
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
		padding: 40px;
    width: 100vw;
    height: 100vh;
    /* Ocultar a janela modal */
    display: none;
}

.conteudo-modal{
    margin: 0 auto;
    margin-top: 0%;
    max-width: 320px;
    background-color: #fff;
    border-radius: 8px;
}

.cabecalho-modal{
    padding: 1px 8px;
    display: flex;
    justify-content: space-between;
    border-bottom: solid #eee 1px;
}

.cabecalho-modal .cabecalho-titulo-modal{
    font-weight: bold;
		align-content: center;
    margin: 0px 0px;
}

.cabecalho-modal .cabecalho-modal-fechar{
    padding: 10px 10px;
    cursor: pointer;
}

.corpo-modal{
    padding: 0px 0px 0px 0px;
}

.rodape-modal{
    border-top: solid #eee 1px;
    padding: 8px;
}
