/* Font Size */
.fontBold {
    font-weight: bold;
}
.fontBold-100 {
    font-weight: 100;
}
.fontBold-200 {
    font-weight: 200;
}
.fontBold-300 {
    font-weight: 300;
}
.fontBold-400 {
    font-weight: 400;
}
.fontBold-500 {
    font-weight: 500;
}
.fontBold-600 {
    font-weight: 600;
}
.fontBold-700 {
    font-weight: 700;
}
.fontBold-800 {
    font-weight: 800;
}
.fontBold-900 {
    font-weight: 900;
}
.mobile-disktop-font {
    font-size: 15px;
    /* white-space: nowrap; */
}

@media (max-width: 770px) {
    .mobile-disktop-font {
        font-size: 10px;
        /* white-space: nowrap; */
    }
    .isdisktop {
        display: none;
    }
}

@media (max-width: 508px) {
    .mobile-disktop-font {
        font-size: 8px;
        /* white-space: nowrap; */
    }
}
/* End Font Size */



/* Scrolll */
*::-webkit-scrollbar {
    width: 15px !important;
    height: 6px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    width: 6px;
    cursor: pointer;
    border-radius: 10px;
    background-color: var(--primary);
    background-image: -webkit-linear-gradient(45deg,rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}
.scroll-hidden {
    overflow: hidden;
}

.scroll-auto {
    overflow: auto;
}

.scroll-show {
    overflow: scroll;
}
/* End Scroll */


/* Z- Index */
.index-1 {
    z-index: 9;
}

.index-2 {
    z-index: 99;
}

.index-3 {
    z-index: 999;
}

.index-4 {
    z-index: 9999;
}

.index-5 {
    z-index: 99999;
}
/* End Z- Index */

/* Start Hover scal */
.t-scale-1:hover{
    transform: scale(1.1);
}
.t-scale-2:hover{
    transform: scale(1.2);
}
.t-scale-3:hover{
    transform: scale(1.3);
}
.t-scale-4:hover{
    transform: scale(1.4);
}
/* End Hover scal */

/* Start Words Font */
.word-no-wrap {
    white-space: nowrap;
}
.word-wrap {
    white-space: break-spaces;
}
.word-normal {
    white-space: normal;
}
/* End Words Font */