.mr-1 {
    margin-right: 1rem;
}

.ml-2 {
    margin-left: 1rem;
}

.col-form-label {
    font-weight: 900;
}

.sidebar .nav .nav-item.active > .nav-link {
    background: #52c64e !important;
}

.sidebar .nav .nav-item > .nav-link:hover {
    background: #52c64e !important;
}

.btn.btn-primary.btn-rounded.btn-icon {
    background: #52c64e !important;
}

/* Create Movie Styles */
.preview_img {
    width: 100%;
    max-height: 40vh;
    border-radius: 3%;
}

/* Select2 Styles  */

li.select2-selection__choice {
    background: rgb(197, 191, 191) !important;
    font-size: 0.8rem !important;
}

select.form-control, select.asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row select, .select2-container--default select.select2-selection--single, .select2-container--default .select2-selection--single select.select2-search__field, select.typeahead, select.tt-query, select.tt-hint {
    color: rgb(32, 29, 29) !important;
}

/* Switch Model Dialog */
.modal-content{
    background: #fff !important;
  }

  .modal-body{
    margin: 10px 0 !important;
  }

  .payment_image{
      width: 100px !important;
      height: 100px !important;
      border-radius: 0 !important;
  }

  /* Start Active Button  */

  .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;
  }

  .switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }

  .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: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      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%;
  }

  /* End Active Button  */