/* IMAGES PATH
################################################## */
/* DIMENSIONS
################################################## */
/* FONTS
################################################## */
/* COLORS
################################################## */
/* main */
/* platforms */
/* SHADOW
################################################## */
/* MORE
################################################## */
/* TRANSITIONS
################################################## */
/* NON-SELECTABLE
################################################## */
/* OPACITY
################################################## */
/* GRADIENT
################################################## */
/* GRAYSCALE IMAGES
################################################## */
/* BORDER RADIUS
################################################## */
/* ANIMATE LESS
https://github.com/machito/animate.less
http://daneden.github.io/animate.css/
################################################## */
body {
  -webkit-backface-visibility: hidden;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
/* BUTTONS: PAYPAL
################################################## */
.btn-paypal {
  color: #fff;
  background-color: #ffc439;
  border-color: #ffc439;
}
.btn-paypal:hover,
.btn-paypal:active,
.btn-paypal.active {
  color: #fff;
  background-color: #ffb810;
  border-color: #ffb810;
}
.btn-paypal:focus,
.btn-paypal.focus,
.btn-paypal:active,
.btn-paypal.active {
  box-shadow: 0 0 0 0.2rem rgba(255, 184, 16, 0.5);
}
/* BUTTONS: FACEBOOK
################################################## */
.btn-facebook {
  color: #fff;
  background-color: #4267b2;
  border-color: #4267b2;
}
.btn-facebook:hover,
.btn-facebook:active,
.btn-facebook.active {
  color: #fff;
  background-color: #375694;
  border-color: #375694;
}
.btn-facebook:focus,
.btn-facebook.focus,
.btn-facebook:active,
.btn-facebook.active {
  box-shadow: 0 0 0 0.2rem rgba(55, 86, 148, 0.5);
}
/* BUTTONS: TWITTER
################################################## */
.btn-twitter {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
.btn-twitter:hover,
.btn-twitter:active,
.btn-twitter.active {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
.btn-twitter:focus,
.btn-twitter.focus,
.btn-twitter:active,
.btn-twitter.active {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
/* BUTTONS: YOUTUBE
################################################## */
.btn-youtube {
  color: #fff;
  background-color: #ff0000;
  border-color: #ff0000;
}
.btn-youtube:hover,
.btn-youtube:active,
.btn-youtube.active {
  color: #fff;
  background-color: #d60000;
  border-color: #d60000;
}
.btn-youtube:focus,
.btn-youtube.focus,
.btn-youtube:active,
.btn-youtube.active {
  box-shadow: 0 0 0 0.2rem rgba(214, 0, 0, 0.5);
}
/* BUTTONS: PINTEREST
################################################## */
.btn-pinterest {
  color: #fff;
  background-color: #c8232c;
  border-color: #c8232c;
}
.btn-pinterest:hover,
.btn-pinterest:active,
.btn-pinterest.active {
  color: #fff;
  background-color: #a51d24;
  border-color: #a51d24;
}
.btn-pinterest:focus,
.btn-pinterest.focus,
.btn-pinterest:active,
.btn-pinterest.active {
  box-shadow: 0 0 0 0.2rem rgba(165, 29, 36, 0.5);
}
/* BUTTONS: WHATSAPP
################################################## */
.btn-whatsapp {
  color: #fff;
  background-color: #25d366;
  border-color: #25d366;
}
.btn-whatsapp:hover,
.btn-whatsapp:active,
.btn-whatsapp.active {
  color: #fff;
  background-color: #1da851;
  border-color: #1da851;
}
.btn-whatsapp:focus,
.btn-whatsapp.focus,
.btn-whatsapp:active,
.btn-whatsapp.active {
  box-shadow: 0 0 0 0.2rem rgba(32, 185, 89, 0.5);
}
/* BUTTONS: INSTAGRAM
################################################## */
.btn-instagram {
  color: #fff;
  background-color: #fb3958;
  border-color: #fb3958;
}
.btn-instagram:hover,
.btn-instagram:active,
.btn-instagram.active {
  color: #fff;
  background-color: #fa072e;
  border-color: #fa072e;
}
.btn-instagram:focus,
.btn-instagram.focus,
.btn-instagram:active,
.btn-instagram.active {
  box-shadow: 0 0 0 0.2rem rgba(250, 27, 63, 0.5);
}
/* BUTTONS: LINKEDIN
################################################## */
.btn-linkedin {
  color: #fff;
  background-color: #0e76a8;
  border-color: #0e76a8;
}
.btn-linkedin:hover,
.btn-linkedinlinkedin:active,
.btn-linkedin.active {
  color: #fff;
  background-color: #0a5579;
  border-color: #0a5579;
}
.btn-linkedin:focus,
.btn-linkedin.focus,
.btn-linkedin:active,
.btn-linkedin.active {
  box-shadow: 0 0 0 0.2rem rgba(12, 27, 140, 0.5);
}
/* BUTTONS: TELEGRAM
################################################## */
.btn-telegram {
  color: #fff;
  background-color: #229ED9;
  border-color: #229ED9;
}
.btn-telegram:hover,
.btn-telegramtelegram:active,
.btn-linkedin.active {
  color: #fff;
  background-color: #1b7ead;
  border-color: #1b7ead;
}
.btn-telegram:focus,
.btn-telegram.focus,
.btn-telegram:active,
.btn-telegram.active {
  box-shadow: 0 0 0 0.2rem rgba(30, 139, 191, 0.5);
}
/* BUTTONS: TIKTOK
################################################## */
.btn-tiktok {
  color: #fff;
  text-shadow: 0px 1px 1px rgba(255, 0, 80, 0.5);
  background-color: #000000;
  border-color: #000000;
}
.btn-tiktok:hover,
.btn-tiktoktiktok:active,
.btn-tiktok.active {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
.btn-tiktok:focus,
.btn-tiktok.focus,
.btn-tiktok:active,
.btn-tiktok.active {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.paypal {
  background-image: url("../img/cc/paypal.png");
}
.amex {
  background-image: url("../img/cc/amex.png");
}
.discover {
  background-image: url("../img/cc/discover.png");
}
.mastercard {
  background-image: url("../img/cc/mastercard.png");
}
.visa {
  background-image: url("../img/cc/visa.png");
}
.diners {
  background-image: url("../img/cc/diners.png");
}
/* COMMON
################################################## */
/* ANIMATION
################################################## */
.alert {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
/* HTML / BODY
################################################## */
html {
  scroll-behavior: smooth;
}
body {
  cursor: default;
  color: #464646;
}
a {
  outline: none;
}
/* FONT STYLES
################################################## */
body {
  font-family: "Open Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", sans-serif;
}
.btn {
  font-family: "Ubuntu", sans-serif;
}
h1 {
  font-size: 2.1em;
}
h2 {
  font-size: 1.9em;
}
/* ICONS
################################################## */
.fa-solid::before,
.fa-regular::before,
.fa-brands::before {
  text-decoration: none;
  width: 1.5em;
  text-align: center;
  text-transform: none;
  line-height: 1em;
  margin: 0 5px;
}
.icon-sm {
  font-size: 0.875em;
}
.icon-lg {
  font-size: 1.33em;
}
.icon-flip-horizontal {
  display: inline-block;
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.icon-spin {
  display: inline-block;
  animation: spin 2s linear infinite;
}
@keyframes beat {
  to {
    transform: scale(1.2);
  }
}
.icon-beat {
  display: inline-block;
  animation: beat 0.4s infinite alternate;
}
/* FORMS
################################################## */
.required::after {
  content: "*";
  color: #ec1f49;
}
.form-control-lg.loading {
  background: url("../img/loading.gif") no-repeat right 7px center;
  background-size: 32px 32px;
}
.form-control-lg.yes {
  background-image: url("../img/loading.yes.png");
}
.form-control-lg.no {
  background-image: url("../img/loading.no.png");
}
input[type="number"] {
  text-align: right;
}
.invalid-feedback a {
  text-decoration: underline;
  color: #ec1f49;
}
/* BOOTSTRAP: GRID
################################################## */
.modal-header h5.modal-title {
  font-weight: 700;
}
.modal-header button {
  outline: 0;
}
/* BOOTSTRAP: TABS
################################################## */
div.nav-tabs a {
  font-weight: 700;
}
/* BOOTSTRAP: LABELS
################################################## */
label {
  font-weight: 700;
  font-size: 0.9em;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
}
.custom-checkbox label {
  font-weight: 400;
  font-size: 0.95em;
}
.custom-radio label {
  font-weight: 400;
  font-size: 0.95em;
}
/* PLACEHOLDERS
################################################## */
::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 0.9em;
  color: #c5c5c5 !important;
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 0.9em;
  color: #c5c5c5 !important;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 0.9em;
  color: #c5c5c5 !important;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  font-size: 0.9em;
  color: #c5c5c5 !important;
}
/* ALERTS
################################################## */
.alert {
  margin-bottom: 15px;
  padding: 15px;
  font-size: 0.9em;
}
.alert button:focus {
  outline: none;
}
.alert h4.alert-heading {
  font-size: 1.3em;
  font-weight: 700;
}
.alert p {
  margin-bottom: 15px;
}
.alert p.extra {
  margin-bottom: 0;
  line-height: 15px;
  font-size: 0.8em;
}
/* STEPS
################################################## */
.steps {
  position: relative;
  overflow: hidden;
  *zoom: 1;
  border-radius: 0.25rem;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.steps::before,
.steps::after {
  display: table;
  line-height: 0;
  content: "";
}
.steps::after {
  clear: both;
}
.steps ul {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none outside none;
}
.steps ul li {
  width: 25%;
  position: relative;
  float: left;
  height: 46px;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 14px;
  line-height: 46px;
  background: #f8f8f8;
}
.steps ul li:first-child {
  -webkit-border-radius: 0;
  -webkit-border-top-left-radius: 0.25rem;
  -webkit-border-bottom-left-radius: 0.25rem;
  -moz-border-radius: 0;
  -moz-border-radius-topleft: 0.25rem;
  -moz-border-radius-bottomleft: 0.25rem;
  border-radius: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.steps ul li:last-child {
  -webkit-border-radius: 0;
  -webkit-border-top-right-radius: 0.25rem;
  -webkit-border-bottom-right-radius: 0.25rem;
  -moz-border-radius: 0;
  -moz-border-radius-topright: 0.25rem;
  -moz-border-radius-bottomright: 0.25rem;
  border-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.steps ul li .chevron {
  position: absolute;
  top: 0;
  right: -14px;
  z-index: 10;
  display: block;
  border: 24px solid transparent;
  border-right: 0;
  border-left: 14px solid #d2d2d2;
}
.steps ul li .chevron::before {
  position: absolute;
  top: -24px;
  right: 1px;
  display: block;
  border: 24px solid transparent;
  border-right: 0;
  border-left: 14px solid #f8f8f8;
  content: "";
}
.steps ul li:last-child .chevron {
  display: none;
}
.steps ul li a {
  display: block;
  cursor: default;
}
.steps ul li.complete {
  color: #acacac;
  background-color: #797979;
}
.steps ul li.complete .chevron {
  border-left-color: #5f5f5f;
}
.steps ul li.complete .chevron::before {
  border-left-color: #797979;
}
.steps ul li.active {
  background: #464646;
}
.steps ul li.active .chevron {
  border-left-color: #464646;
}
.steps ul li.active .chevron::before {
  border-left-color: #464646;
}
.steps ul li .title {
  color: #929292;
}
.steps ul li.active .title,
.steps ul li.complete .title {
  color: #fff;
}
.steps ul li .badge {
  margin-right: 8px;
  font-weight: 700;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 4px 0;
  font-size: 12px;
  line-height: 1.45em;
  border-radius: 15px;
  color: #797979;
  background-color: #dfdfdf;
}
.steps ul li.complete .badge {
  color: #525252;
  background-color: #d2d2d2;
}
.steps ul li.active .badge {
  color: #464646;
  background-color: #fff;
}
@media (max-width: 767px) {
  .steps ul li .title {
    display: none;
  }
  .steps ul li .badge {
    margin-left: 16px;
    margin-right: 0;
  }
  .steps ul li:first-child .badge {
    margin-left: 8px;
  }
}
/* STATUSES
################################################## */
.badge.badge-quote-pending {
  color: #fff;
  background-color: #9c27b0;
}
.badge.badge-quote-assigned {
  color: #fff;
  background-color: orange;
}
.badge.badge-quote-sold {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-quote-sent {
  color: #fff;
  background-color: #03a9f4;
}
.badge.badge-quote-no-answer {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-quote-canceled {
  color: #fff;
  background-color: #f44336;
}
.badge.badge-whatsapp_order-pending {
  color: #fff;
  background-color: #9c27b0;
}
.badge.badge-whatsapp_order-assigned {
  color: #fff;
  background-color: orange;
}
.badge.badge-whatsapp_order-sold {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-whatsapp_order-sent {
  color: #fff;
  background-color: #03a9f4;
}
.badge.badge-whatsapp_order-no-answer {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-whatsapp_order-canceled {
  color: #fff;
  background-color: #f44336;
}
.badge.badge-new {
  color: #fff;
  background-color: #9c27b0;
}
.badge.badge-warehouse {
  color: #fff;
  background-color: #ffc107;
}
.badge.badge-transit {
  color: #fff;
  background-color: #ff5722;
}
.badge.badge-sent {
  color: #fff;
  background-color: #03a9f4;
}
.badge.badge-delivered {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-pending {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-verifying {
  color: #fff;
  background-color: #03a9f4;
}
.badge.badge-paid {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-returned {
  color: #fff;
  background-color: #ffc107;
}
.badge.badge-canceled {
  color: #fff;
  background-color: #f44336;
}
.badge.badge-inactive {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-active {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-expired {
  color: #fff;
  background-color: #f44336;
}
.badge.badge-whatsapp-pending {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-whatsapp-notified {
  color: #fff;
  background-color: #4caf50;
}
#logo_for_print_style {
  display: none;
  width: 100%;
  text-align: center;
}
@media print {
  #logo_for_print_style {
    display: block;
  }
}
#logo_for_print_style img {
  max-width: 60%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 200px;
}
/* HEADER - NAVBAR
################################################## */
#header {
  z-index: 500;
  min-height: 50px;
  line-height: normal;
}
#header.navbar {
  padding: 5px;
}
#header.bg-dark {
  background-color: #2c2c2c !important;
}
#header button.navbar-toggler {
  padding: 3px 12px;
  border-color: rgba(255, 255, 255, 0.3);
}
#header button.navbar-toggler:focus {
  outline: 1px none;
}
#header span.navbar-toggler-icon {
  width: 1.6em;
}
#header a.navbar-brand:focus,
#header a.navbar-brand:active {
  background-color: #ec1f49;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(236, 31, 73, 0.8);
  border-radius: 2px;
}
#header a.navbar-brand {
  margin-right: 15px;
  margin-left: 5px;
}
#header a.navbar-brand img {
  float: left;
}
#header #links li.nav-item a.nav-link:focus,
#header #links li.nav-item a.nav-link:active {
  color: #fff;
  outline: none;
  border-radius: 2px;
}
#header #links {
  font-family: "Ubuntu", sans-serif;
  font-size: 0.85em;
  text-transform: uppercase;
}
#header #links li.nav-item a.nav-link {
  color: #c5c5c5;
  transition:  padding 0.1s 0s ease, color 0.1s 0s ease;
}
#header #links li.nav-item a.nav-link:hover {
  color: #fff;
}
#header #links li.nav-item a.nav-link.active {
  font-weight: 700;
}
#header #links li.nav-item a.nav-link i {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
#header #links li.nav-item hr.border-top {
  margin: 5px 0 0 0;
  border-top-color: #393939 !important;
}
#header #links.menu li.nav-item a.nav-link {
  margin-top: 5px;
  padding: 10px;
  border-radius: 0.25rem;
  transition:  background-color 0.1s 0s ease;
}
#header #links.menu li.nav-item a.nav-link:hover {
  background-color: #393939;
}
/* BUTTONS: SYS
################################################## */
.btn-sys {
  color: #fff;
  background-color: #ec1f49;
  border-color: #ec1f49;
}
.btn-sys:hover {
  color: #fff;
  background-color: #c71136;
  border-color: #c71136;
}
.btn-sys:focus,
.btn-sys.focus {
  box-shadow: 0 0 0 0.2rem rgba(199, 17, 54, 0.5);
}
.btn-sys:active,
.btn-sys.active {
  color: #fff;
  background-color: #b00f30;
  border-color: #b00f30;
  box-shadow: 0 0 0 0.2rem rgba(199, 17, 54, 0.5);
}
/* BUTTONS: SYS OUTLINE
################################################## */
.btn-outline-sys {
  color: #ec1f49;
  border-color: #ec1f49;
}
.btn-outline-sys:hover {
  color: #fff;
  background-color: #ec1f49;
  border-color: #ec1f49;
}
.btn-outline-sys:focus,
.btn-outline-sys.focus {
  box-shadow: 0 0 0 0.2rem rgba(236, 31, 73, 0.5);
}
.btn-outline-sys.disabled,
.btn-outline-sys:disabled {
  background-color: #ec1f49;
  border-color: #ec1f49;
}
.btn-outline-sys:not([disabled]):not(.disabled):active,
.btn-outline-sys:not([disabled]):not(.disabled).active,
.show > .btn-outline-sys.dropdown-toggle {
  color: #fff;
  background-color: #ec1f49;
  border-color: #ec1f49;
  box-shadow: 0 0 0 0.2rem rgba(236, 31, 73, 0.5);
}
/* BADGES
################################################## */
.badge-sys {
  color: #fff;
  background-color: #ec1f49;
}
/* PROGRESS: SYS
################################################## */
.bg-sys {
  background-color: #ec1f49 !important;
}
/* ANIMATION
################################################## */
#header .navbar-brand {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: bounceIn;
}
#header #links li.nav-item a.nav-link {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
#register .step {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
/* BODY
################################################## */
body {
  margin-top: 50px;
  background-color: #ffffff;
}
/* COVER
################################################## */
#cover .carousel-item {
  transform-style: preserve-3d;
}
#cover .carousel-control-next-icon,
#cover .carousel-control-prev-icon {
  width: 40px;
  height: 40px;
}
#cover .carousel-indicators li {
  height: 5px;
}
#cover .carousel-item,
#cover .carousel-picture,
#cover .carousel-pattern {
  height: 400px;
}
@media (max-width: 575px) {
  #cover .carousel-item,
  #cover .carousel-picture,
  #cover .carousel-pattern {
    height: 360px;
  }
}
#cover .carousel-picture {
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition:  transform 2s 0s ease;
}
#cover:hover .carousel-picture {
  transform: scale(1.1);
}
#cover .carousel-pattern {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
}
#cover .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
}
#cover .carousel-caption h2 {
  line-height: 35px;
}
@media (max-width: 575px) {
  #cover .carousel-caption h2 {
    font-size: 1.5em;
    line-height: 30px;
  }
}
#cover .carousel-caption p {
  margin: 0;
}
@media (min-width: 768px) {
  #cover .carousel-caption p.description {
    max-width: 75%;
  }
}
#cover .carousel-caption p .btn {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
#cover .carousel-caption h2,
#cover .carousel-caption .description {
  margin-bottom: 15px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
/* TITLES
################################################## */
h3.section {
  margin-bottom: 7.5px;
  font-size: 1.8em;
  font-weight: 700;
  color: #5f5f5f;
}
@media (max-width: 575px) {
  h3.section {
    font-size: 1.5em;
  }
}
@media (max-width: 383px) {
  h3.section {
    font-size: 1.3em;
  }
}
h3.section i {
  color: #797979;
}
p.lead {
  margin-bottom: 15px;
  font-size: 1em;
}
p.lead strong {
  padding: 0 2px;
  font-weight: 700;
  color: #7f002a;
  background-color: #ffe5ee;
  border-radius: 0.25rem;
}
/* STATS
################################################## */
#stats {
  margin-bottom: 30px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  background: #ec1f49;
}
#stats .holder {
  border-right: 1px solid #f26682;
}
#stats .holder.fourth {
  border-right-width: 0;
}
#stats i.icon {
  display: block;
  font-size: 1.4em;
  color: #f8acbc;
}
#stats span.q {
  display: block;
  font-size: 1.4em;
  font-weight: 700;
}
#stats span.q span {
  font-weight: 400;
  color: #f8acbc;
}
#stats span.desc {
  display: block;
  font-size: 0.9em;
  color: #fcdbe2;
}
@media (max-width: 767px) {
  #stats {
    font-size: 0.9em;
  }
  #stats .holder {
    border-right: 1px solid #f26682;
  }
  #stats .holder.first,
  #stats .holder.second {
    padding-bottom: 15px;
    border-bottom: 1px solid #f26682;
  }
  #stats .holder.second {
    border-right-width: 0;
  }
  #stats .holder.third,
  #stats .holder.fourth {
    padding-top: 15px;
  }
}
/* ABOUT
################################################## */
#about {
  margin: 15px;
  padding: 30px 0;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
@media (max-width: 767px) {
  #about {
    font-size: 0.9em;
  }
}
/* PLANS
################################################## */
#plans {
  margin: 15px 0 15px 0;
  padding: 15px 0;
}
#plans .table {
  width: 100%;
  margin-bottom: 0;
  color: #464646;
}
#plans .table thead {
  background-color: #ec1f49;
}
#plans .table thead tr th {
  text-align: center;
  color: #fff;
}
#plans .table thead tr th.check {
  width: 200px;
}
@media (max-width: 1199px) {
  #plans .table thead tr th.check {
    width: 160px;
  }
}
@media (max-width: 991px) {
  #plans .table thead tr th.check {
    width: 120px;
  }
}
@media (max-width: 767px) {
  #plans .table thead tr th.check {
    width: 80px;
  }
}
@media (max-width: 1199px) {
  #plans .table thead tr th {
    font-size: 0.8em;
  }
}
@media (max-width: 991px) {
  #plans .table thead tr th {
    font-size: 0.7em;
  }
}
#plans .table tbody tr.prices td {
  font-size: 1.6em;
  font-weight: 700;
  color: #464646;
}
@media (max-width: 991px) {
  #plans .table tbody tr.prices td {
    font-size: 1.2em;
  }
}
#plans .table tbody tr.prices .sign {
  margin: 0 1px;
  font-size: 0.6em;
}
#plans .table tbody tr.prices .yearly {
  font-size: 0.5em;
}
#plans .table tbody tr.prices .sign,
#plans .table tbody tr.prices .yearly {
  font-weight: 400;
  color: #797979;
}
#plans .table tbody tr.setup td {
  font-size: 1.1em;
  font-weight: 700;
  color: #464646;
}
@media (max-width: 991px) {
  #plans .table tbody tr.setup td {
    font-size: 1em;
  }
}
#plans .table tbody tr.setup td .sign {
  margin-left: 2px;
  font-size: 0.8em;
  font-weight: 400;
  color: #797979;
}
#plans .table tbody tr.features th {
  padding: 6px 12px;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #797979;
  background-color: #dfdfdf;
}
#plans .table tbody tr th {
  vertical-align: middle;
  font-weight: 400;
  font-size: 0.9em;
  background-color: #fbfbfb;
}
@media (max-width: 991px) {
  #plans .table tbody tr th {
    font-size: 0.8em;
  }
}
@media (max-width: 767px) {
  #plans .table tbody tr th {
    font-size: 0.75em;
  }
}
#plans .table tbody tr td {
  vertical-align: middle;
  text-align: center;
  font-size: 0.9em;
  background-color: #fff;
}
@media (max-width: 991px) {
  #plans .table tbody tr td {
    font-size: 0.8em;
  }
}
@media (max-width: 767px) {
  #plans .table tbody tr td {
    font-size: 0.7em;
  }
}
#plans .table tbody tr td i {
  font-size: 1.5em;
  color: #4caf50;
}
#plans .table tbody tr td.not {
  background-color: #ffffff;
}
#plans .table tbody tr td.not i {
  color: #ccc;
}
#plans .table tbody tr td.custom {
  font-style: italic;
  font-weight: 700;
  color: #5f5f5f;
}
#plans .table tfoot tr {
  background-color: #f8f8f8;
}
#plans .card-group .card-header {
  background-color: #ebebeb;
  border-bottom-color: #dfdfdf;
}
#plans .card-group h4.card-title {
  margin: 0;
  font-size: 1.3em;
  font-weight: 700;
  color: #464646;
}
#plans .card-group .price {
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 2.5em;
  line-height: 25px;
  color: #464646;
  border-bottom: 1px solid #dfdfdf;
}
#plans .card-group .price strong {
  color: black;
}
#plans .card-group .price .sign {
  margin: 0 1px;
  font-size: 0.6em;
}
#plans .card-group .price .cycle {
  font-size: 0.5em;
  font-weight: 700;
}
#plans .card-group .price .sign,
#plans .card-group .price .cycle {
  color: #797979;
}
#plans .card-group .price--yearly {
  font-size: 0.4em;
  color: #797979;
}
#plans .card-group .price--yearly .sign {
  font-size: 0.8em;
}
#plans .card-group .card-body {
  padding: 15px;
  font-size: 0.9em;
}
#plans .card-group .card-body p:last-child {
  margin-bottom: 0;
}
#plans .card-group .card-body ul {
  margin: 0;
  margin-left: 2.5em;
}
#plans .card-group .card-body ul li {
  margin-bottom: 5px;
  padding-left: 0;
}
#plans .card-group .card-body ul li:last-child {
  margin-bottom: 0;
}
#plans .card-group .card-body ul li i {
  left: 1.5em;
  width: 1.5em;
  position: absolute;
  text-align: center;
  color: #4caf50;
}
#plans .card:last-child {
  margin-bottom: 0;
}
#bullets {
  margin-top: 15px;
  font-size: 0.9em;
  color: #777;
}
#bullets ul {
  padding-left: 15px;
  list-style-type: square;
}
#customized {
  margin: 45px 0 30px 0;
  text-align: center;
}
#customized img {
  margin-bottom: 5px;
  max-width: 300px;
}
#customized h3 {
  margin-bottom: 5px;
  font-size: 1.4em;
  font-weight: 700;
  color: #5f5f5f;
}
#customized p {
  font-size: 0.9em;
}
/* FEATURES
################################################## */
#features {
  margin: 15px;
  padding: 30px 0 15px 0;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
#features .card {
  margin-bottom: 15px;
}
#features .card h5.card-title {
  font-size: 1.15em;
  font-weight: 700;
}
#features .card a {
  font-weight: 700;
  text-decoration: none;
  color: #ec1f49;
}
#features .card.special {
  color: #fff;
  background-color: #ec1f49;
}
#features .card.special a {
  color: #fff;
  text-decoration: underline;
}
#features .card.special p small {
  color: #f8acbc;
}
/* CUSTOMERS
################################################## */
#customers {
  margin: 15px;
  padding: 30px 0;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
#customers a.btn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* FAQ
################################################## */
#faq {
  margin: 15px;
  padding: 30px 0;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
@media (max-width: 991px) {
  #faq .banner {
    margin-bottom: 15px;
  }
}
#faq .banner img {
  border-radius: 0.25rem;
}
#faq h2 {
  margin: 0;
  padding: 15px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  color: #464646;
  background-color: #f8f8f8;
}
#faq h2.collapsed {
  font-weight: 400;
  color: #555;
}
@media (max-width: 575px) {
  #faq h2 {
    font-size: 1em;
  }
}
#faq .card-header {
  padding: 0;
}
#faq .card-body p:last-child {
  margin-bottom: 0;
}
#faq .card-body a {
  color: #ec1f49;
}
#faq .ccs {
  margin-top: 15px;
}
#faq .ccs .cc {
  float: left;
  display: block;
  margin-bottom: 5px;
  margin-right: 5px;
  width: 54px;
  height: 35px;
  background-size: 54px 35px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 4px;
}
#faq .ccs .cc:last-child {
  margin-right: 0;
}
/* TESTIMONIALS
################################################## */
#testimonials .carousel-item {
  transform-style: preserve-3d;
}
#testimonials .carousel-control-next-icon,
#testimonials .carousel-control-prev-icon {
  width: 30px;
  height: 30px;
}
#testimonials .carousel-item,
#testimonials .carousel-picture,
#testimonials .carousel-pattern {
  height: 400px;
}
#testimonials .carousel-picture {
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: blur(3px);
  transform: scale(1.03);
}
#testimonials .carousel-pattern {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
}
#testimonials .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
}
#testimonials .carousel-caption h2 {
  font-size: 1.4em;
  font-weight: 700;
}
#testimonials .carousel-caption p {
  margin: 0;
}
#testimonials .carousel-caption .avatar {
  margin-bottom: 15px;
}
#testimonials .carousel-caption .avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
#testimonials .carousel-caption .author {
  margin-bottom: 5px;
  font-size: 1.4em;
}
#testimonials .carousel-caption .description {
  margin-bottom: 10px;
  font-size: 0.9em;
  text-wrap: balance;
}
#testimonials .carousel-caption .author {
  margin-bottom: 15px;
  font-size: 0.9em;
  font-style: italic;
}
#testimonials .carousel-caption h2,
#testimonials .carousel-caption .author,
#testimonials .carousel-caption .description {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
#testimonials .carousel-caption .btn {
  text-transform: uppercase;
}
/* WHATSAPP
################################################## */
#whatsapp_now {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 18px;
  right: 18px;
  text-align: center;
  font-size: 2.2em;
  color: #fff;
  background-color: #25d366;
  border: 2px solid #61e392;
  border-radius: 50%;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition:  transform 0.2s 0s ease, background-color 0.3s 0s ease;
}
#whatsapp_now.move {
  bottom: 80px;
}
#whatsapp_now:active {
  transform: scale(0.9);
}
#whatsapp_now:hover {
  background-color: #21bd5c;
}
/* COPYRIGHT
################################################## */
#copyright {
  padding: 15px 0;
  font-size: 0.8em;
  line-height: 20px;
  color: #666;
  background-color: #000;
}
@media (max-width: 575px) {
  #copyright {
    text-align: center;
  }
}
@media (max-width: 383px) {
  #copyright {
    text-align: center;
    font-size: 0.65em;
  }
}
#copyright .links a {
  text-decoration: underline;
  color: #666;
}
#copyright .links a:hover {
  color: #999;
}
#copyright .logos {
  margin-top: 5px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
}
#copyright .logos a {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  transition:  opacity 0.1s 0s ease;
}
#copyright .logos a:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
#copyright a.top {
  float: right;
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 3em;
  color: #666;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  transition:  color 0.1s 0s ease, transform 0.1s 0s ease;
}
#copyright a.top:hover {
  color: #999;
}
#copyright a.top:active {
  transform: scale(0.9);
}
/* REGISTER
################################################## */
#register h6 {
  margin-bottom: 22.5px;
  font-size: 1.4em;
  font-weight: 400;
  color: #ec1f49;
}
#register h6 i {
  font-size: 1.7em;
  color: #ff7fa9;
}
#register #register_final {
  display: block;
  margin: 5px 0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 30px;
  color: #1b1b1b;
}
#register .step.validated .form-control.invalid,
#register .step.validated .form-control:invalid,
#register .step.validated .custom-select:invalid {
  border-color: #dc3545;
}
#register .step.validated .form-control.invalid:focus,
#register .step.validated .form-control:focus:invalid,
#register .step.validated .custom-select:focus:invalid,
#register .step.validated .custom-control:invalid {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
#register .step.validated .form-control.invalid ~ .invalid-feedback,
#register .step.validated .form-control:invalid ~ .invalid-feedback,
#register .step.validated .custom-select:invalid .invalid-feedback,
#register .step.validated .form-check-input:invalid ~ .invalid-feedback,
#register .step.validated .custom-control-input:invalid ~ .invalid-feedback {
  display: block;
}
#register .input-group-text {
  letter-spacing: 1px;
}
/* SESSION
################################################## */
#connecting {
  padding: 30px 0;
  text-align: center;
  text-transform: lowercase;
  font-size: 0.9em;
  font-weight: 700;
  color: #797979;
}
#connecting h2 {
  margin-bottom: 0;
}
#connecting h2 i {
  display: block;
  font-size: 1.4em;
}
#welcome h2 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#login div.holder h2 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.3em;
  font-weight: 700;
}
@media (max-width: 991px) {
  #login #login_provider_google {
    margin-bottom: 5px;
  }
}
#login p.instructions {
  margin-bottom: 15px;
  font-size: 0.9em;
  color: #5f5f5f;
}
#login .btn.btn-login {
  padding-left: 45px;
  text-align: left;
  text-transform: none;
  font-size: 1em;
  line-height: 24px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 38px 38px;
}
#login .btn.btn-login.btn-google {
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='3 3 40 40'%3E%3Cfilter height='200%25' width='200%25' id='A' y='-50%25' x='-50%25'%3E%3CfeOffset in='SourceAlpha' dy='1'/%3E%3CfeGaussianBlur stdDeviation='.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.168 0' result='C'/%3E%3CfeOffset in='SourceAlpha'/%3E%3CfeGaussianBlur stdDeviation='.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.084 0' result='F'/%3E%3CfeMerge%3E%3CfeMergeNode in='C'/%3E%3CfeMergeNode in='F'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3Cg transform='translate(-1 -1)'%3E%3Cpath fill='%23fff' d='M2 0h36a2 2 0 0 1 2 2v36a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z' transform='translate(4 4)' stroke-width='5.745' filter='url(%23A)'/%3E%3Cpath fill='%234285f4' d='M32.64 24.205a10.47 10.47 0 0 0-.164-1.841H24v3.48h4.844c-.21 1.125-.843 2.08-1.796 2.717v2.258h2.91c1.7-1.567 2.684-3.875 2.684-6.615z'/%3E%3Cpath fill='%2334a853' d='M24 33c2.43 0 4.467-.806 5.957-2.18l-2.91-2.258c-.806.54-1.837.86-3.048.86-2.344 0-4.328-1.582-5.036-3.7h-3.007v2.332C17.438 30.983 20.482 33 24 33z'/%3E%3Cpath fill='%23fbbc05' d='M18.964 25.7c-.18-.54-.282-1.116-.282-1.7a5.44 5.44 0 0 1 .282-1.71v-2.332h-3.007C15.348 21.173 15 22.548 15 24a9.01 9.01 0 0 0 .957 4.042l3.007-2.332z'/%3E%3Cpath fill='%23ea4335' d='M24 18.58c1.32 0 2.508.454 3.44 1.346l2.58-2.58C28.463 15.892 26.426 15 24 15c-3.518 0-6.562 2.017-8.043 4.958l3.007 2.332c.708-2.127 2.692-3.7 5.036-3.7z'/%3E%3C/g%3E%3C/svg%3E");
}
#login .btn.btn-login.btn-facebook {
  color: #fff;
  background-color: #4267b2;
  border-color: #4267b2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cfilter width='200%25' height='200%25' id='A' y='-50%25' x='-50%25'%3E%3CfeOffset in='SourceAlpha' dy='1'/%3E%3CfeGaussianBlur stdDeviation='.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.168 0' result='A'/%3E%3CfeOffset in='SourceAlpha'/%3E%3CfeGaussianBlur stdDeviation='.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.084 0' result='B'/%3E%3CfeMerge%3E%3CfeMergeNode in='A'/%3E%3CfeMergeNode in='B'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3Cg filter='url(%23A)'%3E%3Cpath fill='%23fff' d='M2.036 0h36a2 2 0 0 1 2 2v36a2 2 0 0 1-2 2h-36a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z'/%3E%3C/g%3E%3Cpath fill='%234267b2' d='M20.966 33.282V21.907h3.816l.57-4.435h-4.4V14.64c0-1.284.347-2.16 2.197-2.16h2.34V8.514c-.407-.052-1.8-.173-3.42-.173-3.387 0-5.703 2.066-5.703 5.86v3.27h-3.828v4.435h3.828v11.367l4.578.001.012.007z'/%3E%3C/svg%3E");
}
/* LEGAL
################################################## */
body.legal {
  margin-top: 65px;
}
#legal {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #fff;
  border-radius: 0.25rem;
}
#legal h2 {
  margin-bottom: 15px;
}
#legal a {
  color: #ec1f49;
}
#legal .print {
  font-family: "Lucida Console", "Courier New", monospace;
  font-size: 0.9em;
  color: #777;
}
#legal .print strong {
  text-transform: uppercase;
  color: #333;
}
#legal .print blockquote {
  margin-left: 30px;
}
/* FLAGS
################################################## */
.cc {
  padding-left: 32px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px 24px;
}
.cc.ec {
  background-image: url("../img/flags/ec.png");
}
.cc.mx {
  background-image: url("../img/flags/mx.png");
}
.cc.sv {
  background-image: url("../img/flags/sv.png");
}
