:root{
    --site-background:#fff;
    --bg-dark-2:#fff;
    --bg-dark-3:#dee2e6;
    --primary-color:#265df3;
    --secondary-color:#1248db;
}

/* ========================== */
body, html{
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: var(--site-background);
}

.bg-dark{
    background: var(--site-background) !important;
}
.bg-dark-2{
    background: var(--bg-dark-2);
}
.bg-dark-3{
    background: var(--bg-dark-3);
}
.primary-bg{
  background: var(--secondary-color);
}
.bg-bay{
  background: #4d5296 !important;
}
.modal-body{
  background: #fff;
}
.primary-color{
  color: var(--primary-color) !important;
}
.text-color{
  fill: white !important;
}
.icon-fill{
  fill: black !important;
}
.icon-fill-primary{
  fill: var(--primary-color);
}
.secondary-color{
  color: var(--secondary-color) !important;
}
.green-color{
  color: #0ac989 !important;
}
.red-color{
  color: #eb225e !important;
}
.green-bg{
  background: #0ac989 !important;
}
.error-text{
  color: #e43737;
}
.background-blur {
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
  background: rgba(15, 15, 16, 0.5);
}
/* ============= */


/* ====== Heights , paddings and margin ======== */
.h-100{
    height: 100%;
}
.m-h-100{
    min-height: 100%;
}
/* ====================== */


/* ==================== Forms ================== */
.form-wrapper {
    position: relative;
    margin: 25px 0px;
}

.form-wrapper input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dee2e6 !important;
    border-radius: 12px;
    color: #000 !important;
    background: transparent;
}
.form-wrapper select {
    width: 100%;
    height: 55px;
    border: 1px solid #dee2e6 !important;
    border-radius: 12px;
    padding: 0px 12px;
    color: #000 !important;
    background: transparent;
}
input{
  color: black !important;
}
input::placeholder{
  font-size: 12px;
}
.form-wrapper .input-invalid{
border-color: #e34413 !important;
}
  
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;
    font-family: 'anuphan';
}
.form-wrapper input:focus,
select:focus {
    border: 2px solid #A9A9A9 !important;
}
.form-wrapper label {
    position: absolute;
    top: 16px;
    left: 25px;
    font-size: 14px;
    color: #6b7a97;
    transition: linear 0.2s;
    pointer-events: none;
}

@media (max-width:576px) {
    .form-wrapper label {
        top: 16px;
        left: 20px;
    }
}
.form-wrapper input:focus+label,
.form-wrapper input:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 14px;
    background: #fafafc;
    padding: 0px 6px;
    color: #000;
    border-radius: 4px;
}
@media (min-width:1200px) {

    .form-wrapper input:focus+label,
    .form-wrapper input:not(:placeholder-shown)+label {
        background: #fafafc;
    }
}
.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: #fafafc;
    padding: 0px 4px;
    color: #000;
}

@media (min-width:1200px) {

    .form-wrapper select:focus+label,
    .form-wrapper select:valid+label {
        background: #fafafc;
    }
}
/* input icons and text */
.form-wrapper .has-icon {
    padding-right: 30% !important;
    position: relative;
}

.form-wrapper .has-icon-left {
    padding-left: 50px !important;
    position: relative;
    padding-right: 0;
}

.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;
}

.form-wrapper .input-icon-wrapper-left {
    right: auto;
    left: 10px;
}

.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;
    }
}
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;
}

.login-form-wrapper{
    width: 35%;
    padding-top: 30px;
}
.login-form-wrapper-lg{
  width: 60%;
}
@media(max-width:768px){
    .login-form-wrapper{
        width: 80%;
        padding-top: 40px;
    }
}
.dark-input{
  background: #f5f5f5 !important;
}
/* ================ */



/*  =============================================== */
.position-relative{
    position: relative;
}
.position-absolute{
    position: absolute;
}

.overflow-scroll{
    overflow: scroll;
}
.overflow-y-scroll{
    overflow-y: scroll;
}
.overflow-x-scroll{
    overflow-x: scroll;
}
.overflow-hidden{
    overflow: hidden;
}
.overflow-y-hidden{
    overflow-y: hidden !important;
}
.overflow-x-hidden{
    overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, p, small, span, label, i{
    color: #000;
}
a {
    text-decoration: none !important;
    color: #000 !important;
    font-size: 14px;
}
label{
    font-size: 12px;
}
.roboto{
    font-family: 'roboto';
    font-weight: normal;
}
.anuphan {
    font-family: 'anuphan';
    font-weight: 400;
}
.anuphan-semi-bold {
    font-family: 'anuphan';
    font-weight: 500;
}
.anuphan-bold {
    font-family: 'anuphan';
    font-weight: 600;
}
.gabarito{
    font-family: 'gabarito' !important;
}
.text-sm{
    font-size: 14px !important;
}
.text-xs{
    font-size: 12px !important;
}
@media (max-width:576px){
  .text-xs{
    font-size: 11px !important;
}
}
.grey-color {
    color: #5d5d5d !important;
}
.grey-color-2 {
    color: grey !important;
}
.white-text{
  color: white !important;
}
.white-bg{
    background: white;
}
/* ---------------------- Buttons ---------------- */
button {
    background: var(--secondary-color);
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 12px;
    color: #fff;
    width: 100%;
    font-family: 'anuphan';
    font-size: 14px;
}

.btn-height{
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 45px;
}
.btn-height-2{
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 40px;
}

.btn-grey {
    background: #e4e8f6;
    color: #000;
}
.btn-secondary{
    background: black !important;
    color: white !important;
}
.btn-tertiary{
    background: #c8c1f5 !important;
    color: var(--primary-color) !important;
}
.btn-border {
    border: 1px solid var(--secondary-color) !important;
}
.btn-open {
    background: none;
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.btn-rounded {
    border-radius: 30px !important;
}

.btn-open-2 {
    background: none;
    color: #000;
    border: 1px solid #c4c6cc;
}

.btn-border-grey {
    border: 1px solid #505669 !important;
}

button:focus {
    outline: 0px;
    box-shadow: 0px;
    -webkit-box-shadow: none;
}
.btn-secondary:focus {
    outline: 0px;
    box-shadow: 0px;
    -webkit-box-shadow: none;
}
.btn-tertiary: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: #0052FF;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
}

.pointed-left {
    background: #d8e2f3;
}

.polygon-btn-blank {
    background: transparent;
    color: #81869b;
}

.dismiss-btn {
    background: #0052FF;
    color: #fff !important;
}

/* Dialog $$ Messages */
.dialog {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.dialogContent {
    background-color: var(--bg-dark-3);
    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%;
    }
}

.add-border-radius{
  border-radius: 8px !important;
}
.add-border-radius-2{
  border-radius: 12px !important;
}

.top-1{ position: relative; top: 1px !important; }
.top-2{ position: relative; top: 2px !important; }
.top-3{ position: relative; top: 3px !important; }
.top-4{ position: relative; top: 4px !important; }
.top-5{ position: relative; top: 5px !important; }
.top-6{ position: relative; top: 6px !important; }
.top-7{ position: relative; top: 7px !important; }
.top-8{ position: relative; top: 8px !important; }

.n-top-1{ position: relative; top: -1px !important; }
.n-top-2{ position: relative; top: -2px !important; }
.n-top-3{ position: relative; top: -3px !important; }

.sidebar{
  background: #fff;
  height: 100vh;
  z-index: 5 !important;
  left: 0px;
  overflow: auto;
  top: 0;
  margin: 0px;
  border-right: 1px solid #dee2e6;
}

.sidebar a{
  color: #000 !important;
  font-size: 14px !important;
}
.side-link{
  padding: 10px 18px;
  display: flex;
  align-items: center;
}
.side-link:hover{
  background: #f5f5f5 !important;
}

.side-link-active{
  background: #f5f5f5 !important;
  font-family: 'anuphan';
  font-weight: 500;
}
.sidebar i{
  color:#6d6c6c;
  position: relative;
  top: 2px;
  font-size: 20px;
}
.side-link span{
  font-size: 14px;
  top: 2px;
  position: relative;
}

.border{
  border: 1px solid var(--bg-dark-3) !important;
}
.border-2{
  border: 1px solid #dee2e6 !important;
}
.border-bottom{
  border-bottom: 1px solid var(--bg-dark-3) !important;
}
.border-bottom-2{
  border-bottom: 1px solid #dee2e6 !important;
}
.border-top{
  border-top: 1px solid var(--bg-dark-3) !important;
}
.border-top-2{
  border-top: 1px solid #dee2e6 !important;
}
.input-border{
  border: 1px solid #dee2e6 !important;
}
/* === */

.menu-bar{
  background: #a0a0a0;
}
.post-box{
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.bg-db{
  background: #f4f4f7;
}

.post-form{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 50px;
  border-radius: 20px;
}
@media (max-width:576px){
  .post-form{
    padding-left: 30px;
    padding-right: 30px;
    background: transparent;
  }
}
@media (min-width:768px) and (max-width:1200px) {
  .post-form {
    width: 50%;
    margin-top: 10%;
  }
}
@media (min-width:1200px) {
  .post-form {
    width: 50%;
    margin-top: 10%;
  }
}
.uppercase{
  text-transform: uppercase !important;
}
.cs-list-item:hover{
  background: #f4f4f4;
}
.hide{
  display: none !important;
}
.pointer{
  cursor: pointer;
}

.sigil-waiting{
  background: #fae6cb;
  color: #fba327 !important;
}
.sigil-paid{
  background: #1b332f;
  color: #3bdec3 !important;
}
.fit-content{
  width: fit-content !important;
}
.h-fit-content{
  height: fit-content !important;
}
/* scroll menu */
.scrollmenu {
  overflow-x: scroll;
  width: 100% !important;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px 12px;
  white-space: nowrap;
}.scrollmenu::-webkit-scrollbar {
  display: none;
} 
.scrollmenu .s-m-item {
  display: inline-block;
  white-space: normal;
}
.side-bar-mobile{
  position: fixed;
  right: 0;
  width: 90%;
  height: 100%;
  background: var(--bg-dark-2);
  z-index: 999999;
  top: 0 !important;
  overflow: auto !important;
  padding-bottom: 30px;
}
.side-bar-mobile a{
  color: #000 !important;
}
.overlayDiv{
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
}
  /* Tabs Button ======================== */
  .tabs{
    padding: 8px 12px;
    font-size: 14px;
    color: grey !important;
    cursor: pointer;
  }
  @media(max-width:576px){
    .tabs{
      font-size: 12px;
    }
  }
  .tabs:hover{
    background: #f4f4f4;
    border-radius: 4px 4px 0px 0px;
  }
  .tabs.active{
    position: relative;
    color: black !important;
    font-weight: 500;
  }

  .tabs.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 4px;
  }

  /* -- */
  .tabs-pill-wrapper{
    border-radius: 4px;
    padding: 2px;
  }
  .tabs-pill{
    font-size: 14px;
    padding: 4px 12px;
    cursor: pointer;
    color: rgb(162, 162, 162) !important;
  }
  @media(max-width:576px){
    .tabs-pill{
      font-size: 12px;
    }
  }
  .tabs-pill.active{
    background: #fff;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 500;
  }
  /* ========= END =========  */

.intro-section{
  background: white
}

.intro-text{
  font-size: 55px;
  color: #000;
}

@media (max-width: 576px) {
  .intro-text {
    font-size: 45px !important;
  }
}

.tint-color{
    color: #2F1C6A !important;
}

.card-blur{
  background: rgba(162, 160, 160, 0.1); /* Semi-transparent white */
  backdrop-filter: blur(5px); /* Blur effect */
  -webkit-backdrop-filter: blur(5px); /* For Safari */
  border: 1px solid #dee2e6; /* Border to enhance the glass effect */
  box-shadow: 0 4px 6px rgba(80, 80, 80, 0.1); /* Optional: Shadow for depth */
}
.gradient-text{
  background: linear-gradient(to right, #9c7ef7 60%, #8862fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-grad{
  background: linear-gradient(to right, #1248db 60%, #7079f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.card-trans{
  background: #fff;
  border: 1px solid #dee2e6;
  border-top: 0;
  border-radius: 30px;
}
/* .card-trans:hover{
  background: linear-gradient(155deg,#6161613d 70%,#ffffff3d);
} */

.card-trans-2{
  background: linear-gradient(155deg,#000 10%,#242928);
  border: 1px solid #022324;
  border-top: 0;
  border-radius: 30px;
}
.card-trans-3{
  background: linear-gradient(155deg,#496058 10%,#2e3735);
  border-radius: 30px;
}

.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;
}
.border-none{
  border: none !important;
}
/* Preloader */
.page-preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--site-background);
    z-index: 28928;
}
.pre-loader {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    border-top: 1px solid #000;
    border-right: 1px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
/* End preloader */
.tint-bg{
    background: #F4F5FF;
}
.tint-bg-dark{
    background: #2a355e;
}
.white-bg-post-box{
    background: #fff;
}

.post-box-border-color{
    border: 1px solid var(--primary-color)
}
.account-control-panel{
  position: fixed;
  z-index: 999;
  right: 30px;
  top: 56px;
  min-width: 230px;
  background: white;
}.account-control-panel .a-p-inner:hover{
background: #f5f5f5;
}

.account-control-panel-overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99;
  left: 0;
  top: 0;
}
.h-100{
  height: 100%;
}
.m-h-100{
  min-height: 100%;
}
.bottom-padding{
  padding-bottom: 80px;
}
.bold-text{
  font-weight: bold;
}

.doc-card {
  width: 200px;
  height: 130px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f6f6f6;
}

.id-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  border-radius: 4px;
}
/* --------------------------------------------------------------------- *
  


/* MEDIA QUERIES CLASSES */
/* Desktop screen */
@media (min-width:1200px) {
  .fix-mt {
    margin-top: 100px;
  }

  .border-left-lg {
    border-left: 1px solid #d8e2f3;
  }

  .bg-lg-none {
    background: none !important;
  }

  .border-lg-none {
    border: none !important;
  }

  .monstText {
    font-size: 38px;
  }

  .fit-content-lg {
    width: fit-content;
  }

  .px-lg-10 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .px-lg-8 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }

  .awrp-lp {
    /* background: #390fb7; */
    /* background: linear-gradient(to right, #2c2cb9, #390fb7); */
    background: linear-gradient(to right, #3d47cf, #390fb7);
    min-height: 100% !important;
    position: relative;
    clip-path: polygon(80% 0%, 39% 0%, 16% 0%, 0% 0%, 0% 24%, 0% 100%, 20% 100%, 36% 100%, 56% 100%, 100% 100%, 65% 100%, 65% 100%, 100% 30%, 100% 30%);
    z-index: 4;
  }

  .text-lg-medium {
    font-size: 16px !important;
  }

  .border-left-lg-color {
    border-left: 1px solid var(--secondary-color);
  }
}

/* mobile screen */
@media (max-width:576px) {
  .bg-sm-none {
    background: none !important;
  }
  .xsmall-sm {
    font-size: 14px !important;
  }
  .border-mobile-none {
    border: none !important;
  }
  .style-scrollbar::-webkit-scrollbar {
    display: none;
  }
  h1 {
    font-size: 32px !important;
  }
  .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;
  }
  .text-medium {
    font-size: 16px;
  }
  .text-large {
    font-size: 20px;
  }
}