/* Start Box */
.d-flex {
    display: flex;
}
.align-c {
    align-items: center;
}
.space-between {
    justify-content: space-between;
}
.space-around {
    justify-content: space-around;
}
.flex-w {
    flex-wrap: wrap;
}
.d-grid {
    display: grid;
}
.d-block {
    display: block;
}
@media (max-width: 767px) {
    .block-mobile {
        display: block;
    }
}
@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
}
.gap-20 {
    gap: 20px;
}
/* End Box */

/* Start Padding + Margin */
.p-10 {
    padding: 10px;
}
.p-15 {
    padding: 15px;
}
.p-20 {
    padding: 20px;
}
.pb-15 {
    padding-bottom: 15px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pt-10 {
    padding-top: 10px;
}
.pt-15 {
    padding-top: 15px;
}
.pt-20 {
    padding-top: 20px;
}
.pl-15 {
    padding-left: 15px;
}
.m-0 {
    margin: 0;
}
.m-15 {
    margin: 15px;
}
.m-20 {
    margin: 20px;
}
.mt-0 {
    margin-top: 0;
}
.mt-10 {
    margin-top: 10px;
}
.mt-15 {
    margin-top: 15px;
}
.mt-25 {
    margin-top: 25px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-13 {
    margin-bottom: 13px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mt-5 {
    margin-top: 5px;
}
.mb-5 {
    margin-bottom: 5px;
}
.ml-5 {
    margin-left : 5px;
}
.ml-10 {
    margin-left : 10px;
}
.mr-5 {
    margin-right: 5px;
}
.mr-10 {
    margin-right: 10px;
}
.mr-15 {
    margin-right: 15px;
}
/* End Padding + Margin */

/* Start Width + Height */
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
.w-fit {
    width: fit-content;
}
/* End Width + Height */

/* Start Color */
.bg-white {
    background-color: white;
}
.bg-blue {
    background-color: #0075ff;
}
.bg-red {
    background-color: #f44336;
}
.bg-orange {
    background-color: #f59e0b;
}
.bg-green {
    background-color: #22c55e;
}
.bg-grey {
    background-color: #888;
}
.bg-eee {
    background-color: #eee;
}
.c-white {
    color: white;
}
.c-black {
    color: black;
}
.c-red {
    color: #f44336;
}
.c-orange {
    color: #f59e0b;
}
.c-blue {
    color: #0075ff;
}
.c-blue-alt {
    color: #0d69d5;
}
.c-green {
    color: #22c55e;
}
.c-grey {
    color: #888;
}
/* End Color */

/* Start Position */
.p-relative {
    position: relative;
}
/* End Position */

/* Start Font */
.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-25 {
    font-size: 25px;
}
.fw-bold {
    font-weight: bold;
}
/* End Font */

/* Start Border */
.rad-6 {
    border-radius: 6px;
}
.rad-10 {
    border-radius: 10px;
}
.rad-half {
    border-radius: 50%;
}
.b-none {
    border: none;
}
/* End Border */

/* Start Motion */
.trans-03s {
    transition: 0.3s;
}
/* End Motion */

/* Start Component */
.between-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.center-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.border-1ccc {
    border: 1px solid #ccc;
}
.btn-shape {
    padding: 4px 10px;
    border-radius: 6px;
}
/* End Component */