/**
 * default.scss
 *
 * This file adds all the default styles to the website and set's
 * an standard for the programmers to work with.
 */
html {
  font-size: var(--html-font-size-desktop);
  font-weight: var(--html-font-weight);
  line-height: var(--html-line-height-desktop);
  letter-spacing: var(--html-letter-spacing);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--default-font-family);
  background-color: var(--body-background-color);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: scroll; /* Always show scroll bar to prevent short pages from having a different width */
}
body.static {
  overflow: hidden;
  /* fix for Windws phone 8.1 */
  -ms-overflow-y: scroll;
  height: 100%;
}
body.no-scroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
}

* {
  -webkit-tap-highlight-color: transparent;
  /* Force to keep childeren within the parent. */
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

.article > .margin > .padding {
  padding: var(--container-padding-desktop, 15px);
}

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

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.align-justify {
  text-align: justify;
}

[data-toggle=tooltip] {
  cursor: help;
}

#devicegrade {
  position: fixed;
  z-index: 100;
  border: none;
  bottom: 25px;
  left: 20px;
  display: none;
  font-family: Verdana;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
#devicegrade > div {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--defaultWhite);
  background-color: #602272;
  border-radius: 50px;
}
#devicegrade.active {
  display: block;
}

.top-message {
  justify-content: center;
}

.scroll-div {
  position: fixed;
  right: 50px;
  bottom: 50px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  z-index: 10;
  border-radius: 5px;
  cursor: pointer;
}
.scroll-div > i {
  font-size: 24px;
  line-height: 40px;
  display: block;
  position: fixed;
  width: 40px;
  height: 40px;
}
.scroll-div > i:hover {
  cursor: pointer;
  border-radius: 5px;
  opacity: 0.8;
}

img {
  height: auto;
  max-width: 100%;
  display: block;
}

table th,
table td {
  white-space: normal;
  padding: 5px 5px 5px 5px;
  vertical-align: top;
}

label[for] {
  cursor: pointer;
}

figure {
  display: block;
}
figure img {
  display: inline-block;
}
figure.float-left {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
figure.float-right {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}

/* Default <a> tags */
a:focus {
  outline: auto;
}

/*
* Allow us to float & clear easily.
*/
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear {
  clear: both;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.clear-self::after {
  content: "";
  clear: both;
  display: table;
}

/*
*	Navigation
*/
.navigation-wrap {
  clear: both;
  width: 100%;
  text-align: right;
  float: left;
}
.navigation-wrap > a {
  display: inline-block;
  width: 40px;
  font-size: var(--defaultFontSize);
  line-height: 40px;
  text-align: center;
  background-color: var(--defaultDarkGrey);
  border-radius: 3px;
  color: var(--defaultWhite);
  -webkit-tap-highlight-color: transparent;
  transition: var(--shortTransition);
  transition-property: background-color, color;
}
.navigation-wrap > a:not(.disabled):hover {
  background-color: var(--defaultBorderColor);
  color: var(--defaultWhite);
}
.navigation-wrap > a.disabled {
  cursor: default;
  background-color: #efefef;
  color: #dbdbdb;
}
.navigation-wrap > span {
  color: #727272;
  padding: 0px 15px;
}

/*
* Style the rows by default
*/
.relative {
  position: relative;
}

.row {
  width: 100%;
  max-width: 100%;
  float: left;
}
.row > div {
  margin: 0 auto;
  max-width: 1500px;
  position: relative;
}
.row.full-site-width > div {
  max-width: 100%;
  padding: 0;
}
.row.full-container-width > div .padding {
  padding: 0;
}
.row.full-site-width > div > .group > .margin > .padding,
.row.full-site-width > div > .group .article > .margin > .padding {
  padding: 0;
}

.group {
  float: left;
}
.group.vertical-flex-start > .margin > .padding {
  display: flex;
  align-items: flex-start;
}
.group.vertical-center > .margin > .padding {
  display: flex;
  align-items: center;
}
.group.vertical-flex-end > .margin > .padding {
  display: flex;
  align-items: flex-end;
}
.group.vertical-stretch > .margin > .padding {
  display: flex;
  align-items: stretch;
}
.group.vertical-baseline > .margin > .padding {
  display: flex;
  align-items: baseline;
}
.group.center > .margin > .padding {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.group.right > .margin > .padding {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.group.space-between > .margin > .padding {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

body > noscript.warning.message {
  justify-content: center;
}

.select-wrap {
  position: relative;
}

.row.webdesign li {
  display: inline-block;
  list-style: none;
}

.loading-time {
  position: fixed;
  bottom: 5px;
  left: 15px;
  color: var(--defaultBlack);
  z-index: 9999;
  font-size: 10px;
  width: 50px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.333);
  line-height: 1;
}

.swiper.add-slider {
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
}
.swiper.add-slider .swiper-pagination {
  bottom: 0px;
}
.swiper.add-slider .swiper-button-prev {
  left: 20px;
}
.swiper.add-slider .swiper-button-next {
  right: 20px;
}

/*
* Style the widths 
*/
.width-5 {
  float: left;
  width: 5%;
}

.width-10 {
  float: left;
  width: 10%;
}

.width-15 {
  float: left;
  width: 15%;
}

.width-20 {
  float: left;
  width: 20%;
}

.width-25 {
  float: left;
  width: 25%;
}

.width-30 {
  float: left;
  width: 30%;
}

.width-35 {
  float: left;
  width: 35%;
}

.width-40 {
  float: left;
  width: 40%;
}

.width-45 {
  float: left;
  width: 45%;
}

.width-50 {
  float: left;
  width: 50%;
}

.width-55 {
  float: left;
  width: 55%;
}

.width-60 {
  float: left;
  width: 60%;
}

.width-65 {
  float: left;
  width: 65%;
}

.width-70 {
  float: left;
  width: 70%;
}

.width-75 {
  float: left;
  width: 75%;
}

.width-80 {
  float: left;
  width: 80%;
}

.width-85 {
  float: left;
  width: 85%;
}

.width-90 {
  float: left;
  width: 90%;
}

.width-95 {
  float: left;
  width: 95%;
}

.width-100 {
  float: left;
  width: 100%;
}

.width-33 {
  float: left;
  width: 33.3333333333%;
}

.width-66,
.width-67 {
  float: left;
  width: 66.6666666667%;
}

.width-auto {
  float: left;
  width: auto;
}

.font-size-10 {
  font-size: 10px;
}

.font-size-11 {
  font-size: 11px;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-26 {
  font-size: 26px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-32 {
  font-size: 32px;
}

.font-size-34 {
  font-size: 34px;
}

.font-size-40 {
  font-size: 40px;
}

.font-size-46 {
  font-size: 46px;
}

.n-popup .content {
  background-color: var(--defaultBlack);
}
.n-popup .content .title {
  display: none;
}

/***************************
 * Responsive video
 ***************************/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**************************
 * Feedback label 
 **************************/
.feedback_label {
  position: fixed;
  top: 20%;
  right: 0px;
  z-index: 40;
  transition: padding var(--shortTransition);
}
.feedback_label:hover {
  padding-right: 15px;
}
.feedback_label a {
  color: var(--defaultWhite);
  text-decoration: none;
  padding: 10px;
  writing-mode: vertical-rl;
  writing-mode: tb-rl;
  text-orientation: sideways;
  display: block;
  width: 40px;
}
.feedback_label a:active, .feedback_label a:hover, .feedback_label a:focus {
  color: var(--defaultWhite);
  text-decoration: none;
}

/**************************
 * WhatsApp button
 **************************/
body > .whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  color: inherit;
  z-index: 100;
}
body > .whatsapp-button > .fa-whatsapp {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  background-color: #24d366;
  color: var(--defaultWhite);
  font-size: 32px;
  text-align: center;
  display: block;
  position: relative;
  z-index: 1;
}
body > .whatsapp-button > span {
  line-height: 42px;
  display: block;
  white-space: nowrap;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0784313725);
  position: absolute;
  left: 45px;
  top: 7px;
  padding-left: 22px;
  padding-right: 28px;
  background: var(--defaultWhite);
  border-radius: 0 21px 21px 0;
  color: var(--defaultBorderColor);
}
body.debug-button-added > .whatsapp-button {
  left: 80px;
}

/**************************
 * Edit buttons
 **************************/
body > .admin-edit {
  height: 40px;
  background-color: #41b6e6;
  border-radius: 20px;
  position: fixed;
  bottom: 25px;
  right: 20px;
  color: var(--defaultWhite);
  line-height: 40px;
  padding: 0 10px 0 10px;
  font-size: 0;
  transition: var(--shortTransition);
  transition-property: font-size, padding;
  z-index: 11;
}
body > .admin-edit:hover, body > .admin-edit:focus, body > .admin-edit:active {
  height: 40px;
  background-color: #41b6e6;
  border-radius: 20px;
  position: fixed;
  bottom: 25px;
  right: 20px;
  color: var(--defaultWhite);
  line-height: 40px;
  padding: 0 10px 0 10px;
  font-size: 0;
  transition: var(--shortTransition);
  transition-property: font-size, padding;
  z-index: 11;
}
body > .admin-edit:hover {
  font-size: var(--smallerFontSize);
  padding: 0 10px 0 21px;
}
body > .admin-edit.admin-edit-template {
  bottom: 85px;
}
body > .admin-edit::after {
  font-family: var(--fa-family-classic);
  font-size: var(--defaultFontSize);
  font-weight: 200;
  width: 20px;
  display: inline-block;
  text-align: center;
}
body > .admin-edit.admin-edit-item::after {
  content: "\f31c";
}
body > .admin-edit.admin-edit-template::after, body > .admin-edit.admin-edit-page::after {
  content: "\f040";
}

/*******************
 * Tooltip
 *******************/
[rel=tooltip] {
  position: relative;
  cursor: pointer;
}
[rel=tooltip]::after {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--shortTransition) 0.18s;
  font-family: sans-serif;
  font-weight: normal;
  font-style: normal;
  text-shadow: none;
  font-size: 12px;
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: var(--defaultWhite);
  content: attr(data-tooltip);
  padding: 0.5em 1em;
  position: absolute;
  z-index: 10;
  left: 50%;
  margin-top: 11px;
  top: 100%;
  transform: translate(-50%, -10px);
  white-space: normal;
  width: 200px;
}
[rel=tooltip]::before {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--shortTransition) 0.18s;
  content: "";
  position: absolute;
  z-index: 10;
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  left: 50%;
  margin-top: 5px;
  top: 100%;
  transform: translate(-50%, -10px);
}
[rel=tooltip]:hover::before, [rel=tooltip]:hover::after {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Message boxes */
.message {
  display: flex;
  font-size: var(--smallerFontSize);
  line-height: 24px;
}
.message::before {
  font-family: var(--fa-family-classic);
  margin-right: 20px;
  font-size: var(--biggerFontSize);
}
.message.error, .message.warning, .message.info, .message.success {
  padding: 13px 20px;
}
.message.error {
  color: #611a14;
  background-color: #fdeceb;
}
.message.error::before {
  content: "\f06a";
  color: #f6554a;
}
.message.error li::marker {
  color: #f6554a;
}
.message.warning {
  color: #704810;
  background-color: #fff4e5;
}
.message.warning::before {
  content: "\f071";
  color: #fea228;
}
.message.warning li::marker {
  color: #fea228;
}
.message.info {
  color: #0f3e62;
  background-color: #e9f4fd;
}
.message.info::before {
  content: "\f05a";
  color: #389ff4;
}
.message.info li::marker {
  color: #389ff4;
}
.message.success {
  color: #2c522e;
  background-color: #edf7ee;
}
.message.success::before {
  content: "\f058";
  color: #65bb6a;
}
.message.success li::marker {
  color: #65bb6a;
}
.message .message-content {
  margin: 0;
}
.message .message-content ul:only-child {
  margin: 0;
}
.message ul ul {
  margin: 0;
}

/* popup closed for business */
.store-closed {
  overflow: hidden;
}
.store-closed > .no-business-day {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.6);
}
.store-closed > .no-business-day .row {
  top: 50%;
  transform: translateY(-50%);
  position: relative;
}
.store-closed > .no-business-day .row > div {
  text-align: center;
}
.store-closed > .no-business-day .row > div > .group {
  float: none;
  display: inline-block;
  text-align: left;
  font-size: var(--biggerFontSize);
  line-height: 26px;
  overflow-x: hidden;
  overflow-y: auto;
}
.store-closed > .no-business-day .article {
  background-color: var(--defaultWhite);
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7058823529);
}
.store-closed > .no-business-day strong {
  font-weight: 600;
}
.store-closed > .no-business-day h2 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 25px;
}
.store-closed > .no-business-day h2 i,
.store-closed > .no-business-day h2 em,
.store-closed > .no-business-day h2 .fa-light.fa-store-alt-slash {
  display: block;
  margin: auto auto 20px auto;
  font-size: 50px;
  font-weight: 300;
}
.store-closed .article.mainSelector-wrap .selectors > .selector-wrap > .next-button,
.store-closed .article.mainSelector-wrap .summary > .mobile-footer,
.store-closed .article.mainSelector-wrap summary > .next-button > div[rel=button],
.store-closed .article.mainSelector-wrap .selectors > .selector-wrap > .next-button > div {
  display: none;
}
.store-closed .article.colorSample-wrap .summary > .content > .next-button {
  display: none;
}

.article {
  /* Podcast */
}
.article .carrousel-container > .scroller-holder > .direction-nav {
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: #464646;
}
.article .carrousel-container > .scroller-holder:hover > .direction-nav {
  opacity: 1;
}
.article .carrousel-container > .scroller-holder > .direction-nav::before {
  font-size: 22px;
  font-weight: 900;
  top: 0;
  line-height: 40px;
  color: var(--defaultWhite);
  -webkit-text-stroke-width: 0;
}
.article .podcast {
  padding-top: 30px;
}
.article .podcast iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 10px;
}

.socialMediaLinks-wrap {
  font-size: var(--defaultFontSize);
}
.socialMediaLinks-wrap a {
  color: inherit;
  border: 1px solid #ebeae9;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--shortTransition);
  transition-property: background-color, color, border-color;
}
.socialMediaLinks-wrap a:hover, .socialMediaLinks-wrap a:active:hover {
  background-color: #0199ff;
  color: var(--defaultWhite);
  border-color: #0199ff;
}
.socialMediaLinks-wrap a:active {
  color: inherit;
}
.socialMediaLinks-wrap button {
  background: none;
  padding: 0;
  border: 1px solid #ebeae9;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--shortTransition);
  transition-property: background-color, color, border-color;
}
.socialMediaLinks-wrap button:hover {
  background-color: #0199ff;
  color: var(--defaultWhite);
  border-color: #0199ff;
}

/* Only for grade PC */
@media (min-width: 1199.00001px) {
  .hide-grade-pc {
    display: none;
  }
}

/*# sourceMappingURL=default.css.map */