/* Cargo pagina estils */
.text-red-600{
    color: #e3342f;
}

div.arrow{
    height:40px;
    background:rgba(24,186,155,0.6);
    color:#fff;
    position:relative;
    width:200px;
    text-align:center;
    line-height:40px;
}
div.arrow:after{
    content:"";
    position:absolute;
    height:0;
    width:0;
    left:100%;
    top:0;
    border:20px solid transparent;
    border-left: 20px solid rgba(24,186,155,0.6);
}
.arrow-right {
    width: 0; 
    height: 0; 
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 15px solid #4ea9dc;
}
.line{
    height: 1px;
    background-color: #4ea9dc;
}

.bg-special-blue{
    background-color: #4ea9dc;
}
.color-special-blue{
    color: #4ea9dc;
}
.bg-special-green{
    background-color: #8bb82b;
}
.color-special-green{
    color: #8bb82b;
}
.bg-special-orange{
    background-color: #e1601e;
}
.color-special-orange{
    color: #e1601e;
}

.u-slider-v1-2.ui-slider .ui-slider-handle, .u-slider-v1-3.ui-slider .ui-slider-handle {
    border-color: #4ea9dc;
}

.form-control{
    height: 49px;
}
.u-slider-v1-3.ui-slider .ui-slider-handle {
    width: 30px;
    height: 30px;
    top: -100%;
}

.section-background {
    padding-top:20px;
    padding-bottom:20px;
}

@media (max-height: 959px) {
    /* Estilos para ventanas con altura menor a 924px */
    .section-background {
        min-height: 900px;
      
    }
}
  
@media (min-height: 960px) {
    /* Estilos para ventanas con altura igual o mayor a 924px */
    .section-background {
        height: calc(100vh - 63px);
    }
}

/* para dispositivos de menos de 992px de ancho */
@media (max-width: 991px) {
    .section-background {
        height: auto;
        padding-top:20px;
        padding-bottom:20px;
    }
}