.text-black {
  color: var(--text-black);
}

.text-main {
  color: var(--brand-main-color);
}

.text-second {
  color: var(--text-second);
}

/*
 |
 | Font Size
 |
*/
.font-9 {
  font-size: 9px !important;
}

.font-10 {
  font-size: 10px !important;
}

.font-11 {
  font-size: 11px !important;
}

.font-12 {
  font-size: 12px !important;
}

.font-13 {
  font-size: 13px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-15 {
  font-size: 15px !important;
}

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

.font-17 {
  font-size: 17px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-19 {
  font-size: 19px !important;
}

.font-20 {
  font-size: 20px !important;
}

.font-21 {
  font-size: 21px !important;
}

.font-22 {
  font-size: 22px !important;
}

.font-23 {
  font-size: 23px !important;
}

.font-24 {
  font-size: 24px !important;
}

.font-25 {
  font-size: 25px !important;
}

.font-26 {
  font-size: 26px !important;
}

.font-27 {
  font-size: 27px !important;
}

.font-28 {
  font-size: 28px !important;
}

.font-29 {
  font-size: 29px !important;
}

.font-30 {
  font-size: 30px !important;
}

.font-31 {
  font-size: 31px !important;
}

.font-32 {
  font-size: 32px !important;
}

.font-33 {
  font-size: 33px !important;
}

.font-34 {
  font-size: 34px !important;
}

.font-35 {
  font-size: 35px !important;
}

.font-36 {
  font-size: 36px !important;
}

.font-37 {
  font-size: 37px !important;
}

.font-38 {
  font-size: 38px !important;
}

.font-39 {
  font-size: 39px !important;
}

.font-40 {
  font-size: 40px !important;
}

.font-41 {
  font-size: 41px !important;
}

.font-42 {
  font-size: 42px !important;
}

/*
 |
 | Font Weight
 |
*/
.font-weight-100 {
  font-weight: 100 !important;
}

.font-weight-200 {
  font-weight: 200 !important;
}

.font-weight-300 {
  font-weight: 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.font-weight-800 {
  font-weight: 800 !important;
}

.font-weight-900 {
  font-weight: 900 !important;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
}

.btn {
  padding: 0.7rem 1.5rem;
  border-radius: var(--border-radius-sm) !important;
  transition: all 0.1s linear;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.btn:focus {
  box-shadow: none !important;
}

/*** Button Main ****/
.btn-main {
  position: relative;
  overflow: hidden;
  border: solid 1px var(--btn-bg);
  transition: all 0.3s ease-in-out;
}
.btn-main:before {
  content: "";
  position: absolute;
  background-color: var(--btn-bg);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 180%;
  height: 180%;
  transform: translateX(0%);
  transition: transform 0.3s ease-in-out;
}
.btn-main:hover::before {
  transform: translateX(-100%);
}
.btn-main:hover span {
  color: var(--btn-bg) !important;
}
.btn-main span {
  transition: color 0.2s ease-in-out;
  position: relative;
  z-index: 2;
  color: var(--btn-color);
}

/*** Button outline Main ****/
.btn-outline-main {
  position: relative;
  overflow: hidden;
  border: solid 2px var(--btn-bg);
}
.btn-outline-main span {
  position: relative;
  z-index: 2;
  color: var(--btn-bg);
  font-weight: 500;
}
.btn-outline-main:before {
  content: "";
  position: absolute;
  background-color: var(--btn-bg);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 180%;
  height: 180%;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-outline-main:hover::before {
  transform: translateX(0%);
}
.btn-outline-main:hover span {
  color: var(--btn-color) !important;
}

/* Box Style */
.box {
  padding: 1rem;
  background-color: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--card-border-radius);
  word-wrap: break-word;
  box-shadow: var(--card-shadow);
}
.box .box-title {
  padding: 0px 1rem;
  font-size: 18px;
}
.box .box-body {
  padding: 0px 1rem;
}

.border {
  border-color: var(--border-color) !important;
}

/* Main Border Radius */
.radius {
  border-radius: var(--border-radius);
}

.radius-md {
  border-radius: var(--border-radius-md);
}

.radius-sm {
  border-radius: var(--border-radius-sm);
}

.radius-xs {
  border-radius: var(--border-radius-xs);
}

/*
|
| Form Group Input
|
*/
.form-group textarea,
.form-group select,
.form-group input,
.form-group .form-control,
.input-group textarea,
.input-group select,
.input-group input,
.input-group .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 1rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--input-text-color);
  background-color: var(--input-main-bg);
  background-clip: padding-box;
  border: 1px solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  transition: border-color 0.3s ease-in-out, background-color 0.2s linear, box-shadow 0.15s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.form-group textarea:focus,
.form-group select:focus,
.form-group input:focus,
.form-group .form-control:focus,
.input-group textarea:focus,
.input-group select:focus,
.input-group input:focus,
.input-group .form-control:focus {
  color: var(--input-text-color-on-foucs);
  background-color: var(--input-main-bg-on-foucs);
  border: solid 1px var(--input-border-on-foucs);
}
.form-group textarea,
.input-group textarea {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.form-group select,
.form-group input,
.input-group select,
.input-group input {
  height: var(--input-height);
}

.input-group textarea,
.input-group select,
.input-group input,
.input-group .form-control {
  width: unset !important;
}/*# sourceMappingURL=components.css.map */