/* display  flex*/
.d-flex{
    display: flex;
}
.align-center{
    align-items: center;
}
.space-between{
    justify-content: space-between;
}
.between-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.center-flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.f-wrap{
    flex-wrap: wrap;
}
/* ------------------------------------------ */
/* display block  */
@media(max-width: 767px){
    .block-mobile{
        display: block;
    }
}
.d-block{
    display: block;
}
/* ------------------------------------------ */

/* display grid  */
.d-grid{
    display: grid;
}
.gap-20{
    gap: 20px;
}
/* ------------------------------------------ */
/* positions  */
.p-relative{
    position: relative;
}
.p-absolute {
    position: absolute;
}
/* ------------------------------------------ */
/* display none  */
@media (max-width:767px){
    .hide-mobile{
        display: none;
    }
}
/* ------------------------------------------ */
/* paddings  */
.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;
}
.pb-10{
    padding-bottom: 10px;
}
.pb-15{
    padding-bottom: 15px;
}
.pb-20{
    padding-bottom: 20px;
}
.pl-15{
    padding-left: 15px;
}
/* ------------------------------------------ */
/* margins  */
.m-0{
    margin: 0;
}
.m-15{
    margin: 15px ;
}
.m-20{
    margin: 20px ;
}
.mt-0{
    margin-top: 0;
}
.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-10{
    margin-right: 10px;
}
.mr-15{
    margin-right: 15px;
}
.mr-25{
    margin-right: 25px;
}
.mb-5{
    margin-bottom: 5px;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-15{
    margin-bottom: 15px;
}
.mb-20{
    margin-bottom: 20px;
}
/* ------------------------------------------ */
/* background colors  */
.bg-white{
    background: 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: #f44336;
}
/* ------------------------------------------ */
/* colors  */
.c-blue{
    color: #0075ff;
}
.c-blue-alt{
    color: #0d69d5;
}
.c-orange{
    color: #f59e0b;
}
.c-green{
    color: #22c55e;
}
.c-red{
    color: #f44336;
}
.c-grey{
    color: #888;
}
.c-black {
    color: black;
}
.c-white{
    color: white;
}
/* ------------------------------------------ */
/* Texts Aligns */
.txt-c{
    text-align: center;
}
@media(max-width: 767px){
    .txt-c-mobile{
        text-align: center;
    }
}
/* ------------------------------------------ */
/* Borders  */
.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;
}
.b-eee{
    border: 1px solid #eee;
}
/* ------------------------------------------ */
/* font sizes  weights */
.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;
}
/* ------------------------------------------ */
/* width & Height */
.w-full{
    width: 100%;
}
.w-fit{
    width: fit-content;
}
.h-full{
    height: 100%;
}
.w-100{
    width: 100px;
}
.h-100{
    height: 100px;
}
/* ------------------------------------------ */
