*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul, ol{
	list-style: none;
}
body{
    background-color: #ffffff;
    font-family: Roboto-Regular;
    overflow-x: hidden;
}
body::-webkit-scrollbar{
    width: 4px;     /* Tamaño del scroll en vertical */
    height: 4px;    /* Tamaño del scroll en horizontal */
}
/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
body::-webkit-scrollbar-thumb {
    background: deepskyblue;
    border-radius: 8px;
}

/* Ponemos un color de fondo y redondeamos las esquinas del track */
body::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 8px;
}

/* Cambiamos el fondo cuando esté en active o hover */
body::-webkit-scrollbar-track:hover,
body::-webkit-scrollbar-track:active {
  background: #d4d4d4;
}
.x{
    position: absolute;
    font-size: 40px;
    top: 0px;
    left: 10px;
    cursor: pointer;
    color:white;
}

@media (min-width: 769px){
    .x{
        right: 10px;
        left: unset;
    }
}

.mayus{
    text-transform: uppercase;
}
.fs-12px{
    font-size: 12px;
}

.al-c{
    display: flex;
    align-items: center;
}
.al-c-h{
    display: flex;
    justify-content: center;
}

.pl-5{
    padding-left: 80px;
}
.pr-5{
    padding-right: 80px;
}
.ul{
    list-style:outside;
}
.fw{
    font-weight: bold;
}

header{
    font-size: 12px !important;
}

.capitalize{
    text-transform: capitalize !important;
}

footer{
    font-size: 12px !important;
}

.search-box{
    max-width: 80%;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.border-radius-1{
    border-radius: 10px;
}


.border-radius-2{
    border-radius: 20px;
}

.form-cont{
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 40vmax;
    margin-top: -6vmax;
    margin-left: auto;
    margin-right: auto;
}

.btn{
    background-color: #03a9f4 !important;
    border: 1px solid #03a9f4 !important;
}




