.content::-webkit-scrollbar {
    width: 8px;     /* Tamaño del scroll en vertical */
    height: 8px;    /* Tamaño del scroll en horizontal */
    
}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
.content::-webkit-scrollbar-thumb {
    background: #ffa031;
    border-radius: 4px;
}
/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
.content::-webkit-scrollbar-thumb:hover {
    background: #ffa031;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
/* Cambiamos el fondo cuando esté en active */
.content::-webkit-scrollbar-thumb:active {
    background-color: rgba(255, 166, 0, 0.521);
}

/* Ponemos un color de fondo y redondeamos las esquinas del track */
.container::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 4px;
}
/* Cambiamos el fondo cuando esté en active o hover */
.container::-webkit-scrollbar-track:hover,
.container::-webkit-scrollbar-track:active {
  background: #d4d4d4;
}


.boton-primario{
    background: #ffa031;
}

.boton-secundario{
    background: #ffffff;
    color: black;
}

.barra{
    overflow-y: auto;
}

.telefono{
   
    height: 98% !important;
}



#js-rotating {
	color: #ffa031;
    text-transform: uppercase;
}

.background{
    background-size: 100% 100% !important;
    opacity: 0.55 !important;
}

.text-center{
    text-align: center !important; 
}

.m-0{
    margin: 0px !important;
}



@media only screen and (max-width:1024px) { 
    .background{
        background-size: cover !important;
        opacity: 0.55 !important;
    }
}

.col-6{
    width: 50%;
}

.sticky-container{
    padding:0px;
    margin:0px;
    position:fixed;
    right:-170px;
    bottom: 100px;
    width:210px;
    z-index: 1100;
}
.sticky li{
    list-style-type:none;
    background-color:#fff;
    color:#efefef;
    height:43px;
    padding:0px;
    margin:0px 0px 1px 0px;
    -webkit-transition:all 0.25s ease-in-out;
    -moz-transition:all 0.25s ease-in-out;
    -o-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    cursor:pointer;
}
.sticky li:hover{
    margin-left:-70px;
}
.sticky li img{
    float:left;
    margin:5px 4px;
    margin-right:5px;
}
.sticky li p{
    padding-top:5px;
    margin:0px;
    line-height:16px;
    font-size:11px;
}
.sticky li p a{
    text-decoration:none;
    color:#2C3539;
}
.sticky li p a:hover{
    text-decoration:underline;
}
