
html, body {
    height: 100vh;
    margin: 0;
    color: #bc290a;
}

.full-height {
    height: 100vh;
}

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

/*Swiper CCS*/
.swiper {
    width: 100%;
    min-height: 600px;
}

/*Radio Button*/
.radio-tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #696a6b;
}

.radio-tile-group .input-container {
    position: relative;
    /*height: 7rem;*/
    width: 12rem;
    margin: 0.4rem;
}

.radio-tile-group .input-container .radio-button {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
}

.radio-tile-group .input-container .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    /*border: 2px solid #c7c7c7;*/
    border-radius: 25px;
    padding: 1rem;
    transition: transform 300ms ease;
}

.radio-tile-group .input-container .icon svg {
    /*fill: #079ad9;*/
    width: 3rem;
    height: 3rem;
}

.radio-tile-group .input-container .radio-tile-label {
    margin-top: 0.2rem;
    text-align: center;
    font-size: 1.2rem;
    /*text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    /*letter-spacing: 1px;
    color: #079ad9;*/
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile {
    background-color: #eaeaea94;
    border: 2px solid #d2d6d9;
    color: white;
    transform: scale(1.1, 1.1);
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile .fas {
    /*background-color: #079ad9;*/
    /*border: 2px solid #079ad9;*/
    color: #f8f9fa;
    transform: scale(1.1, 1.1);
    font-size: 140px !important;
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile .icon svg {
    fill: white;
    /*background-color: #079ad9;*/
}

.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
    color: #727374;
    /*background-color: #079ad9;*/
}

/*Configuraciones*/
.btn-xxl {
    font-size: 2rem !important;
}

.title-xxl {
    font-size: 2.5rem !important;
}

/* Stars*/

.star-rating {
    font-size: 0;
    white-space: nowrap;
    display: inline-block;
    width: 500px;
    height: 100px;
    overflow: hidden;
    position: relative;
    background: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjREREREREIiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=");
    background-size: contain;
}
.star-rating i {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    z-index: 1;
    background: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjRkZERjg4IiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=");
    background-size: contain;
}
.star-rating input {
    -moz-appearance: none;
    -webkit-appearance: none;
    opacity: 0;
    display: inline-block;
    width: 20%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 2;
    position: relative;
}
.star-rating input:hover + i,
.star-rating input:checked + i {
    opacity: 1;
}
.star-rating i ~ i {
    width: 40%;
}
.star-rating i ~ i ~ i {
    width: 60%;
}
.star-rating i ~ i ~ i ~ i {
    width: 80%;
}
.star-rating i ~ i ~ i ~ i ~ i {
    width: 100%;
}
.choice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px;
    display: block;
}




/*Enmarcando el contenedor*/
.container-principal{
    max-width: 1280px !important;
    min-width: 1280px !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-right: auto;
    margin-left: auto;}
