.modal-cielo.modal-dialog.modal-xl {
    max-width: 100%;
    width: 1100px;
}

.display-none {
    display: none;
}

.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: 400;
}

.ajax_load_box_circle {
    border: 8px solid #e3e3e3;
    border-top: 8px solid #337ab7;
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

input[type="cnpj"], input[type="cpf"], input[type="celular"]{
    background: #efefef;
    border-radius: 5px;
    box-shadow: none;
    border: none;
    font-weight: 400;
    font-size: 14px;
    padding: 0px 15px;
    width: 100%;
    height: 45px;
}