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

.top-0 {
    top: 0;
}
.left-0 {
    left: 0;
}
.right-0 {
    right: 0;
}
.bottom-0 {
    bottom: 0;
}

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

/* display */
.hidden,
.d-none {
    display: none;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.grid {
    display: grid;
}
.invisible {
    visibility: hidden;
}

/* flex */
.flex-auto {
    flex: 1 1 auto;
}

.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}
.flex-nowrap {
    flex-wrap: nowrap;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}

.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-evenly {
    justify-content: space-evenly;
}

.items-start {
    align-items: flex-start;
}
.items-end {
    align-items: flex-end;
}
.items-center {
    align-items: center;
}
.items-baseline {
    align-items: baseline;
}
.items-stretch {
    align-items: stretch;
}

.shrink {
    flex-shrink: 1;
}
.shrink-0 {
    flex-shrink: 0;
}

.grow {
    flex-grow: 1;
}
.grow-0 {
    flex-grow: 0;
}

.gap-6px {
    gap: 6px;
}
.gap-12px {
    gap: 12px;
}
.gap-22px {
    gap: 22px;
}
.gap-80px {
    gap: 80px;
}
.gap-x-1 {
    column-gap: 4px;
}
.gap-x-5px {
    column-gap: 5px;
}

/* grid */
.grid-cols-1 { 
    grid-template-columns: repeat(1, minmax(0, 1fr)); 
}
.grid-cols-2 { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
}
.grid-cols-3 { 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
}
.grid-cols-4 { 
    grid-template-columns: repeat(4, minmax(0, 1fr)); 
}
.grid-cols-5 { 
    grid-template-columns: repeat(5, minmax(0, 1fr)); 
}
.grid-cols-6 { 
    grid-template-columns: repeat(6, minmax(0, 1fr)); 
}
.grid-cols-7 { 
    grid-template-columns: repeat(7, minmax(0, 1fr)); 
}
.grid-cols-8 { 
    grid-template-columns: repeat(8, minmax(0, 1fr)); 
}
.grid-cols-9 { 
    grid-template-columns: repeat(9, minmax(0, 1fr)); 
}
.grid-cols-10 { 
    grid-template-columns: repeat(10, minmax(0, 1fr)); 
}
.grid-cols-11 { 
    grid-template-columns: repeat(11, minmax(0, 1fr)); 
}
.grid-cols-12 { 
    grid-template-columns: repeat(12, minmax(0, 1fr)); 
}
.grid-cols-none { 
    grid-template-columns: none; 
}

/* margin */
.margin-0 {
    border: 0;
}
.margin-t-12px {
    margin-top: 26px;
}
.margin-b-12px {
    margin-bottom: 20px;
}
.margin-t-26px {
    margin-top: 26px;
}
.margin-b-26px {
    margin-bottom: 20px;
}
.margin-t-80px {
    margin-top: 80px;
}
.margin-b-80px {
    margin-bottom: 80px;
}
.margin-t-40px {
    margin-top: 40px;
}
.margin-b-40px {
    margin-bottom: 40px;
}
.margin-y-40px {
    margin-top: 40px;
    margin-bottom: 40px;
}
.margin-l-12px {
    margin-left: 12px;
}
.margin-r-12px {
    margin-right: 12px;
}
.margin-l-16px {
    margin-left: 16px;
}
.margin-l-22px {
    margin-left: 22px;
}
.margin-r-22px {
    margin-right: 22px;
}
.margin-t-151px {
    margin-top: 151px;
}
.margin-r-4px {
    margin-right: 4px;
}
.margin-t-4px {
    margin-top: 4px;
}
.margin-b-0 {
    margin-bottom: 0;
}
.margin-t-25px {
    margin-top: 25px;
}
.margin-t-20px {
    margin-top: 20px;
}
.margin-b-24px {
    margin-bottom: 24px;
}
.margin-b-38px {
    margin-bottom: 38px;
}
.margin-b-40px {
    margin-bottom: 40px;
}

/* borders */
.border-0 {
    border: 0;
}
.border {
    border: 1px solid var(--on-color-border);
}
.border-t {
    border-top: 1px solid var(--on-color-border);
}
.border-b {
    border-bottom: 1px solid var(--on-color-border);
}
.border-l {
    border-left: 1px solid var(--on-color-border);
}
.border-r {
    border-right: 1px solid var(--on-color-border);
}
.border-l-0 {
    border-left: 0;
}

.border-b-light {
    border-bottom: 1px solid var(--on-color-border-light);
}

/* padding */
.padding-0 {
    padding: 0;
}
.padding-16px {
    padding: 16px;
}
.padding-r-0 {
    padding-right: 0;
}
.padding-b-40px {
    padding-bottom: 40px;
}
.padding-l-34px {
    padding-left: 34px;
}
.padding-b-26px {
    padding-bottom: 26px;
}
.padding-y-4px {
    padding-top: 4px;
    padding-bottom: 4px;
}
.padding-x-12px {
    padding-left: 12px;
    padding-right: 12px;
}
.padding-x-16px {
    padding-left: 16px;
    padding-right: 16px;
}
.padding-y-14px {
    padding-top: 14px;
    padding-bottom: 14px;
}

/* width */
.w-full {
    width: 100%;
}
.w-auto {
    width: auto;
}
.w-leftMenu {
    width: var(--on-width-menu);
}
.w-0 {
    width: 0;
}
.w-32px {
    width: 32px;
}

/* height */
.h-full {
    height: 100%;
}
.h-20px {
    height: 20px;
}

/* rounded */
.rounded-none {
    border-radius: 0;
}
.rounded {
    border-radius: 5px;
}
.rounded-r-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.rounded-l-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.rounded-xxs {
    border-radius: var(--on-border-radius-xxs);
}
.rounded-xs {
    border-radius: var(--on-border-radius-xs);
}
.rounded-sm {
    border-radius: var(--on-border-radius-sm);
}
.rounded-md {
    border-radius: var(--on-border-radius-md);
}
.rounded-lg {
    border-radius: var(--on-border-radius-lg);
}
.rounded-xl {
    border-radius: var(--on-border-radius-xl);
}

.h1 {
	font-size: 1.2857142857142858rem;
	font-weight: 500
}

.h2 {
	font-size: 1.1428571428571428rem;
	font-weight: 500
}

.h3 {
	font-size: 1rem;
	font-weight: 500
}

.txt-xs {
    font-size: var(--on-size-12px);
}
.txt-base {
    font-size: var(--on-size-16px) !important;
}

/* backgrounds */
.bgd-transparent {
    background-color: transparent;
}
.bgd-bg {
    background-color: var(--on-color-bg);
}
.bgd-primary {
    background-color: var(--on-color-primary);
}
.bgd-primary-hover:hover {
    background-color: var(--on-color-primary-hover);
}
.bgd-info {
    background-color: var(--on-color-info);
}
.bgd-info-hover:hover {
    background-color: var(--on-color-info-hover);
}
.bgd-success {
    background-color: var(--on-color-success);
}
.bgd-success-hover:hover {
    background-color: var(--on-color-success-hover);
}
.bgd-warning {
    background-color: var(--on-color-warning);
}
.bgd-warning-hover:hover {
    background-color: var(--on-color-warning-hover);
}
.bgd-error {
    background-color: var(--on-color-error);
}
.bgd-error-hover:hover {
    background-color: var(--on-color-error-hover);
}

/* text colors */
.txt-primary {
    color: var(--on-color-primary);
}
.txt-primary-hover:hover {
    color: var(--on-color-primary-hover);
}
.txt-info {
    color: var(--on-color-info);
}
.txt-info-hover:hover {
    color: var(--on-color-info-hover);
}
.txt-success {
    color: var(--on-color-success);
}
.text-success-hover:hover {
    color: var(--on-color-success-hover);
}
.txt-warning {
    color: var(--on-color-warning);
}
.txt-warning-hover:hover {
    color: var(--on-color-warning-hover);
}
.txt-error {
    color: var(--on-color-error);
}
.txt-error-hover:hover {
    color: var(--on-color-error-hover);
}
.txt-white {
    color: #fff;
}
.txt-white-hover:hover {
    color: #fff;
}
.txt-gray {
    color: var(--on-color-gray-400);
}
.txt-first-letter::first-letter {
    text-transform: capitalize;
}

.text-light {
    font-weight: 300;
}
.text-normal {
    font-weight: 400;
}
.text-semibold {
    font-weight: 500;
}
.text-bold {
    font-weight: 700;
}
.text-transform-none {
    text-transform: none;
}

/* list */
.list-none {
    list-style: none;
}

/* cursor  */
.cursor-pointer {
    cursor: pointer;
}
.cursor-default {
    cursor: default;
}

/* no-wrap */
.no-wrap {
    white-space: nowrap;
}
.text-no-wrap {
    text-wrap: nowrap;
}

/* fix inherit width problem */
.width-inherit {
    width: inherit;
}

/* transition */
.transition {

}
.duration-300 {
    transition-duration: 300ms;
}
.duration-450 {
    transition-duration: 450ms;
}
.duration-600 {
    transition-duration: 600ms;
}

/*z-index */
.zindex-1 {
    z-index: 1;
}
.zindex-2 {
    z-index: 2;
}
.zindex-3 {
    z-index: 3;
}
.zindex-10 {
    z-index: 10;
}
.zindex-100 {
    z-index: 100;
}

/* weird solution for colors in old auctions */
.color-success,
.background-color-success {
    background-color: #C6EAA3 !important;
}
.color-blue {
    background-color: #A9E1F3 !important;
}
.color-yellow,
.color-warning,
.background-color-yellow,
.background-color-warning {
    background-color: #FCF1C1 !important;
}
.background-color-gray {
    background-color: var(--on-color-gray-50);
}
.color-red {
    background-color: #F8C3CB !important;
}

.dot {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h-14 {
    height: 14px;
}
.h-30 {
    height: 30px;
}

.float-l {
    float: left;
}

.min-w-0 {
    min-width: 0;
}
.min-w-32 {
    min-width: 128px;
}
.min-w-205 {
    min-width: 205px;
}

.min-h-34 {
    min-height: 34px;
}
.min-h-64 {
    min-height: 64px;
}

.overflow-x-auto {
    overflow-x: auto;
}
.overflow-hidden {
    overflow: hidden;
}

.tooltip-inner {
    max-width: 350px !important;
}

.modal-xl {
    width: 90%;
    max-width: 1400px;
}  

.info-box {
    border: 1px solid var(--on-color-info);
    color: var(--on-color-info);
    border-radius: var(--on-rounded);
    padding: 1px 5px;
    font-size: 14px;
}

.enviromentLine {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 3px;
    z-index: 1000;
}

.enviromentLine.--dev {
    background-color: #30D5C8;
}

.enviromentLine.--staging {
    background-color: var(--on-color-primary);
}

.opacity-0 {
    opacity: 0;
}
.opacity-80 {
    opacity: 0.8;
}
.opacity-100 {
    opacity: 1;
}

.break-words {
    word-break: break-word;
}

.animate-spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fade-icon-enter-active,
.fade-icon-leave-active {
    transition: opacity 0.3s ease, width 0.3s ease;
}

.fade-icon-enter-from,
.fade-icon-leave-to {
    opacity: 0;
    width: 0;
    overflow: hidden;
}
.underline {
    text-decoration: underline;
}

/* XS */
@media screen and (max-width: 767px) {
    /* position */
    .xs-static {
        position: static;
    }
    .xs-relative {
        position: relative;
    }
    .xs-absolute {
        position: absolute;
    }
    .xs-fixed {
        position: fixed;
    }

    /* display */
    .xs-hidden {
        display: none;
    }
    .xs-flex {
        display: flex;
    }
    .xs-inline-flex {
        display: inline-flex;
    }
    .xs-block {
        display: block;
    }
    .xs-inline-block {
        display: inline-block;
    }

    /* flex */
    .xs-flex-row {
        flex-direction: row;
    }
    .xs-flex-column {
        flex-direction: column;
    }

    .xs-flex-wrap {
        flex-wrap: wrap;
    }
    .xs-flex-nowrap {
        flex-wrap: nowrap;
    }

    .xs-justify-start {
        justify-content: flex-start;
    }
    .xs-justify-end {
        justify-content: flex-end;
    }
    .xs-justify-center {
        justify-content: center;
    }
    .xs-justify-between {
        justify-content: space-between;
    }
    .xs-justify-around {
        justify-content: space-around;
    }
    .xs-justify-evenly {
        justify-content: space-evenly;
    }

    .xs-items-start {
        align-items: flex-start;
    }
    .xs-items-end {
        align-items: flex-end;
    }
    .xs-items-center {
        align-items: center;
    }
    .xs-items-baseline {
        align-items: baseline;
    }
    .xs-items-stretch {
        align-items: stretch;
    }
    
    .xs-grow {
        flex-grow: 1;
    }

    .xs-shrink {
        flex-shrink: 1;
    }
    .xs-shrink-0 {
        flex-shrink: 0;
    }

    .xs-gap-22px {
        gap: 22px;
    }
    .xs-gap-80px {
        gap: 80px;
    }
    .xs-gap-x-6px {
        column-gap: 6px;
    }

    /* grid */
    .xs-grid-cols-1 { 
        grid-template-columns: repeat(1, minmax(0, 1fr)); 
    }
    .xs-grid-cols-2 { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
    .xs-grid-cols-3 { 
        grid-template-columns: repeat(3, minmax(0, 1fr)); 
    }
    .xs-grid-cols-4 { 
        grid-template-columns: repeat(4, minmax(0, 1fr)); 
    }
    .xs-grid-cols-5 { 
        grid-template-columns: repeat(5, minmax(0, 1fr)); 
    }
    .xs-grid-cols-6 { 
        grid-template-columns: repeat(6, minmax(0, 1fr)); 
    }
    .xs-grid-cols-7 { 
        grid-template-columns: repeat(7, minmax(0, 1fr)); 
    }
    .xs-grid-cols-8 { 
        grid-template-columns: repeat(8, minmax(0, 1fr)); 
    }
    .xs-grid-cols-9 { 
        grid-template-columns: repeat(9, minmax(0, 1fr)); 
    }
    .xs-grid-cols-10 { 
        grid-template-columns: repeat(10, minmax(0, 1fr)); 
    }
    .xs-grid-cols-11 { 
        grid-template-columns: repeat(11, minmax(0, 1fr)); 
    }
    .xs-grid-cols-12 { 
        grid-template-columns: repeat(12, minmax(0, 1fr)); 
    }
    .xs-grid-cols-none { 
        grid-template-columns: none; 
    }

    /* margin */
    .xs-margin-0 {
        border: 0;
    }
    .xs-margin-t-4px {
        margin-top: 4px;
    }

    /* borders */
    .xs-border-0 {
        border: 0;
    }
    .xs-border {
        border: 1px solid var(--on-color-bg);
    }
    .xs-border-t {
        border-top: 1px solid var(--on-color-border);
    }
    .xs-border-b {
        border-bottom: 1px solid var(--on-color-border);
    }
    .xs-border-l {
        border-left: 1px solid var(--on-color-border);
    }
    .xs-border-r {
        border-right: 1px solid var(--on-color-border);
    }

    /* padding */
    .xs-padding-0 {
        padding: 0;
    }    

    /* width */
    .xs-w-full {
        width: 100%;
    }
    .xs-w-auto {
        width: auto;
    }

    /* rounded */
    .xs-rounded-none {
        border-radius: 0;
    }
    .xs-rounded {
        border-radius: 5px;
    }

    /* backgrounds */
    .xs-bgd-transparent {
        background-color: transparent;
    }
    .xs-bgd-bg {
        background-color: var(--on-color-bg);
    }
    .xs-bgd-primary {
        background-color: var(--on-color-primary);
    }
    .xs-bgd-primary-hover:hover {
        background-color: var(--on-color-primary-hover);
    }
    .xs-bgd-info {
        background-color: var(--on-color-info);
    }
    .xs-bgd-info-hover:hover {
        background-color: var(--on-color-info-hover);
    }
    .xs-bgd-success {
        background-color: var(--on-color-success);
    }
    .xs-bgd-success-hover:hover {
        background-color: var(--on-color-success-hover);
    }
    .xs-bgd-warning {
        background-color: var(--on-color-warning);
    }
    .xs-bgd-warning-hover:hover {
        background-color: var(--on-color-warning-hover);
    }
    .xs-bgd-error {
        background-color: var(--on-color-error);
    }
    .xs-bgd-error-hover:hover {
        background-color: var(--on-color-error-hover);
    }

    /* text colors */
    .xs-txt-primary {
        color: var(--on-color-primary);
    }
    .xs-txt-primary-hover:hover {
        color: var(--on-color-primary-hover);
    }
    .xs-txt-info {
        color: var(--on-color-info);
    }
    .xs-txt-info-hover:hover {
        color: var(--on-color-info-hover);
    }
    .xs-txt-success {
        color: var(--on-color-success);
    }
    .xs-text-success-hover:hover {
        color: var(--on-color-success-hover);
    }
    .xs-txt-warning {
        color: var(--on-color-warning);
    }
    .xs-txt-warning-hover:hover {
        color: var(--on-color-warning-hover);
    }
    .xs-txt-error {
        color: var(--on-color-error);
    }
    .xs-txt-error-hover:hover {
        color: var(--on-color-error-hover);
    }
    .xs-txt-white {
        color: #fff;
    }
    .xs-txt-white-hover:hover {
        color: #fff;
    }

    .modal-xl {
        width: 95%;
    } 
}

/* SM */
@media screen and (max-width: 991px) {
    /* position */
    .sm-static {
        position: static;
    }
    .sm-relative {
        position: relative;
    }
    .sm-absolute {
        position: absolute;
    }
    .sm-fixed {
        position: fixed;
    }

    /* display */
    .sm-hidden {
        display: none;
    }
    .sm-flex {
        display: flex;
    }
    .sm-inline-flex {
        display: inline-flex;
    }
    .sm-block {
        display: block;
    }
    .sm-inline-block {
        display: inline-block;
    }
    .sm-grid {
        display: grid;
    }

    /* flex */
    .sm-flex-row {
        flex-direction: row;
    }
    .sm-flex-column {
        flex-direction: column;
    }
    .sm-flex-wrap {
        flex-wrap: wrap;
    }
    .sm-flex-nowrap {
        flex-wrap: nowrap;
    }
    
    .sm-justify-start {
        justify-content: flex-start;
    }
    .sm-justify-end {
        justify-content: flex-end;
    }
    .sm-justify-center {
        justify-content: center;
    }
    .sm-justify-between {
        justify-content: space-between;
    }
    .sm-justify-around {
        justify-content: space-around;
    }
    .sm-justify-evenly {
        justify-content: space-evenly;
    }

    .sm-items-start {
        align-items: flex-start;
    }
    .sm-items-end {
        align-items: flex-end;
    }
    .sm-items-center {
        align-items: center;
    }
    .sm-items-baseline {
        align-items: baseline;
    }
    .sm-items-stretch {
        align-items: stretch;
    }

    .sm-shrink {
        flex-shrink: 1;
    }
    .sm-shrink-0 {
        flex-shrink: 0;
    }

    .sm-gap-6px {
        gap: 6px;
    }
    .sm-gap-22px {
        gap: 22px;
    }
    .sm-gap-80px {
        gap: 80px;
    }

    /* grid */
    .sm-grid-cols-1 { 
        grid-template-columns: repeat(1, minmax(0, 1fr)); 
    }
    .sm-grid-cols-2 { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
    .sm-grid-cols-3 { 
        grid-template-columns: repeat(3, minmax(0, 1fr)); 
    }
    .sm-grid-cols-4 { 
        grid-template-columns: repeat(4, minmax(0, 1fr)); 
    }
    .sm-grid-cols-5 { 
        grid-template-columns: repeat(5, minmax(0, 1fr)); 
    }
    .sm-grid-cols-6 { 
        grid-template-columns: repeat(6, minmax(0, 1fr)); 
    }
    .sm-grid-cols-7 { 
        grid-template-columns: repeat(7, minmax(0, 1fr)); 
    }
    .sm-grid-cols-8 { 
        grid-template-columns: repeat(8, minmax(0, 1fr)); 
    }
    .sm-grid-cols-9 { 
        grid-template-columns: repeat(9, minmax(0, 1fr)); 
    }
    .sm-grid-cols-10 { 
        grid-template-columns: repeat(10, minmax(0, 1fr)); 
    }
    .sm-grid-cols-11 { 
        grid-template-columns: repeat(11, minmax(0, 1fr)); 
    }
    .sm-grid-cols-12 { 
        grid-template-columns: repeat(12, minmax(0, 1fr)); 
    }
    .sm-grid-cols-none { 
        grid-template-columns: none; 
    }

    /* margin */
    .sm-margin-0 {
        border: 0;
    }
    .sm-margin-y-12px {
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .sm-margin-t-40px {
        margin-top: 40px;
    }

    /* borders */
    .sm-border-0 {
        border: 0;
    }
    .sm-border {
        border: 1px solid var(--on-color-bg);
    }
    .sm-border-t {
        border-top: 1px solid var(--on-color-border);
    }
    .sm-border-b {
        border-bottom: 1px solid var(--on-color-border);
    }
    .sm-border-l {
        border-left: 1px solid var(--on-color-border);
    }
    .sm-border-r {
        border-right: 1px solid var(--on-color-border);
    }
    .sm-border-b-light {
        border-bottom: 1px solid var(--on-color-border-light);
    }

    /* padding */
    .sm-padding-0 {
        padding: 0;
    }
    .sm-padding-x-4px {
        padding-left: 4px;
        padding-right: 4px;
    }
    .sm-padding-y-6px {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .sm-padding-y-10px {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .sm-padding-y-12px {
        padding-top: 12px;
        padding-bottom: 12px;
    }
        
    /* width */
    .sm-w-full {
        width: 100%;
    }
    .sm-w-auto {
        width: auto;
    }

    /* min-height */
    .sm-min-h-0 {
        min-height: 0;
    }

    /* rounded */
    .sm-rounded-none {
        border-radius: 0;
    }
    .sm-rounded {
        border-radius: 5px;
    }

    /* backgrounds */
    .sm-bgd-transparent {
        background-color: transparent;
    }
    .sm-bgd-bg {
        background-color: var(--on-color-bg);
    }
    .sm-bgd-primary {
        background-color: var(--on-color-primary);
    }
    .sm-bgd-primary-hover:hover {
        background-color: var(--on-color-primary-hover);
    }
    .sm-bgd-info {
        background-color: var(--on-color-info);
    }
    .sm-bgd-info-hover:hover {
        background-color: var(--on-color-info-hover);
    }
    .sm-bgd-success {
        background-color: var(--on-color-success);
    }
    .sm-bgd-success-hover:hover {
        background-color: var(--on-color-success-hover);
    }
    .sm-bgd-warning {
        background-color: var(--on-color-warning);
    }
    .sm-bgd-warning-hover:hover {
        background-color: var(--on-color-warning-hover);
    }
    .sm-bgd-error {
        background-color: var(--on-color-error);
    }
    .sm-bgd-error-hover:hover {
        background-color: var(--on-color-error-hover);
    }

    /* text colors */
    .sm-txt-primary {
        color: var(--on-color-primary);
    }
    .sm-txt-primary-hover:hover {
        color: var(--on-color-primary-hover);
    }
    .sm-txt-info {
        color: var(--on-color-info);
    }
    .sm-txt-info-hover:hover {
        color: var(--on-color-info-hover);
    }
    .sm-txt-success {
        color: var(--on-color-success);
    }
    .sm-text-success-hover:hover {
        color: var(--on-color-success-hover);
    }
    .sm-txt-warning {
        color: var(--on-color-warning);
    }
    .sm-txt-warning-hover:hover {
        color: var(--on-color-warning-hover);
    }
    .sm-txt-error {
        color: var(--on-color-error);
    }
    .sm-txt-error-hover:hover {
        color: var(--on-color-error-hover);
    } 
    .sm-txt-white {
        color: #fff;
    }
    .sm-txt-white-hover {
        color: #fff;
    }
}

/* MD */
@media screen and (max-width: 1199px) {
    .md-static {
        position: static;
    }
    .md-relative {
        position: relative;
    }
    .md-absolute {
        position: absolute;
    }
    .md-fixed {
        position: fixed;
    }

    /* display */
    .md-hidden {
        display: none;
    }
    .md-flex {
        display: flex;
    }
    .md-inline-flex {
        display: inline-flex;
    }
    .md-block {
        display: block;
    }
    .md-inline-block {
        display: inline-block;
    }

    /* flex */
    .md-flex-row {
        flex-direction: row;
    }
    .md-flex-column {
        flex-direction: column;
    }
    .md-flex-wrap {
        flex-wrap: wrap;
    }
    .md-flex-nowrap {
        flex-wrap: nowrap;
    }

    .md-justify-start {
        justify-content: flex-start;
    }
    .md-justify-end {
        justify-content: flex-end;
    }
    .md-justify-center {
        justify-content: center;
    }
    .md-justify-between {
        justify-content: space-between;
    }
    .md-justify-around {
        justify-content: space-around;
    }
    .md-justify-evenly {
        justify-content: space-evenly;
    }

    .md-items-start {
        align-items: flex-start;
    }
    .md-items-end {
        align-items: flex-end;
    }
    .md-items-center {
        align-items: center;
    }
    .md-items-baseline {
        align-items: baseline;
    }
    .md-items-stretch {
        align-items: stretch;
    }

    .md-shrink {
        flex-shrink: 1;
    }
    .md-shrink-0 {
        flex-shrink: 0;
    }

    .md-gap-22px {
        gap: 22px;
    }
    .md-gap-80px {
        gap: 80px;
    }

    /* margin */
    .md-margin-0 {
        border: 0;
    }
    
    /* borders */
    .md-border-0 {
        border: 0;
    }
    .md-border {
        border: 1px solid var(--on-color-bg);
    }
    .md-border-t {
        border-top: 1px solid var(--on-color-border);
    }
    .md-border-b {
        border-bottom: 1px solid var(--on-color-border);
    }
    .md-border-l {
        border-left: 1px solid var(--on-color-border);
    }
    .md-border-r {
        border-right: 1px solid var(--on-color-border);
    }
    
    /* padding */
    .md-padding-0 {
        border: 0;
    }

    /* width */
    .md-w-full {
        width: 100%;
    }
    .md-w-auto {
        width: auto;
    }


    /* rounded */
    .md-rounded-none {
        border-radius: 0;
    }
    .md-rounded {
        border-radius: 5px;
    }

    /* backgrounds */
    .md-bgd-transparent {
        background-color: transparent;
    }
    .md-bgd-bg {
        background-color: var(--on-color-bg);
    }
    .md-bgd-primary {
        background-color: var(--on-color-primary);
    }
    .md-bgd-primary-hover:hover {
        background-color: var(--on-color-primary-hover);
    }
    .md-bgd-info {
        background-color: var(--on-color-info);
    }
    .md-bgd-info-hover:hover {
        background-color: var(--on-color-info-hover);
    }
    .md-bgd-success {
        background-color: var(--on-color-success);
    }
    .md-bgd-success-hover:hover {
        background-color: var(--on-color-success-hover);
    }
    .md-bgd-warning {
        background-color: var(--on-color-warning);
    }
    .md-bgd-warning-hover:hover {
        background-color: var(--on-color-warning-hover);
    }
    .md-bgd-error {
        background-color: var(--on-color-error);
    }
    .md-bgd-error-hover:hover {
        background-color: var(--on-color-error-hover);
    }

    /* text colors */
    .md-txt-primary {
        color: var(--on-color-primary);
    }
    .md-txt-primary-hover:hover {
        color: var(--on-color-primary-hover);
    }
    .md-txt-info {
        color: var(--on-color-info);
    }
    .md-txt-info-hover:hover {
        color: var(--on-color-info-hover);
    }
    .md-txt-success {
        color: var(--on-color-success);
    }
    .md-text-success-hover:hover {
        color: var(--on-color-success-hover);
    }
    .md-txt-warning {
        color: var(--on-color-warning);
    }
    .md-txt-warning-hover:hover {
        color: var(--on-color-warning-hover);
    }
    .md-txt-error {
        color: var(--on-color-error);
    }
    .md-txt-error-hover:hover {
        color: var(--on-color-error-hover);
    }
    .md-txt-white {
        color: #fff;
    }
    .md-txt-white-hover {
        color: #fff;
    }
}

/* LG */
@media screen and (max-width: 1250px) {
    .lg-hidden {
        display: none;
    }

    .lg-flex {
        display: flex !important;
    }

    .lg-gap-x-12px {
        column-gap: 12px;
    }
}