/* variable */
:root {
  --blue-color: #0075ff;
  --blue-alt-color: #0d69d5;
  --orange-color: #f59e0b;
  --green-color: #22c55e;
  --red-color: #f44336;
  --gray-color: #888;
}

/* ____________________ */
/* start box */
.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.gap-20 {
  gap: 20px;
}

@media (max-width:767px) {
  .block-mobile {
    display: block;
  }

  .hide-mobile {
    display: none;
  }
}

.align-c {
  align-items: center;
}

.ju-sb {
  justify-content: space-between;
}

.f-wrap {
  flex-wrap: wrap;
}

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

.w-100 {
  width: 100px;
}

.w-full {
  width: 100%;
}

.h-100 {
  height: 100px;
}

.h-full {
  height: 100%;
}

/* end box */
/* start padding margin */
.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-10 {
  margin-right: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-10 {
  margin-left: 10px;
}

.m-0 {
  margin: 0px;
}

.m-20 {
  margin: 20px;
}

/* end padding margin */
/* start color */
.bg-white {
  background-color: white;
}

.bg-eee {
  background-color: #eee;
}

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

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

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

.c-blue {
  color: var(--blue-color);
}

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

.bg-black {
  background-color: black;
}

.c-black {
  color: black;
}

.c-red {
  color: red;
}

.c-gray {
  color: var(--gray-color);
}

.c-orange {
  color: var(--orange-color);
}

.c-green {
  color: var(--green-color);
}

.c-white {
  color: white;
}

/* end color */
/* start position */
.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute
}

/* end position */
/* start font*/
.txt-c {
  text-align: center;
}

@media (max-width:767px) {
  .txt-c-mobile {
    text-align: center;
  }

}

.fs-25 {
  font-size: 25px;
}

.fs-14 {
  font-size: 14px;
}

.fw-b {
  font-weight: bold;
}

/* end font */
/* start border */
.b-none {
  border: none;
}

.bo-eee {
  border: 1px solid #eee;
}

.bo-ccc {
  border: 1px solid #ccc;
}

.rad-6 {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}


.rad-10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.rad-50 {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.c-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* end border */
/* start components */
.between-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-shape {
  padding: 4px 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

/* end components */