/* @media query */
.grow {
  height: 0;
  transform: scale(0);
  opacity: 0;
}

.grow-end {
  transform: scale(1);
  opacity: 1;
  transition: all 0.7s, opacity 0.3s ease-in-out;
}

@keyframes animatezoom {
  0% {
    transform: scale(1);
  }
  1% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(1);
  }
}

body,
html {
  height: 100%;
  -webkit-text-size-adjust: none;
  min-height: 100vh;
  position: relative;
}

body::after, body::before {
  box-sizing: border-box;
  /* these are the 2 half blocks which cover the content once the animation is triggered */
  content: '';
  height: 50vh;
  width: 100%;
  position: fixed;
  left: 0;
  background-color: #f5f5f5;
  background-color: var(--header-gradient-start-color, #f5f5f5);
  z-index: 1;
  /* Force Hardware Acceleration */
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.4s 0.4s;
}

body::before {
  top: 0;
  transform: translateY(-100%);
}

body::after {
  bottom: 0;
  transform: translateY(100%);
}

body.page-is-changing::after, body.page-is-changing::before {
  transform: translateY(0);
  transition: transform 0.4s 0s;
}

.cd-cover-layer {
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 3;
  visibility: hidden;
  background-color: #f5f5f5;
  background-color: var(--header-gradient-start-color, #f5f5f5);
  transition: opacity 0.4s 0.4s, visibility 0s 0.8s;
}

.page-is-changing .cd-cover-layer {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.page-is-changing .cd-logo {
  position: fixed;
  z-index: 4;
  background: url("./images/common/logo.svg") no-repeat;
  top: 40%;
  animation: animatezoom 0.8s;
  left: calc(50% - 5.6rem);
  width: 11.3rem;
  height: 10%;
}

.cd-loading-bar {
  position: fixed;
  z-index: 4;
  left: 50%;
  top: 50%;
  height: 0.1rem;
  width: 90%;
  background-color: #F47D4C;
  background-color: #F47D4C;
  visibility: hidden;
  transition: visibility 0s 0.4s, transform 0.4s 0s ease-in;
  backface-visibility: hidden;
  transform: translate3d(-50%, -50%, 0);
  background-color: rgba(255, 255, 255, 0.1);
}

.cd-loading-bar::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #F47D4C;
  background-color: #F47D4C;
  /* Force Hardware Acceleration */
  backface-visibility: hidden;
  transform: translateZ(0);
  transform: scaleX(0);
  transform-origin: left center;
}

[dir='rtl'] .cd-loading-bar::before {
  right: 0;
}

[dir='ltr'] .cd-loading-bar::before {
  left: 0;
}

.page-is-changing .cd-loading-bar {
  visibility: visible;
  transform: translateX(-50%) translateY(-50%) scaleX(0.3);
}

.page-is-changing .cd-loading-bar::before {
  animation-duration: 0.8s;
  animation-delay: 0.8s;
  animation-name: example;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in;
}

@keyframes example {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.se-pre-con.load-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5px;
  z-index: 3;
  background-color: #02629f;
}

.se-pre-con.load-bar .bar {
  content: "";
  display: inline;
  position: absolute;
  width: 0;
  height: 100%;
  left: 50%;
  text-align: center;
}

.se-pre-con.load-bar .bar:nth-child(1) {
  background-color: #F47D4C;
  animation: loading 3s linear infinite;
}

.se-pre-con.load-bar .bar:nth-child(2) {
  background-color: #2F3E86;
  animation: loading 3s linear 1s infinite;
}

.se-pre-con.load-bar .bar:nth-child(3) {
  background-color: #F47D4C;
  animation: loading 3s linear 2s infinite;
}

@keyframes loading {
  from {
    left: 50%;
    width: 0;
    z-index: 100;
  }
  33.3333% {
    left: 0;
    width: 100%;
    z-index: 10;
  }
  to {
    left: 0;
    width: 100%;
  }
}

.hamburger-icon {
  visibility: hidden;
}

.logo-container .icon-logo {
  visibility: hidden;
}

/* @media query */
.grow {
  height: 0;
  transform: scale(0);
  opacity: 0;
}

.grow-end {
  transform: scale(1);
  opacity: 1;
  transition: all 0.7s, opacity 0.3s ease-in-out;
}

@keyframes animatezoom {
  0% {
    transform: scale(1);
  }
  1% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(1);
  }
}

body,
html {
  height: 100%;
  -webkit-text-size-adjust: none;
  min-height: 100vh;
  position: relative;
}

body::after,
body::before {
  box-sizing: border-box;
  /* these are the 2 half blocks which cover the content once the animation is triggered */
  content: "";
  height: 50vh;
  width: 100%;
  position: fixed;
  left: 0;
  background-color: #f5f5f5;
  background-color: var(--header-gradient-start-color, #f5f5f5);
  z-index: 1;
  /* Force Hardware Acceleration */
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.4s 0.4s;
}

body::before {
  top: 0;
  transform: translateY(-100%);
}

body::after {
  bottom: 0;
  transform: translateY(100%);
}

body.page-is-changing::after,
body.page-is-changing::before {
  transform: translateY(0);
  transition: transform 0.4s 0s;
}

.cd-cover-layer {
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 3;
  visibility: hidden;
  background-color: #f5f5f5;
  background-color: var(--header-gradient-start-color, #f5f5f5);
  transition: opacity 0.4s 0.4s, visibility 0s 0.8s;
}

.page-is-changing .cd-cover-layer {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.page-is-changing .cd-logo {
  position: fixed;
  z-index: 4;
  background: url("./images/common/logo.svg") no-repeat;
  top: 40%;
  animation: animatezoom 0.8s;
  left: calc(50% - 5.6rem);
  width: 11.3rem;
  height: 10%;
}

.cd-loading-bar {
  position: fixed;
  z-index: 4;
  left: 50%;
  top: 50%;
  height: 0.1rem;
  width: 90%;
  background-color: #f47d4c;
  background-color: #f47d4c;
  visibility: hidden;
  transition: visibility 0s 0.4s, transform 0.4s 0s ease-in;
  backface-visibility: hidden;
  transform: translate3d(-50%, -50%, 0);
  background-color: rgba(255, 255, 255, 0.1);
}

.cd-loading-bar::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f47d4c;
  background-color: #f47d4c;
  /* Force Hardware Acceleration */
  backface-visibility: hidden;
  transform: translateZ(0);
  transform: scaleX(0);
  transform-origin: left center;
}

[dir="rtl"] .cd-loading-bar::before {
  right: 0;
}

[dir="ltr"] .cd-loading-bar::before {
  left: 0;
}

.page-is-changing .cd-loading-bar {
  visibility: visible;
  transform: translateX(-50%) translateY(-50%) scaleX(0.3);
}

.page-is-changing .cd-loading-bar::before {
  animation-duration: 0.8s;
  animation-delay: 0.8s;
  animation-name: example;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in;
}

@keyframes example {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.se-pre-con.load-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.3125rem;
  z-index: 3;
  background-color: transparent !important;
}

.se-pre-con.load-bar .bar {
  content: "";
  display: inline;
  position: absolute;
  width: 0;
  height: 100%;
  left: 50%;
  text-align: center;
}

.se-pre-con.load-bar .bar:nth-child(1) {
  background-color: #f47d4c;
  animation: loading 3s linear infinite;
}

.se-pre-con.load-bar .bar:nth-child(2) {
  background-color: #2f3e86;
  animation: loading 3s linear 1s infinite;
}

.se-pre-con.load-bar .bar:nth-child(3) {
  background-color: #f47d4c;
  animation: loading 3s linear 2s infinite;
}

@keyframes loading {
  from {
    left: 50%;
    width: 0;
    z-index: 100;
  }
  33.3333% {
    left: 0;
    width: 100%;
    z-index: 10;
  }
  to {
    left: 0;
    width: 100%;
  }
}

.hamburger-icon {
  visibility: hidden;
}

.logo-container .icon-logo {
  visibility: hidden;
}

/* ===========> Loader v1.0 CSS <====================*/
body.page-is-changing::after {
  transform: translateY(100%);
}

body {
  height: auto;
}

body.page-is-changing::before {
  transform: translateY(-100%);
}

.fixed-header-container {
  display: none;
}

.se-pre-con {
  opacity: 0 !important;
  display: none !important;
}

.se-pre-con.load-bar {
  opacity: 0 !important;
  height: 100vh !important;
  width: 100vw !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999 !important;
  margin: 0 !important;
  transform: none !important;
  padding: 0 !important;
  display: none !important;
  justify-content: center !important;
  align-items: center !important;
  transition: opacity 0.5s ease-in-out !important;
}

.se-pre-con.show-loader,
.se-pre-con-splash.show-splash-screen {
  opacity: 1 !important;
  display: flex !important;
}

.app-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.125rem;
  font-size: 0.625rem;
}

.app-loader > div {
  height: 100%;
  width: 0.75rem;
  display: inline-block;
  margin-left: 0.125rem;
  animation: delay 0.8s infinite ease-in-out;
}

.bar1 {
  background-color: #701e7d;
}

.bar2 {
  background-color: #ffda00;
  animation-delay: -0.7s !important;
}

.bar3 {
  background-color: #27ae60;
  animation-delay: -0.6s !important;
}

.bar4 {
  background-color: #ffda00;
  animation-delay: -0.5s !important;
}

.bar5 {
  background-color: #27ae60;
  animation-delay: -0.4s !important;
}

.bar6 {
  background-color: #701e7d;
  animation-delay: -0.3s !important;
}

@-webkit-keyframes delay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.05);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes delay {
  0%,
  40%,
  100% {
    transform: scaleY(0.05);
    -webkit-transform: scaleY(0.05);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

.hamburger-icon {
  visibility: visible !important;
}

.logo-container .icon-logo {
  visibility: visible !important;
}

.form-main-container .hide-label,
.form-main-container .hide-label label,
.hide-label,
.hide-label label,
.oj-button.oj-button-full-chrome span.icons.oj-button-icon,
.oj-button.oj-button-half-chrome span.icons.oj-button-icon {
  font-size: 0 !important;
}

.oj-listview {
  border-width: 0;
}

.oj-listview-container-touch {
  overflow-y: hidden !important;
}

.next-button {
  width: 100% !important;
  bottom: 1.25rem !important;
  position: fixed !important;
  padding-right: 1.25rem !important;
}

.next-button-custom {
  position: fixed !important;
  bottom: 1.125rem !important;
  height: 3rem !important;
}

.border-radius {
  border-radius: 0.938rem !important;
}

@media only screen and (max-width: 767px) {
  .button-bottom-cheque-stop-unblock {
    width: 95%;
    position: fixed;
    bottom: 0.313rem;
    height: 3rem;
  }
}

.button-container {
  padding: 0rem !important;
}

.displayNoneExtra {
  display: none;
}
