
/* =============
   Form
============= */
/* Form components */
label {
    font-weight: 500;
    font-family: "Sarabun", sans-serif;
  }

  textarea.form-control {
    min-height: 90px;
  }

  .form-control {
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 14px;
    height: 38px;
    max-width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
  }

  .form-control:focus {
    border: 1px solid #aaaaaa;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 !important;
  }

  .input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
  }

  .input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
  }

  .form-horizontal .form-group {
    margin-left: -10px;
    margin-right: -10px;
  }

  .form-control-feedback {
    line-height: 38px !important;
  }

  .input-group-btn .btn {
    padding: 8px 12px;
  }

  .input-group-btn .btn-sm {
    padding: 5px 10px;
  }

  .input-group-btn .btn-lg {
    padding: 10px 17px;
  }

  .has-success .checkbox, .has-success .checkbox-inline,
  .has-success .control-label, .has-success .help-block,
  .has-success .radio, .has-success .radio-inline,
  .has-success.checkbox label, .has-success.checkbox-inline label,
  .has-success.radio label, .has-success.radio-inline label,
  .has-success .form-control-feedback {
    color: #4bd396;
  }

  .has-warning .checkbox, .has-warning .checkbox-inline,
  .has-warning .control-label, .has-warning .help-block,
  .has-warning .radio, .has-warning .radio-inline,
  .has-warning.checkbox label, .has-warning.checkbox-inline label,
  .has-warning.radio label, .has-warning.radio-inline label,
  .has-warning .form-control-feedback {
    color: #f9c851;
  }

  .has-error .checkbox, .has-error .checkbox-inline,
  .has-error .control-label, .has-error .help-block,
  .has-error .radio, .has-error .radio-inline,
  .has-error.checkbox label, .has-error.checkbox-inline label,
  .has-error.radio label, .has-error.radio-inline label,
  .has-error .form-control-feedback {
    color: #f5707a;
  }

  .has-success .form-control {
    border-color: #4bd396;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  .has-warning .form-control {
    border-color: #f9c851;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  .has-error .form-control {
    border-color: #f5707a;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  .input-group-text {
    border-radius: 2px;
    border: 1px solid #eeeeee;
  }



/* =============
   Form validation
============= */
.parsley-error {
    border-color: #f5707a !important;
  }

  .parsley-errors-list {
    display: none;
    margin: 0;
    padding: 0;
  }

  .parsley-errors-list.filled {
    display: block;
  }

  .parsley-errors-list > li {
    font-size: 12px;
    list-style: none;
    color: #f5707a;
    margin-top: 5px;
  }



/* =============
   Form Advanced
============= */
/* Bootstrap tagsinput */
.bootstrap-tagsinput {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 5px 7px 5px;
    width: 100%;
    border: 1px solid #e3e3e3;
  }

  .bootstrap-tagsinput .badge-info {
    background-color: #7fc1fc !important;
    display: inline-block;
    padding: 5px;
    margin: 3px 1px;
  }

  /* CSS Switch */
  input[data-switch] {
    display: none;
  }

  input[data-switch] + label {
    font-size: 1em;
    line-height: 1;
    width: 56px;
    height: 24px;
    background-color: #ddd;
    background-image: none;
    border-radius: 2rem;
    padding: 0.16667rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    font-family: inherit;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }

  input[data-switch] + label:before {
    color: #313a46;
    content: attr(data-off-label);
    display: block;
    font-family: inherit;
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
    position: absolute;
    right: 2px;
    margin: 0.21667rem;
    top: 0;
    text-align: center;
    min-width: 1.66667rem;
    overflow: hidden;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }

  input[data-switch] + label:after {
    content: '';
    position: absolute;
    left: 3px;
    top: 2px;
    background-color: #f7f7f7;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 2rem;
    height: 20px;
    width: 20px;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }

  input[data-switch]:checked + label {
    background-color: #7fc1fc;
  }

  input[data-switch]:checked + label:before {
    color: #ffffff;
    content: attr(data-on-label);
    right: auto;
    left: 2px;
  }

  input[data-switch]:checked + label:after {
    left: 33px;
    background-color: #f7f7f7;
  }

  input[data-switch="bool"] + label {
    background-color: #f5707a;
  }

  input[data-switch="bool"] + label:before, input[data-switch="bool"]:checked + label:before,
  input[data-switch="default"]:checked + label:before {
    color: #ffffff !important;
  }

  input[data-switch="bool"]:checked + label {
    background-color: #4bd396;
  }

  input[data-switch="default"]:checked + label {
    background-color: #a2a2a2;
  }

  input[data-switch="primary"]:checked + label {
    background-color: #188ae2;
  }

  input[data-switch="success"]:checked + label {
    background-color: #4bd396;
  }

  input[data-switch="info"]:checked + label {
    background-color: #3ac9d6;
  }

  input[data-switch="warning"]:checked + label {
    background-color: #f9c851;
  }

  input[data-switch="inverse"]:checked + label {
    background-color: #3b3e47;
  }

  input[data-switch="pink"]:checked + label {
    background-color: #F06292;
  }

  input[data-switch="purple"]:checked + label {
    background-color: #6b5fb5;
  }

  input[data-switch="orange"]:checked + label {
    background-color: #ff9800;
  }

  input[data-switch="brown"]:checked + label {
    background-color: #8d6e63;
  }

  input[data-switch="teal"]:checked + label {
    background-color: #26a69a;
  }

  /* Button Switch css */
  .btn-switch {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  .btn-switch > input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    left: -100%;
    top: -100%;
  }

  .btn-switch > input[type="checkbox"] + .btn {
    background-color: transparent !important;
    border-color: #7fc1fc;
    color: #7fc1fc !important;
  }

  .btn-switch > input[type="checkbox"] + .btn > em {
    display: inline-block;
    border: 1px solid #7fc1fc;
    border-radius: 50%;
    padding: 2px;
    margin: 0 4px 0 0;
    top: 1px;
    font-size: 10px;
    text-align: center;
  }

  .btn-switch > input[type="checkbox"] + .btn > em:before {
    opacity: 0;
  }

  .btn-switch > input[type="checkbox"]:checked + .btn {
    background-color: #7fc1fc !important;
    color: #ffffff !important;
  }

  .btn-switch > input[type="checkbox"]:checked + .btn > em {
    background-color: #ffffff;
    color: #7fc1fc !important;
  }

  .btn-switch > input[type="checkbox"]:checked + .btn > em:before {
    opacity: 1;
  }

  .btn-switch-primary > input[type="checkbox"] + .btn,
  .btn-switch-primary > input[type="checkbox"]:checked + .btn > em {
    color: #188ae2 !important;
  }

  .btn-switch-primary > input[type="checkbox"] + .btn,
  .btn-switch-primary > input[type="checkbox"] + .btn > em {
    border-color: #188ae2 !important;
  }

  .btn-switch-primary > input[type="checkbox"]:checked + .btn {
    background-color: #188ae2 !important;
  }

  .btn-switch-success > input[type="checkbox"] + .btn,
  .btn-switch-success > input[type="checkbox"]:checked + .btn > em {
    color: #4bd396 !important;
  }

  .btn-switch-success > input[type="checkbox"] + .btn,
  .btn-switch-success > input[type="checkbox"] + .btn > em {
    border-color: #4bd396 !important;
  }

  .btn-switch-success > input[type="checkbox"]:checked + .btn {
    background-color: #4bd396 !important;
  }

  .btn-switch-info > input[type="checkbox"] + .btn,
  .btn-switch-info > input[type="checkbox"]:checked + .btn > em {
    color: #3ac9d6 !important;
  }

  .btn-switch-info > input[type="checkbox"] + .btn,
  .btn-switch-info > input[type="checkbox"] + .btn > em {
    border-color: #3ac9d6 !important;
  }

  .btn-switch-info > input[type="checkbox"]:checked + .btn {
    background-color: #3ac9d6 !important;
  }

  .btn-switch-warning > input[type="checkbox"] + .btn,
  .btn-switch-warning > input[type="checkbox"]:checked + .btn > em {
    color: #f9c851 !important;
  }

  .btn-switch-warning > input[type="checkbox"] + .btn,
  .btn-switch-warning > input[type="checkbox"] + .btn > em {
    border-color: #f9c851 !important;
  }

  .btn-switch-warning > input[type="checkbox"]:checked + .btn {
    background-color: #f9c851 !important;
  }

  .btn-switch-danger > input[type="checkbox"] + .btn,
  .btn-switch-danger > input[type="checkbox"]:checked + .btn > em {
    color: #f5707a !important;
  }

  .btn-switch-danger > input[type="checkbox"] + .btn,
  .btn-switch-danger > input[type="checkbox"] + .btn > em {
    border-color: #f5707a !important;
  }

  .btn-switch-danger > input[type="checkbox"]:checked + .btn {
    background-color: #f5707a !important;
  }

  .btn-switch-inverse > input[type="checkbox"] + .btn,
  .btn-switch-inverse > input[type="checkbox"]:checked + .btn > em {
    color: #3b3e47 !important;
  }

  .btn-switch-inverse > input[type="checkbox"] + .btn,
  .btn-switch-inverse > input[type="checkbox"] + .btn > em {
    border-color: #3b3e47 !important;
  }

  .btn-switch-inverse > input[type="checkbox"]:checked + .btn {
    background-color: #3b3e47 !important;
  }

  .btn-switch-pink > input[type="checkbox"] + .btn,
  .btn-switch-pink > input[type="checkbox"]:checked + .btn > em {
    color: #F06292 !important;
  }

  .btn-switch-pink > input[type="checkbox"] + .btn,
  .btn-switch-pink > input[type="checkbox"] + .btn > em {
    border-color: #F06292 !important;
  }

  .btn-switch-pink > input[type="checkbox"]:checked + .btn {
    background-color: #F06292 !important;
  }

  .btn-switch-purple > input[type="checkbox"] + .btn,
  .btn-switch-purple > input[type="checkbox"]:checked + .btn > em {
    color: #6b5fb5 !important;
  }

  .btn-switch-purple > input[type="checkbox"] + .btn,
  .btn-switch-purple > input[type="checkbox"] + .btn > em {
    border-color: #6b5fb5 !important;
  }

  .btn-switch-purple > input[type="checkbox"]:checked + .btn {
    background-color: #6b5fb5 !important;
  }

  .btn-switch-orange > input[type="checkbox"] + .btn,
  .btn-switch-orange > input[type="checkbox"]:checked + .btn > em {
    color: #ff9800 !important;
  }

  .btn-switch-orange > input[type="checkbox"] + .btn,
  .btn-switch-orange > input[type="checkbox"] + .btn > em {
    border-color: #ff9800 !important;
  }

  .btn-switch-orange > input[type="checkbox"]:checked + .btn {
    background-color: #ff9800 !important;
  }

  .btn-switch-brown > input[type="checkbox"] + .btn,
  .btn-switch-brown > input[type="checkbox"]:checked + .btn > em {
    color: #8d6e63 !important;
  }

  .btn-switch-brown > input[type="checkbox"] + .btn,
  .btn-switch-brown > input[type="checkbox"] + .btn > em {
    border-color: #8d6e63 !important;
  }

  .btn-switch-brown > input[type="checkbox"]:checked + .btn {
    background-color: #8d6e63 !important;
  }

  .btn-switch-teal > input[type="checkbox"] + .btn,
  .btn-switch-teal > input[type="checkbox"]:checked + .btn > em {
    color: #26a69a !important;
  }

  .btn-switch-teal > input[type="checkbox"] + .btn,
  .btn-switch-teal > input[type="checkbox"] + .btn > em {
    border-color: #26a69a !important;
  }

  .btn-switch-teal > input[type="checkbox"]:checked + .btn {
    background-color: #26a69a !important;
  }

  /* Multiple select */
  .search-input {
    margin-bottom: 10px;
  }

  .ms-container {
    background: transparent url("../../../plugins/multiselect/img/multiple-arrow.png") no-repeat 50% 50%;
    width: 100% !important;
    max-width: 360px !important;
  }

  .ms-container .ms-list {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid rgba(49, 58, 70, 0.2);
  }

  .ms-container .ms-list.ms-focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid rgba(49, 58, 70, 0.4);
  }

  .ms-container .ms-selectable {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none !important;
  }

  .ms-container .ms-selectable li.ms-elem-selectable {
    border: none;
    padding: 5px 10px;
  }

  .ms-container .ms-selectable li.ms-hover {
    background-color: #7fc1fc;
  }

  .ms-container .ms-selection li.ms-elem-selection {
    border: none;
    padding: 5px 10px;
  }

  .ms-container .ms-selection li.ms-hover {
    background-color: #7fc1fc;
  }

  /* Select 2 */
  .select2-container {
    width: 100% !important;
  }

  .select2-container .select2-selection--single {
    border: 1px solid #E3E3E3 !important;
    height: 38px !important;
  }

  .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
    padding-left: 12px !important;
  }

  .select2-container .select2-selection--single .select2-selection__arrow {
    height: 34px;
    width: 34px;
    right: 3px;
  }

  .select2-container .select2-selection--single .select2-selection__arrow b {
    border-color: #999 transparent transparent transparent;
    border-width: 6px 6px 0 6px;
  }

  .select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #999 transparent !important;
    border-width: 0 6px 6px 6px !important;
  }

  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #7fc1fc;
  }

  .select2-results__option {
    padding: 6px 12px;
  }

  .select2-dropdown {
    border: 1px solid #e3e3e3 !important;
    padding-top: 5px;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
  }

  .select2-search input {
    border: 1px solid #e3e3e3 !important;
  }

  .select2-container .select2-selection--multiple {
    min-height: 38px !important;
    border: 1px solid #e3e3e3 !important;
  }

  .select2-container .select2-selection--multiple .select2-selection__rendered {
    padding: 2px 10px;
  }

  .select2-container .select2-selection--multiple .select2-search__field {
    margin-top: 7px;
    border: 0 !important;
  }

  .select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 1px;
    padding: 0 7px;
  }

  /* AUTOCOMPLETE */
  .autocomplete-suggestions {
    border: 1px solid #f9f9f9;
    background: #ffffff;
    cursor: default;
    overflow: auto;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
  }

  .autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
  }

  .autocomplete-no-suggestion {
    padding: 2px 5px;
  }

  .autocomplete-selected {
    background: rgba(152, 166, 173, 0.3);
    cursor: pointer;
  }

  .autocomplete-suggestions strong {
    font-weight: bold;
    color: #313a46;
  }

  .autocomplete-group {
    padding: 2px 5px;
  }

  .autocomplete-group strong {
    font-weight: bold;
    font-size: 16px;
    color: #313a46;
    display: block;
  }

  /* Bootstrap-select */
  .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100% !important;
  }

  .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
  }

  .bootstrap-select .dropdown-menu .dropdown-item.active, .bootstrap-select .dropdown-menu .dropdown-item:active {
    background: #7fc1fc;
  }

  .dropify-wrapper {
    border: 2px dashed #eeeeee;
  }

  /* Bootstrap-touchSpin */
  .bootstrap-touchspin .input-group-btn-vertical i {
    top: 4px;
    left: 8px;
  }

/* =============
   Form picker
============= */
.bootstrap-timepicker-widget table td input {
    border: 1px solid rgba(49, 58, 70, 0.3);
    width: 35px;
  }

  .datepicker > div {
    display: block;
  }

  .datepicker-dropdown {
    padding: 10px !important;
  }

  .datepicker td, .datepicker th {
    width: 30px;
    height: 30px;
  }

  .datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover,
  .datepicker table tr td.active.disabled:hover,
  .datepicker table tr td.active.disabled:hover:hover,
  .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active,
  .datepicker table tr td.active.disabled:active,
  .datepicker table tr td.active.disabled:hover:active,
  .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active,
  .datepicker table tr td.active.disabled.active,
  .datepicker table tr td.active.disabled:hover.active,
  .datepicker table tr td.active.disabled,
  .datepicker table tr td.active:hover.disabled,
  .datepicker table tr td.active.disabled.disabled,
  .datepicker table tr td.active.disabled:hover.disabled,
  .datepicker table tr td.active[disabled], .datepicker table tr td.active:hover[disabled],
  .datepicker table tr td.active.disabled[disabled],
  .datepicker table tr td.active.disabled:hover[disabled],
  .datepicker table tr td.selected, .datepicker table tr td.selected:hover,
  .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover {
    background-color: #7fc1fc !important;
    color: #ffffff !important;
    background-image: none !important;
    text-shadow: none !important;
  }

  .datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
    background-color: #4bd396 !important;
    color: #ffffff !important;
    background-image: none !important;
  }

  .datepicker-inline {
    border: 2px solid rgba(49, 58, 70, 0.1);
  }

  .daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #7fc1fc;
  }

  .daterangepicker .input-mini.active {
    border: 1px solid rgba(49, 58, 70, 0.3);
  }

  .daterangepicker .ranges li {
    border-radius: 2px;
    color: #313a46;
    font-weight: 600;
    font-size: 12px;
    font-family: "Sarabun", sans-serif;
  }

  .daterangepicker select.hourselect, .daterangepicker select.minuteselect,
  .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
    border: 1px solid rgba(49, 58, 70, 0.3);
    padding: 2px;
    width: 60px;
  }

  .daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
    background-color: #7fc1fc;
    border: 1px solid #7fc1fc;
    color: #ffffff;
  }

  /* =============
     Form wizard
  ============= */
  .wizard > .content {
    background: #ffffff;
    min-height: 240px;
    padding: 20px !important;
    margin-top: 10px !important;
  }

  .wizard > .content > .body {
    padding: 0px;
    position: relative;
    width: 100%;
  }

  .wizard > .content > .body input {
    border: 1px solid #e9e9e9;
  }

  .wizard > .content > .body ul > li {
    display: block;
    line-height: 30px;
  }

  .wizard > .content > .body label.error {
    color: #f5707a;
    margin-left: 0;
    margin-top: 5px;
    font-size: 12px;
  }

  .wizard > .content > .body label {
    display: inline-block;
    margin-top: 10px;
  }

  .wizard > .steps a {
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    font-family: "Sarabun", sans-serif;
  }

  .wizard > .steps .number {
    font-size: 54px;
    line-height: 78px;
    font-family: "Sarabun", sans-serif;
    position: absolute;
    left: 10px;
    top: -14px;
    opacity: 0.1;
  }

  .wizard > .steps .disabled a {
    background: #f3f3f3;
    color: #3c4655 !important;
    cursor: default;
    border: 1px solid #e6e6e6;
  }

  .wizard > .steps .disabled a:hover {
    background: #e6e6e6;
    border: 1px solid #dadada;
  }

  .wizard > .steps .disabled a:active {
    background: #e6e6e6;
    border: 1px solid #dadada;
  }

  .wizard > .steps .current a {
    background: #7fc1fc;
  }

  .wizard > .steps .current a:hover {
    background: #7fc1fc;
  }

  .wizard > .steps .current a:hover .number {
    color: #ffffff;
    opacity: 0.4;
  }

  .wizard > .steps .current a:active {
    background: #7fc1fc;
  }

  .wizard > .steps .current a:active .number {
    color: #ffffff;
    opacity: 0.4;
  }

  .wizard > .steps .current a .number {
    color: #ffffff;
    opacity: 0.4;
  }

  .wizard > .steps .done a {
    background: #f3f3f3 !important;
    color: #3c4655 !important;
  }

  .wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active, .wizard > .content {
    border-radius: 2px;
    position: relative;
  }

  .wizard > .actions {
    margin-top: 15px !important;
  }

  .wizard > .actions a {
    background: #7fc1fc;
    border-radius: 2px !important;
    color: #ffffff;
  }

  .wizard > .actions a:hover {
    background: #349dfa;
    color: #ffffff;
  }

  .wizard > .actions a:active {
    background: #349dfa;
    color: #ffffff;
  }

  .wizard > .actions .disabled a {
    background: #ffffff;
    color: #313a46;
    cursor: default;
    border: 1px solid #eaeaea;
  }

  .wizard > .actions .disabled a:hover {
    background: #f3f3f3;
    color: #313a46;
    cursor: default;
    border: 1px solid #eaeaea;
  }

  .wizard > .actions .disabled a:active {
    background: #f3f3f3;
    color: #313a46;
    cursor: default;
    border: 1px solid #eaeaea;
  }

  .wizard.vertical > .content {
    margin-top: 0px !important;
  }

  @media (max-width: 560px) {
    .wizard.vertical > .steps, .wizard.vertical > .content {
      width: 100%;
    }
  }

  /* =============
     Form editor
  ============= *


  /* Summernote */
  .note-editor {
    position: relative;
  }

  .note-editor .btn-light {
    background-color: transparent;
    border-color: transparent !important;
  }

  .note-editor .btn-group-sm > .btn, .note-editor .btn-sm {
    padding: 8px 12px !important;
  }

  .note-editor .note-toolbar {
    background-color: #f3f3f3;
    border-bottom: 1px solid #eeeeee;
    margin: 0;
  }

  .note-editor .note-statusbar {
    background-color: #ffffff;
  }

  .note-editor .note-statusbar .note-resizebar {
    border-top: none;
    height: 15px;
    padding-top: 3px;
  }

  .note-editor .note-status-output {
    display: block;
  }

  .note-editor.note-frame {
    border: 1px solid #eeeeee !important;
  }

  .note-popover .popover .popover-content {
    padding: 5px 0 10px 5px;
  }

  .note-popover .btn-light {
    background-color: transparent;
    border-color: transparent !important;
  }

  .note-popover .btn-group-sm > .btn, .note-popover .btn-sm {
    padding: 8px 12px !important;
  }

  .note-toolbar {
    padding: 5px 0 10px 5px;
  }

  /* Wysiwig css */
  .mce-panel {
    border: 1px solid #f3f3f3 !important;
    background-color: #f3f3f3 !important;
  }

  .mce-menu {
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 0px 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0px 0 rgba(0, 0, 0, 0.02);
            box-shadow: 0 0px 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0px 0 rgba(0, 0, 0, 0.02);
  }

  .mce-menubar .mce-menubtn:hover, .mce-menubar .mce-menubtn.mce-active, .mce-menubar .mce-menubtn:focus {
    border-color: #f3f3f3 !important;
  }

  .mce-menu-item:hover, .mce-menu-item.mce-selected, .mce-menu-item:focus, .mce-menu-item-normal.mce-active,
  .mce-primary {
    background-color: #7fc1fc !important;
  }

  .mce-window-head .mce-title {
    font-family: "Sarabun", sans-serif;
  }

  .mce-window {
    padding: 20px !important;
  }

  .mce-window-head {
    padding-bottom: 20px !important;
    border-bottom: 0 !important;
  }
