.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.grid {
    display: grid !important;
    min-width: fit-content;
}
.grid-1 {
    grid-template-columns: 1fr;
}
.grid-1-2 {
    grid-template-columns: 1fr 2fr;
}
.grid-2 {
    grid-template-columns: 1fr 1fr;
}
.grid-2-1 {
    grid-template-columns: 2fr 1fr;
}
.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.grid-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.grid-7 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.grid-item {
    display: flex;
}
.grid-item-2 {
    grid-column: span 2;
}
.grid-item-3 {
    grid-column: span 3;
}
.flex {
    display: flex;
}
.flex-v {
    flex-direction: column;
}
.flex-h {
    flex-direction: row;
}
.flex-start {
    justify-content: start;
}
.flex-center {
    justify-content: center;
}
.flex-end {
    justify-content: end;
}
.flex-space-between {
    justify-content: space-between;
}
.flex-items-center {
    align-items: center;
}
.flex-items-end {
    align-items: end;
}
.flex-self-center {
    align-self: center;
}
.flex-1 {
    flex: 1 !important;
}
.flex-2 {
    flex: 2 !important;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.gap-30 {
    gap: 30px;
}
.gap-40 {
    gap: 40px;
}
.gap-50 {
    gap: 50px;
}
.mt-10 {
    margin-top: 10px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.ml-10 {
    margin-left: 10px !important;
}
.mr-10 {
    margin-right: 10px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mt-40 {
    margin-top: 40px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mt-50 {
    margin-top: 50px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}
.mt-60 {
    margin-top: 60px !important;
}
.mb-60 {
    margin-bottom: 60px !important;
}
.mt-70 {
    margin-top: 70px !important;
}
.mb-70 {
    margin-bottom: 70px !important;
}
.mt-80 {
    margin-top: 80px !important;
}
.mb-80 {
    margin-bottom: 80px !important;
}
.mt-90 {
    margin-top: 90px !important;
}
.mb-90 {
    margin-bottom: 90px !important;
}
.mt-100 {
    margin-top: 100px !important;
}
.mb-100 {
    margin-bottom: 100px !important;
}
.mt-110 {
    margin-top: 110px !important;
}
.mb-110 {
    margin-bottom: 110px !important;
}
.mt-120 {
    margin-top: 120px !important;
}
.mb-120 {
    margin-bottom: 120px !important;
}
.mt-130 {
    margin-top: 130px !important;
}
.mb-130 {
    margin-bottom: 130px !important;
}
.mt-140 {
    margin-top: 140px !important;
}
.mb-140 {
    margin-bottom: 140px !important;
}
.mt-150 {
    margin-top: 150px !important;
}
.mb-150 {
    margin-bottom: 150px !important;
}
.mt-160 {
    margin-top: 160px !important;
}
.mb-160 {
    margin-bottom: 160px !important;
}
.mt-170 {
    margin-top: 170px !important;
}
.mb-170 {
    margin-bottom: 170px !important;
}
.mt-180 {
    margin-top: 180px !important;
}
.mb-180 {
    margin-bottom: 180px !important;
}
.mt-190 {
    margin-top: 190px !important;
}
.mb-190 {
    margin-bottom: 190px !important;
}
.mt-200 {
    margin-top: 200px !important;
}
.mb-200 {
    margin-bottom: 200px !important;
}
.w-100 {
    width: 100% !important;
}
.w-110 {
    width: calc(100% + 100px) !important;
    margin-left: -50px !important;
}
.w-120 {
    width: calc(100% + 200px) !important;
    margin-left: -100px !important;
}
.w-fit-content {
    width: fit-content !important;
}
.w-max-content {
    width: max-content !important;
}
.h-100 {
    height: 100% !important;
}
.p-10 {
    padding: 10px !important;
}
.p-20 {
    padding: 20px !important;
}
.p-30 {
    padding: 30px !important;
}
.p-40 {
    padding: 40px !important;
}
.p-50 {
    padding: 50px !important;
}
.p-60 {
    padding: 60px !important;
}
.p-70 {
    padding: 70px !important;
}
.p-80 {
    padding: 80px !important;
}
.p-90 {
    padding: 90px !important;
}
.p-100 {
    padding: 100px !important;
}
.pt-150 {
    padding-top: 150px !important;
}
.pl-50 {
    padding-left: 50px !important;
}
.pr-50 {
    padding-right: 50px !important;
}
.pl-100 {
    padding-left: 100px !important;
}
.pr-100 {
    padding-right: 100px !important;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-thin {
    width: 1140px;
}
.hide {
    display: none !important;
}
@media (max-width: 1023px) {
    .t-grid-1 {
        grid-template-columns: 1fr;
    }
    .t-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .t-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .t-grid-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .t-grid-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .swipe {
        overflow-x: scroll;
        margin: -20px;
        padding: 20px;
    }
    .container {
        width: 100%;
    }
    .t-hide {
        display: none !important;
    }
    .t-flex {
        display: flex !important;
    }
}
@media (max-width: 767px) {
    .m-grid-1 {
        grid-template-columns: 1fr;
    }
    .m-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .m-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .m-grid-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .m-grid-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .swipe {
        overflow-x: scroll;
        margin: -20px;
        padding: 20px;
    }
    .m-p-10 {
        padding: 10px !important;
    }
    .m-p-20 {
        padding: 20px !important;
    }
    .m-p-30 {
        padding: 30px !important;
    }
    .m-p-40 {
        padding: 40px !important;
    }
    .m-p-50 {
        padding: 50px !important;
    }
    .m-mt-0 {
        margin-top: 0 !important;
    }
    .m-mb-50 {
        margin-bottom: 50px !important;
    }
    .m-flex-v {
        flex-direction: column;
    }
    .m-flex-h {
        flex-direction: row;
    }
    .m-flex-start {
        justify-content: start;
    }
    .m-flex-center {
        justify-content: center;
    }
    .m-flex-end {
        justify-content: end;
    }
    .m-centered {
        text-align: center;
        margin: 0 auto;
    }
    .container {
        width: 100%;
    }
    .m-gap-10 {
        gap: 10px;
    }
    .m-gap-20 {
        gap: 20px;
    }
    .m-gap-30 {
        gap: 30px;
    }
    .m-gap-40 {
        gap: 40px;
    }
    .m-gap-50 {
        gap: 50px;
    }
    .m-hide {
        display: none !important;
    }
}