/* global rules */
:root {
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
}
/* global rules */
/* -------------------------------------------------------- */
/* start display */
/* flex */
.d-flex {
    display: flex;
}
.f-wrap {
    flex-wrap: wrap;
}
.flex-c {
    display: flex;
    align-items: center;
    justify-content: center;
}
.f-between {
    display: flex;
    justify-content: space-between;
}
.align-c {
    align-items: center;
}
.flex-1 {
    flex: 1;
}
@media (max-width: 767px) {
    .mob-d-column {
        flex-direction: column;
    }
}
/* flex */
/* ////////////////////////////////// */
/* grid */
.d-grid {
    display: grid;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
/* grid */
/* ////////////////////////////////// */
/* other */
.d-in-block {
    display: inline-block;
}
.d-block {
    display: block;
}
@media (max-width: 767px) {
    .block-mobile {
        display: block;
    }
}
.over-h {
    overflow: hidden;
}
/* other */
/* end display */
/* -------------------------------------------------------- */
/* width */
.mw-full {
    max-width: 100%;
}
.w-full {
    width: 100%;
}
.w-fit {
    width: fit-content;
}
.user-img {
    width: 35px;
    height: 35px;
}
/* width */
/* -------------------------------------------------------- */
/* padding */
.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;
}
/* ////////////////////////////////// */
.pr-10 {
    padding-right: 10px;
}
.pr-15 {
    padding-right: 15px;
}
.pr-20 {
    padding-right: 20px;
}
/* ////////////////////////////////// */
.pb-10 {
    padding-bottom: 10px;
}
.pb-15 {
    padding-bottom: 15px;
}
.pb-20 {
    padding-bottom: 20px;
}
/* ////////////////////////////////// */
.pl-10 {
    padding-left: 10px;
}
.pl-15 {
    padding-left: 15px;
}
.pl-20 {
    padding-left: 20px;
}
/* padding */
/* -------------------------------------------------------- */
/* margin */
.m-auto {
    margin: auto;
}
.m-0 {
    margin: 0px;
}
.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;
}
/* ////////////////////////////////// */
.mr-0 {
    margin-right: 0;
}
.mr-5 {
    margin-right: 5px;
}
.mr-10 {
    margin-right: 10px;
}
/* ////////////////////////////////// */
.mb-5 {
    margin-bottom: 5px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
/* ////////////////////////////////// */
.ml-5 {
    margin-left: 5px;
}
.ml-10 {
    margin-left: 10px;
}
.ml-15 {
    margin-left: 15px;
}
.ml-20 {
    margin-left: 20px;
}
/* margin */
/* -------------------------------------------------------- */
/* color */
.active {
    background-color: rgb(238, 238, 238, 80%);
}
.bg-white {
    background-color: white;
}
.bg-eee {
    background-color: #eee;
}
.bg-blue {
    background-color: var(--blue-color);
}
.bg-red {
    background-color: var(--red-color);
}
.bg-green {
    background-color: var(--green-color);
}
.bg-orange {
    background-color: var(--orange-color);
}
/* ////////////////////////////////// */
.c-white {
    color: white;
}
.c-black {
    color: black;
}
.c-gray {
    color: var(--grey-color);
}
.c-blue {
    color: var(--blue-color);
}
.c-red {
    color: var(--red-color);
}
.c-green {
    color: var(--green-color);
}
.c-orange {
    color: var(--orange-color);
}
.caret-color {
    caret-color: var(--blue-color);
}
/* color */
/* -------------------------------------------------------- */
/* position */
.p-relative {
    position: relative;
}
/* position */
/* -------------------------------------------------------- */
/* 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-20 {
    font-size: 20px;
}
.fs-25 {
    font-size: 25px;
}
.fs-35 {
    font-size: 35px;
}
.fw-b {
    font-weight: bold;
}
.letter-s {
    letter-spacing: 1px;
}
/* font */
/* -------------------------------------------------------- */
/* border */
.br-1-e {
    border: 1px solid #ddd;
}
.rad-6 {
    border-radius: 6px;
}
.rad-10 {
    border-radius: 10px;
}
.rad-50 {
    border-radius: 50%;
}
/* border */
/* -------------------------------------------------------- */
/* component */
.btn-shape {
    border-radius: 6px;
    padding: 4px 10px;
    position: relative;
}
.toggle-checkbox {
    -webkit-appearance: none;
    appearance: none;
}
.toggle-switch {
    width: 78px;
    height: 32px;
    background-color: #ccc;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}
.toggle-switch::before {
    content: "\f00d";
    font-family: var(--fa-style-family-classic);
    font-weight: 900;
    background-color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.toggle-checkbox:checked + .toggle-switch {
    background-color: var(--blue-color);
}
.toggle-checkbox:checked + .toggle-switch::before {
    content: "\f00c";
    left: 50px;
    color: var(--blue-color);
}
.gold {
    font-weight: 900;
    color: var(--orange-color);
}
/* component */