/* Body $$ Html */
body, html{
  height: 100%;
  margin: 0px !important;
  padding: 0px !important;
  scroll-behavior: smooth;
  background: #fff;
}
.site-container{
  background: #fff;
  display: table;
  height: inherit;
  width: 100%;
  margin: 0px !important;
  margin-bottom: 0px;
  padding: 0px !important;
}
a{
  text-decoration: none !important;
  color: #000 !important;
  font-size: 14px;
}
.menu-bar{
  background: #000;
}
.db-mobile-nav{
  background: #fff;
  border-bottom: 1px solid #dee2e6;
}
/* --------- */


/* Colors $$ Backgrounds */
.primary-bg{
  background: #fff !important;
}
.bg-tint{
  background: #f4f4f4 !important;
}
.secondary-bg{
  background: #51d1d1 !important;
}

.primary-color{
  color: #46bbbb !important;
}

.modal-body {
  background: white !important;
}

.blur-bg {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.blur-bg-mini {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* 1961f9 d8dee9 - PS */

.primary-color-2{
  color: #004cc0 !important;
}
.trans-primary-bg{
  background: #e1e8f7 !important;
}

.primary-bg-gradient{
  background: linear-gradient(45deg, #51d1d1, #349696, #fff);
}

.white-bg{
  background: #fff !important;
}
.white-bg-2{
  background: #fff !important;
}
.db-nav-header{
  background: #fff !important;
}
.green-color{
  color: #0ac989 !important;
}
.green-bg{
  background: #0ac989 !important;
}
h1, h2, h3, h4, h5, p, small, label{
  color: #000;
}
.grey-color{
  color: #7d7d7d !important;
}
.grey-color-2{
  color: #525050 !important;
}
.error-text{
  color: #e43737;
}
.white-text{
  color: #fff !important;
}
.white-text2{
  color: #000 !important;
}
.black-text{
  color: #000 !important;
}
.modal-bg{
  background: #fff;
}
/* ------------- */

/* Fonts $$ font-size $$ font-weight */
.roboto{
  font-family: 'roboto';
}
.ubuntu{
  font-family: 'ubuntu';
}
.sans-pro{
  font-family: 'source sans pro';
}
.meri-weda{
  font-family: 'merriweather sans';
}
.noto-sans{
  font-family: 'noto sans';
}
.rajdhani{
  font-family: 'rajdhani';
}
.anuphan{
  font-family: 'anuphan';
  font-weight: 400;
}
.anuphan-2{
  font-family: 'anuphan';
  font-weight: 500;
}
.anuphan-3{
  font-family: 'anuphan';
  font-weight: 600;
}
.gabarito {
  font-family: 'gabarito';
}

.xsmall{
  font-size: 14px !important;
}
.xsmall2{
  font-size: 12px;
}
.bold-text{
  font-weight: bold;
}

.intr-hero-text {
  font-size: 50px;
}

@media (max-width: 576px) {
  .intr-hero-text {
    font-size: 40px;
  }
}

/* ----------------------------- */

/* Buttons */
button{
  background: #51d1d1;
  border:none;
  border-radius: 6px;
  text-align: center;
  padding: 12px;
  color: #000;
  width: 100%;
  font-family: 'anuphan';
  font-size: 14px;
}

.btn-grey{
  background: #f4f4f4;
  color: #000;
}

.btn-sec {
  background: black;
  color: white;
}

.btn-sec i {
  columns: white !important;
}

.btn-rounded{
  border-radius: 30px !important;
}

.btn-open{
  background: none;
  color: #51d1d1;
  border: 2px solid #51d1d1;
}

button:focus{
  outline: 0px;
  box-shadow: 0px;
  -webkit-box-shadow:none;
}

.polygon-btn{
  background: #d8e2f3;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  z-index: 1;
  font-weight: bold;
  color: #004cc0;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}

.pointed-left{
  background: #d8e2f3;
}

.polygon-btn-blank{
  background: transparent;
  color: #81869b;
}

.dismiss-btn{
  background: #004cc0;
  color: #fff !important;
}

/* --------------------------------------------- */


/* Forms $$ Inputs $$ select $$ Labels */
.form-wrapper{
  position: relative;
  margin: 25px 0px;
}

.form-wrapper input{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dee2e6 !important;
  border-radius: 6px;
  color: #000 !important;
  background: transparent;
  caret-color: black;
}
.form-wrapper select{
  width: 100%;
  height: 55px;
  border: 1px solid #505669 !important;
  border-radius: 6px;
  padding: 0px 12px;
  color: #000 !important;
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input:focus, select:focus{
  box-shadow: none !important;
  outline: none !important;
}

.form-wrapper label{
  position: absolute;
  top: 14px; 
  left: 15px;
  font-size: 14px;
  color: #6b7a97;
  transition: linear 0.2s;
  pointer-events: none;
}
@media (max-width:576px){
  .form-wrapper label{
      top: 14px;
      left: 20px;
  }
}

.form-wrapper input:focus{
  border: 2px solid #000 !important;
}

.form-wrapper input:focus + label,
.form-wrapper input:not(:placeholder-shown) + label
{
    top: -10px;
    font-size: 14px;
    background: #fff;
    padding: 0px 6px;
    color: #424141;
    border-radius: 4px;
    left: 16px;
} 

@media (min-width:1200px){
  .form-wrapper input:focus + label,
  .form-wrapper input:not(:placeholder-shown) + label
  {
      background: #fff;
  } 
}

.form-wrapper select:focus + label,
.form-wrapper select:valid + label,
.form-wrapper textarea:focus + label,
.form-wrapper textarea:valid + label
{
    top: -8px;
    font-size: 14px;
    background: #fff;
    padding: 0px 4px;
    color: #000;
}
@media (min-width:1200px) {
  .form-wrapper select:focus+label,
  .form-wrapper select:valid+label
  {
    background: #fff;
  }
}


/* input icons and text */
.form-wrapper .has-icon{
  padding-right: 30% !important;
  position: relative;
}
.form-wrapper .has-dual-icon{
  padding-right: 30% !important;
  padding-left: 30% !important;
  position: relative;
}
.form-wrapper .input-icon-wrapper{
  position: absolute;
  right: 10px;
  top: 2px;
  display: flex;
  height: 100%;
  width: auto;
  padding: 0px 8px;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 0px 4px 4px 0px;
}
.input-icon-wrapper-left{
  left: 10px;
  right: auto !important;
}

.input-icon{
  color: var(--text-color);
  position: relative;
  top: -1px !important;
}
@media (max-width: 576px){
  .input-icon{
      top: 1px !important;
  }
  .psw-c-icon{
    top: -1px !important;
  }
}

.winged-text{position: relative; justify-content: center; align-items: center; display: flex;}
.winged-text .line{
    height: 1px; width: 100%;
    background: #dee2e6;
}

.winged-text h5{
  position: absolute; top: -8px;
  background: #fff; font-size: 14px !important;
  padding: 0px 12px;
  color: #000;
}

@media (min-width: 768px){
  .winged-text .line{
    background: #dee2e6;
  }
  .winged-text h5{
    background: #fff;
  }
}

.post-form{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  /* border: 1px solid #dee2e6 !important; */
}
@media (max-width:768px){
  .post-form{
    padding-left: 30px;
    padding-right: 30px;
    background: transparent;
    border: none !important;
  }
}
@media (min-width:1200px) {
  .post-form {
    width: 50%;
    margin-top: 10%;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
}

.dark-input{
  background: #eff1f3 !important;
}
input{
  caret-color: #004cc0 !important;
}
/* -------------------------------------------- */



/* login $$ Reg $$ Auth */
.auth-header-style{
  background-image: url('/static/assets/images/auth-one-bg.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
}

.auth-header-style-overlay{
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: auto;
  background: linear-gradient(to right, rgba(89, 81, 230, 0.8), rgba(1, 63, 194, 0.8), rgba(23, 128, 202, 0.8));
  left: 0;
}
@media (min-width: 967px){
  .auth-header-style{
    height: 500px;
  }
  .auth-header-style-overlay{
    background: linear-gradient(to right, rgba(89, 81, 230, 0.8), rgba(1, 63, 194, 0.8), rgba(23, 128, 202, 0.8))
  }
}

.a-h-s-svg-path{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.auth-form-wrapper .post-form{
  margin-top: -210px;
  z-index: 3;
  background: #fff;
}

@media (min-width: 967px){
  .auth-form-wrapper .post-form{
    margin-top: -360px;
  }
}
/* End ----- */


/* Dialog $$ Messages */
.dialog{
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.7);
}
.dialogContent{
  box-shadow: 0 4px 8px 0 rgba(54, 39, 39, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: #172D3E;
  padding: 20px;
  width: 80%;
  border-radius: 8px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media(min-width: 1200px) {
  .dialogContent {
    width: 35%;
  }
}

/* ----------------------------------------- */

/* Others */
.pointer{
  cursor: pointer;
}
.border-bottom{
  border-bottom: 1px solid #dee2e6 !important;
}
.border-top{
  border-top: 1px solid #dee2e6 !important;
}
.my-border{
  border: 1px solid #dee2e6 !important;
}
.my-border-light{
  border: 1px solid #dee2e6 !important;
}
.blue-border{
  border: 2px solid #004cc0;
}

.border-top-from-dark{
  border-top: 1px solid #303030 !important;
}

.top-1{ position: relative; top: 1px; }
.top-2{ position: relative; top: 2px; }
.top-3{ position: relative; top: 3px; }
.top-4{ position: relative; top: 4px; }
.top-5{ position: relative; top: 5px; }
.top-6{ position: relative; top: 6px; }
.top-7{ position: relative; top: 7px; }
.top-8{ position: relative; top: 8px; }

.n-top-1{ position: relative; top: -1px !important; }
.n-top-2{ position: relative; top: -2px !important; }
.n-top-3{ position: relative; top: -3px !important; }

.page-pb{
  padding-bottom: 80px;
}

  /* dual ring animation */
  .lds-dual-ring {
    display: inline-block;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    background: #1a1d25;
    border-radius: 8px;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #f3c34a;
    border-color: #f3c34a transparent #f3c34a transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .lds-dual-ring-grey:after {
    content: " ";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #999eb2;
    border-color: #999eb2 transparent #999eb2 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }

/* animated Success */
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #0ac989;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #0ac989;
  stroke-miterlimit: 10;
  margin: 0% auto;
  box-shadow: inset 0px 0px 0px #0ac989;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px transparent;
  }
}
/* End Animated Success */

.border-none{
  border: none !important;
}

.post-box{
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}
.fit-content{
  width: fit-content !important;
}

.side-bar-mobile{
  position: fixed;
  right: 0;
  width: 75%;
  height: 100%;
  background: #fff;
  z-index: 999999;
  top: 0 !important;
  overflow: auto !important;
  padding-bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.side-bar-mobile a{
  color: #000 !important;
}
.overlayDiv{
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.sideBar{
  background: #181b24;
  height: 100vh;
  z-index: 99 !important;
  left: 0px;
  overflow: auto;
  margin: 0px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  border-right: 1px solid #dee2e6;
  }

.sideBar a:hover{
color: #fff;
opacity: 0.9;
}

.sideBar a{
  color: #fff !important;
  font-size: 13px !important;
  display: block;
}

.sideBar .material-icons-outlined,
.sideBar .material-icons
{
  color:#fff;
  position: relative;
  top: 4px;
}

.timeline-wrapper .timeline-body{
  border-left: 1px dashed #dee2e6;
  margin-left: 10px;
  padding-left: 37px;
  margin-top: 4px;
}

.cs-list-item:hover{
  background: #eaecf3;
}
.hide{
  display: none !important;
}

.bottom-padding{
  padding-bottom: 80px;
}
.sigil{
  color: #fff !important;
  padding: 3px 8px;
  border-radius: 4px;
}
.sigil-waiting{
  background: #d7e2f4;
  color: #0c47ac !important;
}
.sigil-paid{
  background: #e1f5f1;
  color: #3bdec3 !important;
}

.sigil-danger{
  color: #e94747; background: #f1d2d2; 
}
.sigil-unavailable{
  background: rgba(214, 96, 96, 0.9);
}
.sigil-error{
  background: rgba(226, 88, 88, 0.9);
}

.position-relative{
  position: relative;
}

.context-menu{
  position: absolute;
  width: 100%;
  z-index: 1;
  border-radius: 4px;
  top: 90%;
  padding: 0px 12px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

#particles-js{
  position: absolute;
  width: 100%;
  height: 90vh;
  opacity: .2;
  top: 0;
  left: 0;
}

.app-showcase{
  width: 290px;
  margin: 0 auto;
  right: 20px;
  top: 0;
  background: rgba( 34, 38, 48, 0.4 ) !important;
  backdrop-filter: blur( 6px );
  -webkit-backdrop-filter: blur( 6px );
}
.app-showcase-2{
  position: absolute;
  left: 0px;
  bottom: 45px;
  width: 300px;
  background: rgba( 34, 38, 48, 0.4 ) !important;
  backdrop-filter: blur( 6px );
  -webkit-backdrop-filter: blur( 6px );
}
.app-showcase-shield{
  position: absolute;
  left: 60px;
  bottom: 200px;
}

.app-showcase-wrp{
  z-index: 2;
  position: relative;
}
.app-showcase-ball{
  z-index: 1;
  background: #929090;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 100px;
}
.border-left-gradient{
  border-left: 1px solid red;
}

.gradient-border{
  border-left: 3px solid !important;
  border-image: linear-gradient(to bottom, #004cc0, transparent) 1 !important;
}

/* scroll menu */
.scrollmenu {
  overflow-x: scroll;
  display: flex;
  width: 100% !important;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px 12px;
}.scrollmenu::-webkit-scrollbar {
  display: none;
} 
.scrollmenu .s-m-item {
  /* display: inline-block !important; */
}
.account-control-panel{
  position: fixed;
  z-index: 999;
  right: 30px;
  top: 56px;
  min-width: 260px;
}.account-control-panel .a-p-inner:hover{
background: #eaecf3;
}

.account-control-panel-overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 99;
  left: 0;
  top: 0;
}

.toggle-icon{
  width: 30px;
  height: 16px;
  background: none;
  position: relative;
  top: 6px;
  border-radius: 20px;
}
.toggle-icon::before{
  position: absolute;
  left: 3px;
  top: 2px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: rgb(231, 228, 228);
  z-index: 1;
  content: ' ';
}

.toggle-icon-on{
  background: #3777ed;
}
.toggle-icon-off{
  background: #abacad;
}

.tab-toggle {
  background: transparent;
  color: grey;
  font-family: 'anuphan';
  font-weight: 600;
}
.toggle-active {
  background: white;
  color: black;
}

/* Preloader */
.page-preloader{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 28928;
}
.page-preloader-wrapper{
  position: relative;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pre-loader {
  width: 48px;
  height: 48px;
  border: 5px solid #dee2e6;
  border-bottom-color: #004cc0;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  left: 25%;
  top: 25%;
  position: relative;
  transform: translate(-50%, -50%);
  }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  }  
/* End preloader */  

.pre-loader-activity {
  width: 48px;
  height: 48px;
  border: 5px solid #dee2e6;
  border-bottom-color: #004cc0;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: relative;
  }

.orders-border{
border: 1px solid #d8e2f3 !important;
}

/* login $$ Reg $$ Auth */
.auth-section-wrp{
  height: 100vh;
  overflow: auto;
  overflow-x: hidden;
}
.auth-section-lp{
  height: 100vh;
  overflow: auto;
  /* background: linear-gradient(to bottom, #004cc0, #1776a2); */
  background-image: url('/static/assets/images/finance-market.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.auth-section-lp-overlay{
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(14, 173, 152, 0.5), rgba(26, 211, 211, 0.9), rgb(23, 118, 162));
  z-index: 1; 
}

.auth-section-rp{
  height: 100vh;
  overflow: auto;
  background: #fff;
}
.auth-post-form{
  width: 80%;
  margin: auto;
}
.auth-post-form-mini{
  width: 70%;
  margin: auto;
}
.a-h-s-svg-path{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  /* background: red; */
}
@media (min-width:967px) {
  .post-form-mini{
    width: 40%;
  }
}

@media (max-width:966px) and (min-width:577px) {
  .post-form-mini{
    width: 50%;
  }
}

.index-overlay{
  background: linear-gradient(to bottom, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.95), rgb(20, 29, 44))  
}

.m-h-100 {
  min-height: 100%;
}
.uppercase {
  text-transform: uppercase !important;
}
.capitalize {
  text-transform: capitalize !important;
}


/* MEDIA QUERIES CLASSES */
/* Desktop screen */
@media (min-width:1200px){
  .fix-mt{
    margin-top: 100px;
  }
  .bg-lg-none{
    background: none !important;
  }
  .border-lg-none{
    border: none !important;
  }
  .monstText{
    font-size: 38px;
  }
  .fit-content-lg{
    width: fit-content;
  }
  /* .expand-page-content{
    min-width: 90%;
  } */
}


/* mobile screen */
@media (max-width:576px){
  .bg-sm-none{
    background: none !important;
  }
  .index-overlay{
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.95), rgb(20, 29, 44)) 
  }
  .xsmall-sm{
    font-size: 14px !important;
  }
  .border-mobile-none{
    border: none !important;
  }
  .style-scrollbar::-webkit-scrollbar {
    display: none;
  }
  h1{
    font-size: 32px !important;
  }
  .app-showcase{
    margin: inherit;
    margin-left: auto;
  }
  .app-showcase-2{
    left: 0;
  }
  .app-showcase-shield{
    left: 16px;
    bottom: 190px;
  }
  .app-showcase-ball{
    right: 0;
  }

  .px-mobile-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .monstText{
    font-size: 28px !important;
  }
  .text-center-sm{
    text-align: center;
  }
  .fix-mt-sm{
    margin-top: 100px !important;
  }
  .show-mobile-none{
      box-shadow: none !important;
  }
  /* @admin */
  .table-responsive-sm {
    width: 90vw !important;
    overflow: auto !important;
    /* display: flex !important; */
    flex-wrap: wrap;
  }

  .border-mobile-0 {
    border: none !important;
  }
}