/*
* ink colors (with variations only for black and white)
*/
.navbar-root {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  height: 64px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
  background-color: #ffffff; }
  @media (min-width: 1200px) {
    .navbar-root {
      height: auto; } }
  .navbar-root .container {
    display: flex;
    justify-content: space-between;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
    transition: all 0.5s ease 0.1s;
    width: 100%;
    height: 100%; }
    @media (min-width: 768px) {
      .navbar-root .container {
        max-width: 750px; } }
    @media (min-width: 992px) {
      .navbar-root .container {
        max-width: 970px; } }
    @media (min-width: 1200px) {
      .navbar-root .container {
        max-width: 1140px;
        gap: 16px; } }
    @media (max-width: 768px) {
      .navbar-root .container {
        align-items: center;
        height: inherit; } }

.offcanvas-backdrop {
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1029;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: all; }
  .offcanvas-backdrop.show {
    display: block;
    opacity: 1; }
  @media (min-width: 1200px) {
    .offcanvas-backdrop {
      display: none !important; } }

.navbar-toggle {
  display: flex;
  align-items: center;
  width: auto; }
  @media (min-width: 992px) {
    .navbar-toggle {
      display: none; } }
  .navbar-toggle .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f2f6fd, #c2d9ff);
    width: 36px;
    height: 32px;
    padding: 8px !important;
    border: 0.5px solid #1855b8;
    border-bottom-width: 2px;
    border-radius: 8px; }
    .navbar-toggle .navbar-toggler .stroke {
      stroke: #1855b8; }
    .navbar-toggle .navbar-toggler:hover {
      background: linear-gradient(180deg, #dce7fa, #8eb2ee);
      border-color: #134493; }
      .navbar-toggle .navbar-toggler:hover .stroke {
        stroke: #134493; }
    .navbar-toggle .navbar-toggler:active {
      background: linear-gradient(180deg, #8eb2ee, #6899e8);
      border-color: #0a224a; }
      .navbar-toggle .navbar-toggler:active .stroke {
        stroke: #0a224a; }

/*
* ink colors (with variations only for black and white)
*/
.navbar-brand {
  justify-content: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: auto !important;
  padding: 0 !important; }
  @media (min-width: 992px) {
    .navbar-brand {
      width: auto; } }
  .navbar-brand .link {
    display: flex;
    align-items: center; }
  .navbar-brand .logo {
    width: 119px;
    height: 40px;
    margin-bottom: 0 !important; }
    @media (min-width: 992px) {
      .navbar-brand .logo {
        width: 166px;
        height: 56px; } }

.offcanvas {
  justify-content: flex-start !important; }

/*
* ink colors (with variations only for black and white)
*/
.navbar-navigation {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  background-color: #fff;
  width: 288px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  transition-duration: 0.25s;
  transition-property: all;
  transform: translateX(-105%);
  box-shadow: 0px 2px 8px 0px rgba(0, 58, 109, 0.16); }
  @media (min-width: 1200px) {
    .navbar-navigation {
      flex-grow: 1;
      width: auto;
      height: auto;
      position: relative;
      transform: none;
      box-shadow: none; } }
  .navbar-navigation.is-open {
    transition-duration: 0.5s;
    transform: translateX(0); }

.navbar-navigation-header {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding-left: 16px; }
  @media (min-width: 1200px) {
    .navbar-navigation-header {
      display: none; } }

.navbar-navigation-body {
  overflow-y: auto;
  display: block;
  flex-grow: 1;
  width: 100%; }
  @media (min-width: 1200px) {
    .navbar-navigation-body {
      overflow-y: visible;
      display: flex;
      flex-wrap: wrap; } }

.navbar-navigation-nav.primary {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  width: 100%;
  padding: 0 16px; }
  @media (min-width: 1200px) {
    .navbar-navigation-nav.primary {
      flex-direction: row;
      order: 1;
      padding: 0; } }

.navbar-navigation-nav.secondary {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none; }
  @media (min-width: 1200px) {
    .navbar-navigation-nav.secondary {
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      width: 100%;
      padding: 0 16px;
      background: #f5f5f5;
      border: 1px solid #d4d4d4;
      border-top: none;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      z-index: 10; } }

/*
* ink colors (with variations only for black and white)
*/
.primary-nav-link,
.primary-nav-link-top {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 20px;
  text-decoration: none !important;
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  background-color: transparent;
  padding: 16px;
  position: relative;
  border: none;
  cursor: pointer;
  transition-duration: 0.25s !important;
  transition-property: all; }
  .primary-nav-link:hover,
  .primary-nav-link-top:hover {
    color: #134493;
    background: linear-gradient(180deg, #FFF 0%, #E4EDFB 100%); }
    .primary-nav-link:hover .chevron,
    .primary-nav-link-top:hover .chevron {
      transform: rotate(180deg); }
  @media (min-width: 992px) {
    .primary-nav-link,
    .primary-nav-link-top {
      width: auto;
      padding: 24px 12px;
      position: relative;
      z-index: 2; } }
  .primary-nav-link span,
  .primary-nav-link-top span {
    font-family: inherit;
    white-space: nowrap; }
  .primary-nav-link .chevron,
  .primary-nav-link-top .chevron {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    background: #E8E8E8;
    width: 16px;
    height: 16px;
    border-radius: 2px 6px;
    transition-duration: 0.25s !important;
    transform-origin: center;
    transition-property: all; }
  .primary-nav-link.selected,
  .primary-nav-link-top.selected {
    color: #134493;
    background: linear-gradient(180deg, #FFF 0%, #E4EDFB 100%); }
    .primary-nav-link.selected.profile,
    .primary-nav-link-top.selected.profile {
      color: #fff; }
    @media (min-width: 992px) {
      .primary-nav-link.selected,
      .primary-nav-link-top.selected {
        width: auto; } }
    .primary-nav-link.selected::before,
    .primary-nav-link-top.selected::before {
      content: "";
      background-color: #134493;
      width: 100%;
      height: 2px;
      position: absolute;
      left: 0;
      bottom: 0; }
      @media (min-width: 992px) {
        .primary-nav-link.selected::before,
        .primary-nav-link-top.selected::before {
          width: calc(100% - 24px);
          height: 4px;
          left: 12px;
          bottom: 0; } }
    .primary-nav-link.selected > .chevron,
    .primary-nav-link-top.selected > .chevron {
      transform: rotate(180deg);
      fill: #1D66DD; }

@media (min-width: 992px) {
  .primary-nav-link-top {
    padding: 16px 12px; } }

.secondary-nav-link,
.tertiary-nav-link {
  font-size: 14px;
  font-weight: 400;
  color: #222;
  line-height: 20px;
  text-decoration: none !important;
  white-space: nowrap;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding: 8px 12px;
  border-bottom: 1px solid #E8E8E8;
  cursor: pointer;
  position: relative; }
  @media (min-width: 992px) {
    .secondary-nav-link,
    .tertiary-nav-link {
      background-color: #FFF;
      padding: 8px 12px;
      z-index: 2; } }
  .secondary-nav-link:hover,
  .tertiary-nav-link:hover {
    color: #1855b8;
    background: #F1F6FE;
    border-radius: 4px;
    border-color: transparent; }
  .secondary-nav-link.selected,
  .tertiary-nav-link.selected {
    color: #1855b8;
    background: #F1F6FE;
    border-radius: 4px;
    border-color: transparent; }
  .secondary-nav-link:active,
  .tertiary-nav-link:active {
    color: #134493;
    background: #E4EDFB;
    border-color: transparent;
    border-radius: 8px; }
  .secondary-nav-link span,
  .tertiary-nav-link span {
    font-family: inherit; }

.topButton {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  border-style: solid;
  border-width: 1px;
  border-bottom-width: 3px;
  border-radius: 8px; }
  .topButton svg {
    align-self: center;
    width: 16px;
    height: 16px; }
  @media (min-width: 992px) {
    .topButton {
      padding: 6px 8px; } }

.offer {
  font-size: 14px;
  color: #fff !important;
  justify-content: center;
  background: linear-gradient(180deg, #4380e3 0%, #1855b8 100%) !important;
  padding: 12px;
  border-color: #1D66DD;
  border-radius: 8px; }
  .offer.selected {
    color: #fff !important;
    background: linear-gradient(180deg, #1D66DD 0%, #134493 100%) !important;
    border-color: #134493; }
    @media (max-width: 1199.98px) {
      .offer.selected {
        border-radius: 8px 8px 0 0; } }
  .offer:active {
    color: #fff !important;
    background: linear-gradient(180deg, #134493 0%, #0F336F 100%) !important;
    border-color: #0F336F; }
    @media (max-width: 1199.98px) {
      .offer:active {
        border-radius: 8px 8px 0 0; } }
  @media (min-width: 992px) {
    .offer {
      padding: 12px;
      border: 8px; } }
  .offer svg {
    fill: #fff; }

.login {
  color: #1855B8;
  flex-direction: row !important;
  background: linear-gradient(180deg, #F2F6FD 0%, #DCE7FA 100%);
  width: auto !important;
  height: auto !important;
  border-color: #1855B8; }
  .login:hover {
    color: #134493;
    background: linear-gradient(180deg, #DCE7FA 0%, #8EB2EE 100%);
    border-color: #134493; }
  .login:active {
    color: #0F336F;
    background: linear-gradient(180deg, #8EB2EE 0%, #6899E8 100%);
    border-color: #0F336F; }
  .login svg {
    stroke: #1855B8; }

.profile {
  font-weight: 700;
  color: #1D66DD;
  justify-content: center;
  gap: 4px;
  background-color: #fff;
  padding: 8px 12px;
  width: auto;
  border: 1px solid #1D66DD;
  border-radius: 4px; }
  .profile:hover {
    color: #fff;
    background-color: #1D66DD; }
    .profile:hover > svg {
      fill: #fff; }
  .profile > svg.chevron {
    fill: #fff; }

.call {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #4380e3, #1855b8);
  width: 100%;
  padding: 12px;
  border-radius: 8px; }
  .call svg {
    fill: #FFF; }
  .call:hover {
    color: #FFF;
    text-decoration: none;
    background: linear-gradient(180deg, #1d66dd, #134493); }
  .call:active {
    background: linear-gradient(180deg, #134493, #0f336f); }

.whatsapp {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #19a37b;
  width: 100%;
  padding: 12px;
  border-radius: 8px; }
  .whatsapp svg {
    fill: #FFF; }
  .whatsapp:hover {
    color: #FFF;
    text-decoration: none;
    background: #148363; }
  .whatsapp:active {
    background: #0f624a; }

.scrollable {
  display: flex;
  width: 100%; }
  .scrollable.vertical {
    column-gap: 8px; }
    .scrollable.vertical .scrollable-viewport {
      width: calc(100% - 24px) !important;
      max-height: 235px !important;
      height: auto !important; }
      .scrollable.vertical .scrollable-viewport.has-nested {
        overflow-x: visible !important;
        overflow-y: visible !important; }
    .scrollable.vertical .controller {
      width: 16px;
      display: flex;
      flex-direction: column;
      gap: 4px; }
    .scrollable.vertical .scrollbar-track {
      width: calc(100% - 4px);
      height: calc(100% - 40px) !important;
      margin-left: 2px; }
  .scrollable.vertical.has-overflow .scrollable-viewport {
    height: 235px; }
  .scrollable.vertical.has-overflow .controller {
    height: 100%; }
  .scrollable .scrollable-viewport {
    -ms-overflow-style: none;
    scrollbar-width: none; }
    .scrollable .scrollable-viewport::-webkit-scrollbar {
      display: none; }
  .scrollable .scrollbar-track {
    background: var(--lp-secondary-neutral-030, #eee) !important;
    height: 12px;
    border-radius: 8px; }
  .scrollable .scrollbar-thumb {
    background: var(--lp-primary-red-050, #e57373);
    border-radius: 8px;
    cursor: pointer; }
    .scrollable .scrollbar-thumb:hover {
      background: var(--lp-primary-red-060, #ef5350); }
    .scrollable .scrollbar-thumb:active {
      background: var(--lp-primary-red-070, #d32f2f); }

.btn-scrollbar {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 2px 6px; }
  .btn-scrollbar.white {
    background: var(--lp-white, #fff) !important; }
  .btn-scrollbar.neutral-020 {
    background: var(--lp-secondary-neutral-020, #e8e8e8) !important; }
  .btn-scrollbar:focus {
    outline: none;
    box-shadow: 0 0 0 1px var(--lp-primary-blue-010, #f1f6fe); }
  .btn-scrollbar:disabled {
    background: var(--lp-secondary-neutral-010, #f5f5f5) !important;
    cursor: not-allowed; }
  .btn-scrollbar .icon {
    align-self: center;
    width: 6px;
    min-width: 6px;
    height: 3px;
    fill: #ed6969; }

/*
* ink colors (with variations only for black and white)
*/
.primary-dropdown-menu {
  list-style-type: none;
  display: none;
  min-width: 0;
  width: 100%;
  position: relative;
  left: auto;
  top: auto;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin: 0;
  padding: 8px 8px 0;
  background-color: #fff; }
  @media (min-width: 1200px) {
    .primary-dropdown-menu {
      min-width: 224px;
      width: auto;
      position: absolute;
      left: 0;
      top: 100%;
      box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.16); }
      .primary-dropdown-menu.right {
        left: auto !important;
        right: 0 !important; } }
  .primary-dropdown-menu.show {
    display: block; }
  @media (max-width: 1199.98px) {
    .primary-dropdown-menu.offer-dropdown {
      padding: 16px 16px 8px;
      box-shadow: 2px 4px 16px 0 rgba(0, 0, 0, 0.16); } }
  .primary-dropdown-menu.offer-dropdown .box {
    font-size: 14px;
    text-align: left !important;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 1px solid #d6d6d6; }
    .primary-dropdown-menu.offer-dropdown .box:last-child {
      margin-bottom: 8px; }

.secondary-dropdown-menu {
  list-style-type: none;
  display: none;
  min-width: 0;
  width: 100%;
  position: relative;
  left: auto;
  top: auto;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.16); }
  @media (min-width: 1200px) {
    .secondary-dropdown-menu {
      min-width: 224px;
      width: auto;
      padding: 8px;
      position: absolute;
      left: 100%;
      top: -8px;
      box-shadow: 2px 4px 16px 0px rgba(0, 0, 0, 0.16); } }
  .secondary-dropdown-menu.show {
    display: block; }

.hr {
  margin: 0;
  margin: 12px 0;
  padding: 0;
  border: none;
  border-bottom: 1px dashed #d6d6d6; }

.separator {
  text-align: center;
  padding: 6px 0;
  position: relative; }
  .separator::before {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 50%;
    border: none;
    border-top: 1px solid #E4EDFB; }
  .separator span {
    background: #fff;
    display: inline-block;
    padding: 0 16px;
    position: relative;
    z-index: 2; }

/*
* ink colors (with variations only for black and white)
*/
.primary-nav-item {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  order: 2;
  padding: 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #FAFAFA;
  position: relative;
  transition-duration: 0.25s;
  transition-property: all; }
  @media (min-width: 992px) {
    .primary-nav-item {
      align-items: center;
      order: 1;
      margin-bottom: 0;
      border-bottom: none; } }
  .primary-nav-item:last-child {
    border-bottom: none; }
  .primary-nav-item.login {
    background: transparent;
    position: relative;
    padding: 0; }
  .primary-nav-item.callcenter {
    background: transparent;
    border: none; }
  .primary-nav-item.account-nav-item {
    order: 1;
    padding: 8px 16px 0; }
  .primary-nav-item.push-left {
    margin-left: 0; }
    @media (min-width: 992px) {
      .primary-nav-item.push-left {
        margin-left: auto; } }
  .primary-nav-item.has-dropdown {
    position: relative; }
  .primary-nav-item > .primary-dropdown-menu.show {
    display: block; }
    @media (min-width: 992px) {
      .primary-nav-item > .primary-dropdown-menu.show {
        left: 0;
        top: 100%; } }

.secondary-nav-item {
  color: #222;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #FFF;
  margin-bottom: 8px;
  padding: 0;
  position: relative; }
  .secondary-nav-item:last-child {
    border-bottom: none; }
  .secondary-nav-item.has_dropdown {
    position: relative; }
  @media (min-width: 992px) {
    .secondary-nav-item > .secondary_dropdown_menu {
      left: 100%;
      top: 0;
      z-index: 1; } }
  .secondary-nav-item > .secondary_dropdown_menu.show {
    display: block; }

.tertiary-nav-item {
  color: #222;
  display: block;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 8px;
  border-bottom: 1px solid #F5F5F5; }
  .tertiary-nav-item:last-child {
    border-bottom: none; }
  .tertiary-nav-item.has_dropdown {
    position: relative; }
  @media (min-width: 992px) {
    .tertiary-nav-item > .tertiary_dropdown_menu {
      left: 100%;
      top: 0; } }
  .tertiary-nav-item > .tertiary_dropdown_menu.show {
    display: block; }

@media (max-width: 1199.98px) {
  .offer-nav-item {
    margin-bottom: 16px; } }

.mobile-navigation-container {
  display: flex;
  width: 100%;
  background: transparent;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; }
  .mobile-navigation-container .mobile-navigation-menus {
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    justify-content: space-evenly;
    border-radius: calc(1 * 1rem) calc(1 * 1rem) 0 0;
    width: 100%;
    position: relative;
    padding: 10px 0 10px 0;
    z-index: 1030; }
    .mobile-navigation-container .mobile-navigation-menus .navigation-menu {
      box-shadow: none;
      border: none;
      border-radius: unset;
      display: flex;
      flex-direction: column;
      font-size: 12px;
      color: #333333;
      background: transparent;
      outline: none;
      border: none;
      margin: 0 10px;
      height: 45px;
      cursor: pointer;
      position: relative; }
      .mobile-navigation-container .mobile-navigation-menus .navigation-menu span {
        text-align: center; }
        .mobile-navigation-container .mobile-navigation-menus .navigation-menu span.active {
          color: #1d66dd;
          font-weight: 500; }
      .mobile-navigation-container .mobile-navigation-menus .navigation-menu div {
        box-shadow: none;
        border: none;
        border-radius: unset;
        padding: unset;
        height: 4px;
        width: 80%; }
      .mobile-navigation-container .mobile-navigation-menus .navigation-menu:hover {
        color: #1d66dd;
        font-weight: 500; }
        .mobile-navigation-container .mobile-navigation-menus .navigation-menu:hover i::before {
          color: #1d66dd; }
        .mobile-navigation-container .mobile-navigation-menus .navigation-menu:hover div {
          height: 4px;
          border-top-left-radius: 10px;
          border-top-right-radius: 10px;
          background: #1d66dd; }
    @media (min-width: 768px) {
      .mobile-navigation-container .mobile-navigation-menus {
        width: 480px; } }

.navigationHidden {
  visibility: hidden; }

/*
* ink colors (with variations only for black and white)
*/
.displayNone {
  top: -100px; }

.simpleNavigation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.24);
  background: #ffffff;
  z-index: 9; }
  .simpleNavigation__blue {
    background: #1D66DD; }
  .simpleNavigation__backBtn {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: calc(0.25 * 1rem);
    width: 35px;
    height: 35px; }
    .simpleNavigation__backBtn img {
      width: 24px;
      height: 24px; }
  .simpleNavigation__backBtnWhite {
    position: absolute;
    top: 25px;
    left: 15px;
    padding: calc(0.25 * 1rem);
    width: 30px;
    height: 30px;
    padding: 3px;
    border-radius: 50%;
    background: #1D66DD; }
    .simpleNavigation__backBtnWhite img {
      width: 24px;
      height: 24px; }
  .simpleNavigation__logo img {
    width: 90px;
    height: 30px; }

.space__between {
  justify-content: space-between; }

.flex__start {
  justify-content: flex-start; }

.simpleNavigationBlue {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #1D66DD;
  z-index: 1000; }
  @media (min-width: 992px) {
    .simpleNavigationBlue {
      height: 75px; } }
  .simpleNavigationBlue .header__invisble {
    visibility: hidden; }
  .simpleNavigationBlue__backBtn {
    height: 30px;
    width: 30px;
    padding: 3px;
    margin-left: calc(1.25 * 1rem); }
    .simpleNavigationBlue__backBtn i {
      font-size: 24px;
      color: #ffffff;
      font-weight: 600; }
  .simpleNavigationBlue__logo {
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 991.98px) {
      .simpleNavigationBlue__logo {
        width: 75%; } }
    .simpleNavigationBlue__logo img {
      width: auto;
      height: 30px;
      text-align: center; }
  .simpleNavigationBlue .profile .profile__dropdown {
    border-radius: 50%;
    background-color: #ffffff;
    color: #ffffff;
    outline: none;
    border: none;
    height: 30px;
    width: 30px;
    margin-right: calc(0.75 * 1rem);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .simpleNavigationBlue .profile .profile__dropdown i {
      font-size: 22px;
      color: #1D66DD;
      vertical-align: middle; }
  .simpleNavigationBlue .profile .profile__menu--list {
    position: absolute;
    width: 75px;
    height: auto;
    right: 10px;
    background-color: #ffffff;
    list-style: none;
    padding: calc(0.5 * 1rem) calc(1.25 * 1rem) 0 calc(0.5 * 1rem);
    margin: 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24); }
    .simpleNavigationBlue .profile .profile__menu--list li {
      display: block;
      margin-bottom: calc(0.5 * 1rem); }

.dropdown-menu.show {
  border: none; }
  @media (min-width: 768px) {
    .dropdown-menu.show {
      border: 1px solid rgba(0, 0, 0, 0.15); } }

.dropdown-item:hover {
  color: #1D66DD;
  font-weight: 500; }

.dropdown-item:focus {
  background-color: white; }

.dropdown-menu.columns-2 {
  min-width: 350px; }

@media (max-width: 991.98px) {
  .navbar {
    height: 50px; } }

@media (max-width: 991.98px) {
  .navbar .container {
    display: block; } }

.navbar .container .navbarToggler {
  display: inline-block;
  padding: calc(0.25 * 1rem) calc(0.75 * 1rem);
  padding-left: 0px; }
  .navbar .container .navbarToggler i {
    color: #1d66dd;
    font-size: 20px; }
  @media (min-width: 768px) {
    .navbar .container .navbarToggler {
      display: none; } }

.navbar .container .account {
  display: inline;
  padding: calc(0.25 * 1rem) calc(0.75 * 1rem);
  padding-right: 0;
  float: right; }
  .navbar .container .account.active {
    background-color: #f2f7ff; }
  .navbar .container .account i {
    color: #1d66dd;
    font-size: calc(calc(1.25 * 1rem) + calc(0.25 * 1rem)); }
  @media (min-width: 768px) {
    .navbar .container .account {
      display: none; } }

.navbar .container .search {
  display: inline-block;
  padding: calc(0.25 * 1rem) calc(0.75 * 1rem);
  float: right; }
  .navbar .container .search i {
    color: #1d66dd;
    font-size: calc(calc(1.25 * 1rem) + calc(0.25 * 1rem)); }
  @media (min-width: 768px) {
    .navbar .container .search {
      display: none; } }

.nav-link.phone {
  text-align: center;
  margin-top: 0.5em; }
  @media (min-width: 768px) {
    .nav-link.phone {
      text-align: initial;
      margin-top: 0; } }

.nav-tabs {
  cursor: pointer; }

.navbar-brand.back-arrow {
  display: none;
  margin-right: 0; }
  @media (max-width: 576px) {
    .navbar-brand.back-arrow {
      display: inline-block; } }

.navbar-brand.hidden-div {
  display: none; }
  @media (max-width: 576px) {
    .navbar-brand.hidden-div {
      display: inline-block; } }

.orderNavbar .step-line {
  top: 20%;
  left: 50%;
  width: 100%;
  display: block;
  position: absolute;
  border-top: 3px solid #b6b6b6; }
  .orderNavbar .step-line.done {
    border-top: 3px solid black; }

.orderNavbar .circle {
  position: relative;
  height: 18px;
  width: 18px;
  background-color: #b6b6b6;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  cursor: pointer; }
  .orderNavbar .circle.isBayar, .orderNavbar .circle.notYet {
    cursor: auto; }
  .orderNavbar .circle .process-icon {
    margin: 1.5px;
    background-color: white;
    display: inline-block;
    border-radius: 50%;
    height: 9px;
    width: 9px; }
  .orderNavbar .circle.done {
    background-color: #333330; }
    .orderNavbar .circle.done .done-icon {
      color: white; }
  .orderNavbar .circle.active {
    cursor: auto;
    background-color: #1d66dd; }
    .orderNavbar .circle.active .active-icon {
      width: 12px;
      height: 12px;
      border-width: 1.5px;
      border-top-color: transparent;
      border-right-color: white;
      border-left-color: transparent;
      animation: 0;
      vertical-align: 1%; }

.orderNavbar .text-indicator {
  font-size: 12px;
  color: #b6b6b6; }
  .orderNavbar .text-indicator.done {
    color: #333330; }
  .orderNavbar .text-indicator.active {
    color: #1d66dd; }

.footerNav-icon {
  background-image: url("/static/images/bottom-navigation/footer-navigation-icon.webp") !important; }

.loginNavigation__icon:after {
  background-image: url("/static/images/bottom-navigation/loginNavigation.png") !important; }

.loginNavigation__icon--webp:after {
  background-image: url("/static/images/bottom-navigation/loginNavigation.webp") !important; }


/*# sourceMappingURL=af3beda00014b8a3666efa97f85715e0f43c4d9b_CSS.46331cee.chunk.css.map*/