/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
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;
}

#header {
  z-index: 9999;
  transition: all 0.5s;
  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: 12px 10px;
}

#header .logo img {
  padding: 0;
  float: left;
  width: 50px;
}

.inverted {
  background-color: #fff;
  box-shadow: 0 3px 5px 0.3px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
  #header.header-scrolled {
    display: block;
  }
}

a {
  text-decoration: none;
  color: initial;
}

button[disabled], input[type=reset][disabled], input[type=submit][disabled], input[type=button][disabled] {
  background: #e0e1e2 !important;
  color: rgba(0, 0, 0, .6);
  cursor: not-allowed;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
.nav-account {
  background-color: #ff8200;
  border-radius: 50px;
  padding: 4px 18px !important;
  color: White !important;
  width: fit-content;
  cursor: pointer;
}
  
.nav-account:hover {
  color: black !important;
  background-color: #f5bb44;
}

/* 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(7) .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: #FF8200;
}

.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: #FF8200;
}

.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;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* 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;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
      display: block;
  }

  .navbar ul {
      display: none;
  }

  .navbar-mobile {
      position: fixed;
      overflow: hidden;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      background: rgba(23, 35, 46, 0.9);
      transition: 0.3s;
      z-index: 999;
  }

  .navbar-mobile .mobile-nav-toggle {
      position: absolute;
      top: 15px;
      right: 15px;
  }

  .navbar-mobile ul {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      padding: 50px 0 0;
      background-color: #fff5d1;
      overflow-y: auto;
      transition: 0.3s;
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
      padding: 20px;
      font-size: 18px;
      color: black;
      text-decoration: none;
  }

  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
      color: #fedc5e;
  }

  .navbar-mobile li:nth-child(4) a:hover {
      color: #fedc5e;
      background-color: transparent;
  }

  .navbar-mobile .dropdown ul {
      position: static;
      display: none;
      margin: 10px 20px;
      padding: 10px 0;
      z-index: 99;
      opacity: 1;
      visibility: visible;
      background: #fff;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }

  .navbar-mobile ul li {
      min-width: 160px;
  }

  .navbar-mobile .dropdown ul a {
      padding: 10px 20px;
      color: black;
  }
  .navbar-mobile .dropdown ul a i {
      font-size: 12px;
  }

  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover > a {
      color: #fedc5e;
  }

  .navbar-mobile .dropdown > .dropdown-active {
      display: block;
  }

  .navbar-mobile a.nav-account {
    margin-left: 18px !important;
  }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
footer {
  background: url(/img/footer-bg.png) no-repeat center bottom;
  background-color: #fdfdfd;
}

.footer_top {
    padding: 150px 0px 40px;
    position: relative;
    overflow-x: hidden;
}

.footer_top .company_widget p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 20px;
}
.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:last-child {
    margin-bottom: 0px;
}

.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: 60px;
}

.footer_top .f_widget.about-widget .f_list li a {
    color: rgba(34,46,58,.75);
    text-decoration: none;
}

  
/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
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;
  /* letter-spacing: -2px; */
}

h2 {
  font-size: 2.4em;
  font-weight: 600;
  background: linear-gradient(256.7deg,#2a2b32 0,#2a2b32 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  line-height: 1.09;
  text-align: center;
  padding: 40px 0 6px;
  font-size: 40px;
  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;
}

p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
}

.logo {
  float: left;
}

.logo a span {
  color: #fedc5e;
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
  text-decoration: none;
}

.navbar {
  float: right;
}

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;
}

.f_600 {
  font-weight: 600;
}

.f_size_18 {
  font-size: 18px;
}

li {
  list-style-type: none;
}

.cursor {
  cursor: pointer;
}

/*--------------------------------------------------------------
  # Background Style
  --------------------------------------------------------------*/
.support-wrapper {
  /* background-image: url(/img/bg-support.png); */
    background-position: 0 -216px;
    width: 100%;
    background-repeat: no-repeat;
    padding-top: 100px;
}

.bg-fixed {
  background-attachment: fixed;
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
ul.benefit {
    color: #2a2b32;
    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;
}

#homepage img {
    width: 72%;
}

/*--------------------------------------------------------------
  # Button
  --------------------------------------------------------------*/

button {
  background-color: #ff8200;
  border-radius: 50px;
  color: white;
  border: 0;
  font-weight: 500;
  font-size: 1.2em;
  border: 1px solid #ff8200;
  padding: 10px 60px;
}

button:hover {
  background-color: #fedc5e;
  color: black;
  border-color: #fedc5e;
}

.btn-email {
  background-color: transparent;
  border: 1px solid #ff8200;
  color: #ff8200;
}

.btn-email:hover {
  border-color: #fedc5e;
  color: #fedc5e;
  background-color: transparent;
}

/*--------------------------------------------------------------
# Open Install Button
--------------------------------------------------------------*/
.openinstallc, 
.devicesbtn {
  width: 300px; 
  margin: 0;
}

.btn-dl {
  background: -webkit-linear-gradient(-90deg, #FFF09F 30%, #FFC242 100%);
  box-shadow: inset 1px 1px 1px 1px #FFF8CC;
  border-radius: 50px;
  font-weight: 700;
  font-size: 22px;
  color: black;
  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: #fedc5e;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#ff8200, #fedc5e);
    -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: #fffaf0;
  border-radius: 30px;
} 

/*--------------------------------------------------------------
# Support
--------------------------------------------------------------*/
#support .row {
  align-items: flex-start;
}

#support img {
  width: 70%;
}

#support ul {
  padding: 0px;
  margin: 0px;
  clear: both;
  display: flow-root;
}

#support ul li {
  list-style-type: none;
  line-height: 38px;
} 

article a {
  text-decoration: underline;
  color: #2a2b32;
}

article a:hover {
  color: #ff8200;
}

.session h4 {
  font-weight: 600;
}

#support ul li a {
  text-decoration: none;
  color: #ff8200;
}

#support ul li a:hover {
  font-weight: 700;
}

#support h4 {
  text-decoration: underline;
}

.download-wrap{
  padding: 5px 0;
}

#support ul li {
  list-style-type: none;
  float: left;
  background-color: #fedc5e;
  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: black;
}

#support ul li:hover {
  background-color: #f5bb44;
  color: white;
}

#support ul li b {
  font-size: 1.2em;
  font-weight: 700;
}

#support .ios-session {
  margin: 2% 0 4%;
  display: block;
  clear: both;
}

#support .logo-image {
  width: 300px;
}

/*--------------------------------------------------------------
# terms
--------------------------------------------------------------*/
.terms {
  margin-top: 80px;
}


/*--------------------------------------------------------------
# Download
--------------------------------------------------------------*/
#download,
#download h2,
#download p {
  color: #2a2b32;
  text-align: center;
}

.bg-shape h3 {
  color: #ffffff;
}

#download span {
  color: #fedc5e;
  font-weight: 600;
  font-size: 5em;
  display: inline-block;
}

#download img {
  width: 50%;
}

.step h4 {
  color: white;
  font-weight: 600;
  padding: 10px 0px 0px 20px;
}

/*--------------------------------------------------------------
# article
--------------------------------------------------------------*/

article {
  background-color: #fff5d1;
  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%;
}

.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: #2a2b32;
}

ul.question li a:hover {
  text-decoration: underline;
  color: #ff8200;
}

.answer p img {
  display: block;
  width: 38%;
  margin: 30px 0 40px;
}

.video-shortcode {
  width: 360px;
  text-align: center;
  margin-top: -20%;
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.m-intro {
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #FFE15F;
  /* background-image: url('/img/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0; */
  padding: 100px 0 2%;
}

.m-intro .e-text {
  /* width: 785px; */
  position: relative;
  z-index: 100;
}

.m-intro .e-text h1, h1 {
  /* color: #EA5847; */
  margin: 0;
  padding: 2% 0;
  font-size: 5em;
  line-height: auto;
  /* border-top: 1px solid #123D59;
  border-bottom: 1px solid #123D59; */
  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, #222 0%, #2a2b32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.m-intro .e-text .subtitle {
  font-weight: 400;
  /* text-transform: uppercase; */
  color: #2a2b32;
  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: left;
}

.banner-aox {
  width: 80%;
  margin: 0 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;}


/*--------------------------------------------------------------
# Platform
--------------------------------------------------------------*/
#platform {
  padding: 50px 0px 80px;
  background-color: #fff5d1;
}

ul.platform {
  margin: 20px auto;
  text-align: center;
  width: 80%;
}

ul.platform li {
  list-style-type: none;
  width: 16%;
  float: left;
  padding: 20px 0px 10px;
  border-radius: 6px;
  background-color: white;
  box-shadow: 2px 2px 4px rgba(0, 18, 25, .04);
  color: white;
  margin: 0 2%;
}

ul.platform li:hover {
  background: #fedc5e;
}

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
}

/*--------------------------------------------------------------
# test flight ios
--------------------------------------------------------------*/
.testflight .col-main {
  flex: 1;  
}  

.testflight .col-complementary {
  flex: 1;  
}

.testflight {
  padding: 80px 0px 0px;
  color: #2d4351;
}

.testflight h2{
  line-height: normal;
  padding-top: 0;
}

.testflight ul {
  margin: 20px;
  position: relative;
  padding: 20px;
  list-style: none;
}

.testflight ul li {
  margin: 20px 0px;
}

.testflight ul li:nth-child(2){
  margin-top: 46px;
}

.testflight ul li.red {
  color: red;
  font-size: 12px;
}

.testflight button {
  background-color: #ff8200;
  color: white;
}

.testflight button:hover {
  background-color: #fedc5e;
  color: black;
}

.testflight .step {
  padding: 8px 16px;
  position: absolute;
  left: -4px;
  top: -10px;
  background-color: #fedc5e;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-weight: 600;
}

.testflight .img-testflight {
  width: 100px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.testflight .btn-icon {
  width: 30px;
  margin-right: 10px;
}

.testflight .col {
  padding: 1em;
  border-radius: 10px;
  background: #FFFEF5;
  box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

/*--------------------------------------------------------------
# test flight content after login
--------------------------------------------------------------*/
.afdl {
  padding: 1em;
  border-radius: 10px;
  background: #FFFEF5;
  box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

h2.afheader {
  margin-top: 50px;
}

.afdl ul li {
  line-height: 32px;
  padding-left: 20px;
  padding-right: 20px;
  list-style-type: none;
}

.afdl strong {
  font-size: 20px;
}

.afdl span {
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  margin-top: 20px;
}

.afdl img {
  width: 120px;
  text-align: center;
  margin: 0px auto 20px;
}

.afdl li img.redeemcode {
  width: 240px !important;
  margin-left: auto;
  margin-right: auto;
}

.afdl span.note {
  font-size: 12px !important;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
  display: inline-block;
}

@media only screen and (max-width: 520px) {
  .afdl ul li{
    text-align: left;
  }
}

/*--------------------------------------------------------------
# test flight content before login
--------------------------------------------------------------*/
.bftestflight .col-main,
.aftestflight .col-main {
  flex: 1;  
}  

.bftestflight .col-complementary,
.aftestflight .col-complementary {
  flex: 1;  
}

.bftestflight,
.aftestflight {
  padding: 80px 0px 0px;
  color: #2d4351;
}

.bftestflight ul,
.aftestflight ul
 {
  margin: 20px;
  position: relative;
  padding: 0px;
}

.bftestflight ul li, 
.aftestflight ul li {
  list-style-type: none;
  text-align: center;
}

.bftestflight ul li.red, 
.aftestflight ul li.red {
  color: red;
  font-size: 14px;
  margin-left: auto;
  margin-right: auto;
  width: 64%;
}

.bftestflight img,
.aftestflight img {
  width: 80px;
}

.red {
  color: red;
}

.bftestflight button,
.aftestflight button {
  background-color: #ff8200;
  color: white;
  margin-top: 10px;
}

.bftestflight button:hover,
.aftestflight button:hover {
  background-color: #fedc5e;
  color: black;
}

.bftestflight .btn-icon, 
.aftestflight .btn-icon {
  width: 30px;
  margin-right: 10px;
}

.aox-tf,
.mumu-tf {
  width: 50%;
  float: left;
  border-radius: 10px;
  background: #FFFEF5;
  box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  padding: 20px 0;
  text-align: center;
}

.aox-tf .step,
.mumu-tf .step {
  background-color: transparent;
  position: relative;
  margin: 0px;
}

/*--------------------------------------------------------------
# iOS mobile tab
--------------------------------------------------------------*/
.tabs {
  display: flex;
  flex-wrap: wrap;
}
.tabs > section {  
  order: 999;
  width: 100%;
  display: none;
}

.tabs > input {
  opacity: 0;
  position: absolute;
}

.tabs > input[type=radio]:checked + label {
  background: yellow;
}

.tabs > input[type=radio]:checked + label + section {
  display: unset;
  text-align: center;
  padding: 1em;
  border-radius: 10px;
  background: #FFFEF5;
  box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

.tabs > label {
  padding: .6em 1em;
  background: #f0f0f0;
  color: #8b8b8b;
  width: 50%;
  text-align: center;
}

.tabs > label:last-of-type {
  border-right: none;
  text-align: center;
}

.tabs > input[type=radio]:checked + label {
  color: #ff8200;
  background: linear-gradient(45deg, #ffedda, #fffee1);
  text-align: center;
} 

.tabs section {
  padding: 1em;
}

@media only screen and (max-width: 3000px) {
  .bftestflight {
    display: flow-root;
  }
  .aftestflight {
    display: none;
  }
}

@media only screen and (max-width: 820px) {
  .bftestflight {
    display: none ;
  }
  .aftestflight {
    display: block;
  }
}

/*--------------------------------------------------------------
# apple
--------------------------------------------------------------*/
#apple {
  padding-bottom: 0;
  margin-bottom: -50px;
  text-align: center;
  margin-top: 100px;
}

#apple .text{
  background-color: #FFF0B9;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#apple .text:hover{
  background-color: #ff8200;
  color: white;
}

#apple .text h6{
  margin-bottom: 0;
  font-size: 1.2em;
}

.ios-session {
  margin: 0px;
  display: block;
  clear: both;
}

.ios-session img {
  width: 450px;
}

#apple .ios-require {
  margin-bottom: 70px;
  text-align: center;
}

#apple .index-app-dl-btn {
  margin: 0px;
}

#apple hr{
  color: #ccc;
  margin-top: 50px;
}

/*--------------------------------------------------------------
# m series chip macOS
--------------------------------------------------------------*/
.mseries {
  background-color: #fff9d8;
  padding: 20px 40px;
  margin: 40px auto;
  text-align: left;
  border-radius: 10px;
}

.mseries h3 {
text-align: center;
padding: 10px 0;
}

.mseries ol li {
list-style-type: decimal;
line-height: 32px;
}

.mseries li span {
display: block;
padding-left: 20px;
}

@media only screen and (max-width: 992px) {
.mseries {
  display: none;
}
}

/*--------------------------------------------------------------
# windows
--------------------------------------------------------------*/
.windows .col-main {
  flex: 1;  
}  

.windows .col-complementary {
  flex: 1;  
}

.windows {
  padding: 40px 0px 0px;
  color: #2d4351;
}

.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 strong {
  font-size: 1.4rem;
}

.windows button {
  background-color: #ff8200;
  color: white;
  line-height: 18px;
}

.windows button:hover {
  background-color: #fedc5e;
  color: black;
}

.windows .col {
  padding: 1em;
  border-radius: 10px;
  background: #FFFEF5;
  box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

/*--------------------------------------------------------------
# macOS
--------------------------------------------------------------*/

.macos {
  padding: 40px 0px 0px;
  color: #2d4351;
  text-align: center;
}

.macos img {
  width: 50%;
}

.macos ul {
  position: relative;
  padding: 20px;
  list-style: none;
}

.macos ul li {
  margin: 20px 0px;
}

.macos ul li button strong {
  font-size: 0.8rem !important;
  font-weight: 400;
}

.macos strong {
  font-size: 1.4rem;
}

.macos button {
  background-color: #FFB9B9;
  color: black;
  line-height: 18px;
  border: none;
}

.macos button:hover {
  background-color: #fc8d8d;
  color: black;
}

.macos .col {
  padding: 1em;
  border-radius: 10px;
  background: #FFFEF5;
  box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  width: 50%;
  float: left;
}

/*--------------------------------------------------------------
# Play
--------------------------------------------------------------*/
.play {
  background: #FFFEF5;
  margin-top: 40px;
  position: relative;
  padding: 0 40px;
}

.play-img {
  position: relative;
  height: 560px;
}

.play-img .play-container {
  width: 280px; 
  margin-left: auto; 
  margin-right: auto;
}

.play .play-mobile {
  width: 300px;
  height: auto;
  position: absolute;
  top: 40px;
}

.play .play-qr {
  width: 160px;
  border: 2px solid #ff8200;
  padding: 14px;
  border-radius: 10px;
  position: absolute;
  margin-left: 70px;
  margin-top: 80px;
  top: 40px;
}

.play ul.play-btn {
  display: block;
  margin: 30px 0;
  padding: 0px;
}

.play ul.play-btn li {
  display: inline;
  float: left;
  text-align: left;
  white-space: nowrap;
  width: 50%;
}

ul.play-benefits {
  margin: 0px;
  padding: 0px;
}

ul.play-benefits img {
    width: 24px;
    margin-right: 10px;
}

ul.play-benefits li {
  width: 100% !important;
  text-align: left !important;
  margin-bottom: 20px;
}


/*--------------------------------------------------------------
# login
--------------------------------------------------------------*/
.userdetails {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  margin-top: 100px;
}

.form-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(15px);                
}

.form-box button {
  width: 100%;
}

.form-value {
  width: 100%;
  min-width: 400px;
}

.inputbox {
  position: relative;
  border-bottom: 2px solid #444;
  margin: 30px 0 50px;               
}

.inputbox label {
  transform: translateY(-50%);
  color: #444;
  font-size: 1em;
  pointer-events: none;
  transition: .5s;
  position: absolute;
  top: 50%;
  left: 5px;                
}

input:focus~label,
input:valid~label {
  top: -5px;
}

.inputbox input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  padding: 0 35px 0 5px;
  color: #444;
  width: 100%;
  height: 50px;               
}

.inputbox .field-icon {
  float: right;
  margin-left: -25px;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

.forget {
  color: #444;
  display: flex;
  justify-content: space-between;
  margin: -15px 0 15px;
  font-size: .9em;                
}

.forget label {
  color: #444;
}

.forget label input {
  margin-right: 3px;

}

.forget label a,
.forget a {
  color: #ff8200;
  text-decoration: none;
}

.forget label a:hover {
  text-decoration: underline;
}

/* button {
  width: 100%;
  height: 40px;
  border-radius: 40px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
} */

.register {
  font-size: .9em;
  color: #444;
  text-align: center;
  margin: 25px 0 10px;
}

.register p a {
  text-decoration: none;
  color: #ff8200;
  font-weight: 600;
}

.register p a:hover {
  text-decoration: underline;
}

.error {
  position: absolute;
  left: 0px;
  bottom: -30px;
  font-size: 14px;
  line-height: 12px;
}

.register-error {
  bottom: -20px;
}

/*--------------------------------------------------------------
# account
--------------------------------------------------------------*/
.vip-level {
  border-radius: 10px;
  text-align: left;
  font-weight: 500;
  font-size: medium;
  line-height: 24px;
  color: #6a6a6a;
  margin-left: 20px;
  width: 94%;
  float: left;
  position: relative;
  z-index: 99;
  margin-bottom: 4%;
  display: contents;
}

.vip-level .row .sdate,
.vip-level .row .edate {
  float: left;
}

.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;
}

.vip-level a {
  float: right;
  text-align: right;
  text-decoration: underline;
  color: #ff8200;
}

.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: #ff8200;
  text-decoration: underline;
  font-size: 18px;
  padding: 0;
  border: none;
}

.vip-level ul {
  padding-left: 0;
}

.vip-level .row {
  margin-bottom: 14px;
}

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: #fff8e7;
  color: black;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.account-nav {
  z-index: 99;
  position: relative;
}

.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%;
}

/*--------------------------------------------------------------
# account menu
--------------------------------------------------------------*/
.section-nav li.active a {
  color: #333;
  font-weight: 500;
}

/* Sidebar Navigation */
.section-nav {
  text-align: left;
}

.section-nav ul {
  margin: 0px;
  padding: 0px;
}

.menu-title {
  display: flex;
  flex-direction: column;
}

.section-nav ul li .menu-icon {
  background-color: #FEF8E6;
  width: 36px;
  height: 36px;
  float: left;
  border-radius: 8px;
  position: relative;
  color: #ff8200;
  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: #FEF8E6;
  color: #ff8200;
}

.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: #ff8200;
}

.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;
}

.section-nav a:hover,
.section-nav a:focus {
  color: #242833 !important;
}

/*--------------------------------------------------------------
# account cs
--------------------------------------------------------------*/
.cs {
  padding: 0px !important;
  /* display: flow-root; */
  margin: 0px;
  margin-bottom: 4%;
}

.cs  {
  padding: 80px 0 40px 0;
}

.cs .circle {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #FEF8E6;
  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;
}

.cs .container .row .col-lg-4:nth-child(4) .circle,
.cs .container .row .col-lg-4:nth-child(5) .circle {
  margin-bottom: 0;
}

.cs .circle:hover {
  transform: translateY(-5px);
}

.cs .circle .title {
  margin-left: 0px;
  font-weight: 700;
  font-size: 18px;
  color: #2a2b32;
}

.cs .circle i {
  font-size: 80px;
  color: #ff8200;
}

.transparent {
  opacity: 0;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
h3.price {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.getdetails {
    padding: 2em;
    border-radius: 10px;
    background: #FFFEF5;
    box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    margin-bottom: 50px;
}

.getdetails ol li {
  list-style-type: decimal;
}

/*--------------------------------------------------------------
# Servers
--------------------------------------------------------------*/
.bg-map {
    background-image: url(/img/bg-map-line.png);
    background-attachment: fixed;
    background-color: #fafafa;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    padding: 40px 0 60px 0;
}

.bg-map ul.servers {
  display: flow-root;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin: 30px 0;
}

.bg-map ul.servers li {
  width: 120px;
  display: inline-block;
  padding: 10px 10px;
}

.servers-container {
    text-align: center;
}

/*--------------------------------------------------------------
# Country
--------------------------------------------------------------*/

.country-container {
  margin: 40px 0;
}

.country-container h3 {
  font-size: 20px;
  line-height: 28px;
}

ul.country-benefits li img {
  width: 24px;
  margin-right: 10px;
}

ul.country-benefits {
  margin: 20px 0;
}

ul.country-benefits li {
  margin: 14px 0;
  font-weight: 500;
}

.country {
  padding: 2em;
  border-radius: 10px;
  background: #FFFEF5;
  box-shadow: 0 4px 10px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  display: flow-root;
}

ul.country-list {
  display: flow-root;
}

ul.country-list li {
  float: left;
  width: 20%;
  margin: 4px 0;
  list-style-type: disc;
}

