/* global */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  /* user-select: none; */

  font: inherit;
}

 ::-webkit-scrollbar{
    width: 0;
    height: 0;
  }
  /* ::selection{
    background: $main_color;
    color: $white_color;
  } */
  /* remove arrows on inputs */
  ::-webkit-outer-spin-button,
  ::-webkit-inner-spin-button{
    display: none;
  }
  

/* ::-webkit-scrollbar{
    width: 0;
    height: 0;
  } */
/* ::selection{
    background: $main_color;
    color: $white_color;
  } */
/* remove arrows on inputs */
/* ::-webkit-outer-spin-button,
  ::-webkit-inner-spin-button{
    display: none;
  }
   */

/* make images responsive */
img,
picture,
video,
svg {
  display: block;
  max-width: var(--width_100);
}

img{
  object-fit: cover;
}
/* make inputs, and form elements  uinherit the fornts */
input,
textarea,
button,
select {
  font: inherit;
}

/* flex box -> flex_justify-content_align-items */
.f_cls{
    display: flex;
}
.f_cr {
  display: flex;
  align-items: center;
}

.f_cc{
  display: flex;
  align-items: center;
  justify-content: center;
}
.f_cs{
  display: flex;
  align-items: start;
  justify-content: center;
}

.f_bc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.f_be {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.f_bs {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.f_es {
  display: flex;
  align-items: start;
  justify-content: flex-end;
}
.f_st {
  display: flex;
  align-items: start;
}
.f_sc {
  display: flex;
  align-items: center;
  justify-content: start;
}
.f_ec {
  display: flex;
  align-items: center;
  justify-content: end;
}
.f_ss {
  display: flex;
  align-items: start;
  justify-content: start;
}
.f_se {
  display: flex;
  align-items: end;
  justify-content: start;
}
.f_aic {
  display: flex;
  align-items: center;
}
.f_ais {
  display: flex;
  align-items: start;
}
.f_aie {
  display: flex;
  align-items: end;
}
.f_jcs {
  display: flex;
  justify-content: start;
}
.f_jcc {
  display: flex;
  justify-content: center;
}

.f_jcb {
  display: flex;
  justify-content: space-between;
}
.f_jce {
  display: flex;
  justify-content: end;
}

.f_col {
  display: flex;
  flex-direction: column;
}
.f_col_cc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.f_col_cs {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.f_col_sc {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

/* grid */
.grid {
  display: grid;
  grid-auto-flow: row;
}
.g_cls {
  display: grid;
}
.i_grid {
  display: inline grid;
  grid-auto-flow: row;
}


/* buttons */

/* btn styles */
.btn {
  text-align: center;
  transition: all 0.35s ease;
  outline: none;
  cursor: pointer;
  &.circular {
    border-radius: 50%;
  }
  &.br_0 {
    border-radius: 0px;
  }
  &.br_2 {
    border-radius: 2px;
  }
  &.br_3 {
    border-radius: 3px;
  }
  &.br_4 {
    border-radius: 4px;
  }
  &.br_5 {
    border-radius: 5px;
  }
  &.br_6 {
    border-radius: 6px;
  }
  &.br_7 {
    border-radius: 7px;
  }
  &.br_8 {
    border-radius: 8px;
  }
  &.br_9 {
    border-radius: 9px;
  }
  &.br_10 {
    border-radius: 10px;
  }
  &.br_11 {
    border-radius: 11px;
  }
  &.br_12 {
    border-radius: 12px;
  }
  &.br_13 {
    border-radius: 13px;
  }
  &.br_14 {
    border-radius: 14px;
  }
  &.br_15 {
    border-radius: 15px;
  }
  &.br_16 {
    border-radius: 16px;
  }
  &.br_17 {
    border-radius: 17px;
  }
  &.br_18 {
    border-radius: 18px;
  }
  &.br_19 {
    border-radius: 19px;
  }
  &.br_20 {
    border-radius: 20px;
  }
  &.borderless {
    border: 0;
  }
  &.transparent {
    background: transparent;
  }
  &.hidden {
    opacity: 0;
    pointer-events: none;
  }
  &.visible {
    opacity: 1;
    pointer-events: initial;
  }
  &.outlined {
    border-width: 1px;
    border-style: solid;
  }
}
/* set root size */
html{
  /* default = 16px, 1 rem = 16px , 10px*/
  /* 10 */

  scroll-behavior: smooth;
  font-size: 62.5%;

}
