body {
    background: #232323;
    background-image: url(bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

    body::before {
        content: "";
        width: 100%;
        height: 100%;
        background: radial-gradient(rgba(7,23,43,0), rgba(7,23,43,1));
        position: absolute;
        top: 0
    }



.imgShop {
    width: 220px;
    height: 100px;
    background-image: url(shop9.svg);
    background-repeat: no-repeat;
    background-position: center;
}






.holderCampos {
    display: flex;
    position: relative;
    flex-direction: column;
}

.text-danger {
    transform: scale(0);
    transform-origin: top right;
    transition: 0.3s;
}

.form-control:focus {
    box-shadow: none;
    border: 0px;
    border-bottom: 1px solid white;
    background: rgba(255,255,255,1);
    transition: 0.3s;
}

    .form-control:focus ~ .iconeLateral {
        color: #85ba23;
    }

.form-control {
    border: 0px;
    padding: 10px;
    background: rgba(255,255,255,0.5);
    border-bottom: 1px solid white;
    transition: 0.3s;
}

.field-validation-error {
    background: linear-gradient(#eb3f6d, #d42653);
    border-bottom: #eb3f6d 1px solid;
    font-size: 13px;
    border-radius: 5px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
    margin-top: 5px;
    right: 0px;
    position: relative;
    transition: 0.3s;
    transform: scale(1);
    width: fit-content;
    color: white !important;
    padding: 10px;
}

.holderCampos label {
    text-transform: uppercase;
    font-weight: 500;
    user-select: none;
    font-size: 14px;
    margin-bottom: 5px;
    color: rgba(7,23,43,1);
}

.holderCampos span {
    user-select: none;
}

.iconeLateral {
    position: absolute;
    top: 56px;
    right: 15px;
    color: rgba(0,0,0,0.2)
}


.divisoria {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.formularioSerie {
    display: flex;
    flex-direction: column;
}

.btnPadrao {
    margin: 0 auto;
    padding: 8px 25px;
    min-width: 150px;
    background: linear-gradient(#abd052,#1c643b);
    border: 1px solid #1c643b;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

    .btnPadrao:hover {
        transition: 0.3s;
        box-shadow: 5px 5px 20px #1c643b, -5px -5px 20px #abd052;
        border: 1px solid #abd052;
        text-shadow: 0px 5px 5px #1c643b;
    }

    .btnPadrao:focus {
        box-shadow: none;
        border: 0px;
    }

.sombraAlerta {
    position: absolute;
    width: 100%;
    bottom: 0px;
    pointer-events: none;
    height: auto;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    align-content: center;
    transition: 0.3s;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.9));
}

.alert-danger {
    margin: 50px 20px;
    padding: 10px 20px;
    border: 0px;
    width: fit-content;
    justify-content: center;
    display: flex;
    flex-direction: row;
    transition: 0.3s;
    background: linear-gradient(#eb3f6d, #d42653);
    border-bottom: #eb3f6d 2px solid;
    font-size: 16px;
    transform: translateY(100px);
    color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.8);
}


@keyframes exibirHolderBalaoErro {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes exibirBalao {
    from {
        transform: translateY(100px);
    }

    to {
        transform: translateY(0px);
    }
}

.mostraBalaoErro {
    animation: exibirBalao 1s;
    animation-fill-mode: forwards;
}

.mostraAreaErro {
    animation: exibirHolderBalaoErro 0.5s;
    animation-fill-mode: forwards;
}


.alertaIcone {
    color: rgba(0,0,0,0.5);
    margin-right: 10px;
}

.carregando {
    transition: 0.3s;
    transform: scale(0.98);
    pointer-events: none;
    user-select: none;
    cursor: wait !important;
}

    .carregando::before {
        content: "";
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
        align-items: center;
        width: 100%;
        height: calc(100% + 2px);
        border-radius: 10px;
        background: radial-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.8));
        position: absolute;
        left: 0px;
        top: 0px;
        z-index: 999
    }


.rotateSymbol {
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 80px;
    color: white;
    animation: rotation 1.5s;
    z-index: 99999;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes rotation {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.holderQrPix {
    display: flex;
    justify-content: center;
    background: white;
    padding: 20px 0px;
    box-sizing: border-box;
    border-radius: 10px;
    border-bottom: 4px solid #DDD;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.linhaCopiaCola {
    display: flex;
    flex-direction: row;
}

.btnCopiar {
    margin: 0 auto;
    padding: 8px 10px;
    margin-left: 10px;
    background: linear-gradient(#22728f,#081f40);
    border: 1px solid #081f40;
    transition: 0.3s;
    color: #FFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

    .btnCopiar:hover {
        transition: 0.3s;
        box-shadow: 5px 5px 20px #22728f, -5px -5px 20px #67b9d6;
        border: 1px solid #67b9d6;
        text-shadow: 0px 5px 5px #1c643b;
    }

    .btnCopiar:focus {
        box-shadow: none;
        border: 0px;
    }


.iconePgtoAprovado {
    width: 100px;
    height: 100px;
    background: red;
    display: block;
}

body {
    background: #232323;
    background-image: url(bgAzyk.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

    body::before {
        content: "";
        width: 100%;
        height: 100%;
        background: radial-gradient(rgba(7,23,43,0), rgba(7,23,43,1));
        position: absolute;
        top: 0
    }

.holderPrincipal {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.holderEstrutura {
    padding: 30px 50px;
    box-sizing: border-box;
    transition: 0.3s;
    border-radius: 10px;
    border-bottom: 2px solid rgba(255,255,255, 0.9);
    box-shadow: 0px 0px 150px rgba(0,0,0,1);
    backdrop-filter: blur(15px);
    background: linear-gradient(rgba(255,255,255,0.0), rgba(255,255,255, 0.7));
}


.imgShop {
    width: 170px;
    height: 65px;
    background-image: url(shop9.svg);
    background-repeat: no-repeat;
    background-position: center;
}

    .imgShop::before {
        width: 170px;
        content: "";
        height: 65px;
        background-image: url(shop9.svg);
        background-repeat: no-repeat;
        background-position: center;
        filter: blur(15px);
    }

.holderLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    top: 00px;
    position: absolute;
    padding: 10px 20px;
    flex-direction: row;
    width: 100%;
    box-shadow: 0px 0px 100px rgba(0,0,0,0.8), inset 0px -20px 30px rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

    .holderLogo h2 {
        text-transform: uppercase;
        font-weight: 400;
        position: relative;
        font-size: 18px;
        color: white;
        z-index: 8999;
        padding: 0px 0px 0px 0px;
        box-sizing: border-box;
        margin: 0px 0px 00px 0px;
    }

    .holderLogo h1 {
        text-transform: uppercase;
        font-weight: 400;
        position: relative;
        margin: 0px;
        box-sizing: border-box;
        color: transparent;
        background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(255,255,255,1) 100%);
        background-clip: text;
    }

.holderCampos {
    display: flex;
    position: relative;
    flex-direction: column;
}

.text-danger {
    transform: scale(0);
    transform-origin: top right;
    transition: 0.3s;
}

.form-control:focus {
    box-shadow: none;
    border: 0px;
    border-bottom: 1px solid white;
    background: rgba(255,255,255,1);
    transition: 0.3s;
}

    .form-control:focus ~ .iconeLateral {
        color: #85ba23;
    }

.form-control {
    border: 0px;
    padding: 10px;
    background: rgba(255,255,255,0.5);
    border-bottom: 1px solid white;
    transition: 0.3s;
}

.field-validation-error {
    background: linear-gradient(#eb3f6d, #d42653);
    border-bottom: #eb3f6d 1px solid;
    font-size: 13px;
    border-radius: 5px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
    margin-top: 5px;
    right: 0px;
    position: relative;
    transition: 0.3s;
    transform: scale(1);
    width: fit-content;
    color: white !important;
    padding: 10px;
}

.holderCampos label {
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: 500;
    user-select: none;
    font-size: 14px;
    margin-bottom: 5px;
    color: rgba(7,23,43,1);
}

.holderCampos span {
    user-select: none;
}

.iconeLateral {
    position: absolute;
    top: 56px;
    right: 10px;
    color: rgba(0,0,0,0.2)
}

.holderEstrutura h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0px;
    color: rgba(255,255,255,1);
    padding: 0px;
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1)
}

.divisoria {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.formularioSerie {
    display: flex;
    flex-direction: column;
}

.btnPadrao {
    margin: 0 auto;
    padding: 8px 25px;
    min-width: 150px;
    background: linear-gradient(#abd052,#1c643b);
    border: 1px solid #1c643b;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

    .btnPadrao:hover {
        transition: 0.3s;
        box-shadow: 5px 5px 20px #1c643b, -5px -5px 20px #abd052;
        border: 1px solid #abd052;
        text-shadow: 0px 5px 5px #1c643b;
    }

    .btnPadrao:focus {
        box-shadow: none;
        border: 0px;
    }

.sombraAlerta {
    position: absolute;
    width: 100%;
    bottom: 0px;
    pointer-events: none;
    height: auto;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    align-content: center;
    transition: 0.3s;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.9));
}

.alert-danger {
    margin: 50px 20px;
    padding: 10px 20px;
    border: 0px;
    width: fit-content;
    justify-content: center;
    display: flex;
    flex-direction: row;
    transition: 0.3s;
    background: linear-gradient(#eb3f6d, #d42653);
    border-bottom: #eb3f6d 2px solid;
    font-size: 16px;
    transform: translateY(100px);
    color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.8);
}


@keyframes exibirHolderBalaoErro {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes exibirBalao {
    from {
        transform: translateY(100px);
    }

    to {
        transform: translateY(0px);
    }
}

.mostraBalaoErro {
    animation: exibirBalao 1s;
    animation-fill-mode: forwards;
}

.mostraAreaErro {
    animation: exibirHolderBalaoErro 0.5s;
    animation-fill-mode: forwards;
}


.alertaIcone {
    color: rgba(0,0,0,0.5);
    margin-right: 10px;
}

.carregando {
    transition: 0.3s;
    transform: scale(0.98);
    pointer-events: none;
    user-select: none;
    cursor: wait !important;
}

    .carregando::before {
        content: "";
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
        align-items: center;
        width: 100%;
        height: calc(100% + 2px);
        border-radius: 10px;
        background: radial-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.8));
        position: absolute;
        left: 0px;
        top: 0px;
        z-index: 999
    }


.rotateSymbol {
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 80px;
    color: white;
    animation: rotation 1.5s;
    z-index: 99999;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes rotation {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.holderQrPix {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    flex-direction: column;
    display: flex;
    padding: 20px 20px 20px 20px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 10px;
    border-bottom: 4px solid #DDD;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.linhaCopiaCola {
    display: flex;
    flex-direction: row;
}

.btnCopiar {
    margin: 0 auto;
    padding: 8px 10px;
    margin-left: 10px;
    background: linear-gradient(#22728f,#081f40);
    border: 1px solid #081f40;
    transition: 0.3s;
    color: #FFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

    .btnCopiar:hover {
        transition: 0.3s;
        box-shadow: 5px 5px 20px #22728f, -5px -5px 20px #67b9d6;
        border: 1px solid #67b9d6;
        text-shadow: 0px 5px 5px #1c643b;
    }

    .btnCopiar:focus {
        box-shadow: none;
        border: 0px;
    }


.iconePgtoAprovado {
    width: 180px;
    height: 180px;
    background: url(pixPago.svg);
    display: block;
    margin: 30px auto;
    transform: scale(1);
    border-radius: 90px;
    animation: scaleAnimation 2.3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    box-shadow: 5px 5px 50px #1c643b, -5px -5px 50px #abd052;
}

.iconeErro {
    width: 180px;
    height: 180px;
    background: url(erroIcon.svg);
    display: block;
    margin: 30px auto;
    transform: scale(1);
    border-radius: 90px;
    animation: scaleAnimationErro 2.3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    box-shadow: 5px 5px 50px #b42029, -5px -5px 50px #ed4d61;
}

.iconePgtoExpirado {
    width: 180px;
    height: 180px;
    background: url(pixExpired.svg);
    display: block;
    margin: 30px auto;
    transform: scale(1);
    border-radius: 90px;
    animation: scaleAnimationExpirado 2.3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    box-shadow: 5px 5px 50px #e66f23, -5px -5px 50px #f0ab20;
}

.iconePgtoEstorno {
    width: 180px;
    height: 180px;
    background: url(Estorno.svg);
    display: block;
    margin: 30px auto;
    transform: scale(1);
    border-radius: 90px;
    animation: scaleAnimationEstorno 2.3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    box-shadow: 5px 5px 50px #082236, -5px -5px 50px #6fadde;
}

@keyframes scaleAnimation {
    0% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 5px 5px 50px #1c643b, -5px -5px 50px #abd052;
    }

    50% {
        transform: scale(0.95) rotate(5deg);
        box-shadow: 0px 0px 20px #1c643b, -0px -0px 20px #abd052;
    }

    100% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 5px 5px 50px #1c643b, -5px -5px 50px #abd052;
    }
}

@keyframes scaleAnimationErro {
    0% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 5px 5px 50px #b42029, -5px -5px 50px #ed4d61;
    }

    50% {
        transform: scale(0.95) rotate(5deg);
        box-shadow: 0px 0px 20px #b42029, -0px -0px 20px #ed4d61;
    }

    100% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 5px 5px 50px #b42029, -5px -5px 50px #ed4d61;
    }
}

@keyframes scaleAnimationExpirado {
    0% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 5px 5px 50px #e66f23, -5px -5px 50px #f0ab20;
    }

    50% {
        transform: scale(0.95) rotate(5deg);
        box-shadow: 0px 0px 20px #e66f23, -0px -0px 20px #f0ab20;
    }

    100% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 5px 5px 50px #e66f23, -5px -5px 50px #f0ab20;
    }
}

@keyframes scaleAnimationEstorno {
    0% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 5px 5px 50px #082236, -5px -5px 50px #6fadde;
    }

    50% {
        transform: scale(0.95) rotate(5deg);
        box-shadow: 0px 0px 20px #082236, -0px -0px 20px #6fadde;
    }

    100% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 5px 5px 50px #082236, -5px -5px 50px #6fadde;
    }
}

.holderAnimacoesPgto {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    flex-direction: column;
    height: fit-content;
}

.pgtoAprovado {
    display: none;
}

.pgtoExpirado {
    display: none;
}

.pgtoEstorno {
    display: none;
}


.balaoenvio {
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    color: white;
    border-radius: 10px;
    max-width: 340px;
    background: linear-gradient(#52d0a8,#1c5f64);
    box-shadow: 5px 5px 30px #1c5f64, -5px -5px 30px #52d0a8;
    border: 1px solid #78f0d6;
    margin: 0px 0px 20px 0px;
    position: relative;
}

.iconeEmail {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 60px;
    color: rgba(0,0,0,0.1);
}

.balaoenvio h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0px;
    color: #FFF;
    margin-bottom: 15px;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
}

.balaoenvio .texto {
    color: white;
    font-size: 0.95rem;
    position: relative;
}

.btnEnvioOk {
    display: flex;
    justify-content: center;
    text-align: center;
    min-width: 50px;
    padding: 0px;
    align-items: center;
    width: 50px;
}

.holderBtnCodigo {
    clear: both;
    display: flex;
    max-width: fit-content;
    margin: 0 auto;
    flex-direction: row;
    gap: 5px;
}

.holderComWarning {
    display: flex;
    margin: 0 auto;
    width: fit-content;
    flex-direction: column;
}

#reenvioCodigo {
    display: flex;
    width: fit-content;
    flex-direction: row;
    margin: 0 auto;
}

.btnLink {
    border: none;
    background: transparent;
    padding: 0px;
    margin: 0px 0px 0px 5px;
    font-style: italic;
    font-weight: 500;
    transition: 0.3s;
    color: rgba(0, 0, 0, 0.7);
    transform: scale(1.0);
}

    .btnLink:hover {
        color: #1c5f64;
        transform: scale(1.1);
        transition: 0.3s;
    }


.alert-return {
    background: #d1d9e7;
    color: #122547;
}

.valorPgto {
    
    margin: 00px auto 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: end;
    align-items: end;
}


.aguardandoTotalHolder {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 10px;
    padding-top: 10px;
}

.titTotal {
    font-size: 0.75rem;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}

.valorPixDestacado {
    font-size: 27px;
}

.holderCamposDuplos {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

input:read-only {
    background: rgba(255,255,255,0.2) !important;
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
    color: rgba(0,0,0,0.8) !important;
    user-select: none;
    pointer-events: none;
}

.holderTextoHeaderFixo {
    flex: 1;
    padding: 0px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    padding-left: 40px;
    margin-left: 40px;
}

.informacaoContato {
    background: linear-gradient(rgba(252,235,194,0.5), rgba(255,243,244, 1));
    backdrop-filter: blur(10px);
    border-top: 1px solid #FFF;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    box-shadow: 0px 20px 30px rgba(0,0,0,0.5);
    margin: 10px 0px;
}

.informacoesHelp {
    background: linear-gradient(rgba(231,243,255,0.5), rgba(231,243,255,1));
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 25px;
    margin: 10px 0px;
    box-shadow: 0px 20px 30px rgba(0,0,0,0.5);
    border-top: 1px solid #FFF;
}

.informacoesErro {
    background: linear-gradient(rgba(242,162,170,0.5), rgba(242,162,170,1));
    border-radius: 8px;
    padding: 25px;
    
    margin: 10px 0px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 20px 30px rgba(0,0,0,0.5);
    border-top: 1px solid #FFF;
}

.infoContatoPgto{
 display: none;
}

.areaPixNova{
    flex-direction: row!important;
}

.headerBackButton{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.3);

}

    .headerBackButton h2{
        border-bottom: 0px;
        flex: 1;
        margin: 0px;
        padding: 0px;
    }

    .btnRounded {
        width: 40px!important;
        height: 40px;
        justify-content: center;
        align-items: center;
        justify-items: center;
        align-content: center;
        display: flex;
        flex-direction: column;
        border-color: white;
        border-radius: 20px;
    }

    .btnRounded span{
        font-size: 17px;
        width: 10px;
        height: fit-content;
        text-align: center;
        line-height: 1;
        color: white;
    }

.holderQrTime{
    display: flex;
    flex-direction: row;
}

.aguardandoTotalHolder{
    display: flex;
    flex-direction: row;
   
}

.dividerAreas {
    height: 100%;
    width: 1px;
    background: rgba(255,255,255,0.1);
    margin-left: 40px;
    margin-right: 40px;
}

.text-muted{
    width: 100%;
}

#copyMsg {
    display: block;
    position: absolute;
    padding: 5px 10px;
    box-sizing: border-box;
    background: linear-gradient(#78cf3e, #488f18);
    border-bottom: 2px solid #264f0a;
    border-radius: 5px;
    color: white !important;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    bottom: 50px;
    font-size: 12px;
    text-transform: uppercase;
    left: 85px;
}

.contato_Area span {
    color: rgba(7,23,43,1);
    text-transform: uppercase;
    font-weight: 600;

}

.contato_Area ul{
    list-style-type: none;
    padding: 0px;
    margin: 10px 0px 0px 0px;
}

.contato_Area li{
    margin: 5px 0px;
    padding: 0px;
}

    .contato_Area li > p {
        margin-bottom: 0px;
        color: rgba(20,20,20,1);
        font-size: 0.85rem;
        
    }

    .contato_Area li a {
        color: rgba(20,20,20,1);
    }


.aviso_Novo_Backup {
    position: relative;
    max-width: 300px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.4);
    border-bottom: 4px solid #DDD;
}

    .aviso_Novo_Backup p {
        margin-bottom: 0px;
        color: #fc7303;
        font-size: 0.95rem;
        text-align: center;
    }

    .aviso_Novo_Backup::before {
        content: "cloud_alert";
        font-family: Material Symbols Outlined;
        position: absolute;
        mask-mode: alpha;
        background: linear-gradiend(black;
        transparent );
        color: rgba(0,0,0,0.1);
        bottom: -30px;
        font-size: 90px;
        right: 10px;
    }