@charset "UTF-8";

:root {
  --navtop: 100px;
  --navtop-sticky: 70px;
}

.sc-meganav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10000;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-synthesis: none;
}

.sc-meganav--sticky {
  top: 0;
  background-color: #fff;
}

.sc-meganav--sticky::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: -1;
}

/* .sc-meganav--sticky .sc-meganav__logo-link,
.sc-meganav--sticky .sc-meganav__logo-link-priority {
	width: 110px
} */

/* .sc-meganav__logo-img {
	width: 115px;
	height: 40px
} */

.sc-meganav .sc-menu-visible {
  display: block;
}

.sc-meganav__logo-link,
.sc-meganav__logo-link-priority {
  background-position: left;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  z-index: 9;
  /* width: 130px;
	height: 51px; */
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.sc-meganav__container {
  width: 100%;
  max-width: 1404px;
  margin: 0 auto;
  padding: 16px 16px 0;
}

.sc-meganav__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 16px;
}

.sc-meganav__personal-head-mbl {
  font-size: 0.75rem;
  padding: 8px 16px;
  background-color: #f6f6f6;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
}

.sc-meganav__login-open-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.sc-meganav__no-scroll {
  overflow: hidden;
}

.sc-meganav__logo-drop {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sc-meganav__logo-drop img,
.sc-meganav__logo-drop svg {
  width: 100%;
  height: 100%;
}

.sc-meganav__logo-drop span {
  color: #525355;
}

.sc-meganav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0;
  background: 0 0;
  cursor: pointer;
}

.sc-meganav__account-btn {
  color: #525355;
  border: 1px solid #525355;
  padding: 0 24px;
  height: 35px;
  border-radius: 25px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc-meganav__account-btn:hover {
  background-color: transparent;
  color: #086ad7;
  border-color: #086ad7;
}

.sc-meganav__account-btn--show {
  background-color: #fff;
  color: #086ad7;
  border-color: #086ad7;
}

.sc-meganav__menu {
  padding: 24px 16px;
  font-size: 1rem;
  width: 100%;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #086ad7;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sc-meganav__menu:focus {
  outline-offset: -2px;
}

.sc-meganav__menu::before {
  content: "";
  width: calc(100% - 32px);
  height: 1px;
  background-color: rgba(170, 170, 170, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.sc-meganav__menu::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: 28px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  border-top: 1px solid #086ad7;
  border-right: 1px solid #086ad7;
}

.sc-meganav__menu span {
  font-size: 0.875rem;
  color: #666;
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 2px;
  padding-right: 32px;
}

.sc-meganav__menu--mbl::after {
  content: none;
}

.sc-meganav__menu--mbl-icon {
  width: 17px;
  height: 17px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sc-meganav__menu--mbl-icon svg {
  width: 100%;
  height: 100%;
}

.sc-meganav__menu-search svg {
  margin-left: 8px;
}

.sc-meganav__mbl-line {
  border-top: 1px solid #e1e1e1;
  margin: 32px 0;
}

.sc-meganav__lang-cunt {
  padding: 24px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-meganav__lang-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  margin-right: 4px;
}

.sc-meganav__lang-icon svg {
  width: 100%;
  height: 100%;
}

.sc-meganav__lang {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-meganav__lang-link {
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 8px;
  margin-right: 4px;
  color: #525355;
}

.sc-meganav__lang-link:first-child {
  margin-left: 4px;
}

.sc-meganav__lang-link--active {
  color: #086ad7 !important;
  font-weight: 600 !important;
}

.sc-meganav__country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-meganav__country-name {
  color: #525355;
  font-weight: 500;
  font-size: 0.75rem;
}

.sc-meganav__close-button,
.sc-meganav__login-close {
  width: 70px;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  -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;
  display: none;
  background-color: #eee;
  font-weight: 500;
  font-size: 0.75rem;
}

.sc-meganav__close-button svg,
.sc-meganav__login-close svg {
  width: 19px;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 4px;
  position: relative;
  top: 5px;
}

.sc-meganav__close-button.sc-menu-visible,
.sc-meganav__login-close.sc-menu-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sc-meganav__close-button.sc-menu-visible ~ .sc-meganav__hamburger,
.sc-meganav__close-button.sc-menu-visible ~ .sc-meganav__login-btn,
.sc-meganav__login-close.sc-menu-visible ~ .sc-meganav__hamburger,
.sc-meganav__login-close.sc-menu-visible ~ .sc-meganav__login-btn {
  display: none;
}

.sc-meganav__hamburger {
  padding: 16px 0;
  width: 70px;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sc-meganav__hamburger svg {
  width: 24px;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sc-meganav__close-button-text,
.sc-meganav__hamburger-text {
  color: #525355;
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

.sc-meganav__close-button-text {
  color: #086ad7;
}

.sc-meganav__logo {
  width: 90px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.sc-meganav__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.sc-meganav__login--full .sc-meganav-login-drop {
  margin-top: 0;
  border-radius: 0;
  width: 100%;
  left: 0;
  right: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-top: 1px solid #e5e5e5;
}

.sc-meganav__login--full .sc-meganav-login-drop::before {
  display: none;
}

.sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-drop__w-full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  position: fixed;
  overflow: auto;
}

.sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-drop__wrapper {
  padding: 0;
}

.sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-drop__col {
  margin: 24px 16px 100px;
}

.sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-drop__col-20 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-image-tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 45vh;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-image-tile__wrapper {
  width: 100%;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-image-tile__bg-image {
  border-radius: 4px;
  margin-bottom: 16px;
}

.sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-image-tile__title {
  color: #282828;
}

.sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-login-drop-lists {
  width: 100%;
  display: block;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-login-drop-lists
  .sc-meganav-login-drop__col-100 {
  width: 100%;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-login-drop-lists
  .sc-meganav-login-drop__col {
  width: 100%;
  display: inline-block;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-login-drop-lists
  .sc-meganav-login-drop__link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-bottom: 1px solid #dfdfdf;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: auto;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-login-drop-lists
  .sc-meganav-login-drop__link
  .sc-meganav__icon {
  margin-bottom: 0;
  display: block;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-login-drop-lists
  .sc-meganav-login-drop__link:hover {
  border-color: #dfdfdf;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-login-drop-lists
  .sc-meganav-login-drop__maintitle {
  font-weight: 500;
  color: #000;
  font-size: 0.875rem;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-login-drop-lists
  .sc-meganav-login-drop__desc-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 8px;
}

.sc-meganav__login--full
  .sc-meganav-login-drop
  .sc-meganav-login-drop-lists
  .sc-meganav-login-drop__desc {
  color: #6b6e73;
  font-size: 0.75rem;
  font-weight: 400;
}

.sc-meganav__btn-search-mbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #525355;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0 16px;
}

.sc-meganav__btn-search-mbl svg {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}

.sc-meganav__login-btn {
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #525355;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc-meganav__login-btn .sc-meganav__icon {
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 8px;
}

.sc-meganav__login-btn .sc-meganav__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sc-meganav__open-account {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 16px;
  position: relative;
}

/* stylelint-disable max-nesting-depth */
/* stylelint-enable max-nesting-depth */
.sc-meganav__open-account--hover:hover .sc-meganav__account-btn {
  background-color: #fff;
  color: #086ad7;
}

.sc-meganav__open-account--hover:hover .sc-meganav-account-dropdown {
  opacity: 1;
  z-index: 999;
  visibility: visible;
  height: auto;
  pointer-events: all;
}

.sc-meganav__mgnv-wrapper {
  display: none;
  position: fixed;
  top: 100px;
  top: var(--navtop);
  z-index: 99;
  right: 0;
  left: 0;
  background-color: #fff;
  padding-top: 50px;
  overflow: auto;
  height: calc(100% - 105px);
  padding-bottom: 40px;
}

.sc-meganav__mgnv-wrapper--show {
  display: block;
}

.sc-meganav__back {
  height: 50px;
  position: fixed;
  z-index: 2;
  top: 100px;
  top: var(--navtop);
  padding-left: 32px;
  font-size: 0.875rem;
  background-color: #eee;
  width: 100%;
  color: #086ad7;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
}

.sc-meganav__back::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-left: 2px solid #086ad7;
  border-bottom: 2px solid #086ad7;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sc-meganav__list {
  height: 100%;
  display: none;
}

.sc-meganav__top {
  background-color: #f6f6f6;
  height: 30px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc-meganav__top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  height: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}

.sc-meganav__personal-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sc-meganav__personal-lists::-webkit-scrollbar {
  display: none;
}

.sc-meganav__personal-box-link {
  text-transform: capitalize;
  color: #525355;
  font-weight: 400;
  font-size: 0.875rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 32px;
  white-space: nowrap;
}

.sc-meganav__personal-box-link--active {
  font-weight: 500;
  position: relative;
}

.sc-meganav__personal-box-link--active::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background-color: #086ad7;
  bottom: 0;
  left: 0;
}

.sc-meganav__personal-box-link:hover {
  position: relative;
}

.sc-meganav__personal-box-link:hover::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background-color: #086ad7;
  bottom: 0;
  left: 0;
}

.sc-meganav__top-menu,
.sc-meganav__top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-meganav__top-right {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0 16px;
  margin-bottom: 24px;
  margin-top: 8px;
}

.sc-meganav__top-right--is-chatbot {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.sc-meganav__top-right--is-chatbot .sc-meganav__lang {
  margin-top: 16px;
}

.sc-meganav__flag {
  position: relative;
  z-index: 1;
  margin-right: 8px;
  display: inline-block;
}

.sc-meganav__country-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  height: 30px;
  padding: 0 16px 0 0;
  background-color: transparent;
  border: 0;
}

.sc-meganav__country-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 13px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='28' height='16' viewBox='0 0 28 16'%3E%3Cpath fill='%230967a1' d='M28 2.667l-13.333 13.333h-1.333l-13.333-13.333 2.476-2.667 11.429 11.429 11.429-11.429 2.667 2.667z'%3E%3C/path%3E%3C/svg%3E");
}

.sc-meganav__personal-p-title {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #000;
}

.sc-meganav__personal-p-desc {
  font-size: 0.75rem;
  margin: 0;
  color: #555;
}

.sc-meganav__top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin-right: -8px;
}

.sc-meganav__top-item {
  font-size: 0.875rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc-meganav__top-item:hover {
  background-color: #fafafa;
}

.sc-meganav__top-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #525355;
  font-weight: 500;
  font-size: 0.75rem;
  height: 100%;
}

.sc-meganav__top-item-icon {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 4px;
}

.sc-meganav__top-item-icon svg {
  width: 100%;
  height: 100%;
}

.sc-meganav__line {
  border-bottom: 1px solid #e1e1e1;
  margin: 8px 0;
  display: block;
}

.sc-meganav__line ~ .sc-meganav__item .sc-meganav__menu::after {
  content: none;
}

.sc-meganav__country-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  padding: 8px;
  color: #000;
  font-weight: 400;
}

.sc-meganav__country-link:hover {
  color: #1f8845;
}

.sc-meganav__priority-drop {
  position: relative;
}

.sc-meganav__priority-drop .sc-meganav__top-btn {
  padding: 0 !important;
  width: auto;
  position: relative;
  z-index: 99;
  text-align: left;
}

.sc-meganav__priority-drop .sc-meganav__top-btn::after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #086ad7;
  border-right: 1px solid #086ad7;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: static;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.sc-meganav__priority-drop .sc-meganav__menu::before {
  content: none;
}

.sc-meganav__priority-drop .sc-meganav__priority-drop-btn-wrap {
  padding: 24px 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-meganav__priority-drop .sc-meganav__priority-drop-btn-wrap::before {
  content: "";
  width: calc(100% - 32px);
  height: 1px;
  background-color: rgba(170, 170, 170, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.sc-meganav__priority-drop .sc-meganav__personal-list {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: auto;
  padding: 70px 0 0;
  overflow: auto;
  top: 0;
  right: -50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 2px 6px 9px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 6px 9px 0 rgba(0, 0, 0, 0.1);
  display: block;
  z-index: 10;
  border: 0;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
}

.sc-meganav__priority-drop .sc-meganav__personal-list.sc-menu-visible {
  visibility: visible;
  opacity: 1;
  height: calc(100vh - 100px);
}

.sc-meganav__priority-drop .sc-meganav__personal-list--show {
  visibility: visible;
  opacity: 1;
}

.sc-meganav__priority-drop
  .sc-meganav__personal-list--show
  .sc-meganav__personal-list {
  visibility: visible;
  opacity: 1;
}

.sc-meganav__priority-drop
  .sc-meganav__personal-list--show
  .sc-meganav__you-are {
  opacity: 0;
}

.sc-meganav__priority-drop
  .sc-meganav__personal-list--show
  .sc-meganav__top-btn {
  color: #086ad7;
}

.sc-meganav__priority-drop
  .sc-meganav__personal-list--show
  .sc-meganav__top-btn::after {
  border-color: #086ad7;
}

.sc-meganav__priority-drop .sc-meganav__personal-box {
  border-bottom: 1px solid rgba(170, 170, 170, 0.2);
}

.sc-meganav__priority-drop .sc-meganav__personal-box:last-child {
  border: 0;
}

.sc-meganav__priority-drop .sc-meganav__personal-box-link {
  text-transform: capitalize;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0;
  padding: 24px 16px;
  color: #525355;
}

.sc-meganav__priority-drop .sc-meganav__personal-box-link:hover {
  background-color: #f7fbff;
}

.sc-meganav__priority-drop .sc-meganav__you-are {
  color: #525355;
  font-size: 0.75rem;
  display: inline;
  font-weight: 400;
  margin-right: 4px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  z-index: 20;
}

.sc-meganav__priority-drop .sc-meganav__personal-lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
}

.sc-meganav--dark {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#1f282e),
    color-stop(130.78%, #4f595d)
  );
  background: linear-gradient(90deg, #1f282e 0, #4f595d 130.78%);
}

.sc-meganav--dark::before {
  display: none;
}

.sc-meganav--dark .sc-meganav__btn-search-mbl,
.sc-meganav--dark .sc-meganav__hamburger-text,
.sc-meganav--dark .sc-meganav__login-btn {
  color: #fff;
}

.sc-meganav--dark .sc-meganav__top {
  background-color: #20292f;
}

.sc-meganav--dark .sc-meganav__top-item a {
  color: #fff;
}

.sc-meganav--dark .sc-meganav__personal-box-link {
  color: #fff;
}

.sc-meganav--dark .sc-meganav__personal-box-link:hover::after {
  background-color: #fff;
}

.sc-meganav--dark .sc-meganav__personal-box-link--active::after {
  background-color: #fff;
}

.sc-meganav .sc-modal {
  background-color: transparent;
}

.sc-meganav .sc-modal::before {
  content: none;
}

.sc-meganav .sc-modal__content {
  padding: 0;
}

.sc-meganav .sc-modal__close {
  position: fixed;
  top: 106px;
  left: 0;
  z-index: 100;
  width: auto;
}

.sc-meganav .sc-modal__close::after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: none;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.sc-meganav .sc-modal__close svg {
  width: 100%;
  height: auto;
}

.sc-meganav .sc-modal--show {
  display: block;
}

.sc-meganav .sc-modal__close-button {
  width: 30px;
  height: 30px;
  float: right;
  position: relative;
  z-index: 3;
  right: 0;
  top: 0;
  background-color: transparent;
  border: 0;
}

.sc-meganav .sc-modal__close-button:hover {
  cursor: pointer;
}

.sc-meganav .sc-country {
  position: fixed;
  top: 79px;
  display: block;
  height: 100%;
  width: 100%;
  padding-top: 0;
  left: 0;
  background: #fff;
  overflow: hidden;
}

.sc-meganav .sc-country__icon {
  position: absolute;
  top: 6px;
  right: 10px;
}

.sc-meganav .sc-country__icon svg {
  width: 25px;
  height: 25px;
}

.sc-meganav .sc-country__icon svg path {
  fill: #d4d4d4;
}

.sc-meganav .sc-country__search-box {
  width: 100%;
  height: 65px;
  z-index: 2;
  background-color: #fafafa;
  display: block;
  padding: 0 24px;
  border-bottom: 1px solid #e1e1e1;
  position: static;
}

.sc-meganav .sc-country__input[type="text"] {
  height: 37px;
  border: 0;
  width: 100%;
  padding-right: 40px;
  font-size: 0.875rem;
  padding-left: 16px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.sc-meganav .sc-country__input[type="text"]:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.sc-meganav .sc-country__wrapper {
  margin: 0 0 0 32px;
  border: 1px solid #e1e1e1;
  width: calc(100% - 55px);
  height: 40px;
  position: relative;
  top: 12px;
  display: block;
  background-color: #fff;
}

.sc-meganav .sc-country__list {
  padding: 0;
  height: calc(100% - 148px);
  overflow-y: scroll;
}

.sc-meganav .sc-country__list-items {
  list-style: none;
  max-height: 100%;
  padding: 0;
}

.sc-meganav .sc-country__list-item {
  list-style: none;
  border-bottom: 1px solid #e1e1e1;
  padding: 8px 16px;
}

.sc-meganav .sc-country__country-link {
  padding: 4px 0;
  color: #000;
  display: block;
  font-size: 0.875rem;
}

.sc-meganav .sc-country__country-link:hover {
  color: #1f8845;
}

.sc-meganav .sc-country__close {
  display: none;
}

.sc-meganav .sc-btn--secondary-blue {
  background-color: transparent;
  min-height: 40px;
  text-transform: capitalize;
  font-weight: 500;
}

.sc-meganav .sc-btn--secondary-blue:hover {
  border-color: #086ad7;
  color: #086ad7;
  background-color: #e7f1fd;
}

.sc-meganav-drop {
  display: block;
  min-height: auto;
}

.sc-meganav-drop__btn {
  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;
  height: 45px;
  text-align: center;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 8px 16px;
  width: 100%;
  background-color: #f6f6f6;
  margin-top: 24px;
  color: #086ad7;
}

.sc-meganav-drop__btn:hover {
  cursor: pointer;
  color: #525355;
  -webkit-text-decoration-color: #525355;
  text-decoration-color: #525355;
}

.sc-meganav-drop__btn.only-mobile {
  background-color: transparent;
  height: auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0;
  padding: 32px 0;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.sc-meganav-drop__tiles-col {
  margin-bottom: 16px;
  width: 100%;
}

.sc-meganav-drop__tiles-col--mt-0 {
  margin-top: 0;
}

.sc-meganav-drop__font-weight {
  font-weight: 600;
}

.sc-meganav-drop__w-full {
  width: 100%;
}

.sc-meganav-drop__w-full ~ .sc-meganav-drop__w-full {
  margin-top: 40px;
}

.sc-meganav-drop__col-item-link {
  display: inherit;
}

.sc-meganav-drop__col-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #858687;
  position: relative;
  display: inline-block;
  text-align: left;
  margin-bottom: 16px;
  margin-top: 32px;
}

.sc-meganav-drop__col-label:first-of-type {
  margin-top: 0;
}

.sc-meganav-drop__desc {
  font-size: 0.75rem;
  color: #6b6e73;
  font-weight: 400;
}

.sc-meganav-drop__link {
  display: block;
  padding: 0 16px 8px 0;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0;
}

.sc-meganav-drop__content {
  background: #fff;
  width: 100%;
}

.sc-meganav-drop__promo-title {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
  max-height: 40px;
  overflow: hidden;
  margin-bottom: 8px;
}

.sc-meganav-drop__promo-title:lang(zh-CN),
.sc-meganav-drop__promo-title:lang(zh-HK),
.sc-meganav-drop__promo-title:lang(zh-TW) {
  font-weight: 600;
}

.sc-meganav-drop__col-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

.sc-meganav-drop__col-item:last-child {
  margin-bottom: 0;
}

.sc-meganav-drop__col-item--mb-0 {
  margin-bottom: 0;
}

.sc-meganav-drop__img {
  display: block;
  width: 90px;
  margin-right: 16px;
  height: 55px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: #fafafa;
}

.sc-meganav-drop__promo-desc {
  font-size: 0.875rem;
  color: #000;
  margin-bottom: 0;
  height: 40px;
  overflow: hidden;
}

.sc-meganav-drop__col {
  margin-top: 24px;
}

.sc-meganav-drop__col .sc-meganav-drop__col-label {
  width: 100%;
}

.sc-meganav-drop__col-text {
  width: 100%;
}

.sc-meganav-drop__col-text a {
  display: inline-block;
  color: #525355;
}

.sc-meganav-drop__col-text a:hover .sc-meganav-drop__link {
  color: #086ad7;
}

.sc-meganav-drop__col-text a:hover .sc-meganav-drop__link::before {
  width: 100%;
}

.sc-meganav-drop__col-spacing {
  margin-top: -16px;
  display: block;
}

.sc-meganav-drop__mt {
  margin-top: 40px;
}

.sc-meganav-drop__small-tiles {
  width: calc(100% + 8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sc-meganav-drop__small-tiles > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 calc(50% - 16px);
  flex: 1 0 calc(50% - 16px);
  margin-bottom: 8px;
  margin-right: 8px;
}

.sc-meganav-login-drop {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #eee;
  top: 100px;
  top: var(--navtop);
  left: 0;
  display: none;
  z-index: 99;
}

.sc-meganav-login-drop--show {
  display: block;
}

.sc-meganav-login-drop__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px;
  height: 70px;
}

.sc-meganav-login-drop__title {
  background: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #086ad7;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
}

.sc-meganav-login-drop li {
  border-bottom: 1px solid rgba(170, 170, 170, 0.2);
}

.sc-meganav-login-drop li:last-child {
  border: 0;
}

.sc-meganav-login-drop__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  height: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #525355;
}

.sc-meganav-login-drop__link:hover {
  background-color: #f7fbff;
  color: #086ad7;
}

.sc-meganav-login-drop__link .sc-meganav__icon {
  width: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 24px;
  margin-right: 8px;
}

.sc-meganav-login-drop__link .sc-meganav__icon svg {
  width: 100%;
  height: 100%;
}

.sc-meganav-product-tile {
  line-height: 1.4;
  min-height: 100px;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  background: #f4f4f4;
  z-index: 1;
  border-radius: 6px;
  padding: 16px;
  border: 1px solid transparent;
  overflow: hidden;
  -webkit-transition: border 0.3s ease, padding 0.1s ease;
  transition: border 0.3s ease, padding 0.1s ease;
  color: #525355;
}

.sc-meganav-product-tile .sc-badge {
  position: absolute;
  right: 0;
  top: 0;
}

.sc-meganav-product-tile .sc-badge::before {
  content: none;
}

.sc-meganav-product-tile .sc-badge__text {
  font-size: 0.75rem;
  font-weight: 400;
  -webkit-transition: font-size 0.4s ease;
  transition: font-size 0.4s ease;
  border-radius: 0 0 0 8px;
  color: #212121;
}

/* stylelint-disable max-nesting-depth */
.sc-meganav-product-tile .sc-badge--gradient-black .sc-badge__text {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#1f282e),
    color-stop(130.78%, #4f595d)
  );
  background: linear-gradient(90deg, #1f282e 0, #4f595d 130.78%);
  color: #fff;
}

/* stylelint-enable max-nesting-depth */
.sc-meganav-product-tile .sc-badge--gradient .sc-badge__text {
  background: radial-gradient(
    160.26% 1130.34% at -36.81% -60.26%,
    #d6ffc7 0,
    #c8e2ff 100%
  );
}

.sc-meganav-product-tile__icon {
  width: 24px;
  height: 24px;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease, margin-top 0.3s ease;
  transition: opacity 0.3s ease, margin-top 0.3s ease;
  margin-bottom: 4px;
}

.sc-meganav-product-tile__icon svg {
  width: 100%;
  height: 100%;
}

.sc-meganav-product-tile__title {
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: font-size 0.3s ease;
  transition: font-size 0.3s ease;
  color: #525355;
  margin-bottom: 8px;
}

.sc-meganav-product-tile__content-wrapper {
  margin: 16px 0;
}

.sc-meganav-product-tile__value {
  font-size: 0.75rem;
  font-weight: 500;
  color: #238500;
}

.sc-meganav-product-tile__value strong {
  font-size: 1.125rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sc-meganav-product-tile__value span {
  display: block;
  color: #525355;
}

.sc-meganav-product-tile__hover-item {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 8px;
  font-size: 0.688rem;
}

.sc-meganav-product-tile__hover-item ul {
  list-style-type: disc;
  padding-left: 16px;
  font-weight: 400;
}

.sc-meganav-product-tile__hover-item ul li {
  margin-bottom: 4px;
}

.sc-meganav-product-tile__hover-image {
  width: 80px;
  height: auto;
  border-radius: 6px;
}

.sc-meganav-product-tile__desc {
  font-size: 0.75rem;
  font-weight: 400;
  color: #525355;
}

.sc-meganav-product-tile__info {
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-meganav-product-tile__info-content {
  width: 100%;
  font-size: 0.688rem;
  font-weight: 400;
  color: #525355;
}

.sc-meganav-product-tile__info-content strong {
  font-weight: 500;
  color: #238500;
}

.sc-meganav-product-tile__list {
  width: 100%;
  font-size: 0.688rem;
  font-weight: 400;
  color: #525355;
}

.sc-meganav-product-tile__list ul {
  list-style-type: disc;
  padding-left: 12px;
}

.sc-meganav-product-tile__list ul li {
  margin-bottom: 4px;
}

.sc-meganav-product-tile--hover:hover {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(255, 255, 255, 0.6)),
      to(rgba(255, 255, 255, 0.6))
    ),
    radial-gradient(
      160.26% 1130.34% at -36.81% -60.26%,
      #d6ffc7 0,
      #c8e2ff 100%
    );
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    radial-gradient(
      160.26% 1130.34% at -36.81% -60.26%,
      #d6ffc7 0,
      #c8e2ff 100%
    );
  border: 1px solid #7bb6f5;
}

/* stylelint-disable max-nesting-depth */
/* stylelint-enable max-nesting-depth */
.sc-meganav-product-tile--hover:hover .sc-badge--gradient .sc-badge__text {
  background: linear-gradient(140.79deg, #00a647 -32.2%, #3669f2 100.05%);
  color: #fff;
}

.sc-meganav-product-tile .sc-btn {
  font-size: 0.75rem;
  min-height: 40px;
  background-color: transparent;
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 16px;
  min-width: auto;
}

.sc-meganav-product-tile .sc-btn:hover {
  border-color: #086ad7;
  color: #086ad7;
  background-color: #e7f1fd;
}

.sc-meganav-image-tile {
  line-height: 1.4;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: radial-gradient(
    160.26% 1130.34% at -36.81% -60.26%,
    #d6ffc7 0,
    #c8e2ff 100%
  );
  min-height: 150px;
  margin-left: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-meganav-image-tile:hover .sc-meganav-image-tile__button svg {
  left: 5px;
}

.sc-meganav-image-tile ~ .sc-meganav-image-tile {
  margin-top: 16px;
}

.sc-meganav-image-tile__bg-image {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right bottom;
  object-position: right bottom;
}

.sc-meganav-image-tile__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.sc-meganav-image-tile__content {
  width: 70%;
  padding: 16px 8px 16px 16px;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sc-meganav-image-tile__image {
  width: 100%;
  max-width: 80px;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sc-meganav-image-tile__image img {
  width: 100%;
  height: auto;
  max-width: 80px;
}

.sc-meganav-image-tile__image svg {
  width: 100%;
  height: auto;
}

.sc-meganav-image-tile__image--bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.sc-meganav-image-tile__image--padding {
  padding-right: 8px;
}

.sc-meganav-image-tile__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #525355;
}

.sc-meganav-image-tile__desc {
  font-size: 0.75rem;
  font-weight: 400;
  color: #525355;
  overflow: hidden;
  text-overflow: clip;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 6px;
}

.sc-meganav-image-tile__button {
  font-size: 0.75rem;
  font-weight: 500;
  color: #086ad7;
  margin-top: 8px;
  white-space: nowrap;
}

.sc-meganav-image-tile__button svg {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  position: relative;
  top: 4px;
  left: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.sc-meganav-image-tile__ml-0 {
  margin-left: 0;
}

.sc-meganav-image-tile--separate {
  display: block;
  background: 0 0;
  border-radius: 0;
}

.sc-meganav-image-tile--separate .sc-meganav-image-tile__bg-image {
  position: relative;
}

.sc-meganav-image-tile--separate .sc-meganav-image-tile__content {
  width: 100%;
  padding: 0;
}

.sc-meganav-tile-small {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 65px;
  max-width: 800px;
  background-color: #f4f4f4;
  width: 100%;
  padding: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc-meganav-tile-small__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-filter: brightness(0.7);
  filter: brightness(0.7);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc-meganav-tile-small__bg ~ .sc-meganav-tile-small__text {
  color: #fff;
}

.sc-meganav-tile-small__text {
  font-size: 0.688rem;
  font-weight: 500;
  color: #525355;
  z-index: 2;
  position: relative;
}

.sc-meganav-tile-small:hover {
  background-color: #d6ffc7;
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(255, 255, 255, 0.6)),
      to(rgba(255, 255, 255, 0.6))
    ),
    radial-gradient(
      160.26% 1130.34% at -36.81% -60.26%,
      #d6ffc7 0,
      #c8e2ff 100%
    );
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    radial-gradient(
      160.26% 1130.34% at -36.81% -60.26%,
      #d6ffc7 0,
      #c8e2ff 100%
    );
}

.sc-meganav-tile-small:hover .sc-meganav-tile-small__bg {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}

.sc-meganav-account-dropdown {
  padding: 24px;
  line-height: 1.4;
  position: absolute;
  right: -230px;
  top: 60%;
  margin-top: 28px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: -2;
  -webkit-box-shadow: 0 7px 20px 7px rgba(0, 0, 0, 0.18);
  box-shadow: 0 7px 20px 7px rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  width: 600px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.sc-meganav-account-dropdown::before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 20px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='7' viewBox='0 0 15 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 0L15 7H0L7.5 0Z' fill='white'/%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
}

.sc-meganav-account-dropdown--show {
  opacity: 1;
  z-index: 999;
  visibility: visible;
  height: auto;
  pointer-events: all;
}

.sc-meganav-account-dropdown__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sc-meganav-account-dropdown__btn {
  width: 100%;
  padding: 8px;
  border: 1px solid #333;
  border-radius: 6px;
  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;
  margin-right: 8px;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.sc-meganav-account-dropdown__btn:last-of-type {
  margin-right: 0;
}

.sc-meganav-account-dropdown__btn--active {
  border: 1px solid #086ad7;
}

.sc-meganav-account-dropdown__btn--active .sc-meganav-account-dropdown {
  pointer-events: all;
}

.sc-meganav-account-dropdown__btn--active
  .sc-meganav-account-dropdown__btn-icon
  svg
  path {
  fill: #1586ff;
}

.sc-meganav-account-dropdown__btn--active
  .sc-meganav-account-dropdown__btn-text {
  color: #086ad7;
}

.sc-meganav-account-dropdown__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sc-meganav-account-dropdown__btn-icon svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #e1e1e1;
}

.sc-meganav-account-dropdown__btn-text {
  margin-left: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sc-meganav-account-dropdown__top {
  margin: 16px 0;
}

.sc-meganav-account-dropdown__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-meganav-account-dropdown__title {
  font-size: 1.125rem;
  font-weight: 500;
  background: linear-gradient(119.35deg, #0080db 45.11%, #00a647 91.08%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.sc-meganav-account-dropdown__desc {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
}

.sc-meganav-account-dropdown__image {
  width: 100%;
  max-width: 280px;
  height: auto;
  padding-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sc-meganav-account-dropdown__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.sc-meganav-account-dropdown__content {
  width: 100%;
}

.sc-meganav-account-dropdown__content-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f8845;
}

.sc-meganav-account-dropdown__content-desc {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 400;
}

.sc-meganav-account-dropdown__list {
  list-style: url('data:image/svg+xml,<svg width="13" height="9" viewBox="0 0 13 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.793 0.55957L4.79297 7.55926L1.29297 4.05957" stroke="%231F8845" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  padding-left: 16px;
}

.sc-meganav-account-dropdown__item {
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 400;
}

.sc-meganav-account-dropdown .sc-btn {
  border: 2px solid #086ad7;
  background-color: #086ad7;
}

.sc-meganav-account-dropdown .sc-btn:hover {
  background-color: #1586ff;
  border-color: #1586ff;
}

.sc-tab-focus .sc-meganav__menu:focus,
.sc-tab-focus .sc-meganav__personal-box-link:focus,
.sc-tab-focus .sc-meganav__top-item a:focus {
  outline-offset: -2px;
}

.sc-tab-focus .sc-meganav__priority-drop .sc-meganav__personal-box-link:focus {
  outline-color: #086ad7;
}

[data-modal-id] {
  display: none;
}

.sc-footer {
  background: #191919;
  line-height: 1.4;
  padding-bottom: 40px;
}

.sc-footer__top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sc-footer__country {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-footer__country-name {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.sc-footer__flag {
  width: 20px;
  height: auto;
  margin-right: 8px;
}

.sc-footer__logo {
  width: 112px;
  height: 44px;
}

.sc-footer__logo svg {
  width: 100%;
  height: 100%;
}

.sc-footer__label {
  padding: 16px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sc-footer__label::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  background: url('data:image/svg+xml,<svg width="10" xmlns="http://www.w3.org/2000/svg" viewBox="-10 13.2 14.7 8.4"><style type="text/css">.st0{fill:%23D5D5D5;}</style><path class="st0" d="M4.7 14.6l-7 7H-3l-7-7 1.3-1.4 6 6 6-6L4.7 14.6z"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sc-footer__content-wrapper {
  margin: 24px 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sc-footer__list {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}

.sc-footer__item-link {
  font-size: 0.75rem;
  padding: 12px 0;
  color: #fafafa;
  font-weight: 300;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.sc-footer__item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  background-color: #fff;
  height: 1px;
  display: inline-block;
  width: 0;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}

.sc-footer__item-link:hover::after {
  width: 100%;
}

.sc-footer__list-container {
  width: 100%;
}

.sc-footer__list-container:nth-last-child(2) > .sc-footer__label {
  border-bottom: 0;
}

.sc-footer__input {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
}

.sc-footer__input:checked ~ .sc-footer__list {
  max-height: 1000px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sc-footer__input:checked ~ .sc-footer__label {
  border-bottom: 0;
}

.sc-footer__input:checked ~ .sc-footer__label::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sc-footer__apps {
  margin: 40px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sc-footer__apps-text {
  display: none;
}

.sc-footer__apps-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sc-footer__apps-icon {
  width: 140px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid #b7b7b7;
  border-radius: 10px;
  padding: 4px 8px;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.sc-footer__apps-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.sc-footer__apps-icon svg {
  width: 100%;
  height: 100%;
}

.sc-footer__apps-text,
.sc-footer__social-text {
  font-size: 0.75rem;
  font-weight: 300;
  color: #fafafa;
  margin-bottom: 16px;
}

.sc-footer__social {
  margin: 0 0 24px;
}

.sc-footer__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.sc-footer__social-item {
  margin-right: 12px;
}

.sc-footer__social-item:last-child {
  margin-right: 0;
}

.sc-footer__social-icon {
  width: 50px;
  height: 50px;
  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;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc-footer__social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.sc-footer__social-icon svg {
  width: 20px;
  height: 20px;
}

.sc-footer__social-icon svg path {
  fill: #fff;
}

.sc-footer__bottom-copy {
  font-size: 0.875rem;
  color: #fafafa;
  font-weight: 400;
  max-width: 250px;
}

.sc-footer__lang-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.sc-footer__lang-btn {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding-bottom: 8px;
  position: relative;
  margin-right: 70px;
}

.sc-footer__lang-btn::after {
  content: "";
  border-right: 1px solid #fff;
  position: relative;
  left: 35px;
}

.sc-footer__lang-btn:last-child {
  margin-right: 0;
}

.sc-footer__lang-btn:last-child::after {
  content: none;
}

.sc-footer__lang-btn--active {
  border-bottom: 1px solid #fff;
}

.sc-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.sc-footer__back-to-top {
  position: fixed;
  z-index: 9999;
  bottom: -100px;
  right: 28px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #fff;
  border: 1px solid #191919;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='20' viewBox='0 0 16 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8L8 1M8 1L15 8M8 1L8 19' stroke='%23292B22' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  -webkit-transition: bottom 0.6s ease-in-out, background-size 0.2s ease-in-out;
  transition: bottom 0.6s ease-in-out, background-size 0.2s ease-in-out;
}

.sc-footer__back-to-top:hover {
  background-size: 13px;
}

.sc-footer__back-to-top--show {
  bottom: 20px;
}

.sc-disclaimer {
  padding: 32px 0;
}

.sc-disclaimer .sc-description strong {
  font-weight: 500;
  color: #0c3a66;
  font-size: 1rem;
}

.sc-disclaimer .sc-external-link-button {
  margin-top: 16px;
}

.sc-disclaimer--toggle .sc-disclaimer__toggle {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

.sc-disclaimer--toggle
  .sc-disclaimer__toggle:checked
  + .sc-disclaimer__content-mask {
  height: auto;
  max-height: 2000px;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}

.sc-disclaimer--toggle
  .sc-disclaimer__toggle:checked
  + .sc-disclaimer__content-mask::after {
  content: none;
}

.sc-disclaimer--toggle
  .sc-disclaimer__toggle:checked
  ~ .sc-disclaimer__toggle-trigger
  .sc-disclaimer__read-more {
  display: none;
}

.sc-disclaimer--toggle
  .sc-disclaimer__toggle:checked
  ~ .sc-disclaimer__toggle-trigger
  .sc-disclaimer__read-less {
  display: inline-block;
  background: #fff
    url('data:image/svg+xml,<svg width="162" height="165" viewBox="0 0 162 165" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_0_3)"><path d="M156 159L81 84L6 159" stroke="%237C7E82" stroke-width="12" stroke-linecap="round"/><path d="M156 84L81 9L6 84" stroke="%237C7E82" stroke-width="12" stroke-linecap="round"/></g><defs><clipPath id="clip0_0_3"><rect width="162" height="165" fill="white"/></clipPath></defs></svg>');
  background-position: 87% center;
  background-size: 12px;
  background-repeat: no-repeat;
}

.sc-disclaimer--toggle .sc-disclaimer__toggle ~ .sc-disclaimer__content-mask {
  max-height: 180px;
  position: relative;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

.sc-disclaimer--toggle
  .sc-disclaimer__toggle
  ~ .sc-disclaimer__content-mask::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 70px;
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  display: block;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, rgba(255, 255, 255, 0)),
    color-stop(15%, rgba(255, 255, 255, 0)),
    color-stop(38%, rgba(255, 255, 255, 0.61)),
    color-stop(57%, rgba(255, 255, 255, 0.83)),
    to(#fff)
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0) 15%,
    rgba(255, 255, 255, 0.61) 38%,
    rgba(255, 255, 255, 0.83) 57%,
    #fff 100%
  );
}

.sc-disclaimer--toggle .sc-disclaimer__toggle-trigger {
  display: block;
  position: relative;
  text-align: center;
}

.sc-disclaimer--toggle .sc-disclaimer__toggle-trigger::after {
  content: "";
  display: inline-block;
  background-color: #e1e1e1;
  height: 1px;
  left: 0;
  position: absolute;
  top: 18px;
  z-index: 1;
  width: 100%;
  margin-right: 40px;
  vertical-align: middle;
}

.sc-disclaimer--toggle .sc-disclaimer__read {
  color: #6b6e73;
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
  padding: 8px 40px 8px 16px;
  margin: 0 auto;
  background: #fff
    url('data:image/svg+xml,<svg width="162" height="165" viewBox="0 0 162 165" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 6L81 81L156 6" stroke="%237C7E82" stroke-width="12" stroke-linecap="round"/><path d="M6 81L81 156L156 81" stroke="%237C7E82" stroke-width="12" stroke-linecap="round"/></svg>');
  background-position: 87% center;
  background-size: 12px;
  background-repeat: no-repeat;
}

.sc-disclaimer--toggle .sc-disclaimer__read-more {
  display: inline-block;
}

.sc-disclaimer--toggle .sc-disclaimer__read-less {
  display: none;
}

.sc-disclaimer__content-mask {
  font-size: 0.875rem;
}

@media (min-width: 1247px) {
  .sc-meganav-drop__border-right {
    border-right: 1px solid #e1e1e1;
    width: 100%;
  }
}

.custmflex {
  display: flex;
  width: 100% !important;
}
ul.city {
  min-width: 25%;
}

ul.city li a {
  background-color: transparent;
  font-size: 14px;
  color: #000;
  padding: 10px 15px;
  border-bottom: 1px solid rgb(194, 194, 194);
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
}
ul.city li a:hover {
  background-color: #086ad7;
  color: #fff;
}

ul.city li a.active {
  background-color: #086ad7;
  font-size: 14px;
  color: #fff;
  padding: 10px 15px;
  border-bottom: 1px solid rgb(194, 194, 194);
  display: flex;
  justify-content: space-between;
}

ul.imge_with {
  border-right: 1px solid #c2c2c2;
  min-width: 25%;
  padding: 0 30px;
}
ul.imge_with:last-child {
  border-right: 0;
}
ul.imge_with.last {
  border-right: 0;
}

ul.imge_with li {
  padding-bottom: 10px;
}

ul.imge_with li a {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 0;
  padding: 0 5px;
}
ul.imge_with li a .imge {
  min-width: 83px;
  height: 61px;
  border-radius: 8px;
}
ul.imge_with li a .imge img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
ul.imge_with li a .cap {
  padding-left: 10px;
}
ul.imge_with li a .cap h6 {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-bottom: 5px;
  text-transform: capitalize;
}
ul.imge_with li a .cap p {
  color: #000000;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  letter-spacing: 0.15px;
  font-size: 10px;
  line-height: 18px;
}
ul.imge_with li a:hover {
  background-color: transparent;
}

ul.card_mega {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.card_mega li {
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  background: #fff;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.25);
  width: 18%;
}

ul.card_mega li a {
  background-color: transparent;
  border: 0;
  flex-direction: column;
  padding: 0;
}
ul.card_mega li a .imgbox {
  height: 134px;
}
ul.card_mega li a .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
ul.card_mega li a .cap {
  padding: 20px 10px;
}
ul.card_mega li a .cap h6 {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 5px;
}
ul.card_mega li a .cap p {
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
ul.card_mega li:nth-child(5) {
  margin-right: 0;
}

ul.route {
  border-right: 1px solid #c2c2c2;
  padding: 0 60px;
  width: 100%;
  padding-bottom: 30px;
}
ul.route:last-child {
  border-right: 0px solid transparent;
}
ul.route li {
  padding-bottom: 10px;
}
ul.route li a {
  background-color: transparent;
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: left;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  border: 0;
  padding: 0px 10px;
  color: #000;
}
ul.route li a i {
  margin: 0 10px;
  border-radius: 4px;
  background: #eaeaea;
  padding: 5px 5px;
  color: #086ad7;
}
ul.route li a span {
  width: 100px;
}
ul.route li a:hover {
  color: #000000;
}
ul.route.br0ul {
  border: 0;
}
.sc-meganav-drop__btn {
  margin-top: 10px;
}
.sc-meganav-drop__view-all {
  margin-top: 10px;
}

.w100flex {
  display: flex;
}

.sc-meganav__menu:hover {
  color: #086ad7;
}
.sc-meganav__item--has-meganav:hover .sc-meganav__menu {
  color: #086ad7 !important;
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide.focus-visible {
    border: 3px solid #0bf;
  }

  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

@media (min-width: 680px) {
  .sc-content-wrapper {
    padding: 0 32px;
  }

  .sc-inline-buttons__item {
    margin: 0 16px 16px 0;
  }

  .sc-rte table {
    word-break: normal;
  }

  .sc-rte td,
  .sc-rte th {
    padding: 12px;
  }

  .sc-meganav-drop__tiles-col {
    margin: 0 8px 16px 8px;
  }

  .sc-meganav-drop__col-item {
    margin: 0 8px 16px 8px;
  }

  .sc-meganav-drop__col-list {
    margin-left: -8px;
    margin-right: -8px;
  }

  .sc-meganav-drop__tiles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
  }

  .sc-meganav-drop__tiles--2 > * {
    width: calc(50% - 16px);
  }

  .sc-meganav-drop__tiles--3 > * {
    width: calc(33.33% - 16px);
  }

  .sc-meganav-drop__tiles--4 > * {
    width: calc(50% - 16px);
  }

  .sc-meganav-drop__small-tiles > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(25% - 16px);
    flex: 1 0 calc(25% - 16px);
  }
}

@media (min-width: 1024px) {
  .only-mobile,
  .sc-only-mobile {
    display: none !important;
  }

  ::-webkit-scrollbar {
    width: 10px;
    background: #f4f4f4;
  }

  ::-webkit-scrollbar-track {
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #aaa;
  }

  .sc-title {
    font-size: 1.875rem;
    margin-bottom: 32px;
  }

  .sc-heading-inner {
    margin-bottom: 32px;
  }

  .sc-heading-inner .sc-title--inner {
    font-size: 1.875rem;
  }

  .sc-heading-inner .sc-description {
    font-size: 1.125rem;
  }

  .sc-modal__content-scroll {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }

  .sc-modal__content-scroll > div {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sc-footer {
    padding: 24px 0 50px;
  }

  .sc-footer__top {
    padding: 32px 0;
  }

  .sc-footer__content-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 32px 0 64px;
  }

  .sc-footer__list {
    max-height: none;
    max-height: initial;
    list-style: none;
  }

  .sc-footer__item-link {
    font-size: 0.875rem;
  }

  .sc-footer__list-container {
    width: 20%;
    margin-right: 16px;
  }

  .sc-footer__list-container--width {
    width: 40%;
    margin-right: 0;
  }

  .sc-footer__label {
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: 0;
    cursor: auto;
    cursor: initial;
  }

  .sc-footer__label::after {
    all: unset;
  }

  .sc-footer__bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .sc-footer__lang-selector {
    margin-bottom: 0;
    margin-left: 70px;
  }

  .sc-footer__bottom-copy {
    max-width: 100%;
  }

  .sc-footer__apps-text,
  .sc-footer__social-text {
    text-align: right;
  }

  .sc-footer__apps {
    padding: 12px 0 0;
    margin-top: 0;
    border-bottom: 0;
  }

  .sc-footer__apps-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .sc-footer__apps-icon {
    margin: 0 0 12px 12px;
  }

  .sc-footer__apps-text {
    display: block;
  }

  .sc-footer__social {
    margin: 72px 0 0;
  }

  .sc-footer__social-list {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .sc-footer__back-to-top {
    width: 45px;
    height: 45px;
    background-size: 18px;
  }

  .sc-footer__back-to-top:hover {
    background-size: 15px;
  }

  .sc-footer__back-to-top--show {
    bottom: 30px;
  }

  .sc-disclaimer {
    padding: 40px 0;
  }
}

@media (max-width: 1023.98px) {
  .only-desktop,
  .sc-only-desktop {
    display: none !important;
  }
}

@media (min-width: 1247px) {
  ul.city.mobile {
    display: none;
  }
}

@media (max-width: 1246.9px) {
  .sc-meganav--sticky .sc-meganav-login-drop {
    top: 70px;
    top: var(--navtop-sticky);
  }

  .sc-meganav--sticky .sc-meganav__list,
  .sc-meganav--sticky .sc-meganav__mgnv-wrapper {
    top: 70px;
    top: var(--navtop-sticky);
    height: calc(100vh - 70px);
    height: calc(100vh - var(--navtop-sticky));
  }

  .sc-meganav--sticky .sc-meganav__back {
    top: 70px;
    top: var(--navtop-sticky);
  }

  .sc-meganav__list {
    position: fixed;
    background-color: #eee;
    top: 100px;
    top: var(--navtop);
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    overflow: auto;
    z-index: 99;
    padding-bottom: 40px;
    top: 70px;
  }

  .sc-meganav__logo-link,
  .sc-meganav__logo-link-priority {
    width: 100px;
  }
  .sc-meganav__logo {
    width: 200px;
  }

  .sc-meganav__nav {
    height: 70px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 16px 0 32px;
  }

  .sc-meganav__top {
    padding-left: 32px;
  }

  .sc-meganav__login-open-btn {
    margin-left: auto;
  }

  .sc-meganav__personal-box-link:hover::after {
    content: none;
  }

  .sc-meganav .sc-meganav__priority-drop .sc-meganav__personal-box-link {
    color: #525355;
  }

  .sc-only-desktop-nav {
    display: block !important;
    margin-top: 0;
  }
  ul.city.mobile {
    display: none;
  }
  hr.sc-meganav__mbl-line {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1246px) {
  .custmflex {
    flex-wrap: wrap;
  }
  ul.city {
    width: 50%;
  }
  ul.imge_with {
    width: 50%;
    border: 0;
  }
  ul.card_mega li {
    margin-right: 20px;
  }
  ul.card_mega li a .cap h6 {
    font-size: 15px;
  }
  ul.route {
    width: 50%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .custmflex {
    flex-wrap: wrap;
  }
  ul.city {
    width: 50%;
  }
  ul.imge_with {
    width: 50%;
    border: 0;
  }
  ul.card_mega li {
    margin-right: 15px;
  }
  ul.card_mega li a .cap {
    padding: 10px 10px;
  }
  ul.card_mega li a .cap h6 {
    font-size: 11px;
  }
  ul.route {
    width: 50%;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .custmflex {
    flex-wrap: wrap;
  }
  ul.city {
    width: 50%;
  }
  ul.imge_with {
    width: 50%;
    border: 0;
    padding: 0 15px;
  }
  ul.imge_with li a .cap h6 {
    font-size: 14px;
  }
  ul.card_mega li {
    margin-right: 15px;
    width: 30%;
    margin-bottom: 10px;
  }
  ul.card_mega li a .cap {
    padding: 10px 10px;
  }
  ul.card_mega li a .cap h6 {
    font-size: 11px;
  }
  ul.route {
    width: 50%;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .custmflex {
    flex-wrap: wrap;
  }
  ul.city {
    width: 100%;
    margin-bottom: 15px !important;
  }
  ul.city.desktop {
    display: none;
  }
  ul.city.mobile {
    display: block;
    margin-bottom: 0;
    margin-top: 15px;
  }
  ul.imge_with {
    width: 100%;
    border: 0;
    padding: 0 15px;
  }
  ul.imge_with li a .cap h6 {
    font-size: 14px;
  }
  ul.card_mega li {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 10px;
  }
  ul.card_mega li a .cap {
    padding: 10px 10px;
    font-size: 12px !important;
  }
  /* ul.card_mega li a .cap h6{
		font-size: 11px;
	} */
  ul.route {
    width: 100%;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid #c2c2c2;
    position: relative;
  }
  ul.route li a {
    padding-right: 50px;
  }
}

@media (max-width: 680px) {
  .sc-meganav__nav {
    padding: 0 0 0 16px;
  }

  .sc-meganav__top {
    padding-left: 16px;
  }
}

@media (max-width: 429px) {
  ul.card_mega li {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (min-width: 1247px) {
  .sc-meganav--sticky .sc-meganav__menu {
    padding: 18px 16px;
  }

  .sc-meganav--sticky .sc-meganav__priority-drop-btn-wrap {
    padding: 16px;
  }

  .sc-meganav--sticky .sc-meganav__priority-drop .sc-meganav__you-are {
    top: 2px;
  }

  .sc-meganav__wrapper {
    padding: 0;
    height: 100%;
    overflow: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .sc-meganav__personal-lists {
    overflow-x: visible;
    width: auto;
  }

  .sc-meganav__logo {
    width: 150px;
  }

  .sc-meganav__hamburger {
    position: static;
    height: auto;
  }

  .sc-meganav__container {
    padding: 0 32px;
  }

  .sc-meganav__menu {
    color: #525355;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    padding: 24px 16px;
  }

  .sc-meganav__menu::after,
  .sc-meganav__menu::before {
    content: none;
  }

  .sc-meganav__menu .sc-meganav__icon {
    margin-right: 0;
  }

  .sc-meganav__login-btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 1rem;
    color: #fff;
  }

  .sc-meganav__login-btn svg path {
    fill: #fff;
  }

  .sc-meganav__login-btn::after {
    content: "";
    background-image: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.646447 0.646447C0.841709 0.451184 1.15829 0.451184 1.35355 0.646447L6 5.29289L10.6464 0.646447C10.8417 0.451184 11.1583 0.451184 11.3536 0.646447C11.5488 0.841709 11.5488 1.15829 11.3536 1.35355L6.35355 6.35355C6.15829 6.54882 5.84171 6.54882 5.64645 6.35355L0.646447 1.35355C0.451184 1.15829 0.451184 0.841709 0.646447 0.646447Z" fill="white"/></svg>');
    width: 12px;
    height: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    margin-left: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .sc-meganav__login-btn .sc-meganav__icon {
    margin-right: 8px;
    margin-bottom: 0;
    width: 14px;
    height: 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .sc-meganav__top-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    padding: 0 32px;
  }

  .sc-meganav__top-right {
    width: auto;
    margin: 0;
    padding: 0;
    height: 100%;
  }

  .sc-meganav .sc-modal {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .sc-meganav .sc-modal__wrapper {
    margin: 0 auto;
    background-color: #fff;
    position: absolute;
    z-index: 5;
    max-width: 250px;
    width: 100%;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-left: 0;
  }

  .sc-meganav .sc-modal__scroll {
    overflow: hidden;
    height: 100%;
    padding: 40px 0;
    margin: 0 16px;
    margin-left: 16px;
  }

  .sc-meganav .sc-modal__close {
    position: absolute;
    top: -20px;
    height: 40px;
    right: -20px;
    width: 100%;
    left: auto;
  }

  .sc-meganav .sc-modal__close::after {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='40px' height='40px' viewBox='0 0 40 40' enable-background='new 0 0 40 40' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath fill='%23101010' d='M20,2C10.075,2,2,10.075,2,20s8.075,18,18,18s18-8.075,18-18S29.925,2,20,2z'/%3E%3Cpath fill='%23D7D7D7' d='M20,0C8.954,0,0,8.954,0,20s8.954,20,20,20s20-8.954,20-20S31.046,0,20,0z M20,38c-9.925,0-18-8.075-18-18 S10.075,2,20,2s18,8.075,18,18S29.925,38,20,38z'/%3E%3C/g%3E%3Cpath fill='%23FFFFFF' d='M21.414,20l2.293-2.293c0.391-0.391,0.391-1.023,0-1.414s-1.023-0.391-1.414,0L20,18.586l-2.293-2.293 c-0.391-0.391-1.023-0.391-1.414,0s-0.391,1.023,0,1.414L18.586,20l-2.293,2.293c-0.391,0.391-0.391,1.023,0,1.414 C16.488,23.902,16.744,24,17,24s0.512-0.098,0.707-0.293L20,21.414l2.293,2.293C22.488,23.902,22.744,24,23,24 s0.512-0.098,0.707-0.293c0.391-0.391,0.391-1.023,0-1.414L21.414,20z'/%3E%3C/g%3E%3C/svg%3E%0A");
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center center;
    border: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .sc-meganav .sc-modal__close-button {
    width: 40px;
    height: 40px;
    float: right;
  }

  .sc-meganav__login {
    position: relative;
  }

  .sc-meganav__login-btn::after {
    display: none !important;
  }

  .sc-meganav__login:hover .sc-meganav-login-drop {
    visibility: visible;
    opacity: 1;
    display: block;
    pointer-events: all;
  }

  .sc-meganav__login--full {
    position: static;
  }

  .sc-meganav__login--full .sc-meganav-login-drop::after {
    display: none;
  }

  .sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-drop__w-full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
  }

  .sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-drop__wrapper {
    padding: 32px 32px 4px 32px;
  }

  .sc-meganav__login--full .sc-meganav-login-drop .sc-meganav-drop__col {
    margin: 0;
  }

  .sc-meganav__login--full
    .sc-meganav-login-drop
    .sc-meganav-login-drop-lists
    .sc-meganav-login-drop__col {
    width: 33%;
  }

  .sc-meganav__login--full
    .sc-meganav-login-drop
    .sc-meganav-login-drop-lists
    .sc-meganav-login-drop__link {
    border: 1px solid #f4f4f4;
    border-radius: 4px;
    margin-left: 20px;
    min-height: 145px;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .sc-meganav__login--full
    .sc-meganav-login-drop
    .sc-meganav-login-drop-lists
    .sc-meganav-login-drop__link:hover {
    border-color: #a9c7e9;
  }

  .sc-meganav__login--full
    .sc-meganav-login-drop
    .sc-meganav-login-drop-lists
    .sc-meganav-login-drop__link:hover
    .sc-meganav-login-drop__maintitle {
    color: #2772c7;
  }

  .sc-meganav__login--full
    .sc-meganav-login-drop
    .sc-meganav-login-drop-lists
    .sc-meganav-login-drop__link
    .sc-meganav__icon {
    margin-bottom: 4px;
  }

  .sc-meganav__login--full
    .sc-meganav-login-drop
    .sc-meganav-login-drop-lists
    .sc-meganav-login-drop__maintitle {
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .sc-meganav__login--full
    .sc-meganav-login-drop
    .sc-meganav-login-drop-lists
    .sc-meganav-login-drop__desc-wrapper {
    margin-top: 0;
  }

  .sc-meganav__login--full:hover ~ .sc-meganav__overlay::after {
    opacity: 1;
    height: 100vh;
  }

  .sc-meganav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    position: inherit;
    width: auto;
    overflow: visible;
    border: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-left: auto;
  }

  .sc-meganav__item:hover .sc-meganav__menu span {
    color: #1f8845;
  }

  /* stylelint-disable max-nesting-depth */
  /* stylelint-enable max-nesting-depth */
  .sc-meganav__item--has-meganav:hover > .sc-meganav__mgnv-wrapper {
    visibility: visible;
    opacity: 1;
  }

  .sc-meganav__item--has-meganav:hover ~ .sc-meganav__overlay::after {
    opacity: 1;
    height: 100vh;
  }

  .sc-meganav__item--has-meganav:hover .sc-meganav__menu {
    background-color: #fff;
    color: #086ad7;
  }

  /* stylelint-disable max-nesting-depth */
  .sc-meganav__item--show .sc-meganav__mgnv-wrapper {
    opacity: 1;
    visibility: visible;
  }

  /* stylelint-enable max-nesting-depth */
  .sc-meganav__item--show ~ .sc-meganav__overlay::after {
    opacity: 1;
    height: 100vh;
  }

  .sc-meganav__overlay::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
  }

  .sc-meganav__mgnv-wrapper {
    position: absolute;
    left: 0;
    top: 86%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    display: block;
    right: auto;
    padding: 0;
    height: auto;
    overflow: visible;
  }

  .sc-meganav__priority-drop {
    position: relative;
  }

  .sc-meganav__priority-drop
    .sc-meganav__priority-drop
    .sc-meganav__personal-list.sc-menu-visible {
    height: auto;
  }

  .sc-meganav__priority-drop .sc-meganav__priority-drop-btn-wrap::before {
    content: none;
  }

  .sc-meganav__priority-drop .sc-meganav__you-are {
    color: #fff;
    position: absolute;
    top: 9px;
    display: block;
    font-size: 0.625rem;
  }

  .sc-meganav__priority-drop .sc-meganav__top-btn::after {
    border-color: #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    border-width: 2px;
  }

  .sc-meganav__priority-drop .sc-meganav__personal-box-link {
    padding: 16px;
    color: #525355;
  }

  .sc-meganav__priority-drop .sc-meganav__personal-box-link:hover {
    background-color: #f7fbff;
  }

  .sc-meganav__priority-drop:hover .sc-meganav__personal-list {
    visibility: visible;
    opacity: 1;
  }

  .sc-meganav__priority-drop:hover .sc-meganav__you-are {
    opacity: 0;
  }

  .sc-meganav__priority-drop:hover .sc-meganav__top-btn {
    color: #086ad7;
  }

  .sc-meganav__priority-drop:hover .sc-meganav__top-btn::after {
    border-color: #086ad7;
  }

  .sc-meganav--dark .sc-meganav__login-btn,
	/* stylelint-disable max-nesting-depth */
	/* stylelint-enable max-nesting-depth */
	.sc-meganav--dark .sc-meganav__menu {
    color: #fff;
  }

  .sc-meganav--dark .sc-meganav__logo {
    margin-right: 24px;
  }

  .sc-meganav--dark .sc-meganav__list {
    margin-right: auto;
  }

  .sc-meganav--dark .sc-meganav__top-item:hover {
    background-color: rgba(79, 89, 93, 0.3);
  }

  .sc-meganav--dark .sc-meganav__item--has-meganav:hover .sc-meganav__menu {
    color: #525355;
  }

  .sc-meganav--dark .sc-meganav__lang-link {
    color: #fff;
  }

  .sc-meganav--dark .sc-meganav__lang-link--active {
    color: #1f8845;
  }

  .sc-meganav .sc-country {
    position: relative;
    top: 0;
    overflow: visible;
  }

  .sc-meganav .sc-country__search-box {
    position: relative;
    height: 50px;
    top: 0;
  }

  .sc-meganav .sc-country__input[type="text"] {
    border: 0;
    margin-left: 0;
    background-color: transparent;
    padding-left: 0;
  }

  .sc-meganav .sc-country__wrapper {
    margin-left: 0;
    width: 100%;
    border: 0;
    background-color: transparent;
    position: relative;
    top: 6px;
    padding: 0;
  }

  .sc-meganav .sc-country__list-items {
    min-height: 250px;
    max-height: 400px;
    padding-left: 0;
  }

  .sc-meganav .sc-country__list-item {
    margin: 0;
    border: 0;
    padding: 8px 24px;
  }

  .sc-only-mobile-nav {
    display: none !important;
  }

  .sc-meganav-drop {
    min-height: 200px;
    border: 0;
  }

  .sc-meganav-drop__col-wrapper {
    width: 100%;
  }

  .sc-meganav-drop__col-spacing {
    margin-top: 40px;
  }

  .sc-meganav-drop__section {
    width: 254px;
    text-align: right;
    color: #555;
    font-weight: 300;
    border-bottom: 0;
    padding: 16px 16px 16px 32px;
    cursor: pointer;
  }

  .sc-meganav-drop__section .sc-meganav__icon {
    display: inline-block;
    width: 16px;
  }

  .sc-meganav-drop__view-all {
    width: 100%;
  }

  .sc-meganav-drop__wrapper {
    padding-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .sc-meganav-drop__col-label {
    font-size: 0.875rem;
  }

  .sc-meganav-drop__content {
    width: 100%;
    top: 0;
    right: 0;
    height: auto;
    background: #fff;
    display: block;
    padding-top: 24px;
    left: 0;
    position: absolute;
    overflow-y: auto;
    max-height: calc(100vh - 110px);
    border-top: 1px solid #e5e5e5;
  }

  .sc-meganav-drop__col-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .sc-meganav-drop__col {
    position: relative;
    margin: 0;
    background-color: #fff;
  }

  .sc-meganav-drop__desc {
    display: block;
  }

  .sc-meganav-drop__btn {
    margin-top: 0;
  }

  .sc-meganav-drop__link {
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
    padding: 0;
    color: #525355;
    margin-bottom: 4px;
    position: relative;
    display: inline-block;
  }

  .sc-meganav-drop__link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #086ad7;
    height: 1px;
    display: inline-block;
    width: 0;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
  }

  .sc-meganav-drop__col-20,
  .sc-meganav-drop__col-25,
  .sc-meganav-drop__col-30,
  .sc-meganav-drop__col-40,
  .sc-meganav-drop__col-50,
  .sc-meganav-drop__col-60,
  .sc-meganav-drop__col-70,
  .sc-meganav-drop__col-80 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
  }

  .sc-meganav-drop__col-20 {
    max-width: 20%;
  }

  .sc-meganav-drop__col-25 {
    max-width: 25%;
  }

  .sc-meganav-drop__col-30 {
    max-width: 30%;
  }

  .sc-meganav-drop__col-40 {
    max-width: 40%;
  }

  .sc-meganav-drop__col-50 {
    max-width: 50%;
  }

  .sc-meganav-drop__col-60 {
    max-width: 60%;
  }

  .sc-meganav-drop__col-70 {
    max-width: 70%;
  }

  .sc-meganav-drop__col-80 {
    max-width: 80%;
  }

  .sc-meganav-drop__padding-left {
    padding-left: 32px;
  }

  .sc-meganav-drop__border-right {
    border-right: 0;
  }

  .sc-meganav-drop__border-left {
    border-left: 1px solid #e1e1e1;
  }

  .sc-meganav-drop__ml-auto {
    margin-left: auto;
  }

  .sc-meganav-drop__mt {
    margin-top: 40px;
  }

  .sc-meganav-drop__tiles--4 > * {
    width: calc(25% - 16px);
  }

  .sc-meganav-drop__small-tiles {
    width: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .sc-meganav-drop__small-tiles > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin: 0;
  }

  .sc-meganav-login-drop {
    -webkit-transition: visibility 0.2s ease, opacity 0.2s ease;
    transition: visibility 0.2s ease, opacity 0.2s ease;
    position: absolute;
    width: 240px;
    top: 100%;
    left: -100px;
    visibility: hidden;
    opacity: 0;
    height: auto;
    pointer-events: none;
    border-bottom: 0;
    display: block;
    margin-top: 8px;
    -webkit-box-shadow: 0 7px 20px 7px rgba(0, 0, 0, 0.18);
    box-shadow: 0 7px 20px 7px rgba(0, 0, 0, 0.18);
    border-radius: 6px;
    background-color: #fff;
  }

  .sc-meganav-login-drop::before {
    content: "";
    display: block;
    position: absolute;
    top: -9px;
    right: 70px;
    width: 20px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='7' viewBox='0 0 15 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 0L15 7H0L7.5 0Z' fill='white'/%3E%3C/svg%3E");
    background-size: 100%;
    background-repeat: no-repeat;
  }

  .sc-meganav-login-drop::after {
    content: "";
    display: block;
    position: absolute;
    top: -9px;
    right: 0;
    width: 100%;
    height: 16px;
    background-color: transparent;
  }

  .sc-meganav-login-drop--show {
    visibility: visible;
    opacity: 1;
  }

  .sc-meganav-login-drop__title {
    height: auto;
    background: #fff;
    padding: 0;
    display: none;
  }

  .sc-meganav-product-tile {
    height: 180px;
  }

  .sc-meganav-product-tile--h-200 {
    height: 220px;
  }

  .sc-meganav-product-tile--no-h {
    height: 100%;
  }

  .sc-meganav-product-tile__hover-item {
    bottom: -100px;
    opacity: 0;
  }

  .sc-meganav-product-tile--hover-animated:hover
    .sc-meganav-product-tile__content-wrapper {
    margin-top: 8px;
  }

  .sc-meganav-product-tile--hover-animated:hover
    .sc-meganav-product-tile__icon {
    margin-top: -24px;
    opacity: 0;
  }

  .sc-meganav-product-tile--hover-animated:hover
    .sc-meganav-product-tile__hover-item {
    bottom: 0;
    opacity: 1;
  }

  /* stylelint-disable max-nesting-depth */
  /* stylelint-enable max-nesting-depth */
  .sc-meganav-product-tile--hover-animated:hover
    .sc-meganav-product-tile__value
    strong {
    font-size: 0.875rem;
    font-weight: 500;
  }

  .sc-meganav-product-tile--hover-animated:hover
    .sc-meganav-product-tile__title {
    font-size: 0.875rem;
  }

  .sc-meganav-image-tile {
    max-width: 260px;
  }

  .sc-meganav-tile-small {
    min-height: 80px;
    margin-right: 16px;
  }

  .sc-meganav-tile-small:last-child {
    margin-right: 0;
  }

  .sc-meganav-tile-small__text {
    font-size: 1.125rem;
  }
}

@media (min-width: 1367px) {
  .sc-meganav-product-tile--h-200 {
    height: 200px;
  }
}

@media (min-width: 1100px) and (max-width: 1600px) {
  .sc-meganav-account-dropdown {
    right: -160px;
  }

  .sc-meganav-account-dropdown::before {
    right: -135px;
  }
}
