select, input[type="text"]:not([disabled]), input[type="email"]:not([disabled]), input[type="password"]:not([disabled]), input[type="number"]:not([disabled]), 
input[type="date"]:not([disabled]), input[type="time"]:not([disabled]), input[type="file"]:not([disabled]), input[type="tel"]:not([disabled]), 
input[type="url"]:not([disabled]), textarea {
    background-color: #f8f8f875 !important;
}

.invalid-tab {
    border-color: #E11D48;
    color: #E11D48;
}

.nopadding tr td {
    padding: 0 !important;
    margin: 0 !important;
}

.upload-drop-zone {
    height: 200px;
    border-width: 2px;
    margin-bottom: 20px;
  }
  
  /* skin.css Style*/
  .upload-drop-zone {
    color: #ccc;
    border-style: dashed;
    border-color: #ccc;
    line-height: 200px;
    text-align: center
  }
  .upload-drop-zone.drop {
    color: #222;
    border-color: #222;
  }

.nopadding input {border:0;outline:0;}
.nopadding input:focus {outline:none!important;box-shadow:none}

.nopadding .input-group-text {border:0;outline:0;}

.title-line {
    width: 100%;
    text-align: left;
    line-height: 2px;
    margin: 20px 0 20px;
    background-color: #1F2937;
    margin-top: 40px;
    margin-bottom: 20px;
}

.title-line .line-title {
    color: white;
    background: #fff;
    padding: 0 10px;
    background-color: #1F2937;
}

.popover-header {
    color: white;
}

.container {
    padding: 50px 10%;
  }
   
  .box {
    position: relative;
    background: #ffffff;
    width: 100%;
  }
   
  .box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 10px;
  }
   
  .box-tools {
    position: absolute;
    right: 10px;
    top: 5px;
  }
   
  .dropzone-wrapper {
    border: 2px dashed #91b0b3;
    color: #92b0b3;
    position: relative;
    height: 200px;
  }
   
  .dropzone-desc {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;   
    text-align: center;
    width: 40%;
    top: 35%;
    font-size: 16px;
  }
   
  .dropzone,
  .dropzone:focus {
    position: absolute;
    outline: none !important;
    width: 100%;
    height: 150px;
    cursor: pointer;
    opacity: 0;
  }
   
  .dropzone-wrapper:hover,
  .dropzone-wrapper.dragover {
    background: #ecf0f5;
  }
   
  .preview-zone {
    text-align: center;
  }
   
  .preview-zone .box {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
  }
   
  /* .btn-primary {
    background-color: crimson;
    border: 1px solid #212121;
  } */

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    filter: invert(1);
  }

  #main-loading-screen {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.8);
    z-index: 9999;
    display: none;
}

#main-loading-screen::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%; 
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

@-webkit-keyframes spin {
	from { -webkit-transform:rotate(0deg); }
    to { -webkit-transform:rotate(360deg); }
}

@keyframes spin {
	from { transform:rotate(0deg); }
    to { transform:rotate(360deg); }
}