/* Start Display */
.d-flex {
    display: flex;
}
.d-block {
    display: block;
}
.align-center {
    align-items: center;
}
.between-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.center-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.f-wrap {
    flex-wrap: wrap;
}
.d-grid {
    display: grid;
}
.f-grow {
    flex: 1;
}
@media (max-width:767px) {
    .block-mobile {
        display: block;
    }
    .hide-mobile {
        display: none;
    }
} 
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.space-between {
    justify-content: space-between;
}
/* End Display */
/* Start Color */
:root {
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
}
.c-white {
    color: #fff;
}
.c-black {
    color: black;
}
.c-grey {
    color: #888;
}
.c-blue {
    color: #0075ff;
}
.c-orange {
    color: #f59e0b;
}
.c-red {
    color: #f00;
}
.c-green {
    color: #22c55e;
}
.bg-grey {
    background-color: #888;
}
.bg-eee {
    background-color: #eee;
}
.bg-blue {
    background-color: #0075ff;
}
.bg-orange {
    background-color: #f59e0b;
}
.bg-white {
    background-color: #fff;
}
.bg-red {
    background-color: #f00;
}
.bg-green {
    background-color: #22c55e;
}
/* End Color */
/* Start Position */
.p-relative {
    position: relative;
}
.p-absolute {
    position: absolute;
}
/* End Position */
/* Start Padding */
.p-10 {
    padding: 10px;
}
.p-20 {
    padding: 20px;
}
.p-15 {
    padding: 15px;
}
.pt-5 {
    padding-top: 5px;
}
.pt-10 {
    padding-top: 10px;
}
.pt-20 {
    padding-top: 20px;
}
.pb-5 {
    padding-bottom: 5px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pb-15 {
    padding-bottom: 15px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pr-10 {
    padding-right: 10px;
}
/* End Padding */
/* Start Margin */
.m-0 {
    margin: 0;
}
.m-10 {
    margin: 10px;
}
.m-20 {
    margin: 20px;
}
.mt-0 {
    margin-top: 0;
}
.mt-5 {
    margin-top: 5px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-25 {
    margin-top: 25px;
}
.mb-5 {
    margin-bottom: 5px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mr-5 {
    margin-right: 5px;
}
.mr-10 {
    margin-right: 10px;
}
.mr-15 {
    margin-right: 15px;
}
/* End Margin */
/* Start Text */
.txt-c {
    text-align: center;
}
.fs-12 {
    font-size: 12px;
}
.fs-13 {
    font-size: 13px;
}
.fs-14 {
    font-size: 14px;
}
.fs-15 {
    font-size: 15px;
}
.fs-16 {
    font-size: 16px;
}
.fs-17 {
    font-size: 17px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-25 {
    font-size: 25px;
}
.fw-light {
    font-weight: 500;
}
.fw-bold {
    font-weight: bold;
}
.btn-shape {
    padding: 4px 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
@media (max-width:767px) {
    .txt-c-mobile {
        text-align: center;
    }
} 
/* End Text */
/* Start Border */
.rad-6 {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.rad-10 {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.b-none {
    border: none;
}
.bt-one {
    border-top: 1px solid #eee;
}
.bb-one {
    border-bottom: 1px solid #eee;
}
.border {
    border: 1px solid #ccc;
}
/* End Border */
/* Start Width */
.w-full {
    width: 100%;
}
.w-fit {
    width: fit-content;
}
/* End Width */