* {
    box-sizing: border-box;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

a {
    outline: none;
    text-decoration: none;
}

.m {
    margin: 0;
}
.m-10 {
    margin: 10px;
}
.m-20 {
    margin: 20px;
}
.m-30 {
    margin: 30px;
}
.m-40 {
    margin: 40px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mr-5 {
    margin-right: 5px !important;
}
.mr-10 {
    margin-right: 10px !important;
}
.mr-20 {
    margin-right: 20px !important;
}
.ml-5 {
    margin-left: 5px !important;
}
.ml-10 {
    margin-left: 10px !important;
}
.ml-20 {
    margin-left: 20px !important;
}
.mt-5 {
    margin-top: 5px;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}
.p-5 {
    padding: 5px;
}
.p-10 {
    padding: 10px !important;
}
.p-20 {
    padding: 20px !important;
}
.p-30 {
    padding: 30px;
}
.p-40 {
    padding: 40px;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 5;
}

.z-index-3 {
    z-index: 10;
}

.d-flex {
    display: flex;
}
.al-center {
    align-items: center;
}
.ju-center {
    justify-content: center;
}
.fl-column {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.height-100 {
    height: 100%;
}

.width-100 {
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.pointer-events-none {
    pointer-events: none;
}

.hidden {
    overflow: hidden;
}

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

.b-top {
    border-top: 1px solid rgb(var(--border-color));
}

.b-top--dark {
    border-top: 1px solid rgb(var(--border-color), .1);
}

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

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

.w-100 {
    width: 100%;
}

.text-yellow {
    color: rgb(var(--yellow-color));
}

.bold {
    font-weight: bold;
}

.border-r-5 {
    border-radius: .5rem !important;
}