
/* Loader container */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  /* Loader animation */
  .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;
  }
  
  /* Loader spin animation */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
  ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
  
::-webkit-scrollbar-track {
    background: #aaaaaa; 
}
   
::-webkit-scrollbar-thumb {
    background: #444444; 
}
  
::-webkit-scrollbar-thumb:hover {
    background: #888888; 
}

body{
    user-select: none;
    -webkit-user-select: none;
}

input, textarea{
    padding: 0px;
}

.special-button{
    border: #111111 1px solid;
    background: #333333;
    border-radius: 3px;
    width: 31px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-content: center;
    transition-duration: 0.3s;
    flex-direction: column;
}

.special-button-image{
    position: relative;
    width: 20px;
    height: 20px;
    filter: brightness(2);
    left: -1px;
}

.special-button:hover{
    transition-duration: 0.2s;
    background: #555555;
}

.special-textbox{
    border: #111111 1px solid;
    background: #333333;
    border-radius: 3px;
    height: 28px;
    color: #ffffff;
}

.special-title{
    position: absolute;
    top:7px;
    font-size: 16px;
    color: #ffffff;
    left: 50%;
    transform: translate(-50%,0px);
    width: 250px;
    height: 16px;
    text-align: center;
    z-index: -5;
}

.special-slider {
    -webkit-appearance: none;
    transform: translate(0px,-9px);
    height: 4px;
    border-radius:2px;
    background: #770077;
    transition: opacity .2s;
}
  
.special-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius:50%;
    background: #999999;
    cursor: pointer;
}
  
.special-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius:50%;
    background: #999999;
    cursor: pointer;
}

.special-section{
    position: relative;
    left: 20%;
    height: 2px;
    background: #444444;
    width: 60%;
}