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

/* Start Box */

.d-flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.fxw-w {
  flex-wrap: wrap;
}

.fxd-c {
  flex-direction: column;
}

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

.justify-sbetween {
  justify-content: space-between;
}

.d-grid {
  display: grid;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.d-block {
  display: block;
}

@media (max-width: 767px) {
  .block-mobile {
    display: block;
  }
  .hide-mobile {
    display: none;
  }
  .jc-mobile {
    justify-content: center;
  }
  .fxd-c-mobile {
    flex-direction: column;
  }
  .flex-mobile {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  .small-p {
    font-size: 14px;
  }
  .grid-mobile {
    grid-template-columns: minmax(200px, 1fr);
    gap: 10px;
    margin: 10px;
  }
}

/* End Box */

/* Start Paddings And Margins */

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

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

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

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

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

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

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

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

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

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

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

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.ml-auto {
  margin-left: auto;
}

.t-10 {
  top: 10px;
}

.t-20 {
  top: 20px;
}

.r-10 {
  right: 10px;
}

.l-10 {
  left: 10px;
}

.l-20 {
  left: 20px;
}
/* End Paddings And Margins */

/* Start Border */

.rad-6 {
  border-radius: 6px;
}

.rad-10 {
  border-radius: 6px;
}

.ov-hidden {
  overflow: hidden;
}

.brd-1 {
  border: 1px solid #ddd;
}

.brd-btm {
  border-bottom: 1px solid #eee;
}

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

/* End Border */

/* Start Colors */

.c-black {
  color: #000;
}

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

.c-white {
  color: #fff;
}

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

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

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

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

.bg-white {
  background-color: #fff;
}

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

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

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

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

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

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

/* End Colors */

/* Start Positions */

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

/* End Positions */

/* Start Text  */

.txt-c {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.w-full {
  width: 100%;
}

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

.h-full {
  height: 100%;
}

.w-20 {
  width: 20px;
}

.w-30 {
  width: 30px;
}

.w-40 {
  width: 40px;
}

.min-w-55 {
  min-width: 55px;
}

.w-60 {
  width: 60px;
}

.w-65 {
  width: 65px;
}

.w-150 {
  width: 150px;
}

.h-50 {
  height: 50px;
}

.min-h-55 {
  min-height: 55px;
}

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

.fw-normal {
  font-weight: normal;
}

.fw-500 {
  font-weight: 500;
}

.op-5 {
  opacity: 0.5;
}

.lh {
  line-height: 1.6;
}

.lh-large {
  line-height: 1.8;
}

.txt-nowrap {
  text-wrap-mode: nowrap;
}

.txt-cap {
  text-transform: capitalize;
}

/* End Text  */

/* Start Components */

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

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

.btn {
  display: block;
  width: fit-content;
  background-color: var(--blue-color);
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--blue-alt-color);
}

.btn-shape {
  display: block;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-eee {
  display: block;
  width: fit-content;
  background-color: #eee;
  color: #000;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 6px;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 20px;
  margin: 20px;
}

/* End Components */
