/* ----------------------------------------------------------- */
/* Texts */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  line-height: 1.5rem;
  margin: 0;
}

.text-pink {
  color: #e91e63 !important;
}

.text-blue {
  color: #214c7f !important;
}

.text-green {
  color: #009688 !important;
}

.text-red {
  color: red !important;
}
.text-orange {
  color: orange !important;
}

.text-gray {
  color: #a3a3a3 !important;
}

button.green {
  background: #009688 !important;
  color: #ffffff;
}

.bold {
  font-weight: bold;
}

/* ----------------------------------------------------------- */
/* Modals */

.modal-title {
  font-weight: bold;
  color: #214c7f;
}

.modal-content {
  padding: 1.5rem;
}

.modal-header {
  background: #fff;
  margin: -1.5rem;
  padding: 1.5rem;
  padding-bottom: 0.5rem;
  border: 0;
}

.modal-body {
  padding: 0;
  margin-top: 2rem;
}

.modal-footer {
  padding: 0.5rem 0 0 0;
}

.modal-dialog {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.modal-content {
  height: auto;
  min-height: 100%;
  border-radius: 0;
  border: 0;
  background: #fcfcfc;
}

.modal-header .close {
  margin: -1rem 0rem 0 auto;
  font-size: 3.5rem;
}

/* ----------------------------------------------------------- */
/* Form */

input {
  color: #000;
}

input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:disabled {
  opacity: 1;
}

select:disabled {
  color: #000000;
}

label {
  font-size: 1rem;
}

/* ----------------------------------------------------------- */
/* Buttons */

button:focus {
  outline: 0;
}

button {
  border: 0;
  border-radius: 2px;
  padding: 0.4rem 1rem;
}

button:hover {
  text-decoration: underline;
}

button i {
  font-size: 0.95rem;
}
button span {
  margin: 0 0.5rem;
}

button.blue {
  background: #214c7f;
  color: #ffffff;
}

button.green {
  background: #2c923a;
  color: #ffffff;
}

button.white {
  background: #ffffff;
  color: #214c7f;
}

button.gray {
  background: #efefef;
  /* color: #214c7f; */
}

button.transparent {
  background: transparent;
  color: #214c7f;
}

/* Borders */

.border-gray {
  border: solid 1px #efefef !important;
}
.border-red {
  border: solid 1px red !important;
}

/* Tabs */
.tab-content {
}

.nav-tabs .nav-link {
  color: #214c7f;
  border: 0;
  border-radius: 0;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}

.nav-tabs .nav-link.active {
  color: #ffffff;
  background: #214c7f;
}

.nav-tabs .nav-link i {
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 700px;
    margin: 2rem auto;
  }
  .modal-content {
    min-height: auto;
    border-radius: 4px;
  }
}
