@font-face {
    font-family: 'segoe-ui';
    src: url(../fonts/segoeui/segoeui.ttf);
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
	font-family: 'Roboto';
	src: url(../fonts/Roboto/Roboto-Regular.ttf);
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
	font-family: 'Avant Garde Demi BT';
	src: url(../fonts/AVGARDD_2.ttf);
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

* {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: #0080BB;
    font-family: 'Avant Garde Demi BT';
    font-weight: 200;
}

.referencia {
    position: relative;
    top: 17%;
    width: 25rem;
    display: table;
    background: #fff;
    border-radius: 4px;
}

.ref {
    top: 17%;
    min-width: 15rem;
    max-width: 25rem;
    background: #fff;
    border-radius: 4px;
}

.div-descuento {
    top: 17%;
    min-width: 15rem;
    max-width: 510px;
    background: #fff;
    align-items: center;
    align-self: center;
}

.div-clip-payment {
    top: 17%;
    min-width: 15rem;
    max-width: 510px;
    align-items: center;
    align-self: center;
    text-align: center;
    margin-top: 1px;
}

.div-monto_pago {
    min-width: 15rem;
    max-width: 510px;
    background: #fff;
}

.terminosDiv {
    margin-top: 20px;
    font-size: 15px;
}

.terminos {
    width: 80%;
    text-align: justify;
    text-justify: inter-word;
}

.titulo {
    font-size: 21px;
    font-weight: bold;
}

.imagen-cliente {
    max-width: 25rem;
    min-width: 15rem;
    width: 100%;
    height: auto;
}

.legend {
    position: relative;
    width: 100%;
    display: block;
    background-color: #0096DC;
    padding: 15px;
    color: white;
    font-size: 25px;
    font-weight: 500;
}

.legend-custom {
    position: relative;
    width: 100%;
    display: block;
    padding: 15px;
    color: white;
    font-size: 20px;
}

.input-body {
    position: relative;
    width: 100%;
    display: block;
    background-color: #20B7FF;
    padding: 10px;
    color: #0080BB;
    font-size: 15px;
}

.footer {
    position: relative;
    width: 100%;
    display: block;
    background-color: #0096DC;
    padding: 10px;
    color: #0080BB;
    font-size: 15px;
}

.footer-custom {
    position: relative;
    width: 100%;
    display: block;
    padding: 10px;
    color: #0080BB;
    font-size: 20px;
}

.footer-blanco {
    position: relative;
    width: 100%;
    display: block;
    background-color: white;
    padding: 10px;
    color: #fff;
    font-size: 15px;
}

a:link {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

a:visited {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

a:hover {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

a:active {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.input {
    position: relative;
    width: 90%;
    margin: 15px auto;
}

.input span {
    position: absolute;
    display: block;
    background-color: #0080BB;
    color: #d3d3d3;
    left: 10px;
    top: 8px;
    font-size: 20px;
}

.input input {
    width: 100%;
    padding: 10px 5px 10px 40px;
    display: block;
    border: 1px solid #c2c2c2;
    border-radius: 4px;
    transition: 0.2s ease-out;
    color: black;
}

.input input:focus {
    padding: 10px 5px 10px 10px;
    outline: 0;
    border-color: rgb(54, 96, 146);
}

.submit {
    width: 45px;
    height: 45px;
    display: block;
    margin: 0 auto -15px auto;
    background: #fff;
    border-radius: 100%;
    border: 1px solid rgb(54, 96, 146);
    color: rgb(54, 96, 146);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 0px 0px 7px #fff;
    transition: 0.2s ease-out;
}

.submit:hover,
.submit:focus {
    background: rgb(52, 79, 114);
    color: #fff;
    outline: 0;
}

.feedback {
    position: absolute;
    bottom: -70px;
    width: 100%;
    text-align: center;
    color: #fff;
    background: #2ecc71;
    padding: 10px 0;
    font-size: 12px;
    display: none;
    opacity: 0;
}

.feedback:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(46, 204, 113, 0);
    border-bottom-color: #2ecc71;
    border-width: 10px;
    margin-left: -10px;
}

.btn-primary {
    color: #fff;
    background-color: #346092;
    border-color: #346092;
    box-shadow: none;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary.focus,
.btn-primary:focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: none, 0 0 0 0 rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #346092;
    border-color: #346092;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(38, 143, 255, 0.5);
}

.formato-logo {
    width: 400px;
    height: 180px;
}

.formato-foto {
    width: 400px;
    height: 230px;
}

.loader {
    color: white;
    font-size: 30px;
}

.pagos {
    background-color: rgb(255, 255, 255);
    text-align: left;
    margin-top: 1px;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

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