/* utils */

/* positions */
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}

.d-none {
    display: none;
}

.flex {
    display: flex;
}
.flexi {
    display: flex !important;
}
.content-center {
    justify-content: center;
}
.content-between {
    justify-content: space-between;
}
.flex-wrap {
    flex-wrap: wrap;
}
.content-end {
    justify-content: end;
}
.items-center {
    align-items: center;
}
.direction-column {
    flex-direction: column;
}
.lh-2 {
    line-height: 2rem;
}
.gap-10 {
    gap: 10px;
}
.t-0 {
    top: 0px;
}
.l-0 {
    left: 0px;
}
.b-0 {
    bottom: 0px;
}
.r-0 {
    right: 0px;
}

/* text-colors */

.text-white {
    color: white;
}

.text-black {
    color: black;
}

/* text align */

.text-center {
    text-align: center;
}
/* background color */
.bgc-secondary {
    background-color: var(--secondary-bg-color);
}
.bgc-warning {
    background-color: var(--warning-color);
}
.bgc-info {
    background-color: var(--info-color);
}
.bgc-error {
    background-color: var(--alert-color);
}

/* widths */

.w-50 {
    width: 50%;
}
@media (max-width: 767px) {
    .sm-w-90 {
        width: 90%;
    }
}
.w-100 {
    width: 100%;
}
.w-33 {
    width: 33%;
}
.w-66 {
    width: 66%;
}

/* paddings */
.p-0 {
    padding: 0px;
}

.p-5 {
    padding: 5px;
}
.p-5i {
    padding: 5px !important;
}
.p-10 {
    padding: 10px;
}
.p-20 {
    padding: 20px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.px-10 {
    padding-right: 10px;
    padding-left: 10px;
}
.pt-10 {
    padding-top: 10px;
}
.pr-10 {
    padding-right: 10px;
}
.pl-10 {
    padding-left: 10px;
}
/* margins */
.mt-10 {
    margin-top: 10px;
}
.mr-30 {
    margin-right: 30px;
}
.mr-10 {
    margin-right: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-0i {
    margin-bottom: 0px !important;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.br-10 {
    border-radius: 10px;
}
.decoration-none {
    text-decoration: none;
}
.decoration-none:hover {
    text-decoration: underline;
}
.truncated-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fs-18 {
    font-size: 18px;
}
.fs-2r {
    font-size: 2rem;
}
.fw-600 {
    font-weight: 600;
}
