
/* Customize your RTE's appearance here */

.hidden {
    display: none;
   }
.editor {
    width: 100%;
    height: 500px;
}
.tox-tinymce{
  width: 100%;
  
}

#req_message_ifr {
    border: 1px solid grey !important;
}


#invoice-editor_ifr {
    border: 1px solid grey !important;
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    z-index: 9999; /* Ensure it's above other content */
    display: none; /* Initially hidden */
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite; /* Spin animation */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px; /* Half of the loader's height */
    margin-left: -60px; /* Half of the loader's width */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

