/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: transparent !important;
  color: rgba(34, 46, 58, .75);
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  font-weight: 300;
}

#content #header,
#content #footer {
  display: none;
}

#content {
  margin-top: -16px;
}

section#about {
  padding: 30px 0;
}

h1 {
  font-size: 3.5em;
  font-weight: 500;
  /* background-color: white;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text; */
  line-height: 1.2;
  text-align: left;
}

h2 {
  background: linear-gradient(256.7deg, #2a2b32 0, #2a2b32 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-align: center;
  padding: 0px 0 6px;
  font-size: 2em;
  font-weight: 600;
  letter-spacing: -.8px;
  line-height: 52px;
  font-family: Inter, Gordita, sans-serif;
}

h3 {
  font-weight: 500;
  font-size: 1.5em;
  color: #2a2b32;
  padding: 20px 0;
}

h4 {
  padding: 20px 0;
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.logo {
  float: left;
}

.logo a span {
  color: #50AAFD;
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
  text-decoration: none;
}

.navbar {
  float: right;
}

a {
  text-decoration: none;
}

a img {
  cursor: pointer;
}

.row {
  align-items: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.float-left {
  float: left;
}

.hide {
  display: none;
}

textarea,
select,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
  border-radius: 5px;
  background: #e3eeff;
  border: none;
  color: #595959;
  padding: 10px 12px;
  outline: 0;
  margin: 0;
  vertical-align: middle;
  width: 100%;
}

textarea:focus,
select:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus {
  outline-color: rgba(0, 0, 0, 0.1);
  outline-offset: -2px;
  outline-style: auto;
  outline-width: 5px;
}

textarea[disabled],
select[disabled],
input[type="date"][disabled],
input[type="datetime"][disabled],
input[type="datetime-local"][disabled],
input[type="email"][disabled],
input[type="month"][disabled],
input[type="number"][disabled],
input[type="password"][disabled],
input[type="search"][disabled],
input[type="tel"][disabled],
input[type="text"][disabled],
input[type="time"][disabled],
input[type="url"][disabled],
input[type="week"][disabled] {
  color: #eee;
}

input[disabled],
select[disabled],
select[disabled] option,
select[disabled] optgroup,
textarea[disabled] {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  color: #b3b3b3;
  cursor: default;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #b3b3b3;
}

button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  border-radius: 99px;
  background: #ccc;
  border: 0;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-shadow: none;
  cursor: pointer;
  display: inline-block;
  outline: 0;
  overflow: visible;
  margin: 0;
  text-decoration: none;
  vertical-align: middle;
  width: auto;
}

button:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  text-decoration: none;
  background: #bfbfbf;
}

button[disabled],
input[type="reset"][disabled],
input[type="submit"][disabled],
input[type="button"][disabled] {
  background: #e0e1e2;
  color: rgba(0, 0, 0, 0.6);
  cursor: not-allowed;
}

button[disabled]:hover,
input[type="reset"][disabled]:hover,
input[type="submit"][disabled]:hover,
input[type="button"][disabled]:hover {
  background: #e0e1e2;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 5%;
  bottom: 3%;
  z-index: 996;
  background: #50AAFD;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #1C5D85;
  color: #50AAFD;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 9999;
  width: 100%;
  position: fixed;
  top: 0px;
}

#header div {
  margin-top: 10px;
  margin-bottom: 10px;
  justify-content: space-between !important;
}

#header .logo h1 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-transform: capitalize;
  color: #2a2b32;
  float: left;
  margin: 6px 10px;
}

#header .logo img {
  padding: 0;
  float: left;
  width: 40px;
}

.inverted {
  background-color: #fff;
  box-shadow: 0 3px 5px 0.3px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
.nav-account {
  background-color: #50AAFD;
  border-radius: 50px;
  padding: 4px 18px !important;
  color: White !important;
  width: fit-content;
  cursor: pointer;
}

.nav-account:hover {
  color: White !important;
  background-color: #123D59;
}

/* Desktop Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li:nth-child(5) {
  display: block;
}

.navbar li:nth-child(7),
.navbar li:nth-child(8) {
  display: block;
  top: 29%;
}

.navbar li:nth-child(8) .copyright {
  display: block;
}

.navbar li a svg {
  margin-right: 6px;
  width: 18px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #2a2b32;
  font-weight: 400;
  white-space: nowrap;
  transition: 0.3s;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
}

.navbar a:hover,
.navbar li:hover>a {
  color: #50AAFD;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 160px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #50AAFD;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .dropdown .bi-globe {
  margin: 0px 6px 0 2px;
  font-size: 16px;
}

.navbar .logo {
  display: none;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: black;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: black;
}

.nav-lang-font {
  margin-right: 6px;
  font-size: 18px;
}

.navbar-mobile .nav-account {
  margin-left: 20px;
}

.navbar-mobile ul:nth-child(2) {
  top: 70%;
  background-color: transparent !important;
}

.navbar-mobile .logo {
  display: block;
  float: none;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
footer {
  background: url(/img/footer-bg.png) no-repeat center bottom;
  background-color: #fdfdfd;
}

.footer_top {
  padding: 100px 0px 40px;
  position: relative;
  overflow-x: hidden;
}

.footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 20px;
  width: 80%;
}

.footer_top .f_widget.about-widget .f_list li a:hover {
  color: #ff8200;
}

.footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}

.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}

.footer_top .f-title {
  margin-bottom: 10px;
}

.footer_top .f-title img {
  width: 42px;
}

.footer_top .f_widget.about-widget .f_list li a {
  color: rgba(34, 46, 58, .75);
  text-decoration: none;
}

/*--------------------------------------------------------------
  # Background Style
  --------------------------------------------------------------*/
.about-wrapper {
  background-color: white;
  background-position: 0% 30%;
  width: 100%;
  padding-top: 100px;
}

.support-wrapper {
  background-position: 0 -216px;
  width: 100%;
  background-repeat: no-repeat;
  padding-top: 100px;
}

.bg-counter-pixel {
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.bg-map-line {
  background-image: url(/img/bg-map-line.png);
  background-color: #fafafa;
  background-position: center;
  width: 100%;
  background-repeat: no-repeat;
  padding: 100px 0 4%;
}

.bg-v-white {
  background: #fafafa url(/img/bg-v-white.png);
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 0% 0 5% 0;
}

.bg-fixed {
  background-attachment: fixed;
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
#about img {
  width: 80%;
}

ul.benefit {
  color: #6e6e6e;
  font-size: large;
  font-weight: 400;
  padding: 0px;
  margin: 40px 0px 20px;
}

ul.benefit li {
  list-style-type: none;
  line-height: 40px;
}

ul.benefit li:before {
  content: url(/img/icon-tick.png);
  margin-right: 16px;
}

/*--------------------------------------------------------------
  # Button
  --------------------------------------------------------------*/
button {
  background-color: #50AAFD;
  border-radius: 50px;
  color: white;
  border: 0;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid #50AAFD;
  padding: 10px 26px;
  margin-bottom: 4%;
  min-width: 140px;
  position: relative;
}

button:hover {
  background-color: #123D59;
  color: white;
  border-color: #123D59;
}

.btn-email {
  background-color: transparent;
  border: 1px solid #6c91e9;
  color: #6c91e9;
  margin-left: 20px;
}

.btn-email:hover {
  border-color: #123D59;
  color: #123D59;
  background-color: transparent;
}

.androidbtn{
  background-color: white;
  color: #50AAFD;
  border: 2px solid #50AAFD;
  margin-left: 12px;
}

.androidbtn img {
  height: 24px;
  width: auto;
  margin-right: 5px;
}

.androidbtn:has(img[src=""]) {
  display: none;
}

.windowbtn {
  background-color: white;
  color: #50AAFD;
  border: 2px solid #50AAFD;
  margin-left: 12px;
}

/*--------------------------------------------------------------
# Open Install Button
--------------------------------------------------------------*/
.devicesbtn {
  width: 300px;
  margin: 0;
}

.btn-dl {
  background: -webkit-linear-gradient(-90deg, #349dff 30%, #1564FC 100%);
  box-shadow: inset 1px 1px 1px 1px #349dff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 22px;
  color: white;
  text-align: center;
  padding: 16px 60px;
  display: block;
  align-items: center;
  cursor: pointer;
  float: left;
  margin: 20px auto;
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.btn-dl:hover {
  transform: scale(1.1);
  transition: all .2s ease-in-out;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

.btn-dl::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #349dff;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#1564FC, #349dff);
  -webkit-animation: rotate 4s linear infinite;
  animation: rotate 4s linear infinite;
}

.btn-dl::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  top: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: #50AAFD;
  border-radius: 30px;
}

/*--------------------------------------------------------------
# Support
--------------------------------------------------------------*/
#support .row {
  align-items: flex-start;
}

#support img {
  width: 70%;
}

#support .category {
  color: #123D59;
  padding-top: 30px;
  padding-bottom: 30px;
}

#support ul {
  padding: 0px;
  margin: 0px;
}

#support ul li {
  list-style-type: none;
  line-height: 38px;
  color: #123D59;
}

article a {
  text-decoration: underline;
  color: #123D59;
}

article a:hover {
  color: #50AAFD;
}

.session h4 {
  font-weight: 600;
}

#support ul li a {
  text-decoration: none;
  color: #123D59;
}

#support ul a li:hover {
  color: #123D59;
}

#support ul a:hover li {
  font-weight: 700;
}

#support h4 {
  text-decoration: underline;
}

#support .faq-session {
  pointer-events: none;
}

#support .faq-icon,
#support #dropdown1,
#support #dropdown2,
#support #dropdown3,
#support #dropdown4 {
  display: none;
}

.download-wrap {
  padding: 80px 0 0;
}

.download-wrap ul {
  padding: 0px;
  margin: 0px;
  clear: both;
  display: flow-root;
}

.download-wrap ul li {
  list-style-type: none;
  float: left;
  background-color: #F3B41B;
  width: 23%;
  margin-right: 2%;
  text-align: left;
  padding: 12px 4px;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 18, 25, .04);
  text-align: center;
  color: white;
}

.download-wrap ul li:hover {
  background-color: #123D59;
  color: white;
}

.download-wrap ul li b {
  font-size: 1.2em;
  font-weight: 600;
}

.download-wrap .ios-session {
  margin: 2% 0 4%;
  display: block;
  clear: both;
}

/*--------------------------------------------------------------
# Download
--------------------------------------------------------------*/
#download,
#download h2,
#download p {
  color: #6e6e6e;
  text-align: center;
}

#download span {
  color: #50AAFD;
  font-weight: 600;
  font-size: 5em;
  display: inline-block;
}

#download img {
  width: 50%;
}

#why {
  text-align: center;
  padding: 80px 0;
}

#why img {
  width: 70%;
}

#why p {
  padding: 40px 0;
}

/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.install-step {
  margin: 80px 0px;
}

.install-step .section-title p {
  text-align: center;
}

.install-step .container .content {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAFAFA;
  padding: 56px;
  padding-bottom: 64px;
  border-radius: 8px;
  position: relative;
}

.install-step .container .content.mi-bg {
  background-color: #fffef6;
}

.install-step .container .content .step {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 28px;
}

.install-step .container .content .step .number {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 2px solid #FFCE02;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.8);
  font-size: 40px;
  font-weight: 500;
  flex-shrink: 0;
}

.install-step .container .content .step .right {
  margin-left: 24px;
  min-width: 160px;
}

.install-step .container .content .step .right .name {
  font-size: 20px;
  color: #222222;
  font-weight: 600;
}

.install-step .container .content .step .right .des {
  display: block;
  font-size: 13px;
  color: #7b7b7b;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.6;
  max-width: 160px;
}

.install-step .container .content .step:last-child {
  margin-bottom: 0px;
}

.install-step .container .content .detail {
  position: absolute;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px 50px 0 0;
  background: #ececec;
  color: rgba(0, 0, 0, 0.6);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 189px;
  text-align: center;
  transition: all 0.2s ease;
}

.install-step .container .content .detail:hover {
  background: #50AAFD;
  color: white
}

.install-step .container .content .arrow {
  display: block;
  width: 100px;
  height: 1px;
  border: 1px dashed rgba(0, 0, 0, 0.4);
  background-size: contain;
  bottom: 0;
}

.install-step .container h4.maintenance {
  color: red !important;
  text-align: center;
  display: block;
  font-size: 1.5rem;
}

.install-step button{
    font-size: smaller;
    padding: 10px 20px;
    width: fit-content !important;
    margin-bottom: 0 !important;
}

.install-step button:empty{
  display: none;
}

.install-step h2:empty {display:none;}
.install-step p:empty {display:none;}
.bg-map-line button:empty {display: none;}
.install-step .windowlitebtn:empty {display: none;}

.install-step #login-btn {
  display: block;
  margin: 0 auto;
}

/* .install-step img {
  width: 100px;
} */

.install-step .section-title h4.quote {
  text-align: center;
  font-size: 1.5em;
  color: #349dff;
  margin-top: 0px;
  padding-top: 0px;
}

button strong:empty{
  display: none;
}
  

/*--------------------------------------------------------------
# windows
--------------------------------------------------------------*/
.windows .col-main {
  flex: 1;  
}  

.windows .col-complementary {
  flex: 1;  
}

.windows {
  padding: 0px 0px 80px;
  color: #2d4351;
  background-color: #FAFAFA;
}

.windows ul {
  margin: 20px;
  position: relative;
  padding: 20px;
  list-style: none;
}

.windows ul li {
  margin: 20px 0px;
}

.windows ul li button strong {
  font-size: 0.8rem !important;
  font-weight: 400;
}

.windows .content {
  padding-top: 0px !important;
}

.windows img {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.windows strong {
  font-size: 10px;
  font-weight: 600;
}

.windows button {
  background-color: #50AAFD;
  color: white;
}

.windows button:hover {
  background-color: #123D59;
  color: white;
}

.windows .img-testflight {
  width: 100px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.windows .btn-icon {
  width: 30px;
  margin-right: 10px;
}

.windows .col {
  padding: 1em;
  border-radius: 10px;
  background: #fafafa;
  box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

article .img-windows {
  float: right;
  width: 170px;
  right: 0px;
  position: absolute;
}

.new-lite {
  height: 40px;
  width: auto;
  position: absolute;
  top: -40px;
  left: -10px;
  z-index: 999;
}

p.preamble a:link {
  position: relative;
  display: inline;
  z-index: 999;
}

@media only screen and (min-width: 1024px) {
	.windows .layout {
		display: flex;
	  }
  }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  padding: 80px 0;
  background-color: #fafafa;
}

#contact img {
  float: right;
  padding-right: 6%;
}

#contact p {
  margin-top: 20px;
}

/*--------------------------------------------------------------
# article
--------------------------------------------------------------*/

article {
  background-color: #e3eeff;
  width: 100%;
  padding: 1% 0;
  position: relative;
  padding-top: 100px;
}

article h2 {
  text-align: left;
}

article .img-qna {
  float: right;
  width: 280px;
  margin-right: 10%;
  margin-top: -10%;
}

.session {
  margin-top: 4%;
  margin-bottom: 4%;
}

.session .row {
  align-items: flex-start;
}

ul.question {
  margin: 0px;
  padding: 0px;
}

ul.question li {
  list-style-type: none;
  padding-bottom: 20px;
}

ul.question li.selected {
  font-weight: 700;
  font-weight: 30px;
}

ul.question li a {
  text-decoration: none;
  color: #123D59;
}

ul.question li a:hover {
  text-decoration: underline;
  color: #50AAFD;
}

.answer p img {
  display: block;
  width: 38%;
  margin: 30px 0 40px;
}

/*--------------------------------------------------------------
# Banner text Section
--------------------------------------------------------------*/
.m-intro {
  text-align: center;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  padding: 100px 0 2%;
}

.m-intro .e-text {
  position: relative;
  z-index: 100;
}

.m-intro .e-text h1,
h1 {
  /* color: #EA5847; */
  margin: 0;
  padding: 4% 50px 0 0;
  font-size: 4em;
  line-height: auto;
  position: relative;
  text-align: left;
  font-weight: 700;
}

@supports (-webkit-background-clip: text) {
  .m-intro .e-text h1,
  h1 {
    background: radial-gradient(ellipse at center, #555 0%, #2a2b32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.m-intro .e-text .subtitle {
  font-weight: 300;
  /* text-transform: uppercase; */
  color: #6e6e6e;
  font-size: xx-large;
}

.m-intro .e-text .top-subtitle {
  font-weight: 300;
  /* text-transform: uppercase; */
  color: #6e6e6e;
  font-size: x-large;
}

.m-intro .e-text .preamble {
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}

.left-container {
  margin-top: 30px;
  width: 62%;
  float: left;
  text-align: left;
}

.right-container {
  width: 38%;
  float: right;
}

.banner-rocket {
  margin: 0 auto;
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# VIP Benefits
--------------------------------------------------------------*/
ul.vipbenefit {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  color: #2a2b32;
  margin: 50px 0 0;
}

ul.vipbenefit li:first-child {
  width: 80px;
  margin-right: 30px;
  align-items: center;
}

ul.vipbenefit li p,
ul.vipbenefit li h4 {
  margin: 4px 0;
  padding: 0px;
}

ul.vipbenefit li p {
  font-size: 16px;
}

ul.vipbenefit li {
  list-style-type: none;
  padding: 0px;
  float: left;
  width: 75%;
  vertical-align: top;
  min-height: 130px;
}

p:empty {
  display: none;
}

button.benefitbtn{
  margin-top: 4%;
}

 p.preamble button strong {
  font-size: 10px;
}

.dl-warning{
  font-size: smaller;
  margin-top: -25px;
}

.dl-warning:empty{
  display: none;
}

/*--------------------------------------------------------------
# Platform
--------------------------------------------------------------*/
#platform {
  padding: 50px 0px 80px;
  background-color: #e3eeff;
}

ul.platform {
  margin: 20px auto;
  text-align: center;
  width: 80%;
}

ul.platform li {
  list-style-type: none;
  width: 20%;
  float: left;
  padding: 20px 0px 10px;
  border-radius: 4px;
  background-color: white;
  box-shadow: 2px 2px 4px rgba(0, 18, 25, .04);
  border-radius: 8.74721px;
  border-radius: 6px;
  margin: 0 2%;
}

ul.platform li img {
  width: 30px;
}

ul.platform li span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  padding: 4px 0;
  color: #2a2b32
}

ul.platform li a {
  text-decoration: none;
  color: auto
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
section.world-node[data-v-011858e9] {
  position: relative;
  padding: 40px 0 80px;
  text-align: center;
}

section.world-node .world-map[data-v-011858e9] {
  position: relative;
  margin: 40px auto 0;
  width: 100%;
  text-align: center
}

section.world-node .world-map .map-img[data-v-011858e9] {
  opacity: 7;
  width: 100%
}

section.world-node .world-map .node-list .node-dot[data-v-011858e9] {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #165dff;
  box-shadow: 0 0 7px 1px #fff;
  border-radius: 8px;
  opacity: 1;
  border: 2px solid #fff;
  z-index: 1;
  cursor: pointer
}

section.world-node .world-map .node-list .node-dot[data-v-011858e9]:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  height: 20px;
  width: 20px;
  margin: -10px 0 0 -10px;
  animation: pulsate-a3a01502 2s linear;
  animation-iteration-count: 1;
  animation-iteration-count: infinite;
  background-color: #4679ff;
  border-radius: 100%;
  z-index: 0
}

section.world-node .world-map .node-list .node-dot.usa-lax[data-v-011858e9] {
  left: 14%;
  top: 54%
}

section.world-node .world-map .node-list .node-dot.tw[data-v-011858e9] {
  right: 19%;
  top: 60%
}

section.world-node .world-map .node-list .node-dot.hk[data-v-011858e9] {
  right: 20.3%;
  top: 60%
}

section.world-node .world-map .node-list .node-dot.fr[data-v-011858e9] {
  right: 52%;
  top: 48%
}

section.world-node .world-map .node-list .node-dot.sg[data-v-011858e9] {
  right: 24%;
  top: 68.4%
}

section.world-node .world-map .node-list .node-dot.kr[data-v-011858e9] {
  right: 17%;
  top: 53%
}

section.world-node .world-map .node-list .node-dot.jp[data-v-011858e9] {
  right: 13.5%;
  top: 54%
}

section.world-node .world-map .node-list .node-dot.de[data-v-011858e9] {
  right: 49.5%;
  top: 44%
}

section.world-node .world-map .node-list .node-dot.gb[data-v-011858e9] {
  right: 52.5%;
  top: 43%
}

section.world-node .world-map .node-list .node-dot.tr[data-v-011858e9] {
  right: 43.5%;
  top: 52%
}

section.world-node .world-map[data-v-011858e9]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: conic-gradient(from 180deg at 50.03% 32.23%, #165dff 37.17061043deg, #5679ff 136.87500358deg, #45adf9 163.95062685deg, #5f94f4 .57654631turn, #fb923c 228.04857731deg, #c82ee1 304.40840721deg, #fb923c 333.18861723deg);
  filter: blur(90px);
  -webkit-filter: blur(90px);
  opacity: .1;
  transition: opacity .3s ease-in-out;
  transform: translateZ(0)
}

section.world-node .world-node-more[data-v-011858e9] {
  margin-top: 60px;
  margin-bottom: 20px;
  text-align: center
}

section.world-node .world-node-more .more-btn[data-v-011858e9] {
  margin: 20px auto 0;
  min-width: 160px;
  height: 42px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  border-radius: 100px;
  transition: background-color .3s
}

@keyframes pulsate-a3a01502 {
  0% {
    -webkit-transform: scale(0);
    opacity: .05
  }

  20% {
    -webkit-transform: scale(.7);
    opacity: .1
  }

  40% {
    -webkit-transform: scale(1.5);
    opacity: .2
  }

  60% {
    -webkit-transform: scale(2);
    opacity: .3
  }

  to {
    -webkit-transform: scale(3);
    opacity: 0
  }
}

/*--------------------------------------------------------------
# Terms
--------------------------------------------------------------*/
.terms {
  margin-top: 40px;
  margin-bottom: 40px;
}

.terms h2 {
  padding-top: 80px;
}

.terms li{
  list-style-type: auto;
}

/*--------------------------------------------------------------
# Email Confirm
--------------------------------------------------------------*/
.email-container {
  position: relative;
  text-align: center;
  inset: 0px;
  width: 70%;
  max-width: 100vw;
  margin: 150px auto 60px;
}

.icon-successful,
.icon-failed {
  display: flow-root;
}

.btn-cfm {
  background-color: #50AAFD;
  border-radius: 50px;
  color: white;
  border: 0;
  font-weight: 500;
  font-size: larger;
  border: 1px solid #50AAFD;
  padding: 10px 50px;
  cursor: pointer;
}

.btn-cfm:hover {
  background-color: #123D59;
  color: white;
  border-color: #123D59;
}

/*--------------------------------------------------------------
# Loading
--------------------------------------------------------------*/
.loading-container {
  z-index: 9999999;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rocket {
  position: absolute;
  left: 25px;
  top: 25px;
  z-index: 10;
}

@keyframes star {
  0% {
    opacity: 0;
    transform: translate(100px, 0);
  }

  25% {
    opacity: 0.6;
    transform: translate(75px, 25px);
  }

  75% {
    opacity: 0.6;
    transform: translate(25px, 75px);
  }

  100% {
    opacity: 0;
    transform: translate(0, 100px);
  }
}

.star {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 0;
  left: 0;
  background: white;
  border-radius: 50%;
}

.star1 {
  animation: star 4s linear both infinite;
}

.star2 {
  width: 2px;
  height: 2px;
  left: 50px;
  animation: star 8s linear both infinite;
}

.star3 {
  background: rgba(255, 255, 255, 0.4);
  left: -50px;
  animation: star 1.5s linear 0.5s both infinite;
}

.star4 {
  width: 2px;
  height: 2px;
  left: -30px;
  background: rgba(255, 255, 255, 0.4);
  animation: star 3s linear 1s both infinite;
}

.star5 {
  left: 50px;
  animation: star 3.5s linear 5s both infinite;
}

.star6 {
  width: 2px;
  height: 2px;
  left: -10px;
  animation: star 6s linear 4.5s both infinite;
}

.star7 {
  width: 3px;
  height: 3px;
  left: 25px;
  animation: star 2s linear 4.5s both infinite;
}

.star8 {
  width: 2px;
  height: 2px;
  opacity: 0.2;
  background: #FFF;
  left: 15px;
  animation: star 3s linear 6.5s both infinite;
}

.star9 {
  width: 4px;
  height: 4px;
  left: -33px;
  background: #FFF;
  opacity: 0.5;
  animation: star 1.6s linear 5s both infinite;
}

.star10 {
  width: 3px;
  height: 3px;
  left: -40px;
  background: #FFF;
  opacity: 0.5;
  animation: star 1.8s linear 4.5s both infinite;
}

.star13 {
  background: rgba(255, 255, 255, 0.4);
  left: -50px;
  animation: star 1.5s linear 4.2s both infinite;
}

.star14 {
  width: 2px;
  height: 2px;
  left: -30px;
  background: rgba(255, 255, 255, 0.4);
  animation: star 3s linear 5s both infinite;
}

.myRocket {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.plamya1 {
  z-index: 3;
  position: absolute;
  top: 60px;
  left: 34px;
  animation: pulse 0.05s infinite ease-in-out alternate;
}

.plamya2 {
  z-index: 4;
  position: absolute;
  top: 58px;
  left: 40px;
  animation: pulse 0.03s infinite ease-in-out alternate;
}

@keyframes pulse {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# VIP
--------------------------------------------------------------*/
ul,
li {
  list-style-type: none;
}

.container-fluid .row .why-vip img {
  width: 80%;
}

.container-fluid .row .why-vip p {
  text-align: center !important;
  color: #595959;
  font-size: 14px;
}


/*new layout*/
ul.profile-container {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #F1F2F6;
  padding: 0px;
}

ul.profile-container li {
  padding: 10px;
  color: #909090;
}

ul.profile-container li:first-child {
  background-color: #e7eefe;
  color: black;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}


.vip-level,
.vip-session {
  /* background-color: #fdfdfd; */
  border-radius: 10px;
  text-align: left;
  /* padding: 3%; */
  font-weight: 500;
  font-size: medium;
  line-height: 24px;
  color: #6a6a6a;
  /* min-height: 265px; */
  /* margin-left: 20px; */
}

.vip-level {
  width: 100%;
  float: left;
  position: relative;
  z-index: 99;
  margin-bottom: 4%;
}

.vip-level .row .sdate,
.vip-level .row .edate {
  float: left;
}

.vip-session {
  width: 100%;
  float: left;
  margin-top: 4%;
}

.vip-session .vip-plan {
  margin: 0px;
}

.vip-level span,
.vip-session span {
  font-weight: 500;
  font-size: medium;
  line-height: 24px;
  color: black;
}

.vip-level h4 {
  color: black;
}

.vip-level h4 span {
  font-weight: unset;
  font-size: unset;
  line-height: unset;
  color: unset;
  display: unset;
}

.vip-level .row,
.vip-session .row,
.payment-history .row {
  z-index: 999;
  position: relative;
}

.payment-history {
  display: inline-block;
}

.payment-history table thead {
  background-color: #e7eefe;
  color: black;
}

.vip-level a {
  float: right;
  text-align: right;
  text-decoration: underline;
  color: #ff8200;
}

.customer-service a {
  float: none;
}

.vip-level .account-col {
  border-bottom: #d9d9d9 solid 1px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.vip-level .account-col:last-child {
  border-bottom: none;
  margin-bottom: 0px;
}

.vip-level #btnLogout {
  background-color: transparent;
  color: #50AAFD;
  text-decoration: underline;
  font-size: 18px;
  padding: 0;
  border: none;
}

.vip-level ul {
  padding-left: 0;
}

.vip-level .row {
  margin-bottom: 14px;
}

#chgpwdForm button[type="submit"] {
  background-color: #50AAFD;
  ;
  color: white;
  margin-bottom: 30px;
}

#chgpwdForm button[type="submit"]:hover {
  background-color: #123D59;
}

.vip-session .vip-plan {
  margin-top: 3%;
}

.account-help {
  text-decoration: underline;
  color: #ff8200;
}

.profile span {
  display: block;
}

.vip-plan-box {
  align-items: center;
  display: inline;
}

.plan {
  position: relative;
  text-align: center;
  margin-bottom: 32px;
}

.plan ul.plan-details {
  padding: 0;
  margin: 0px;
  border: 2px solid #FF5569;
  background-color: white;
  border-radius: 10px;
  min-height: 180px;
}

#prd1 .plan ul.plan-details {
  height: 260px;
}

.plan-unselected ul.plan-details {
  border: 1px solid rgba(34,46,58,.1);
  padding: 0;
  margin: 0px;
  background-color: white;
  border-radius: 14px;
  min-height: 180px;
  box-shadow: none;
}

.plan ul.plan-details .saving {
  background-color: #FF5569;
  border-radius: 8px 0 8px 0;
  color: white;
  text-transform: capitalize;
  width: fit-content;
  min-width: 50%;
  max-width: 70%;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  font-size: 16px;
  padding: 4px 10px;
  position: absolute;
  top: -10px;
  left: 25%;
}

.plan-unselected ul.plan-details .saving{
  background-color: #6C91E9;
  border-radius: 8px 0 8px 0;
  color: white;
  text-transform: capitalize;
  width: fit-content;
  min-width: 50%;
  max-width: 70%;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  font-size: 14px;
  padding: 4px;
  position: absolute;
  top: -10px;
  left: 25%;
}

.plan ul.plan-details .days {
  font-size: 18px;
  color: #909090;
  margin-top: 20px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 4px;
}

.plan ul.plan-details .price {
  font-size: 38px;
  font-weight: 500;
  color: #2a2b32;
  padding: 0;
  text-align: center;
}

.plan ul.plan-details .price::first-letter {
  font-size: small;
  /* vertical-align: text-top; */
  margin-right: 5px;
}

.plan ul.plan-details .ogprice {
  padding: 0% 0 4%;
  text-decoration: line-through;
  width: 100%;
  height: 20px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.plan ul.plan-details li.button{
  background-color: #50AAFD;
  color: white !important;
  border: 1px solid #50AAFD;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 3%;
  cursor: pointer;
  width: 70%;
  margin: auto;
  font-weight: 600;
  margin-bottom: 20px;
}

.plan-unselected ul.plan-details li.button {
  background-color: white;
  color: #6C91E9 !important;
  border: 1px solid #6C91E9 !important;
}

.plan ul.plan-details .save {
  color: #3863c7;
  font-size: smaller;
  font-weight: 400;
  margin: 10px 0 0 0;
  background-color: #e7eefe;
  padding: 4px 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.icon-astro {
  height: 119px;
  position: absolute;
  text-align: center;
  top: -92px;
  right: 15px;
  display: none;
}

.vip-bg {
  /* background-image: url("/assets/img/vip-bg.webp"); */
  background-size: inherit;
  background-repeat: no-repeat;
  margin-bottom: -30px;
  background-position: center;
}

.vip-bg h1 {
  margin-top: 40px;
  padding-top: 8%;
  color: #2a2b32;
  font-size: 40px;
}

.vip-bg h4 {
  color: #2a2b32;
  text-align: left;
}

.vip-bg h2 {
  text-align: left;
  color: #001D2F;
  font-size: 26px;
  font-weight: 600;
}

.btn-paynow {
  background-color: #50AAFD;
  border-radius: 50px;
  color: white;
  border: 0;
  font-weight: 500;
  font-size: larger;
  border: 1px solid #50AAFD;
  padding: 10px 50px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.btn-paynow:hover {
  background-color: #123D59;
  border-color: #123D59;
}

.vip-plan {
  justify-content: start;
}

.vip-banner {
  padding-top: 4%;
}

.vip-banner h3 {
  color: #ff7300;
  font-size: 2.3em;
  padding: 0px;
}

.vip-banner h1 {
  font-size: 4em;
  padding: 0px;
  margin: 0px;
  color: #2a2b32;
  white-space: nowrap;
}

.vip-banner h4 {
  font-size: 2em;
  padding: 0px;
  margin: 0% 0 4% !important;
  color: #2a2b32;
}

/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/

:root {
  --swiper-theme-color: blue !important;
  font-weight: 800;
  --swiper-navigation-size: 24px !important;
}


.swiper {
  margin-top: 5%;
  margin-bottom: 7%;
}

.swiper-button-next,
.swiper-button-prev {
  top: 80% !important;
}

.fl {
  float: left;
}

.tl {
  text-align: left;
  margin: 0px;
}

.cs {
  padding: 0px !important;
  display: flow-root;
  margin: 0px;
  margin-bottom: 4%;
}

table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-radius: 10px;
  border-style: hidden;
  /* hide standard table (collapsed) border */
}

table caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}

table th,
table td {
  padding: 15px;
  text-align: left;
}

table th {
  font-size: 0.85em;
  /* letter-spacing: 0.1em;
  text-transform: uppercase; */
  font-weight: 500;
}

.account-nav .height {
  align-items: start;
  margin-top: 10%;
  margin-bottom: 5%;
}

.account-nav {
  z-index: 99;
  position: relative;
}

.account-nav .col:nth-child(1) {
  width: 25%;
  display: flow-root;
  margin-top: 2%;
}

.account-nav .col:nth-child(2) {
  width: 70%;
  display: flow-root;
  margin-top: 2%;
}

.renew {
  font-weight: 600;
  color: white;
  background-color: #ff8200;
  border-radius: 50px;
  position: absolute;
  height: 24px;
  text-align: center;
  padding: 0px 22px;
  font-size: 10px;
}

.img-more-vip {
  position: absolute;
}

.popup-load {
  position: fixed;
  top: 0;
  width: 100%;
  height: -webkit-fill-available;
  left: 0;
  z-index: 999;
}

.popup-bg {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  width: 100%;
  height: -webkit-fill-available;
  left: 0;
  z-index: 999;
}

.popup-bg .popup {
  background-color: white;
  border-radius: 10px;
  width: 400px;
  margin: auto;
  margin-top: 20%;
  padding: 30px;
  z-index: 99999;
}

.popup-bg .popup img {
  margin-top: -130px;
}

.popup-bg .popup a {
  border-radius: 10px;
    font-weight: 500;
    margin-bottom: 20px;
    float: right;
}

.popup-bg .popup .popup-content p {
  text-align: center !important;
}

.popup-bg .popup img.icon-closed {
  margin-top: -28px;
  cursor: pointer;
}

.popup-bg h2{
  padding-top: 10px;
  font-size: x-large;
  text-align: left;
}

/*--------------------------------------------------------------
# Timer
--------------------------------------------------------------*/
#clockdiv {
  margin-top: 20px;
	color: #fff !important;
	font-weight: 100;
	text-align: center;
	font-size: 30px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: 8px 10%;
  position: relative;
  background-image: url("../../img/clockdiv-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  height: 80px;
  width: 100%;
}

#clockdiv h4 {
  margin: 0px 10px;
  font-weight: 400;
  color: #fff !important;
  display: contents;
}

#clockdiv > div {
	display: inline-grid;
}

#clockdiv div > span {
	padding: 0 15px;
	display: inline-block;
  font-weight: 600;
}

#clockdiv .smalltext {
	font-size: 13px;
  margin-top: -6px;
}


/*--------------------------------------------------------------
# VIP create acc/sign in
--------------------------------------------------------------*/
.logincontent {
  border: #e3eeff 1px solid;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
  background-color: #e7eefe;
  display: flex;
  align-items: center;
}

.login-title {
  width: 100%;
  padding: 10px;
  gap: 30px;
  margin-top: 10px;
  margin: 10px 0;
}

.login-title p {
  margin-bottom: 0;
}

.login-title .create-acc {
  background-color: #50AAFD;
  color: white;
  padding: 10px 30px;
  border-radius: 40px;
  margin-left: 10px;
}

.sign-in p {
  margin-left: 10px;
}

.login-title .create-acc:hover{
  background-color: #50AAFD !important;
  color: white !important;
}

.login-title .create-acc p {
  font-weight: 600;
  white-space: nowrap;
}

.login-title .sign-in a {
  color: #ff8200;
  white-space: nowrap;
}

.login-title .sign-in a:hover {
  font-weight: bold;
  color: #50AAFD;
}

.login-input {
  background-color: #e3eeff;
  border-radius: 0 10px 10px 10px;
  display: flex;
  gap: 30px;
  padding: 20px 30px;
  margin-bottom: 40px;
}

.login-input .text-box {
  margin-top: 0;
  width: 25%;
}

.login-input input[type="password"],
.login-input input[type="text"] {
  color: #2a2b32;
  background-color: white;
  border-bottom: none;
  border-radius: 5px !important;
}

.login-input .text-box .bi {
  color: #00000060;
}

.login-input .text-box .alert-msg .bi {
  color: red;
}

.password-label {
  display: block;
  z-index: 999;
  position: absolute;
  top: 0;
  margin: 12px 40px 14px;
  color: #999;
  font-size: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.password-area {
  display: flex;
  align-items: center;
  gap: 1em;
}

.password-input {
  position: relative;
  width: 100%;
}

.password-input #passInput,
.password-input #passInput1,
.password-input #resetId,
.password-input #emailCode,
.password-input #email,
.password-input #oldpassInput,
.password-input #newpassInput1,
.password-input #newpassInput2,
.password-input #affiliateCode {
  padding-left: 40px;
  width: 100%;
  border-radius: 999em;
}

.password-input span {
  position: absolute;
  top: 50%;
  left: 0.7em;
  transform: translateY(-50%);
}

/* show / hide area */
.show-hide-el {
  position: absolute;
  right: 7%;
  height: 24px;
}

.toggle {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.text-box {
  position: relative;
  margin-top: 4%;
}

input[type="password"]:focus {
  outline: none;
}

label.active,
.password-label.active {
  display: none;
}

/*--------------------------------------------------------------
# Loading
--------------------------------------------------------------*/
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.donut-container {
  position: relative;
  margin-top: 30%;
  z-index: 99999;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 4rem;
}

.donut {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.3rem solid rgba(0, 0, 0, 0.3);
  border-top-color: #000;
  animation: 1.5s spin infinite linear;
}

.donut-container .img-load {
  width: 40px;
  position: absolute;
  top: 13px;
  text-align: center;
  left: 13px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Payment
--------------------------------------------------------------*/
.field {
  margin-bottom: 25px;
}

.field.full {
  width: 100%;
}

.field.half {
  width: calc(50% - 12px);
}

.field label {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.field input {
  padding: 12px;
  border-radius: 6px;
  border: 2px solid #e8ebed;
  display: block;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.field input:placeholder {
  color: #e8ebed !important;
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.flex.justify-space-between {
  justify-content: space-between;
}

.card {
  padding-bottom: 30px;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  padding-top: 10px;
}

.card .container {
  margin: 0 auto;
  text-align: left;
}

.card .card-title {
  margin-bottom: 50px;
}

.card .card-title h2 {
  margin: 0;
}

.card .card-body .payment-type,
.card .card-body .payment-info {
  margin-bottom: 25px;
}

.card .card-body .payment-type h4 {
  margin: 0;
}

.card .card-body .payment-type .types .type {
  width: 100%;
  position: relative;
  background: white;
  box-sizing: border-box;
  border-radius: 15px;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  border: 1px solid #F1F2F6;
  gap: 15px;
  padding: 10px;
  margin-bottom: 12px;
}

.card .card-body .payment-type .types .type.selected {
  border: 2px solid #6C91E9;
}

.card .card-body .payment-type .types .type::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  height: 30px;
  width: 30px;
  right: 15px;
  border: 2px solid #dadce0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.card .card-body .payment-type .types .type.selected::after {
  content: "✓";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  height: 30px;
  width: 30px;
  right: 15px;
  background: #6C91E9;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  color: white;
}

.card .card-body .payment-type .types .type .logo,
.card .card-body .payment-type .types .type p {
  transition: all 0.5s ease;
}

.card .card-body .payment-type .types .type .logo img {
  font-size: 40px;
  color: #8a959c;
  height: 36px;
}

.card .card-body .payment-type .types .type p {
  margin-bottom: 0;
  font-weight: 400;
  color: #2a2b32;
  line-height: 40px;
  margin-right: 10px;
  width: fit-content;
}

.card .card-body .payment-info .column {
  width: calc(50% - 25px);
}

.card .card-body {
  padding: 0px;
  position: relative;
}

.card .voucher-btn{
  background-color: transparent !important;
  color: #ff8200;
  border: none;
  padding-right: 0;
  width: fit-content;
  margin-bottom: 0;
  padding: 0px;
}

.card .voucher-btn img{
  height: 50px;
  width: auto;
}

.payment-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.payment-btn p {
  font-size: 12px;
  margin-bottom: 0px;
  color: #a2a2a2;
  width: 100% !important;
}


/*--------------------------------------------------------------
# login/register
--------------------------------------------------------------*/
.yellow-bg {
  margin-top: 115px;
  margin-bottom: 50px;
}

.yellow-bg .container {
  display: flex;
  align-items: stretch;
  background: white;
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
  flex-wrap: wrap;
  border-radius: 20px;
  width: 50%;
}

.yellow-bg h2 {
  padding-top: 0;
}

.new-pwd-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background-image: url("../../img/login-bg.webp");
  background-size: cover;
  background-repeat: none;
  width: 40%;
  border-radius: 20px 0 0 20px;
  flex-direction: column;
  background-position: right;
}

.new-pwd-img img {
  width: 80%;
  margin: 4% 0;
}

.input-content {
  border-radius: 10px;
  padding: 2%;
  text-align: center;
  display: flow-root;
  margin: 0 4%;
  z-index: 99;
}

.input-content p {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: rgba(60, 60, 67, 0.6);
  margin: 0px;
  margin-top: 3%;
}

.input-content h5 {
  margin-bottom: 0px;
  font-size: 18px;
}

.alert-msg {
  line-height: 10px;
  margin-top: 6px;
  margin-bottom: 16px;
  text-align: center;
}

.alert-msg i {
  color: red;
}

.alert-msg span {
  font-size: 16px;
  color: red;
}

.input-container p a {
  color: #ff8200 !important;
}

.input-container button {
  background: #50AAFD;
  border-radius: 999em;
  text-align: center;
  font-size: small;
  color: white;
  margin: 5% 0 0;
  width: 100%;
  padding: 3% 0px;
  font-family: inherit;
  border: 1px solid #50AAFD;
}

.input-container .reset-btn {
  width: 49%;
}

.input-container button.btn-light {
  background: #cecece;
  border-color: #cecece;
  width: 49%;
}

.account-link {
  text-decoration: underline;
  font-size: small;
  color: #ff8200;
}

p.forgot-link a {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: rgba(60, 60, 67, 0.6) !important;
}

p.forgot-link {
  margin-bottom: 0px;
}

p.tnc {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: rgba(60, 60, 67, 0.6);
  margin: 2% 0;
}

.input-container p a.tnclink {
  text-decoration: underline;
  color: #ff8200;
}

.verify-email {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  color: rgba(60, 60, 67, 0.6);
  margin: 2% 0;
}

.verify-email a {
  background-color: #ff8200;
  color: white;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  /* float: right; */
  padding: 2% 8%;
}

.verify-email a:hover {
  background-color: #f5bb44;
  color: black !important;
}

.btn-resend {
  float: right;
  position: absolute;
  right: 10px;
  top: 0px;
  margin-top: 5px;
}

.btn-resend button {
  padding: 6px 20px;
  margin: 0;
}

#resetpwsForm input[type="button"] {
  float: left;
}

#resetpwsForm input[type="submit"] {
  float: right;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.hide-important {
  display: none !important;
}

.new-successful a {
  margin-top: 10%;
  display: block;
  font-size: medium;
}

.password-label {
  display: block;
  z-index: 999;
  position: absolute;
  top: 0;
  margin: 12px 35px 14px;
  color: #999;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.password-area {
  display: flex;
  align-items: center;
  gap: 1em;
}

.password-input {
  position: relative;
  width: 100%;
}

.password-input #passInput,
.password-input #passInput1,
.password-input #resetId,
.password-input #emailCode,
.password-input #email,
.password-input #oldpassInput,
.password-input #newpassInput1,
.password-input #newpassInput2,
.password-input #affiliateCode {
  padding-left: 40px;
  width: 100%;
  border-radius: 999em;
}

.password-input span {
  position: absolute;
  top: 50%;
  left: 0.7em;
  transform: translateY(-50%);
}

/* show / hide area */
.show-hide-el {
  position: absolute;
  right: 7%;
  height: 24px;
}

.toggle {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.text-box {
  position: relative;
  margin-top: 4%;
}

input[type="password"]:focus {
  outline: none;
}

label.active {
  top: -23px;
  background-color: white;
  padding: 0 10px;
}

/* 3. ScrollSpy active styles (see JS tab for activation) */
.section-nav li.active a {
  color: #333;
  font-weight: 500;
}

/* Sidebar Navigation */
.section-nav {
  text-align: left;
}

.section-nav ul {
  margin: 0px;
  padding: 0px;
}

.section-nav ul li.selected {
  background-color: #ff8200;
  font-size: 1em;
  color: white;
}

.section-nav ul li.hide {
  display: none;
}

.section-nav ul li.selected {
  color: white;
}

.section-nav ul li.selected span,
.section-nav ul li.selected p,
.section-nav ul li:hover span,
.section-nav ul li:hover p {
  color: white;
}

.section-nav ul li:hover,
.section-nav ul li.selected {
  background-color: #50AAFD;
}

.section-nav ul li img {
  float: left;
  margin-right: 10px;
}

.section-nav ul li {
  color: #242833;
  padding: 8px;
  position: relative;
  width: 100%;
  display: flow-root;
  border-radius: 10px;
  margin-bottom: 12px;
}

.section-nav ul li p {
  float: left;
  padding: 0px;
  margin: 0px;
}

.section-nav ul li span {
  color: #5d6373;
  float: left;
}

.section-nav a {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #242833;
  transition: all 50ms ease-in-out;
  /* 💡 This small transition makes setting of the active state smooth */
}

.section-nav a:hover,
.section-nav a:focus {
  color: #242833 !important;
}

.menu-title {
  display: flex;
  flex-direction: column;
}

.container-fluid .row .col p,
.container-fluid .row .col h1 {
  text-align: left !important;
  padding-bottom: 0px;
}

.container-fluid .row h3,
.container-fluid .row h5 {
  text-align: left;
  margin-top: -3%;
}

.container-fluid .row hr {
  border-width: 1px !important;
  width: 100% !important;
  margin-top: 4% !important;
  margin-bottom: 4% !important;
  background-color: transparent !important;
}

.container-fluid p a {
  text-decoration: underline;
  color: #fac03d;
}

.button {
  padding: 10px 20px;
  margin-bottom: 20px;
  background: #fedc5e;
  border-radius: 6px;
  color: #242833 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: small;
}

.section-nav ul li .menu-icon {
  background-color: #F1F2F6;
  width: 36px;
  height: 36px;
  float: left;
  border-radius: 8px;
  position: relative;
  color: #242833;
  margin-right: 10px;
}

.section-nav ul li .menu-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
}

.section-nav ul li.selected .menu-icon {
  background-color: white;
  color: #50AAFD;
}

/*--------------------------------------------------------------
# Service session
--------------------------------------------------------------*/
#services {
  padding: 80px 0 40px 0;
}

#services .circle {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #f1f2f6;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  margin-top: 10px;
}

#services .container .row .col-lg-4:nth-child(4) .circle,
#services .container .row .col-lg-4:nth-child(5) .circle {
  margin-bottom: 0;
}

#services .circle:hover {
  transform: translateY(-5px);
}

#services .circle .title {
  margin-left: 0px;
  font-weight: 700;
  font-size: 18px;
  color: #2a2b32;
}

#services .circle i {
  font-size: 80px;
  color: #63acf8;
}

.transparent {
  opacity: 0;
}

/*--------------------------------------------------------------
# Voucher Account
--------------------------------------------------------------*/
.coupon{
  background-color: #FFB800;
  color: white;
}

.voucher-claimed .coupon{
  background-color: #6C91E9 !important;
}

.voucher-exp .coupon{
  background-color: #DADCE0 !important;
}

.coupon h4{
  padding: 0;
  font-size: 1em !important
}

.coupon h3{
  color: white;
  padding: 0;
  margin: 0;
}
.coupon p{
  font-size: small;
  color: white;
}
.coupon .time{
  font-size: x-small;
  color: white !important;
  line-height: 0 !important;
  white-space: nowrap;
}

.coupon .button{
  border-radius: 50px;
  background-color: white;
  padding: 5px 15px;
  position: absolute;
  bottom: 5%;
  left: 10px;
  cursor: pointer;
}

.coupon .button:hover{
  background-color: #50AAFD;
  color: white !important;
}

.coupon .button[disabled] {
  pointer-events: none;
  opacity: 0.8;
}

.voucher-exp .coupon h4, .voucher-exp .coupon h3, .voucher-exp .coupon p, .coupon .time span .btn{
  color: #858585 !important;
}

.coupon .tengah{
  margin-left: 15px;
  align-items: center;
}
.coupon .kanan {
  border-left: 2px dashed white;
  width: 40% !important;
  position:relative;
}

.coupon .info{
  margin: 20px 10px !important;
}

.coupon .kanan .info::after, .coupon .kanan .info::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 100%;
}

.coupon .kanan .info::before {
  top: -10px;
  left: -10px;
}

.coupon .kanan .info::after {
  bottom: -10px;
  left: -10px;
}

/*--------------------------------------------------------------
# Voucher Popup
--------------------------------------------------------------*/
#voucher-popup.popup-bg {
  justify-content: center;
  align-items: center;
}

#voucher-popup.popup-bg .popup{
  background-color: white;
  border-radius: 10px;
  width: 60%;
  padding: 30px;
  z-index: 99999;
  margin: 0;
  min-width: 60%;
}

#voucher-popup .row{
  width: 100%;
}

#voucher-popup .coupon{
  background-color: #123D59 !important;
}

#voucher-popup .button{
  border-radius: 50px !important;
}

#voucher-popup .button.applied{
  background-color: #ff8200 !important;
  color: white !important;
}

#voucher-popup .coupon h4{
  color: white !important;
}

#voucher-popup .coupon.applicable{
  background-color: #DADCE0  !important;
}

#voucher-popup .coupon.applicable .button{
  font-size: xx-small;
  background-color: rgba(255, 255, 255, 0.36);
  padding: 5px 10px !important;
}

#voucher-popup.popup-bg .popup .popup-content p{
  text-align: left !important;
}

#voucher-popup .voucher-claimed {
  max-height: 500px;
  overflow-y: auto;
}

.totalprice{
  background-color: #f1f7ff;
  border-radius: 15px;
  padding: 30px;
  margin-left: 4%;
}

.totalprice .calculation-session{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.totalprice h6 {
  font-size: 1rem;
}

.totalprice #discount-amount,
.totalprice #voucher-amount {
  background-color: #ffcfd6;
  border-radius: 40px;
  padding: 4px 14px;
  color: red;
  font-weight: 400;
}

.totalprice span {
  font-size: 1rem;
  font-weight: 600;
}

.totalprice h6.grandtotal {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.25px;
  line-height: 26px;
  color: #59626b;
}

.totalprice #subtotal-amount {
  font-weight: bold;
  font-size: 1.2rem;
}

::-ms-reveal { 
  /* remove password reveal icon in MS-Edge */
  display: none;
}

#claim-voucher-anchor {
  text-decoration: underline;
  color: #ff8200;
  cursor: pointer;
}

#failDiv {
  text-align: center;
}

#failPwDiv {
  text-align: center;
}

.experience{
  padding-bottom: 0;
}

.experience h2{
  margin-bottom: 40px;
  margin-top: 20px;
}

.experience .experience-text .col-lg-12{
  border: 1px solid #e3eeff;
  min-height: auto;
  border-radius: 10px;
  padding: 20px;
  background: #e3eeff26;
  margin-bottom: 10px;
  margin-top: 5px;
}

.experience .experience-text p{
  margin-bottom: 0;
}

.experience .experience-text .col-sm-4{
  padding: 20px 10px 10px 20px ;
}

.experience .experience-icons .icons .col-sm-4{
  display: flex;
  flex-direction: row;
}

.experience .experience-icons .icons .col-sm-4 img{
  height: 24px;
  width: auto;
  margin-right: 10px;
}

.experience button{
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Google Search
--------------------------------------------------------------*/
.nav-banner-bg {
  background-color: white;
  width: 100%;
  height: auto;
  background-size: 100%;
  margin-top: -50px;
  background-position: 0% 28%;
}

.nav-big-banner {
  border-radius: 20px;
  width: 80%;
  margin-top: -8%;
}

.google-s {
  display: flow-root;
  margin-bottom: 3%;
  text-align: center;
  margin-top: 90px;
}

.google-s img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2%;
  display: block;
}

.google-s .gsc-input-box {
  border-radius: 30px;
  line-height: 40px;
  text-indent: 10px;
}

.google-s .gsib_a {
  padding: 5px 9px 4px 30px;
}

.google-s .gsc-search-button {
  display: none;
}

.google-s #___gcse_0 {
  width: 62%;
  margin-left: auto;
  margin-right: auto;
}

.google-session .col-md-6 {
  float: left;
  margin-top: 6%;
  color: rgb(32, 33, 36);
}

.google-session .banner{
  background-image: url("../../img/nav-banner.webp");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin: 0 1%;
  width: 100%;
  height: 100%;
  text-align: left;
  display: flex;
  align-items: center;
}

.google-session .banner div{
  width: 50%;
  padding-left: 20px;
}

.google-session .banner h3{
  margin-bottom: 0;
}

.google-session .banner .index-app-dl-btn{
margin: 10px 0 20px;
}

/*--------------------------------------------------------------
# Search Session
--------------------------------------------------------------*/
.search-container {
  width: 88%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  position: relative;
}

.search-container input[type="text"]{
  border: 1px solid #e3eeff;
  background: #e3eeff26;
  border-radius: 50px;
}

.search-container button {
  position: absolute;
  right: 2.5%;
  background-color: transparent;
  padding: 0px;
  top: 18%;
  border: none;
}

.search-container button i {
  color: #000;
  font-size: 1.2rem;
}

button#searchBtn:hover {
  background: transparent !important;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
ul.popular-app {
  margin: 0px;
  padding: 0px;
  margin-top: 4%;
}

ul.popular-app li {
  float: left;
  width: 25%;
}

ul.recommended-app li button {
  font-size: 12px;
  padding: 4px 20px;
  float: right;
  line-height: 16px;
  background-color: #50AAFD;
  font-weight: 400;
  min-width: 50px;
}

ul.popular-app li img {
  width: 64px;
}

ul.popular-app li a {
  display: block;
  font-size: small;
  color: rgb(32, 33, 36);
}

ul.recommended-app {
  display: flex;
  color: rgb(32, 33, 36);
  padding-left: 0px;
  flex-wrap: wrap;
}

ul.recommended-app li {
  width: 31%;
  margin: 1%;
  float: left;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 2px 4px 12px rgb(0 0 0 / 8%);
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}

ul.recommended-app li a img {
  width: 45px !important;
  margin-right: 10px;
  float: left;
  border-radius: 10px;
}

ul.recommended-app li a h6 {
  padding-bottom: 0px;
  margin-bottom: 10px;
  color: rgba(34, 46, 58, .75);
}

ul.recommended-app li a span {
  font-size: small;
  float: left;
  width: 218px;
  display: -webkit-box;
  max-width: 100%;
  margin: 0 auto;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 350;
  color: rgba(34, 46, 58, .75);
}

/*--------------------------------------------------------------
# Announcement bar
--------------------------------------------------------------*/
.block {
  display: block;
}

.hide {
  display: none;
}

#notification-bar {
  width: 100%;
  background-color: #ffffff;
  clear: both;
  z-index: 999;
  margin-bottom: 15px;
  background-image: url(/img/summer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#notification-bar .container {
  height: auto;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

#notification-bar p {
  display: inline-block;
  color: rgb(255, 255, 255); 
  margin-bottom: 0;
  animation: blinker 2s linear infinite;
  margin-right: 10px;
  /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); */
  font-weight: 600;
}

@keyframes blinker {
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
}

#notification-bar p strong{
  color: #ffde23;
  text-shadow: none;
}

#notification-bar a.btn-action {
  display: inline-block;
  height: auto;
  line-height: 35px;
  padding: 0px 30px;
  font-weight: bold;
  white-space: nowrap; 
  border-radius: 50px;
  border: 2px solid #ad262b;
  text-align: center;
  background-color: #fff;
  color: #ad262b;
  text-decoration: none;
}

#notification-bar a.btn-action:hover {
  background-color: #e3eeff;
}

/* ANIMATION for go up */

@-webkit-keyframes goUp {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  100% {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}

@keyframes goUp {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  100% {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}
/* ANIMATION for go down */

@-webkit-keyframes goDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes goDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

#resetpwsForm.hide {
  display: block !important;
  max-height: 0;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

#resetpwsForm {
  transition: transform 0.5s ease-out, opacity 0.5s ease-out, max-height 0.5s;
  max-height: 500px; /* Adjust as needed for your content */
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# macOS installation
--------------------------------------------------------------*/
.macos_install p img {
  width: 88% !important;
}

.macos-video {
  background-color: #FAFAFA;
  text-align: center;
  display: block;
  padding-bottom: 30px;
}

.macos-video video {
  width: 70%;
  align-items: center;
  display: inline;
}

.stepsios video {
  display: none;
}