@font-face {
    font-family: 'mainFontFamily';
    src: url('../assets/fonts/alfont_com_GE-Dinar-One-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


* {
    font-family:  'mainFontFamily', sans-serif;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-decoration: none;
    direction: rtl;
    margin: 0;
}

html::-webkit-scrollbar {
    display: none; 
}

body{
    background-color: var(--light-color); 
    overflow-x: hidden;
}

button{
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.content {
    display: none; 
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9f9;
    position: absolute; 
    z-index: 1000; 
    max-width: 300px;
    color: var(--secondary-color);
}
.hoverContent {
    position: relative;
    z-index: 2; 
}
.error-message{
    color: red;
}

.error-input{
    border:1px solid red;
}

.rotated {
    transform: rotate(180deg);
}

a{
    cursor: pointer;
}

.hide {
    display: none;
}

.w100{
    width: 100%;
}

.w50{
    width: 50%;
}

.h100{
    height: 100%;
}

.h100v{
    height: 100vh;
}

.pR{
    position: relative;
}

.pA{
    position: absolute;
}

.pF{
    position: fixed;
}

.dB{
    display: block;
}

.dF{
    display: flex;
    align-items: center;
    justify-content: center;
}

.dCSa{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.dCSb{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dSSa{
    display: flex;
    align-items: start;
    justify-content: space-around;
}

.dSSb{
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.dF-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dCSa-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.dCSb-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.dSSa-col {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
}

.dSSb-col {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}