@font-face {font-family:'Nazanin';src:url('/font/Nazanin.ttf');}
@font-face {font-family:'Koodak';src:url('/font/Koodak.ttf');}
@font-face {font-family:'Poppins';src:url('/font/Poppins.ttf');}

:root {
    --bgClr: #1e1f23;
    --textClr1 : #ccc;
    --textClr2 : #777;
    --darkViolet1 : #2c2e3b;
    --darkViolet1Op1 : #2c2e3bc0;
    --darkViolet1Op2 : #2c2e3b7c;
    --darkViolet2 : #4c3f70;
    --lightViolet1 : #56477f;
}

body,
html {
    margin: 0;
    padding: 0;
    background-color: var(--bgClr);
    scroll-behavior: smooth;
    min-width: 300px;
}
a{
    text-decoration: none !important;
}
img{
    margin: 0;
}
button{
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: unset;
}
*{
    padding: 0;
    margin: 0;
    -webkit-user-select: none;
    -ms-user-select: none; 
    user-select: none; 
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

/* ---------------------- fonts */
.faFont{
    font-family: "Koodak",Arial, Helvetica, sans-serif !important;
    font-weight: 500 !important;
}
.enFont{
    font-family: "Poppins",Arial, Helvetica, sans-serif !important;
}
.titrFont{
    font-family: "Nazanin",Arial, Helvetica, sans-serif !important;
    font-weight: 900 !important;
}
.textSizeHuge{
    font-size: 1.5rem;
}
.textSize1{
    font-size: 1.25rem;
}
.textSize2{
    font-size: 1.1rem;
}
.textSize3{
    font-size: .97rem;
}
.textSize4{
    font-size: .93rem;
}
.hideText{
    font-size: 0;
    color: transparent;
}
/* colors */
.textClr1{
    color: var(--textClr1);
}
.textClr2{
    color: var(--textClr2);
}
.darkViolet1{
    color: var(--darkViolet1);
}
.darkViolet2{
    color: var(--darkViolet2);
}
.lightViolet1{
    color: var(--lightViolet1);
}
/* display */
.flex{
    display: -webkit-flex;
    display: flex;
}
.activeFlex{
    display: -webkit-flex !important; 
    display: flex !important;
}
.flexCol{
    flex-direction: column;
}
.justifyBetween{
    justify-content: space-between;
}
.alignCenter{
    align-items: center;
}
.gap5{
    gap: 5px;
}
.gap10{
    gap: 10px;
}
.gap15{
    gap: 15px;
}
.gap20{
    gap: 20px;
}
.flexCenter{
    justify-content: center;
    align-items: center;
}
.grid{
    display: -ms-grid ;
    display: -moz-grid ;
    display: grid ;
}
.activeGrid{
    display: -ms-grid !important;
    display: -moz-grid !important;
    display: grid !important;
}
/* styles */
.container{
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}
.rtl{
    direction: rtl;
}
.ltr {
    direction: ltr;
}
.btn{
    border-radius: 7px;
    background-color: var(--darkViolet1);
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
}
.imageFit{
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.mar15{
    margin-top: 15px;
}
.mar25{
    margin-top: 25px;
}
/* scrollbar */
.hideScrollBar::-webkit-scrollbar{
    display: none;
}
.hideScrollBar{
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
html::-webkit-scrollbar,body::-webkit-scrollbar {
    width: 7px;
}
html::-webkit-scrollbar-track,body::-webkit-scrollbar-track {
    background: #2c2e3bc0; 
}

html::-webkit-scrollbar-thumb,body::-webkit-scrollbar-thumb {
    background: #56477f; 
}

html::-webkit-scrollbar-thumb:hover,body::-webkit-scrollbar-thumb:hover {
    background: #4c3f70; 
}



/* animation */
@keyframes  toBottom {
    from{
        opacity: 0;
        transform: translateY(-150px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes  toLeft {
    from{
        opacity: 0;
        transform: translateX(-150px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes  blank {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media screen and (min-width:769px) {
    .container{
        max-width: 1100px;
    }
}
@media screen and (min-width:968px) {
    body,
    html {
        font-size: 18px;
    }
}