/* start box */
.d-flex{
    display: flex;
}
.align-items-center{
    align-items: center;
}
.space-between{
    justify-content: space-between;
}
.f-wrap{
    flex-wrap: wrap;
}
.d-grid{
    display: grid;
}
.gap-20{
    gap: 20px;
}
.d-block{
    display: block;
}
@media (max-width:767px) {
    .block-mobile{
  display: block;
    }
    .hide-small{
        display: none;
        }
}
.flex-1{
    flex: 1;
}
/* end box */
/* start colors */
.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-red{
    background-color: var(--red-color);
}
.bg-green{
    background-color: var(--green-color);
}
.c-black{
    color: #000;
}
.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);
}
.c-red{
    color: var(--red-color);
}
/* end colors */
/* start modals*/
.b-0{
    border: 0;
}
.b-ccc{
    border: 1px solid #ccc;
}
.p-5{
    padding: 5px;
}
.p-10{
    padding: 10px;
}
.p-15{
    padding: 15px;
}
.p-20{
    padding: 20px;
}
.p-30{
    padding: 30px;
}
.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;
}
.p-relative{
    position: relative;
}
.p-absolute{
    position: absolute;
}
.m-0{
    margin: 0;
}
.m-20{
    margin: 20px;
}
.mt-0{
    margin-top: 0;
}
.mt-5{
    margin-top: 5px;
}
.mt-10{
    margin-top: 10px;
}
.mt-20{
    margin-top: 20px;
}
.mr-10{
    margin-right: 10px;
}
.mr-15{
    margin-right: 15px;
}
.mr-20{
    margin-right: 20px;
}
.mr-25{
    margin-right: 25px;
}
.ml-10{
    margin-left: 10px;
}
.ml-20{
    margin-left: 20px;
}
.mb-25{
    margin-bottom: 25px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-15{
    margin-bottom: 15px;
}
.mb-5{
    margin-bottom: 5px;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-0{
    margin-bottom: 0;
}
.rad-6{
    border-radius: 6px;
}
.rad-10{
    border-radius: 10px;
}
.w-full{
    width: 100%;
}
.w-fit{
    width: fit-content;
}
.fw-bold{
    font-weight: bold;
}
.h-full{
    height: 100%;
}
/* end modals*/
/* start fonts */
.text-center{
    text-align: center;
}
@media (max-width:767px) {
    .text-mobile-center{
        text-align: center;
    }
}
.fs-13{
    font-size: 13px;
}
.fs-14{
    font-size: 14px;
}
.fs-15{
    font-size: 15px;
}
.fs-16{
    font-size: 16px;
}
.fs-18{
    font-size: 18px;
}
.fs-20{
    font-size: 20px;
}
/* end fonts */
/* start components */
.btn-shape{
    padding: 5px 7px;
    border-radius: 6px;
}
.center-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.space-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* end components */