

: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;
}

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


.d-none {
    display: none;
}

.d-grid {
    display: grid;
}

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

.gap-20 {
    gap: 20px;
}



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

.d-block {
    display: block;
}

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

}
/* End Box */


/* Start Padding + Margin */

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

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

}

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

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

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

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

.m-20 {
    margin: 20px;
}

.m-0 {
    margin: 0px;
}


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


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

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

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

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

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

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

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

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

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

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

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

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


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


/* 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-green {
    background-color: var(--green-color);
}

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



.c-black {
    color: black;
}


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

.c-white {
    color: white;
}

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

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

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



.blue {
    background-color: rgb(0 117 255 / 20%);
}

.orange {
    background-color: rgb(245 158 11 / 20%);
}

.green {
    background-color: rgb(34 197 94 / 20%);
}
/* End Color */


/* Start Postion */

.p-relative {
    position: relative;
}

/* End Postion */



/* Start Font */

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


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

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

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

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

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

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

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

/* End Font */



/* Start Border */

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

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

.rad-half {
    border-radius: 50%;
}

.b-none {
    border: none;
}

.b-ccc {
    border: 1px solid #ccc;
}
/* End Border */


/* Start Component */

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

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

/* End Component */


.w-full {
    width: 100%;
}

.w-100 {
    width: 100px;
}

.h-100 {
    height: 100px;
}

.h-full {
    height: 100%;
}

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

.btn-shape {
    padding: 4px 10px;
    border-radius: 6px;
}