:root {
    --main-color: #0075ff;
    --hover-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
}

/* Components */
.main-title {
    margin: 20px 20px 40px;
    position: relative;
}

.main-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: black;
}

.button-shape {
    padding: 8px 15px;
    display: block;
    border-radius: 6px;
    width: fit-content;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-1 {
    color: white;
    background-color: var(--main-color);
}

.btn-1:hover {
    background-color: var(--hover-color);
}

.btn-2 {
    color: black;
    background-color: #eee;
}

.btn-2:hover {
    background-color: hsl(0, 0%, 83%);
}

.switch input[type="checkbox"] {
    appearance: none;
    width: 80px;
    height: 31px;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
    background-color: #ddd;
    cursor: pointer;
}

.switch input[type="checkbox"]::before {
    font-family: var(--fa-style-family-classic);
    content: "\f00d";
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background-color: white;
    color: #ddd;
    transition: 0.3s;
}

.switch input[type="checkbox"]:checked {
    background-color: var(--main-color);
}

.switch input[type="checkbox"]:checked::before {
    left: calc(100% - 28px);
    content: "\f00c";
    color: var(--main-color);
}

.disabled {
    cursor: not-allowed;
    background-color: #ddd;
}

.disabled::placeholder {
    color: #0000005a;
}

/* Box Model */
.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0;
}

.pt-10 {
    padding-top: 10px;
}

.pb-0 {
    padding-bottom: 0;
}

.pl-0 {
    padding-left: 0;
}

.pl-10 {
    padding-left: 10px;
}

.pl-20 {
    padding-left: 20px;
}

.pr-0 {
    padding-right: 0;
}

.pr-10 {
    padding-right: 10px;
}

.m-0 {
    margin: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.ml-0 {
    margin-left: 0;
}

.mr-0 {
    margin-right: 0;
}

.p-20 {
    padding: 20px;
}

.p-10 {
    padding: 10px;

}

.pt-20 {
    padding-top: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pr-20 {
    padding-right: 20px;
}

.m-20 {
    margin: 20px;
}

.ml-5 {
    margin-left: 5px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-0 {
    margin-top: 0;
}

.ml-auto {
    margin-left: auto;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.br-none {
    border: none;
}

.br-gray {
    border: 1px solid #ddd;
}

.br-eee {
    border: 1px solid #eee;
}

.rad-6 {
    border-radius: 6px;
}

.rad-10 {
    border-radius: 10px;
}

.rad-r {
    border-radius: 50%;
}

.w-full {
    width: 100%;
}

.w-fit {
    width: fit-content;
}

.w-100 {
    width: 100px;
}

.h-full {
    height: 100%;
}

.h-100 {
    height: 100px;
}


/* Flex Model */
.dis-flex {
    display: flex;
}

.flex-dir-c {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.flex-full {
    flex-basis: 100%;
}

.jus-c {
    justify-content: center;
}

.jus-l {
    justify-content: flex-start;
}

.jus-r {
    justify-content: flex-end;
}

.jus-sb {
    justify-content: space-between;
}

.jus-sa {
    justify-content: space-around;
}

.al-c {
    align-items: center;
}

.al-t {
    align-items: flex-start;
}

.al-b {
    align-items: flex-end;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-warp {
    flex-wrap: wrap;
}

/* Position */
.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

/* Background Color */
.bg-white {
    background-color: white;
}

.bg-eee {
    background-color: #eee;
}

.bg-gray {
    background-color: var(--grey-color);
}

.bg-orange {
    background-color: var(--orange-color);
}

.bg-red {
    background-color: var(--red-color);
}

.bg-green {
    background-color: var(--green-color);
}

.bg-blue {
    background-color: var(--main-color);
}

/* Font */
.txt-c {
    text-align: center;
}

@media (max-width: 767px) {
    .txt-c-mobile {
        text-align: center;
    }
}

.c-white {
    color: white;
}

.c-black {
    color: black;
}

.c-orange {
    color: var(--orange-color);
}

.c-red {
    color: var(--red-color);
}

.c-green {
    color: var(--green-color);
}

.c-grey {
    color: var(--grey-color);
}

.c-main {
    color: var(--main-color);
}

.c-hover {
    color: var(--hover-color);
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-20 {
    font-size: 20px;
}

.fw-normal {
    font-weight: normal;
}

.fw-bold {
    font-weight: bold;
}

.lh-md {
    line-height: 1.6;
}

.lh-lg {
    line-height: 1.8;
}

/* Grid Model */
.dis-grid {
    display: grid;
}

.g-10 {
    gap: 10px;
}

.g-20 {
    gap: 20px;
}

/* Display */
.dis-block {
    display: block;
}

@media (max-width: 767px) {
    .dis-block-mobile {
        display: block;
    }
}

.dis-inline {
    display: inline;
}

.dis-inline-block {
    display: inline-block;
}

@media (max-width: 767px) {
    .dis-none-mobile {
        display: none;
    }
}