.cnt{
    justify-content: center;
}
.acnt{
    align-items: center;
}
.talign-c{
    text-align: center;
}
.talign-e{
    text-align: end;
}
.talign-s{
    text-align: start;
}
.fixed{
    position: fixed;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.sticky{
    position: sticky;
    position: -webkit-sticky;
}
.static{
    position: static;
}
.flx{
    display: flex;
}
.none{
    display: none;
}
.mnone{
    display: none;
}
.align{
    align-items: center;
}
.lft{
    justify-content: left;
}
.rit{
    justify-content: right;
}
.blk{
    display: block;
}
.flt_lft{
    float: left;
}
.flt_rit{
    float: right;
}
.gap{
    gap: 3px;
}
.pointer{
    cursor: pointer;
}
.clear{
    clear: both;
}
.number::-webkit-inner-spin-button{
    display: none;
}
.bold{
    font-weight: bold;
}




/* size */
.small{
    font-size: 0.5em;
}



/* animations */

.spin-linear{
    animation: spin 0.5s linear infinite;
}
.spin-ease{
    animation: spin 0.5s ease infinite;
}
.spin-ease-out{
    animation: spin 0.5s ease-out infinite;
}
.spin-ease-in{
    animation: spin 0.5s ease-in infinite;
}
.spin-ease-in-out{
    animation: spin 0.5s ease-in-out infinite;
}
@keyframes spin{
    from{
        transform: rotatez(-360deg);
    }
}








 /* colors */

 .color-red{
    color: red;
 }
 .color-white{
    color: #fff;
 }
 .color-gold{
    color: gold;
 }
 .color-green{
    color: green;
 }
 .color-black{
    color: black;
 }
 .color-yellow{
    color: yellow;
 }
 .color-blue{
    color: blue;
 }
 .color-orange{
    color: orange;
 }
 .color-orangered{
    color: orangered;
 }





 .bg-red{
    background: red;
 }
 .bg-green{
    background: green;
 }
 .ba-yellow{
    background: yellow;
 }
 .bg-blue{
    background: blue;
 }
 .bg-orange{
    background: orange;
 }
 .bg-black{
    background: black;
 }