/* FONT */
body {
  font-family: 'Varela', Arial, sans-serif !important;
  background-color: #f4f8fc;
}

.shadow-alt-1 {
  box-shadow: 0 10px 25px 0 rgba(68, 96, 103, 0.1);
}

.shadow-alt {
  box-shadow: 0 10px 25px 0 rgba(68, 96, 103, 0.2);
}

.shadow {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.08);
}

.shadow-0 {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.shadow-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shadow-1:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadow-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06), 0 3px 6px rgba(0, 0, 0, 0.03);
}

.shadow-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.shadow-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadow-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.shadow-alt-hoverable {
  transition: all 0.5s;
}

.shadow-alt-hoverable:hover {
  box-shadow: 0 10px 25px 0 rgba(68, 96, 103, 0.2);
  border-color: transparent !important;
}

.pointer {
  cursor: pointer;
}

.bg-grey {
  background-color: #fafafa !important;
}

button {
  outline: none !important;
}

/* CHECKBOX START */
label {
  display: inline-flex;
  background: #fff;
  align-items: center;
  padding: 10px 15px;
}

label>input {
  display: none;
}

label i {
  display: inline-block;
  float: right;
  padding: 2px;
  width: 40px;
  height: 20px;
  margin-left: 0.5rem;
  border-radius: 13px;
  vertical-align: middle;
  transition: 0.25s 0.09s;
  position: relative;
  background: #d8d9db;
  box-sizing: initial;
}

label i:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  transition: 0.25s;
}

label>input:checked+i {
  background: #4bd865;
}

label>input:checked+i:after {
  transform: translateX(20px);
}

label:hover {
  cursor: pointer;
}

label.small i {
  width: 30px;
  height: 15px;
  /* border-radius: 6.5px; */
}

label.small i:after {
  width: 15px;
  height: 15px;
}

label.small>input:checked+i:after {
  transform: translateX(15px);
}

/* CHECKBOX END */

.multiselect {
  height: calc(2.25em + 0.75rem + 2px) !important;
  min-height: calc(2.25em + 0.75rem + 2px) !important;
  background: transparent !important;
}

.multiselect__tags {
  height: 100% !important;
  min-height: 100% !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  /* background: #fff;
    font-size: 14px; */
}

.multiselect.form-control {
  padding: 0 !important;
}

.multiselect__content-wrapper {
  position: absolute;
  display: block;
  background: #fff;
  width: calc(100% + 50.81px) !important;
  left: -50.81px !important;
  max-height: 240px;
  overflow: auto;
  border: none !important;
  border-radius: 0px !important;
  z-index: 50;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.08),
    0 -2px 10px 0 rgba(0, 0, 0, 0.02);
}

.multiselect--disabled .multiselect__select {
  display: none;
}

.multiselect__placeholder {
  font-size: 12px;
}

.form-control,
.custom-file-label,
.input-group-prepend .input-group-text {
  border-radius: 0px !important;
  border: none;
}

.input-group-prepend .input-group-text {
  border-right-color: transparent !important;
  background-color: #fff;
  border-radius: 0px !important;
  border: none;
}

.form-control,
.custom-file-label {
  border-left-color: transparent;
  background-color: #fff;
  height: calc(2.55em + 0.75rem + 2px);
  font-size: 14px !important;
}

.form-control.small,
.custom-file-label.small {
  height: calc(1.55em + 0.75rem + 2px);
  font-size: 12px !important;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
  border-color: transparent !important;
}

.form-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.border-0 {
  border: none !important;
}

.form-row .form-group {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.form-row .form-group:first-child {
  border-left: none !important;
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #adadad;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #adadad;
}

.form-control :-ms-input-placeholder {
  /* IE 10+ */
  color: #adadad;
}

.form-control :-moz-placeholder {
  /* Firefox 18- */
  color: #adadad;
}

.submitting {
  overflow: hidden !important;
}

.submitting::after {
  content: "";
  position: absolute;
  background-color: rgba(200, 200, 200, 0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1000vh;
  z-index: 10;
}

.input-label {
  font-size: 14px;
}

.custom-file,
.custom-file-input {
  height: calc(2.25em + 0.75rem + 2px) !important;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(2.25em + 0.75rem + 2px) !important;
  padding: 0.375rem 0.75rem;
  line-height: 2.5;
  color: #495057;
  content: "Browse";
  background-color: transparent !important;
  border-left: inherit;
  border-radius: 0;
}

/* SCROLL BAR */
::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(49, 46, 53, 0.5);
}

/* Date picker */

.vdp-datepicker.form-control {
  padding: 0;
}

.vdp-datepicker input {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px + 0.375rem);
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  color: #495057;
  background-color: transparent;
  border: none;
  border-radius: 0.25rem;
  padding-top: 15px;
}

.vdp-datepicker input:focus {
  box-shadow: none !important;
  outline: none;
}

.vdp-datepicker__calendar {
  position: absolute;
  z-index: 100;
  background: #fff;
  width: calc(100% + 50.81px) !important;
  border: none !important;
  left: -50.81px !important;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.08),
    0 -2px 10px 0 rgba(0, 0, 0, 0.02);
}

.vdp-datepicker__clear-button {
  position: absolute;
  top: 30%;
  right: 1rem;
}

.vue__time-picker {
  padding-top: .7rem;
}

.vue__time-picker input.display-time {
  border: none !important;
}

.vue__time-picker input.display-time:focus {
  box-shadow: none !important;
  outline: none;
}

/* OVERCSS */

.text-primary,
.card-header {
  color: #1d0524 !important;
}

.card-header {
  font-weight: bold;
}

.text-secondary {
  color: #352276 !important;
}

.text-info {
  color: #525174 !important;
}

.bg-light {
  background-color: #f5f5f6 !important;
}

.btn-primary {
  background-color: #1d0524 !important;
  border-color: #1d0524 !important;
}

.btn-secondary {
  background-color: #352276 !important;
  border-color: #352276 !important;
}

.btn-info {
  background-color: #525174 !important;
  border-color: #525174 !important;
}

.btn-outline-dark {
  color: #352276;
  border-color: #352276;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #352276;
  border-color: #352276;
}

.btn-outline {
  color: #352276;
  border: 1px solid #352276;
}

.btn-outline:hover {
  color: #fff;
  background-color: #352276;
  border-color: #352276;
}

.btn-light {
  color: #1d0524;
  /* background-color: #1d0524; */
}

.badge-primary {
  color: #fff;
  background-color: #1d0524;
}

.badge-light {
  color: #1d0524 !important;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #352276;
  border-color: #352276;
}

.multiselect__option--highlight {
  background: #352276 !important;
  outline: none;
  color: #fff;
}

.multiselect__tag {
  color: #fff;
  background: #352276 !important;
}

.multiselect__tag-icon:focus,
.multiselect__tag-icon:hover {
  background: #352276 !important;
  color: #fff !important;
}

.multiselect,
.multiselect__input,
.multiselect__single {
  font-family: inherit;
  font-size: 14px !important;
}

.dropdown-item {
  color: #1d0524 !important;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff !important;
  text-decoration: none;
  background-color: #1d0524;
}

.la,
label {
  color: #352276 !important;
}

.backdrop {
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  display: flex;
  justify-content: center;
  z-index: 9999;
}

button {
  outline: none !important;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-3 {
  opacity: 0.3;
}

/* Checkbox Custom */

.c-checkbox {
  display: block;
}

.c-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.c-checkbox label {
  position: relative;
  cursor: pointer;
  padding: 0px;
}

.c-checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #352276;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.c-checkbox input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #352276;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.small.c-checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #352276;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 4px;
}

.small.c-checkbox input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 11px;
  border: solid #352276;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Radio Custom */

.c-radio {
  display: block;
}

.c-radio input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.c-radio label {
  position: relative;
  cursor: pointer;
  padding: 0px;
}

.c-radio label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #352276;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 100%;
}

.c-radio input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 14px;
  height: 14px;
  background-color: #352276;
  border-radius: 100%;
}

.small.c-radio label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #352276;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 4px;
}

.small.c-radio input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
}

/* Loader */

/* Progress Bar */
.progress {
  position: relative;
  height: 2px;
  display: block;
  width: 100%;
  background-color: #a39ac0;
  background-clip: padding-box;
  margin: 0.5rem 0 1rem 0;
  overflow: hidden;
}

.progress .determinate {
  position: absolute;
  background-color: inherit;
  top: 0;
  bottom: 0;
  background-color: #352276;
  transition: width 0.3s linear;
}

.progress .indeterminate {
  background-color: #352276;
}

.progress .indeterminate:before {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress .indeterminate:after {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -90%;
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

/* Table */
.table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #dee2e6;
}

.card {
  border-radius: 0px !important;
}

/* Google Autocomplete */
.pac-container {
  z-index: 1112;
}

.text-danger {
  color: #dc3545 !important;
}

.relative {
  position: relative;
}

.label-description {
  font-size: 11px;
}

.swal2-container {
  z-index: 3060 !important;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: .25em;
  background: initial;
  background-color: #1d0524 !important;
  color: #fff;
  font-size: .0625em;
}

button {
  outline: none !important;
}

.vueperslides__track {
  position: relative !important;
}
.vueperslides__parallax-wrapper {
  padding-bottom: 5px !important;
}