@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --bs-primary: #ff5733;
  /* Replace with your desired color */
  --safe-area-inset-top: env(safe-area-inset-top);
    --safe-area-inset-bottom: env(safe-area-inset-bottom);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins";
  background: #FFFFFF;
  /* overflow-y: auto;   */
  /* -webkit-overflow-scrolling: touch;   */
  /* height: calc(100vh - var(--safe-area-inset-top) - var(--safe-area-inset-bottom));
  padding-top: var(--safe-area-inset-top);
  padding-bottom: var(--safe-area-inset-bottom); */
  position: relative;
}

html, body {
  overscroll-behavior: none;
}

a {
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.form-control:focus {
  box-shadow: 0px 0px 10px rgba(217, 33, 45, 0.4196078431);
  border: 1px solid #D9212D;
}

main {
  padding: 0;
  min-height: 100vh;
  /* padding-top: 55px; */
  width: 100%;
  /* height: calc(100vh - var(--safe-area-inset-top) - var(--safe-area-inset-bottom)); */
  height: calc(100vh - var(--safe-area-inset-top));
  padding-top: calc(var(--safe-area-inset-top) + 55px);
  /* padding-bottom: var(--safe-area-inset-bottom); */
}

.btn.btn-primary {
  border: 1px solid #D9212D;
  background: #D9212D;
  color: #fff;
  padding: 8px 18px;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
  background: #D9212D;
  color: #fff;
  border: 1px solid #D9212D;
  opacity: 0.8;
}

.main-header {
  background-size: cover;
  width: 100%;
  border-radius: 0;
  /* height: 55px; */
  height: calc(var(--safe-area-inset-top) + 55px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 6px 15px; */
  padding: calc(var(--safe-area-inset-top) + 6px) 15px 6px 15px;
  z-index: 1;
  /* top: var(--safe-area-inset-top); */
}
.main-header.scrolled {
  background: url(../images/header-bg.jpg);
  background-size: cover;
}
.main-header .header-left {
  display: flex;
  align-items: center;
  width: 50px;
}
.main-header .header-left .menu-icon{
  border: 0;
  outline: none;
}
.main-header .header-left svg {
  width: 30px;
}
.main-header .header-center {
  text-align: center;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.main-header .header-right {
  width: 50px;
  text-align: right;
}
.main-header .header-right button {
  background: none;
  border: 0;
  outline: none;
  color: #fff;
}
.main-header .header-right button svg {
  width: 24px;
}

.splash-body {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  border: 0;
  position: relative;
  display: flex;
  /* align-items: flex-end; */
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.splash-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 0%, 0.35);
  z-index: 0;
}
.splash-body .login-logo img {
  width: 120px;
}
.splash-body .login-box {
  width: 100%;
  max-width: 200px;
  margin: auto auto 0 auto;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.splash-body .login-box .btn {
  text-transform: uppercase;
  width: 100%;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 1px;
}
.splash-body .login-box .btn.btn-default {
  border: 1px solid #fff;
  color: #fff;
}

.login-body {
  background-image: url("../images/login-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  display: flex;
  border: 0;
  position: relative;
  width: 100%;
  padding-top: 10vh;
}
.login-body.signup-body {
  background-image: url("../images/register-bg.png");
}
.login-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 0%, 0.65);
  z-index: 0;
}
.login-body .login-logo img {
  max-width: 90px;
}
.login-body form {
  width: 100%;
  max-width: 80%;
  margin: auto;
}
.login-body form h2 {
  text-transform: uppercase;
  font-size: 1.9rem;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 200;
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #FFFFFF;
}
.login-body .form-control {
  margin: auto;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  height: 50px;
  padding: 10px 24px;
  position: relative;
  font-weight: 400;
}
.login-body .form-control:focus {
  background: rgba(0, 0, 0, 0.3);
}
.login-body .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase;
}
.login-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase;
}
.login-body .divider {
  background: #fff;
  width: 100%;
  max-width: 150px;
  height: 1px;
  display: block;
  margin: auto auto 2rem auto;
}
.login-body .forgot-link {
  border-bottom: 1px solid #fff;
  padding: 0 15px;
}
.login-body .login-box .btn {
  border-radius: 30px;
}
.login-body .login-back {
  position: absolute;
  top: calc(var(--safe-area-inset-top) + 20px);
  left: 30px;
  z-index: 2;
}
.login-body .login-back svg {
  width: 16px;
}
.login-body .register-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  border-radius: 0 !important;
  padding: 14px 18px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.login-body .register-btn svg{
  width: 20px;
  height: 22px;
  margin-left: 10px;
}
.transparent-box {
  background-color: hsla(0, 0%, 0%, 0.45);
  min-height: calc(100vh - 66px);
  position: absolute;
}

.login-logo img {
  width: 150px;
}

.help-icon {
  position: absolute;
  right: 15px;
  top: 22px;
  color: #D9212D;
}

.btn-outline-primary {
  border: 1px solid #D9212D;
  color: #D9212D;
  border-radius: 0;
}
.btn-outline-primary:hover {
  background: #D9212D;
  color: #fff;
  border: 1px solid #D9212D;
}

.primary-btn {
  background-color: #D9212D;
  color: #fff;
}
.primary-btn:hover {
  background: #fff;
  color: #D9212D;
}

form .btn {
  width: 100%;
  text-transform: uppercase;
  border-radius: 0;
  font-size: 20px;
}

.forgot-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 1px;
}

.banner-sec {
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 1rem 0;
  position: relative;
}
.banner-sec img {
  width: 320px;
}
.banner-sec .flip-btn-row {
  width: 320px;
  margin: auto;
  text-align: right;
  margin-top: -24px;
  margin-bottom: 2px;
}
.banner-sec .flipcard-btn {
  background: none;
  border: 0;
  outline: none;
}
.banner-sec .flipcard-btn svg {
  width: 20px !important;
  height: 20px !important;
}

.card-container {
  perspective: 1000px;
}
.card-container .card {
  width: 320px;
  height: 184px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  margin: auto;
  background: none !important;
  border: 0 !important;
}

.eaplus-card {
  width: 320px;
  height: 184px;
  margin: auto;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 10px;
}
.eaplus-card .card-img {
  width: 100%;
  border-radius: 10px;
}
.eaplus-card .card-back-inner .back-row-1 {
  background: #EBEBEB;
  border-radius: 10px 10px 0 0;
  padding: 4px;
  height: 80px;
}
.eaplus-card .card-back-inner .back-row-1 h2 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  margin-top: 1px;
}
.eaplus-card .card-back-inner .back-row-1 label {
  font-size: 11px;
  font-weight: 500;
}
.eaplus-card .card-back-inner .back-row-2 {
  background: #fff;
  font-size: 11px;
  font-weight: 300;
  padding: 4px 2px;
  height: 55px;
  line-height: 1.3;
}
.eaplus-card .card-back-inner .back-row-3 {
  background: #EBEBEB;
  border-radius: 0 0 10px 10px;
  font-size: 11px;
  font-weight: 300;
  padding: 4px 2px;
  height: 49px;
}
.eaplus-card .card-back-inner .back-row-3 span {
  font-weight: 400;
}
.eaplus-card .card-overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 1rem;
  line-height: 1.1;
}
.eaplus-card .card-overlay h4 {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.eaplus-card .card-overlay p {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
}
.eaplus-card .card-overlay label {
  font-size: 11px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
}
.eaplus-card .card-overlay .card-row1 {
  height: 45px;
}
.eaplus-card .card-overlay .card-row2 {
  height: 38px;
}
.eaplus-card .card-overlay .card-row2-2 {
  height: 56px;
}
.eaplus-card .card-overlay .card-row3 {
  height: 30px;
  text-align: right;
}
.eaplus-card .card-overlay .card-row3 .member-col {
  padding-right: 5rem;
}
.eaplus-card .card-overlay .card-row3 label {
  font-size: 10px;
}
.eaplus-card .card-overlay .card-row3 h3 {
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
}
.eaplus-card.eaplus-card-back {
  background-color: #EBEBEB;
  transform: rotateY(180deg);
}
.eaplus-card.eaplus-card-front {
  background-color: #EBEBEB;
  transform: rotateY(0deg);
}

.red-breadcrumb {
  background: #D9212D;
}
.red-breadcrumb h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 200;
  margin: 10px 0;
  letter-spacing: 1px;
}

.member-service-content {
  padding: 0;
}
.member-service-content ul {
  list-style-type: none;
  padding-left: 0;
}
.member-service-content ul li a {
  padding: 0.9rem 1rem;
  border-radius: 0;
  color: #676a79;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
.member-service-content h2 {
  color: #676a79;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}
.member-service-content h2 span {
  float: right;
}
.member-service-content i {
  color: #D9212D;
}

.banner-sec-inner h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 1px;
}

.currencycalc-content .rate-date {
  min-height: 80px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.currencycalc-content .convert-btn {
  width: 100%;
  max-width: 250px;
  margin-top: 1rem;
  border-radius: 0;
}
.currencycalc-content .card {
  background: none;
  border: 0;
}
.currencycalc-content .rate-based {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.currencycalc-content .rate-based .left-col {
  width: 100%;
  /* background: #C4C4C4; */
  max-width: 200px;
  margin: auto;
  text-align: center;
}
.currencycalc-content .rate-based .left-col a {
  padding: 0.6rem;
  color: #000;
  text-align: center;
  font-size: 1.3rem;
  display: block;
}
.currencycalc-content .rate-based .left-col .select2 {
  width: 100% !important;
}
.currencycalc-content .rate-based .left-col .select2 .select2-selection--single {
  background: none !important;
}
.currencycalc-content .rate-based .left-col .select2 .select2-selection--single span {
  font-size: 1.1rem !important;
  font-weight: 400;
}
.currencycalc-content .rate-based .left-col .select2 .select2-selection__rendered {
  padding-left: 0 !important;
}
.currencycalc-content .rate-based .left-col img {
  width: 35px !important;
  margin-right: 3px !important;
  height: auto !important;
}
.currencycalc-content .rate-based .right-col {
  margin-top: 1rem;
}
.currencycalc-content .rate-based .right-col input {
  width: 100%;
  border-radius: 0;
  text-align: center;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  max-width: 200px;
  height: 50px;
  margin: auto;
}
.currencycalc-content .rate-based .right-col input::-moz-placeholder {
  color: #000;
}
.currencycalc-content .rate-based .right-col input::placeholder {
  color: #000;
}

.aboutus-content  .about-logo {
  width: 100%;
  margin-bottom: 15px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.aboutus-content .card {
  border: 0;
  font-size: 0.95rem;
}
.aboutus-content .card .card-body {
  padding-left: 0;
  padding-right: 0;
}
.aboutus-content .nav {
  width: 100%;
  padding: 0;
  margin: auto;
  text-align: center;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.aboutus-content .nav .nav-item a.nav-link {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}
.aboutus-content .nav .nav-item a.nav-link:hover {
  opacity: 0.8;
}

.home-screen {
  background-image: url(../images/bg-slide2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  border: 0;
  position: relative;
  /* padding-top: 4vh; */
  margin: auto;
  width: 100%;
  padding-top: calc(var(--safe-area-inset-top) + 4vh);
}
.home-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 0%, 0.35);
  z-index: 0;
}
.home-screen .action-btn {
  position: fixed;
  bottom: 35px;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0 !important;
  text-transform: uppercase;
  padding: 16px 18px;
}
.home-screen .home-logo img {
  width: 90px;
}
.home-screen .home-menu {
  padding-left: 2vw;
  padding-top: 5vh;
}
.home-screen .home-menu ul {
  list-style-type: none;
  padding-left: 0;
}
.home-screen .home-menu ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 0.6rem 0;
  display: block;
}

.menu-drawer {
  border: 0 !important;
  max-width: 300px;
  outline: none !important;
}
.menu-drawer .offcanvas-body {
  background-image: url(../images/bg-slide2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  border: 0;
  position: relative;
  max-width: 100vw;
  padding-top: calc(var(--safe-area-inset-top) + 4vh);
}
.menu-drawer .offcanvas-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 0%, 0.35);
  z-index: 0;
}
.menu-drawer .offcanvas-header {
  padding: 0;
  background: none;
  position: absolute;
  top: calc(var(--safe-area-inset-top) + 5px);
  right: 15px;
  z-index: 2;
  outline: none;
}
.menu-drawer .offcanvas-header button {
  background: none;
  border: 0 !important;
  outline: none !important;
}
.menu-drawer .offcanvas-header button svg {
  width: 20px;
}
.menu-drawer .menu-inner {
  padding-left: 2vw;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.menu-drawer .menu-inner .home-logo img {
  width: 90px;
}
.menu-drawer .menu-inner .home-menu {
  margin-top: 4rem;
}
.menu-drawer .menu-inner ul {
  list-style-type: none;
  padding-left: 0;
}
.menu-drawer .menu-inner ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 0.6rem 0;
  display: block;
}
.menu-drawer .action-btn {
  position: absolute;
  bottom: 35px;
  width: 100%;
  border-radius: 0;
  text-transform: uppercase;
  padding: 16px 18px;
}

.header-bg {
  background-image: url(../images/header-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
  min-height: 55px;
  top: 0;
  position: fixed;
  width: 100%;
  z-index: -1;
}
.header-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  z-index: 1;
}
.header-bg.currencycalc-header-bg {
  /* height: 25vh; */
  height: calc(var(--safe-area-inset-top) + 25vh);
}
.header-bg.about-header-bg {
  /* height: 30vh; */
  height: calc(var(--safe-area-inset-top) + 30vh);
}
.header-bg.dashbaord-header-bg {
  /* height: 275px; */
  height: calc(var(--safe-area-inset-top) + 275px);
}
.header-bg.dashbaord-header-bg::before {
  display: none;
}
.header-bg.blobalaccess-header-bg {
  /* height: 200px; */
  height: calc(var(--safe-area-inset-top) + 200px);
}

.about-header-bg {
  /* height: 30vh; */
  height: calc(var(--safe-area-inset-top) + 30vh);
}

.tour-body {
  background-image: url(../images/login-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
  border: 0;
  position: relative;
  width: 100%;
  padding-top: calc(var(--safe-area-inset-top) + 4vh);
}
.tour-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 0%, 0.35);
  z-index: 0;
}
.tour-body .tourSlider {
  width: 100%;
  margin: auto;
}
.tour-body .tourSlider.active-slide-1 .slick-arrow {
  min-width: 100vw;
}
.tour-body .tourSlider .slick-arrow {
  position: fixed;
  width: 50vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  z-index: 3;
  transform: none !important;
}
.tour-body .tourSlider .slick-arrow.slick-disabled {
  pointer-events: none;
}
.tour-body .tourSlider .slick-arrow::before {
  display: none;
}
.tour-body .tourSlider .slick-arrow.slick-prev {
  left: 0;
}
.tour-body .tourSlider .slick-arrow.slick-next {
  right: 0;
}
.tour-body .tourSlider .slick-dots {
  position: initial;
  margin-top: 10px;
}
.tour-body .tourSlider .slick-dots li {
  margin: 0;
}
.tour-body .tourSlider .slick-dots li button::before {
  color: #fff;
  opacity: 1;
  font-size: 8px;
}
.tour-body .tourSlider .slick-dots li.slick-active button::before {
  color: #D9212D !important;
}
.tour-body .tourSlider .slide {
  border-radius: 12px;
  border: 0;
  outline: 0;
}
.tour-body .tourSlider .slide a.last-slide {
  display: block;
  width: 50vw;
  height: 100vh;
  position: fixed;
  left: 50%;
  z-index: 9;
  top: 0;
  bottom: 0;
}
.tour-body .tourSlider .slide .tour-upper {
  text-align: center;
  padding: 0;
  background: #f2f2f2;
  border-radius: 12px;
}
.tour-body .tour-wrapper  .tour-close-icon {
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 999;
}
.tour-body .tour-wrapper {
  width: 88%;
  position: relative;
  margin: auto;
}
.tour-body .tourSlider .slide img {
  max-width: 100%;
  border-radius: 10px 10px 0 0;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.tour-body .tourSlider .slide .bottom-action {
  padding: 1.5rem;
  min-height: 170px;
}
.tour-body .tourSlider .slide .bottom-action h2 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin: 0 0 1.5rem 0;
}
.tour-body .tourSlider .slide .bottom-action p {
  font-size: 1rem;
  font-weight: 300;
  margin-top: 0.3rem;
  margin-bottom: 0;
}
.tour-body .tourSlider .slide .bottom-btn-action {
  margin-top: 30px;
}
.tour-body .tourSlider .slide .bottom-btn-action .btn {
  border-radius: 40px;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.select2-container .select2-dropdown {
  border: none !important;
  border-radius: 5px;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.1);
}
.select2-container .select2-dropdown input {
  outline: none !important;
  height: 30px;
}
.select2-container .select2-dropdown ul li {
  border-bottom: 1px solid #dbdbdb;
}
.select2-container .select2-dropdown ul li span {
  font-size: 10px;
}

#reverseButton img {
  width: 22px;
}

.globalaccess-content .globalaccess-search {
  padding: 0.8rem;
}
.globalaccess-content .globalaccess-search input {
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.4);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjAwMDEgMS4zOTk5OEMzLjkwNzMgMS4zOTk5OCAxLjQwMDEgMy45MDcxOCAxLjQwMDEgNi45OTk5OEMxLjQwMDEgMTAuMDkyOCAzLjkwNzMgMTIuNiA3LjAwMDEgMTIuNkMxMC4wOTI5IDEyLjYgMTIuNjAwMSAxMC4wOTI4IDEyLjYwMDEgNi45OTk5OEMxMi42MDAxIDMuOTA3MTggMTAuMDkyOSAxLjM5OTk4IDcuMDAwMSAxLjM5OTk4Wk0wLjEwMDA5OCA2Ljk5OTk4QzAuMTAwMDk4IDMuMTg5MjEgMy4xODkzMyAwLjA5OTk3NTYgNy4wMDAxIDAuMDk5OTc1NkMxMC44MTA5IDAuMDk5OTc1NiAxMy45MDAxIDMuMTg5MjEgMTMuOTAwMSA2Ljk5OTk4QzEzLjkwMDEgOC42NzEzIDEzLjMwNTkgMTAuMjAzOCAxMi4zMTcyIDExLjM5NzhMMTUuNzA5NyAxNC43OTA0QzE1Ljk2MzYgMTUuMDQ0MiAxNS45NjM2IDE1LjQ1NTggMTUuNzA5NyAxNS43MDk2QzE1LjQ1NTkgMTUuOTYzNCAxNS4wNDQzIDE1Ljk2MzQgMTQuNzkwNSAxNS43MDk2TDExLjM5OCAxMi4zMTcxQzEwLjIwNCAxMy4zMDU4IDguNjcxNDIgMTMuOSA3LjAwMDEgMTMuOUMzLjE4OTMzIDEzLjkgMC4xMDAwOTggMTAuODEwOCAwLjEwMDA5OCA2Ljk5OTk4WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-position: 96% center;
  color: #fff;
  height: 45px;
  padding: 10px 24px;
  position: relative;
  font-weight: 400;
}
.globalaccess-content .globalaccess-search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase;
}
.globalaccess-content .globalaccess-search input::placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase;
}
.globalaccess-content .globalaccess-list {
  max-height: calc(100vh - 150px);
  list-style-type: none;
  padding-left: 0;
  overflow-y: auto; /* Enable scrolling if content overflows */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}
.globalaccess-content .globalaccess-list li {
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #5b5b5b;
  border-bottom: 1px solid rgb(126, 126, 126);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAxNSAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wLjgzMzgxOCAyNS4wMjUyQzEuMzE5MTQgMjUuNjA4MyAyLjE1NjE2IDI1LjY2MTcgMi43MDMzNSAyNS4xNDQ1TDEzLjgwNDQgMTQuNjUxOUMxNC43MzIxIDEzLjc3NDkgMTQuNzMyMiAxMi4yMjUzIDEzLjgwNDUgMTEuMzQ4MkwyLjcwMzM1IDAuODU1NDc4QzIuMTU2MTYgMC4zMzgyODIgMS4zMTkxNCAwLjM5MTcyMyAwLjgzMzgxOCAwLjk3NDg0QzAuMzQ4NDkxIDEuNTU3OTYgMC4zOTg2MzkgMi40NDk5NCAwLjk0NTgyNiAyLjk2NzEzTDExLjU2MDUgMTNMMC45NDU4MjYgMjMuMDMyOUMwLjM5ODYzOSAyMy41NTAxIDAuMzQ4NDkxIDI0LjQ0MiAwLjgzMzgxOCAyNS4wMjUyWiIgZmlsbD0iI0Q5MjEyRCIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 10px;
}
.globalaccess-content .globalaccess-list li a {
  color: #5b5b5b;
  display: block;
}

.faq-body .faq-header {
  /* height: 50px; */
  /* height: calc(var(--safe-area-inset-top) + 50px);
  display: flex;
  justify-content: space-between;
  background: #D9212D;
  color: #fff;
  align-items: center;
  font-size: 1rem;
  text-transform: uppercase; */
  /* padding: 0 15px; */
  /* padding: var(--safe-area-inset-top) 15px 0 15px; */
}
.faq-body .faq-header .header-left svg {
  width: 15px;
}
/* .faq-body .faq-iframe {
  height: calc(100vh - 50px);
  width: 100vw;
} */

.faq-body .faq-iframe {
  /* height: calc(100vh - 57px); */
  height: calc(100vh - 57px - var(--safe-area-inset-top)); /* Use both the variable and safe area inset */
  width: 100%;
}

.sos-body .sos-header {
  /* height: 50px; */
  /* height: calc(var(--safe-area-inset-top) + 50px);
  display: flex;
  justify-content: space-between;
  background: #D9212D;
  color: #fff;
  align-items: center;
  font-size: 1rem;
  text-transform: uppercase; */
  /* padding: 0 15px; */
  /* padding: var(--safe-area-inset-top) 15px 0 15px; */
}
.sos-body .sos-header .header-left svg {
  width: 11px;
}
.sos-body .sos-content {
  /* height: calc(100vh - 50px); */
  width: 100vw;
  padding: 1rem;
  /* overflow-y: auto; 
  -webkit-overflow-scrolling: */
}
.sos-body .sos-content h2 {
  font-size: 1.1rem;
  font-weight: 500;
}
.sos-body .sos-content h3 {
  font-size: 1rem;
}
.sos-body .sos-content p {
  font-size: 14px;
}
.sos-body .sos-content ul {
  padding-left: 15px;
}
.sos-body .sos-content ul li {
  padding: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  position: relative;
}
.sos-body .sos-content ul li::before {
  content: "·";
  font-size: 40px;
  font-weight: 500;
  position: absolute;
  left: -16px;
  top: -8px;
  line-height: 100%;
}

.emergencycall-modal .modal-dialog {
  max-width: 290px;
  margin-right: auto;
  margin-left: auto;
}
.emergencycall-modal .modal-body {
  text-align: center;
}
.emergencycall-modal .modal-body h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.emergencycall-modal .modal-body p {
  font-size: 14px;
}
.emergencycall-modal .modal-body .call-btn {
  background: #A9A9A9;
  border-radius: 30px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  height: 42px;
  line-height: 42px;
  padding: 0;
  margin-bottom: 0.6rem;
  font-weight: 500;
  font-size: 16px;
}
.emergencycall-modal .modal-body .no-btn-close {
  color: #D9212D;
  text-transform: uppercase;
  background: none;
  font-size: 16px;
  border: 0;
  outline: none;
}

.wheremy-modal .modal-dialog {
  max-width: 290px;
  margin-right: auto;
  margin-left: auto;
}
.wheremy-modal .modal-body {
  text-align: center;
}
.wheremy-modal .modal-body h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
.wheremy-modal .modal-body p {
  font-size: 14px;
}
.wheremy-modal .modal-body .no-btn-close {
  color: #D9212D;
  text-transform: uppercase;
  background: none;
  font-size: 16px;
  border: 0;
  outline: none;
}

.countryinfo-body {
  width: 100%;
}
/* .countryinfo-body .countryinfo-header {
  height: 50px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  padding: 0 15px;
  position: fixed;
  width: 100%;
  top: 0;
} */
.countryinfo-body .countryinfo-header .header-left svg {
  width: 11px;
}
.countryinfo-body .getdirection-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 !important;
  text-transform: uppercase;
  width: 100%;
  padding: 15px 18px;
  font-size: 16px;
}
.countryinfo-body .countryinfo-content {
  /* height: calc(100vh - 95px); */
  height: calc(100vh - 111px - var(--safe-area-inset-top));
  overflow-y: auto; /* Enable scrolling if content overflows */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.countryinfo-body .countryinfo-content ul {
  padding-left: 15px;
  background: none;
  padding: 0;
}
.countryinfo-body .countryinfo-content ul li {
  padding: 0.6rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  position: relative;
  color: #676a79;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(103, 106, 121, 0.3);
}
.countryinfo-body .countryinfo-content ul li:nth-child(1) {
  font-size: 23px;
}
.countryinfo-body .countryinfo-content ul li b {
  font-weight: 500;
  color: #D9212D;
}
.countryinfo-body .countryinfo-content ul li:nth-child(2) b {
  font-weight: 400;
}

.eaplus-loader {
  position: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  margin: auto;
  left: 0;
  right: 0;
}
.eaplus-loader .inner-loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #D9212D;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.slider-body {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.slide-body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideframe 12s infinite;
}
.slide-body.slide-body:nth-child(1) {
  background-image: url("../images/bg-slide1.jpg");
  animation-delay: 0s;
}
.slide-body.slide-body:nth-child(2) {
  background-image: url("../images/bg-slide2.jpg");
  animation-delay: 3s;
}
.slide-body.slide-body:nth-child(3) {
  background-image: url("../images/bg-slide3.jpg");
  animation-delay: 6s;
}
.slide-body.slide-body:nth-child(4) {
  background-image: url("../images/bg-slide4.jpg");
  animation-delay: 9s;
}
.slide-body.slide-body:nth-child(5) {
  background-image: url("../images/bg-slide5.jpg");
  animation-delay: 12s;
}

@keyframes slideframe {
  0%, 33.33% {
    opacity: 1;
    transition: all ease-in 0.1s;
  }
  33.34%, 100% {
    opacity: 0;
    transition: all ease-in 0.1s;
  }
}
.card-expand-modal {
  min-height: 92vh;
  border: 0;
  box-shadow: none;
}
.card-expand-modal .card-container {
  transform: rotate(90deg) scale(1.8);
}
@media only screen and (max-width: 991px) and (orientation: landscape) {
  .card-expand-modal .card-container {
    transform: rotate(0deg) scale(1.65);
  }
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .card-expand-modal .card-container {
    transform: rotate(0deg) scale(1.4);
  }
}
@media only screen and (max-width: 380px) {
  .card-expand-modal .card-container {
    transform: rotate(90deg) scale(1.4);
  }
}
.card-expand-modal .card-container .eaplus-card-back {
  text-align: center;
}
.card-expand-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 0;
  outline: none;
  opacity: 1;
  z-index: 1;
}
.card-expand-modal .btn-close svg {
  width: 16px;
}
.card-expand-modal .offcanvas-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #555555;
}
.card-expand-modal .flipcard-btn {
  background: none;
  border: 0;
  outline: none;
  position: absolute;
  right: 20px;
  bottom: 30px;
}
.card-expand-modal .flipcard-btn svg {
  width: 28px !important;
  height: 28px !important;
}

.install-content {
  padding: 2rem 1rem;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
}
.install-content .logo {
  max-width: 120px;
}
.install-content .title {
  font-size: 1.8rem;
  color: #676a79;
  font-weight: 600;
  max-width: 350px;
  margin: auto;
  text-align: center;
}
.install-content .title2 {
  font-size: 1.5rem;
  color: #676a79;
  font-weight: 600;
  text-align: center;
}
.install-content hr {
  max-width: 350px;
  margin: 2rem auto;
}
.install-content .btn-primary {
  width: 90%;
  max-width: 350px;
  border-radius: 40px;
}
.install-content .copyright-footer {
  width: 100%;
  text-align: center;
  font-size: 14px;
}/*# sourceMappingURL=main.css.map */