* {
  font-family: 'Roboto',sans-serif;
  margin: 0;
  padding: 0;
}

.main-container {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-container .mobile-screen {
  width: 100%;
  background: #F7F7F7;
}

@media (min-width: 768px) {
  .main-container .mobile-screen {
    width: 40%;
  }
}

@media (min-width: 992px) {
  .main-container .mobile-screen {
    width: 30%;
  }
}

@media (min-width: 1200px) {
  .main-container .mobile-screen {
    width: 25%;
  }
}

.main-container .mobile-screen .credit-card {
  text-align: center;
  position: relative;
  color: #F7F7F7;
}

.main-container .mobile-screen .credit-card h3 {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  font-weight: 500;
}

.main-container .mobile-screen .credit-card .fondo {
  -webkit-clip-path: polygon(0 1%, 100% 0, 100% 100%, 0 20%);
  clip-path: polygon(0 1%, 100% 0, 100% 100%, 0 20%);
  background-color: #5288F4;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  z-index: 0;
}

.main-container .mobile-screen .credit-card img {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  max-width: 80%;
}

.main-container .mobile-screen .features {
  width: 80%;
  margin: 0 auto;
}

.main-container .mobile-screen .features .feature {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 30px 0;
}

.main-container .mobile-screen .features .feature img {
  margin-right: 20px;
}

.main-container .mobile-screen .features .feature .button {
  margin-left: auto;
}

.main-container .mobile-screen .features .feature .button .switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.main-container .mobile-screen .features .feature .button .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.main-container .mobile-screen .features .feature .button .switch input:checked + .slider {
  background-color: #5288F4;
}

.main-container .mobile-screen .features .feature .button .switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

.main-container .mobile-screen .features .feature .button .switch .slider {
  position: absolute;
  /* Sin esto no anda */
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  border-radius: 34px;
  border: 1px solid #ccc;
}

.main-container .mobile-screen .features .feature .button .switch .slider:before {
  position: absolute;
  content: "";
  height: 28px;
  width: 28px;
  left: 0;
  bottom: 0px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.main-container .mobile-screen .features .feature .feature-description {
  margin-right: auto;
}

.main-container .mobile-screen .features .feature .feature-description p {
  font-weight: 700;
}

.main-container .mobile-screen .features .feature .feature-description p.small {
  font-weight: 500;
  color: #aaa;
  font-size: 0.8em;
}
/*# sourceMappingURL=styles.css.map */