body{
    font-family: 'Roboto', sans-serif;
    background: url(../img/fondo.jpeg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 100vh;
}
.titles h1{
    color: #fff;
    font-size: 2.5em;
    font-weight: 800;
}
.titles h2 {
    color: #fff;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 30px;
}
.card{
    min-height: 550px;
    max-height: 550px;
}
.card-body .btn-primary {
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.card-body .btn-secondary {
    position: absolute;
    bottom: 15px;
    left: 15px;
}
.box {
    max-height: 325px;
    overflow-y: scroll;
}
/* HIDE RADIO */
[type=radio] { 
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
/* IMAGE STYLES */
.form-check{
    padding-left: 0;
}
label.form-check-label img.img-fluid {
    border: 2px solid #ccc;
    border-radius: 15px;
    min-height: 110px;
}
[type=radio] + img {
    cursor: pointer;
  }
  
/* CHECKED STYLES */
[type=radio]:checked + img {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

/* width */
::-webkit-scrollbar {
width: 5px;
position: relative;
right: -10px
}

/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px #ccc; 
border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #333; 
border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #333; 
}

/*Paginacion*/
.pagination{
    margin: 20px auto;
    align-items: center;
    justify-content: center;
}
.pagination li.page-item {
    position: relative;
    margin: 0 25px;
}
.pagination li.page-item:before {
    content: '';
    position: absolute;
    background: #ccc;
    width: 85px;
    height: 2px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.pagination li.page-item.active:before {
    background: #0d6efd;
}
.pagination li.page-item:first-child:before {
    display: none;
}

.pagination li#tab1:after {
    content: 'Diseño';
    position: absolute;
    font-size: 14px;
    color: #0d6efd;
    width: 43px;
    bottom: -20px;
    left: -3px;
    right: 0;
    margin: auto;
}
.pagination li#tab2:after {
    content: 'Datos';
    position: absolute;
    font-size: 14px;
    color: #ccc;
    width: 50px;
    bottom: -20px;
    left: -2px;
    right: 0;
    margin: auto;
}
.pagination li#tab3:after {
    content: 'Colores';
    position: absolute;
    font-size: 14px;
    color: #ccc;
    width: 60px;
    bottom: -20px;
    left: -6px;
    right: 0;
    margin: auto;
}
.pagination li#tab4:after {
    content: 'Imagen';
    position: absolute;
    font-size: 14px;
    color: #ccc;
    width: 60px;
    bottom: -20px;
    left: -6px;
    right: 0;
    margin: auto;
}
.pagination li#tab2.active:after,
.pagination li#tab3.active:after,
.pagination li#tab4.active:after{
    color: #0d6efd;
}
.pagination .page-link{
    border-radius: 70% !important;
}