.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1c1b1d;
    z-index: 10000000; 
}

.mobile-menu.open {
    display: block;
}

.close-menu {
    cursor: pointer;
    color: #fff;
}
 
.spinner {
    border: 2px solid rgba(0, 0, 0, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    animation: spin 1s linear infinite;
    position: relative; 
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

h3 {
    font-size: 16px !important;
}

.gh-description .ql-ui {
    display: none !important;
}

.gh-description li[data-list="bullet"] {
    list-style-type: disc !important; 
    margin-left: 20px;
}

.gh-description li[data-list="ordered"] {
    list-style-type: decimal !important;
    margin-left: 20px;
}