@font-face {
    font-family: 'cuerpo';
    src: url('media/font/KFOmCnqEu92Fr1Mu4mxK.ttf');
}

#cargando {
    display: none;
}

.result {
    display: none;
    /* position: relative; */
    /* top: 70vh; */
    float: left;
    width: 100%;
    /* height: 100px; */
    margin-top: 25px;

}

.result>div {
    margin-top: 10px;
}

body {
    background-color: #FFF;
    color: #000;
    font-family: 'cuerpo';
    font-size: 16px;
}

.title {
    font-size: 24px;
    font-weight: bold;
}

#main {
    /* margin-top: 15px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #151AB1;
    color: #fff;
}

#main>img {
    /* margin-right: 25px; */
}

#main>input {
    height: 20px;
}

.inputText {
    padding: 10px;
    border-radius: 12px;
    border: none;
    width: 300px;
    margin-right: 50px;
    cursor: pointer;
    outline: none;
}

.btnOK {
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    background-color: #FFD100;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    float: right;
}

.btnOK:hover {
    background-color: #f2b700;
}

.btnNoOK {
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    background-color: #151AB1;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    float: left;
}

.alert {
    width: calc(100% - 40px);
    /* max-height: 55vh; */
    background: #151AB1;
    border-radius: 20px;
    padding: 0px 20px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1em;
    flex-direction: column;
    text-align: center;
    /* padding-top: 5%; */
    /* padding-bottom: 5%; */
}

#info {
    position: absolute;
    bottom: 0;
}

#destinatario,
#direccion,
#cpdestino,
#repartidor {
    display: inline-block;
    white-space: nowrap;
    font-size: 200px;
    /* animation: parpadeo 1s infinite; */
}

#cpdestino,
#repartidor {
    font-size: 105px;
}

@keyframes parpadeo {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animation {
    animation: parpadeo 1s infinite;
}