@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

@media (prefers-color-scheme: dark) {
  :root {
    --surface: #161616;
    --on-surface: #f1f1f1;
    --elevated: #181a1a;

    --elevated-highlight: #242626;
    --elevated-surface: #202222;
    --elevated-shadow-color: #00000066;

    --container: #161616;
    --container-secondary: #787A7A;
    --bg-color: #0F0F0F;
    --page-color: #0F0F0F;

    --blue: #3ea5ff;
    --green: #3FBB46;
    --red: #FF3B4A;
    --error: #FB3640;

    --text-primary: #f1f1f1;
    --text-primary-inverted: #0f0f0f;
    --text-intermediate: #e1e1e1;
    --text-secondary: #aaaaaa;
    --text-secondary-intermediate: #8f8f8f;
    --text-tertiary: #71767B;
    --text-blue: var(--blue);
    --text-error: #F25F5C;

    --icon-shade:#b6b6b6;
    --field-fill:#121212;
    --border-color: #2d2d2d;
    --shadow-color: #262626cc;
    
    --light-shadow: transparent;
    --dark-border: #2d2d2d;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --surface: #f7f7fa;
    --on-surface: #0f0f0f;
    --elevated: #ffffff;

    --elevated-highlight: #E7E5E5;
    --elevated-surface: #E9E7EA;
    --elevated-shadow-color: #00000022;

    --container: #fff;
    --container-secondary: #87898C;
    --bg-color: white;
    --page-color: #f7f7fa;

    --blue: #065fd4;
    --green: #25832C;
    --red: #FF2F40;
    --error: #DD2334;

    --text-primary: #0f0f0f;
    --text-primary-inverted: #f1f1f1;
    --text-intermediate: #232020;
    --text-secondary: #606060;
    --text-secondary-intermediate: #7a7a7a;
    --text-tertiary: #a4abb0;
    --text-blue: var(--blue);
    --text-error: var(--error);


    --icon-shade:#232323;
    --field-fill:#fff;
    --border-color: #dadada;
    --shadow-color: #6f6f7720;


    --light-shadow: #6f6f7720;
    --dark-border: transparent;



  }
}


.dark-mode {
  --bg-color: black !important;
  --text-color: white !important;
}

.light-mode {
  --bg-color: white !important;
  --text-color: black !important;
}

:root {
  --header-height: 96px;
  --dark: #000f08;
  --button-blue: #0066ff;
  --button-on-blue: white;
  --placeholder-color: #9d9d9d;
  --red-text: #ff1d48;
  --pale-blue: #7ea3cc;
  --font-fallback: BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-body: Inter, var(--font-fallback);
  --green1: #00a184;
  --green1Light: #f4fddb;

}

*{
  font-family: var(--font-body);
  font-optical-sizing: auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-secondary);
  -webkit-box-shadow: 0 0 0px 2rem var(--field-fill) inset;
}

input:focus{
  outline: var(--border-color) solid 3px;
}

.bg{
  background-color: var(--bg-color);
}

.text_primary{
  color: var(--text-primary)!important;
}
.text_secondary{
  color: var(--text-secondary)!important;
}
.text_tertiary{
  color: var(--text-tertiary)!important;
}

/* LOGO STYLE */

.s_lgo-1, .s_lgo-2, .s_lgo-3 {
  stroke-width: 0px;
}


.s_lgo-3{
  fill: var(--text-intermediate)!important;
}
.s_lgo-1{
  fill: var(--icon-shade)!important;
}
.s_lgo-2{
  fill: var(--text-primary)!important;
}

/* END */


html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  place-content: center;
  min-block-size: 100%;
  font-family: system-ui, sans-serif;
  line-height: 1.375;
  color: var(--text-primary);
  background-color: var(--bg-color);
  position: relative;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1920px;
  margin: 0 auto;
}

.page_content{
  background-color: var(--page-color);
}


header {
  display: block;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: var(--bg-color);
}

h1 {
  font-size: 2.5rem;
}

div {
  position: relative;
}

.header_min {
  padding: 50px 40px;
  background-color: transparent!important;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
}

.header_app{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 14px 30px;
  box-shadow: var(--shadow-color) 0px 0px 14px;
}

.header_app::after{
  display: relative;
}
.h_ico_box{
  height: 34px;
}

.header_app .h_ico_box svg{
  height: 34px;
}

@media only screen and (max-width: 800px) {
    .header_min{
        padding: 20px 20px;
        max-width: 100vw;
    }

}

@media screen and (max-width: 640px) {

  .header_app{
    padding: 5px 14px;
  }

  .h_search_bx{
    display: none!important;
  }

  .header_app .h_ico_box svg{
    height: 30px;
    display: inline-block;
    margin-top: 5px;
  }
  
  .rnd_l{
    border-radius: 0!important;
  }
  .post{
    border-left: none!important;
  }
  
}


.surface {
  background-color: var(--surface);
}


.rnd{
  border-radius: 14px;
}

.rnd_l{
  border-radius: 14px;
}

.ctnr{
  border: solid 1px var(--dark-border);
  box-shadow: var(--light-shadow) 0px 2px 14px;
}

.f_ph {
  height: 100vh;
}

.flx {
  display: flex;
}
.cntnr {
  position: relative;
}
.v_flx {
  display: flex;
  flex-direction: column;
}
.a_center {
  align-items: center;
}
.spc_btwn {
  justify-content: space-between;
}
.text_primary {
  color: var(--text-primary)!important;
}

.text_dark {
  color: var(--text-dark)!important;
}

.text_error {
  color: var(--text-error)!important;
}

.text_blue {
  color: var(--text-blue)!important;
}

.flx_2 {
  position: relative;
  flex-basis: 50%;
  flex-grow: 6;
}

.h_lnk {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}

.form-group {
  display: block;
  margin-bottom: 15px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #ababab;
  border-radius: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 12px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;

  margin-right: 5px;
}

.form-group input:checked + label:before {
  background-color: black;
  border-color: black;
}

.form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 11px;
  width: 6px;
  height: 14px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.pb20 {
  padding-bottom: 20px;
}

.pb40 {
  padding-bottom: 40px;
}

.btn_ldr{
  display: inline-block;
  vertical-align: middle;
  padding: 0;
}


.ldng{
display: none;
}

.loading .ntldng{
display: none!important;
}

.loading .ldng{
display: initial!important;
}

/** Buttons */

button{
  line-height: 1;
}

.btn {
  background-color: var(--blue);
  color: var(--text-primary-inverted);
  padding: 6px 20px;
  border: none;
  border-radius: 50px;
}

.btn_main {
  font-size: 18px;
  font-weight: 500;
}


.txt_btn{
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-self: flex-start;
  line-height: 1;
}

.txt_btn:hover{
  color: var(--text-primary)!important;
}

.txt_btn .btn_txt{
  line-height: 1.375;
}

.outln_btn{
  display: inline-block;
  color: var(--text-secondary);
  border: none;
  padding: 5px 20px;
  box-sizing: border-box;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
  border-radius: 6px;
  border: solid 1px var(--border-color);
}


/** Widths */

.w100 {
  width: 100%;
}


/**
    Basic theme declarations  
  */

.thme_b {
  &.thme_bck {
    background-color: color-mix(in oklab, var(--green1Light), transparent 75%);
  }
}

.bx_sdw {
  box-shadow: var(--lightShadow) 0px 8px 24px;
}

.ico-btn{
  padding: 10px;
  border-radius: 50%;
  font-size: 24px;
  display: inline-block;
  margin: 0 10px;
  color: var(--text-secondary);
  background-color: var(--elevated);
  cursor: pointer;
}

.ico-actn{
  font-size: 25px;
  display: inline-block;
  color: var(--text-secondary-intermediate);
  cursor: pointer;
}



.ico-img{
  border-radius: 50%;
  font-size: 36px;
  display: inline-block;
  color: var(--text-secondary);
  cursor: pointer;
}

.ico-selected{
  color: var(--text-primary)
}

.ico-passive{
  color: var(--text-tertiary)
}

.field_plhldr{
  position: absolute;
  left: 14px;
  top: 50%;
  font-size: 22px;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-secondary);
}


/* font sizes */


.fv_dwn{
  vertical-align: bottom;
}
.fs22{
  font-size: 22px!important;
}
.fs14{
  font-size: 14px!important;
}
.fs16{
  font-size: 16px!important;
}
.fs18{
  font-size: 18px!important;
}


.mxl2{
  display: -webkit-box;            
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


.btn_tag_lg{
  line-height: 34px;
}

.v_spcr{
  height: 20px;
}


.li_opt{
  padding: 12px 10px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;

  .li_opt_img{
    font-size: 28px;
    line-height: 1;
    color: var(--text-secondary);
  }

  .li_opt_dets{
    margin-left: 16px;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-intermediate);
  }
}

.li_opt:hover{
  background-color: var(--elevated-highlight);
}


.ilnk{
  text-decoration: none;
  background: none;    
}

