/*==============================================
[Main stylesheet style.css]

Author:	CryptEX
Version:	1.0
Created:	January 2022
Last updated:	January 2022
Template:	CryptEX
================================================*/
/*
[Table of Contents]
1. IMPORTS
2. GENERAL
    2-1. HEADINGS
	2-2. BUTTONS
    2-3. LISTINGS
3. PAGE STRUCTURE
    3-1. PANELS LEFT AND RIGHT
	3-2. POPUPS
			3-2.A. SOCIAL ICONS NAVIGATION
			3-2.B. NOTIFICATIONS
			3-2.C. COMMENTS
4. HEADER
5. BOTTOM TOOLBAR
6. USER NAVIGATION
	6-1. SOCIAL ICONS NAVIGATION
7. USER PROFILE
8. SEARCH
9. CARDS
10. SLIDERS
11. CUSTOM PAGES
	11-1. INTRO PAGE
	11-2. SPLASH PAGE
	11-3. LOGIN PAGE
15. FORMS
16. CHAT
17. TABS / ACCORDION / TABLES
18. OTHERS
*/
/*===============================================*/
/* 1. IMPORTS		 						 */
/*===============================================*/
@import url(reset.css);
/* -----SIZE CLASSES-------- */
.w-100 {
  width: 100%; }

.h-100 {
  height: 100%; }

/* -----DISPLAY CLASSES-------- */
.d-none {
  display: none; }

.d-block {
  display: block; }

.d-inline {
  display: inline-block; }

/* -----FLEX CLASSES-------- */
.d-flex {
  display: flex; }

.flex-wrap {
  flex-wrap: wrap; }

.align-items-center {
  align-items: center; }

.align-items-start {
  align-items: flex-start; }

.align-items-end {
  align-items: flex-end; }

.align-items-stretch {
  align-items: stretch; }

.align-content-center {
  align-content: center; }

.align-content-start {
  align-content: flex-start; }

.align-content-end {
  align-content: flex-end; }

.align-content-stretch {
  align-content: stretch; }

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

.justify-center {
  justify-content: center; }

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

.justify-end {
  justify-content: flex-end; }

.grow-0 {
  flex-grow: 0; }

.grow-1 {
  flex-grow: 1; }

/* -----TEXT CLASSES-------- */
.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-white {
  color: #ffffff !important; }

/* -----PADDING CLASSES-------- */
.p0 {
  padding: 0px !important; }

.p-10 {
  padding: 10px !important; }

.p-20 {
  padding: 20px !important; }

.p-40 {
  padding: 40px !important; }

.pb-0 {
  padding-bottom: 0px !important; }

.pb-10 {
  padding-bottom: 10px !important; }

.pb-20 {
  padding-bottom: 20px !important; }

.pb-40 {
  padding-bottom: 40px !important; }

.pt-0 {
  padding-top: 0px !important; }

.pt-10 {
  padding-top: 10px !important; }

.pt-20 {
  padding-top: 20px !important; }

.pt-40 {
  padding-top: 40px !important; }

.pb-40 {
  padding-bottom: 40px !important; }

.pl-0 {
  padding-left: 0px !important; }

.pl-10 {
  padding-left: 10px !important; }

.pl-20 {
  padding-left: 20px !important; }

.pl-40 {
  padding-left: 40px !important; }

.pr-0 {
  padding-right: 0px !important; }

.pr-10 {
  padding-right: 10px !important; }

.pr-20 {
  padding-right: 20px !important; }

.pr-40 {
  padding-right: 40px !important; }

/* -----MARGIN CLASSES-------- */
.m0 {
  margin: 0px !important; }

.m-10 {
  margin: 10px !important; }

.m-20 {
  margin: 20px !important; }

.m-40 {
  margin: 40px !important; }

.mb-0 {
  margin-bottom: 0px !important; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mt-0 {
  margin-top: 0px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-20 {
  margin-top: 20px !important; }

.mt-40 {
  margin-top: 40px !important; }

.ml-0 {
  margin-left: 0px !important; }

.ml-10 {
  margin-left: 10px !important; }

.ml-20 {
  margin-left: 20px !important; }

.ml-40 {
  margin-left: 40px !important; }

.mr-0 {
  margin-right: 0px !important; }

.mr-10 {
  margin-right: 10px !important; }

.mr-20 {
  margin-right: 20px !important; }

.mr-40 {
  margin-right: 40px !important; }

.card--style-cover, .slider-simple__slide, .slider-cover__slide {
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center; }

.gradient-lightgreen, .button--main, .button--more, .bottom-navigation__icons li.centered, .card--style-plan-premium, .card--style-bg {
  background-color:#0592BF !important; }

.gradient-purple, .account-info {
  background-color: #633a97 !important;
  background: linear-gradient(60deg, #633a97 0%, #4c87c6 100%) !important; }

/*===============================================*/
/* 2. GENERAL		 						 */
/*===============================================*/
html, body {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  /*  (10 px in REM size) */ }
html{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html.prevent-overscroll{
  overflow: hidden;
  height: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit
}
::-webkit-scrollbar {
  display: none;
}
body {

  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  font-weight: 400; }

body.signup-body{
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.signup-form-body{
  height: 100%;
  overflow: auto;
}

a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  text-decoration: none;
  color: #47e7ce; }

p {
  padding: 0px 0 10px 0;
  margin: 0px;
  line-height: 1.5; }
  p.welcome {
    padding-bottom: 20px; }
  p.highlight {
    font-size: 1.8rem;
    font-weight: 300; }

blockquote {
  padding: 0 0 0 50px;
  margin: 0 0 20px 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 300;
  background-image: url(https://www.mobiokit.com/assets/images/icons/gradient-purple/quote.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 40px; }
  blockquote span {
    display: block;
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #292467; }

/* 2-1. HEADINGS */
/*=================================*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  padding: 0 0 20px 0;
  margin: 0;
  color: #fff; }

h1 {
  font-size: 2.8rem; }

h2 {
  font-size: 1.8rem; }
  h2.page__title {
    position: relative;
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 600; }
    h2.page__title:after {
      content: '';
      width: 40px;
      height: 1px;
      background-color: #53539a;
      position: absolute;
      left: 0px;
      bottom: 0;
      z-index: 444; }

h3 {
  font-size: 1.6rem; }

h4 {
  font-size: 1.4rem; }

h5 {
  font-size: 1.2rem; }

h6 {
  font-size: 1.1rem; }

textarea, input, select {
  outline: none;
  font-family: "Poppins", sans-serif; }
select#day, select#month, select#year, select#daysur, select#monthsur, select#yearsur{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  padding-right: 15px;
  background-image: url('../images/dropdown.png');
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 10px;
}

/* 2-2. BUTTONS */
/*=================================*/
.buttons {
  width: 100%; }
  .buttons--centered {
    display: flex;
    align-items: center;
    justify-content: center; }

.button {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  display: inline-block;
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 18px 30px;
  border-radius: 25px;
  letter-spacing: 1px;
  font-weight: 600;
  border: none;
  cursor: pointer; }
  .button--small {
    font-size: 1.1rem;
    padding: 15px 30px; }
  .button--ex-small {
    font-size: 1.1rem;
    padding: 10px 20px; }
  .button--full {
    width: 100%;
    text-align: center;
    padding: 18px 0; }
  .button--main {
    color: #fff; }
  .button--secondary {
    background-color: #291f57;
    color: #fff; }
  .button--more {
    color: #000; }
  .button--blue {
    background-color: #000;
    color: #fff; }
  .button--green {
    background-color: #47e7ce;
    color: #000; }
  .button--disabled {
    background-color: #291f57;
    color: #fff;
    opacity: 0.5;
    cursor: default !important;
  pointer-events: none;}
  .button--chat {
    background-image: url(../images/icons/chat.svg);
    background-repeat: no-repeat;
    background-position: 20px 50%;
    background-size: 18px;
    padding-left: 55px; }

/* 2-3. LISTINGS */
/*=================================*/
ul.custom-listing li {
  padding: 10px 0;
  line-height: 1.5; }
  ul.custom-listing li span {
    font-weight: 600;
    color: #47e7ce; }
  ul.custom-listing li.email {
    background-image: url(../images/icons/contact.svg);
    background-repeat: no-repeat;
    background-position: 0px 50%;
    background-size: 24px;
    padding-left: 40px; }
  ul.custom-listing li.phone {
    background-image: url(../images/icons/mobile.svg);
    background-repeat: no-repeat;
    background-position: 0px 50%;
    background-size: 24px;
    padding-left: 40px; }
  ul.custom-listing li.address {
    background-image: url(../images/icons/home.svg);
    background-repeat: no-repeat;
    background-position: 0px 50%;
    background-size: 24px;
    padding-left: 40px; }

ul.custom-listing--checked li {
  padding: 5px 0 5px 30px;
  background-image: url(../images/icons/checked-simple.svg);
  background-repeat: no-repeat;
  background-position: 0px 50%;
  background-size: 18px; }

/*===============================================*/
/* 3. PAGE STRUCTURE */
/*===============================================*/
.page {
  width: 100%;
  height: 100%; }
  .page__content {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    overflow-x: hidden !important;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; }
    .page__content--full {
      width: 100%;
      padding: 62px 0px 0px 0px;}
    .page__content--with-header {
      padding-top: 70px;
      height: auto; }
    .page__content--with-bottom-nav {
      height: auto; }
    .page__content.page__content--with-header.page__content--with-bottom-nav, .page__content.page__content--with-bottom-nav.page__content--with-header {
      height: calc(100% - 155px); }
  .page__title-bar {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px; }
    .page__title-bar h3 {
      font-size: 1.4rem;
      padding: 0px; }
      .page__title-bar h3 span {
        font-size: 1.2rem;
        color: #47e7ce;
        font-weight: 300;
        display: block; }
  .page__title-right {
    position: relative;
    display: flex;
    align-items: center; }
.with-bottom-nav {
  padding-bottom: 55px;
}

.page-inner {
  /*width: calc(100% - 40px);*/
  padding: 0 20px; }
  .page-inner--with-bottom-button {
    padding: 20px 20px 100px 20px; }

div#inbox-refresher {
  padding-bottom: 5px;
}

.account-info {
  width: 100%;
  padding: 100px 0;
  text-align: center;
  position: relative; }
  .account-info--details {
    padding: 80px 0 50px 0; }
  .account-info__icon {
    width: 100%;
    text-align: center;
    padding-bottom: 10px; }
    .account-info__icon img {
      display: block;
      width: 50px;
      margin: auto; }
  .account-info__title {
    font-size: 1rem;
    letter-spacing: 2px;
    padding-bottom: 5px; }
  .account-info__total {
    font-size: 3.6rem;
    letter-spacing: -1px; }
  .account-info__stats {
    padding-top: 5px;
    font-size: 1.3rem; }
    .account-info__stats span {
      padding: 0 5px; }
      .account-info__stats span.plus {
        color: #47e7ce; }
  .account-info__svg {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    height: 25px; }
  .account-info__chart {
    width: 90%;
    margin: 20px auto 0 auto; }

.account-buttons {
  width: 100%;
  position: relative;
  top: -25px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center; }
  .account-buttons a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #291f57;
    color: #47e7ce;
    text-align: center;
    border-radius: 100%;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin: 0 10px;
    font-weight: 600; }
    .account-buttons a img {
      display: block;
      width: 12px;
      margin: 10px auto 5px auto; }

.account-selectors {
  width: 100%;
  padding: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .account-selectors span {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #291f57;
    color: #fff;
    font-weight: 400;
    text-align: center;
    border-radius: 100%;
    font-size: 1.1rem;
    margin: 0 5px;
    cursor: pointer; }
    .account-selectors span:hover {
      background-color: #47e7ce;
      color: #291f57; }
    .account-selectors span.selected {
      background-color: #47e7ce;
      color: #291f57; }

/* 3-1. PANELS LEFT AND RIGHT */
/*=================================*/
.panel {
  z-index: 9999;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  width: calc(100% - 64px);
  top: 0;
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms; }
  .panel--left {
    background-color: #000000;
    left: calc(-100% + 64px); }
  .panel--right {
    background-color: #000000;
    right: calc(-100% + 64px); }
  .panel__navigation {
    width: 100%;
    overflow: hidden; }

body.with-panel-left-reveal .page,
body.with-panel-right-reveal .page,
body.with-panel-left-reveal .bottom-toolbar,
body.with-panel-right-reveal .bottom-toolbar {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform; }

body.with-panel-left-reveal .body-overlay,
body.with-panel-right-reveal .body-overlay {
  display: block; }

body.with-panel-left-reveal .page, body.with-panel-left-reveal .bottom-toolbar {
  -webkit-transform: translate3d(calc(100% - 64px), 0, 0);
  transform: translate3d(calc(100% - 64px), 0, 0); }

body.with-panel-left-reveal .body-overlay {
  margin-left: calc(100% - 64px); }

body.with-panel-left-reveal .panel--left {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms; }

body.with-panel-right-reveal .page, body.with-panel-right-reveal .bottom-toolbar {
  -webkit-transform: translate3d(calc(-100% + 64px), 0, 0);
  transform: translate3d(calc(-100% + 64px), 0, 0); }

body.with-panel-right-reveal .body-overlay {
  margin-left: calc(-100% + 64px); }

body.with-panel-right-reveal .panel--right {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms; }

body.panel-closing .page, body.panel-closing .bottom-toolbar {
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform; }

#overlay {
  z-index: 699;
  display: none;}

.body-overlay{
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}


/* 3-2. POPUPS */
/*=================================*/
.popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  box-sizing: border-box;
  display: block;
  overflow: auto;
  padding: 40px;
  -webkit-overflow-scrolling: touch;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -ms-transition-property: -ms-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  background-color: #000000; }
  .popup.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .popup--wider {
    padding: 20px; }
  .popup--half {
    height: 50%;
    top: 50%; }
  .popup--centered {
    width: 80%;
    height: 60%;
    top: 20%;
    left: 10%;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, transform;
    transition-duration: 400ms; }
    .popup--centered.active {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }
  .popup--shadow {
    -webkit-box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.12); }
  .popup__title {
    padding-bottom: 20px; }
  .popup__icon img {
    display: block;
    max-width: 50px;
    margin-bottom: 40px; }
  .popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999999; }
    .popup__close img {
      display: block;
      max-width: 18px; }

/* 3-2.A. SOCIAL ICONS NAVIGATION */
/*===============================================*/
.social-nav ul li {
  margin: 0 0 15px 0; }
  .social-nav ul li a {
    display: flex;
    align-items: center;
    color: #fff; }
  .social-nav ul li img {
    display: block;
    max-width: 20px;
    margin-right: 20px; }

/*===============================================*/
/* 3-2.B. NOTIFICATIONS */
/*===============================================*/
.notifications {
  padding-bottom: 20px; }
  .notifications li {
    margin: 0 0 15px 0;
    border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
    padding-bottom: 15px; }
    .notifications li a {
      font-weight: 600;
      color: #fff; }

/*===============================================*/
/* 3-2.C. COMMENTS */
/*===============================================*/
.comments {
  padding-bottom: 20px; }
  .comments li {
    margin: 0 0 10px 0;
    background-color: #0f0638;
    padding: 10px 20px;
    border-radius: 15px; }
    .comments li a {
      font-weight: 600;
      color: #fff; }

/*===============================================*/
/* 4. HEADER */
/*===============================================*/
.header {
  width: 100%;
  padding: 25px 0;
  color: #fff; }
  .header--absolute {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 888; }
  .header--fixed {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 689; }
  .header--page {
    background-color: #15BCF1; }
  .header--transparent {
    background: none; }
  .header--gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3)); }
  .header__inner {
    width: 100%;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;}
  .header__icon {
    cursor: pointer;
    float:left;}
    .header__icon img {
      display: block;
      max-width: 20px; }
    .header__icon--empty-space {
      width: 20px; }
    .header__icon--menu {
      width: 20px;
      height: 16px;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .3s ease-in-out;
      -moz-transition: .3s ease-in-out;
      -o-transition: .3s ease-in-out;
      transition: .3s ease-in-out;
      cursor: pointer; }
      .header__icon--menu span {
        display: block;
        position: absolute;
        height: 1px;
        width: 50%;
        background: #fff;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        -webkit-tap-highlight-color: transparent; }
      .header__icon--menu span:nth-child(even) {
        left: 50%; }
      .header__icon--menu span:nth-child(odd) {
        left: 0px; }
      .header__icon--menu span:nth-child(1), .header__icon--menu span:nth-child(2) {
        top: 0px; }
      .header__icon--menu span:nth-child(3), .header__icon--menu span:nth-child(4) {
        top: 6px; }
      .header__icon--menu span:nth-child(5), .header__icon--menu span:nth-child(6) {
        top: 12px; }
      .header__icon--menu.open span:nth-child(1), .header__icon--menu.open span:nth-child(6) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        background: #000000; }
      .header__icon--menu.open span:nth-child(2), .header__icon--menu.open span:nth-child(5) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background: #000000; }
      .header__icon--menu.open span:nth-child(1) {
        left: 2px;
        top: 4px; }
      .header__icon--menu.open span:nth-child(2) {
        left: calc(50% - 2px);
        top: 4px; }
      .header__icon--menu.open span:nth-child(3) {
        left: -50%;
        opacity: 0; }
      .header__icon--menu.open span:nth-child(4) {
        left: 100%;
        opacity: 0; }
      .header__icon--menu.open span:nth-child(5) {
        left: 2px;
        top: 12px; }
      .header__icon--menu.open span:nth-child(6) {
        left: calc(50% - 2px);
        top: 12px; }
    .header__icon--cart {
      position: relative; }
      .header__icon--cart span {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        text-align: center;
        line-height: 20px;
        font-size: 1.1rem;
        font-weight: 600;
        background-color: #fff;
        color: #292467; }
        .header__icon--cart span.animate {
          animation: cartnr 1.5s cubic-bezier(0.39, 0.01, 0.17, 1);
          animation-iteration-count: 1; }
    .header__icon--more img {
      width: 6px; }
  .header__icons-group {
    display: flex;
    align-items: center; }
    .header__icons-group--right .header__icon {
      margin-left: 20px; }
    .header__icons-group--left .header__icon {
      margin-right: 20px; }
  .header__logo--text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center; }
    .header__logo--text strong {
      font-weight: 600;
      color: #47e7ce; }
    .header__logo--text a {
      text-decoration: none;
      color: #fff; }

.header__logo--text--left {
  color: #fff;
  font-size: 1.8rem !important;
  font-weight: 700;
  text-align: left; }
.header__logo--text--left strong {
  font-weight: 600;
  color: #47e7ce; }
.header__logo--text--left a {
  text-decoration: none;
  color: #fff; }
  .header__logo--intro {
    font-size: 2.8rem;
    width: 100%;
    text-align: center; }
  .header__title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 300; }

    .header-dashboard {
      z-index: 889;
      background-color:#15BCF1;
      box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);}
    .header-title{
      margin-left: 15px !important;
    }
@keyframes cartnr {
  0% {
    transform: scale(1.5); }
  50% {
    transform: scale(0.8); }
  100% {
    transform: scale(1.5); } }

/*===============================================*/
/* 5. BOTTOM TOOLBAR */
/*===============================================*/
.bottom-navigation {
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 99999;
  background-color: #000;
  padding:0;
  overflow: hidden; }
  .bottom-navigation--gradient {
    background: #05BCF1;}
  .bottom-navigation--white {
    background-color: #ffffff; }
.preloader-wrapper.small.active {
  background-color: transparent !important;
}
  .bottom-navigation__icons {
    /*width: calc(100% - 60px);*/
    margin: auto;
    display: flex;
    /*align-items: center;*/
    justify-content: space-between; }
    .bottom-navigation__icons li {
      width: 25%;
      text-align: center;
      margin: 0;
      position: relative; }
      .bottom-navigation__icons li a {
        font-size: 12px;
        color: #fff; }
      .bottom-navigation__icons li img {
        display: block;
        max-width: 20px;
        margin: auto; }
      .bottom-navigation__icons li span {
        text-transform: uppercase;
        font-size: 0.5rem;
        display: block;
        padding-top: 5px; }
      .bottom-navigation__icons li i {
        position: absolute;
        top: 3px;
        right: 30px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        text-align: center;
        line-height: 21px;
        font-size: 0.9rem;
        font-weight: 600;
        background-color: #D0342C;
        color: #47e7ce;
        font-style: normal; }
      .bottom-navigation__icons li.centered {
        width: 60px;
        height: 60px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px; }
        .bottom-navigation__icons li.centered img {
          display: block;
          max-width: 26px;
          margin: auto; }
    .bottom-navigation__icons--photos li {
      margin: 0px; }
    .bottom-navigation__icons--centered {
      justify-content: center; }
      .bottom-navigation__icons--centered li {
        padding: 0 5px; }
        .bottom-navigation__icons--centered li img {
          max-width: 32px; }
  .bottom-navigation__pagination {
    position: absolute;
    width: 100%;
    bottom: 0px !important;
    top: auto !important;
    text-align: center; }
    .bottom-navigation__pagination .swiper-pagination-bullet {
      width: 10px;
      height: 1px;
      display: inline-block;
      border-radius: 0;
      background: #909db3;
      opacity: 0.2;
      margin: 0 2px; }
      .bottom-navigation__pagination .swiper-pagination-bullet-active {
        background: #909db3;
        opacity: 1; }
    .bottom-navigation__pagination .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
      margin: 0 2px; }
  .bottom-navigation__more {
    position: absolute;
    top: 20px;
    right: 15px;
    cursor: pointer;
    z-index: 999999; }
    .bottom-navigation__more img {
      display: block;
      max-width: 4px; }
  .bottom-navigation__shop {
    width: calc(100% - 20px);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .bottom-navigation__shop-cart {
      background-image: url(../images/icons/cart.svg);
      background-repeat: no-repeat;
      background-position: 20px 50%;
      background-size: 18px;
      padding-left: 50px; }

.bottom-fixed-button {
  width: calc(100% - 40px);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 888;
  background-color: #000;
  padding: 20px;
  overflow: hidden; }

/*===============================================*/
/* 6. USER NAVIGATION */
/*===============================================*/
.main-nav {
  width: calc(100% - 60px);
  padding: 30px; }
  .main-nav ul {
    display: flex;
    flex-wrap: wrap; }
    .main-nav ul li {
      margin: 0 0 5px 0;
      padding: 10px 0;
      font-size: 1.2rem;
      display: block;
      width: 100%; }
      .main-nav ul li a {
        display: flex;
        align-items: center;
        color: #fff; }
      .main-nav ul li img {
        display: block;
        max-width: 18px;
        margin-right: 20px; }
      .main-nav ul li span {
        display: block; }

.subnav-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end; }
  .subnav-header img {
    display: block;
    max-width: 16px; }

/*===============================================*/
/* 7. USER PROFILE */
/*===============================================*/
.user-profile {
  width: 100vw;
  margin-left: -20px;
  position: relative;
  padding: 60px 0 20px 0;
  background-color: #000;
  position: relative; }
  .user-profile__thumb {
    width: 100%;
    text-align: center; }
    .user-profile__thumb img {
      display: block;
      width: 120px;
      border-radius: 100%;
      margin: auto; }
  .user-profile__name {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff; }

.info-box {
  text-align: center;
  padding: 0 15px; }
  .info-box span {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff; }

/* USER DETAILS SIDE PANEL */
/*===============================================*/
.user-details {
  padding: 20px 0 0 0;
  display: block;
  text-align: center; }
  .user-details__thumb {
    margin: 0 auto 20px auto;
    text-align: center; }
    .user-details__thumb img {
      display: block;
      max-width: 120px;
      margin: auto;
      border-radius: 100%; }
  .user-details__title {
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: -0.5px; }
    .user-details__title span {
      display: block;
      font-weight: 300;
      font-size: 1.6rem; }

/*===============================================*/
/* 8. SEARCH */
/*===============================================*/
.search {
  padding: 40px; }
  .search__form {
    background-color: #291f57;
    border-radius: 15px;
    padding: 10px 20px;
    margin-bottom: 20px; }
    .search__form form {
      display: flex; }
  .search__input {
    border: none;
    background: none;
    font-size: 1.2rem;
    font-weight: 500;
    width: 100%;
    color: #fff; }
  .search__submit {
    text-indent: -100px;
    overflow: hidden;
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/search.svg);
    background-color: transparent;
    border: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -webkit-appearance: none; }
  .search__results {
    padding: 40px 0 0 0; }

.search-result {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px rgba(255, 255, 255, 0.2) solid; }
  .search-result__thumb {
    margin-right: 20px; }
    .search-result__thumb img {
      display: block;
      max-width: 50px;
      border-radius: 10px; }
  .search-result__details p strong {
    color: #47e7ce; }

/*===============================================*/
/* 9. CARDS */
/*===============================================*/
.cards {
  display: flex;
  flex-wrap: wrap; }
  .cards--11 .card {
    width: calc(100% - 40px);
    padding: 20px;
    margin-bottom: 20px; }
    .cards--11 .card__icon img {
      max-width: 65px !important; }
    .cards--11 .card__title {
      font-size: 1.8rem !important; }
    .cards--11 .card--style-thumb {
      width: 100%;
      padding: 0px; }
    .cards--11 .card--style-inline {
      width: 100%;
      padding: 0 0 10px 0; }
      .cards--11 .card--style-inline-bg {
        width: calc(100% - 30px);
        padding: 20px 10px 20px 20px; }
      .cards--11 .card--style-inline .card__icon {
        flex: 0 0 40px;
        margin-right: 20px;
        margin-bottom: 0px !important; }
        .cards--11 .card--style-inline .card__icon img {
          max-width: 40px !important; }
      .cards--11 .card--style-inline .card__thumb {
        margin-right: 20px;
        margin-bottom: 0px !important; }
        .cards--11 .card--style-inline .card__thumb img {
          max-width: 60px !important; }
      .cards--11 .card--style-inline .card__details {
        flex-grow: 1;
        padding-right: 10px; }
      .cards--11 .card--style-inline .card__title {
        font-size: 1.6rem !important;
        padding-bottom: 5px; }
      .cards--11 .card--style-inline .card__more {
        flex: 0 0 5px; }
        .cards--11 .card--style-inline .card__more--play {
          flex: 0 0 35px; }
  .cards--12 .card {
    width: calc(50% - 50px);
    padding: 20px;
    margin-right: 20px;
    margin-bottom: 20px; }
    .cards--12 .card:nth-child(2n+2) {
      margin-right: 0px; }
    .cards--12 .card__title {
      padding-bottom: 5px !important;
      font-size: 1.4rem; }
    .cards--12 .card--style-thumb {
      width: calc(50% - 10px);
      padding: 0px; }
  .cards--13 .card {
    width: calc(33.333% - 28.333px);
    padding: 10px;
    margin-right: 10px;
    margin-bottom: 10px; }
    .cards--13 .card:nth-child(3n+3) {
      margin-right: 0px; }
    .cards--13 .card__icon img {
      max-width: 34px !important; }
    .cards--13 .card__title {
      font-size: 1.1rem !important;
      padding-bottom: 5px !important; }
    .cards--13 .card--style-cover {
      width: calc(33.333% - 28.333px);
      padding: 10px; }
    .cards--13 .card--style-thumb {
      width: calc(33.333% - 8.333px);
      padding: 0px; }
  .cards--14 .card {
    width: calc(25% - 55px);
    padding: 20px;
    margin-right: 20px;
    margin-bottom: 20px; }
    .cards--14 .card:nth-child(4n+4) {
      margin-right: 0px; }
    .cards--14 .card__icon img {
      max-width: 16px !important; }
    .cards--14 .card__title {
      font-size: 1.2rem !important;
      padding-bottom: 0px !important; }
    .cards--14 .card--style-thumb {
      width: calc(25% - 15px);
      padding: 0px; }

.card {
  position: relative;
  overflow: hidden; }
  .card__icon {
    margin-bottom: 10px;
    position: relative;
    z-index: 33; }
    .card__icon img {
      display: block;
      max-width: 50px; }
    .card__icon--centered {
      width: 100%;
      text-align: center; }
      .card__icon--centered img {
        margin-left: auto;
        margin-right: auto; }
  .card__thumb {
    margin-bottom: 10px;
    position: relative; }
    .card__thumb img {
      display: block;
      max-width: 100%; }
    .card__thumb--round-corners img {
      border-radius: 15px; }
    .card__thumb--round-corners-full img {
      border-radius: 100%; }
    .card__thumb--round-corners-top img {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px; }
  .card__plan {
    font-size: 3.6rem;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px; }
    .card__plan--premium {
      font-size: 4.8rem; }
  .card__title {
    padding-bottom: 10px;
    position: relative;
    z-index: 33; }
    .card__title--centered {
      width: 100%;
      text-align: center; }
    .card__title a {
      color: #fff;
      font-weight: 500; }
  .card__text {
    font-size: 1.2rem;
    position: relative;
    z-index: 333; }
    .card__text--centered {
      width: 100%;
      text-align: center; }
    .card__text a {
      color: #ffffff;
      font-weight: 400; }
  .card__more {
    width: 5px;
    padding: 5px; }
    .card__more a img {
      display: block;
      max-width: 100%; }
  .card__top-left-info {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 88; }
  .card__top-right-info {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 88; }
  .card__bottom-left-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 88; }
  .card__bottom-right-info {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 88; }
  .card__price {
    padding: 5px 10px;
    font-weight: 600;
    background-color: #fff;
    color: #292467;
    border-radius: 10px; }
    .card__price span {
      text-decoration: line-through;
      opacity: 0.5;
      padding-left: 5px; }
  .card__badge {
    background-color: #47e7ce;
    height: 25px;
    line-height: 25px;
    left: -30px;
    position: absolute;
    top: 5px;
    width: 100px;
    text-align: center;
    -webkit-transform: rotate(-45deg); }
    .card__badge span {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 1px; }
  .card__addtocart a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .card__addtocart a img {
      display: block;
      max-width: 50%;
      border-radius: 0px !important; }
  .card__gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 11;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), black); }
  .card__details {
    position: relative;
    z-index: 55; }
    .card__details--bg {
      width: calc(100% - 30px);
      padding: 15px;
      background-color: #291f57; }
    .card__details--round-corners-bottom {
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px; }
  .card--style-icon {
    background-color: #291f57; }
  .card--style-round-corners {
    -webkit-border-radius: 15px;
    border-radius: 15px; }
  .card--style-cover .card__title {
    color: #ffffff !important;
    font-weight: 600; }
  .card--style-cover .card__text {
    color: #ffffff !important; }
  .card--style-inline {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .card--style-inline-bg {
      background-color: #291f57; }

.card-coin {
  width: calc(100% - 30px);
  padding: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #291f57;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  color: #fff; }
  .card-coin__logo {
    display: flex;
    align-items: center; }
    .card-coin__logo img {
      display: block;
      width: 20px;
      margin-right: 10px; }
    .card-coin__logo span {
      font-weight: 600; }
      .card-coin__logo span b {
        display: block;
        font-weight: 300;
        font-size: 1.1rem; }
  .card-coin__price strong {
    font-weight: 600; }
  .card-coin__price span {
    display: block;
    text-align: right; }
  .card-coin__price .plus {
    color: #47e7ce; }
  .card-coin__price .minus {
    color: #e58db6; }
  .card-coin__chart {
    width: 50px; }

/*===============================================*/
/* 10. SLIDERS-------- */
/*===============================================*/
.slider-intro {
  width: 100%;
  height: 100%; }
  .slider-intro__slide {
    width: 100%; }
  .slider-intro .caption {
    width: calc(100% - 80px);
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff; }
    .slider-intro .caption__title {
      font-weight: 300;
      color: #fff; }
      .slider-intro .caption__title strong {
        font-weight: 600; }
    .slider-intro .caption__image {
      width: 100%;
      text-align: center;
      padding-bottom: 40px; }
      .slider-intro .caption__image img {
        display: block;
        max-width: 100%;
        margin: auto; }
  .slider-intro__skip {
    position: absolute;
    bottom: 50px;
    left: 0px;
    width: 100%;
    text-align: center;
    z-index: 888;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 600; }
    .slider-intro__skip a {
      color: #fff; }
  .slider-intro__prev {
    right: 40px;
    left: auto;
    top: auto;
    bottom: 50px; }
    .slider-intro__prev::after {
      font-size: 2rem;
      color: #fff; }
  .slider-intro__next {
    right: 10px;
    left: auto;
    top: auto;
    bottom: 50px; }
    .slider-intro__next::after {
      font-size: 2rem;
      color: #fff; }
  .slider-intro__pagination.swiper-pagination-bullets {
    bottom: 10px; }
    .slider-intro__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
      width: 10px;
      height: 1px;
      margin: 0 2px;
      border-radius: 0;
      background: #fff;
      opacity: .4; }
      .slider-intro__pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
        background: #fff;
        opacity: 1; }

.slider-simple {
  width: 100%;
  height: 300px; }
  .slider-simple--heigher {
    height: 350px; }
  .slider-simple--vw-width {
    width: 100vw;
    margin-left: -20px; }
  .slider-simple--full-height {
    height: 100%; }
  .slider-simple--round-corners {
    border-radius: 15px; }
  .slider-simple__slide {
    width: 100%; }
  .slider-simple .caption {
    width: calc(100% - 40px);
    padding: 0 20px 10px 20px;
    height: calc(100% - 20px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    color: #fff; }
    .slider-simple .caption--gradient {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)); }
    .slider-simple .caption--centered {
      align-items: center;
      justify-content: center;
      text-align: center; }
    .slider-simple .caption__title {
      font-weight: 300;
      color: #fff;
      font-size: 3.2rem;
      line-height: 1; }
      .slider-simple .caption__title strong {
        font-weight: 900;
        display: block; }
      .slider-simple .caption__title span {
        font-weight: 600; }
      .slider-simple .caption__title--centered {
        font-size: 2.4rem;
        line-height: 1.5; }
      .slider-simple .caption__title a {
        color: #fff; }
  .slider-simple__prev {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: 0px;
    margin-right: 10px; }
    .slider-simple__prev::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-simple__next {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: 0px; }
    .slider-simple__next::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-simple__pagination.swiper-pagination-bullets {
    bottom: 10px; }
    .slider-simple__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
      width: 10px;
      height: 1px;
      margin: 0 2px;
      border-radius: 0;
      background: #fff;
      opacity: .4; }
      .slider-simple__pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
        background: #fff;
        opacity: 1; }

.slider-cover {
  width: 100%;
  /*padding-bottom: 20px;*/ }
  .slider-cover--round-corners .slider-cover__slide {
    border-radius: 15px; }
  .slider-cover__slide {
    width: 100%;
    position: relative; }
    .slider-cover__slide--34 {
      width: 85%;
      height: 200px; }
    .slider-cover__slide--1h {
      width: 66%;
      height: 250px; }
    .slider-cover__slide--2 {
      width: calc(50% - 5px);
      height: 200px; }
    .slider-cover__slide--2h {
      width: 38%;
      height: 200px; }
    .slider-cover__slide--3 {
      width: calc(33.33% - 6.666px);
      height: 150px; }
    .slider-cover__slide--3h {
      width: 38%;
      height: 200px; }
  .slider-cover .caption {
    width: calc(100% - 30px);
    padding: 0 15px 0 15px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    color: #fff; }
    .slider-cover .caption--gradient {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
          border-radius: 15px; }
    .slider-cover .caption__title {
      font-weight: 300;
      color: #fff;
      font-size: 1.8rem;
      line-height: 1.1; }
      .slider-cover .caption__title strong {
        font-weight: 900;
        display: block; }
      .slider-cover .caption__title--smaller {
        font-size: 1.4rem;
        line-height: 1; }
      .slider-cover .caption__title--centered {
        text-align: center; }
      .slider-cover .caption__title--news {
        font-weight: 400;
        line-height: 1.5;
        padding: 0 0 10px 0;
        font-size: 1.6rem; }
        .slider-cover .caption__title--news a {
          color: #fff; }
  .slider-cover__more {
    position: absolute;
    top: 10px;
    right: 10px; }
    .slider-cover__more a {
      display: block;
      width: 30px;
      height: 30px;
      background-color: #15BCF1;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .slider-cover__more a img {
        display: block;
        width: 16px; }
  .slider-cover__prev {
    position: relative;
    right: auto;
    left: auto;
    top: 10px;
    bottom: 0px;
    margin-right: 10px; }
    .slider-cover__prev::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-cover__next {
    position: relative;
    right: auto;
    left: auto;
    top: 10px;
    bottom: 0px; }
    .slider-cover__next::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-cover__pagination.swiper-pagination-progressbar {
    width: 100%;
    height: 1px;
    left: 0;
    top: auto !important;
    bottom: 0px;
    background: rgba(255, 255, 255, 0.2); }
    .slider-cover__pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
      background: rgba(255, 255, 255, 0.35); }

.slider-portfolio {
  width: 100%;
  padding-bottom: 20px; }
  .slider-portfolio--round-corners .slider-portfolio__slide {
    border-radius: 15px; }
  .slider-portfolio__slide {
    width: 100%;
    background-color: #291f57;
    position: relative; }
    .slider-portfolio__slide--34 {
      width: 85%; }
    .slider-portfolio__slide--1h {
      width: 66%; }
    .slider-portfolio__slide--2 {
      width: calc(50% - 5px); }
    .slider-portfolio__slide--2h {
      width: 38%; }
    .slider-portfolio__slide--3 {
      width: calc(33.33% - 6.666px); }
    .slider-portfolio__slide--3h {
      width: 38%; }
  .slider-portfolio .caption {
    width: calc(100% - 30px);
    padding: 15px;
    color: #fff; }
    .slider-portfolio .caption a {
      color: #fff; }
    .slider-portfolio .caption__title {
      display: flex;
      align-items: center;
      font-weight: 300;
      color: #fff;
      font-size: 1.4rem;
      line-height: 1.1;
      padding: 0; }
      .slider-portfolio .caption__title img {
        display: block;
        width: 25px; }
      .slider-portfolio .caption__title span {
        padding-left: 5px; }
      .slider-portfolio .caption__title strong {
        padding-left: 5px;
        font-size: 1.2rem;
        font-weight: 600; }
    .slider-portfolio .caption__chart {
      padding: 0 5px; }
    .slider-portfolio .caption__info {
      display: flex;
      width: 100%;
      justify-content: space-between; }
      .slider-portfolio .caption__info strong {
        font-weight: 600;
        font-size: 1.6rem; }
      .slider-portfolio .caption__info span {
        font-weight: 600;
        font-size: 1.4rem; }
      .slider-portfolio .caption__info b {
        font-weight: 300;
        font-size: 1.2rem;
        margin-bottom: 10px; }
      .slider-portfolio .caption__info .plus {
        color: #47e7ce; }
      .slider-portfolio .caption__info .minus {
        color: #e58db6; }
  .slider-portfolio__more {
    position: absolute;
    top: 10px;
    right: 10px; }
    .slider-portfolio__more a {
      display: block;
      width: 30px;
      height: 30px;
      background-color: #fff;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .slider-portfolio__more a img {
        display: block;
        width: 16px; }
  .slider-portfolio__prev {
    position: relative;
    right: auto;
    left: auto;
    top: 10px;
    bottom: 0px;
    margin-right: 10px; }
    .slider-portfolio__prev::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-portfolio__next {
    position: relative;
    right: auto;
    left: auto;
    top: 10px;
    bottom: 0px; }
    .slider-portfolio__next::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-portfolio__pagination.swiper-pagination-progressbar {
    width: 100%;
    height: 1px;
    left: 0;
    top: auto !important;
    bottom: 0px;
    background: rgba(255, 255, 255, 0.2); }
    .slider-portfolio__pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
      background: rgba(255, 255, 255, 0.35); }

.slider-thumbs {
  width: 100%;
  padding-bottom: 20px; }
  .slider-thumbs__slide {
    width: 100%;
    height: auto !important;
    position: relative; }
    .slider-thumbs__slide--1h {
      width: 66%; }
    .slider-thumbs__slide--2 {
      width: calc(50% - 5px); }
    .slider-thumbs__slide--2h {
      width: 38%; }
    .slider-thumbs__slide--3 {
      width: calc(33.33% - 6.666px); }
    .slider-thumbs__slide--3h {
      width: 26%; }
    .slider-thumbs__slide--4 {
      width: calc(25% - 7.5px); }
    .slider-thumbs__slide--4h {
      width: 20%; }
  .slider-thumbs__image {
    position: relative;
    overflow: hidden; }
    .slider-thumbs__image img {
      display: block;
      max-width: 100%; }
    .slider-thumbs__image--round-corners img {
      border-radius: 15px; }
    .slider-thumbs__image--round-corners-top img {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px; }
    .slider-thumbs__image--round-corners-full img {
      border-radius: 100%; }
    .slider-thumbs__image .active-user {
      display: block;
      width: 10px;
      height: 10px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      background-color: #55c709;
      border: 2px #fff solid;
      position: absolute;
      top: 2px;
      right: 5px;
      z-index: 999; }
  .slider-thumbs__icon {
    background-color: #291f57; }
    .slider-thumbs__icon--round-corners {
      border-radius: 15px; }
    .slider-thumbs__icon img {
      display: block;
      max-width: 40%;
      margin: auto;
      padding: 20px 0; }
  .slider-thumbs .caption {
    padding: 10px 0;
    text-align: left;
    color: #291f57; }
    .slider-thumbs .caption--bg {
      background-color:#15bcf1;
      width: calc(100% - 30px);
      padding: 15px; }
    .slider-thumbs .caption--round-corners-bottom {
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px; }
    .slider-thumbs .caption__title {
      font-weight: 500;
      font-size: 1.6rem;
      line-height: 1.1;
      padding-bottom: 0px; }
      .slider-thumbs .caption__title strong {
        font-weight: 900;
        display: block; }
      .slider-thumbs .caption__title--smaller {
        font-size: 1.2rem;
        line-height: 1.2; }
      .slider-thumbs .caption__title--centered {
        text-align: center; }
    .slider-thumbs .caption__category {
      display: inline-block;
      background-color: #47e7ce;
      color: #000;
      font-size: 1rem;
      padding: 5px 10px;
      margin: 5px 0 0 0;
      border-radius: 10px;
      font-weight: 600;
      letter-spacing: 1px; }
  .slider-thumbs__more {
    position: absolute;
    top: 10px;
    right: 10px; }
    .slider-thumbs__more a {
      display: block;
      width: 30px;
      height: 30px;
      background-color: #15BCF1;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .slider-thumbs__more a img {
        display: block;
        width: 16px; }
  .slider-thumbs__top-left-info {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 22;
    padding: 0 0 0 0; }
  .slider-thumbs__top-right-info {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 22;
    padding: 10px 10px 0 0; }
  .slider-thumbs__bottom-left-info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 22;
    padding: 0 0 0 0; }
  .slider-thumbs__bottom-right-info {
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 0 10px 10px 0;
    z-index: 22; }
  .slider-thumbs__price {
    padding: 5px 10px;
    font-weight: 600;
    font-size: 1.6rem;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .slider-thumbs__price span {
      text-decoration: line-through;
      opacity: 0.5;
      padding-left: 5px; }
  .slider-thumbs__addtocart a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .slider-thumbs__addtocart a img {
      display: block;
      max-width: 50%;
      border-radius: 0px !important; }
  .slider-thumbs__badge {
    background-color: #47e7ce;
    height: 25px;
    line-height: 25px;
    left: -30px;
    position: absolute;
    top: 5px;
    width: 100px;
    text-align: center;
    -webkit-transform: rotate(-45deg); }
    .slider-thumbs__badge span {
      color: #000;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 1px; }
  .slider-thumbs__prev {
    position: relative;
    right: auto;
    left: auto;
    top: 10px;
    bottom: 0px;
    margin-right: 10px; }
    .slider-thumbs__prev::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-thumbs__next {
    position: relative;
    right: auto;
    left: auto;
    top: 10px;
    bottom: 0px; }
    .slider-thumbs__next::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-thumbs__pagination.swiper-pagination-progressbar {
    width: 100%;
    height: 1px;
    left: 0;
    top: auto !important;
    bottom: 0px;
    background: rgba(255, 255, 255, 0.2); }
    .slider-thumbs__pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
      background: rgba(255, 255, 255, 0.35); }

.slider-links {
  width: 100%;
  padding: 10px 0 20px 0; }
  .slider-links__slide {
    width: auto;
    height: auto !important;
    position: relative; }
    .slider-links__slide .caption {
      padding: 10px 0;
      text-align: left;
      color: #291f57; }
      .slider-links__slide .caption__link {
        font-weight: 900;
        font-size: 1.4rem;
        line-height: 1.1;
        padding-bottom: 0px; }
        .slider-links__slide .caption__link a {
          background-color: #291f57;
          color: #fff;
          border-radius: 25px;
          padding: 10px 20px; }
  .slider-links.slider-init-top .swiper-slide-active .caption__link a {
    background-color: #47e7ce;
    color: #000; }
  .slider-links__prev {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: 0px;
    margin-right: 10px; }
    .slider-links__prev::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-links__next {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: 0px; }
    .slider-links__next::after {
      font-size: 1.6rem;
      color: #fff; }
  .slider-links__pagination.swiper-pagination-progressbar {
    width: 100%;
    height: 1px;
    left: 0;
    top: auto !important;
    bottom: 0px;
    background: rgba(255, 255, 255, 0.1); }
    .slider-links__pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
      background: rgba(255, 255, 255, 0.25); }

/*===============================================*/
/* 11. CUSTOM PAGES */
/*===============================================*/
/* 11-1. PAGE - INTRO */
/*========================*/
.page--intro {
  height: 100%;
  background-color: #0f0638; }

.text-animation {
  width: 250px;
  margin: auto;
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 10%, white 50%, rgba(255, 255, 255, 0) 90%);
  background-repeat: repeat;
  background-position: 0 0;
  background-size: 100% 250px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-animation: stripes 3s linear infinite;
  animation: stripes 3s linear infinite; }

@-webkit-keyframes stripes {
  100% {
    background-position: 250px 0; } }

@keyframes stripes {
  100% {
    background-position: 250px 0; } }

/* 11-1. PAGE - SPLASH */
/*========================*/
.page--splash {
  height: 100%;
  background-color: #0f0638; }

.splash {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; }
  .splash__content {
    width: 100%; }
  .splash__logo {
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-weight: 300;
    font-size: 2.8rem;
    margin-bottom: 40px; }
    .splash__logo strong {
      font-weight: 600;
      color: #47e7ce; }
  .splash__image {
    width: 100%;
    text-align: center; }
    .splash__image img {
      max-width: 50%;
      display: block;
      margin: auto; }
  .splash__text {
    width: 70%;
    text-align: center;
    color: #fff;
    margin: 0 auto 40px auto;
    line-height: 1.5; }
  .splash__buttons {
    width: 70%;
    margin: auto; }
    .splash__buttons .button {
      margin-bottom: 10px; }
  .splash__social-login {
    width: 100%;
    text-align: center; }
    .splash__social-login p {
      text-transform: uppercase;
      color: #fff;
      font-size: 1.1rem;
      letter-spacing: 1px;
      opacity: 0.7; }
      .splash__social-login p a {
        color: #fff;
        opacity: 1; }
  .splash__social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0; }

/* 11-3. PAGE - LOGIN */
/*========================*/
.page--login {
  height: 100%;
  background-color: #ffffff; }

.login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%; }

  .login__content {
    width: calc(100% - 80px);
    margin: auto; }
  .login__title {
    width: 100%;
    text-align: center;
    color: #4B4B4B;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    padding: 0px; }
  .login__text {
    width: 70%;
    text-align: center;
    color: #fff;
    margin: 0 auto 40px auto;
    line-height: 1.5; }

.login-form {
  width: 100%;
  margin: 0;
  -moz-animation: fadeIn 1.5s ease;
  -webkit-animation: fadeIn 1.5s ease;
  animation: fadeIn 1.5s ease;
  transition: margin 400ms ease; }
  .login-form.open {
    margin: 0px 0px 100px 0px !important;
  }
.signup__content.clinic {
  height: 160%;
}
  .login-form__row {
    width: 100%;
    margin-bottom: 10px;
    text-align: center; }
  .login-form__label {
    width: 100%;
    display: block;
    padding-bottom: 10px;
    color: #000;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: normal;
    text-align: left; }
  .login-form label.error {
    color: #ffbde1;
    padding: 10px 0 0 5px;
    font-size: 1.1rem; }
  .login-form__input {
    font-size: 12px;
    width: calc(100% - 5px);
    border: none;
    background-color: #E8E8E8;
    padding: 15px 20px;
    border-radius: 0px;
    border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
    color: #000;
    border-radius: 20px;}

  .login-form__input2{
    width: calc(100% - 10px);
    border: none;
    background-color: #E8E8E8;
    padding: 15px 20px;
    border-radius: 0px;
    border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
    color: #000;
    border-radius: 20px;
  }

  .login-form__submit {
    margin-top:10px;
    margin-right: 5px;
    margin-left: 5px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -webkit-appearance: none;
    width: 200px;}
  .login-form__forgot-pass {
    width: 100%;
    text-align: center; }
    .login-form__forgot-pass a {
      color: #434343;
      font-weight:normal;
      font-size: 1.2rem;}
  .login-form__bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;}
    .login-form__bottom p {
      padding-left: 20px;
      color: #000;
      padding-bottom: 10px;
      font-size: 12px;
      padding-right: 20px; }
      .login-form__bottom p a {
        color:#279DC5;
        font-weight: 600;
        font-size: 12px; }
/*icon login*/
.fontAwesome {
  font-family: Arial, 'Font Awesome 5 Free';
}

/*logo login page*/
.kt-logo-form {
  width:160px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;

}

.icon {
  display: block; }
  .icon--social {
    width: 20px;
    height: 20px;
    margin: 0 10px; }
    .icon--social img {
      display: block;
      max-width: 100%; }

/*===============================================*/
/* 15. FORMS */
/*===============================================*/
.form {
  margin: auto; }
  .form__row {
    width: 100%;
    margin-bottom: 10px; }
  .form__label {
    width: 100%;
    display: block;
    padding-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 600; }
  .form label.error {
    color: #f65656;
    padding: 10px 0 0 5px;
    font-size: 1.1rem; }
  .form__input {
    width: calc(100% - 20px);
    border: none;
    background-color: transparent;
    padding: 10px 10px;
    border-radius: 0px;
    border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
    color: #fff; }
    .form__input::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #fff;
      opacity: 1;
      /* Firefox */ }
    .form__input:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #fff; }
    .form__input::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #fff; }
    .form__input--12 {
      width: calc(50% - 35px); }
    .form__input--23 {
      width: calc(((100% / 3 ) * 2) - 35px); }
    .form__input--13 {
      width: calc((100% / 3) - 35px); }
  .form__textarea {
    width: calc(100% - 20px);
    height: 50px;
    border: none;
    background-color: transparent;
    padding: 18px 10px;
    border-radius: 0px;
    font-weight: 500;
    font-size: 1.4rem;
    color: #fff;
    border-bottom: 1px rgba(255, 255, 255, 0.3) solid; }
    .form__textarea::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #fff;
      opacity: 1;
      /* Firefox */ }
    .form__textarea:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #fff; }
    .form__textarea::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #fff; }
  .form__select {
    padding: 0;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0px;
    background-color: transparent;
    background-image: url(../images/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 16px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    color: #fff;
    border-bottom: 1px rgba(255, 255, 255, 0.3) solid; }
    .form__select select {
      padding: 18px 0 10px 5px;
      width: calc(100% - 5px);
      margin: 0 0 5px 0;
      border: none;
      color: #fff;
      box-shadow: none;
      font-weight: 500;
      font-size: 1.4rem;
      background-color: transparent;
      background-image: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
  .form__coin-icon {
    display: flex;
    align-items: center; }
    .form__coin-icon img {
      display: block;
      width: 20px; }
    .form__coin-icon span {
      font-size: 1.6rem;
      font-weight: 600;
      padding-left: 5px; }
  .form__coin-total {
    font-size: 2.4rem;
    font-weight: 600; }
  .form__submit {
    box-shadow: none;
    -webkit-box-shadow: none;
    -webkit-appearance: none; }

.radio-option {
  width: auto;
  display: inline-block;
  padding: 0;
  margin: 0 10px 10px 0;
  cursor: pointer; }
  .radio-option label {
    cursor: pointer;
    display: block;
    padding: 15px 20px;
    background-color: transparent;
    border: 1px #47e7ce solid;
    color: #47e7ce;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 10px; }
    .radio-option label span {
      color: #291f57;
      font-weight: 600; }
  .radio-option input[type="radio"] {
    display: none; }
  .radio-option input[type="radio"]:checked + label {
    background-color: #47e7ce;
    color: #000; }
    .radio-option input[type="radio"]:checked + label span {
      color: #000; }
  .radio-option--full {
    width: 100%;
    margin: 0 0 10px 0; }
    .radio-option--full label {
      padding: 15px 20px 15px 40px; }
    .radio-option--full input[type="radio"]:checked + label {
      background-image: url(../images/icons/checked-simple.svg);
      background-repeat: no-repeat;
      background-position: 15px 50%;
      background-size: 16px; }

.checkbox-option {
  width: auto;
  display: inline-block;
  padding: 0;
  margin: 0 10px 10px 0;
  cursor: pointer; }
  .checkbox-option label {
    cursor: pointer;
    display: block;
    padding: 15px 20px;
    background-color: transparent;
    border: 1px #47e7ce solid;
    color: #47e7ce;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 10px; }
    .checkbox-option label span {
      color: #291f57;
      font-weight: 600; }
  .checkbox-option input[type="checkbox"] {
    display: none; }
  .checkbox-option input[type="checkbox"]:checked + label {
    background-color: #47e7ce;
    color: #000; }
    .checkbox-option input[type="checkbox"]:checked + label span {
      color: #000; }
  .checkbox-option--full {
    width: 100%;
    margin: 0 0 10px 0; }
    .checkbox-option--full label {
      padding: 15px 20px 15px 40px; }
    .checkbox-option--full input[type="checkbox"]:checked + label {
      background-image: url(../images/icons/checked-simple.svg);
      background-repeat: no-repeat;
      background-position: 15px 50%;
      background-size: 16px; }

.card-selector {
  width: 100%;
  display: inline-block;
  padding: 0;
  margin: 0 0 10px 0;
  cursor: pointer; }
  .card-selector label {
    cursor: pointer;
    display: block;
    padding: 20px 20px 20px 60px;
    background-color: #000;
    background-image: url(../images/icons/card.svg);
    background-repeat: no-repeat;
    background-position: 15px 50%;
    background-size: 30px;
    color: #fff;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 10px; }
    .card-selector label span {
      color: #47e7ce;
      font-weight: 400;
      display: block; }
  .card-selector input[type="radio"] {
    display: none; }
  .card-selector input[type="radio"]:checked + label {
    background-color: #47e7ce;
    background-image: url(../images/icons/checked-simple.svg);
    background-repeat: no-repeat;
    background-position: 15px 50%;
    background-size: 16px;
    color: #000; }
    .card-selector input[type="radio"]:checked + label span {
      color: #000; }

.checkbox-simple {
  margin: 5px; }
  .checkbox-simple label {
    cursor: pointer;
    color: #fff; }
  .checkbox-simple input[type="checkbox"] {
    display: none; }
  .checkbox-simple input[type="checkbox"] + label:before {
    border: none;
    content: "\00a0";
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    margin: 0 10px 0 0;
    line-height: 18px;
    vertical-align: center;
    border: none;
    background-color: #0f0638; }
  .checkbox-simple input[type="checkbox"]:checked + label:before {
    color: #000;
    content: "\2713";
    border: none;
    text-align: center;
    background-color: #47e7ce; }
button[type=submit]:disabled {
  background-color: #291f57;
  color: #fff;
  opacity: 0.5;
  cursor: default !important;
  -moz-animation: fadeIn 1.5s ease;
  -webkit-animation: fadeIn 1.5s ease;
  animation: fadeIn 1.5s ease;
  transition: background-color 400ms ease;
}
button[type=button]:disabled {
  background-color: #291f57;
  color: #fff;
  opacity: 0.5;
  cursor: default !important;
  -moz-animation: fadeIn 1.5s ease;
  -webkit-animation: fadeIn 1.5s ease;
  animation: fadeIn 1.5s ease;
  transition: background-color 400ms ease;
}


 /*signup*/

   .signup__content {
    width: 100%;
    margin-top: 115px;
     height: 100%;
    padding: 25px;
    background: #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
     -moz-animation: fadeIn 1.5s ease;
     -webkit-animation: fadeIn 1.5s ease;
     animation: fadeIn 1.5s ease;
     transition: margin 400ms ease;
     transition: height 400ms ease;
   overflow: scroll}


    .signup_main__content {

      width: 100%;
      height: 100%;
      margin-top: 520px;
      background: #15BCF1;
      overflow: hidden;
      z-index: 685;
      padding: 100px 5px 40px 5px;}
.flag-container {
  z-index: 5 !important;
}

.otp__content {
  width: 100%;
  margin-top: 115px;
  height: 100%;
  padding: 25px;
  background: #fff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  overflow: scroll;
}

    .success_main__content {
    width: 100%;
    height: 100%;
    margin-top: 520px;
    background: #15BCF1;
    z-index: 685;
    padding: 100px 40px 40px 40px;
    text-align: center; }

    .question_main__content {
    width: 100%;
    height: 100%;
    margin-top: 520px;
    background: #15BCF1;
    z-index: 685;
    padding: 100px 5px 40px 5px;
    text-align: center}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.slider {
  position: absolute;
  right: -600px;
}
.otp-slider{
  position: absolute;
  right: -800px;
}

  .page--signup {
    font-family: "Poppins", sans-serif;
    overflow: hidden;
  height: 100%;
  background-color: #15BCF1; }

  .page-main-signup {
    overflow: hidden;
  height: 100%;
  background-color: #fff; }

  img.img-vector {
    width: 350px;
    margin-top: 40px;
  }

  .img-content {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
}

.header-vector {
    background: #fff;
    height: 330px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.button-surgeon {
    width: 150px;
}
.button-patient {
    width: 150px;
    background-color: #fff !important;
    color: #008FBD;
}
.button-success {
    width: 150px;
    background-color: #fff !important;
    color: #008FBD;
}

.button-yes {
    width: 150px;
}
.button-no {
    width: 150px;
    background-color: #fff !important;
    color: #008FBD;
}
img.benefits-icon {
  vertical-align: text-top;
  width: 15px;
}
img.benefits-icon-k {
  vertical-align: baseline;
  width: 15px;
}
img.benefits-icon-merit{
  vertical-align: text-top;
  width: 20px;
}
.signup-main-txt {
  color:#fff;
  font-size: 15px;
}
img.how-to-img {
  width: 100px;
}
.success-main-txt {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.question-main-txt {
  text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}


h2.signup_main__title {
    font-size: 25px;
}

.circle-check {
    font-size: 100px;
    color: white;
    margin-bottom: 20px;
}


 .firstname {
  width:50%;
  float:left;

 }
 .middlename {
  width:50%;
  float:right;

 }
 .surname {
  width:50%;
  float:left;

 }
 .birthdate{
   width:33.33333333333333%;
   float:left;
 }
 .suffix {
  width:50%;
  float:right;

}

.page.page--main.checkout-sucess.referral-page {
  overflow: hidden;
}

.empty-division-transaction{
  text-align: center;
}
p.empty-message {
  padding: 0px 20%;
  color: #666;
}

.surgeonname {
  width:50%;
  float:left;

 }
 .clinicname {
  width:50%;
  float:right;

 }

 .clinicname-surgeon {
  width:50%;
  float:left;

 }
 .clinictel-surgeon {
  width:50%;
  float:right;

 }




 /*Signup OTP*/

 .text-otp {
  text-align: center;
  margin-top: 20px
 }

   .otp-form__input {
     font-size: 20px;
     text-align: center;
    width: calc(100% - 5px);
    border: none;
    background-color: #E8E8E8;
    padding: 15px 10px;
    border-radius: 0px;
    border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
    color: #000;
    border-radius: 10px;
    margin:5px;}

.switch__label {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 30px;
  padding: 0px;
  margin-left: 10px;
  border-radius: 20px;
  background: #0f0638;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  cursor: pointer; }
  .switch__label::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: #47e7ce;
    border-radius: 50%;
    transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); }
  .switch__label:active::before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1); }

.switch input:checked + .switch__label {
  background: #47e7ce; }

.switch input:checked + .switch__label::before {
  left: 42px;
  background: #fff; }

.switch input:checked + .switch__label:active::before {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2); }

.fieldset {
  width: calc(100% - 40px);
  padding: 20px;
  background-color: #291f57;
  border-radius: 15px;
  margin-bottom: 20px;
  -webkit-box-shadow: 10px 19px 35px -14px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 10px 19px 35px -14px rgba(0, 0, 0, 0.17);
  box-shadow: 5px 5px 35px -14px rgba(0, 0, 0, 0.17); }

.sub-fieldset {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px rgba(255, 255, 255, 0.2) solid;
  border-radius: 10px;
  margin-bottom: 20px; }

.option-hidden {
  display: none;
  margin-bottom: 10px; }
  .option-hidden.show {
    display: block; }

#Note {
  display: none; }

#loader {
  width: 100%;
  text-align: center;
  padding: 40px 0; }

#loader-animation {
  display: inline-block;
  position: relative;
  margin: auto;
  width: 80px;
  height: 80px; }
  #loader-animation div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px; }
    #loader-animation div:after {
      content: " ";
      display: block;
      position: absolute;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #bf62f9;
      margin: -4px 0 0 -4px; }
    #loader-animation div:nth-child(1) {
      animation-delay: -0.036s; }
    #loader-animation div:nth-child(1):after {
      top: 63px;
      left: 63px; }
    #loader-animation div:nth-child(2) {
      animation-delay: -0.072s; }
    #loader-animation div:nth-child(2):after {
      top: 68px;
      left: 56px; }
    #loader-animation div:nth-child(3) {
      animation-delay: -0.108s; }
    #loader-animation div:nth-child(3):after {
      top: 71px;
      left: 48px; }
    #loader-animation div:nth-child(4) {
      animation-delay: -0.144s; }
    #loader-animation div:nth-child(4):after {
      top: 72px;
      left: 40px; }
    #loader-animation div:nth-child(5) {
      animation-delay: -0.18s; }
    #loader-animation div:nth-child(5):after {
      top: 71px;
      left: 32px; }
    #loader-animation div:nth-child(6) {
      animation-delay: -0.216s; }
    #loader-animation div:nth-child(6):after {
      top: 68px;
      left: 24px; }
    #loader-animation div:nth-child(7) {
      animation-delay: -0.252s; }
    #loader-animation div:nth-child(7):after {
      top: 63px;
      left: 17px; }
    #loader-animation div:nth-child(8) {
      animation-delay: -0.288s; }
    #loader-animation div:nth-child(8):after {
      top: 56px;
      left: 12px; }

@keyframes lds-roller {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/*===============================================*/
/* 16. CHAT */
/*===============================================*/
.conversations {
  padding: 0 0 5px 0;
  width: 100%;
  margin: 0px;
  list-style: none;
  float: left;
  clear: both; }
  .conversations__row {
    display: flex;
    width: calc(100% - 20px);
    color: #ffffff;
    background-color: #291f57;
    border-radius: 15px;
    padding: 10px;
    margin: 0 0 10px 0; }
    .conversations__row a {
      color: #ffffff; }
    .conversations__row--undread a {
      color: #fff;
      font-weight: 600; }
  .conversations__avatar {
    max-width: 50px;
    flex-grow: 1;
    position: relative; }
    .conversations__avatar img {
      display: block;
      max-width: 100%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%; }
  .conversations .active-user {
    display: block;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #55c709;
    border: 2px #fff solid;
    position: absolute;
    top: 40px;
    right: 5px;
    z-index: 555; }
  .conversations__details {
    padding: 0 10px 0 20px;
    flex-grow: 1; }
  .conversations__user {
    font-weight: 600;
    padding: 0 0 5px 0; }
    .conversations__user a {
      color: #fff; }
  .conversations__short-content {
    padding: 0px;
    margin: 0px;
    font-size: 1.2rem;
    line-height: 1.5; }
  .conversations__info {
    width: 100px;
    text-align: right; }
  .conversations__time {
    font-size: 1.1rem;
    font-weight: 600; }
  .conversations__new-messages-nr {
    width: 20px;
    height: 20px;
    float: right;
    background-color: #47e7ce;
    color: #000;
    border-radius: 100%;
    text-align: center;
    margin: 10px 0 0 0;
    line-height: 20px;
    font-size: 1.1rem;
    font-weight: 600; }

.chat {
  width: 100%;
  margin: 0px;
  padding: 0px 0 20px 0;
  list-style: none;
  clear: both; }
  .chat__row {
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    width: 100%; }
  .chat__content {
    flex-grow: 1;
    width: 100%;
    border-radius: 15px;
    padding: 15px 20px; }
    .chat__content p {
      padding: 0px !important;
      font-size: 1.4rem; }
      .chat__content p a {
        color: #47e7ce; }
  .chat__row--received .chat__content {
    margin-right: 5%;
    background-color: #291f57;
    border-top-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    color: #fff; }
  .chat__row--sent .chat__content {
    margin-left: 5%;
    background-color: #000;
    color: #fff;
    border-bottom-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px; }
  .chat__row--unread .chat__content {
    font-weight: 600; }
  .chat__time {
    font-size: 1.1rem; }
  .chat__row--sent .chat__time {
    color: #fff; }
  .chat__avatar {
    max-width: 40px;
    position: relative;
    margin-right: 10px; }
    .chat__avatar img {
      display: block;
      max-width: 100%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%; }
  .chat .active-user {
    display: block;
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #55c709;
    border: 2px #fff solid;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 555; }
  .chat__row--sent .chat__avatar {
    align-self: flex-end;
    position: relative;
    margin-left: 10px; }

.chat-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  width: calc(100% - 40px);
  margin: 0 10px;
  padding: 10px;
  border-radius: 10px; }
  .chat-form__textarea {
    width: 100%;
    flex-grow: 1;
    background: none;
    background-color: transparent;
    border: none;
    resize: none;
    height: 20px; }
  .chat-form__submit {
    box-shadow: none;
    -webkit-box-shadow: none;
    -webkit-appearance: none; }
    .chat-form__submit img {
      display: block;
      width: 30px; }

/*===============================================*/
/* 17. TABS & ACCORDION & TABLES */
/*===============================================*/
/* Tabs
/*------------------------------------------*/
.tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .tabs__label {
    order: 1;
    display: block;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 500; }
    .tabs__label--auto {
      width: auto;
      padding: 10px 20px 10px 5px; }
    .tabs__label--12 {
      width: 50%; }
    .tabs__label--13 {
      width: 33.333%; }
  .tabs__content {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 0;
    margin-top: 20px; }
  .tabs input[type="radio"].tabs__radio {
    display: none; }
  .tabs input[type="radio"].tabs__radio:checked + label.tabs__label {
    color: #fff; }
  .tabs input[type="radio"].tabs__radio:checked + label.tabs__label + .tabs__content {
    display: block; }
  .tabs--style1 {
    border-bottom: 1px rgba(255, 255, 255, 0.2) solid; }
    .tabs--style1 .tabs__label {
      text-align: center;
      background-color: #291f57; }
    .tabs--style1 input[type="radio"].tabs__radio:checked + label.tabs__label {
      color: #000;
      background-color: #47e7ce; }

/* ------Accordion---------- */
.accordion {
  width: 100%; }
  .accordion__item {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #291f57;
    margin-bottom: 1px; }
  .accordion__input {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .accordion__label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
  .accordion__content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    .accordion__content p {
      padding: 10px !important; }
  .accordion__input:checked ~ .accordion__content {
    max-height: 300px; }
  .accordion__input:checked ~ .accordion__label, .accordion .accordion__label:hover {
    background-color: #47e7ce;
    color: #000; }
  .accordion__label span {
    position: absolute;
    right: 5%;
    top: 43%;
    display: block;
    width: 14px;
    height: 14px;
    text-align: center;
    background-image: url(../images/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 14px;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s; }
  .accordion__input[type=radio]:checked + .accordion__label span {
    transform: rotateX(180deg);
    background-image: url(../images/icons/arrow-down.svg); }

/* ------Toggle---------- */
.toggle {
  width: 100%;
  margin: 0 auto 0 auto; }
  .toggle__item {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #291f57;
    margin-bottom: 1px; }
  .toggle__input {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .toggle__label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
  .toggle__content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    .toggle__content p {
      padding: 10px !important; }
  .toggle__input:checked ~ .toggle__content {
    max-height: 300px; }
  .toggle__input:checked ~ .toggle__label, .toggle .toggle__label:hover {
    background-color: #47e7ce;
    color: #000; }
  .toggle__label span {
    position: absolute;
    right: 10px;
    top: 43%;
    display: block;
    width: 14px;
    height: 14px;
    text-align: center;
    background-image: url(../images/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 14px;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s; }
  .toggle__input[type=checkbox]:checked + .toggle__label span {
    transform: rotateX(180deg);
    background-image: url(../images/icons/arrow-down.svg); }

/* TABLES */
.table {
  width: calc(100% - 40px);
  padding: 20px;
  background-color: #291f57;
  border-radius: 15px; }
  .table__row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .table__section--nr {
    flex: 0 0 50px;
    font-weight: 600;
    color: #fff; }
  .table__section--grow {
    flex-grow: 1; }
  .table__section--header {
    font-weight: 600;
    color: #fff; }
  .table__section--centered {
    text-align: center; }
  .table__icon {
    display: block;
    width: 24px;
    margin: auto; }
  .table--3cols .table__section {
    width: 33.333%; }
  .table--4cols .table__section {
    width: 25%; }
  .table--5cols {
    overflow-x: scroll;
    width: auto; }
    .table--5cols .table__inner {
      width: 125%; }
    .table--5cols .table__section {
      width: 25%; }
  .table--6cols {
    overflow-x: scroll;
    width: auto; }
    .table--6cols .table__inner {
      width: 150%; }
    .table--6cols .table__section {
      width: 25%; }
  .table--7cols {
    overflow-x: scroll;
    width: auto; }
    .table--7cols .table__inner {
      width: 175%; }
    .table--7cols .table__section {
      width: 25%; }
  .table--8cols {
    overflow-x: scroll;
    width: auto; }
    .table--8cols .table__inner {
      width: 200%; }
    .table--8cols .table__section {
      width: 25%; }
  .table--9cols {
    overflow-x: scroll;
    width: auto; }
    .table--9cols .table__inner {
      width: 225%; }
    .table--9cols .table__section {
      width: 25%; }
  .table--10cols {
    overflow-x: scroll;
    width: auto; }
    .table--10cols .table__inner {
      width: 250%; }
    .table--10cols .table__section {
      width: 25%; }

/*===============================================*/
/* 18. OTHERS */
/*===============================================*/
a.kt-link {
  color: #15BCF1;
}
.image-top {
  background:rgba(0,0,0,0.8);
  width: 100vw;
  margin-left: -20px;
  position: relative; }
  .image-top img {
    display: block;
    max-width: 100%;
    opacity: 0.5; }
  .image-top__details {
    width: calc(100% - 40px);
    padding: 20px;
    position: absolute;
    bottom: 0px;
    left: 0px; }

.user-line {
  display: flex;
  align-items: center;
  padding: 0 0 10px 0; }
  .user-line img {
    display: block;
    width: 40px;
    border-radius: 50%; }
  .user-line span {
    font-weight: 600;
    padding-left: 10px;
    color: #fff; }

.entry {
  padding: 20px 0;
  color: #666;
  line-height: 1.7rem; }
  .entry h2 {
    color: #000;}
  .entry h3 {
    color: #000;}
.entry h4 {
  color: #000;}
.entry h5 {
  color: #000;}
.entry h6 {
  color: #000;}
  .entry__comments {
    text-align: right;
    padding-bottom: 10px;
    margin: 10px 0; }
    .entry__comments a {
      background-color: #15bcf1;
      color: #000;
      font-size: 1.2rem;
      border-radius: 5px;
      padding: 5px 10px; }

.videoplayer {
  width: 100%;
  height: 250px; }

.timer {
  text-align: center;
  width: 100%;
  padding: 20px 0; }
  .timer__icon {
    margin: auto auto 20px auto;
    cursor: pointer;
    display: block; }
    .timer__icon img {
      display: block;
      width: 100px;
      margin: auto; }
    .timer__icon.off {
      display: none; }
    .timer__icon.active {
      opacity: 0.5; }
  .timer__count {
    font-weight: 600;
    font-size: 2.4rem;
    display: block;
    padding-bottom: 20px; }
    .timer__count.off {
      display: none; }


/*arrow button*/
.left-blue {
  color:#fff;
  font-size: 20px;
}

.left-white {
  color:#15BCF1;
  font-size: 20px;
}

.empty-division {
  margin-top: 80%;
  text-align: center;
}

img.inbox-empty-icon {
  filter: invert(42%) sepia(18%) saturate(9%) hue-rotate(56deg) brightness(88%) contrast(84%);
  width: 60px;
}

h1.empty-message, h2.empty-message {
  padding: 0;
  font-weight: 600;
  color: #666;
}

/*dashboard new style*/

.kt-dashboard {
  background: #F4F4F4;
  padding-top: 5px;
}

img.inbox-icon.opacity-low {
  opacity: 0.5;
}

img.inbox-empty-icon.opacity-low {
  opacity: 0.5;
}

/*k-points*/
.k-points {
    margin: 20px 10px 10px 10px;
    padding: 30px;
    border-radius: 10px;
     background-image: url('../images/kt-point-bg.png') !important;
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}

img.k-points-logo {
  width: 40px;
  vertical-align: middle;
  padding-bottom: 10px;
}

h2.k-points-num {
    font-size: 30px;
    vertical-align: middle;
    font-weight:700;
}

p.k-points-text {
  font-size: 14px;
    margin-top: -10px;
}

.button-earn {
    background: #fff !important;
    color: #404040;
    font-weight:600;
}


/*services*/

h3.services-txt {
  padding: 0px;
    color: #343434;
    font-size:10px;
}
a.services-link:hover, a.services-link:active, a.services-link:focus{
  text-decoration: none;
  color: inherit;
}

.services-title {
    color: #343434;
    font-size:15px;
    font-weight: 600;
}
.page-inner {
    background: #fff;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
}

/*icons*/

.fontawesome-icon, .services-icon {
  color: #15BCF1;
}
.services-icon {
    font-size: 35px;
    margin-bottom: 10px;
}
.grid-container-transaction {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0px;
}

.p-10.transaction-as-of {
  background-color: #d6d6d6;
}

.grid-container-redeem {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0px;
  margin-left: -10px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0px;
}
.grid-item {
  font-size: 10px;
  text-align: center;
}

.grid-item-services{
  border-radius: 10px;
  padding: 10px;
  font-size: 10px;
  text-align: center;
  background-color: #fff;
}


/*article/info*/

.info-title {
    color: #343434;
    font-size:15px;
    font-weight: 600;
}

p.info-txt {
    color: #666666;
}


/*notification bar*/
.notif-content {
  margin: 0px 0px 0px 0px;
  padding: 10px 10px 10px 10px;
  border-top: 1px solid #15BCF1;
}

p.notif-text {
  display: inline;
    padding-bottom: 0px;
    color: #666;
}

p.notif-date {
  padding-bottom: 0px;
    color: #666;
  font-size: 11px;
}

hr.border-bottom {
    border: 1px solid #15BCF1;
}

.inbox-content {
  display: inline-block;
}

img.inbox-icon {
  filter: invert(42%) sepia(18%) saturate(9%) hue-rotate(56deg) brightness(88%) contrast(84%);
  width: 40px;
  padding-right: 10px;
}
/*My Profile*/

.profile-content {
  margin: 90px 20px 20px 20px;
}

img.kt-dp {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 45%;
    border-radius: 100px;
}

/*profile picture*/

.profile-pic {
    width: 200px;
    max-height: 200px;
    display: inline-block;
}

.file-upload {
    display: none;
}
.circle {
    border-radius: 100% !important;
    overflow: hidden;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 100px;
}
img {
    max-width: 100%;
    height: auto;
}
.p-image {
  position: absolute;
  top: 240px;
  color: #15BCF1;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.p-image:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.upload-button {
  font-size: 1.2em;
}

.upload-button:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  color: #999;
}

.profile-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}


.prof-content {
  margin: 200px 0px 0px 0px;
}

p.prof-label {
    color: #666;
}

p.prof-name {
    color: #666;
}


/*navigation bar*/
li.active {
    background-color: #0592BF;
}

a.navigation-buttons {
  display: block;
  padding: 15px;
  height: 100%;
}

/*checkout*/
.bg-blue {
    margin-top: 75px;
    padding: 50px;
        background-image: url(../images/img-08.png);
}

h2.bg-blue-txt {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}
.bg-white {
  height: 600px;
    background: #fff;
    padding: 50px;
    height:auto;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    text-align: center;
}

.checkout-sucess {
  background:#15BCF1;
  padding-top: 5px;
}

h3.bg-white-title {
    text-align: center;
    color: #666;
    font-size: 18px;
    font-weight: 600;
}

p.bg-white-txt {
    text-align: center;
    font-size: 15px;
    color: #666;
}

.check-circle {
    font-size: 80px;
    color: #15BCF1;
    margin-bottom:30px;
}

.button-checkout-success {
    background-color: #15BCF1 !important;
}

.button-checkout-danger {
    background-color: #d9534f !important;
}

/*redeem page*/
.redeem-content {
    margin:0px 0px 5px 0px;
}

.redeem-page {
  background: #fff;
  padding-top: 5px;
}

/*style for tab*/
/* Style the tab */
.tab {
  text-align: center;
  margin-top:20px;
  margin-bottom: 20px;
  overflow: hidden;
  background:#fff;
}

/* Style the buttons inside the tab */
.tab button {
  opacity: 0.6;
  color: #3B3B3B;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.1s;
  font-size: 17px;
  background: transparent;
}

/* Change background color of buttons on hover */
.tab button:hover {
  color: #3B3B3B;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: transparent;
  border-bottom: 3px solid #15BCF1;
 color: #3B3B3B;
 font-weight:600;
  opacity: 1;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.img-redeem {
    width: 100%;
    height: 150px;
    background-size: cover;
}
.listed-item {
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 18px #ccc;
}
.listed-item p{
  padding-left: 10px;
  padding-right: 10px;
}
.listed-item h2{
  padding-left: 10px;
  padding-right: 10px;
}
.listed-item .img-redeem{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.listed-item .redeem-icon{
  margin-right: 3px;
  padding-left: 10px;
}


h2.redeem-title {
  height: 50px;
  padding-bottom: 10px;
    color: #666;
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
  }

h2.summary-title {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
  text-align: left;
  font-weight: 600;
}

p.redeem-desc {
    font-size: 12px;
    text-align: left;
    color:#666;
}

.redeem-item {
    padding: 5px;
    margin:5px;
  }


img.redeem-icon {
    width: 27px;
    float: left;
}

p.redeem-price {
    font-size: 16px;
   text-align: left;
   color:#666;
}


.header__logo--text a:hover {
    color: #fff;
}


img.redeem-inner-icon {
  width: 15px;
  vertical-align: baseline;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

p.redeem-inner-price {
  font-size: 20px;
    display: inline;
    text-align: left;
    font-weight: 600;
    color: #666;
  }

.grid-container.redeem-grid {
    margin: 10px;
}

h2.redeem-inner-title {
    padding-bottom: 0;
    color: #666;
    font-size: 20px;
    text-align: left;
    font-weight: 600;
  }

  .col.redeem-inner-col {
    padding: 5px;
}

.redeem-inner-buttons{
  text-align: center;
}

.redeem-div {
    border: 1px solid #15BCF1;
    margin-bottom:20px;
}

span#summary-error-msg {
  display: block;
  text-align: center;
}

.checkout-div {
  border-bottom: 0.3px solid #15BCF1;
  margin-bottom:10px;
  margin-top:10px;
}

.redeem-inner {
    padding: 20px;
}

.redeem-inner-content {
    text-align: left;
}

p.redeem-inner-desc {
  word-break: break-word;
    font-size: 15px;
        color: #666;
  padding-bottom: 10px;
}


.button-redeem {
    width: 100px;
    float: left;
    color: #ffffff;
    padding: 0px;
    text-align: center;
    margin-top: -5px;
    text-decoration: none;
}

/*refer*/
p.refer-txt {
    font-size: 15px;
    text-align: center;
    font-weight: 600;
    margin-top: -15px;
}

.button-refer {
    background-color: #15BCF1 !important;
    margin-top:50px;
}

span#myTooltip {
    background: #fff;
    border-radius: 20px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    padding: 21px;
}

a.link-info {
    color: #666;
}


img.refer-icon {
    width: 50px;
    margin-top: 0px;
    vertical-align: middle;
}

p.refer-price {
    font-size: 30px;
   margin-top: -15px;
  display: inline;

}

/*transaction history*/
.trans-content {
  margin: 0px 0px 10px 0px;
}

.item1.trans-cols {
    padding: 10px;
    margin:auto;
}
.item2.trans-cols {
    padding: 10px;
    margin:auto;
}

.item3.trans-cols {
    padding: 10px;
    margin: auto;
}

h3.trans-txt {
    color: #343434;
    font-size:12px;
    padding:0 !important;
}

.trans-icon {
    font-size: 35px;
    color: #15BCF1;
    margin-bottom: 10px;
}



/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 3px;
  width: 35px;
  margin: 0 2px;
  background-color: #9ce7ff;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #15BCF1;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


/*ads details*/
.ads-details {

  overflow-x: hidden !important;
  background: #fff;
}

/*Achievement*/
.achievement-cont {
    margin: 10px 10px 10px 10px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

h2.ach-h2 {
    color: #666;
    font-weight: 600;
}

p.ach-txt {
    color: #666;
    margin-top: -10px;
    font-size: 13px
}

h3.ach-h3 {
    color: #666;
    font-weight: 600;
    text-align: center;
}

.ach-loyalty {
    background: #ECFAFF;
    padding: 10px 10px 0px 10px;
    border-radius: 10px;
  margin-bottom: 10px;
}

h2.loyalty-h2 {
    color: #666;
    font-weight: 600;
}

p.loyalty-txt {
    color: #666;
    font-size: 12px;
    margin-top: -20px;
}

p.prog-txt {
    text-align: right;
    color: #666;
    font-weight: 600;
    font-size: 12px
}

i.fa-solid.fa-star.prog-star {
    color: #F2DD7C;
}

.ach-loyalty.disabled {
    pointer-events: none;
    opacity: 0.4;
}

.progress {
  display: flex;
  height: 8px;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #eaecf4;
  border-radius: 0.35rem;
}
.progress-bar-membership {
  background-color: #504BA6;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #4e73df;
  transition: width 0.6s ease;
}

/*membership*/
.membership-cont {
    margin-top: -1px;
    background: #15BCF1;
    padding: 20px;
    border-top: 1px solid white;
    background-image: url('../images/img-03.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align:center;
}


h2.mem-h2 {
    font-size: 30px;
    font-weight: bold;
}

p.mem-prog-txt {
  margin-right: 15px;
    font-size: 15px;
    color: #fff;
}

.membership-table {
    margin: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
  color: #666;
}

.membership-table th {
  font-size: 14px;
  text-align: left;
}

.summary-table {
  margin: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  color: #666;
  font-size: 13;
}

.summary-table th {
  font-size: 15px;
  text-align: left;
}


td.td-percent {
    padding: 0;
    border-left: 1px dashed #2AC2F2;
    text-align: center;
    font-size: 12px;
  line-height: 40px;
  vertical-align: middle;
}
td.td-benefits {
  line-height: 2.1rem;
  font-size: 12px;
      padding: 5px;
  font-weight: 400;
}

td.td-summary {
  line-height: 2.1rem;
  font-size: 14px;
  padding: 5px;
  font-weight: 400;
}

.summary-table-layout{
  width: 100%;
}

p.redeem-inner-title {
  color: #666;
}

main {
  flex: 1;
}

th {
    padding: 5px;
}

i.fa-solid.fa-star.mem-star {
  font-size:12px;
  color:#F2DC7A;
  vertical-align: initial;
}

.silver {
  background: linear-gradient(to top right, #838e90 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.silver i{
  font-size: 20px;
  padding: 0px 12px 0px 12px;
}

.gold {
  background: linear-gradient(to top right, #ffcc00 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gold i{
  font-size: 20px;
  padding: 0px 12px 0px 12px;
}

.platinum {
  background: linear-gradient(to top right, #288073 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.platinum i{
  font-size: 20px;
  padding: 0px 12px 0px 12px;
}

.diamond {
  background: linear-gradient(to top right, #9173af 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.diamond i{
  font-size: 20px;
  padding: 0px 12px 0px 12px;
}

p.rank-text {
  padding-bottom: 0px;
  font-size: 10px;
  text-align: center;
  margin-bottom: 0px;
}

.progress-membership {
      width: 270px;
       margin: auto;
}
.padding-left{
  margin-left: 40px;
  padding-right: 40px;
}

.light-bg{
  filter: invert(46%) sepia(91%) saturate(2996%) hue-rotate(164deg) brightness(99%) contrast(104%);
}



.ctn-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 699;
  background: #ffffff;
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
  text-align: center;
}

.ctn-preloader .animation-preloader .icon {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.ctn-preloader .animation-preloader .icon img {
  width: 100%;
}

.ctn-preloader .animation-preloader .icon span {
  animation: spinner 1.5s infinite linear;
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.ctn-preloader .animation-preloader .icon span:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 12px;
  left: 0;
  box-shadow: 0 0 10px #1f96b2;
  border-radius: 50%;
  background: -webkit-linear-gradient(#ffffff, #1f96b2);
}

.select-wrapper{
  padding:20px;
  height: 150px;
}


.intl-tel-input {
  width: 100%;
  position: relative;
  display: inline-block;
}

.intl-tel-input * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.intl-tel-input .hide {
  display: none;
}

.intl-tel-input .v-hide {
  visibility: hidden;
}


.intl-tel-input input,
.intl-tel-input input[type=text],
.intl-tel-input input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.intl-tel-input .flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.intl-tel-input .selected-flag {
  z-index: 1;
  position: relative;
  width: 36px;
  height: 100%;
  padding: 0 0 0 8px;
}

.intl-tel-input .selected-flag .iti-flag {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.intl-tel-input .selected-flag .iti-arrow {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.intl-tel-input .selected-flag .iti-arrow.up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.intl-tel-input .country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
}

.intl-tel-input .country-list.dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

.intl-tel-input .country-list .flag-box {
  display: inline-block;
  width: 20px;
}

@media (max-width: 500px) {
  .intl-tel-input .country-list {
    white-space: normal;
  }
}

.intl-tel-input .country-list .divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

.intl-tel-input .country-list .country {
  padding: 5px 10px;
}

.intl-tel-input .country-list .country .dial-code {
  color: #999;
}

.intl-tel-input .country-list .country.highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.intl-tel-input .country-list .flag-box,
.intl-tel-input .country-list .country-name,
.intl-tel-input .country-list .dial-code {
  vertical-align: middle;
}

.intl-tel-input .country-list .flag-box,
.intl-tel-input .country-list .country-name {
  margin-right: 6px;
}

.intl-tel-input.allow-dropdown input,
.intl-tel-input.allow-dropdown input[type=text],
.intl-tel-input.allow-dropdown input[type=tel],
.intl-tel-input.separate-dial-code input,
.intl-tel-input.separate-dial-code input[type=text],
.intl-tel-input.separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.intl-tel-input.allow-dropdown .flag-container,
.intl-tel-input.separate-dial-code .flag-container {
  right: auto;
  left: 0;
}

.intl-tel-input.allow-dropdown .selected-flag,
.intl-tel-input.separate-dial-code .selected-flag {
  width: 46px;
}

.intl-tel-input.allow-dropdown .flag-container:hover {
  cursor: pointer;
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,
.intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
  cursor: default;
}

.intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,
.intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {
  background-color: transparent;
}

.intl-tel-input.separate-dial-code .selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
  display: table-cell;
  vertical-align: middle;
  padding-left: 28px;
}

.intl-tel-input.separate-dial-code.iti-sdc-2 input,
.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text],
.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel] {
  padding-left: 66px;
}

.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
  width: 60px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
  padding-left: 76px;
}

.input-min-width-95p {min-width:95%;}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
  width: 70px;
}

.intl-tel-input.separate-dial-code.iti-sdc-3 input,
.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text],
.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel] {
  padding-left: 74px;
}

.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
  width: 68px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
  padding-left: 84px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
  width: 78px;
}

.intl-tel-input.separate-dial-code.iti-sdc-4 input,
.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text],
.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel] {
  padding-left: 82px;
}

.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
  width: 76px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel] {
  padding-left: 92px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
  width: 86px;
}

.intl-tel-input.separate-dial-code.iti-sdc-5 input,
.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text],
.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel] {
  padding-left: 90px;
}

.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
  width: 84px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
  padding-left: 100px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
  width: 94px;
}

.intl-tel-input.iti-container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.intl-tel-input.iti-container:hover {
  cursor: pointer;
}

.iti-mobile .intl-tel-input.iti-container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .intl-tel-input .country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .intl-tel-input .country-list .country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti-flag {
  width: 20px;
}

.iti-flag.be {
  width: 18px;
}

.iti-flag.ch {
  width: 15px;
}

.iti-flag.mc {
  width: 19px;
}

.iti-flag.ne {
  width: 18px;
}

.iti-flag.np {
  width: 13px;
}

.iti-flag.va {
  width: 15px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
  .iti-flag {
    background-size: 5630px 15px;
  }
}

.iti-flag.ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti-flag.ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti-flag.ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti-flag.af {
  height: 14px;
  background-position: -66px 0px;
}

.iti-flag.ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti-flag.ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti-flag.al {
  height: 15px;
  background-position: -132px 0px;
}

.iti-flag.am {
  height: 10px;
  background-position: -154px 0px;
}

.iti-flag.ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti-flag.aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti-flag.ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti-flag.as {
  height: 10px;
  background-position: -242px 0px;
}

.iti-flag.at {
  height: 14px;
  background-position: -264px 0px;
}

.iti-flag.au {
  height: 10px;
  background-position: -286px 0px;
}

.iti-flag.aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti-flag.ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti-flag.az {
  height: 10px;
  background-position: -352px 0px;
}

.iti-flag.ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti-flag.bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti-flag.bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti-flag.be {
  height: 15px;
  background-position: -440px 0px;
}

.iti-flag.bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti-flag.bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti-flag.bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti-flag.bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti-flag.bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti-flag.bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti-flag.bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti-flag.bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti-flag.bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti-flag.bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti-flag.br {
  height: 14px;
  background-position: -680px 0px;
}

.iti-flag.bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti-flag.bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti-flag.bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti-flag.bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti-flag.by {
  height: 10px;
  background-position: -790px 0px;
}

.iti-flag.bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti-flag.ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti-flag.cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti-flag.cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti-flag.cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti-flag.cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti-flag.ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti-flag.ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti-flag.ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti-flag.cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti-flag.cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti-flag.cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti-flag.co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti-flag.cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti-flag.cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti-flag.cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti-flag.cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti-flag.cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti-flag.cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti-flag.cy {
  height: 13px;
  background-position: -1225px 0px;
}

.iti-flag.cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti-flag.de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti-flag.dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti-flag.dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti-flag.dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti-flag.dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti-flag.do {
  height: 13px;
  background-position: -1379px 0px;
}

.iti-flag.dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti-flag.ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti-flag.ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti-flag.ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti-flag.eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti-flag.eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti-flag.er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti-flag.es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti-flag.et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti-flag.eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti-flag.fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti-flag.fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti-flag.fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti-flag.fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti-flag.fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti-flag.fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti-flag.ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti-flag.gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti-flag.gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti-flag.ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti-flag.gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti-flag.gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti-flag.gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti-flag.gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti-flag.gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti-flag.gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti-flag.gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti-flag.gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti-flag.gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti-flag.gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti-flag.gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti-flag.gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti-flag.gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti-flag.gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti-flag.gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti-flag.hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti-flag.hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti-flag.hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti-flag.hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti-flag.ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti-flag.hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti-flag.ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti-flag.id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti-flag.ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti-flag.il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti-flag.im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti-flag.in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti-flag.io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti-flag.iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti-flag.ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti-flag.is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti-flag.it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti-flag.je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti-flag.jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti-flag.jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti-flag.jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti-flag.ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti-flag.kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti-flag.kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti-flag.ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti-flag.km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti-flag.kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti-flag.kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti-flag.kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti-flag.kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti-flag.ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti-flag.kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti-flag.la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti-flag.lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti-flag.lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti-flag.li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti-flag.lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti-flag.lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti-flag.ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti-flag.lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti-flag.lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti-flag.lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti-flag.ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti-flag.ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti-flag.mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti-flag.md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti-flag.me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti-flag.mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti-flag.mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti-flag.mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti-flag.mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti-flag.ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti-flag.mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti-flag.mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti-flag.mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti-flag.mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti-flag.mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti-flag.mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti-flag.ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti-flag.mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti-flag.mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti-flag.mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti-flag.mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti-flag.mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti-flag.my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti-flag.mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti-flag.na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti-flag.nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti-flag.ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti-flag.nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti-flag.ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti-flag.ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti-flag.nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti-flag.no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti-flag.np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti-flag.nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti-flag.nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti-flag.nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti-flag.om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti-flag.pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti-flag.pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti-flag.pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti-flag.pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti-flag.ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti-flag.pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti-flag.pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti-flag.pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti-flag.pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti-flag.pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti-flag.ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti-flag.pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti-flag.pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti-flag.py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti-flag.qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti-flag.re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti-flag.ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti-flag.rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti-flag.ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti-flag.rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti-flag.sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti-flag.sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti-flag.sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti-flag.sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti-flag.se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti-flag.sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti-flag.sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti-flag.si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti-flag.sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti-flag.sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti-flag.sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti-flag.sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti-flag.sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti-flag.so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti-flag.sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti-flag.ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti-flag.st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti-flag.sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti-flag.sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti-flag.sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti-flag.sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti-flag.ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti-flag.tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti-flag.td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti-flag.tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti-flag.tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti-flag.th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti-flag.tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti-flag.tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti-flag.tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti-flag.tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti-flag.tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti-flag.to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti-flag.tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti-flag.tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti-flag.tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti-flag.tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti-flag.tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti-flag.ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti-flag.ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti-flag.um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti-flag.us {
  height: 11px;
  background-position: -5241px 0px;
}

.iti-flag.uy {
  height: 14px;
  background-position: -5263px 0px;
}

.iti-flag.uz {
  height: 10px;
  background-position: -5285px 0px;
}

.iti-flag.va {
  height: 15px;
  background-position: -5307px 0px;
}

.iti-flag.vc {
  height: 14px;
  background-position: -5324px 0px;
}

.iti-flag.ve {
  height: 14px;
  background-position: -5346px 0px;
}

.iti-flag.vg {
  height: 10px;
  background-position: -5368px 0px;
}

.iti-flag.vi {
  height: 14px;
  background-position: -5390px 0px;
}

.iti-flag.vn {
  height: 14px;
  background-position: -5412px 0px;
}

.iti-flag.vu {
  height: 12px;
  background-position: -5434px 0px;
}

.iti-flag.wf {
  height: 14px;
  background-position: -5456px 0px;
}

.iti-flag.ws {
  height: 10px;
  background-position: -5478px 0px;
}

.iti-flag.xk {
  height: 15px;
  background-position: -5500px 0px;
}

.iti-flag.ye {
  height: 14px;
  background-position: -5522px 0px;
}

.iti-flag.yt {
  height: 14px;
  background-position: -5544px 0px;
}

.iti-flag.za {
  height: 14px;
  background-position: -5566px 0px;
}

.iti-flag.zm {
  height: 14px;
  background-position: -5588px 0px;
}

.iti-flag.zw {
  height: 10px;
  background-position: -5610px 0px;
}

.iti-flag {
  width: 20px;
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
  .iti-flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags@2x.png");
  }
}

.iti-flag.np {
  background-color: transparent;
}

.hide {
  display: none;
}

.hidden{
  visibility: hidden;
  position: absolute;
}

pre {
  margin: 0 !important;
  display: inline-block;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
  background: none;
}


::-webkit-input-placeholder {
  color: #BBB;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #BBB;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #BBB;
}

button {
  color: #FFF;
  background-color: #428BCA;
  border: 1px solid #357EBD;

}

button:hover {
  background-color: #3276B1;
  border-color: #285E8E;
  cursor: pointer;
}

#result {
  margin-bottom: 100px;
}

.intl-tel-input.separate-dial-code .selected-flag {
  background-color: rgba(0, 0, 0, 0.0) !important;
}

.iti-mobile .intl-tel-input.iti-container {
  width: 60% !important;
}

.intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
  padding-left: 15px !important;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
  padding-left: 15px !important;
  font-size: 12px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
  padding-left: 90px !important;
}
.validation-message{
  padding-top: 10px;
  padding-bottom: 10px;
}

.success-text{
  color: green;
}

.error-text{
  color: red;
}

.preloader-wrapper {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px
}

.preloader-wrapper.small {
  width: 36px;
  height: 36px
}

.preloader-wrapper.big {
  width: 64px;
  height: 64px
}

.preloader-wrapper.active {
  -webkit-animation: container-rotate 1568ms linear infinite;
  animation: container-rotate 1568ms linear infinite
}

@-webkit-keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg)
  }
}

@keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

.spinner-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-color: #26a69a
}

.spinner-blue, .spinner-blue-only {
  border-color: #4285f4
}

.spinner-red, .spinner-red-only {
  border-color: #db4437
}

.spinner-yellow, .spinner-yellow-only {
  border-color: #f4b400
}

.spinner-green, .spinner-green-only {
  border-color: #0f9d58
}

.active .spinner-layer.spinner-blue {
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.active .spinner-layer.spinner-red {
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.active .spinner-layer.spinner-yellow {
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.active .spinner-layer.spinner-green {
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.active .spinner-layer, .active .spinner-layer.spinner-blue-only, .active .spinner-layer.spinner-red-only, .active .spinner-layer.spinner-yellow-only, .active .spinner-layer.spinner-green-only {
  opacity: 1;
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

@-webkit-keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg)
  }
  25% {
    -webkit-transform: rotate(270deg)
  }
  37.5% {
    -webkit-transform: rotate(405deg)
  }
  50% {
    -webkit-transform: rotate(540deg)
  }
  62.5% {
    -webkit-transform: rotate(675deg)
  }
  75% {
    -webkit-transform: rotate(810deg)
  }
  87.5% {
    -webkit-transform: rotate(945deg)
  }
  to {
    -webkit-transform: rotate(1080deg)
  }
}

@keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg)
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg)
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg)
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg)
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg)
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg)
  }
}

@-webkit-keyframes blue-fade-in-out {
  from {
    opacity: 1
  }
  25% {
    opacity: 1
  }
  26% {
    opacity: 0
  }
  89% {
    opacity: 0
  }
  90% {
    opacity: 1
  }
  100% {
    opacity: 1
  }
}

@keyframes blue-fade-in-out {
  from {
    opacity: 1
  }
  25% {
    opacity: 1
  }
  26% {
    opacity: 0
  }
  89% {
    opacity: 0
  }
  90% {
    opacity: 1
  }
  100% {
    opacity: 1
  }
}

@-webkit-keyframes red-fade-in-out {
  from {
    opacity: 0
  }
  15% {
    opacity: 0
  }
  25% {
    opacity: 1
  }
  50% {
    opacity: 1
  }
  51% {
    opacity: 0
  }
}

@keyframes red-fade-in-out {
  from {
    opacity: 0
  }
  15% {
    opacity: 0
  }
  25% {
    opacity: 1
  }
  50% {
    opacity: 1
  }
  51% {
    opacity: 0
  }
}

@-webkit-keyframes yellow-fade-in-out {
  from {
    opacity: 0
  }
  40% {
    opacity: 0
  }
  50% {
    opacity: 1
  }
  75% {
    opacity: 1
  }
  76% {
    opacity: 0
  }
}

@keyframes yellow-fade-in-out {
  from {
    opacity: 0
  }
  40% {
    opacity: 0
  }
  50% {
    opacity: 1
  }
  75% {
    opacity: 1
  }
  76% {
    opacity: 0
  }
}

@-webkit-keyframes green-fade-in-out {
  from {
    opacity: 0
  }
  65% {
    opacity: 0
  }
  75% {
    opacity: 1
  }
  90% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

@keyframes green-fade-in-out {
  from {
    opacity: 0
  }
  65% {
    opacity: 0
  }
  75% {
    opacity: 1
  }
  90% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

.gap-patch {
  position: absolute;
  top: 0;
  left: 45%;
  width: 10%;
  height: 100%;
  overflow: hidden;
  border-color: inherit
}

.gap-patch .circle {
  width: 1000%;
  left: -450%
}

.circle-clipper {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit
}

.circle-clipper .circle {
  width: 200%;
  height: 100%;
  border-width: 3px;
  border-style: solid;
  border-color: inherit;
  border-bottom-color: transparent !important;
  border-radius: 50%;
  -webkit-animation: none;
  animation: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0
}

.circle-clipper.left .circle {
  left: 0;
  border-right-color: transparent !important;
  -webkit-transform: rotate(129deg);
  transform: rotate(129deg)
}

.circle-clipper.right .circle {
  left: -100%;
  border-left-color: transparent !important;
  -webkit-transform: rotate(-129deg);
  transform: rotate(-129deg)
}

.active .circle-clipper.left .circle {
  -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.active .circle-clipper.right .circle {
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

@-webkit-keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg)
  }
  50% {
    -webkit-transform: rotate(-5deg)
  }
  to {
    -webkit-transform: rotate(130deg)
  }
}

@keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg)
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg)
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg)
  }
}

@-webkit-keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg)
  }
  50% {
    -webkit-transform: rotate(5deg)
  }
  to {
    -webkit-transform: rotate(-130deg)
  }
}

@keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg)
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg)
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg)
  }
}

#spinnerContainer.cooldown {
  -webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1)
}

@-webkit-keyframes fade-out {
  from {
    opacity: 1
  }
  to {
    opacity: 0
  }
}

@keyframes fade-out {
  from {
    opacity: 1
  }
  to {
    opacity: 0
  }
}

h2.referral-code-text {
  color: #666;
  font-size: 44px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

p.redeem-title.text-center {
  color: #666;
}
a.fill-div {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
}


.dob{
  width: 33.33%;
  float: left;
}

.iti-mobile .intl-tel-input.iti-container {
  height: 50px !important;
  top: 35% !important;
  bottom: 30px !important;
  left: 30px !important;
  right: 30px !important;
  position: fixed !important;
}

#partitioned {
  padding-left: 20px;
  letter-spacing: 52px;
  border: 0;
  background-image: linear-gradient(to left, black 85%, rgba(21, 188, 241, 0) 0%);
  background-position: bottom;
  background-size: 65px 1px;
  background-repeat: repeat-x;
  background-position-x: 45px;
  width: 100%;
  min-width: 295px;
  font-size: 20px;
}

#divInner{
  left: 0;
  position: sticky;
}

#divOuter{
  width: 100%;
  overflow: hidden;
}

.hide {
  display: none !important;
}

.eye-icon {
  cursor: pointer;
  position: relative;
  float: right;
  padding-right: 17px;
  margin-top: -31px; 
  color: rgb(94,208,243);
  font-size: large;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

.form-control {
  width: 100%;
  border-radius: 1.5em;
  border: 1px solid #ccc;
  height: calc(3em + 2px);
  padding: 1em;
}

/* Styles only for iOS devices */
@supports (-webkit-touch-callout: none) {
  .form-control {
      height: calc(3.7em + 2px);
  }

  .eye-icon {
    margin-top: -32px;
  }
}
