@media (max-width: 900px) {
    .topSpacerBig{
        margin-top:30px;
    }
    .topSpacer{
        margin-top:20px;
    }
    .topSpacerSmall{
        margin-top:10px;
    }
    .leftSpacer{
        margin-left:20px;
    }
    .rightSpacer{
        margin-right:20px;
    }
}
@media (min-width: 900px) {
    .topSpacerBigger{
        margin-top:50px;
    }
    .topSpacerBig{
        margin-top:30px;
    }
    .topSpacer{
        margin-top:20px;
    }
    .topSpacerSmall{
        margin-top:10px;
    }
    .topSpacerSmaller{
        margin-top:7px;
    }
    .leftSpacer{
        margin-left:20px;
    }
    .rightSpacer{
        margin-right:20px;
    }
    .rightSpacerBig{
        margin-right:30px;
    }
}

@media(max-width:900px){
    .bigAr{
        font-size:5vw !important;
    }
    .bigEn{
        font-size:5vw !important;
    }
    .mediumAr{
        font-size:3.8vw !important;
    }
    .mediumEn{
        font-size:4vw !important;
    }
    .smallAr{
        font-size:3vw !important;
    }
    .smallEn{
        font-size:3.5vw !important;
    }
    .tinyAr{
        font-size:2.6vw !important;
    }
    .tinyEn{
        font-size:2.6vw !important;
    }
}
@media(min-width:900px){
    .bigAr{
        font-size:1.5vw !important;
    }
    .bigEn{
        font-size:1.7vw !important;
    }
    .mediumAr{
        font-size:1.12vw !important;
    }
    .mediumEn{
        font-size:1.25vw !important;
    }
    .smallAr{
        font-size:1vw !important;
    }
    .smallEn{
        font-size:1.1vw !important;
    }
    .tinyAr{
        font-size:0.7vw !important;
    }
    .tinyEn{
        font-size:0.8vw !important;
    }
}

/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/

.black{
    color:#000!important
}
.blackBg{
    background:#000
}
.white{
    color:#FFF !important;
}
.whiteBg{
    background:#FFF;
}
.green{
    color:#93C123;
}
.greenBg{
    background:#93C123 !important;
}
.yellow{
    color:#FFFAD8;
}
.yellowBg{
    background:#FFFAD8;
}
.red{
    color:#F00;
}
.redBg{
    background:#F00;
}

/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/

a{
    color:#93C123 !important;
}
a:hover{
    color:#000 !important;
}
a.blackGreen{
    color:#000 !important;
}
a.blackGreen:hover{
    color:#93C123 !important;
}

a.greenBlack{
    color:#93C123 !important;
}
a.greenBlack:hover{
    color:#000 !important;
}

input[type="button"].greenBtn{
    border:0px;
    outline:none;
    padding:5px 20px;
    color:#000;
    background:#93C123;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/
/**********************************************************************************/

.textCenter{
    text-align:center;
}
.textRight{
    text-align:right;
}
.clickable{
    cursor:pointer;
}
.underline{
    text-decoration:underline;
}
.padding10{
    padding:10px;
}

*{
    scrollbar-width: thin;
    scrollbar-color: #CCCCCC #FFF;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
}
*::-webkit-scrollbar-track {
    background: #FFF;
}
*::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 20px;
    border: 3px solid #FFF;
}