  span.file-input-wrap {
    position: relative;
    display: inline-block;
    border: 1px solid #eee;
    border-radius: 1px;
    padding: 3px 9px;
    line-height: 1.9;
  font-size: 12px;
}
span.file-input-wrap .img-info{
  display: block;
    text-align: center;
    color: #48CA48;
    font-weight: 600;
}
span.file-input-wrap i{
  font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
}
span.file-input-wrap input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    cursor: pointer;
}

.hide-info {
    display: none;
}

.hidden {
    display: none !important;
}

.preview-image {
    height: 35px;
    max-width: 100%;
/*    width: 100%;
*/    border: 1px solid #eee;
    /*border-radius: 50%;*/
}

  /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 25px;
    width: 25px;
    left: 0px;
    bottom: 0px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.note-editing-area, .note-editor {
    min-height: 400px !important;
}

.note-editable { 
    font-family: 'Lato','Poppins' !important;
}

.note-editor {
  width: 100% !important;
}



.preview-image-panel {
    width: auto;
    height: auto;
    max-width: 50%;
    max-height: 100%;
    border: 1px solid #eee;
}