/* Fonts */
/*
200	Extra-light
300	Light
400	Regular
500	Medium
600 SemiBold
700	Bold
800	ExtraBold
*/
@font-face {
  font-family: 'Dosis';
  src: url('../fonts/Dosis-ExtraLight.eot');
  src: url('../fonts/Dosis-ExtraLight.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Dosis-ExtraLight.svg#Dosis-ExtraLight') format('svg'),
       url('../fonts/Dosis-ExtraLight.ttf') format('truetype'),
       url('../fonts/Dosis-ExtraLight.woff') format('woff'),
       url('../fonts/Dosis-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Dosis';
  src: url('../fonts/Dosis-Light.eot');
  src: url('../fonts/Dosis-Light.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Dosis-Light.svg#Dosis-Light') format('svg'),
       url('../fonts/Dosis-Light.ttf') format('truetype'),
       url('../fonts/Dosis-Light.woff') format('woff'),
       url('../fonts/Dosis-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Dosis';
  src: url('../fonts/Dosis-Regular.eot');
  src: url('../fonts/Dosis-Regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Dosis-Regular.svg#Dosis-Regular') format('svg'),
       url('../fonts/Dosis-Regular.ttf') format('truetype'),
       url('../fonts/Dosis-Regular.woff') format('woff'),
       url('../fonts/Dosis-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Dosis';
  src: url('../fonts/Dosis-Medium.eot');
  src: url('../fonts/Dosis-Medium.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Dosis-Medium.svg#Dosis-Medium') format('svg'),
       url('../fonts/Dosis-Medium.ttf') format('truetype'),
       url('../fonts/Dosis-Medium.woff') format('woff'),
       url('../fonts/Dosis-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Dosis';
  src: url('../fonts/Dosis-SemiBold.eot');
  src: url('../fonts/Dosis-SemiBold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Dosis-SemiBold.svg#Dosis-SemiBold') format('svg'),
       url('../fonts/Dosis-SemiBold.ttf') format('truetype'),
       url('../fonts/Dosis-SemiBold.woff') format('woff'),
       url('../fonts/Dosis-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Dosis';
  src: url('../fonts/Dosis-Bold.eot');
  src: url('../fonts/Dosis-Bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Dosis-Bold.svg#Dosis-Bold') format('svg'),
       url('../fonts/Dosis-Bold.ttf') format('truetype'),
       url('../fonts/Dosis-Bold.woff') format('woff'),
       url('../fonts/Dosis-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Dosis';
  src: url('../fonts/Dosis-ExtraBold.eot');
  src: url('../fonts/Dosis-ExtraBold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Dosis-ExtraBold.svg#Dosis-ExtraBold') format('svg'),
       url('../fonts/Dosis-ExtraBold.ttf') format('truetype'),
       url('../fonts/Dosis-ExtraBold.woff') format('woff'),
       url('../fonts/Dosis-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}
/* Common */
html,
body
{
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}
html {
	scroll-behavior: smooth;
	background-color: #d64b5d;
}
body {
	font-family: Dosis, Arial, sans-serif;
	padding-right: 0 !important;
	background-color: #f6f6f6;
}
body.no-padding {
	padding-top: 0;
}
body.padding {
	padding-top: 106px;
}
body.white {
	background-color: #fff;
}
.container-fluid.grey {
	background-color: #f6f6f6;
}
form {
	width: 100%;
}
a {
	color: #ec4256;
	font-weight: 500;
}
a:hover,
a:focus {
	text-decoration: none;
	color: #333;
}
:target {
  margin-top: -100px;
  border-top: 100px solid transparent;
  background-clip: padding-box;
}
.uppercase {
	text-transform: uppercase;
}
/* Buttons */
.btn:focus,
.btn:hover,
.btn:active {
	box-shadow: none;
}
.btn-outline-primary {
	border-color: #EC4256;
	border-width: 2px;
	color: #EC4256;
	font-weight: 500;
}
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:active {
	background-color: #EC4256!important;
	border-color: #EC4256!important;
	color: #fff;
	border-width: 2px;
}
.btn-primary {
	background-color: #EC4256;
	border-color: #EC4256;
	border-width: 2px;
	color: #fff;
	font-weight: 500;
}
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active {
	background-color: #fff!important;
	border-color: #EC4256!important;
	color: #EC4256!important;
	border-width: 2px;
	box-shadow: none!important;
	outline: none!important;
}
.btn-success {
	background-color: #38bf5b;
	color: #fff;
	border: none;
}
.btn-success:focus,
.btn-success:hover,
.btn-success:active {
	background-color: #38bf5b!important;
	color: #fff;
	border: none!important;
	transform: scale(1.05);
	outline: none!important;
	box-shadow: none!important;
}
.btn-sm.btn-success:focus,
.btn-sm.btn-success:hover,
.btn-sm.btn-success:active {
	transform: scale(1.3);
}
/* Loading */
.loader,
.loader-sm {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
	z-index: 9999;
}
.loader {
	height: 100vh;
	background: #fff;
}
.loader-sm {
	height: 100%;
}
.loader .ring,
.loader-sm .ring{
	height: 45px;
	width: 45px;
	border: none;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.loader .ring:after,
.loader-sm .ring:after{
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border-top-color: transparent!important;
	animation: rotate 1.5s linear infinite;
}
.loader .ring:after {
	border: 5px solid #ff3d00;
}
.loader-sm .ring:after {
	border: 5px solid #fff;
}
.loader-sm .ring.alt:after {
	border: 5px solid #ff3d00;
}
@keyframes rotate {
	100%{
		transform: rotate(360deg);
	}
}
/* Top nav */
#top-nav,
#home-bg #top-nav.sticky {
	background-color: #ce2040;
	height: 30px;
	display: block;
	padding: 0;
}
#home-bg #top-nav {
	background-color:#e2384fcc;
}
#top-nav a,
#top-heading,
#top-heading-xs {
	padding: 0 5px;
	color: #fff;
}
#top-nav a:hover,
#top-nav a:focus,
#top-nav a:active,
#top-heading:hover,
#top-heading:focus,
#top-heading:active,
#top-heading-xs:hover,
#top-heading-xs:focus,
#top-heading-xs:active {
	text-decoration: underline;
}
#top-nav span {
	margin: 0;
	font-size: 0.9em;
	font-weight: 600;
}
#top-nav a {
	position: absolute;
	right: 0;
}
#top-heading,
#top-heading-xs {
	cursor: pointer;
}
#top-heading {
	display: none;
}
#top-collapse {
	background-color: #e2384f;
	color: #fff;
	transition: 200ms;
	-moz-transition: 200ms;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	min-height: 160px;
	padding-bottom: 10px;
}
#top-collapse form {
	padding: 10px 10px 0 10px;
	display: block;
	width: 100%;
	min-width: 250px;
	max-width: 500px;
	margin: 0 auto;
}
#top-collapse fieldset * {
	margin: 0 2px;
}
#top-collapse form input {
	font-size: 0.8em;
	font-weight: 700;
	line-height: 5px;
	border: none;
	border-radius: 5px;
	padding: 2px;
	color: #333;
}
#top-collapse h3 {
	text-align: center;
}
#top-collapse form #address {
	width: 70%;
}
#top-collapse form #city {
	width: 30%;
}
#top-collapse form #contact {
	width: 55%;
}
#top-collapse form button {
	width: 45%;
	background-color: #ce2040;
	font-weight: 700;
	border: none;
}
#top-collapse #top-collapse-close {
	position: absolute;
	right: 15%;
	top: 50px;
	color: #FFFFFF77;
	cursor: pointer;
}
#top-collapse #message {
	padding: 20px;
	text-align: center;
}
#top-collapse #message p {
	font-size: 1.2em;
}
#top-nav #top-text {
	display: none;
	position: absolute;
	left: 40%;
	font-weight: 500;
	color: #fff;
}
/* Cookie notice */
#cookie-bar {
	position: fixed;
	bottom: 0;
	background-color: #428081;
	width: 100%;
	z-index: 999;
	padding: 15px 60px;
	box-shadow: 0 -5px 10px -10px #666;
	color: #fff;
	font-weight: 600;
	text-align: center;
}
#cookie-bar form {
	display: inline-block;
	width: auto;
	padding: 10px;
}
#cookie-bar form * {
	margin: 0 2px;
}
/* Home bg */
#home-bg {
	height: 50vh;
	min-height: 530px;
	background: url('../images/home-bg.jpg') center top no-repeat;
	background-size: cover;
	background-attachment: scroll;
	padding-top: 86px;
	display: flex;
}
/* Main nav */
#main-nav {
	margin-top: 30px;
	padding: 0.5rem 0.8rem;
}
#main-nav,
#home-bg #main-nav.sticky {
	background-color: #fff;
	box-shadow: 0 5px 10px -10px #666;
	position: fixed;
	top: 0;
	width: 100%;
	height: 76px;
	z-index: 3;
}
#home-bg #main-nav {
	background-color: rgba(236, 66, 86, 0.8);
	box-shadow: none;
}
#main-nav #navbar {
	border-radius: 0px 0px 10px 10px;
	background-color: rgb(255, 255, 255);
	box-shadow: 0 5px 10px -5px #ccc;
	margin-top: 8px;
	margin-left: -16px;
	max-width: 80%;
}
#home-bg #main-nav:not(.sticky) #navbar {
	background-color: rgba(236,66,86,0.8);
	box-shadow: none;
}
#home-bg #main-nav:not(.sticky) #navbar .nav-link {
	color: #ccc;
}
#main-nav.sticky + .first-container {
	padding-top: 96px;
}
#home-bg #main-nav:not(.sticky) .navbar-brand #logo-red {
	display: none;
}
#main-nav.sticky .navbar-brand #logo-white,
#main-nav.navbar-light .navbar-brand #logo-white {
	display: none;
}
#home-bg #main-nav:not(.sticky) .navbar-brand #logo-white {
	display: inline-block;
}
#main-nav .navbar-toggler {
	border: none;
	font-size: 1.3rem;
	padding: .25rem .5rem;
}
#main-nav .navbar-toggler:active,
#main-nav .navbar-toggler:focus {
	border: none;
	outline: none;
}
#main-nav .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(236, 66, 86, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#home-bg #main-nav:not(.sticky) .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#main-nav .navbar-brand img {
	max-height: 50px;
	max-width: 110px;
}
#main-nav .mobile-account {
	padding: 0 10px;
}
#main-nav .mobile-account i {
	color: #EC4256;
}
#home-bg #main-nav:not(.sticky) .mobile-account i {
	color: rgba(255, 255, 255, 0.8);
}
#main-nav .desktop-account {
	display: none;
	padding: 2px 15px 2px 25px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 1.2em;
}
#home-bg #main-nav:not(.sticky) .desktop-account {
	color: rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.8);
}
#home-bg #main-nav:not(.sticky) .desktop-account:hover,
#home-bg #main-nav:not(.sticky) .desktop-account:focus
#home-bg #main-nav:not(.sticky) .desktop-account:active {
	color: #EC4256;
	background-color: #fefefe!important;
	border-color: #fefefe!important;
}
#main-nav .nav-link,
#home-bg #main-nav.sticky .nav-link {
	font-weight: 600;
	font-size: 1.2em;
	padding: 10px 15px;
	color: #626262;
}
#main-nav .nav-link:hover,
#main-nav .nav-link:active,
#main-nav .nav-link.active {
	color: #EC4256!important;
}
.dropdown-item.active,
.dropdown-item:active {
	background-color: #EC4256;
}
/* Footer */
footer {
	background-color: #d64b5d;
	font-size: 1.1em;
	box-shadow: inset 0px 5px 10px -10px #444;
}
footer .row {
	min-height: 80px;
	background: url('../images/footer-bg.png') center 35% no-repeat;
	background-size: auto 50%;
	text-shadow: 1px 1px #999;
	padding: 20px 10px;
	margin: 0 auto;
	max-width: 1366px;
}
footer .row div {
	display: flex;
	justify-content: center;
	align-items: center;
}
footer hr {
	width: 20%;
	border-color: rgba(255,255,255,0.7);
	border-width: 1px;
}
footer img {
	max-height: 200px;
	max-width: 100%;
}
footer p {
	color: #fff;
}
footer p small {
	font-weight: 600;
}
footer a {
	color: #fff;
	font-weight: 300;
	opacity: 0.8;
}
footer a:hover,
footer a:active,
footer a:focus {
	color: #fff;
	opacity: 1;
}
footer i {
	margin: 0 3px;
}
footer h4,
footer h5 {
	color: #fff;
	font-weight: 700;
	margin: 0;
}
footer h4 {
	margin-bottom: 5px;
}
footer h5 {
	font-size: 1.2em;
	text-transform: uppercase;
	margin: 10px 0;
	font-weight: 800;
}
footer ul {
	list-style: none;
	padding: 0;
	margin: 0 0 5px 0;
}
footer ul li a {
	font-size: 1.1em;
	font-weight: 400;
}
footer .contact {
	padding: 0 10px;
	text-align: center;
}
footer .contact .contact-inner {
	display: inline-block;
	border-radius: 10px;
	padding: 0;
	text-align: left;
}
footer .info {
	margin-top: 60px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	justify-content: center;
	flex-direction: column;
}
footer .info p {
	width: 100%;
	text-align: center;
}
footer .copy {
	margin-top: 15px;
}
/* Modals */
.modal {
	margin-right: -17px!important;
}
.modal-content {
	border: none;
	color: #fff;
	font-weight: 700;
	border-radius: 15px;
	background-color: #c13a48;
	background-position: bottom center;
	background-size: contain;
	background-repeat: no-repeat;
	min-height: 240px;
	font-size: 1.4em;
}
.modal-content a {
	color: #ffa7a6;
}
.modal-content a:hover,
.modal-content a:visited {
	color: #fff;
}
.modal-content ul {
	list-style: none;
	padding: 0 5px;
	margin: 0;
}
.modal-content p.small {
	text-align: left;
	margin: 30px 0 0 0;
	font-weight: 600;
	font-size: 0.6em;
}
.modal-header {
	border: none;
	background-color: #c13a48;
	border-radius: 15px;
	color: #fff;
	padding: 15px 1rem 0.6rem 1rem;
}
.modal-header .modal-title {
	font-size: 1.7em;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 auto;
}
.modal-header button.close {
	color: #fff;
	font-size: 3em;
	padding: 5px 20px 0 0;
	z-index: 1;
	position: absolute;
	right: 10px;
}
.modal-body {
	padding-top: 5px;
}
/* Te llamamos modal */
#te-llamamos h6 {
	font-size: 1.4em;
	font-weight: 800;
	margin: 5px 0;
}
#te-llamamos .modal-content {
	text-align: center;
}
#te-llamamos form {
	padding: 10px 0;
	text-align: center;
}
#te-llamamos form input[type="tel"],
#te-llamamos form select {
	font-size: 1.2em;
	font-weight: 800;
	line-height: 5px;
	border: none;
	border-radius: 5px;
}
#te-llamamos form input[type="tel"] {
	color: #c13a48;
	background-color: #fff;
}
#te-llamamos form select {
	color: #fff;
	background-color: #c13a48;
}
#te-llamamos form select option:disabled {
	color: #efefef;
}
#te-llamamos form input::-webkit-input-placeholder {
	font-size:1.7em;
	position: absolute;
	letter-spacing: 2px;
	opacity: 1;
}
#te-llamamos form input:-ms-input-placeholder {
	font-size:1.7em;
	position: absolute;
	letter-spacing: 2px;
	opacity: 1;
}
#te-llamamos form input::placeholder {
	font-size:1.7em;
	position: absolute;
	letter-spacing: 2px;
	opacity: 1;
}
#te-llamamos form input[name="phone_number"]{
	width: 160px!important;
	border-radius: 5px;
	border: 2px solid #c13a48;
}
#te-llamamos form button {
	border-radius: 40%;
	margin-top: -8px;
	margin-left: 5px;
}
/* Fibra detalles modal */
#ver-detalles .modal-content {
	color: #468aca;
}
#ver-detalles .modal-content .modal-body {
	margin-top: -40px;
}
#ver-detalles .modal-content .col-1 {
	padding: 0 2px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
	justify-content: center;
}
#ver-detalles .modal-content .col-11,
#ver-detalles .modal-content .col-5 {
	padding: 0 5px;
}
#ver-detalles .modal-content ul {
	margin-bottom: 5px;
}
#ver-detalles .modal-content .col-5 ul {
	margin-top: 10px;
}
#ver-detalles .modal-content img {
	max-width: 100%;
}
/* Tabs */
.center-tabs.desktop {
	display: none;
}
.center-tabs.nav-tabs {
	justify-content: center;
	border: none;
	margin-bottom: 50px;
}
.center-tabs.nav-tabs a.active,
.center-tabs.nav-tabs a:hover,
.center-tabs.nav-tabs a:focus {
	-webkit-transition-duration: 300ms;
	-moz-transition-duration: 300ms;
	-ms-transition-duration: 300ms;
	-o-transition-duration: 300ms;
	transition-duration: 300ms;
	background-color: rgba(255,255,255,0.9);
	color: #424242;
}
.center-tabs.nav-tabs a {
	border-radius: 0;
	border: 1px solid #ccc;
	color: #424242;
	background-color: #fff;
}
.center-tabs.nav-tabs li:first-child a {
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem;
	border-right: none!important;
}
.center-tabs.nav-tabs li:last-child a {
	border-top-right-radius: .25rem;
	border-bottom-right-radius: .25rem;
	border-left: none!important;
}
.center-tabs.light.nav-tabs a.active,
.center-tabs.light.nav-tabs a:hover,
.center-tabs.light.nav-tabs a:focus {
	background-color: #EC4256;
	color: #fff;
}
.center-tabs.nav-tabs.light li:not(:first-child) a {
	border-left: none;
}
.center-tabs.nav-tabs.light li:not(:last-child) a {
	border-right: none;
}
/* Plans Banner */
.container-banner {
	background-color: #fff;
}
#home-bg .container-banner {
	background: none;
	align-self: center;
	padding: 0;
}
.plans-banner {
	margin: 106px auto 0 auto;
	max-width: 768px;
	padding: 20px 0;
}
#home-bg .plans-banner {
	margin-top: 5px;
	padding: 0;
}
.plans-banner .banner-plan {
	padding: 0;
	width: 25%!important;
}
.plans-banner a {
	display: block;
	padding: 10px 0;
}
.plans-banner .section {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 55%;
	transition: ease 0.1s;
}
.plans-banner .section:hover,
.plans-banner .section:active,
.plans-banner .section:focus {
	transform: scale(1.05);
}
.plans-banner .section p {
	font-size: 0.70em;
	margin: 60% 0 0 0;
	color: #EC4256;
	font-weight: 700;
}
.plans-banner .section:active p,
.plans-banner .section:focus p {
	color: #fefefe!important;
}
#home-bg .plans-banner .section p {
	color: #ff747f;
	text-shadow: 0 0 10px #000;
}
.plans-banner .section h2 {
	color: #626262;
	font-size: 0.9em;
	font-weight: 700;
	margin: 10px 0;
}
#home-bg .plans-banner .section h2 {
	color: #fff;
}
.plans-banner .section:active h2,
.plans-banner .section:focus h2 {
	color: #ff7989!important;
}
.plans-banner .section.fibraymovil {
	background-image: url('../images/icono-fibra+movil-g.png');
}
#home-bg .plans-banner .section.fibraymovil {
	background-image: url('../images/icono-fibra+movil.png');
}
.plans-banner .section.fibraymovil:active,
.plans-banner .section.fibraymovil:focus,
.plans-banner .section.fibraymovil.active {
	background-image: url('../images/icono-fibra+movil-hover.png')!important;
}
.plans-banner .section.movil {
	background-image: url('../images/icono-movil-g.png');
}
#home-bg .plans-banner .section.movil {
	background-image: url('../images/icono-movil.png');
}
.plans-banner .section.movil:active,
.plans-banner .section.movil:focus,
.plans-banner .section.movil.active {
	background-image: url('../images/icono-movil-hover.png')!important;
}
.plans-banner .section.fibra {
	background-image: url('../images/icono-fibra-g.png');
}
#home-bg .plans-banner .section.fibra {
	background-image: url('../images/icono-fibra.png');
}
.plans-banner .section.fibra:active,
.plans-banner .section.fibra:focus,
.plans-banner .section.fibra.active {
	background-image: url('../images/icono-fibra-hover.png')!important;
}
.plans-banner .section.familiar {
	background-image: url('../images/icono-familiar-g.png');
}
#home-bg .plans-banner .section.familiar {
	background-image: url('../images/icono-familiar.png');
}
.plans-banner .section.familiar:active,
.plans-banner .section.familiar:focus,
.plans-banner .section.familiar.active {
	background-image: url('../images/icono-familiar-hover.png')!important;
}
.plans-banner .section.ofertas {
	background-image: url('../images/icono-ofertas-g.png');
}
#home-bg .plans-banner .section.ofertas {
	background-image: url('../images/icono-ofertas.png');
}
.plans-banner .section.ofertas:active,
.plans-banner .section.ofertas:focus,
.plans-banner .section.ofertas.active {
	background-image: url('../images/icono-ofertas-hover.png')!important;
}
/* Banners */
.container-banner img.banner {
	width: 100%;
	max-width: 100%;
	margin-top: 106px;
}
.banner-text h2 {
	font-size: 1.2em;
	font-weight: 700;
	line-height: 0.9em;
	margin-bottom: 5px;
}
.banner-text h2 small {
	font-weight: 600;
}
.banner-text h3 {
	font-size: 1em;
	font-weight: 600;
}
.banner-text {
	position: absolute;
	top: 76px;
	display: block;
	z-index: 1;
	width: 30%;
	text-align: center;
}
.banner-text.movil {
	right: 0;
	padding-top: 10%;
}
.banner-text.movil h2,
.banner-text.movil h3 {
	text-shadow: 0px 0px 7px #755;
}
.banner-text.movil h2 {
	color: #ffd1d8;
}
.banner-text.movil h3 {
	color: #ecfffd;
}
.banner-text.fibra {
	padding-top: 4%;
	padding-left: 5%;
}
.banner-text.fibra h2,
.banner-text.fibra h3 {
	text-shadow: 0px 0px 10px #444;
}
.banner-text.fibra h2 {
	color: #fde4d0;
}
.banner-text.fibra h3 {
	color: #edece8;
}
.banner-text.fibraymovil {
	right: 20%;
	padding-top: 5%;
}
.banner-text.fibraymovil h2,
.banner-text.fibraymovil h3 {
	text-shadow: 0px 0px 10px #333;
}
.banner-text.fibraymovil h2 {
	color: #4aa5a6;
}
.banner-text.fibraymovil h3 {
	color: #d6dde5;
}
.banner-text.familiar {
	left: 0;
	padding-top: 8%;
	width: 40%;
}
.banner-text.familiar h2,
.banner-text.familiar h3 {
	text-shadow: 0px 0px 7px #755;
}
.banner-text.familiar h2 {
	color: #f1f3ee;
}
.banner-text.familiar h3 {
	color: #fff;
}
/* HOME */
h2.home {
	margin: 60px auto 30px auto;
	display: inline-block;
	font-weight: 700;
	padding: 5px 20px;
	color: #fff;
	background-image: linear-gradient(to right, #00d9d4, #93c2ec, #b3b3f4);
	box-shadow: 2px 6px 0 -2px #000;
	text-transform: uppercase;
}
#info-beneficios {
	font-size: 1.2em;
	box-shadow: 5px 5px 10px -2px #777;
	padding: 40px 5px 20px 5px;
	background-color: #fff;
	margin: 70px auto 90px auto;
}
#info-beneficios h1 {
	font-weight: 800;
	text-align: center;
	font-size: 1.6em;
}
#info-beneficios h1 span {
	color: #EC4256;
}
#info-beneficios .row {
	margin: 20px auto;
	padding: 0;
}
#info-beneficios h2 {
	text-transform: uppercase;
	font-size: 1.3em;
	font-weight: 600;
	color: #424242;
	margin: 20px 0 20px 0;
}
#info-beneficios .text {
	color: #424242;
	margin: 0;
	width: 75%;
	text-align: left;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#info-beneficios .img {
	padding: 0 10px;
	width: 25%;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
	flex-direction: row;
	align-items: center;
}
#info-beneficios .img img {
	width: 100%;
	max-width: 70px;
}
#info-beneficios .row .col-12 {
	padding: 0;
}
#info-beneficios .card {
	text-align: center;
	padding: 20px 5%;
	border-radius: 0;
	height: 100%;
	font-weight: 500;
	border: none;
	flex-direction: row;
}
#home-banners {
	margin-bottom: 50px;
}
#home-banners h2 {
	font-weight: 600;
	font-size: 1.5em;
}
#home-banners h2 span.mio {
	color: #000;
	transform: scale(1.4);
	font-weight: 700;
	text-shadow: none;
}
#home-banners .banner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 50px 15px;
}
#home-banners .app-logos {
	margin-top: 20px;
}
#home-banners .app-logos a {
	margin: 0 2px;
}
#home-banners .app-logos a img:hover,
#home-banners .app-logos a img:active {
	transform: scale(1.03);
}
#home-banners .banner-vf {
	background-color: #fff;
}
#home-banners .banner-vf h2 {
	color: #ef1d28;
}
#home-banners .banner-vf h2 small {
	color: #ec929e;
	font-size: 0.7em;
	font-weight: 600;
}
#home-banners .banner-vf img {
	width: 10%;
	align-self: flex-start;
	margin-left: 20px;
}
#home-banners .banner-mio1 {
	background-color: #5b6391;
}
#home-banners .banner-mio1 h2 {
	color: #fff;
}
#home-banners .banner-mio2 {
	background-color: #80c2b8;
	text-shadow: 0px 0px 5px #444;
}
#home-banners .banner-mio2 h2 {
	color: #fff;
}
#info-empresa {
	text-align: center;
	background: #000 url('../images/home-bg.jpg') center top no-repeat;
	background-size: cover;
	background-attachment: scroll;
	color: #fff;
}
#info-empresa .gradient {
	background-image: linear-gradient(transparent, rgba(0,0,0,0.6) 50%);
	padding: 50px 30px;
}
#info-empresa .tab-pane {
	padding: 40px 0;
	height: 930px;
}
#info-empresa .nav-tabs a.active,
#info-empresa .nav-tabs a:hover,
#info-empresa .nav-tabs a:focus {
	background-color: rgba(255,255,255,0.9);
	color: #424242;
}
#info-empresa .nav-tabs a {
	background-color: transparent;
	border: 1px solid #ccc;
	color: #f8f8f9;
}
#info-empresa h2,
#info-empresa h3,
#info-empresa p {
	font-weight: 700;
	text-shadow: 1px 1px 5px #000;
}
#info-empresa h2,
#info-empresa h3 {
	text-transform: uppercase;
}
#info-empresa i.far,
#info-empresa i.fas {
	margin-bottom: 20px;
}
#info-empresa blockquote {
	font-style: italic;
	font-weight: 500;
}
#info-empresa blockquote strong {
	font-style: normal;
}
#info-empresa a.btn-primary {
	margin-bottom: 20px;
	border-radius: 25px;
	padding-left: 30px;
	padding-right: 30px;
	text-transform: uppercase;
	font-weight: 500;
}
#info-empresa a.btn-primary:hover,
#info-empresa a.btn-primary:focus,
#info-empresa a.btn-primary:active {
	background-color: transparent!important;
}
#info-empresa img.logo {
	max-width: 200px;
	margin-top: 20%;
}
#info-empresa #manual .col-12 {
	text-align: center;
}
/*
-- Plans --
*/
#tarifas {
	padding-top: 3%;
}
select.taxes {
	max-width: 250px;
	margin-left: auto;
}
#tarifas h2 {
	text-align: center;
	font-weight: 700;
}
/* New tarifas */
.tarifas {
	margin: 20px 0 80px 0;
}
.tarifas .col-12 {
	margin: 0 auto;
}
.tarifas .box {
	box-shadow: 5px 5px 10px -5px #777;
	margin: 15px auto;
	max-width: 350px;
}
.tarifas .box a {
	color: #000;
	display: block;
}
.tarifas .box .header {
	width: 100%;
	padding: 0;
	color: #fff;
	font-weight: 700;
	font-size: 1.3em;
	text-align: center;
	height: 32px;
}
.tarifas .box .body {
	background: #fff;
	width: 100%;
	text-align: center;
	padding: 10px 15px;
	position: relative;
}
.tarifas.home .box .body {
	min-height: 240px;
}
.tarifas.movil .box .body {
	min-height: 320px;
}
.tarifas.fibra .box .body {
	min-height: 340px;
}
.tarifas.fibraymovil .box .body {
	min-height: 440px;
}
.tarifas .box .body * {
	position: relative;
	z-index: 1;
}
.tarifas .box .body .bg {
	width: 60%;
	position: absolute;
	right: 20%;
	top: 50px;
}
.tarifas .box h3 {
	font-weight: 800;
	font-size: 2.8em;
	margin: 20px 0;
}
.tarifas .box h3 small {
	font-weight: 800;
}
.tarifas .box p {
	font-size: 1.2em;
	font-weight: 500;
}
.tarifas .box .btn {
	font-weight: 700;
	font-size: 1.4em;
	padding: 0 10px 5px 10px;
	border-radius: 10px;
	/* background-color: #38bf5b;
	color: #fff; */
	background: #fff;
	border: 3px solid #d53f44;
	color: #d53f44;
	margin: 20px 0;
}
.tarifas .box .btn:hover,
.tarifas .box .btn:focus {
	/*transform: scale(1.27);*/
	background: #d53f44;
	border-color: #d53f44;
	color: #fff;
}
.tarifas .box .info {
	margin: 5px 0;
	text-align: left;
	font-size: 1.17em;
	font-weight: 600;
	padding: 5px 0;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
	align-items: center;
}
.tarifas .box .info img {
	width: 40px;
	height: auto;
	float: left;
	clear: both;
	margin-right: 5px;
}
.tarifas .box .sm {
	position: absolute;
	bottom: 15px;
	width: 100%;
	padding: 0 15px;
}
.tarifas .box .sm .info {
	font-size: 0.9em;
	padding: 0;
}
.tarifas.movil .box .sm .info {
	font-size: 1em;
}
/*
 Ofertas
*/
.ofertas {
	padding: 70px 70px 50px 70px;
	position: relative;
}
.ofertas #goToPrevSlide {
	position: absolute;
	top: 50%;
	left: 20px;
}
.ofertas #goToNextSlide {
	position: absolute;
	top: 50%;
	right: 0;
}
#slider-ofertas .caption {
	position: static;
	text-align: left;
	padding-bottom: 70px;
}
#slider-ofertas a {
	display: block;
}
#slider-ofertas h2,
#slider-ofertas h3 {
	font-weight: 700;
}
#slider-ofertas h2 {
	color: #424242;
	font-size: 1.5em;
}
#slider-ofertas h3 {
	color: #EC4256
}
#slider-ofertas .btn {
	position: absolute;
	top: 85%;
	border-radius: 25px;
	padding: 0 30px 2px 30px;
	font-weight: 700;
	font-size: 1.2em;
	color: #424242;
	border-color: #424242;
	border-width: 2px;
}
#slider-ofertas .btn:focus,
#slider-ofertas .btn:hover,
#slider-ofertas .btn:active {
	color: #fff;
	background-color: #424242;
}
/* ---
START CONTRATACION
--- */
#pedido {
	margin: 0 auto 10px auto;
	max-width: 800px;
	max-height: 95%;
	position: relative;
	z-index: 1;
}
.no-padding #pedido {
	margin-top: 10px;
}
#pedido .inner {
	background-color: #fff;
	border: 2px solid #424242;
	overflow-y:auto;
	box-shadow: 5px 5px 10px -5px #777;
}
#pedido h2 {
	background: #424242 url('../images/xs-logo-brand.png') 98% center no-repeat;
	background-size: auto 70%;
	color: #fff;
	padding: 10px;
	margin-bottom: 0;
}
#pedido .tag {
	background-color: #43a0e8;
	color: #fff;
	display: inline-block;
	clear: both;
	padding: 4px 15px;
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 1.2em;
	position: absolute;
	left: -2px;
	z-index: 1;
	box-shadow: 5px 5px 5px -5px #777;
}
#pedido h4 {
	font-weight: 700;
	color: #424242;
	padding: 0 10px;
	text-transform: uppercase;
	font-size: 2em;
	margin-bottom: 0;
}
#pedido .price {
	float: right;
	text-align: right;
}
#pedido .price.total {
	line-height: 0.7em;
	font-size: 2.4em;
	font-weight: 800;
}
#pedido .price.total small {
	font-size: 0.7em;
	text-transform: none;
	font-weight: 600;
}
#pedido .price.total span {
	text-transform: uppercase;
	font-size: 0.7em;
	font-weight: 400;
}
#pedido h5 {
	margin: 0;
	font-weight: 700;
	color: #424242;
}
#pedido .after_price {
	color: #999;
}
#pedido button {
	border-radius: 50%;
	margin: 0 0 0 10px;
	padding: .2rem .45rem
}
#pedido #pedido-list {
	padding-top: 45px;
}
#pedido ul {
	padding: 0 10px;
	list-style: none;
}
#pedido ul li {
	margin-bottom: 10px;
}
#pedido ul li:before {
	content: '';
	width: 25px;
	height: 40px;
	display: block;
	float: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
#pedido ul li.movil:before {
	background-image: url('../images/icono-movil-g.png');
}
#pedido ul li.fibraymovil:before {
	background-image: url('../images/icono-fibra+movil-g.png');
}
#pedido ul li.fibra:before {
	background-image: url('../images/icono-fibra-g.png');
}
#pedido ul li.familiar:before {
	background-image: url('../images/icono-familiar-g.png');
}
#pedido-list .first h5.price {
	font-size: 1.5em;
	margin-right: 6px;
}
#pedido .taxes {
	margin: auto 0 0 5px;
	padding: 0 5px;
	height: auto;
	background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='24' height='20' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='gray'/></g></svg>") right bottom no-repeat;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
	border-radius: 0px;
    appearance: none;
    outline-width: 0;
    display: block;
    border: none;
    font-size: 1em;
	width: 230px;
}
.pedido-left {
	padding-top: 15px;
	max-width: 800px;
	margin: 0 auto;
}
#add-plans-accordion .card,
#add-plans-accordion .card-header {
	border: 1px solid #ccc;
	border-radius: 0;
	padding: 0;
	background-color: #fff;
}
#add-plans-accordion .btn-link:hover,
#add-plans-accordion .btn-link:active,
#add-plans-accordion .btn-link:focus {
	text-decoration: none!important;
}
#add-plans-accordion .card {
	margin: 0 5px 10px 5px;
	box-shadow: 5px 5px 10px -5px #777;
}
#add-plans-accordion .card-header {
	background-color: transparent;
	padding: 0;
	border: none;
}
#add-plans-accordion .card-header button[data-toggle="collapse"] {
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	color: #424242;
	padding: 10px 10px 10px 40px;
	font-weight: 700;
	font-size: 1em;
	line-height: 0.9em;
}
#add-plans-accordion .card-header button[data-toggle="collapse"]:after {
	content: "\003E";
	color: #999;
	font-size: 28px;
	line-height: 22px;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	position: absolute;
	right: 15px;
	font-weight: 400;
	display: block;
	top: 5px;
	width: 20px;
	height: 30px;
	text-align: center;
}
#add-plans-accordion .card-header button[data-toggle="collapse"].collapsed:after {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
#add-plans-accordion .collapsing {
	transition: height 0.6s;
}
#add-plans-accordion .card-body {
	padding-right: 4%;
}
#add-plans-accordion .plan {
	border: 1px solid #ccc;
	box-shadow: 5px 5px 10px -5px #777;
	max-width: 90%;
	padding: 0 10px 20px 20px!important;
	margin-bottom: 20px;
	background-color: #fff;
}
#add-plans-accordion .plan p {
	margin: 0;
	color: #424242;
	font-weight: 600;
	font-size: 1.2em;
}
#add-plans-accordion .plan p.title {
	position: relative;
	top: -10px;
	background-color: #EC4256;
	display: inline-block;
	padding: 0px 10px;
	border-radius: 15px;
	color: #fff;
	box-shadow: 5px 5px 7px -5px #777;
}
#add-plans-accordion .plan p.price {
	float: right;
	font-weight: 800;
	font-size: 1.3em;
	margin-top: 25px;
	margin-left: 15px;
}
#add-plans-accordion .plan p.after-price {
	font-weight: 500;
	font-size: 1.1em;
	margin-top: 0;
}
#add-plans-accordion button[type="submit"]{
	border-radius: 50%;
	margin-top: 26px;
}
#add-plans-accordion .card-header:before {
	content: '';
	width: 25px;
	height: 30px;
	display: block;
	position: absolute;
	left: 8px;
	top: 5px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
#add-plans-accordion #heading-movil:before {
	background-image: url('../images/icono-movil-g.png');
}
#add-plans-accordion #heading-fym:before {
	background-image: url('../images/icono-fibra+movil-g.png');
}
#pedido-form {
	padding-top: 30px;
}
#pedido-form .row {
	background-position: left center;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #fff;
	padding: 20px 0;
	box-shadow: 5px 5px 10px -5px #777;
	margin: 0 5px 15px 5px;
	border: 1px solid #ccc;
}
#pedido-form h2:not(.modal-title) {
	font-size: 1.3em;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
	margin-left: 5px;
}
#pedido-form label,
#pedido-form input {
	font-weight: 500;
}
#pedido-form label {
	color: #EC4256;
	font-weight: 700;
	margin: 5px 0 5px 15px;
	display: block;
}
#pedido-form input {
	background: #fff;
	border-radius: 3px;
	border-color: #ccc;
	color: #424242;
}
#pedido-form input::placeholder {
	color: #999;
}
#terms-check a {
	color: #424242; font-weight: 700;
}
#pedido-form .modal-dialog {
	max-width: 800px;
}
#pedido-form .modal-header {
	font-size: 0.7em;
}
#pedido-form #terms .modal-body,
#pedido-form #shipment .modal-body {
	color: #424242;
	font-weight: 400;
	font-size: 0.8em;
	background-color: #fff;
}
#pedido-form .modal-body h1 {
	font-size: 2em;
}
#pedido-form .modal-content a {
	color: #EC4256;
}
#pedido-form .modal-content a:hover,
#pedido-form .modal-content a:visited {
	color: #ee273e;
}
#pedido-form #check-data {
	padding-right: 0!important;
}
#pedido-form #check-data .modal-dialog {
	max-width: 700px;
}
#pedido-form #check-data .modal-content {
	border-radius: 0;
	background-color: #424242;
}
#pedido-form #check-data .modal-header {
	font-size: 0.7em;
	border-radius: 0;
	background-color: #424242;
}
#pedido-form #check-data .modal-body {
	font-size: 0.8em;
	color: #999;
}
#pedido-form #check-data .modal-body .row {
	box-shadow: none;
}
#pedido-form #check-data h4 {
	text-align: center;
}
#pedido-form #check-data h5 {
	color: #333;
	margin-bottom: 20px;
}
#pedido-form #check-data .modal-body span {
	color: #424242;
}
#pedido-form #check-data ul {
	list-style: disc;
	padding-left: 20px;
}
#pedido-form #check-data span.price {
	float: right;
}
#pedido-form #check-data p.total {
	text-align: right;
	font-size: 1.2em;
}
#pedido-form #check-data hr {
	height: 1px;
	margin: 6px 10px;
}
#pedido-form #check-data .modal-body .row {
	margin-bottom: 5px;
}
#pedido-form #check-data .modal-body .form-group {
	margin-bottom: 0;
}
#pedido-form #check-data .comprobar {
	margin-bottom: 10px;
	display: block;
	max-width: 50%;
}
img#redsys-sm {
	position: absolute;
	right: 5px;
	bottom: 5px;
	max-width: 25%;
}
img#redsys {
	display: block;
	margin: 0 auto;
}
.pedido-realizado {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
	justify-content: center;
	height: 100%;
	max-width: 600px;
	margin: 50px auto;
	text-align: center;
	min-height: 50vh;
}
#contact-list {
	text-align: left;
	list-style: none;
	padding: 20px;
	background-color: #fff;
	font-size: 1.2em;
	display: inline-block;
	box-shadow: 0 0 10px -7px #666;
}
/* Tarifa */
.tarifa-header {
	color: #fff;
	box-shadow: inset 0 2px 7px -5px #424242;
	position: relative;
}
.tarifa-header .row div:not(.col-0) {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	justify-content: center;
	flex-direction: column;
	padding-top: 20px;
	padding-bottom: 20px;
}
.tarifa-header .row :first-child {
	padding-right: 0;
}
.tarifa-header img.type {
	max-width: 120px;
	width: 100%;
	margin: 10% 0 10% auto;
	padding: 0 10px;
}
.tarifa-header img.bg {
	height: 65%;
	position: absolute;
	top: 50px;
	right: -90px;
	z-index: 0;
}
.tarifa-header h1,
.tarifa-header h2 {
	font-weight: 800;
	width: 100%;
	padding-left: 5%;
}
.tarifa-header h1 {
	text-transform: uppercase;
	font-size: 1.3em;
}
.tarifa-header h2 {
	font-size: 1.3em;
}
.info-tarifa {
	box-shadow: 0 2px 7px -1px #424242;
	padding: 0;
}
.info-tarifa .tarifa {
	padding: 30px 20px;
}
.info-tarifa .grey {
	box-shadow: inset 0 3px 5px -5px #424242, inset 0 -4px 4px -5px #424242;
	padding-top: 20px;
	padding-bottom: 20px;
}
.info-tarifa .tarifa .row .col-12 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.info-tarifa .tarifa h3 {
	font-weight: 700;
	line-height: 1.4em;
	text-align: left;
	margin-bottom: 15px;
}
.info-tarifa .tarifa .label-green {
	border-radius: 5px;
	padding: 10px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	background-color: #38bf5b;
	font-size: 1.3em;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
}
.info-tarifa .grey .icon {
	float: left;
	width: 30px;
	margin-right: 10px;
}
.info-tarifa .grey h4 {
	font-size: 1.7em;
	text-transform: uppercase;
	font-weight: 700;
}
.info-tarifa .tarifa ul {
	padding-left: 15px;
}
#pedido.tarifa {
	padding: 20px 10px;
	text-align: left;
}
#pedido.tarifa .inner {
	border: none;
	box-shadow: 0px 0px 15px -5px #777;
}
#pedido.tarifa .tag {
	top: 18px;
	left: 8px;
}
#pedido.tarifa .contratar {
	text-align: center;
}
#pedido.tarifa button[type="submit"].btn-success {
	border-radius: 3px;
	font-weight: 700;
	padding: 5px 30px;
	text-align: center;
	margin: 10px 0 15px 0;
	text-transform: uppercase;
}
.info-tarifa #tarifas {
	padding: 0;
}
.info-tarifa .primeros-pasos h2 {
	font-weight: 700;
}
.info-tarifa .primeros-pasos h5 {
	font-weight: 700;
}
.info-tarifa .primeros-pasos .step i {
	float: left;
	margin: 10px 20px 10px 0;
}
/* LEGAL */
.legal-title {
	padding: 20px 20px 10px 20px;
	background-color: #fff;
	margin: 0 auto 20px auto;
	text-align: center;
	width: 90%;
	box-shadow: 0 1px 6px -5px #444;
	border-radius: 10px;
}
/* ROAMING */
#roaming-mio {
	text-align: center;
	display: block;
	margin: 0 auto;
	max-width: 600px;
}
#roaming-mio .apps {
	background-color: #000;
	display: inline-block;
	border-radius: 10px;
	padding: 0 5px;
	margin-bottom: 20px;
}
#roaming-mio .apps img.mio {
	display: block;
	margin: 0 auto;
	max-width: 150px;
}
#roaming-mio .apps a {
	margin: 5px 1px;
	display: inline-block;
}
#roaming-mio .apps a:hover,
#roaming-mio .apps a:active {
	transform: scale(1.02);
}
#roaming-mio ol {
	text-align: left;
}
#roaming-zona-1 {
	display: block;
	margin: 20px auto;
	max-width: 800px;
	border: 1px solid #333;
	padding: 0 10px;
}
#roaming-zona-1 h2 {
	text-align: center;
}
/* Contact form */
#contact-form {
	max-width: 600px;
	min-height: 200px;
	padding: 20px;
	margin: 20px auto;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px -7px #666;
}
#contact-form #message {
	text-align: center;
	padding-top: 30px;
}
#contact input,
#contact textarea {
	background-color: #f6f6f6;
	border-collapse: collapse;
	border: none;
	margin: 5px;
}
#contact textarea {
	width: 100%;
	height: 200px;
}
#contact h1 {
	margin-bottom: 20px;
}
#contact-form #submit {
	display: block;
	margin: 20px auto;
}
.recaptcha {
	margin-top: 10px;
	display: inline-block;
	width: auto;
}
#recaptcha-phone,
#recaptcha-coverage {
	transform: scale(0.85);
	-o-transform: scale(0.85);
	-ms-transform: scale(0.85);
	-moz-transform: scale(0.85);
	-webkit-transform: scale(0.85);
}
.error {
	background-color: rgba(255,0,0,0.4);
	border: 1px solid #c00;
	border-radius: 10px;
	padding: 5px;
	margin: 0 auto 5px auto;
	max-width: 350px;
	text-align: center;
}
.error.alt {
	background-color: #efefef;
	color: #c00;
	border: none;
}
.error p {
	margin: 0;
}