/***** TYPOGRAPHY *****/
.text-xs {
    font-size: 12px;
}
.text-13 {
    font-size: 13px;
}
.text-sm {
    font-size: 14px;
}
.text-base {
    font-size: 16px;
}
.text-lg {
    font-size: 18px;
}
.text-xl {
    font-size: 20px;
}
.text-2xl {
    font-size: 24px;
}
.text-3xl {
    font-size: 30px;
}
.text-4xl {
    font-size: 36px;
}
.text-5xl {
    font-size: 48px;
}
.text-6xl {
    font-size: 64px;
}
.text-7xl {
    font-size: 80px;
}
.text-8xl {
    font-size: 96px;
}
.text-9xl {
    font-size: 128px;
}
/***** End TYPOGRAPHY *****/

/***** Space Block *****/
.gap-2 {
    gap: 0.5rem;
}
.space-x-0 {
    gap: 0;
}
.space-x-1 {
    gap: 0.25rem;
}
.space-x-2 {
    gap: 0.5rem;
}
.space-x-3 {
    gap: 0.75rem;
}
.space-x-4 {
    gap: 1rem;
}
.space-y-0 {
    row-gap: 0;
}
.space-y-1 {
    row-gap: 0.25rem;
}
.space-y-2 {
    row-gap: 0.5rem;
}
.space-y-3 {
    row-gap: 0.75rem;
}
.space-y-4 {
    row-gap: 1rem;
}
.space-y-5 {
    row-gap: 1.25rem;
}
.mb-1px {
    margin-bottom: 1px;
}
.mb-2px {
    margin-bottom: 2px;
}
.mb-3px {
    margin-bottom: 3px;
}
.mr-xs-2 {
    margin-right: 0.5rem;
}
/***** End Space Block *****/

/***** Action *****/
.cursor-pointer {
    cursor: pointer;
}
/***** End Action *****/

/***** Custom Icon *****/
.icon-centered {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
}
.icon-centered.text-lg {
    font-size: 1.125rem !important;
}
/***** End Custom Icon *****/

/***** Color *****/
.text-teal-400 {
    color: #2dd4bf !important;
}
.text-teal-300 {
    color: #0b7044 !important;
}
.text-teal-200 {
    color: #99f6e4 !important;
}
.text-red-700 {
    color: #b91c1c !important;
}
.text-red-400 {
    color: #ef4444 !important;
}
.text-red-900 {
    color: #9c1010 !important;
}
.bg-tale {
    background: #7da0fa;
}
.bg-light-success {
    background: #3bbda6;
}
.text-muted-foreground {
    color: #6f767f !important;
}
.text-warning-dark {
    color: #d88b08 !important;
}
/***** End Color *****/

/***** Rounded *****/
.border-radius-sm {
    border-radius: 0.125rem;
    -webkit-border-radius: 0.125rem;
    -moz-border-radius: 0.125rem;
    -ms-border-radius: 0.125rem;
    -o-border-radius: 0.125rem;
}
.border-radius {
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
}
.border-radius-md {
    border-radius: 0.375rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    -ms-border-radius: 0.375rem;
    -o-border-radius: 0.375rem;
}
.border-radius-lg {
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}
.border-radius-xl {
    border-radius: 0.75rem;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    -ms-border-radius: 0.75rem;
    -o-border-radius: 0.75rem;
}
.border-radius-2xl {
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}
.border-radius-3xl {
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}
/***** End Rounded *****/

/***** Font Weight *****/
.font-normal {
    font-weight: 400;
}
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.font-bold {
    font-weight: 700;
}
.font-extrabold {
    font-weight: 800;
}
.font-black {
    font-weight: 900;
}
/***** End Font Weight *****/

/***** Line Height *****/
.leading-0 {
    line-height: 0;
}
.leading-1 {
    line-height: 0.25rem;
}
.leading-2 {
    line-height: 0.5rem;
}
.leading-3 {
    line-height: 0.75rem;
}
.leading-4 {
    line-height: 1rem;
}
.leading-5 {
    line-height: 1.25rem;
}
.leading-none {
    line-height: 1;
}
.leading-tight {
    line-height: 1.25;
}
.leading-normal {
    line-height: 1.5;
}
.leading-relaxed {
    line-height: 1.625;
}
.leading-loose {
    line-height: 2;
}
/***** End Line Height *****/

/***** Others *****/
.cursor-not-allowed {
    cursor: not-allowed;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-wrap {
    white-space: normal;
}
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.break-words {
    overflow-wrap: break-word;
    word-break: break-word;
}
.img-center {
    object-fit: cover;
    object-position: center;
    -o-object-fit: cover;
    -o-object-position: center;
}
.max-w-600px {
    max-width: 600px;
}
.inline-2xs-hidden {
    display: inline-block;
}
/***** End Others *****/

/***** Animations *****/
.spinners {
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}
.spinners-2 {
    -webkit-animation: spin 0.75s infinite linear;
    animation: spin 0.75s infinite linear;
}
.spinners-3 {
    -webkit-animation: spin 0.6s infinite linear;
    animation: spin 0.6s infinite linear;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes float1 {
    0% {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        -webkit-transform: translateY(-60px);
        -moz-transform: translateY(-60px);
        -ms-transform: translateY(-60px);
        -o-transform: translateY(-60px);
        transform: translateY(-60px);
    }
    100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes float2 {
    0% {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
    50% {
        -webkit-transform: translateY(-45px);
        -moz-transform: translateY(-45px);
        -ms-transform: translateY(-45px);
        -o-transform: translateY(-45px);
        transform: translateY(-45px);
    }
    100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}
/***** End Animations *****/

@media screen and (max-width: 480px) {
    .inline-2xs-hidden {
        display: none;
    }
    .mr-xs-2 {
        margin-right: 0px;
    }
}
