button {
  cursor: pointer;
  padding: 0;
  border: 0;
}

button:focus {
  outline: 0;
}

.h1-font, h1 {
  font-size: 2.25rem;
  line-height: 1.35;
}

@media only screen and (min-width: 768px) {
  .h1-font, h1 {
    font-size: 3.75rem;
    line-height: 1.16;
  }
}

@media (max-width: 767px) {

}

.h2-font, h2 {
  font-size: 2.25rem;
  line-height: 1.35;
}

 @media only screen and (min-width: 768px) {
 .h2-font, h2 {
    font-size: 3rem;
    line-height: 1.2;
  }
}

/**! ----- Font weight ---- **/
.font-w--300 {
  font-weight: 300 !important;
}

.font-w--400 {
  font-weight: 400 !important;
}

.font-w--500 {
  font-weight: 500 !important;
}

.font-w--600 {
  font-weight: 600 !important;
}

.font-w--700 {
  font-weight: 700 !important;
}


p {
  color: #7C7D8D;
}

.bg-white p {
  opacity: 1 !important;
}


/**! ----- Color Helper ---- **/
.text-color--200 {
  color: #CDCDD9;
}

.text-color--300 {
  color: #979EA5;
}
.text-color--400 {
  color: #7C7D8D;
}

.text-color--700 {
  color: #12141f;
}
.font-size--20 {
  font-size: 1.25rem;
}

.color--white {
  color: #fff !important;
}

.color--orange {
  color: #eb7939 !important;
}

.color--coral {
  color: #FF4B36 !important;
}

.color--green {
  color: #1ED660 !important;
}

/**! 04. buttons **/
/**! ----- Button General Styling ---- **/
.btn {
  border: 0;
  outline: 0;
  font-weight: 700;
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
  border-radius: 0.15625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  background-size: 110% 110% !important;
}

.btn:focus, .btn.focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn .btn__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn i {
  line-height: initial;
}

.btn-size--lg {
  padding-right: 3.125rem;
  padding-left: 3.125rem;
}

.btn-size--md {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 1rem;
}

.btn-size--sm {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 0.9375rem;
}

.btn--transparent {
  background: transparent;
  padding: 0;
}

.btn .icon-arrow-right {
  font-weight: 600;
  padding-left: 0.9375rem;
}

.btn:hover .icon-arrow-right {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

/**! ----- Button Background ---- **/
.btn-bg--primary {
  color: #fff !important;
}

.btn-bg--primary:hover {
  color: #fff !important;
}

.btn-bg--primary--05::after {
  content: "";
  opacity: .05;
  height: 100%;
  width: 100%;
  position: absolute !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}



/**! ----- Opacity ---- **/
.opacity--02 {
  opacity: .02;
}

.opacity--03 {
  opacity: .03;
}

.opacity--05 {
  opacity: .05;
}

.opacity--08 {
  opacity: .08;
}

.opacity--10 {
  opacity: .10;
}

.opacity--20 {
  opacity: .20;
}

.opacity--30 {
  opacity: .30;
}

.opacity--40 {
  opacity: .40;
}

.opacity--50 {
  opacity: .50;
}

.opacity--60 {
  opacity: .60;
}

.opacity--70 {
  opacity: .70;
}

.opacity--80 {
  opacity: .80;
}

.opacity--90 {
  opacity: .90;
}

.opacity--100 {
  opacity: 100;
}


/**! ----- Max Width---- **/
@media only screen and (max-width: 575px) {
  .max-w--320 {
    max-width: 20rem;
  }
  .max-w--350 {
    max-width: 21.875rem;
  }
  .max-w--400 {
    max-width: 31.25rem;
  }
  .max-w--500 {
    max-width: 31.25rem;
  }
}

/**! ----- Width---- **/
.w-80 {
  width: 80%;
}

.w-85 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

/**! ----- Height---- **/
.h-100vh {
  height: 100vh;
}

.h-min-100vh {
  min-height: 100vh;
}

@media only screen and (min-width: 992px) {
  .h-lg-100vh {
    height: 100vh;
  }
  .h-min-lg-100vh {
    min-height: 100vh;
  }
}

/**! ----- overflow---- **/
.hidden {
  overflow: hidden;
}

/**! ----- Z Index---- **/
.z-index1 {
  z-index: 1;
}

.z-index2 {
  z-index: 2;
}

.z-index3 {
  z-index: 3;
}

.z-index-1 {
  z-index: -1;
}

.z-index-2 {
  z-index: -2;
}

.z-index-3 {
  z-index: -3;
}

/**! ----- Position ---- **/
.pos-abs-top {
  position: absolute !important;
  top: 0;
  right: auto;
  bottom: auto;
  left: auto;
}

.pos-abs-bottom {
  position: absolute !important;
  top: auto;
  right: auto;
  bottom: 0;
  left: auto;
}

.pos-abs-right {
  position: absolute !important;
  top: auto;
  right: 0;
  bottom: auto;
  left: auto;
}

.pos-abs-left {
  position: absolute !important;
  top: auto;
  right: auto;
  bottom: auto;
  left: 0;
}

.pos-abs-bottom-left {
  position: absolute !important;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

.pos-abs-bottom-right {
  position: absolute !important;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

.pos-abs-top-right {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

.pos-abs-top-left {
  position: absolute !important;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

.pos-abs-center {
  position: absolute !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.pos-abs-horizon-center {
  position: absolute !important;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.pos-abs-vertical-center {
  position: absolute !important;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.pos-right {
  right: 0 !important;
}

.pos-left {
  left: 0 !important;
}

@media only screen and (min-width: 768px) {
  .pos-abs-md-top {
    position: absolute !important;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .pos-abs-md-bottom {
    position: absolute !important;
    top: auto;
    right: auto;
    bottom: 0;
    left: auto;
  }
  .pos-abs-md-right {
    position: absolute !important;
    top: auto;
    right: 0;
    bottom: auto;
    left: auto;
  }
  .pos-abs-md-left {
    position: absolute !important;
    top: auto;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .pos-abs-md-bottom-left {
    position: absolute !important;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
  .pos-abs-md-bottom-right {
    position: absolute !important;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
  }
  .pos-abs-md-top-right {
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
  }
  .pos-abs-md-top-left {
    position: absolute !important;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .pos-abs-md-center {
    position: absolute !important;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .pos-abs-md-horizon-center {
    position: absolute !important;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .pos-abs-md-vertical-center {
    position: absolute !important;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .pos-md-right {
    right: 0 !important;
  }
  .pos-md-left {
    left: 0 !important;
  }
}

@media only screen and (min-width: 992px) {
  .pos-abs-lg-top {
    position: absolute !important;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .pos-abs-lg-bottom {
    position: absolute !important;
    top: auto;
    right: auto;
    bottom: 0;
    left: auto;
  }
  .pos-abs-lg-right {
    position: absolute !important;
    top: auto;
    right: 0;
    bottom: auto;
    left: auto;
  }
  .pos-abs-lg-left {
    position: absolute !important;
    top: auto;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .pos-abs-lg-bottom-left {
    position: absolute !important;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
  .pos-abs-lg-bottom-right {
    position: absolute !important;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
  }
  .pos-abs-lg-top-right {
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
  }
  .pos-abs-lg-top-left {
    position: absolute !important;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .pos-abs-lg-center {
    position: absolute !important;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .pos-abs-lg-horizon-center {
    position: absolute !important;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .pos-abs-lg-vertical-center {
    position: absolute !important;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .pos-lg-right {
    right: 0 !important;
  }
  .pos-lg-left {
    left: 0 !important;
  }
}

@media only screen and (min-width: 1200px) {
  .pos-abs-xl-top {
    position: absolute !important;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .pos-abs-xl-bottom {
    position: absolute !important;
    top: auto;
    right: auto;
    bottom: 0;
    left: auto;
  }
  .pos-abs-xl-right {
    position: absolute !important;
    top: auto;
    right: 0;
    bottom: auto;
    left: auto;
  }
  .pos-abs-xl-left {
    position: absolute !important;
    top: auto;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .pos-abs-xl-bottom-left {
    position: absolute !important;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
  .pos-abs-xl-bottom-right {
    position: absolute !important;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
  }
  .pos-abs-xl-top-right {
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
  }
  .pos-abs-xl-top-left {
    position: absolute !important;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
  }
  .pos-abs-xl-center {
    position: absolute !important;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .pos-abs-xl-horizon-center {
    position: absolute !important;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .pos-abs-xl-vertical-center {
    position: absolute !important;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .pos-xl-right {
    right: 0 !important;
  }
  .pos-xl-left {
    left: 0 !important;
  }
}


/**! ----- transition---- **/
.transition-default, .btn, a.color--primary, a.color--white, a.text-color--200, 
a.text-color--300, a.text-color--400, a.text-color--500, a.text-color--700 {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn-bg--primary, 
.btn-hover--primary:hover,
.btn-bg--primary--05::after{  
  background: #3965f4;
}

.color--primary{
  color: #3965f4;
}

/**! 08. hover **/
/**! ----- Button Hover ---- **/
.btn-hover--3d:hover, .btn-hover--3d:focus {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}

.btn-hover--splash {
  position: relative;
  overflow: hidden;
}

.btn-hover--splash:before {
  content: "";
  position: absolute !important;
  top: -40px;
  right: auto;
  bottom: auto;
  left: -100px;
  height: 220px;
  width: 50px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(1%, rgba(255, 255, 255, 0.03)), color-stop(30%, rgba(255, 255, 255, 0.6)), color-stop(50%, rgba(255, 255, 255, 0.85)), color-stop(70%, rgba(255, 255, 255, 0.85)), color-stop(71%, rgba(255, 255, 255, 0.85)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  opacity: .1;
  -webkit-transform: skew(-12deg, 0deg);
      -ms-transform: skew(-12deg, 0deg);
          transform: skew(-12deg, 0deg);
  -webkit-transition: .5s ease 0s;
  -o-transition: .5s ease 0s;
  transition: .5s ease 0s;
  visibility: hidden;
}

.btn-hover--splash.btn--bg-white:before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(221, 221, 221, 0)), color-stop(1%, rgba(221, 221, 221, 0.03)), color-stop(30%, rgba(221, 221, 221, 0.4)), color-stop(50%, rgba(221, 221, 221, 0.85)), color-stop(70%, rgba(221, 221, 221, 0.75)), color-stop(71%, rgba(221, 221, 221, 0.75)), to(rgba(221, 221, 221, 0)));
  background: -o-linear-gradient(left, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 0.03) 1%, rgba(221, 221, 221, 0.4) 30%, rgba(221, 221, 221, 0.85) 50%, rgba(221, 221, 221, 0.75) 70%, rgba(221, 221, 221, 0.75) 71%, rgba(221, 221, 221, 0) 100%);
  background: linear-gradient(to right, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 0.03) 1%, rgba(221, 221, 221, 0.4) 30%, rgba(221, 221, 221, 0.85) 50%, rgba(221, 221, 221, 0.75) 70%, rgba(221, 221, 221, 0.75) 71%, rgba(221, 221, 221, 0) 100%);
}

.btn-hover--splash:hover:before {
  left: 100%;
  visibility: visible;
  -webkit-transition: .5s ease .2s;
  -o-transition: .5s ease .2s;
  transition: .5s ease .2s;
}

.btn-hover--primary:hover {
  color: white !important;
  opacity: 1 !important;
}


/**! 46. hero **/
.hero2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media only screen and (min-width: 992px) {
  .hero2 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .hero--full {
    min-height: 70vh;
  }
}

@media only screen and (min-width: 1950px) {
  .hero--half {
    padding-bottom: 12.5rem;
  }
}

@media only screen and (max-width: 991px) {
  .hero--v1 {
    padding-top: 9.375rem;
  }
  .hero--v1 .section-overlap {
    height: 6.25rem !important;
  }
  .hero--v1 .hero__image {
    margin-top: -1.25rem !important;
  }
}

@media screen and (min-width: 1950px) {
  .hero--v6 .background-holder {
    background-position: center 75%;
  }
}

@media only screen and (min-width: 992px) {
  .hero--v9 {
    padding-top: 7.5rem;
    padding-bottom: 0rem;
  }
}

@media only screen and (min-width: 992px) {
  .hero--v9 .hero__description {
    border-left: 5px solid rgba(255, 255, 255, 0.3);
    padding-left: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .hero--v9 .hero__image {
    top: calc(50% + 60px);
  }
}

@media only screen and (min-height: 1100px) {
  .hero--v10 {
    min-height: 90vh;
  }
}

@media screen and (max-width: 1650px) {
  .hero--v10 .hero__diagonal-shape {
    margin-right: -170px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero--v10 .hero__diagonal-shape {
    margin-top: -100px;
  }
}

@media only screen and (min-height: 1100px) {
  .hero--v11 {
    min-height: 92vh;
  }
}

@media only screen and (min-height: 1100px) {
  .hero--v12 {
    min-height: 80vh;
  }
}

@media only screen and (min-width: 992px) {
  .overlap-prepend-hero {
    padding-top: 18.75rem;
  }
}


/**/
.cd-title{position:relative}.cd-words-wrapper{display:inline-block;position:relative;text-align:left}
.cd-words-wrapper b{display:inline-block;position:absolute;white-space:nowrap;left:0;top:0}
.cd-words-wrapper b i{font-style:normal}.cd-words-wrapper b.is-visible{position:relative}
.no-js .cd-words-wrapper b{opacity:0}.no-js .cd-words-wrapper b.is-visible{opacity:1}
.cd-headline.scale b{opacity:0}
.cd-headline.scale i{display:inline-block;opacity:0;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}
.is-visible .cd-headline.scale i{opacity:1}
.cd-headline.scale i.in{-webkit-animation:scale-up 0.6s forwards;animation:scale-up 0.6s forwards}
.cd-headline.scale i.out{-webkit-animation:scale-down 0.6s forwards;animation:scale-down 0.6s forwards}
.no-csstransitions .cd-headline.scale i{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:0}.no-csstransitions .cd-headline.scale .is-visible i{opacity:1}@-webkit-keyframes scale-up{0%{-webkit-transform:scale(0);opacity:0}60%{-webkit-transform:scale(1.2);opacity:1}
  100%{-webkit-transform:scale(1);opacity:1}}@keyframes scale-up{0%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);opacity:0}
  60%{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2);opacity:1}
  100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}}
  @-webkit-keyframes scale-down{0%{-webkit-transform:scale(1);opacity:1}
60%{-webkit-transform:scale(0);opacity:0}}
@keyframes scale-down{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}60%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);opacity:0}}
[data-simplebar]{position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}

/**/
.content {
  display: none;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /*#f1f1f1;*/
  z-index: 9999;
}
.preloader .loader {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  margin: auto auto !important;
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #2d65fd; /* Blue */
  border-bottom: 16px solid #2d65fd;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 3s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

 .download-popup {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 18px !important;
  width: 100%;
  padding: 15px 45px;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
}

.download-popup.active {
  display: block;
}
.app-logo {
  width: 175px;
  margin-top: -15px !important;
}
.close-btn {
  font-size: 24px;
  color: #f00;
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin-right:20px;
  margin-top:-5px;
}

.open-btn {
    display: inline-block;
    border: none;
    border-radius: 30px;
    background-color: tranparent;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    float: right;
}

.calculate-widget{
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url("../auth-background.png");
  background-repeat: no-repeat;
  background-position: -50px center;
  background-color:rgba(245,245,245,.8);
  padding-right:15px;
  padding-left:15px;
}
.calculate-widget h2{
  font-size: 26px;
  text-align: center;
  margin-bottom: 20px;
}
.calculate-widget .btn-trade{
  padding:10px 30px;
}
.calculate-widget .card {
  border: 0;
  border-radius: 0.1875rem;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
}

.calculate-widget .card .card-header {
  background-color: transparent;
  border-bottom: 0;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}
.calculate-widget .nav-tabs.nav-tabs-neutral>.nav-item>.nav-link {
  color: #FFFFFF;
}

.calculate-widget .nav-tabs.nav-tabs-neutral>.nav-item>.nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.calculate-widget .nice-select,
.calculate-widget input[type="text"], 
.calculate-widget input[type="number"]{
  -webkit-tap-highlight-color:transparent;
  background-color:#fff;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  font-size:.76471rem;
  letter-spacing:.01em;
  font-weight:500;
  height:42px;
  line-height:2.11765rem;
  outline:0;
}

.calculate-widget .nice-select:focus,
.calculate-widget input[type="text"]:focus, 
.calculate-widget input[type="number"]:focus{
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-width: 0;
  border-color:#dbdbdb !important
}
.calculate-widget .nice-select:hover,
.calculate-widget input[type="text"]:hover, 
.calculate-widget input[type="number"]:hover{
  border-color: rgba(245,245,245,.8);
}

.calculate-widget .nice-select .current{
  margin-top:-30px !important;
}
.calculate-widget .nice-select .list{
  height: 102px;
  overflow:auto;
}

@media (max-width: 767px) {
  .calculate-widget .card{
    margin:0px !important;
    padding: 0px;
    padding-top: 10px;
  }
  .calculate-widget .card-body {
    padding:15px;
  }
}


.marketList{
  background-color: rgba(255, 255, 255, 1);
}
.marketList thead{
  background-color: rgba(57, 101, 244,.9);
}
.marketList th{
  font-size:12px;
  color:rgba(248,248,255,1)
}
.marketList tr {
  padding: 10px 0;
  align-items: center;
  height: 50px;
}
.loss{
  color: #E64E62!important;
}
.loss-bg{
  color:#fff;
  background-color:#E64E62!important;
}
.profit{
  color:#13BF86 !important;
}
.profit-bg{
  color:#fff;
  background-color:#13BF86 !important;
}
.marketList .btn-sm{
  font-size: 14px;
  font-weight:normal;
  padding: 4px 12px;
}
/**/
.feature-section{
  padding: 30px;
  background-color:rgba(245,245,245,.4);
  background-image: url("../auth-background.png");
  background-repeat: no-repeat;
  background-position: center 50px;
}
.feature-wrap{
  display: flex;
  align-items: center;
} 
.feature-content h2{
  font-size: 36px;
  margin-bottom: 20px;
}
.feature-content h2 span{
  color: #111;
}
.feature-content p{
  font-weight:normal;
  margin-bottom: 30px;
}
.feature-item i{
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
  display: block;
}
.padding{padding: 100px 0;}
.padding-15{padding: 15px;}
.padding-20{padding: 20px;}
.box-padding{padding: 0 50px;}
.bd-bottom{ border-bottom: 1px solid #e5e5e5;}
.section-heading h2{
  font-size: 32px;
  display: block;
}
.section-heading .sub-heading{
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  /*color: #fa071c;*/
  color: #3965f4;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Work Sans",sans-serif;
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
}
/**/
.ecosystem-section{
  padding: 50px;
  background-color:rgba(255,255,255,1);
  background-repeat: no-repeat;
  background-position: center center;
}
/**/
.chooseUs{
  padding: 50px;
}
.chooseUs img{
  margin-bottom: 20px;
}

.chooseUs h4{
  margin-bottom: 15px;
}

/**/
.referral{
  height: 52vh;
  background: rgb(255,255,255);
background: radial-gradient(circle, rgba(255,255,255,1) 20%, rgba(30,58,235,0.3617822128851541) 79%);
}
.referral h1{
  color:#000;
  font-size:30px;
}
.referral p{
  color: #f00;
  font-size:16px;
  font-weight:normal;
}
@media (max-width: 767px) {
  .referral h1, .referral p{
    line-height: 40px;
  }
  .feature-section a{
    margin-bottom: 30px;
  }
}