@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');

body {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #162f7d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
}

/* Inputs */
input.form-control {
  font-size: 14px !important;
  height: 35px;
  border-radius: 3px;
}

span.input-group-text {
  cursor: pointer;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  width: 40px;
  border-radius: 3px;
}

/* Botones */
.btn {
  font-size: 14px;
  padding: 6px 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-primary {
  background-color: #d6dcea;
  border-color: #d6dcea;
  color: #1c2e4a;
}

.btn-primary:hover {
  background-color: #1c2e4a;
  border-color: #1c2e4a;
  color: #fff;
}

/* Card */
.card-border-main {
  border-top: 3px solid #1c2e4a;
}

/* Textos */
.text-sm {
  font-size: 12px;
}

.text-muted {
  color: #8d8d8d !important;
}

/* Select2 Single */
.select2-container--default .select2-selection--single {
  background-color: #fff !important;
  border: 1px solid #ced4da !important;
  border-top-left-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  height: auto !important;
  min-height: 35px !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0.375rem 0.75rem !important;
  box-shadow: none !important;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #212529 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 1;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #6c757d !important;
  font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "\f282";
  /* Unicode bi-chevron-down */
  font-family: "bootstrap-icons" !important;
  font-size: 14px;
  font-weight: normal;
  color: #000;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 15px !important;
  height: 100% !important;
  top: 0 !important;
  right: 0 !important;
  position: absolute !important;
}

.lang-switch {
  color: #9ca3af;
  /* gray-300 */
  font-size: 11px;
}

.lang-switch i {
  color: inherit;
}

.lang-switch .form-check-label {
  color: inherit;
}

.lang-switch .form-check-input:checked {
  background-color: #9ca3af;
  /* indigo / primary */
  border-color: #9ca3af;
}

.lang-switch .form-check-input:focus {
  box-shadow: none;
}