@charset "UTF-8";
/* Library  */ /*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@import url(https://fonts.googleapis.com/css?family=Anton|Bevan|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);
@font-face {
  font-family: "FontAwesome";
  src: url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0")
      format("embedded-opentype"),
    url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0")
      format("woff2"),
    url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0")
      format("woff"),
    url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0")
      format("truetype"),
    url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* Base  */
@font-face {
  font-family: "AMX-Bold";
  src: url("../fonts/AMX-Bold.eot?") format("eot"),
    url("../fonts/AMX-Bold.woff2") format("woff2"),
    url("../fonts/AMX-Bold.woff") format("woff"),
    url("../fonts/AMX-Bold.ttf") format("truetype"),
    url("../fonts/AMX-Bold.svg#AMX-Bold") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "AMX-Regular";
  src: url("../fonts/AMX-Regular.eot?") format("eot"),
    url("../fonts/AMX-Regular.woff2") format("woff2"),
    url("../fonts/AMX-Regular.woff") format("woff"),
    url("../fonts/AMX-Regular.ttf") format("truetype"),
    url("../fonts/AMX-Regular.svg#AMX-Regular") format("svg");
  font-display: swap;
}
/******************** variables ********************/
/*$breakpoints: (
  movil  		: 480px,
  movil-h 	: 640px,
  tablet 		: 769px,
  tablet-h  : 1025px,
  tablet-w  : 1344px,
  laptop  	: 1367px
);*/
/*$path: "https://static.claro.com.pe/landings/havas/2022/dco/v2/assets";
$path-netflix: "https://static.claro.com.pe/landings/havas/2022/dco/v2/assets/banners/netflix";
$path-fibraoptica: "https://static.claro.com.pe/landings/havas/2022/dco/v2/assets/banners/fibraoptica";*/
/*.color($color: 'null'){

	.color_atributos1 ($color) when (iscolor($color)) {
			 color: $color;
		}

		.color_atributos1($color);
}*/
/*@mixin fondo-degrade($direccion: left,$inicio: #ffffff,$fin: #000000) {
		background-color: $inicio;
		background-image: -webkit-linear-gradient($direccion, $inicio, $fin);
		background-image: -moz-linear-gradient($direccion, $inicio, $fin);
		background-image: -o-linear-gradient($direccion, $inicio, $fin);
		background-image: -ms-linear-gradient($direccion, $inicio, $fin);
		background-image: linear-gradient($direccion, $inicio, $fin);
}*/
/*

.sample {
		font-size: 30rem;

		@include breakpoint(medium) {
				font-size: 22rem;
		}
}


.element {
		font-size: 30rem;
}

@media (min-width: 992px) {
		.element {
				font-size: 22rem;
		}
}

*/
html {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

body {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
li {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

dl,
dd,
dt {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

table,
td {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
}

img {
  border: 0 none;
}

a,
a:hover {
  outline: medium none;
  text-decoration: none;
}

br {
  clear: both;
}

form,
fieldset {
  border: 0 none;
  margin: 0;
  padding: 0;
}

footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.icon::before {
  display: inline-block;
  margin-right: 0.5em;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.globo {
  padding: 10px;
  width: 220px;
  border­radius: 10px;
  background­color: #8f0;
  font­family: "trebuchet ms", tahoma, verdana, sans­serif;
  font­size: 1.4em;
}
.globo:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border­bottom: 30px solid #8f0;
  border­right: 20px solid transparent;
  border­left: 20px solid transparent;
  margin: ­30px 0 0 90px;
}

/* Flexbox */
/*@mixin flex {
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:flex;
}

@mixin flex-direction($direction) {
  -webkit-flex-direction:$direction;
  -moz-flex-direction:$direction;
  -ms-flex-direction:$direction;
  flex-direction:$direction;
}

@mixin flex-wrap($wrap) {
  -webkit-flex-wrap:$wrap;
  -moz-flex-wrap:$wrap;
  -ms-flex-wrap:$wrap;
  flex-wrap:$wrap;
}

@mixin flex-align-items($align) {
  -webkit-flex-align:$align;
  -moz-flex-align:$align;
  -ms-flex-align:$align;
  -webkit-align-items:$align;
  -webkit-box-align:$align;
  align-items:$align;
}

@mixin flex-justify-content($justify) {
  -webkit-justify-content:$justify;
  -moz-justify-content:$justify;
  -ms-justify-content:$justify;
  justify-content:$justify;
}

@mixin flex-grow($grow) {
  -webkit-flex-grow:$grow;
  -moz-flex-grow:$grow;
  -ms-flex-grow:$grow;
  flex-grow:$grow;
}

@mixin flex-order($order) {
  -webkit-box-ordinal-group:$order;
  -moz-box-ordinal-group:$order;
  -ms-flex-order:$order;
  -webkit-order:$order;
  order:$order;
}

@mixin align-self($align) {
  -webkit-align-self: $align;
  -moz-align-self: $align;
  -ms-align-self: $align;
  align-self: $align;
}*/
.grecaptcha-badge {
  visibility: collapse !important;
}

.d-none {
  display: none;
}

@-webkit-keyframes animationColor {
  from {
    background-color: rgba(0, 0, 0, 0);
    -webkit-background-color: rgba(0, 0, 0, 0);
    -moz-background-color: rgba(0, 0, 0, 0);
    -ms-background-color: rgba(0, 0, 0, 0);
    -o-background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.65);
    -webkit-background-color: rgba(0, 0, 0, 0.65);
    -moz-background-color: rgba(0, 0, 0, 0.65);
    -ms-background-color: rgba(0, 0, 0, 0.65);
    -o-background-color: rgba(0, 0, 0, 0.65);
  }
}

@keyframes animationColor {
  from {
    background-color: rgba(0, 0, 0, 0);
    -webkit-background-color: rgba(0, 0, 0, 0);
    -moz-background-color: rgba(0, 0, 0, 0);
    -ms-background-color: rgba(0, 0, 0, 0);
    -o-background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.65);
    -webkit-background-color: rgba(0, 0, 0, 0.65);
    -moz-background-color: rgba(0, 0, 0, 0.65);
    -ms-background-color: rgba(0, 0, 0, 0.65);
    -o-background-color: rgba(0, 0, 0, 0.65);
  }
}
[v-cloak] > * {
  display: none;
}

.load_ing {
  display: -ms-grid;
  display: grid;
  place-content: center;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.load_ing.over_lay {
  -webkit-animation-name: animationColor;
  animation-name: animationColor;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.load_ing img {
  width: 50px;
  height: 50px;
}

#app:not([v-cloak]) ~ .load_ing {
  display: none;
}

#app ~ #load_er.over_lay {
  display: -ms-grid;
  display: grid;
}

#app .v--modal-overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.layout__main {
  font: normal 400 1em "Roboto";
  font-size: 16px;
}
.layout__main .home__header .portlet1__align {
  width: 100%;
  overflow: hidden;
}
.layout__main .home__header .portlet1 .zone1 {
  padding-bottom: 60px;
}
.layout__main .home__header .portlet1 .zone1__header {
  background-color: #ff0000;
  position: relative;
}
.layout__main .home__header .portlet1 .zone1__header .slick-dots {
  position: absolute;
  bottom: -35px;
}
@media screen and (max-width: 480px) {
  .layout__main .home__header .portlet1 .zone1__header .slick-dots {
    display: block;
    bottom: -40px;
  }
}
.layout__main .home__header .portlet1 .zone1__header .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 7px;
}
@media screen and (max-width: 480px) {
  .layout__main .home__header .portlet1 .zone1__header .slick-dots li {
    width: 10px;
    height: 10px;
  }
}
.layout__main .home__header .portlet1 .zone1__header .slick-dots li button {
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 480px) {
  .layout__main .home__header .portlet1 .zone1__header .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}
.layout__main
  .home__header
  .portlet1
  .zone1__header
  .slick-dots
  li
  button:before {
  width: 10px;
  height: 10px;
  border: none;
  background-color: #d8d8d8;
}
@media screen and (max-width: 480px) {
  .layout__main
    .home__header
    .portlet1
    .zone1__header
    .slick-dots
    li
    button:before {
    width: 10px;
    height: 10px;
  }
}
.layout__main
  .home__header
  .portlet1
  .zone1__header
  .slick-dots
  li.slick-active
  button:before {
  color: #869791;
  opacity: 1;
  background: transparent;
  background: #869791;
}
.layout__main .home__header .portlet1 .zone1__header .banner__image {
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 480px;
  position: relative;
  display: block;
  margin: 0 auto;
}
.layout__main .home__header .portlet1 .zone1__header .banner__image.banner1 {
  background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Desktop-1920x480-general.jpg");
}
.layout__main .home__header .portlet1 .zone1__header .banner__image.banner2 {
  background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Desktop-1920x480-debito-automatico.jpg");
}
.layout__main .home__header .portlet1 .zone1__header .banner__image.banner3 {
  background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner_Landing_debito_Desktop_1920x480.jpg");
}
@media screen and (max-width: 1366px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image {
    height: 365px;
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner1 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Laptop-1366x365-general.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner2 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Laptop-1366x365-debito-automatico.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner3 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner_Landing_debito_Laptop_1366x365.jpg");
  }
}
@media screen and (max-width: 1024px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image {
    height: 342px;
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner1 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Tablet-H-1024x342-general.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner2 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Tablet-H-1024x342-debito-automatico.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner3 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner_Landing_debito_Tablet_H_1024x342.jpg");
  }
}
@media screen and (max-width: 1024px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image {
    height: 384px;
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner1 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Tablet-V-768x384-general.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner2 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Tablet-V-768x384-debito-automatico.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner3 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner_Landing_debito_Tablet_V_768x384.jpg");
  }
}
@media screen and (max-width: 640px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image {
    height: 190px;
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner1 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Movil-H-570x190-general.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner2 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Movil-H-570x190-debito-automatico.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner3 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner_Landing_debito_Movil_H_570x190.jpg");
  }
}
@media screen and (max-width: 480px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image {
    height: 400px;
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner1 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Movil-V-430x400-general.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner2 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner-Conoce-tu-recibo-Movil-V-430x400-debito-automatico.jpg");
  }
  .layout__main .home__header .portlet1 .zone1__header .banner__image.banner3 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/banners/home/Banner_Landing_debito_Movil_V_430x400.jpg");
  }
}
.layout__main .home__header .portlet1 .zone1__header .banner__image__link {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1366px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image__link {
    max-width: 1240px;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image__link {
    max-width: 980px;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image__link {
    max-width: 715px;
  }
}
@media screen and (max-width: 640px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image__link {
    max-width: 410px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image__link {
    max-width: 280px;
  }
}
.layout__main
  .home__header
  .portlet1
  .zone1__header
  .banner__image__link.disable {
  visibility: hidden;
}
.layout__main .home__header .portlet1 .zone1__header .banner__image__link a {
  font: normal 400 1.125em "Roboto";
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 100px;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  background: #ee122c;
  border-radius: 32px;
  padding: 10px 40px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image__link a {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image__link a {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .home__header .portlet1 .zone1__header .banner__image__link a {
    margin-bottom: 20px;
  }
}
.layout__main .internal__header .portlet1__align {
  width: 100%;
  overflow: hidden;
}
.layout__main .internal__header .portlet1 .zone1__header {
  position: relative;
}
.layout__main .internal__header .portlet1 .zone1__header .slick-dots {
  position: absolute;
  bottom: -35px;
}
@media screen and (max-width: 480px) {
  .layout__main .internal__header .portlet1 .zone1__header .slick-dots {
    display: block;
    bottom: -40px;
  }
}
.layout__main .internal__header .portlet1 .zone1__header .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 7px;
}
@media screen and (max-width: 480px) {
  .layout__main .internal__header .portlet1 .zone1__header .slick-dots li {
    width: 10px;
    height: 10px;
  }
}
.layout__main .internal__header .portlet1 .zone1__header .slick-dots li button {
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .internal__header
    .portlet1
    .zone1__header
    .slick-dots
    li
    button {
    width: 10px;
    height: 10px;
  }
}
.layout__main
  .internal__header
  .portlet1
  .zone1__header
  .slick-dots
  li
  button:before {
  width: 10px;
  height: 10px;
  border: none;
  background-color: #d8d8d8;
}
@media screen and (max-width: 480px) {
  .layout__main
    .internal__header
    .portlet1
    .zone1__header
    .slick-dots
    li
    button:before {
    width: 10px;
    height: 10px;
  }
}
.layout__main
  .internal__header
  .portlet1
  .zone1__header
  .slick-dots
  li.slick-active
  button:before {
  color: #869791;
  opacity: 1;
  background: transparent;
  background: #869791;
}
.layout__main .internal__header .portlet1 .zone1__header .banner__image {
  background-repeat: no-repeat;
  background-position: center center;
  height: 480px;
  width: 100%;
  position: relative;
  display: block;
  margin: 0 auto;
  /*&.banner1{
			background-image: url("../assets/banners/home/Banner_Landing_debito_Desktop_1920x480.jpg");
		}

		@include to(laptop) {

			&.banner1{
				background-image: url("../assets/banners/home/Banner_Landing_debito_Laptop_1366x365.jpg");
			}

			height: 365px;
		}

		@include to(tablet-h) {

			&.banner1{
				background-image: url("../assets/banners/home/Banner_Landing_debito_Tablet_H_1024x342.jpg");
			}

			height: 342px;
		}

		@include to(tablet) {

			&.banner1{
				background-image: url("../assets/banners/home/Banner_Landing_debito_Tablet_V_768x384.jpg");
			}

			height: 384px;
		}

		@include to(movil-h) {

			&.banner1{
				background-image: url("../assets/banners/home/Banner_Landing_debito_Movil_H_570x190.jpg");
			}

			height: 190px;
		}

		@include to(movil) {

			&.banner1{
				background-image: url("../assets/banners/home/Banner_Landing_debito_Movil_V_430x400.jpg");
			}

			height: 400px;
		}*/
}
.layout__main .internal__header .portlet1 .zone1__header .banner__image__link {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.layout__main
  .internal__header
  .portlet1
  .zone1__header
  .banner__image__link.disable {
  visibility: hidden;
}
.layout__main
  .internal__header
  .portlet1
  .zone1__header
  .banner__image__link
  a {
  font: normal 400 1.125em "Roboto";
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 100px;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  background: #ee122c;
  border-radius: 32px;
  padding: 10px 40px;
  cursor: pointer;
}
.layout__main .internal__header .portlet2__align {
  width: 100%;
  max-width: 1238px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .layout__main .internal__header .portlet2__align {
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .internal__header .portlet2__align {
    background-color: #f3f3f3;
    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
  }
}
.layout__main .internal__header .portlet2 .zone1 {
  padding: 30px 0;
}
@media screen and (max-width: 480px) {
  .layout__main .internal__header .portlet2 .zone1 {
    padding: 15px 0;
  }
}
.layout__main .internal__header .portlet2 .zone1__header section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.layout__main .internal__header .portlet2 .zone1__header section ul li {
  font: normal 300 1em "Roboto";
  color: #abaeaf;
  margin-right: 8px;
}
.layout__main .internal__header .portlet2 .zone1__header section ul li a {
  color: #3fc3e9;
}
.layout__main .internal__header .portlet2 .zone1__header section ul li a:hover {
  color: #3fc3e9;
}
.layout__modal {
  /*display: none;
		.overlay {
		  @include opacidad(bg, #000000, 0.7,claro);
		  position: fixed;
		  top: 0;
		  left: 0;
		  width: 100%;
		  height: 100%;
		  z-index: 9999; 
		}

		.box {
		  width: 100%;
		  height: 100%;
		  z-index: 20;
		  display: table;

				&__inset {
		    display: table-cell;
		    vertical-align: middle;
		    width: 100%;
		    position: relative; 
		   //&--close{
		    //	position: absolute;
		    //  top: -10;
		    //  right: -10;
		    //  z-index: 2;
		    //  cursor: pointer;
		    //}
				}
			}*/
}
.layout__modal .v--modal {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.layout__modal .v--modal-overlay {
  background: rgba(0, 0, 0, 0.9);
}
.layout__modal .video {
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  .layout__modal .video {
    padding: 40px;
  }
}
@media screen and (max-width: 480px) {
  .layout__modal .video {
    padding: 20px;
  }
}
.layout__modal .video__header {
  position: relative;
}
.layout__modal .video__header button {
  position: absolute;
  top: 0px;
  right: -50px;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 0px;
  font: normal 800 1.25em "Roboto";
  color: #ef2539;
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media screen and (max-width: 1024px) {
  .layout__modal .video__header button {
    right: -40px;
    width: 30px;
    height: 30px;
    font: normal 800 1em "Roboto";
  }
}
@media screen and (max-width: 480px) {
  .layout__modal .video__header button {
    top: -20px;
    right: 0px;
    width: 20px;
    height: 20px;
    font: normal 800 0.875em "Roboto";
  }
}
.layout__modal .video__header button:hover {
  background-color: #ef2539;
  color: #ffffff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__modal .video__iframe {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.layout__modal .video__iframe iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.layout__modal.active {
  display: block;
}

/*

.carousel__item {
  min-height: 200px;
  width: 100%;
  background-color: #642afb;
  color: white;
  font-size: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel__slide {
  padding: 10px;
}

.carousel__prev,
.carousel__next {
  background-color: #fff7;
}*/
@keyframes animationColor {
  from {
    background-color: rgba(0, 0, 0, 0);
    -webkit-background-color: rgba(0, 0, 0, 0);
    -moz-background-color: rgba(0, 0, 0, 0);
    -ms-background-color: rgba(0, 0, 0, 0);
    -o-background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.65);
    -webkit-background-color: rgba(0, 0, 0, 0.65);
    -moz-background-color: rgba(0, 0, 0, 0.65);
    -ms-background-color: rgba(0, 0, 0, 0.65);
    -o-background-color: rgba(0, 0, 0, 0.65);
  }
}
[v-cloak] > * {
  display: none;
}

.load_ing {
  display: -ms-grid;
  display: grid;
  place-content: center;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.load_ing.over_lay {
  -webkit-animation-name: animationColor;
  animation-name: animationColor;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.load_ing img {
  width: 50px;
  height: 50px;
}

#app:not([v-cloak]) ~ .load_ing {
  display: none;
}

#app ~ #load_er.over_lay {
  display: -ms-grid;
  display: grid;
}

#app .v--modal-overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.e1-perumin-form {
  position: relative;
  background: none;
  padding: 40px 40px 0px 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 8px 4px rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form {
    padding: 40px 36px 0px 36px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form {
    padding: 28px 5% 28px;
  }
}
.e1-perumin-form hgroup {
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form hgroup {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form hgroup {
    padding-bottom: 2px;
  }
}
.e1-perumin-form hgroup h1 {
  font: normal 600 48px "AMX-Bold";
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 43px;
  /*@include to(tablet-h) {
		  font-size: em(16);
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form hgroup h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form hgroup h1 {
    line-height: 35px;
    margin-bottom: 15px;
  }
  .e1-perumin-form hgroup h1 br {
    display: none;
  }
}
.e1-perumin-form hgroup h2 {
  font: normal 400 24px "AMX-Bold";
  color: #ffffff;
  line-height: 20px;
  /*@include to(tablet-h) {
		  font-size: em(16);
		}
		@include to(tablet) {
		  font-size: em(14);
		}*/
}
@media screen and (max-width: 480px) {
  .e1-perumin-form hgroup h2 {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
  }
  .e1-perumin-form hgroup h2 br {
    display: none;
  }
}
.e1-perumin-form__message {
  padding: 10px 0 20px;
}
.e1-perumin-form__message p {
  font: normal 400 11px "Roboto";
  color: #bebcbb;
}
.e1-perumin-form__text1 {
  font: normal 500 14px "Roboto";
  color: #353535;
}
.e1-perumin-form__label1 {
  color: #999;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 4px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  font-style: normal;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #91979e;
  font: normal 400 18px "Roboto";
  /*@include to(tablet-h) {
		  font-size: em(16);
		}
		@include to(tablet) {
		  font-size: em(15);
		}*/
  /*@include to(movil) {
		  font-size: em(15);
		}*/
}
.e1-perumin-form__label1 span {
  font-weight: 500;
  margin-left: 5px;
}
.e1-perumin-form__label2 {
  font: normal 600 11px "Roboto";
  color: #283342;
  line-height: 24px;
  letter-spacing: -0.01em;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 10px;
  -webkit-transform: translate(0, -25px) scale(1);
  transform: translate(0, -25px) scale(1);
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__label2 {
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__label2 {
    font-size: 10px;
  }
}
.e1-perumin-form__label2 span {
  font-weight: 500;
  margin-left: 5px;
}
.e1-perumin-form__groupselect1 {
  overflow: hidden;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #d8d8d8;
  background-color: #ffffff;
  padding: 0 14px;
  position: relative;
  height: 100%;
}
.e1-perumin-form__groupselect1:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
  background-size: auto;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
}
.e1-perumin-form__groupselect1.invalid {
  border: solid 1px #dc3545;
  background-color: #fcf3f3;
}
.e1-perumin-form__groupselect1.invalid select {
  background: #fcf3f3
    url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/dec02708-0cba-45ab-ae9a-8891641fd8bf-invalid.png")
    no-repeat 95% center;
  color: #dc3545;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__groupselect1.invalid select {
    background-position: 92% center;
  }
}
.e1-perumin-form__groupselect1.invalid select::-webkit-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form__groupselect1.invalid select::-moz-placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form__groupselect1.invalid select:-ms-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form__groupselect1.invalid select::-ms-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form__groupselect1.invalid select::placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form__groupselect1.valid {
  border: solid 1px #28a745;
  background-color: #f3fffc;
}
.e1-perumin-form__groupselect1.valid select {
  background: #f3fffc
    url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/7f3c32d9-4bfa-4e6d-ba20-8c223cc2deca-valid.png")
    no-repeat 95% center;
  color: #006b4f;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__groupselect1.valid select {
    background-position: 92% center;
  }
}
.e1-perumin-form__groupselect1.valid select::-webkit-input-placeholder {
  color: #006b4f;
  opacity: 1;
}
.e1-perumin-form__groupselect1.valid select::-moz-placeholder {
  color: #006b4f;
  opacity: 1;
}
.e1-perumin-form__groupselect1.valid select:-ms-input-placeholder {
  color: #006b4f;
  opacity: 1;
}
.e1-perumin-form__groupselect1.valid select::-ms-input-placeholder {
  color: #006b4f;
  opacity: 1;
}
.e1-perumin-form__groupselect1.valid select::placeholder {
  color: #006b4f;
  opacity: 1;
}
.e1-perumin-form__select1 {
  font: normal 500 14px "Roboto";
  color: #353535;
  /*@include to(tablet-h) {
		  font-size: em(16);
		}

		@include to(tablet) {
		  font-size: em(14);
		}

		@include to(movil) {
		  font-size: em(12);
		}*/
}
.e1-perumin-form__checkbox1 {
  display: table;
  position: relative;
}
.e1-perumin-form__checkbox1 div {
  display: table;
}
.e1-perumin-form__checkbox1 div input[type="checkbox"] {
  display: none;
}
.e1-perumin-form__checkbox1 div input[type="checkbox"]:checked + label b {
  background-color: #0fbfdf;
  color: #ffffff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.e1-perumin-form__checkbox1
  div
  input[type="checkbox"]:checked
  + label
  b:before {
  content: "\f00c";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 15px;
  color: #ffffff;
  position: relative;
  top: 1px;
  left: 0px;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__checkbox1
    div
    input[type="checkbox"]:checked
    + label
    b:before {
    font-size: 12px;
    top: -4px;
  }
}
.e1-perumin-form__checkbox1 div label {
  display: table-cell;
  vertical-align: top;
}
.e1-perumin-form__checkbox1 div label b {
  width: 22px;
  height: 22px;
  display: inline-block;
  font: normal 500 14px "Roboto";
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  color: #000000;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 3px 3px 3px 3px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  border: 1px solid #0fbfdf;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__checkbox1 div label b {
    width: 16px;
    height: 16px;
  }
}
.e1-perumin-form__checkbox1 div label b:hover {
  color: #000000;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.e1-perumin-form__checkbox1 small {
  display: table-cell;
  font: normal 400 14px "Roboto";
  color: #ffffff;
  vertical-align: middle;
  padding-left: 10px;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__checkbox1 small {
    font-size: 12px;
  }
}
.e1-perumin-form__checkbox1 small em {
  color: #0fbddf;
  text-decoration: underline;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-style: normal;
  /*&.active[aria-label]:hover:after{
		  opacity: 1;
		  pointer-events: none;
		}*/
  /*&.active[aria-label]:hover:before{
		  opacity: 1;
		  pointer-events: none;
		}*/
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__checkbox1 small em {
    position: static;
    margin-left: 0px;
  }
}
.e1-perumin-form__checkbox1 small em[aria-label]:after {
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: attr(aria-label);
  padding: 12px 12px;
  position: absolute;
  white-space: normal;
  opacity: 0;
  background: #0fbfdf;
  color: #ffffff;
  width: 380px;
  font-size: 12px;
  border-radius: 5px;
  left: calc(50% - 190px);
  bottom: 20px;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__checkbox1 small em[aria-label]:after {
    width: 280px;
    left: calc(50% - 140px);
  }
}
.e1-perumin-form__checkbox1 small em[aria-label]:hover:after {
  opacity: 1;
  pointer-events: none;
}
.e1-perumin-form__checkbox1 small em.active[aria-label]:after {
  opacity: 1;
  pointer-events: none;
}
.e1-perumin-form__checkbox1 small em[aria-label]:before {
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #0fbfdf;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: "";
  position: absolute;
  z-index: 10;
  left: calc(50% - 8px);
  bottom: 4px;
}
.e1-perumin-form__checkbox1 small em[aria-label]:hover:before {
  opacity: 1;
  pointer-events: none;
}
.e1-perumin-form__checkbox1 small em.active[aria-label]:before {
  opacity: 1;
  pointer-events: none;
}
.e1-perumin-form__checkbox1 small em span {
  font: normal 400 12px "Roboto";
  color: #ffffff;
  width: 400px;
  padding: 12px 12px;
  background-color: #0fbfdf;
  position: absolute;
  left: 50%;
  margin-left: -125px;
  display: none;
  top: 21px;
  z-index: 10;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__checkbox1 small em span {
    width: 215px;
    /*top: 0px;
				  bottom: 0px;*/
    margin-left: -70px;
  }
}
.e1-perumin-form__checkbox1 small em span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #0fbfdf;
  position: absolute;
  left: 50%;
  top: -9px;
  margin-left: -10px;
}
.e1-perumin-form__checkbox1 small em:hover span {
  display: block;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__checkbox1 small em:hover span {
    display: none;
  }
}
.e1-perumin-form__checkbox1 small em.active span {
  display: block;
}
.e1-perumin-form__customCheckbox1 {
  margin: 5px 0;
  display: table;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__customCheckbox1 {
    margin: 20px 0 0;
  }
}
.e1-perumin-form__customCheckbox1 input[type="checkbox"] {
  display: none;
}
.e1-perumin-form__customCheckbox1 input[type="checkbox"]:checked + label {
  background-color: #0097ae;
  color: #ffffff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.e1-perumin-form__customCheckbox1
  input[type="checkbox"]:checked
  + label:before {
  content: "\f058";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 15px;
  color: #ffffff;
  position: relative;
  top: 1px;
  left: 0px;
}
.e1-perumin-form__customCheckbox1 label {
  width: 22px;
  height: 22px;
  display: inline-block;
  font: normal 600 14px "Roboto";
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  color: #000000;
  border: solid 1px #008fa5;
  cursor: pointer;
  border-radius: 3px 3px 3px 3px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.e1-perumin-form__customCheckbox1 label:hover {
  background-color: #e1e4e8;
  color: #000000;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.e1-perumin-form__customCheckbox1 div {
  vertical-align: middle;
  padding-left: 10px;
  display: table-cell;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__customCheckbox1 div {
    font-size: 12px;
  }
}
.e1-perumin-form__customCheckbox1 div p {
  font: normal 300 17px "Roboto";
  color: #666666;
  display: inline-block;
}
.e1-perumin-form__customCheckbox1 div p a {
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
  margin-left: 5px;
}
.e1-perumin-form__customCheckbox1 div p a:hover {
  color: #000000;
}
.e1-perumin-form__customCheckbox1 div .tooltip.active span {
  display: block;
  /*@include from(movil) {
		  width: 300px;
		  margin-left: -150px;
		}*/
}
.e1-perumin-form__customCheckbox1 div .tooltip {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__customCheckbox1 div .tooltip {
    display: block;
    /*display: table;
				margin-top: 10px;
				margin-left: 60px;
				margin: 10px auto 10px;
				//display: block;
				left: -8%;*/
  }
}
.e1-perumin-form__customCheckbox1 div .tooltip:before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
}
@media screen and (min-width: 481px) {
  .e1-perumin-form__customCheckbox1 div .tooltip:hover span {
    display: block;
  }
}
.e1-perumin-form__customCheckbox1 div .tooltip span {
  font: normal 400 12px "Roboto";
  color: #000000;
  width: 600px;
  padding: 10px 15px;
  border: solid 1px #0fbfdf;
  background-color: #fff;
  position: absolute;
  top: 28px;
  left: 50%;
  margin-left: -300px;
  display: none;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
  /*@include to(movil) {
		  width: 280px;
		  margin-left: -100px;
		}
		@include to(325px) {
		  width: 230px;
		  margin-left: -102px;
		}*/
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__customCheckbox1 div .tooltip span {
    margin-left: -62%;
    width: 280px;
  }
}
.e1-perumin-form__customCheckbox1 div .tooltip span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #0fbfdf;
  position: absolute;
  left: 50%;
  top: -10px;
  margin-left: -10px;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__customCheckbox1 div .tooltip span:before {
    left: 38px;
  }
}
.e1-perumin-form__buttons {
  width: 100%;
  padding: 18px 0px 0px 0;
  /*@include to(tablet) {
		  padding: 26px 0px 40px 0;
		}*/
  /*@include to(movil-h) {
		  padding: 0px 0px 20px 0;
		}*/
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__buttons {
    padding: 10px 0px 0px 0;
    text-align: center;
  }
}
.e1-perumin-form__buttons--type1 {
  font: normal 600 14px "Roboto";
  border: 0;
  color: #979797;
  padding: 0px 0px 0px 0px;
  cursor: default;
  width: 180px;
  line-height: 40px;
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #f0f0f0;
  border-radius: 30px 30px 30px 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: table;
  margin: 0 auto;
  /*&:before {
		  content: "\f105";
		  @include icon(0px);
		  font-size: 22px;
		  font-weight: 600;
		  color: $color_b1;
		  position: absolute;
		  top: 14px;
		  right: 20px;
		}*/
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__buttons--type1 {
    width: 100%;
  }
}
.e1-perumin-form__buttons--type1:focus {
  outline: none;
}
.e1-perumin-form__buttons--type1:hover {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-filter: saturate(0.6);
  -moz-filter: saturate(0.6);
  -ms-filter: saturate(0.6);
  -o-filter: saturate(0.6);
  filter: saturate(0.6);
}
.e1-perumin-form__buttons--type1.active {
  background-color: #ee122c;
  color: #ffffff;
  cursor: pointer;
}
.e1-perumin-form__buttons--type1.active:hover {
  background-color: #fa253f;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.e1-perumin-form__buttons--type1.btnContinue {
  position: absolute;
  top: 0px;
  right: 15px;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__buttons--type1.btnContinue {
    right: 0px;
  }
}
.e1-perumin-form__buttons--type1.btnBack {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: transparent;
  color: #0fbddf;
  font-weight: 600;
  font-size: 18px;
  width: auto;
  padding: 12px 0px 12px 35px;
  cursor: pointer;
}
.e1-perumin-form__buttons--type1.btnBack:before {
  content: "\f177";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 22px;
  font-weight: 500;
  color: #0fbddf;
  position: absolute;
  top: 30px;
  left: 5px;
}
.e1-perumin-form__buttons--type2 {
  font: normal 600 14px "AMX-Bold";
  color: #4acde7;
  border: 0px;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/18c8ca86-baee-4cc9-b59d-4bcef62e4f3d-arrow_left.svg")
    no-repeat left 2px;
  padding: 0 0 0 25px;
  display: table;
  margin: 30px auto 0;
  /*&:before{
		  content:'';
		  display: block;
		  width: 14px;
		  height: 9px;
		  background: url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/arrow_left.svg") no-repeat center top;
		  margin-bottom: 10px;
		}*/
}
.e1-perumin-form__error {
  font: normal 400 12px "Roboto";
  color: #ff3300;
  margin-top: 4px;
  display: block;
}
.e1-perumin-form span.error {
  font: normal 400 12px "Roboto";
  color: #ff3300;
  margin-top: 4px;
  display: block;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form span.error {
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form {
    -webkit-align-self: flex-end;
    -ms-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}
.e1-perumin-form fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 0px 0 0px;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form fieldset {
    padding: 0px 0 0px;
  }
}
.e1-perumin-form dl {
  width: 100%;
  margin: 10px 0 0px 0;
  position: relative;
  /*@include to(movil) {
		  width: auto;
		  margin: 10px auto 0px;
		}*/
}
.e1-perumin-form dl--type1 {
  margin: 10px 0 0px 0;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form dl--type1 {
    margin: 5px 0 0px 0;
  }
}
.e1-perumin-form dl--type2 {
  width: 49%;
  margin: 10px 0 0px 0;
  /*@include to(laptop) {
		  margin-bottom: 20px;
		}*/
}
@media screen and (max-width: 480px) {
  .e1-perumin-form dl--type2 {
    width: 100%;
    margin: 5px 0 0px 0;
  }
}
.e1-perumin-form dl--type3 dt {
  height: 25px;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form dl--type3 dt {
    height: auto;
    margin-bottom: 5px;
  }
}
.e1-perumin-form dl--row1 {
  width: 48%;
}
.e1-perumin-form dl--row2 {
  width: 100%;
  height: auto;
}
.e1-perumin-form dl--row2 dt div {
  width: 49.5%;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form dl--row2 dt div {
    width: 100%;
  }
}
.e1-perumin-form dl--row2 dd {
  padding: 10px 0 30px;
}
.e1-perumin-form dl--row2 dd span {
  font: normal 200 15px "Roboto";
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form dl--row2 {
    width: 100%;
  }
}
.e1-perumin-form dl--row3 {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form dl--row3 {
    padding: 0px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form dl--row3.row-hv {
    width: 298px;
  }
}
.e1-perumin-form dl dd input[type="text"],
.e1-perumin-form dl dd input[type="number"],
.e1-perumin-form dl dd input[type="email"] {
  width: 100%;
  height: 40px;
  -webkit-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
  border-radius: 8px 8px 8px 8px;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.1);
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ffffff;
  outline: none;
  padding: 0px 18px;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form dl dd input[type="text"],
  .e1-perumin-form dl dd input[type="number"],
  .e1-perumin-form dl dd input[type="email"] {
    width: 100%;
  }
}
.e1-perumin-form dl dd input[type="text"].invalid:-webkit-autofill,
.e1-perumin-form dl dd input[type="text"].invalid:-webkit-autofill:hover,
.e1-perumin-form dl dd input[type="text"].invalid:-webkit-autofill:focus,
.e1-perumin-form dl dd input[type="text"].invalid:-webkit-autofill:active,
.e1-perumin-form dl dd input[type="number"].invalid:-webkit-autofill,
.e1-perumin-form dl dd input[type="number"].invalid:-webkit-autofill:hover,
.e1-perumin-form dl dd input[type="number"].invalid:-webkit-autofill:focus,
.e1-perumin-form dl dd input[type="number"].invalid:-webkit-autofill:active,
.e1-perumin-form dl dd input[type="email"].invalid:-webkit-autofill,
.e1-perumin-form dl dd input[type="email"].invalid:-webkit-autofill:hover,
.e1-perumin-form dl dd input[type="email"].invalid:-webkit-autofill:focus,
.e1-perumin-form dl dd input[type="email"].invalid:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fcf3f3 inset !important;
}
.e1-perumin-form dl dd input[type="text"].valid:-webkit-autofill,
.e1-perumin-form dl dd input[type="text"].valid:-webkit-autofill:hover,
.e1-perumin-form dl dd input[type="text"].valid:-webkit-autofill:focus,
.e1-perumin-form dl dd input[type="text"].valid:-webkit-autofill:active,
.e1-perumin-form dl dd input[type="number"].valid:-webkit-autofill,
.e1-perumin-form dl dd input[type="number"].valid:-webkit-autofill:hover,
.e1-perumin-form dl dd input[type="number"].valid:-webkit-autofill:focus,
.e1-perumin-form dl dd input[type="number"].valid:-webkit-autofill:active,
.e1-perumin-form dl dd input[type="email"].valid:-webkit-autofill,
.e1-perumin-form dl dd input[type="email"].valid:-webkit-autofill:hover,
.e1-perumin-form dl dd input[type="email"].valid:-webkit-autofill:focus,
.e1-perumin-form dl dd input[type="email"].valid:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #f3fffc inset !important;
}
.e1-perumin-form dl dd input[type="text"].invalid,
.e1-perumin-form dl dd input[type="number"].invalid,
.e1-perumin-form dl dd input[type="email"].invalid {
  border: solid 1px #dc3545;
  background: #fcf3f3
    url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/dec02708-0cba-45ab-ae9a-8891641fd8bf-invalid.png")
    no-repeat 97% center;
  color: #dc3545;
}
.e1-perumin-form dl dd input[type="text"].invalid::-webkit-input-placeholder,
.e1-perumin-form dl dd input[type="number"].invalid::-webkit-input-placeholder,
.e1-perumin-form dl dd input[type="email"].invalid::-webkit-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form dl dd input[type="text"].invalid::-moz-placeholder,
.e1-perumin-form dl dd input[type="number"].invalid::-moz-placeholder,
.e1-perumin-form dl dd input[type="email"].invalid::-moz-placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form dl dd input[type="text"].invalid:-ms-input-placeholder,
.e1-perumin-form dl dd input[type="number"].invalid:-ms-input-placeholder,
.e1-perumin-form dl dd input[type="email"].invalid:-ms-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form dl dd input[type="text"].invalid::-ms-input-placeholder,
.e1-perumin-form dl dd input[type="number"].invalid::-ms-input-placeholder,
.e1-perumin-form dl dd input[type="email"].invalid::-ms-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form dl dd input[type="text"].invalid::placeholder,
.e1-perumin-form dl dd input[type="number"].invalid::placeholder,
.e1-perumin-form dl dd input[type="email"].invalid::placeholder {
  color: #dc3545;
  opacity: 1;
}
.e1-perumin-form dl dd input[type="text"].valid,
.e1-perumin-form dl dd input[type="number"].valid,
.e1-perumin-form dl dd input[type="email"].valid {
  border: solid 1px #28a745;
  background: #f3fffc
    url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/7f3c32d9-4bfa-4e6d-ba20-8c223cc2deca-valid.png")
    no-repeat 97% center;
  color: #006b4f;
}
.e1-perumin-form dl dd input[type="text"]:hover,
.e1-perumin-form dl dd input[type="number"]:hover,
.e1-perumin-form dl dd input[type="email"]:hover {
  -webkit-box-shadow: 0px 0px 1px 1px rgba(216, 216, 216, 0.4);
  box-shadow: 0px 0px 1px 1px rgba(216, 216, 216, 0.4);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.e1-perumin-form dl dd select {
  width: 100%;
  background-color: #ffffff;
  /*height: 37px;
		line-height: 37px;*/
  /*&:-webkit-autofill,
		&:-webkit-autofill:hover, 
		&:-webkit-autofill:focus, 
		&:-webkit-autofill:active  {
		    -webkit-box-shadow: 0 0 0 30px white inset !important;
		}*/
  width: 100%;
  height: 40px;
  -webkit-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /*@include redondeado(8px, 8px, 8px, 8px);
		@include sombra(0px, 0px, 1px, 1px, 255, 255, 255, 0.1);
		border: 1px solid #D8D8D8;
		box-shadow: none;
		background-color: #ffffff;*/
  outline: none;
  /*&:hover {
		  @include sombra(0px, 0px, 1px, 1px, 216, 216, 216, 0.4);
		  @include transicion(all, 0.2s, ease, 0s);
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form dl dd select {
    width: 100%;
  }
}
.e1-perumin-form dl dd select.invalid:-webkit-autofill,
.e1-perumin-form dl dd select.invalid:-webkit-autofill:hover,
.e1-perumin-form dl dd select.invalid:-webkit-autofill:focus,
.e1-perumin-form dl dd select.invalid:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fcf3f3 inset !important;
}
.e1-perumin-form dl dd select.valid:-webkit-autofill,
.e1-perumin-form dl dd select.valid:-webkit-autofill:hover,
.e1-perumin-form dl dd select.valid:-webkit-autofill:focus,
.e1-perumin-form dl dd select.valid:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #f3fffc inset !important;
}
.e1-perumin-form dl dt {
  /*p {
		  font: normal 400 13px $font1;
		  color: #ffffff;
		  margin-top: 10px;
		  line-height: 19px;

		  a {
		    color: #ffffff;
		    text-decoration: underline;

		    &:hover {
		      color: #ffffff;
		      text-decoration: underline;
		    }
		  }
		}*/
}
.e1-perumin-form dl dt blockquote {
  margin: 0px;
}
.e1-perumin-form__main {
  background-color: #fff;
  border-radius: 32px;
  padding: 0px 0px;
  position: relative;
  width: 800px;
  margin: auto;
  overflow: hidden;
  /*@media screen and (max-width: $tablet-h) {
		  width: 400px;
		  margin: 0 auto;
		}
		@media screen and (min-width: $movil) {
		  width: 90%;
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main {
    width: 600px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main {
    width: 90%;
  }
}
.e1-perumin-form__main .content__option[data-option="form"] {
  padding-left: 240px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="form"] {
    padding: 240px 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="form"] {
    padding: 200px 0 0 0;
  }
}
.e1-perumin-form__main .content__option[data-option="form"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  background: url("./68da9db0-eda3-4991-aa59-4b84ea94abe6-modal.png") no-repeat
    center top #ee122c;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="form"]:before {
    width: 100%;
    height: 200px;
    background: url("./4dcc5ce4-2626-4e9c-a517-5c8fe61a29b0-modalmobile.png")
      no-repeat center top #ee122c;
    background-size: 100%;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="form"]:before {
    width: 100%;
    height: 180px;
    background: url("./4dcc5ce4-2626-4e9c-a517-5c8fe61a29b0-modalmobile.png")
      no-repeat center top #ee122c;
    background-size: cover;
  }
}
.e1-perumin-form__main .content__option[data-option="form"] button.close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: 0px;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  float: none;
  text-shadow: none;
  opacity: inherit;
  width: 14px;
  height: 14px;
  z-index: 1;
  /*@include to(tablet) {
		  top: -160px;
		}*/
}
.e1-perumin-form__main
  .content__option[data-option="form"]
  button.close:before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url("./b62a3b7c-7e3c-48f9-91a2-cfd422d6f2f2-icon-close-black.svg")
    no-repeat center top;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main
    .content__option[data-option="form"]
    button.close:before {
    background: url("./084e7362-1d53-40b6-ba4c-96e38b3dd722-close-white.svg")
      no-repeat center top;
    background-size: 100%;
  }
}
.e1-perumin-form__main .content__option[data-option="form"] hgroup {
  padding: 50px 0px 0px 40px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup {
    padding: 0px 0px 0px 40px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup {
    padding: 0px 0px 0px 0px;
  }
}
.e1-perumin-form__main .content__option[data-option="form"] hgroup:before {
  content: "";
  width: 96px;
  height: 96px;
  display: block;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/usericono.png")
    no-repeat center top;
  background-size: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -48px;
  display: none;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup:before {
    width: 76px;
    height: 76px;
    background-size: 100%;
    margin-left: -38px;
  }
}
.e1-perumin-form__main .content__option[data-option="form"] hgroup h3 {
  font: normal 600 24px "Roboto";
  color: #222222;
  line-height: 32px;
  position: relative;
  display: table;
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
  /*@include to(tablet-h) {
		  font-size: em(28);
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup h3 {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
}
.e1-perumin-form__main
  .content__option[data-option="form"]
  hgroup
  h3
  span.phone:before {
  content: "\f095";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 20px;
  font-weight: 700;
  color: #13bdde;
  position: relative;
  top: 1px;
  left: 0px;
}
.e1-perumin-form__main .content__option[data-option="form"] hgroup h3 a {
  color: #13bdde;
  margin-left: 5px;
  text-decoration: underline;
}
.e1-perumin-form__main .content__option[data-option="form"] hgroup h4 {
  font: normal 600 20px "Roboto";
  color: #000000;
  margin: 60px 0 40px;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup h4 {
    margin: 35px 0 25px;
  }
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup h4 {
    margin: 35px 0 25px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup h4 {
    margin: 25px 0 15px;
  }
}
.e1-perumin-form__main .content__option[data-option="form"] hgroup p {
  font: normal 300 15px "Roboto";
  color: #222222;
  /*@include to(tablet-h) {
		  font-size: em(18);
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup p {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup p {
    font-size: 12px;
    text-align: center;
  }
}
.e1-perumin-form__main .content__option[data-option="form"] hgroup p a {
  color: #0fbddf !important;
  font: normal 600 18px "Roboto";
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="form"] hgroup p {
    font-size: 13px;
  }
  .e1-perumin-form__main .content__option[data-option="form"] hgroup p br {
    display: none;
  }
}
.e1-perumin-form__main .content__option[data-option="info"] {
  padding: 50px 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="info"] {
    padding: 60px 40px 40px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] {
    padding: 50px 25px 0px;
  }
}
.e1-perumin-form__main .content__option[data-option="info"] button.close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: 0px;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  float: none;
  text-shadow: none;
  opacity: inherit;
  width: 14px;
  height: 14px;
}
.e1-perumin-form__main
  .content__option[data-option="info"]
  button.close:before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url("./b62a3b7c-7e3c-48f9-91a2-cfd422d6f2f2-icon-close-black.svg")
    no-repeat center top;
  background-size: 100%;
}
.e1-perumin-form__main .content__option[data-option="info"] hgroup {
  text-align: left;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup {
    padding: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup {
    padding: 0px 0px 0px;
  }
}
.e1-perumin-form__main .content__option[data-option="info"] hgroup:before {
  content: "";
  width: 96px;
  height: 96px;
  display: block;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/usericono.png")
    no-repeat center top;
  background-size: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -48px;
  display: none;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup:before {
    width: 76px;
    height: 76px;
    background-size: 100%;
    margin-left: -38px;
  }
}
.e1-perumin-form__main .content__option[data-option="info"] hgroup h3 {
  font: normal 600 24px "Roboto";
  color: #222222;
  line-height: 32px;
  position: relative;
  display: table;
  text-align: left;
  width: 100%;
  /*@include to(tablet-h) {
		  font-size: em(28);
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup h3 {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
}
.e1-perumin-form__main
  .content__option[data-option="info"]
  hgroup
  h3
  span.phone:before {
  content: "\f095";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 20px;
  font-weight: 700;
  color: #13bdde;
  position: relative;
  top: 1px;
  left: 0px;
}
.e1-perumin-form__main .content__option[data-option="info"] hgroup h3 a {
  color: #13bdde;
  margin-left: 5px;
  text-decoration: underline;
}
.e1-perumin-form__main .content__option[data-option="info"] hgroup h4 {
  font: normal 600 20px "Roboto";
  color: #000000;
  margin: 60px 0 40px;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup h4 {
    margin: 35px 0 25px;
  }
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup h4 {
    margin: 35px 0 25px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup h4 {
    margin: 25px 0 15px;
  }
}
.e1-perumin-form__main .content__option[data-option="info"] hgroup p {
  font: normal 300 15px "Roboto";
  color: #222222;
  /*@include to(tablet-h) {
		  font-size: em(18);
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup p {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup p {
    font-size: 12px;
    text-align: center;
  }
}
.e1-perumin-form__main .content__option[data-option="info"] hgroup p a {
  color: #0fbddf !important;
  font: normal 600 18px "Roboto";
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] hgroup p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .e1-perumin-form__main .content__option[data-option="info"] hgroup p br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] header {
    max-height: 320px;
    overflow-y: scroll;
  }
}
.e1-perumin-form__main .content__option[data-option="info"] header p {
  font: normal 400 14px "Roboto";
  color: #333333;
  line-height: 20px;
  margin: 0px;
  /*@include to(tablet-h) {
		  font-size: em(18);
		}
		@include to(tablet) {
		  font-size: em(17);
		}*/
}
.e1-perumin-form__main .content__option[data-option="info"] header p a {
  color: #0fbddf;
  font-weight: 600;
}
.e1-perumin-form__main .content__option[data-option="info"] header p a:hover {
  text-decoration: underline;
  color: #0fbddf;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] header p {
    font-size: 13px;
    line-height: 18px;
  }
  .e1-perumin-form__main .content__option[data-option="info"] header p br {
    display: none;
  }
}
.e1-perumin-form__main .content__option[data-option="info"] footer {
  padding: 50px 0px 0px 0;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] footer {
    padding: 28px 0 30px 0;
  }
}
.e1-perumin-form__main .content__option[data-option="info"] footer a {
  font: normal 600 16px "Roboto";
  color: #ffffff;
  background: #da291c;
  line-height: 20px;
  padding: 13.5px 28px;
  line-height: 20px;
  display: inline-block;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  outline: none;
  font: normal 600 16px "Roboto";
  display: inline-block;
}
.e1-perumin-form__main .content__option[data-option="info"] footer a:hover {
  background-color: #fa253f;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__main .content__option[data-option="info"] footer a {
    width: 100%;
    text-align: center;
  }
}
.e1-perumin-form__item {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 0px 0px;
}
.e1-perumin-form__item--type1 {
  /*.e1-perumin-form__main{
		  min-height: 158px;
		  dl{
		    dd{
		      justify-content: space-between;
		    }
		  }
		}*/
}
.e1-perumin-form__item--type2 {
  /*.e1-perumin-form__header{
		  hgroup{
		    h4{
		      flex: initial;
		    }
		  }
		}

		.e1-perumin-form__main{
		  min-height: 158px;
		  dl{
		    dd{
		      justify-content: space-between;
		    }
		  }
		}*/
}
.e1-perumin-form__item--type3 {
  /*.e1-perumin-form__main{
		  min-height: 208px;
		  dl{
		    dd{
		      justify-content: center;
		      flex-wrap: wrap;
		    }
		  }
		}*/
}
.e1-perumin-form__header {
  padding: 0px 0 20px 0;
  margin: 0 30px;
  position: relative;
  border-bottom: 1px solid #d6d6d6;
}
.e1-perumin-form__header hgroup {
  width: 100%;
  text-align: center;
  padding-top: 50px;
}
.e1-perumin-form__header hgroup h2 {
  font: normal 700 35px "AMX-Bold";
  color: #000000;
  line-height: 40px;
}
.e1-perumin-form__header hgroup h3 {
  font: normal 700 30px "AMX-Bold";
  color: #da291c;
  line-height: 35px;
}
.e1-perumin-form__header hgroup h3 span {
  color: #000000;
}
.e1-perumin-form__header hgroup p {
  font: normal 400 12px "Roboto";
  color: #000000;
}
.e1-perumin-form__header blockquote {
  margin: 0px;
  padding-top: 15px;
}
.e1-perumin-form__header blockquote h4 {
  width: 200px;
  height: 30px;
  position: relative;
  margin-bottom: 10px;
  text-align: center;
  margin: 0 auto;
}
.e1-perumin-form__header blockquote h4:before {
  content: "";
  width: inherit;
  height: inherit;
  display: block;
  background-color: #fb8003;
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  position: absolute;
  z-index: 0;
}
.e1-perumin-form__header blockquote h4:after {
  width: inherit;
  height: inherit;
  content: attr(data-plus);
  font: normal 700 12px "Roboto";
  line-height: 30px;
  color: #ffffff;
  position: absolute;
  z-index: 1;
  left: 0;
}
.e1-perumin-form__header--highlight {
  width: 160px;
  padding: 0 10px;
  height: 35px;
  background-color: #0fbddf;
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 0px 0px 8px 8px;
  text-align: center;
}
.e1-perumin-form__header--highlight:before {
  width: 4px;
  height: 4px;
  background-color: #17798c;
  border-radius: 4px 0px 0px 0px;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: -4px;
}
.e1-perumin-form__header--highlight:after {
  width: 4px;
  height: 4px;
  background-color: #17798c;
  border-radius: 0px 4px 0px 0px;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: -4px;
}
.e1-perumin-form__header--highlight p {
  font: normal 400 14px "AMX-Bold";
  color: #ffffff;
  line-height: 35px;
}
.e1-perumin-form__amain {
  padding: 30px 0px 30px 0px;
  margin: 0 30px;
}
.e1-perumin-form__amain dl {
  width: 100%;
  margin-bottom: 10px;
  /*align-self: center;
		display: flex;
		justify-content: center;
		flex-direction: column;*/
}
.e1-perumin-form__amain dl dt {
  text-align: center;
}
.e1-perumin-form__amain dl dt h2 {
  font: normal 500 35px "AMX-Bold";
  color: #da291c;
  line-height: 32px;
}
.e1-perumin-form__amain dl dt h2 span {
  color: #000000;
}
.e1-perumin-form__amain dl dt h3 {
  font: normal 500 28px "AMX-Bold";
  color: #da291c;
  line-height: 32px;
}
.e1-perumin-form__amain dl dt h4 {
  font: normal 500 24px "AMX-Bold";
  color: #da291c;
  line-height: 24px;
}
.e1-perumin-form__amain dl dt p {
  font: normal 700 16px "AMX-Bold";
  color: #000000;
  margin-top: 5px;
}
.e1-perumin-form__amain dl dt picture {
  padding-top: 5px;
  display: block;
}
.e1-perumin-form__amain dl dd {
  text-align: center;
  padding-top: 20px;
}
.e1-perumin-form__amain dl dd h5 {
  font: normal 700 16px "AMX-Bold";
  color: #000000;
  line-height: 18px;
}
.e1-perumin-form__amain dl dd p {
  font: normal 400 16px "Roboto";
  color: #000000;
  margin-top: 10px;
}
.e1-perumin-form__amain dl dd picture {
  padding-top: 10px;
  display: block;
}
.e1-perumin-form__footer {
  background: #f9f9f9;
  border-radius: 0 0 15px 15px;
}
.e1-perumin-form__footer blockquote {
  margin: 0px;
  padding: 30px;
  text-align: center;
}
.e1-perumin-form__footer blockquote p {
  font: normal 400 12px "Roboto";
  color: #91979e;
}
.e1-perumin-form__footer button {
  -ms-flex-item-align: start;
  align-self: flex-start;
  font: normal 600 14px "Roboto";
  border: 0;
  color: #ffffff;
  padding: 0px 0px 0px 0px;
  cursor: default;
  width: 180px;
  line-height: 40px;
  cursor: pointer;
  background-color: #da291c;
  border-radius: 30px 30px 30px 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: table;
  margin: 0 auto;
  /*&:before {
		  content: "\f105";
		  @include icon(0px);
		  font-size: 22px;
		  font-weight: 600;
		  color: $color_b1;
		  position: absolute;
		  top: 14px;
		  right: 20px;
		}*/
}
@media screen and (max-width: 480px) {
  .e1-perumin-form__footer button {
    width: 100%;
  }
}
.e1-perumin-form__footer button:focus {
  outline: none;
}
.e1-perumin-form__footer button:hover {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-filter: saturate(0.6);
  -moz-filter: saturate(0.6);
  -ms-filter: saturate(0.6);
  -o-filter: saturate(0.6);
  filter: saturate(0.6);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.e1-perumin-modal {
  width: 800px;
  background-color: #fff;
  border-radius: 32px;
  padding: 50px 40px;
}
.e1-perumin-modal[data-option="info"] {
  position: relative;
  /*button.close {
		  position: absolute;
		  top: 30px;
		  right: 30px;
		  background: none;
		  border: 0px;
		  margin: 0px;
		  padding: 0px;
		  cursor: pointer;
		  float: none;
		  text-shadow: none;
		  opacity: inherit;
		  width: 14px;
		  height: 14px;

		  &:before {
		    content: "";
		    width: 14px;
		    height: 14px;
		    display: inline-block;
		    background: url("./b62a3b7c-7e3c-48f9-91a2-cfd422d6f2f2-icon-close-black.svg") no-repeat center top;
		    background-size: 100%;

		    @include to(tablet) {
		      //background: url("./084e7362-1d53-40b6-ba4c-96e38b3dd722-close-white.svg") no-repeat center top;
		      //background-size: 100%;
		    }
		  }

		  @include to(tablet) {
		    //top: 20px;
		  }
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-modal[data-option="info"] {
    padding: 60px 40px 40px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] {
    padding: 40px 25px 0px;
  }
}
.e1-perumin-modal[data-option="info"] hgroup {
  text-align: left;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-modal[data-option="info"] hgroup {
    padding: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] hgroup {
    padding: 0px 0px 0px;
  }
}
.e1-perumin-modal[data-option="info"] hgroup:before {
  content: "";
  width: 96px;
  height: 96px;
  display: block;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/usericono.png")
    no-repeat center top;
  background-size: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -48px;
  display: none;
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] hgroup:before {
    width: 76px;
    height: 76px;
    background-size: 100%;
    margin-left: -38px;
  }
}
.e1-perumin-modal[data-option="info"] hgroup h3 {
  font: normal 700 24px "Roboto";
  color: #222222;
  line-height: 32px;
  position: relative;
  display: table;
  width: 100%;
  /*@include to(tablet-h) {
		  font-size: em(28);
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-modal[data-option="info"] hgroup h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] hgroup h3 {
    font-size: 20px;
    line-height: 24px;
    text-align: left;
  }
}
.e1-perumin-modal[data-option="info"] hgroup h3 span.phone:before {
  content: "\f095";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 20px;
  font-weight: 700;
  color: #13bdde;
  position: relative;
  top: 1px;
  left: 0px;
}
.e1-perumin-modal[data-option="info"] hgroup h3 a {
  color: #13bdde;
  margin-left: 5px;
  text-decoration: underline;
}
.e1-perumin-modal[data-option="info"] hgroup h4 {
  font: normal 600 20px "Roboto";
  color: #000000;
  margin: 60px 0 40px;
}
@media screen and (max-width: 1024px) {
  .e1-perumin-modal[data-option="info"] hgroup h4 {
    margin: 35px 0 25px;
  }
}
@media screen and (max-width: 1024px) {
  .e1-perumin-modal[data-option="info"] hgroup h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .e1-perumin-modal[data-option="info"] hgroup h4 {
    margin: 35px 0 25px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] hgroup h4 {
    margin: 25px 0 15px;
  }
}
.e1-perumin-modal[data-option="info"] hgroup p {
  font: normal 300 15px "Roboto";
  color: #222222;
  /*@include to(tablet-h) {
		  font-size: em(18);
		}*/
}
@media screen and (max-width: 1024px) {
  .e1-perumin-modal[data-option="info"] hgroup p {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] hgroup p {
    font-size: 12px;
    text-align: center;
  }
}
.e1-perumin-modal[data-option="info"] hgroup p a {
  color: #0fbddf !important;
  font: normal 600 18px "Roboto";
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] hgroup p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .e1-perumin-modal[data-option="info"] hgroup p br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] header {
    max-height: 50vh;
    overflow-y: scroll;
  }
}
.e1-perumin-modal[data-option="info"] header p {
  font: normal 400 14px "Roboto";
  color: #333333;
  line-height: 20px;
  margin: 0px;
  /*@include to(tablet-h) {
		  font-size: em(18);
		}
		@include to(tablet) {
		  font-size: em(17);
		}*/
}
.e1-perumin-modal[data-option="info"] header p a {
  color: #0fbddf;
  font-weight: 600;
}
.e1-perumin-modal[data-option="info"] header p a:hover {
  text-decoration: underline;
  color: #0fbddf;
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] header p {
    font-size: 13px;
    line-height: 18px;
  }
  .e1-perumin-modal[data-option="info"] header p br {
    display: none;
  }
}
.e1-perumin-modal[data-option="info"] footer {
  padding: 50px 0px 0px 0;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] footer {
    padding: 28px 0 30px 0;
  }
}
.e1-perumin-modal[data-option="info"] footer .e1-perumin-modal__btn-default {
  font: normal 600 16px "Roboto";
  color: #ffffff;
  background: #da291c;
  line-height: 20px;
  padding: 13.5px 28px;
  line-height: 20px;
  display: inline-block;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  outline: none;
  font: normal 600 16px "Roboto";
  display: inline-block;
}
.e1-perumin-modal[data-option="info"]
  footer
  .e1-perumin-modal__btn-default:hover {
  background-color: #fa253f;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal[data-option="info"] footer .e1-perumin-modal__btn-default {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .e1-perumin-modal {
    width: 90vw;
  }
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal {
    width: 90vw;
  }
}
.e1-perumin-modal--type1[data-option="info"] {
  width: 570px;
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal--type1[data-option="info"] {
    width: 90vw;
  }
}
.e1-perumin-modal--type1[data-option="info"] hgroup h3 {
  text-align: center;
  padding: 0 30px;
}
.e1-perumin-modal--type1[data-option="info"] header p {
  text-align: center;
  font-size: 16px;
}
.e1-perumin-modal--type1[data-option="info"] footer {
  padding: 30px 0 0 0;
}
@media screen and (max-width: 480px) {
  .e1-perumin-modal--type1[data-option="info"] footer {
    padding: 30px 0 30px 0;
  }
}
.e1-perumin-modal--type1[data-option="info"] footer a.btn-event {
  border-radius: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 45px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px auto;
  cursor: pointer;
}
.e1-perumin-modal--type1[data-option="info"] footer a.btn-event:hover {
  background-color: #fbfbfb;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.e1-perumin-modal--type1[data-option="info"] footer a.btn-event:active span {
  color: #000000;
}
.e1-perumin-modal--type1[data-option="info"] footer a.btn-event span {
  font: normal 600 14px "Roboto";
  line-height: 45px;
  color: #000000;
}
.e1-perumin-modal--type1[data-option="info"] footer a.btn-event img {
  width: 28px;
  margin-right: 10px;
}

.layout__main .page1__header .portlet1__align {
  width: 100%;
}
.layout__main .page1__header .portlet1 .zone1 {
  position: relative;
  width: 100%;
  height: 700px;
  background: url("https://www.claro.com.pe/assets/havas/lima-cloudshift/assets/bg_desktop.jpg")
    no-repeat top center;
  background-size: contain;
  background-color: black;
  padding: 85px 0 0 0;
}
@media screen and (max-width: 1900px) {
  .layout__main .page1__header .portlet1 .zone1 {
    background-size: cover;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__header .portlet1 .zone1 {
    height: auto;
    padding: 30px 0 30px 0;
    background: url("https://www.claro.com.pe/assets/havas/lima-cloudshift/assets/bg_tablet.jpg?v=2") no-repeat top center;
    background-size: cover;
  }
}
@media screen and (max-width: 900px) {
  .layout__main .page1__header .portlet1 .zone1 {
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__header .portlet1 .zone1 {
    background: url("https://www.claro.com.pe/assets/havas/lima-cloudshift/assets/bg_mobile.jpg") no-repeat top center;
    background-size: cover;
    background-position: top;
    height: 1320px;
  }
}
.layout__main .page1__header .portlet1 .zone1__main {
  position: relative;
  width: 1240px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__header .portlet1 .zone1__main {
    width: 92vw;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__header .portlet1 .zone1__main {
    width: 326px;
  }
}
.layout__main .page1__header .portlet1 .zone1__main:before {
  content: "";
  width: 241px;
  height: 41px;
  background: url("https://www.claro.com.pe/assets/havas/lima-cloudshift/assets/logo_huawei.png") no-repeat center center;
  background-size: contain;
  background-position: left center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* background: none; */
}
.layout__main .page1__header .portlet1 .zone1__main:after {
  content: "";
  width: 241px;
  height: 41px;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/commons/logo.svg") no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 500px;
  z-index: 1;
  /* background: none; */
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__header .portlet1 .zone1__main:before {
    width: 212px;
    height: 36px;
    background-size: contain;
    background-position: left;
  }
  .layout__main .page1__header .portlet1 .zone1__main:after{
    left: auto;
    right: 20px;
    height: 36px;
    background-size: contain;
    background-position: right;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__header .portlet1 .zone1__main:before {
    width: 131px;
    height: 30px;
    background-size: contain;
  }
  .layout__main .page1__header .portlet1 .zone1__main:after{
    width: 190px;
    height: 30px;
    background-size: contain;
    background-position: right;
  }
}
.layout__main .page1__header .portlet1 .zone1__main .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__header .portlet1 .zone1__main .content {
    flex-direction: column;
  }
}
.layout__main .page1__header .portlet1 .zone1__main .content__header {
  /*width: 433px;
  height: 311px;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/commons/bg_folder.png")
    no-repeat center center;
  background-size: 100% 100%;
  padding: 30px 30px 0;*/
  margin-top: 95px;
  /*display: -webkit-box;
  display: -ms-flexbox;*/
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1024px) {
  /*.layout__main .page1__header .portlet1 .zone1__main .content__header {
    width: 704px;
    height: 190px;
    background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/commons/bg_folder_tablet.png")
      no-repeat center center;
    padding: 30px 72px 0;
    margin: 50px auto 0;
  }*/

  .layout__main .page1__header .portlet1 .zone1__main .content__header {
    width: 100%;
    max-width: 100% !important;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: center;
  }
  .layout__main .page1__header .portlet1 .zone1__main .content {
    display: flex;
    flex-direction: column;
  }
  .layout__main .page1__header .portlet1 .zone1__main .content__header hgroup {
    margin: 0 !important;
    width: 100%;
    max-width: 338px !important;
  }
}
/*@media screen and (max-width: 480px) {
  .layout__main .page1__header .portlet1 .zone1__main .content__header {
    width: 326px;
    height: 160px;
    background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/commons/bg_folder_movil.png")
      no-repeat center center;
    background-size: 100% 100%;
    padding: 20px 13px 0;
    margin: 35px auto 0;
  }
}*/
.layout__main .page1__header .portlet1 .zone1__main .content__header hgroup {
  margin-top: 50px;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  .items
  .item {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 15px 0;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  .items
  .item:nth-child(2) {
  border-top: 2.4px solid #fff;
  border-bottom: 2.4px solid #fff;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  .items
  .item
  p {
  color: #fff;
  font-family: AMX-Bold;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  .items
  .item
  p
  b {
  color: #fff;
  font-family: AMX-Bold;
  font-size: 24px;
  font-weight: 700;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  .items
  .item
  p.direccion {
  line-height: 106%;
}

.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  .items
  .item
  p.direccion
  span {
  font-size: 14px;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  .items
  .item
  p.direccion
  strong {
  font-size: 24px;
  font-style: italic;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  .items
  .item
  p.direccion
  b {
  font-size: 12px;
}
.layout__main .page1__header .portlet1 .zone1__main .content__header hgroup h1 {
  font: normal 700 34px "AMX-Bold";
  color: #ffffff;
  line-height: 1;
  padding-right: 20px;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  h1
  span {
  color: #ffffff;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  h1
  br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    h1
    br {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    h1 {
    font-size: 31px;
    line-height: 1;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    h1 {
    font-size: 18px;
    line-height: 1;
    padding-right: 0px;
    letter-spacing: -0.25px;
  }
}
.layout__main .page1__header .portlet1 .zone1__main .content__header hgroup h3 {
  font: normal 700 14px "AMX-Bold";
  color: #ffffff;
  margin: 15px 0 20px;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/commons/location.svg")
    no-repeat left 0px;
  padding-left: 20px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    h3 {
    font-size: 10px;
    margin: 8px 0 10px;
    background-size: 3% 100%;
    padding-left: 14px;
  }
}
.layout__main .page1__header .portlet1 .zone1__main .content__header {
  max-width: 376px;
  width: 100%;
}
.layout__main .page1__header .portlet1 .zone1__main .content__header hgroup p {
  font: normal 400 20px "AMX-Regular";
  color: #ffffff;
  margin-top: 5px;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__header
  hgroup
  p
  strong {
  font-family: "AMX-Bold";
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    p {
    font-size: 12px;
  }
}
.layout__main .page1__header .portlet1 .zone1__main .content__footer {
  width: 450px;
  height: 530px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layout__main .page1__header .portlet1 .zone1__main .content__footer.active {
  height: 460px;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__header .portlet1 .zone1__main .content__footer {
    margin: 420px auto 400px;
  }
}
@media screen and (max-width: 900px) {
  .layout__main .page1__header .portlet1 .zone1__main .content__footer {
    margin: 260px auto 260px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__header .portlet1 .zone1__main .content__footer {
    width: 326px;
    height: 494px;
    margin: 30px auto 150px;
  }
}
.layout__main .page1__header .portlet1 .zone1__main .content__footer:before {
  content: "";
  background-color: #000000;
  border-radius: 10px;
  opacity: 0.7;
  display: block;
  position: absolute;
  width: inherit;
  height: inherit;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 480px) {
  .layout__main .page1__header .portlet1 .zone1__main .content__footer.active {
    height: 250px;
    margin-bottom: 100px;
  }
}
.layout__main .page1__header .portlet1 .zone1__main .content__footer .message {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  position: relative;
  z-index: 1;
  padding: 0 46px;
  text-align: center;
  width: 100%;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__footer
  .message
  h3 {
  font: normal 700 23px "AMX-Bold";
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__footer
    .message
    h3 {
    font-size: 20px;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__footer
    .message {
    padding: 0px 34px;
    width: 84%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__footer
    .message
    h3 {
    font-size: 16px;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__footer
    .message {
    width: 96%;
  }
}
.layout__main .page1__header .portlet1 .zone1__main .content__footer .thanks {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  position: relative;
  z-index: 1;
  padding: 30px 50px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 8px 4px rgba(255, 255, 255, 0.25);
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__footer
  .thanks__header-title {
  font: normal 700 23px "AMX-Bold";
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__footer
    .thanks__header-title {
    font-size: 18px;
  }
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__footer
  .thanks__header-text {
  margin-top: 15px;
  color: #fff;
  font: normal 400 16px "Roboto";
  line-height: normal;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__footer
    .thanks__header-text {
    font-size: 14px;
  }
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__footer
  .thanks__main {
  margin-top: 20px;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__footer
  .thanks__main-event {
  border-radius: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 45px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px auto;
  cursor: pointer;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__footer
  .thanks__main-event:hover {
  background-color: #fbfbfb;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__footer
  .thanks__main-event:active
  span {
  color: #000000;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__footer
  .thanks__main-event
  span {
  font: normal 600 14px "Roboto";
  line-height: 45px;
  color: #000000;
}
.layout__main
  .page1__header
  .portlet1
  .zone1__main
  .content__footer
  .thanks__main-event
  img {
  width: 28px;
  margin-right: 10px;
}
.layout__main .page1__header .portlet1 .zone1 header .banner__image {
  width: 100%;
  min-height: 420px;
  position: relative;
  margin: 0 auto;
  border-radius: 0px 0px 30px 30px;
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.layout__main .page1__header .portlet1 .zone1 header .banner__image.banner1 {
  background-image: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/ee2215e1-c6ef-4f17-a96f-98544648a4ef-banner1.png");
}
@media screen and (max-width: 640px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image.banner1 {
    background-image: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/3b899c80-3ff2-419d-a101-63efe3ff943a-banner1.png");
  }
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image.banner1:before {
  content: "";
  width: 488px;
  height: 382px;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/217c90fa-dd7c-48b0-8fdd-b503f75b046f-fondo_banner1.png")
    no-repeat center top;
  background-size: 100% 100%;
  display: block;
  position: absolute;
  bottom: 0%;
  right: 21%;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner1:before {
    right: 17%;
  }
}
@media screen and (max-width: 1366px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner1:before {
    right: 15%;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner1:before {
    right: 18%;
    height: 300px;
    width: 320px;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner1:before {
    right: 13%;
  }
}
@media screen and (max-width: 640px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner1:before {
    display: none;
  }
}
.layout__main .page1__header .portlet1 .zone1 header .banner__image.banner2 {
  background-image: url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/banners/desktop/banner2.png");
}
@media screen and (max-width: 640px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image.banner2 {
    background-image: url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/banners/mobile/banner2.png");
  }
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image.banner2:before {
  content: "";
  width: 588px;
  height: 382px;
  background: url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/banners/fondos/fondo_banner2.png")
    no-repeat center top;
  background-size: 100% 100%;
  display: block;
  position: absolute;
  bottom: 0%;
  right: 15%;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner2:before {
    right: 7%;
    width: 470px;
    height: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner2:before {
    width: 420px;
    height: 289px;
  }
}
@media screen and (max-width: 640px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner2:before {
    display: none;
  }
}
.layout__main .page1__header .portlet1 .zone1 header .banner__image.banner3 {
  background: linear-gradient(89.93deg, #000000 -1.56%, rgba(0, 0, 0, 0) 76.18%),
    url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/1dce02f7-20ef-4bd6-a2dd-55aee25812b2-banner3.png")
      no-repeat left top;
  background-size: 100% 100%;
}
@media screen and (max-width: 640px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image.banner3 {
    background: linear-gradient(
        89.93deg,
        #000000 -1.56%,
        rgba(0, 0, 0, 0) 76.18%
      ),
      url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/78fa6f08-016e-40d1-9fe5-74d7e8248ae9-banner3.png");
    background-size: 100% 100%;
  }
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image.banner3:before {
  content: "";
  width: 459px;
  height: 382px;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/c76777bb-355b-4191-a925-437eb2a1be15-fondo_banner3.png")
    no-repeat center top;
  background-size: 100% 100%;
  display: block;
  position: absolute;
  bottom: 0%;
  right: 14%;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner3:before {
    right: 7%;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner3:before {
    width: 375px;
    height: 289px;
  }
}
@media screen and (max-width: 640px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner3:before {
    background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/c1f9cf38-8750-4dc5-bf45-46b2729b37bb-fondo_banner3-mobile.png")
      no-repeat center top;
    background-size: 100% 100%;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 176px;
    height: 159px;
    right: 5%;
  }
}
.layout__main .page1__header .portlet1 .zone1 header .banner__image.banner4 {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(10%, rgb(0, 0, 0)),
    color-stop(53%, rgb(218, 41, 28))
  );
  background: linear-gradient(90deg, rgb(0, 0, 0) 10%, rgb(218, 41, 28) 53%);
}
@media screen and (max-width: 640px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image.banner4 {
    background-size: cover;
    background-image: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/27027928-74fa-4a29-99d6-5bcab14175e6-banner4.png");
  }
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image.banner4:before {
  content: "";
  width: 530px;
  height: 100%;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/14f2c744-24aa-4a11-84bc-06a747301ad5-fondo_banner4.png")
    no-repeat center top;
  background-size: 100% 100%;
  display: block;
  position: absolute;
  bottom: 0%;
  right: 16%;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner4:before {
    right: 7%;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner4:before {
    width: 375px;
    height: 289px;
  }
}
@media screen and (max-width: 640px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image.banner4:before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image {
    min-height: 320px;
  }
}
@media screen and (max-width: 640px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image {
    min-height: 248px;
  }
}
.layout__main .page1__header .portlet1 .zone1 header .banner__image__link {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  min-height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 1366px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image__link {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1341px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image__link {
    min-height: 420px;
    max-width: 80%;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image__link {
    min-height: 320px;
  }
}
@media screen and (max-width: 640px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image__link {
    min-height: 248px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image__link {
    max-width: 90%;
  }
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image__link.disable {
  visibility: hidden;
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image__link
  .text {
  max-width: 440px;
  margin-right: auto;
  margin-bottom: 10px;
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image__link
  .text.txt3 {
  max-width: 485px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image__link
    .text.txt3 {
    max-width: 170px;
  }
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image__link
  .text
  h3 {
  font: normal 700 2.1875em "AMX-Bold";
  line-height: 45px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image__link
    .text
    h3 {
    font-size: 22px;
    line-height: 29px;
  }
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image__link
  .text
  p {
  font: normal 500 1.125em "Roboto";
  line-height: 24px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image__link
    .text
    p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1
    header
    .banner__image__link
    .text {
    max-width: 170px;
  }
}
.layout__main .page1__header .portlet1 .zone1 header .banner__image__link a {
  font: normal 700 1.125em "Roboto";
  color: #fff;
  background: #ee122c;
  border-radius: 32px;
  padding: 10px 40px;
  text-align: center;
  display: block;
  cursor: pointer;
}
.layout__main
  .page1__header
  .portlet1
  .zone1
  header
  .banner__image__link
  a.tWhite {
  color: #ee122c;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__header .portlet1 .zone1 header .banner__image__link a {
    padding: 11px 16px;
    font-size: 13px;
  }
}
.layout__main .page1__main .portlet1 {
  background-color: #f4f6f9;
}
.layout__main .page1__main .portlet1__align {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 0 60px;
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1__align {
    padding: 40px 0 40px;
  }
}
.layout__main .page1__main .portlet1 .zone1__header .popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100vh;
  opacity: 1;
  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;
}
.layout__main .page1__main .portlet1 .zone1__header .popup__content {
  background-color: #fff;
  border-radius: 32px;
  padding: 0px 0px;
  position: relative;
  width: 500px;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__header .popup__content {
    width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__header .popup__content {
    width: 90%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__header {
  padding: 0 20px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__header
  .close {
  background: none;
  border: 0px;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  float: right;
  text-shadow: none;
  opacity: inherit;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 15px;
  right: 20px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__header
  .close:before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/05ed392f-0935-4907-8b18-7d45766a5576-b62a3b7c-7e3c-48f9-91a2-cfd422d6f2f2-icon-close-black.svg")
    no-repeat center top;
  background-size: 100%;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__header
  .title {
  margin-top: 35px;
  text-align: center;
  font: normal 600 1.375em "Roboto";
  line-height: 24px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__header
  .titleLeft {
  margin-top: 35px;
  text-align: left;
  font: normal 600 1.375em "Roboto";
  line-height: 24px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__main {
  margin-top: 15px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__header
    .popup__content
    .content__main.box2 {
    height: 295px;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__header
    .popup__content
    .content__main {
    height: 340px;
    overflow-y: scroll;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__main
  p {
  padding: 0 20px;
  text-align: justify;
  font: normal 400 0.875em "Roboto";
  line-height: 20px;
  margin: 0;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__main
  p
  a {
  text-decoration: none;
  color: #0fbddf;
  font-weight: 600;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__footer {
  padding: 28px 20px 30px 20px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__header
    .popup__content
    .content__footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__footer
  a {
  background-color: #da291c;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13.5px 28px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  border: none;
  font: normal 600 1em "Roboto";
  color: #fff;
  border-radius: 32px !important;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__header
  .popup__content
  .content__footer
  a:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  background-color: #ea5449;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__header
    .popup__content
    .content__footer
    a {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.layout__main .page1__main .portlet1 .zone1__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__main {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.layout__main .page1__main .portlet1 .zone1__main header {
  width: 430px;
  padding: 50px 0 0 0;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__main header {
    margin: 0 auto;
    padding: 10px 0 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__main header {
    width: 100%;
    padding: 10px 0 10px 0;
  }
}
.layout__main .page1__main .portlet1 .zone1__main header hgroup {
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__main header hgroup {
    text-align: center;
  }
}
.layout__main .page1__main .portlet1 .zone1__main header hgroup h3 {
  font: normal 700 32px "AMX-Bold";
  color: #000000;
  line-height: 35px;
  margin-bottom: 10px;
  /*@include to(movil) {
			font-size: em(20);
			height: auto;

			br {
				display: none;
			}
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__main header hgroup h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 5px;
  }
}
.layout__main .page1__main .portlet1 .zone1__main header hgroup h6 {
  font: normal 500 12px "Roboto";
  color: #979797;
  line-height: 25px;
  padding-bottom: 10px;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__main header hgroup h6 {
    padding-bottom: 0px;
  }
}
.layout__main .page1__main .portlet1 .zone1__main header blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px;
}
.layout__main .page1__main .portlet1 .zone1__main header blockquote h4 {
  font: normal 700 20px "Roboto";
  color: #000000;
  line-height: 32px;
  margin: 0 15px;
  width: 200px;
  text-align: center;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
.layout__main .page1__main .portlet1 .zone1__main header blockquote button {
  background-color: transparent;
  border: 0px;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button:focus {
  outline: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button:hover {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-filter: saturate(0.6);
  -moz-filter: saturate(0.6);
  -ms-filter: saturate(0.6);
  -o-filter: saturate(0.6);
  filter: saturate(0.6);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 2em;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button:active:after {
  position: absolute;
  border-radius: 2em;
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-transition: 0s;
  transition: 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button:active {
  top: 1px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.btn_menos {
  background-color: #ed112c;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.btn_menos:before {
  content: "";
  width: 31px;
  height: 31px;
  display: block;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/ico_menos.svg")
    no-repeat center center;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.btn_menos:after {
  -webkit-box-shadow: 0 0 10px 40px #d1dbe7;
  box-shadow: 0 0 10px 40px #d1dbe7;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.btn_menos:active:after {
  -webkit-box-shadow: 0 0 0 0 #d1dbe7;
  box-shadow: 0 0 0 0 #d1dbe7;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.btn_mas {
  background-color: #ed112c;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.btn_mas:before {
  content: "";
  width: 31px;
  height: 31px;
  display: block;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/ico_mas.svg")
    no-repeat center center;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.btn_mas:after {
  -webkit-box-shadow: 0 0 10px 40px #d1dbe7;
  box-shadow: 0 0 10px 40px #d1dbe7;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.btn_mas:active:after {
  -webkit-box-shadow: 0 0 0 0 #d1dbe7;
  box-shadow: 0 0 0 0 #d1dbe7;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.disabled {
  background-color: #979797;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.disabled:after {
  content: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.disabled:active {
  top: 0px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.disabled:active:after {
  content: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  header
  blockquote
  button.disabled:hover {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  cursor: not-allowed;
}
.layout__main .page1__main .portlet1 .zone1__main footer {
  width: 810px;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__main footer {
    width: 100%;
  }
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel {
  width: 750px;
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__main footer .carousel {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__main footer .carousel {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__main footer .carousel {
    width: 366px;
  }
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel__viewport {
  padding: 15px 0;
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel__pagination {
  padding: 10px 0 0 0;
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel__prev {
  left: -7%;
  width: 35px;
  height: 35px;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__main footer .carousel__prev {
    display: none;
  }
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel__prev:after {
  width: inherit;
  height: inherit;
  display: block;
  content: "";
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/arrow_slider_left.svg")
    no-repeat left top;
  position: absolute;
  top: 0px;
  left: 0px;
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel__prev svg {
  visibility: hidden;
  width: inherit;
  height: inherit;
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel__next {
  right: -7%;
  width: 35px;
  height: 35px;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__main footer .carousel__next {
    display: none;
  }
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel__next:after {
  width: inherit;
  height: inherit;
  display: block;
  content: "";
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/arrow_slider_right.svg")
    no-repeat left top;
  position: absolute;
  top: 0px;
  left: 0px;
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel__next svg {
  visibility: hidden;
  width: inherit;
  height: inherit;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .carousel__pagination-button {
  margin: 2px 6px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .carousel__pagination-button:after {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d9d9d9;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .carousel__pagination-button--active:after {
  background: #ee122c;
}
.layout__main .page1__main .portlet1 .zone1__main footer .carousel__track {
  height: 540px;
}
.layout__main .page1__main .portlet1 .zone1__main footer .item {
  width: 346px;
  height: 540px;
  border-radius: 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 11px rgba(48, 47, 75, 0.25);
  box-shadow: 0px 4px 11px rgba(48, 47, 75, 0.25);
  overflow: hidden;
  padding: 0px;
}
.layout__main .page1__main .portlet1 .zone1__main footer .item__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 692px;
  height: 540px;
  margin-left: 0px;
  -webkit-transition: margin-left 200ms ease-in-out;
  transition: margin-left 200ms ease-in-out;
}
.layout__main .page1__main .portlet1 .zone1__main footer .item__group.active {
  margin-left: -346px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description {
  width: 346px;
  height: 540px;
  padding: 30px 30px 0;
  text-align: left;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  article
  dl {
  margin-bottom: 20px;
}
.layout
  .layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description__highlight {
  border-top: 1px solid #ededed;
  padding-top: 20px;
}
.layout
  .layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description__highlight
  dt
  h3,
.layout
  .layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description__highlight
  dt
  h4 {
  color: #da291c;
}

.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  article
  dl
  dt
  h4 {
  font: normal 700 17px "AMX-Bold";
  color: #000000;
  line-height: 22px;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  article
  dl
  dt
  h3 {
  font: normal 700 36px "Roboto";
  color: #000000;
  line-height: 46px;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  article
  dl
  dt
  h3
  span {
  font: normal 700 16px "AMX-Bold";
  color: #000000;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  article
  dl
  dt
  h6 {
  font: normal 400 14px "Roboto";
  color: #979797;
  line-height: 16px;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  blockquote {
  margin: 0px;
  padding-top: 5px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  blockquote
  h5 {
  font: normal 500 12px "Roboto";
  color: #979797;
  line-height: 25px;
  text-align: center;
  margin-bottom: 15px;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  blockquote
  .buttons
  .btn_default {
  font: normal 600 0.875em "Roboto";
  border: 0;
  color: #ffffff;
  padding: 0px 0px 0px 0px;
  cursor: default;
  width: 100%;
  line-height: 45px;
  cursor: pointer;
  background-color: #da291c;
  border-radius: 30px 30px 30px 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: table;
  margin: 0 auto;
  /*&:before {
			content: "\f105";
			@include icon(0px);
			font-size: 22px;
			font-weight: 600;
			color: $color_b1;
			position: absolute;
			top: 14px;
			right: 20px;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    .item__group
    .description
    blockquote
    .buttons
    .btn_default {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  blockquote
  .buttons
  .btn_default:focus {
  outline: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  blockquote
  .buttons
  .btn_default:hover {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-filter: saturate(0.6);
  -moz-filter: saturate(0.6);
  -ms-filter: saturate(0.6);
  -o-filter: saturate(0.6);
  filter: saturate(0.6);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .description
  blockquote
  .buttons
  .btn_detail {
  font: normal 700 16px "Roboto";
  color: #0fbddf;
  line-height: 19px;
  background-color: transparent;
  border: 0px;
  display: table;
  margin: 20px auto 0;
  cursor: pointer;
}
.layout__main .page1__main .portlet1 .zone1__main footer .item__group .detail {
  width: 346px;
  height: 540px;
  padding: 30px 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail
  article {
  width: 100%;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail
  article
  dl {
  padding: 13px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7e8;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail
  article
  dl:last-child {
  border-bottom: 0px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail
  article
  dl
  dt {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__title
  h3 {
  font: normal 700 14px "Roboto";
  color: #283342;
  line-height: 16px;
  text-align: left;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__title
  details {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 12px;
  height: 12px;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/ico_info.svg")
    no-repeat left top;
  cursor: default;
  margin-left: 2px;
  vertical-align: middle;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__title
  details:hover
  summary {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__title
  details
  summary {
  cursor: default;
  visibility: hidden;
  width: 200px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 100%;
  opacity: 0;
  margin-top: 1em;
  border-radius: 8px;
  -webkit-transform: translate(-50%, 1em);
  transform: translate(-50%, 1em);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  white-space: normal;
  text-align: center;
  font: normal 400 11px "Roboto";
  line-height: 14px;
  padding: 15px 10px;
  background-color: #273341;
  color: #ffffff;
  z-index: 1;
  list-style: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__title
  details
  summary:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 0;
  height: 0;
  border: 0.7em solid transparent;
  border-bottom-color: #273341;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail
  article
  dl
  dd {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__content {
  /*display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;*/
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: right;
  width: 100%;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__content
  h4 {
  font: normal 700 18px "Roboto";
  color: #283342;
  line-height: 16px;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__content
  p {
  font: normal 400 14px "Roboto";
  color: #283342;
  line-height: 16px;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__content
  img {
  margin: 4px 0px 0 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail__content
  img.plus {
  margin: 4px 24px 0 4px;
}

.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail
  blockquote {
  width: 100%;
  margin: 0px;
  position: relative;
  top: -20px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail
  blockquote
  h5 {
  font: normal 500 12px "Roboto";
  color: #979797;
  line-height: 25px;
  text-align: center;
  margin-bottom: 15px;
  /*@include to(movil) {
			font-size: em(14);
			height: auto;

			br {
				display: none;
			}
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail
  blockquote
  .buttons
  .btn_close {
  font: normal 700 16px "Roboto";
  color: #0fbddf;
  line-height: 19px;
  background-color: transparent;
  border: 0px;
  display: table;
  margin: 0px auto 0;
  position: relative;
  padding: 34px 0 0 0;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  .item__group
  .detail
  blockquote
  .buttons
  .btn_close:before {
  /*content: "\f00d";
		@include icon(0px);
		font-size: 20px;
		font-weight: 400;
		color: #000000;*/
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  width: 31px;
  height: 31px;
  left: 50%;
  margin-left: -15px;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/close_detail.svg")
    no-repeat center center;
}
.layout__main .page1__main .portlet1 .zone1__main footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article {
  background-color: #f0f0f0;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article
  h4 {
  color: #979797;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article.active {
  border: 1px solid #2c6950;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(44, 105, 80, 0.4);
  box-shadow: 0px 0px 1px 1px rgba(44, 105, 80, 0.4);
  background-color: #f5fffc;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article.active
  + template {
  display: block;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article.active
  + template
  blockquote {
  width: 100%;
  max-height: 540px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article.active
  sup {
  background-color: #2c6950;
  border-radius: 50px 50px 50px 50px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article.active
  sup:before {
  content: "\f00c";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  position: absolute;
  top: 3px;
  right: 3px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article.active
  sup.check {
  background-color: #2c6950;
  border-radius: 50px 50px 50px 50px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article.active
  sup.check:before {
  content: "\f00c";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  position: absolute;
  top: 3px;
  right: 3px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article.active
  h4 {
  color: #2c6950;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul:has(article.active)
  li
  article.active
  p {
  color: #212121;
}
.layout__main .page1__main .portlet1 .zone1__main footer ul li {
  width: 520px;
  margin: 0px 0px 15px 0px;
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__main footer ul li {
    width: 100%;
  }
}
.layout__main .page1__main .portlet1 .zone1__main footer ul li article {
  width: 340px;
  height: 46px;
  margin: 0 auto;
  border-radius: 8px 8px 8px 8px;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 1px solid #d8d8d8;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__main footer ul li article {
    width: 100%;
    margin: 0px 0px 0px 0px;
  }
}
.layout__main .page1__main .portlet1 .zone1__main footer ul li article:hover {
  -webkit-box-shadow: 0px 0px 1px 1px rgba(216, 216, 216, 0.4);
  box-shadow: 0px 0px 1px 1px rgba(216, 216, 216, 0.4);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main .page1__main .portlet1 .zone1__main footer ul li article sup {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 12px;
  right: 12px;
}
.layout__main .page1__main .portlet1 .zone1__main footer ul li article sub {
  width: 100%;
  height: 18px;
  position: absolute;
  bottom: 12px;
  left: 6px;
  font: normal 400 0.5625em "Roboto";
  color: #a09f9f;
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__main footer ul li article sub {
    bottom: 2px;
    left: 20px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  article
  blockquote {
  width: 100%;
  margin: 0px;
  padding: 0px 18px;
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.layout__main .page1__main .portlet1 .zone1__main footer ul li article h4 {
  font: normal 500 0.875em "Roboto";
  color: #212121;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  article
  h4
  details {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 14px;
  height: 14px;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/07749a6a-32cd-4903-998f-e5f5a81bfa6a-tooltip.svg")
    no-repeat left top;
  background-size: cover;
  cursor: default;
  margin-left: 5px;
  vertical-align: text-top;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  article
  h4
  details:hover
  summary {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  article
  h4
  details
  summary::-webkit-details-marker {
  display: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  article
  h4
  details
  summary {
  cursor: default;
  visibility: hidden;
  width: 114px;
  height: auto;
  position: absolute;
  top: -10px;
  left: 600%;
  opacity: 0;
  margin-bottom: 1em;
  border-radius: 8px;
  -webkit-transform: translate(10%, 1em);
  transform: translate(10%, 1em);
  white-space: normal;
  text-align: left;
  font: normal 400 0.625em "Roboto";
  line-height: 11px;
  padding: 10px;
  background-color: #283342;
  color: #e5e7e8;
  z-index: 1;
  list-style: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  article
  h4
  details
  summary:before {
  content: "";
  position: absolute;
  top: 13px;
  left: -10px;
  width: 0;
  height: 0;
  border: 0.7em solid transparent;
  border-top-color: #273341;
  -webkit-transform: translate(10%, 0);
  transform: translate(10%, 0);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.layout__main .page1__main .portlet1 .zone1__main footer ul li article p {
  font: normal 500 0.75em "Roboto";
  color: #212121;
  line-height: 16px;
  margin-bottom: 0px;
}
.layout__main .page1__main .portlet1 .zone1__main footer ul li template {
  margin-top: 20px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  aside.frm {
  width: 84%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    aside.frm {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  aside.frm
  blockquote {
  padding: 50px 0px 10px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    aside.frm
    blockquote {
    padding: 50px 0px 30px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  aside:before {
  content: "";
  display: table;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-top: 0px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 12px solid #fafafa;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote {
  border-radius: 20px 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #fafafa;
  margin: 0 0 0 0;
  padding: 35px 0px 30px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  max-height: 0px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote {
    padding: 45px 0px 25px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  sup {
  position: absolute;
  top: 20px;
  right: 20px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  sup:before {
  /*content: "\f00d";
		@include icon(0px);
		font-size: 20px;
		font-weight: 400;
		color: #000000;*/
  content: "";
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/05ed392f-0935-4907-8b18-7d45766a5576-b62a3b7c-7e3c-48f9-91a2-cfd422d6f2f2-icon-close-black.svg")
    no-repeat center center;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  header {
  width: 100%;
  padding-bottom: 10px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  header
  h4 {
  font: normal 700 1.375em "AMX-Bold";
  color: #000000;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    header
    h4 {
    font-size: 1.25em;
    height: auto;
  }
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    header
    h4
    br {
    display: none;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-top: 5px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    footer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer
  a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  width: 152px;
  height: 40px;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  background: #ffffff;
  margin: 0 5px;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer
  a:last-child {
  border: 1px solid #da291c;
  background-color: #da291c;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    footer
    a:last-child {
    width: 314px;
    margin-top: 10px;
    text-align: center;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer
  a
  p {
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer
  a
  p
  span {
  font: normal 700 0.8125em "AMX-Bold";
  color: #000000;
  line-height: 38px;
  display: inline-block;
  padding-left: 10px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer
  a
  p:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer
  a
  p.ico1:before {
  width: 16px;
  height: 19px;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/icon-tienda.png")
    no-repeat center center;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer
  a
  p.ico2:before {
  width: 16px;
  height: 17px;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/icon-whatsapp.png")
    no-repeat center center;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer
  a
  p.ico3
  span {
  color: #ffffff;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  footer
  a
  p.ico3:before {
  width: 22px;
  height: 17px;
  background: url("https://static.claro.com.pe/landings/havas/2023/technights/v1/assets/icon-call.png")
    no-repeat center center;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form {
  width: 80%;
  margin: 0px auto 0;
  padding: 0px 0px 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media screen and (max-width: 1366px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form {
    padding: 0px 0px 20px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form {
    /*width: 600px;
				margin-right: -300px;
				right: 50%;
				bottom: -440px;*/
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form {
    width: 90%;
    padding: 0 0 0px 0;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  hgroup {
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    hgroup {
    padding-bottom: 10px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  hgroup
  h1 {
  font: normal 600 3em "AMX-Bold";
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 43px;
  /*@include to(tablet-h) {
			font-size: em(16);
		}*/
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    hgroup
    h1 {
    font-size: 2em;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    hgroup
    h1 {
    line-height: 35px;
    margin-bottom: 15px;
  }
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    hgroup
    h1
    br {
    display: none;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  hgroup
  h3 {
  font: normal 400 1.375em "Roboto";
  color: #ffffff;
  line-height: 20px;
  /*@include to(tablet-h) {
			font-size: em(16);
		}
		@include to(tablet) {
			font-size: em(14);
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    hgroup
    h3 {
    line-height: 25px;
  }
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    hgroup
    h3
    br {
    display: none;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__text1 {
  font: normal 500 0.875em "Roboto";
  color: #353535;
  /*&.error{
			border:  solid 1px #dc3545;
			//background-color: #fcf3f3;
			background: #fcf3f3 url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/error.png") no-repeat 97% center;
			color: #dc3545;
			&::placeholder { 
				color: #dc3545;
				opacity: 1; 
			}
		}*/
  /*@include to(tablet-h) {
			font-size: em(16);
		}
		@include to(tablet) {
			font-size: em(14);
		}
		@include to(movil) {
			font-size: em(12);
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__label2 {
  font: normal 600 0.6875em "Roboto";
  color: #283342;
  line-height: 24px;
  letter-spacing: -0.01em;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 10px;
  -webkit-transform: translate(0, -25px) scale(1);
  transform: translate(0, -25px) scale(1);
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__label2 {
    font-size: 0.6875em;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__label2 {
    font-size: 0.625em;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__label2
  span {
  font-weight: 500;
  margin-left: 5px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__groupselect1 {
  overflow: hidden;
  /*padding:11px 3%;
		border: solid 1px #cccccc;
		@include redondeado(5px, 5px, 5px, 5px);
		background-color: #ffffff;*/
  -webkit-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
  padding: 12px 0;
  border: none;
  border-bottom: solid 1px #91979e;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ffffff;
  outline: none;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__groupselect1 {
    padding: 7px 0%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__select1 {
  font: normal 300 0.9375em "Roboto";
  color: #353535;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__select1 {
    font-size: 1em;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__select1 {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__select1 {
    font-size: 0.75em;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1 {
  display: table;
  position: relative;
  /*.form__error{
			padding-left: 32px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  div {
  display: table;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  div
  input[type="checkbox"] {
  display: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  div
  input[type="checkbox"]:checked
  + label
  b {
  background-color: #0fbfdf;
  color: #ffffff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  div
  input[type="checkbox"]:checked
  + label
  b:before {
  content: "\f00c";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 15px;
  color: #ffffff;
  position: relative;
  top: 1px;
  left: 0px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__checkbox1
    div
    input[type="checkbox"]:checked
    + label
    b:before {
    font-size: 12px;
    top: -4px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  div
  label {
  display: table-cell;
  vertical-align: top;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  div
  label
  b {
  width: 22px;
  height: 22px;
  display: inline-block;
  font: normal 600 0.875em "Roboto";
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  color: #000000;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 3px 3px 3px 3px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  border: 1px solid #0fbfdf;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__checkbox1
    div
    label
    b {
    width: 16px;
    height: 16px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  div
  label
  b:hover {
  color: #000000;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small {
  display: table-cell;
  font: normal 400 0.8125em "Roboto";
  color: #000000;
  vertical-align: middle;
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__checkbox1
    small {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__checkbox1
    small {
    font-size: 0.875em;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a {
  color: #0fbddf;
  text-decoration: underline;
  cursor: pointer;
  position: relative;
  font-weight: 800;
  /*&.active[aria-label]:hover:after{
			opacity: 1;
			pointer-events: none;
		}*/
  /*&.active[aria-label]:hover:before{
			opacity: 1;
			pointer-events: none;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__checkbox1
    small
    a {
    position: static;
    margin-left: 0px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a[aria-label]:after {
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: attr(aria-label);
  padding: 12px 12px;
  position: absolute;
  white-space: normal;
  opacity: 0;
  background: #0fbfdf;
  color: #ffffff;
  width: 380px;
  font-size: 0.75em;
  border-radius: 5px;
  left: calc(50% - 190px);
  bottom: 20px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__checkbox1
    small
    a[aria-label]:after {
    width: 280px;
    left: calc(50% - 140px);
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a[aria-label]:hover:after {
  opacity: 1;
  pointer-events: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a.active[aria-label]:after {
  opacity: 1;
  pointer-events: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a[aria-label]:before {
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #0fbfdf;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: "";
  position: absolute;
  z-index: 10;
  left: calc(50% - 8px);
  bottom: 4px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a[aria-label]:hover:before {
  opacity: 1;
  pointer-events: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a.active[aria-label]:before {
  opacity: 1;
  pointer-events: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a
  span {
  font: normal 400 0.8em "Roboto";
  color: #ffffff;
  width: 400px;
  padding: 12px 12px;
  background-color: #0fbfdf;
  position: absolute;
  left: 50%;
  margin-left: -125px;
  display: none;
  top: 21px;
  z-index: 10;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__checkbox1
    small
    a
    span {
    width: 215px;
    /*top: 0px;
					bottom: 0px;*/
    margin-left: -70px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a
  span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #0fbfdf;
  position: absolute;
  left: 50%;
  top: -9px;
  margin-left: -10px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a:hover
  span {
  display: block;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__checkbox1
    small
    a:hover
    span {
    display: none;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__checkbox1
  small
  a.active
  span {
  display: block;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1 {
  margin: 5px 0;
  display: table;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__customCheckbox1 {
    margin: 20px 0 0;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  input[type="checkbox"] {
  display: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  input[type="checkbox"]:checked
  + label {
  background-color: #0097ae;
  color: #ffffff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  input[type="checkbox"]:checked
  + label:before {
  content: "\f058";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 15px;
  color: #ffffff;
  position: relative;
  top: 1px;
  left: 0px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  label {
  width: 22px;
  height: 22px;
  display: inline-block;
  font: normal 600 0.875em "Roboto";
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  color: #000000;
  border: solid 1px #008fa5;
  cursor: pointer;
  border-radius: 3px 3px 3px 3px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  label:hover {
  background-color: #e1e4e8;
  color: #000000;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  div {
  vertical-align: middle;
  padding-left: 10px;
  display: table-cell;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__customCheckbox1
    div {
    font-size: 0.75em;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  div
  p {
  font: normal 300 1.0625em "Roboto";
  color: #666666;
  display: inline-block;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  div
  p
  a {
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
  margin-left: 5px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  div
  p
  a:hover {
  color: #000000;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  div
  .tooltip.active
  span {
  display: block;
  /*@include from(movil) {
			width: 300px;
			margin-left: -150px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  div
  .tooltip {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__customCheckbox1
    div
    .tooltip {
    display: block;
    /*display: table;
				margin-top: 10px;
				margin-left: 60px;
				margin: 10px auto 10px;
				//display: block;
				left: -8%;*/
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  div
  .tooltip:before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
}
@media screen and (min-width: 481px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__customCheckbox1
    div
    .tooltip:hover
    span {
    display: block;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  div
  .tooltip
  span {
  font: normal 400 0.75em "Roboto";
  color: #000000;
  width: 600px;
  padding: 10px 15px;
  border: solid 1px #0fbfdf;
  background-color: #fff;
  position: absolute;
  top: 28px;
  left: 50%;
  margin-left: -300px;
  display: none;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
  /*@include to(movil) {
			width: 280px;
			margin-left: -100px;
		}
		@include to(325px) {
			width: 230px;
			margin-left: -102px;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__customCheckbox1
    div
    .tooltip
    span {
    margin-left: -62%;
    width: 280px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__customCheckbox1
  div
  .tooltip
  span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #0fbfdf;
  position: absolute;
  left: 50%;
  top: -10px;
  margin-left: -10px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__customCheckbox1
    div
    .tooltip
    span:before {
    left: 38px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons {
  width: 100%;
  padding: 0px 0px 0px 0;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__buttons {
    padding: 0px 0px 0px 0;
  }
}
@media screen and (max-width: 640px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__buttons {
    padding: 0px 0px 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__buttons {
    padding: 0px 0px 0px 0;
    text-align: center;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons
  .button1 {
  font: normal 600 0.875em "Roboto";
  border: 0;
  color: #979797;
  padding: 0px 0px 0px 0px;
  cursor: default;
  width: 200px;
  line-height: 45px;
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #f0f0f0;
  border-radius: 30px 30px 30px 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: table;
  margin: 0 auto;
  /*&:before {
			content: "\f105";
			@include icon(0px);
			font-size: 22px;
			font-weight: 600;
			color: $color_b1;
			position: absolute;
			top: 14px;
			right: 20px;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__buttons
    .button1 {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons
  .button1:focus {
  outline: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons
  .button1:hover {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-filter: saturate(0.6);
  -moz-filter: saturate(0.6);
  -ms-filter: saturate(0.6);
  -o-filter: saturate(0.6);
  filter: saturate(0.6);
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons
  .button1.active {
  background-color: #ee122c;
  color: #ffffff;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons
  .button1.active:hover {
  background-color: #fa253f;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons
  .button1.btnContinue {
  position: absolute;
  top: 0px;
  right: 15px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form__buttons
    .button1.btnContinue {
    right: 0px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons
  .button1.btnBack {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: transparent;
  color: #0fbddf;
  font-weight: 600;
  font-size: 18px;
  width: auto;
  padding: 12px 0px 12px 35px;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons
  .button1.btnBack:before {
  content: "\f177";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 22px;
  font-weight: 500;
  color: #0fbddf;
  position: absolute;
  top: 30px;
  left: 5px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__buttons
  .button2 {
  font: normal 600 0.875em "AMX-Bold";
  color: #4acde7;
  border: 0px;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/18c8ca86-baee-4cc9-b59d-4bcef62e4f3d-arrow_left.svg")
    no-repeat left 2px;
  padding: 0 0 0 25px;
  display: table;
  margin: 30px auto 0;
  /*&:before{
			content:'';
			display: block;
			width: 14px;
			height: 9px;
			background: url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/arrow_left.svg") no-repeat center top;
			margin-bottom: 10px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form__error {
  font: normal 400 0.75em "Roboto";
  color: #ff3300;
  margin-top: 4px;
  display: block;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  span.error {
  font: normal 400 0.75em "Roboto";
  color: #ff3300;
  margin-top: 4px;
  display: block;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    span.error {
    font-size: 0.6875em;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form {
    -webkit-align-self: flex-end;
    -ms-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl {
  width: 100%;
  margin: 5px 0 0px 0;
  position: relative;
  /*@include to(movil) {
			width: auto;
			margin: 10px auto 0px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl.type1 {
  margin: 15px 0 0px 0;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl.type1 {
    margin: 15px 0 0px 0;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl.type2 {
  margin-bottom: 20px;
  /*@include to(laptop) {
			margin-bottom: 20px;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl.type2 {
    margin-bottom: 10px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl.row1 {
  width: 48%;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl.row2 {
  width: 100%;
  height: auto;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl.row2
  dt
  div {
  width: 49.5%;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl.row2
    dt
    div {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl.row2
  dd {
  padding: 10px 0 30px;
  height: 54px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl.row2
  dd
  span {
  font: normal 200 0.9375em "Roboto";
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl.row2 {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl.row3 {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl.row3 {
    padding: 0px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl.row3.row-hv {
    width: 298px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd {
  height: 54px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"],
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"],
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"] {
  width: 100%;
  height: 46px;
  -webkit-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
  border-radius: 8px 8px 8px 8px;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.1);
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ffffff;
  outline: none;
  padding: 0px 18px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl
    dd
    input[type="text"],
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl
    dd
    input[type="number"],
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl
    dd
    input[type="email"] {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid:-webkit-autofill:active,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid:-webkit-autofill:active,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fcf3f3 inset !important;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].valid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].valid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].valid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].valid:-webkit-autofill:active,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].valid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].valid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].valid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].valid:-webkit-autofill:active,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].valid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].valid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].valid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].valid:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #f3fffc inset !important;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid {
  border: solid 1px #dc3545;
  background: #fcf3f3
    url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/dec02708-0cba-45ab-ae9a-8891641fd8bf-invalid.png")
    no-repeat 97% center;
  color: #dc3545;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid::-webkit-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid::-webkit-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid::-webkit-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid::-moz-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid::-moz-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid::-moz-placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid:-ms-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid:-ms-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid:-ms-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid::-ms-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid::-ms-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid::-ms-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].invalid::placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].invalid::placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].invalid::placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"].valid,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"].valid,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"].valid {
  border: solid 1px #28a745;
  background: #f3fffc
    url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/7f3c32d9-4bfa-4e6d-ba20-8c223cc2deca-valid.png")
    no-repeat 97% center;
  color: #006b4f;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="text"]:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="number"]:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  input[type="email"]:hover {
  -webkit-box-shadow: 0px 0px 1px 1px rgba(216, 216, 216, 0.4);
  box-shadow: 0px 0px 1px 1px rgba(216, 216, 216, 0.4);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  .form__label1 {
  color: #999;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 4px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  font-style: normal;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #91979e;
  font: normal 400 1.125em "Roboto";
  /*@include to(tablet-h) {
			font-size: em(16);
		}
		@include to(tablet) {
			font-size: em(15);
		}*/
  /*@include to(movil) {
			font-size: em(15);
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  .form__label1
  span {
  font-weight: 500;
  margin-left: 5px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dd
  select {
  width: 100%;
  border: 0px;
  outline: none;
  -webkit-appearance: menulist-button;
  -moz-appearance: menulist-button;
  appearance: menulist-button;
  background-color: #ffffff;
  /*height: 37px;
		line-height: 37px;*/
  /*&:-webkit-autofill,
		&:-webkit-autofill:hover, 
		&:-webkit-autofill:focus, 
		&:-webkit-autofill:active  {
				-webkit-box-shadow: 0 0 0 30px white inset !important;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl
    dd
    select {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dt.checkbox {
  height: 25px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main
    footer
    ul
    li
    template
    blockquote
    .form
    dl
    dt.checkbox {
    height: auto;
    margin-bottom: 5px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dt
  blockquote {
  margin: 0px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dt
  p {
  font: normal 400 0.8125em "Roboto";
  color: #ffffff;
  margin-top: 10px;
  line-height: 19px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dt
  p
  a {
  color: #ffffff;
  text-decoration: underline;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main
  footer
  ul
  li
  template
  blockquote
  .form
  dl
  dt
  p
  a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.layout__main .page1__main .portlet1 .zone1__main__footer {
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__main__footer {
    margin: 30px auto 0px auto;
  }
}
.layout__main .page1__main .portlet1 .zone1__main__footer .button1 {
  font: normal 600 0.875em "Roboto";
  border: 0;
  color: #91979e;
  padding: 0px 0px 0px 0px;
  cursor: default;
  width: 340px;
  line-height: 45px;
  cursor: pointer;
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #f8f8f8;
  border-radius: 30px 30px 30px 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: table;
  margin: 0 auto;
  /*&:before {
			content: "\f105";
			@include icon(0px);
			font-size: 22px;
			font-weight: 600;
			color: $color_b1;
			position: absolute;
			top: 14px;
			right: 20px;
		}*/
}
.layout__main .page1__main .portlet1 .zone1__main__footer .button1:focus {
  outline: none;
}
.layout__main .page1__main .portlet1 .zone1__main__footer .button1:hover {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-filter: saturate(0.6);
  -moz-filter: saturate(0.6);
  -ms-filter: saturate(0.6);
  -o-filter: saturate(0.6);
  filter: saturate(0.6);
}
.layout__main .page1__main .portlet1 .zone1__main__footer .button1.active {
  background-color: #ee122c;
  color: #ffffff;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main__footer
  .button1.active:hover {
  background-color: #fa253f;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.layout__main .page1__main .portlet1 .zone1__main__footer .button1.btnContinue {
  position: absolute;
  top: 0px;
  right: 15px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__main__footer
    .button1.btnContinue {
    right: 0px;
  }
}
.layout__main .page1__main .portlet1 .zone1__main__footer .button1.btnBack {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: transparent;
  color: #0fbddf;
  font-weight: 600;
  font-size: 18px;
  width: auto;
  padding: 12px 0px 12px 35px;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__main__footer
  .button1.btnBack:before {
  content: "\f177";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 22px;
  font-weight: 500;
  color: #0fbddf;
  position: absolute;
  top: 30px;
  left: 5px;
}
.layout__main .page1__main .portlet1 .zone1__main__footer .button2 {
  font: normal 600 0.875em "AMX-Bold";
  color: #4acde7;
  border: 0px;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/18c8ca86-baee-4cc9-b59d-4bcef62e4f3d-arrow_left.svg")
    no-repeat left 2px;
  padding: 0 0 0 25px;
  display: table;
  margin: 30px auto 0;
  cursor: pointer;
  /*&:before{
			content:'';
			display: block;
			width: 14px;
			height: 9px;
			background: url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/arrow_left.svg") no-repeat center top;
			margin-bottom: 10px;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__footer {
    padding: 0 10px;
  }
}
.layout__main .page1__main .portlet1 .zone1__footer .content__header hgroup {
  text-align: center;
  padding-bottom: 20px;
}
.layout__main .page1__main .portlet1 .zone1__footer .content__header hgroup h3 {
  font: normal 700 1.125em "AMX-Bold";
  color: #000000;
  line-height: 22px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__header
    hgroup
    h3 {
    font-size: 1.25em;
    height: auto;
  }
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__header
    hgroup
    h3
    br {
    display: none;
  }
}
.layout__main .page1__main .portlet1 .zone1__footer .content__header hgroup p {
  font: normal 600 0.75em "Roboto";
  color: #979797;
  line-height: 22px;
  padding-bottom: 10px;
  letter-spacing: 2px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__header
    hgroup
    p {
    font-size: 0.875em;
    height: auto;
  }
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__header
    hgroup
    p
    br {
    display: none;
  }
}
.layout__main .page1__main .portlet1 .zone1__footer .content__main .form {
  padding: 0px 0px 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media screen and (max-width: 1366px) {
  .layout__main .page1__main .portlet1 .zone1__footer .content__main .form {
    padding: 35px 0px 20px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main .page1__main .portlet1 .zone1__footer .content__main .form {
    /*width: 600px;
				margin-right: -300px;
				right: 50%;
				bottom: -440px;*/
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__footer .content__main .form {
    padding: 0 0 0px 0;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  hgroup {
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    hgroup {
    padding-bottom: 10px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  hgroup
  h1 {
  font: normal 600 3em "AMX-Bold";
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 43px;
  /*@include to(tablet-h) {
			font-size: em(16);
		}*/
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    hgroup
    h1 {
    font-size: 2em;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    hgroup
    h1 {
    line-height: 35px;
    margin-bottom: 15px;
  }
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    hgroup
    h1
    br {
    display: none;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  hgroup
  h3 {
  font: normal 400 1.375em "Roboto";
  color: #ffffff;
  line-height: 20px;
  /*@include to(tablet-h) {
			font-size: em(16);
		}
		@include to(tablet) {
			font-size: em(14);
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    hgroup
    h3 {
    line-height: 25px;
  }
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    hgroup
    h3
    br {
    display: none;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__text1 {
  font: normal 500 0.875em "Roboto";
  color: #353535;
  /*&.error{
			border:  solid 1px #dc3545;
			//background-color: #fcf3f3;
			background: #fcf3f3 url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/error.png") no-repeat 97% center;
			color: #dc3545;
			&::placeholder { 
				color: #dc3545;
				opacity: 1; 
			}
		}*/
  /*@include to(tablet-h) {
			font-size: em(16);
		}
		@include to(tablet) {
			font-size: em(14);
		}
		@include to(movil) {
			font-size: em(12);
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__label2 {
  font: normal 600 0.6875em "Roboto";
  color: #283342;
  line-height: 24px;
  letter-spacing: -0.01em;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 10px;
  -webkit-transform: translate(0, -25px) scale(1);
  transform: translate(0, -25px) scale(1);
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__label2 {
    font-size: 0.6875em;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__label2 {
    font-size: 0.625em;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__label2
  span {
  font-weight: 500;
  margin-left: 5px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__groupselect1 {
  overflow: hidden;
  /*padding:11px 3%;
		border: solid 1px #cccccc;
		@include redondeado(5px, 5px, 5px, 5px);
		background-color: #ffffff;*/
  -webkit-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
  padding: 12px 0;
  border: none;
  border-bottom: solid 1px #91979e;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ffffff;
  outline: none;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__groupselect1 {
    padding: 7px 0%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__select1 {
  font: normal 300 0.9375em "Roboto";
  color: #353535;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__select1 {
    font-size: 1em;
  }
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__select1 {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__select1 {
    font-size: 0.75em;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1 {
  display: table;
  position: relative;
  /*.form__error{
			padding-left: 32px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  div {
  display: table;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  div
  input[type="checkbox"] {
  display: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  div
  input[type="checkbox"]:checked
  + label
  b {
  background-color: #0fbfdf;
  color: #ffffff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  div
  input[type="checkbox"]:checked
  + label
  b:before {
  content: "\f00c";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 15px;
  color: #ffffff;
  position: relative;
  top: 1px;
  left: 0px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__checkbox1
    div
    input[type="checkbox"]:checked
    + label
    b:before {
    font-size: 12px;
    top: -4px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  div
  label {
  display: table-cell;
  vertical-align: top;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  div
  label
  b {
  width: 22px;
  height: 22px;
  display: inline-block;
  font: normal 600 0.875em "Roboto";
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  color: #000000;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 3px 3px 3px 3px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  border: 1px solid #0fbfdf;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__checkbox1
    div
    label
    b {
    width: 16px;
    height: 16px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  div
  label
  b:hover {
  color: #000000;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small {
  display: table-cell;
  font: normal 400 0.8125em "Roboto";
  color: #000000;
  vertical-align: middle;
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__checkbox1
    small {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__checkbox1
    small {
    font-size: 0.875em;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a {
  color: #0fbddf;
  text-decoration: underline;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  /*&.active[aria-label]:hover:after{
			opacity: 1;
			pointer-events: none;
		}*/
  /*&.active[aria-label]:hover:before{
			opacity: 1;
			pointer-events: none;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__checkbox1
    small
    a {
    position: static;
    margin-left: 0px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a[aria-label]:after {
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: attr(aria-label);
  padding: 12px 12px;
  position: absolute;
  white-space: normal;
  opacity: 0;
  background: #0fbfdf;
  color: #ffffff;
  width: 380px;
  font-size: 0.75em;
  border-radius: 5px;
  left: calc(50% - 190px);
  bottom: 20px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__checkbox1
    small
    a[aria-label]:after {
    width: 280px;
    left: calc(50% - 140px);
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a[aria-label]:hover:after {
  opacity: 1;
  pointer-events: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a.active[aria-label]:after {
  opacity: 1;
  pointer-events: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a[aria-label]:before {
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #0fbfdf;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: "";
  position: absolute;
  z-index: 10;
  left: calc(50% - 8px);
  bottom: 4px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a[aria-label]:hover:before {
  opacity: 1;
  pointer-events: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a.active[aria-label]:before {
  opacity: 1;
  pointer-events: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a
  span {
  font: normal 400 0.8em "Roboto";
  color: #ffffff;
  width: 400px;
  padding: 12px 12px;
  background-color: #0fbfdf;
  position: absolute;
  left: 50%;
  margin-left: -125px;
  display: none;
  top: 21px;
  z-index: 10;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__checkbox1
    small
    a
    span {
    width: 215px;
    /*top: 0px;
					bottom: 0px;*/
    margin-left: -70px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a
  span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #0fbfdf;
  position: absolute;
  left: 50%;
  top: -9px;
  margin-left: -10px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a:hover
  span {
  display: block;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__checkbox1
    small
    a:hover
    span {
    display: none;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__checkbox1
  small
  a.active
  span {
  display: block;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1 {
  margin: 5px 0;
  display: table;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__customCheckbox1 {
    margin: 20px 0 0;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  input[type="checkbox"] {
  display: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  input[type="checkbox"]:checked
  + label {
  background-color: #0097ae;
  color: #ffffff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  input[type="checkbox"]:checked
  + label:before {
  content: "\f058";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 15px;
  color: #ffffff;
  position: relative;
  top: 1px;
  left: 0px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  label {
  width: 22px;
  height: 22px;
  display: inline-block;
  font: normal 600 0.875em "Roboto";
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  color: #000000;
  border: solid 1px #008fa5;
  cursor: pointer;
  border-radius: 3px 3px 3px 3px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  label:hover {
  background-color: #e1e4e8;
  color: #000000;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  div {
  vertical-align: middle;
  padding-left: 10px;
  display: table-cell;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__customCheckbox1
    div {
    font-size: 0.75em;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  div
  p {
  font: normal 300 1.0625em "Roboto";
  color: #666666;
  display: inline-block;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  div
  p
  a {
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
  margin-left: 5px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  div
  p
  a:hover {
  color: #000000;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  div
  .tooltip.active
  span {
  display: block;
  /*@include from(movil) {
			width: 300px;
			margin-left: -150px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  div
  .tooltip {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__customCheckbox1
    div
    .tooltip {
    display: block;
    /*display: table;
				margin-top: 10px;
				margin-left: 60px;
				margin: 10px auto 10px;
				//display: block;
				left: -8%;*/
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  div
  .tooltip:before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
}
@media screen and (min-width: 481px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__customCheckbox1
    div
    .tooltip:hover
    span {
    display: block;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  div
  .tooltip
  span {
  font: normal 400 0.75em "Roboto";
  color: #000000;
  width: 600px;
  padding: 10px 15px;
  border: solid 1px #0fbfdf;
  background-color: #fff;
  position: absolute;
  top: 28px;
  left: 50%;
  margin-left: -300px;
  display: none;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
  /*@include to(movil) {
			width: 280px;
			margin-left: -100px;
		}
		@include to(325px) {
			width: 230px;
			margin-left: -102px;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__customCheckbox1
    div
    .tooltip
    span {
    margin-left: -62%;
    width: 280px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__customCheckbox1
  div
  .tooltip
  span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #0fbfdf;
  position: absolute;
  left: 50%;
  top: -10px;
  margin-left: -10px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__customCheckbox1
    div
    .tooltip
    span:before {
    left: 38px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons {
  width: 100%;
  padding: 40px 0px 0px 0;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__buttons {
    padding: 0px 0px 0px 0;
  }
}
@media screen and (max-width: 640px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__buttons {
    padding: 0px 0px 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__buttons {
    padding: 0px 0px 0px 0;
    text-align: center;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons
  .button1 {
  font: normal 600 0.875em "Roboto";
  border: 0;
  color: #91979e;
  padding: 0px 0px 0px 0px;
  cursor: default;
  width: 340px;
  line-height: 45px;
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #f8f8f8;
  border-radius: 30px 30px 30px 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: table;
  margin: 0 auto;
  /*&:before {
			content: "\f105";
			@include icon(0px);
			font-size: 22px;
			font-weight: 600;
			color: $color_b1;
			position: absolute;
			top: 14px;
			right: 20px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons
  .button1:focus {
  outline: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons
  .button1:hover {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-filter: saturate(0.6);
  -moz-filter: saturate(0.6);
  -ms-filter: saturate(0.6);
  -o-filter: saturate(0.6);
  filter: saturate(0.6);
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons
  .button1.active {
  background-color: #ee122c;
  color: #ffffff;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons
  .button1.active:hover {
  background-color: #fa253f;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons
  .button1.btnContinue {
  position: absolute;
  top: 0px;
  right: 15px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form__buttons
    .button1.btnContinue {
    right: 0px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons
  .button1.btnBack {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: transparent;
  color: #0fbddf;
  font-weight: 600;
  font-size: 18px;
  width: auto;
  padding: 12px 0px 12px 35px;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons
  .button1.btnBack:before {
  content: "\f177";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 22px;
  font-weight: 500;
  color: #0fbddf;
  position: absolute;
  top: 30px;
  left: 5px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__buttons
  .button2 {
  font: normal 600 0.875em "AMX-Bold";
  color: #4acde7;
  border: 0px;
  background: url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/18c8ca86-baee-4cc9-b59d-4bcef62e4f3d-arrow_left.svg")
    no-repeat left 2px;
  padding: 0 0 0 25px;
  display: table;
  margin: 30px auto 0;
  /*&:before{
			content:'';
			display: block;
			width: 14px;
			height: 9px;
			background: url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/arrow_left.svg") no-repeat center top;
			margin-bottom: 10px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form__error {
  font: normal 400 0.75em "Roboto";
  color: #ff3300;
  margin-top: 4px;
  display: block;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  span.error {
  font: normal 400 0.75em "Roboto";
  color: #ff3300;
  margin-top: 4px;
  display: block;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    span.error {
    font-size: 0.6875em;
  }
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__footer .content__main .form {
    -webkit-align-self: flex-end;
    -ms-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}
.layout__main .page1__main .portlet1 .zone1__footer .content__main .form dl {
  width: 100%;
  margin: 5px 0 0px 0;
  position: relative;
  /*@include to(movil) {
			width: auto;
			margin: 10px auto 0px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl.type1 {
  margin: 15px 0 0px 0;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl.type1 {
    margin: 15px 0 0px 0;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl.type2 {
    margin-bottom: 30px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl.row1 {
  width: 48%;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl.row2 {
  width: 100%;
  height: auto;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl.row2
  dt
  div {
  width: 49.5%;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl.row2
    dt
    div {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl.row2
  dd {
  padding: 10px 0 30px;
  height: 54px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl.row2
  dd
  span {
  font: normal 200 0.9375em "Roboto";
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl.row2 {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl.row3 {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl.row3 {
    padding: 0px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl.row3.row-hv {
    width: 298px;
  }
}
.layout__main .page1__main .portlet1 .zone1__footer .content__main .form dl dd {
  height: 54px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"],
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"],
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"] {
  width: 500px;
  height: 46px;
  -webkit-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
  border-radius: 8px 8px 8px 8px;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 1px 1px rgba(255, 255, 255, 0.1);
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ffffff;
  outline: none;
  padding: 0px 18px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl
    dd
    input[type="text"],
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl
    dd
    input[type="number"],
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl
    dd
    input[type="email"] {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid:-webkit-autofill:active,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid:-webkit-autofill:active,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fcf3f3 inset !important;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].valid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].valid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].valid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].valid:-webkit-autofill:active,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].valid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].valid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].valid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].valid:-webkit-autofill:active,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].valid:-webkit-autofill,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].valid:-webkit-autofill:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].valid:-webkit-autofill:focus,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].valid:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #f3fffc inset !important;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid {
  border: solid 1px #dc3545;
  background: #fcf3f3
    url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/dec02708-0cba-45ab-ae9a-8891641fd8bf-invalid.png")
    no-repeat 97% center;
  color: #dc3545;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid::-webkit-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid::-webkit-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid::-webkit-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid::-moz-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid::-moz-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid::-moz-placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid:-ms-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid:-ms-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid:-ms-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid::-ms-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid::-ms-input-placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid::-ms-input-placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].invalid::placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].invalid::placeholder,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].invalid::placeholder {
  color: #dc3545;
  opacity: 1;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"].valid,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"].valid,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"].valid {
  border: solid 1px #28a745;
  background: #f3fffc
    url("https://www.claro.com.pe/portal/pe-2020/recursos_contenido/claro-home/7f3c32d9-4bfa-4e6d-ba20-8c223cc2deca-valid.png")
    no-repeat 97% center;
  color: #006b4f;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="text"]:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="number"]:hover,
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  input[type="email"]:hover {
  -webkit-box-shadow: 0px 0px 1px 1px rgba(216, 216, 216, 0.4);
  box-shadow: 0px 0px 1px 1px rgba(216, 216, 216, 0.4);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  .form__label1 {
  color: #999;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 4px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  font-style: normal;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #91979e;
  font: normal 400 1.125em "Roboto";
  /*@include to(tablet-h) {
			font-size: em(16);
		}
		@include to(tablet) {
			font-size: em(15);
		}*/
  /*@include to(movil) {
			font-size: em(15);
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  .form__label1
  span {
  font-weight: 500;
  margin-left: 5px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dd
  select {
  width: 100%;
  border: 0px;
  outline: none;
  -webkit-appearance: menulist-button;
  -moz-appearance: menulist-button;
  appearance: menulist-button;
  background-color: #ffffff;
  /*height: 37px;
		line-height: 37px;*/
  /*&:-webkit-autofill,
		&:-webkit-autofill:hover, 
		&:-webkit-autofill:focus, 
		&:-webkit-autofill:active  {
				-webkit-box-shadow: 0 0 0 30px white inset !important;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl
    dd
    select {
    width: 100%;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dt.checkbox {
  height: 25px;
}
@media screen and (max-width: 480px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__main
    .form
    dl
    dt.checkbox {
    height: auto;
    margin-bottom: 5px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dt
  blockquote {
  margin: 0px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dt
  p {
  font: normal 400 0.8125em "Roboto";
  color: #ffffff;
  margin-top: 10px;
  line-height: 19px;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dt
  p
  a {
  color: #ffffff;
  text-decoration: underline;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__main
  .form
  dl
  dt
  p
  a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.layout__main .page1__main .portlet1 .zone1__footer .content__footer {
  position: relative;
  height: 100px;
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  .layout__main .page1__main .portlet1 .zone1__footer .content__footer {
    margin: 30px 30px 0px 30px;
    height: 100px;
  }
}
.layout__main .page1__main .portlet1 .zone1__footer .content__footer button {
  font: normal 500 1.125em "Roboto";
  border: 0;
  color: #e4e4e4;
  padding: 0px 35px 0px 35px;
  cursor: default;
  line-height: 60px;
  -webkit-align-self: center;
  -ms-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #f8f8f8;
  border-radius: 30px 30px 30px 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  /*&:before {
			content: "\f105";
			@include icon(0px);
			font-size: 22px;
			font-weight: 600;
			color: $color_b1;
			position: absolute;
			top: 14px;
			right: 20px;
		}*/
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__footer
  button:focus {
  outline: none;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__footer
  button:hover {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-filter: saturate(0.6);
  -moz-filter: saturate(0.6);
  -ms-filter: saturate(0.6);
  -o-filter: saturate(0.6);
  filter: saturate(0.6);
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__footer
  button.active {
  background-color: #ee122c;
  color: #ffffff;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__footer
  button.btnContinue {
  position: absolute;
  top: 0px;
  right: 15px;
}
@media screen and (max-width: 1024px) {
  .layout__main
    .page1__main
    .portlet1
    .zone1__footer
    .content__footer
    button.btnContinue {
    right: 0px;
  }
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__footer
  button.btnBack {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: transparent;
  color: #0fbddf;
  font-weight: 600;
  font-size: 18px;
  width: auto;
  padding: 12px 0px 12px 35px;
  cursor: pointer;
}
.layout__main
  .page1__main
  .portlet1
  .zone1__footer
  .content__footer
  button.btnBack:before {
  content: "\f177";
  display: inline-block;
  margin-right: 0px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 22px;
  font-weight: 500;
  color: #0fbddf;
  position: absolute;
  top: 30px;
  left: 5px;
}
.layout__modal .page1 {
  max-width: 500px;
  margin: auto;
  position: relative;
  padding: 50px;
  background-color: #ffffff;
  border: 3px solid #da160d;
  border-radius: 10px 10px 10px 10px;
  /*@include to(tablet) {
			max-width: 740px;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__modal .page1 {
    width: auto;
    padding: 100px 20px 20px 20px;
    margin: 0 auto;
    height: 100vh;
    overflow-y: auto;
  }
}
.layout__modal .page1 .section1__header .title {
  margin-bottom: 10px;
}
.layout__modal .page1 .section1__header .title:before {
  content: "";
  display: block;
  height: 85px;
  margin-bottom: 10px;
}
.layout__modal .page1 .section1__header .title h3 {
  font: normal 600 1.875em "Roboto";
  color: #333333;
  text-align: center;
}
.layout__modal .page1 .section1__header .title h3 span {
  font: normal 400 0.625em "Roboto";
  color: #b1b1b1;
}
.layout__modal .page1 .section1__main .content {
  float: none !important;
}
.layout__modal .page1 .section1__main .content p {
  font: normal 400 1.375em "Roboto";
  color: #555555;
  text-align: center;
}
.layout__modal .page1__close {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  cursor: pointer;
  width: 48px;
  height: 52px;
  font: normal 1.125em "Roboto";
  color: white;
  text-indent: -9999px;
  /*@include to(movil) {
			top: -48px;
			right: 0px;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__modal .page1__close {
    width: 100%;
    height: auto;
    padding: 8px 0;
    top: 0px;
    right: 0px;
    text-indent: 0px;
    background: #da272c;
    position: fixed;
    text-align: center;
  }
}
.layout__modal .page2 {
  max-width: 580px;
  margin: auto;
  position: relative;
  padding: 50px 50px 40px 50px;
  border-radius: 10px 10px 10px 10px;
  background-color: #fff;
  /*@include to(tablet) {
			max-width: 740px;
		}*/
  /*@include to(movil) {
			width: auto;
			padding: 100px 20px 20px 20px;
			margin: 0 auto;
			height: calc(100vh);
			//padding: 0px 0px;
			//@include redondeado(0px, 0px, 0px, 0px);
		   overflow-y: auto;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__modal .page2 {
    padding: 30px 30px 20px 30px;
  }
}
.layout__modal .page2 .section1__header hgroup {
  text-align: center;
  /*&:before{
			content:'';
			display: block;
			height: 102px;
			background: url("https://static.claro.com.pe/landings/havas/2023/portabilidad/v1/assets/exclamation.svg") no-repeat center top;
			background-size: contain;
			margin: 5px 0 20px;
		}*/
  margin-bottom: 10px;
}
.layout__modal .page2 .section1__header hgroup h3 {
  font: normal 500 1.5em "Roboto";
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .layout__modal .page2 .section1__header hgroup h3 {
    font-size: 1.25em;
  }
}
.layout__modal .page2 .section1__header hgroup h3 span {
  font: normal 400 0.625em "Roboto";
  color: #b1b1b1;
}
.layout__modal .page2 .section1__header hgroup p {
  font: normal 400 0.875em "Roboto";
  color: #222222;
  line-height: 20px;
}
@media screen and (max-width: 480px) {
  .layout__modal .page2 .section1__header hgroup p {
    font-size: 0.75em;
  }
}
.layout__modal .page2 .section1__header hgroup a {
  color: #0fbddf;
}
.layout__modal .page2 .section1__header hgroup a:hover {
  color: #0fbddf;
  text-decoration: underline;
}
.layout__modal .page2 .section1__header .info h3 {
  font: normal 400 1.25em "Roboto";
  color: #555555;
  text-align: center;
}
.layout__modal .page2 .section1__header .info h3 strong span {
  color: #da272c;
}
.layout__modal .page2 .section1__main .content {
  padding: 20px 0 15px 0;
}
.layout__modal .page2 .section1__main .content a {
  font: normal 300 1.125em "Roboto";
  color: #ffffff;
  text-align: center;
  background-color: #0fbfdf;
  padding: 12px 35px 12px 35px;
  border: none;
  display: table;
  margin: 0 auto;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  position: relative;
  /*@include to(tablet) {
			width: 100%;
		}*/
  /*&:before {
			content: "\f105";
		     @include icon(0px);
		     font-size: 22px;
		     color: $color_b1;
		     position: absolute;
		     top: 15px;
		     right: 35px;
		   }*/
}
.layout__modal .page2 .section1__main .content a.inactive {
  background-color: #cccccc;
}
.layout__modal .page2__close {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  cursor: pointer;
  width: 48px;
  height: 52px;
  font: normal 1.125em "Roboto";
  color: white;
  text-indent: -9999px;
  /*@include to(movil) {
			top: -48px;
			right: 0px;
		}*/
}
@media screen and (max-width: 480px) {
  .layout__modal .page2__close {
    width: 100%;
    height: auto;
    padding: 8px 0;
    top: 0px;
    right: 0px;
    text-indent: 0px;
    background: #da272c;
    position: fixed;
    text-align: center;
  }
}
/* Library  */
.toast-title {
  font-weight: bold;
}

.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #ffffff;
}

.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  line-height: 1;
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

.rtl .toast-close-button {
  left: -0.3em;
  float: left;
  right: 0.3em;
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  /*overrides*/
  font: normal 600 0.875em "Roboto";
}

#toast-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

#toast-container > div.rtl {
  direction: rtl;
  padding: 15px 50px 15px 15px;
  background-position: right 15px center;
}

#toast-container > div:hover {
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  background-color: #030303;
}

.toast-success {
  background-color: #51a351;
}

.toast-error {
  background-color: #bd362f;
}

.toast-info {
  background-color: #2f96b4;
}

.toast-warning {
  background-color: #f89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 1024px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
  #toast-container > div.rtl {
    padding: 15px 50px 15px 15px;
  }
}
:root {
  /* Color */
  --vc-clr-primary: #000;
  --vc-clr-secondary: #090f207f;
  --vc-clr-white: #ffffff;
  /* Icon */
  --vc-icn-width: 1.2em;
  /* Navigation */
  --vc-nav-width: 30px;
  --vc-nav-height: 30px;
  --vc-nav-border-radius: 0;
  --vc-nav-color: var(--vc-clr-primary);
  --vc-nav-color-hover: var(--vc-clr-secondary);
  --vc-nav-background: transparent;
  /* Pagination */
  --vc-pgn-width: 12px;
  --vc-pgn-height: 4px;
  --vc-pgn-margin: 4px;
  --vc-pgn-border-radius: 0;
  --vc-pgn-background-color: var(--vc-clr-secondary);
  --vc-pgn-active-color: var(--vc-clr-primary);
}

.carousel__prev,
.carousel__next {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background: var(--vc-nav-background);
  border-radius: var(--vc-nav-border-radius);
  width: var(--vc-nav-width);
  height: var(--vc-nav-height);
  text-align: center;
  font-size: var(--vc-nav-height);
  padding: 0;
  color: var(--vc-nav-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  border: 0;
  cursor: pointer;
  margin: 0 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.carousel__prev:hover,
.carousel__next:hover {
  color: var(--vc-nav-color-hover);
}

.carousel__next--disabled,
.carousel__prev--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.carousel__prev {
  left: 0;
}

.carousel__next {
  right: 0;
}

.carousel--rtl .carousel__prev {
  left: auto;
  right: 0;
}

.carousel--rtl .carousel__next {
  right: auto;
  left: 0;
}

.carousel {
  position: relative;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.carousel.is-dragging {
  -ms-touch-action: none;
  touch-action: none;
}

.carousel * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 !important;
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.carousel__icon {
  width: var(--vc-icn-width);
  height: var(--vc-icn-width);
  fill: currentColor;
}

.carousel__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  line-height: 0;
  margin: 10px 0 0;
}

.carousel__pagination-button {
  display: block;
  border: 0;
  margin: 0;
  cursor: pointer;
  padding: var(--vc-pgn-margin);
  background: transparent;
}

.carousel__pagination-button::after {
  display: block;
  content: "";
  width: var(--vc-pgn-width);
  height: var(--vc-pgn-height);
  border-radius: var(--vc-pgn-border-radius);
  background-color: var(--vc-pgn-background-color);
}

.carousel__pagination-button:hover::after,
.carousel__pagination-button--active::after {
  background-color: var(--vc-pgn-active-color);
}

.carousel__slide {
  scroll-snap-stop: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* Fix iOS scrolling #22 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/******************************************/

@media (max-width: 1024px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p,
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p
    b,
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p.direccion
    strong {
    font-size: 21px;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p.direccion
    span {
    font-size: 12px;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p.direccion
    b {
    font-size: 10px;
    font-style: italic;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    .logotech
    img {
    width: 290.607px;
    height: auto;
  }
  .e1-perumin-form__buttons--type1 {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .layout__main .page1__header .portlet1 .zone1__main .content__header {
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    .logotech
    img {
    width: 280px;
  }
}

@media (max-width: 630px) {
  .layout__main .page1__header .portlet1 .zone1__main .content__header {
    flex-direction: column;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    .logotech
    img {
    width: 230px;
  }
  .layout__main .page1__header .portlet1 .zone1__main .content__header {
    gap: 10px;
  }
  .layout__main .page1__header .portlet1 .zone1__main .content__header {
    margin-top: 60px;
    flex-direction: column;
  }
  .layout__main .page1__header .portlet1 .zone1 {
    height: auto;
    padding: 11px 0 30px 0;
  }
  .layout__main .page1__header .portlet1 .zone1__main {
    width: 92vw;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p,
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p
    b,
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p.direccion
    strong {
    font-size: 20px;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p.direccion
    span {
    font-size: 11px;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    p {
    font-family: AMX-Regular;
    font-weight: 600;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    .icon
    svg {
    width: 23px;
  }
  .layout__main .page1__header .portlet1 .zone1__main .content__header hgroup {
    margin: 0 !important;
    width: 100%;
    max-width: 295px !important;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item {
    padding: 12px 0;
  }
  .layout__main .page1__header .portlet1 .zone1__main .content__footer {
    width: 100%;
  }
  .layout__main
    .page1__header
    .portlet1
    .zone1__main
    .content__header
    hgroup
    .items
    .item
    .icon {
    display: flex;
  }
}
