.underline {
    text-decoration: underline;
}

.line {
    position: relative;
}
.condiciones {
    overflow: hidden
}
.line-c {
    width: 9999px;
    position: absolute;
    left: -1000px;
    border: 4px solid #EEEEEE;
}
@media (min-width: 768px){
    .line-c {
        display: none;
        position: static;
    }
}

@media (max-width: 767px) {
    .lang .dropdown-toggle {
        background-color: white;
        border: none;
    }
}
@media (min-width: 768px){
    .lang .dropdown-toggle {
        background-color: transparent;
        border: none;
    }
    .lang {
        margin-right: 80px;
    }
}
.lang .dropdown-menu {
    min-width: auto;
}

.lang button:focus{
    outline: none;
}

.lang .icon {
    width: 30px;
}
.line-a {
    margin-top: -460px
}

.line-b {
    margin-top: 160px;
}

.contrato-p {
    font-size: 18px;
}

@media (max-width: 767px) {
    .contrato-p {
        margin-left: 30px;
    }
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.card-footer {
    padding: .75rem 1.25rem;
    min-height: 300px;
}

.card-footer p {
    font-size: 15px;
    text-align: left;
}
.invert-to-blue {
    color: #fff;
    border: solid 1px #fff;
    background-color: rgba(0, 169, 224, 1);
}
.min280 {
    min-width: 280px;
}
/*.card-footer {*/
    /*min-height: auto;*/
/*}*/

/*.barcode-continuar-hidden, .continuar-hidden {*/
    /*display:none;*/
/*}*/
/*@media (max-width: 767px) {*/
    /*.fix-mobile-mt-20 {*/
        /*margin-top: -20px*/
    /*}*/
/*}*/
/*.progress-bar {*/
    /*width: 0;*/
    /*animation: progress 45.5s ease-in-out forwards;*/
    /*-webkit-transition: auto;*/
    /*-moz-transition: auto;*/
    /*-ms-transition: auto;*/
    /*-o-transition: auto;*/
    /*transition:auto;*/
/*}*/
/*body .progress {*/
    /*height: 1.75rem;*/
/*}*/
/*.bottom-0 {*/
    /*bottom:0 !important;*/
/*}*/



/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.dot-flashing {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #00a9e0;
    color: #00a9e0;
    animation: dotFlashing 1s infinite linear alternate;
    animation-delay: .5s;
}

.dot-flashing::before, .dot-flashing::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
}

.dot-flashing::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #00a9e0;
    color: #00a9e0;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #00a9e0;
    color: #00a9e0;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dotFlashing {
    0% {
        background-color: #00a9e0;
    }
    50%,
    100% {
        background-color: #c2f0ff;
    }
}