:root{
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --gray-color: #888;
    --fa-style-family-classic: "Font Awesome 6 Free";
}
/* Start Box */
.d-flex{
    display: flex;
}
.align-center{
    align-items: center;
}
.space-between{
    justify-content: space-between;
}
.o-hidden{
    overflow: hidden;
}
.d-grid{
    display: grid;
}
.gap-20{
    gap: 20px;
}
.d-block{
    display: block;
}
.w-fit{
    width: fit-content;
}
/* End Box */

/* Start Padding + Margin */
.p-10{
    padding: 10px;
}
.p-15{
    padding: 15px;
}
.p-20{
    padding: 20px;
}
.m-20{
    margin: 20px;
}
.mt-0{
    margin-top: 0;
}
.mt-5{
    margin-top: 5px;
}
.mt-10{
    margin-top: 10px;
}
.mt-20{
    margin-top: 20px;
}
.mb-20{
    margin-bottom: 20px;
}
.m-0{
    margin: 0;
}
/* End Padding + Margin */

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

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

/* Start Font */
.txt-c{
    text-align: center;
}
.fs-14{
    font-size: 14px;
}
/* End Font */

/* Start Border */
.rad-6{
    border-radius: 6px;
}
.rad-10{
    border-radius: 10px;
}
.main-border{
    border: 1px solid #CCC;
}
/* End Border */

/* Start Size */
.w-full{
    width: 100%;
}
/* End Size */

/* Start Components */
.between-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* End Components */

/* Start Mobile */
@media (max-width: 767px) {
    .hide-mobile{
        display: none;
    }
}
@media (max-width: 767px) {
    .txt-c-mobile{
        text-align: center;
    }
}
@media (max-width: 767px) {
    .block-mobile{
        display: block;
    }
}

/* End Mobile */
