@font-face {
  font-family: 'roboto-regular';
  src: url('fonts/roboto-regular.ttf') format('truetype');
}

@font-face {
  font-family: 'roboto-light';
  src: url('fonts/roboto-light.ttf') format('truetype');
}

@font-face {
  font-family: 'roboto-thin';
  src: url('fonts/roboto-thin.ttf') format('truetype');
}

@font-face {
  font-family: 'lato-regular';
  src: url('fonts/lato-regular.ttf') format('truetype');
}

@font-face {
  font-family: 'archivo-regular';
  src: url('fonts/archivo-regular.ttf') format('truetype');
}

body {
  font-family: roboto-light;
  font-size: .8em;
}

.font-lato-regular {
  font-family: lato-regular !important;
}

.font-archivo-regular {
  font-family: archivo-regular !important;
}

a {
  text-decoration: none;
}

#mainCard .card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.form {
  position: relative
}

  .form .fa-search {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #9ca3af
  }

  .form span {
    position: absolute;
    right: 17px;
    top: 3px;
    padding: 2px;
    border-left: 1px solid #d1d5db
  }

.form-input {
  /*height: 55px;*/
  text-indent: 33px;
  border-radius: 10px
}

ol a {
  color: #000;
}

  ol a:hover {
    color: #000;
    text-decoration: underline;
    font-weight: 800;
  }

#navMenuCarrier a:hover {
  border-bottom: 1px solid #fff;
}

.select2 {
  max-width: 100% !important;
}

.btn-pills{
    border-radius:15px;
    border:0px;
    margin-left:1px;
}

.btn-border-pdf {
  border-bottom: 6px solid #F93154;
  color: #fff;
}

.btn-border-excel {
  border-bottom: 6px solid #00B74A;
  color: #fff;
}

.btn-border-copy {
  border-bottom: 6px solid #1266F1;
  color: #fff;
}

.btn-border-print {
  border-bottom: 6px solid #616161;
  color: #fff;
}

label{
    font-weight:500;
}

/* ===================================================================================================================================================== */
/* TEXT STYLE END */
/* ===================================================================================================================================================== */
/* ***************  table style  *************** */
.table thead td {
  font-weight: 900;
}
.table thead td {
  font-weight: 900;
}

.table td, .table th {
  padding: .25rem;
  font-size: .72rem;
}

table tr, td {
  padding-bottom: .9em;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

#tablePDF .tr {
  padding-bottom: .9em;
  border: 1px solid #000;
}

#column-buttons {
  max-width: 85px !important;
  border-right: 2px solid #fff;
}

table.display {
  margin: 0 auto;
  width: 100%;
}

#tableReport {
  width: inherit !important;
}

.dataTableLayout {
  table-layout: fixed;
  width: 100%;
}

.table td, .table th {
  padding: .25rem;
}

table tr, td {
    padding-bottom: .9em;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

table.dataTable.no-footer {
  border-bottom: 1px solid #dcdcdc !important;
}

#tablePDF .tr {
  padding-bottom: .9em;
  border: 1px solid #000;
}

#column-buttons {
  max-width: 85px !important;
  border-right: 2px solid #fff;
}

table.display {
  margin: 0 auto;
  width: 100%;
}

#tableReport {
  width: inherit !important;
}
/* ********************************************** loading spinner ******************************* */
.backdrop {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
  background-attachment: scroll;
  z-index: 9999;
  display: inline-block;
}

.circle {
  position: fixed;
  border: 16px solid rgba(0, 0, 0, .5);
  border-radius: 50%;
  border-top: 16px solid rgba(72, 99, 161, .8);
  border-right: 16px solid rgba(72, 99, 161, .8);
  border-bottom: 16px solid #6698FF;
  border-left: 16px solid #6698FF;
  background-color: transparent;
}

.backdrop > img {
  top: calc(50% - 19px);
  left: calc(50% - 14px);
  width: 28px;
  height: 38px;
  position: fixed;
}

.loader {
  top: calc(50% - 75px);
  left: calc(50% - 75px);
  width: 150px;
  height: 150px;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 2s linear infinite;
}

.r-loader {
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  -webkit-animation: r-spin 2s linear infinite;
  animation: r-spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes r-spin {
  0% {
    -webkit-transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes r-spin {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.hm-gradient {
  background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}

/* ***************  Alert Messages  *************** */

#alertMessages {
  position: fixed;
  bottom: 15px;
  right: 15px;
}

  #alertMessages .title {
    font-family: Archivo-Regular;
    font-weight: 700;
    font-size: 1.2em;
  }

  #alertMessages .bodytext {
    font-family: Lato-Regular;
    font-weight: 100;
    font-size: .95em;
  }

  #alertMessages .alert {
    position: relative;
  }

    #alertMessages .alert .close {
      position: absolute;
      top: 5px;
      right: 5px;
    }

    #alertMessages .alert .fa {
      margin-right: .3em;
    }


/***** COLORS START *****/
.border-green-card-side {
  border-left: 9px solid #61B549 !important;
}


.bg-carrier-blue {
  background-color: #007bff !important;
}

.bg-carrier-green {
  background-color: #61B549 !important;
}

.bg-lightgray {
  background-color: #f8f9fa !important;
}

.bg-lightgray-100 {
  background-color: #f1f3f6 !important;
}

.bg-table-rows {
  background-color: #f8f9fa !important;
  color: #000;
  font-weight: 500;
}

table.dataTable tbody tr {
  background-color: #f8f9fa !important;
  color: #000;
  font-weight: 500;
}

table.dataTable tbody th, table.dataTable tbody td {
  padding: 3px 10px !important;
}

/*========================================================================== */
.bg-primary-50 {
  background-color: #ccbfdf;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-primary-50:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-primary-100 {
  background-color: #BBDEFB;
}

.bg-primary-200 {
  background-color: #90CAF9;
}

.bg-primary-300 {
  background-color: #64B5F6;
}

.bg-primary-400 {
  background-color: #42A5F5;
}

.bg-primary-500 {
  background-color: #2196F3;
}

.bg-primary-600 {
  background-color: #1E88E5;
}

.bg-primary-700 {
  background-color: #1976D2;
}

.bg-primary-800 {
  background-color: #1565C0;
}

.bg-primary-900 {
  background-color: #0D47A1;
}
  .color-primary-50 {
  color: #ccbfdf;
}

.color-primary-100 {
  color: #beaed7;
}

.color-primary-200 {
  color: #b19dce;
}

.color-primary-300 {
  color: #a38cc6;
}

.color-primary-400 {
  color: #967bbd;
}

.color-primary-500 {
  color: #886ab5;
}

.color-primary-600 {
  color: #7a59ad;
}

.color-primary-700 {
  color: #6e4e9e;
}

.color-primary-800 {
  color: #62468d;
}

.color-primary-900 {
  color: #563d7c;
}

.bg-success-50 {
  background-color: #7aece0;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-success-50:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-success-100 {
  background-color: #63e9db;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-success-100:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-success-200 {
  background-color: #4de5d5;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-success-200:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-success-300 {
  background-color: #37e2d0;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-success-300:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-success-400 {
  background-color: #21dfcb;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-success-400:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-success-500 {
  background-color: #1dc9b7;
  color: white;
}

  .bg-success-500:hover {
    color: white;
  }

.bg-success-600 {
  background-color: #1ab3a3;
  color: white;
}

  .bg-success-600:hover {
    color: white;
  }

.bg-success-700 {
  background-color: #179c8e;
  color: white;
}

  .bg-success-700:hover {
    color: white;
  }

.bg-success-800 {
  background-color: #13867a;
  color: white;
}

  .bg-success-800:hover {
    color: white;
  }

.bg-success-900 {
  background-color: #107066;
  color: white;
}

  .bg-success-900:hover {
    color: white;
  }

.color-success-50 {
  color: #7aece0;
}

.color-success-100 {
  color: #63e9db;
}

.color-success-200 {
  color: #4de5d5;
}

.color-success-300 {
  color: #37e2d0;
}

.color-success-400 {
  color: #21dfcb;
}

.color-success-500 {
  color: #1dc9b7;
}

.color-success-600 {
  color: #1ab3a3;
}

.color-success-700 {
  color: #179c8e;
}

.color-success-800 {
  color: #13867a;
}

.color-success-900 {
  color: #107066;
}

.bg-info-50 {
  background-color: #9acffa;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-info-50:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-info-100 {
  background-color: #82c4f8;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-info-100:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-info-200 {
  background-color: #6ab8f7;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-info-200:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-info-300 {
  background-color: #51adf6;
  color: white;
}

  .bg-info-300:hover {
    color: white;
  }

.bg-info-400 {
  background-color: #39a1f4;
  color: white;
}

  .bg-info-400:hover {
    color: white;
  }

.bg-info-500 {
  background-color: #2196F3;
  color: white;
}

  .bg-info-500:hover {
    color: white;
  }

.bg-info-600 {
  background-color: #0d8aee;
  color: white;
}

  .bg-info-600:hover {
    color: white;
  }

.bg-info-700 {
  background-color: #0c7cd5;
  color: white;
}

  .bg-info-700:hover {
    color: white;
  }

.bg-info-800 {
  background-color: #0a6ebd;
  color: white;
}

  .bg-info-800:hover {
    color: white;
  }

.bg-info-900 {
  background-color: #0960a5;
  color: white;
}

  .bg-info-900:hover {
    color: white;
  }

.color-info-50 {
  color: #9acffa;
}

.color-info-100 {
  color: #82c4f8;
}

.color-info-200 {
  color: #6ab8f7;
}

.color-info-300 {
  color: #51adf6;
}

.color-info-400 {
  color: #39a1f4;
}

.color-info-500 {
  color: #2196F3;
}

.color-info-600 {
  color: #0d8aee;
}

.color-info-700 {
  color: #0c7cd5;
}

.color-info-800 {
  color: #0a6ebd;
}

.color-info-900 {
  color: #0960a5;
}

.bg-warning-50 {
  background-color: #ffebc1;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-50:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-warning-100 {
  background-color: #ffe3a7;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-100:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-warning-200 {
  background-color: #ffdb8e;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-200:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-warning-300 {
  background-color: #ffd274;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-300:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-warning-400 {
  background-color: #ffca5b;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-400:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-warning-500 {
  background-color: #ffc241;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-500:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-warning-600 {
  background-color: #ffba28;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-600:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-warning-700 {
  background-color: #ffb20e;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-700:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-warning-800 {
  background-color: #f4a500;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-800:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-warning-900 {
  background-color: #da9400;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-warning-900:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.color-warning-50 {
  color: #ffebc1;
}

.color-warning-100 {
  color: #ffe3a7;
}

.color-warning-200 {
  color: #ffdb8e;
}

.color-warning-300 {
  color: #ffd274;
}

.color-warning-400 {
  color: #ffca5b;
}

.color-warning-500 {
  color: #ffc241;
}

.color-warning-600 {
  color: #ffba28;
}

.color-warning-700 {
  color: #ffb20e;
}

.color-warning-800 {
  color: #f4a500;
}

.color-warning-900 {
  color: #da9400;
}

.bg-danger-50 {
  background-color: #feb7d9;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-danger-50:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-danger-100 {
  background-color: #fe9ecb;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-danger-100:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-danger-200 {
  background-color: #fe85be;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-danger-200:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-danger-300 {
  background-color: #fe6bb0;
  color: rgba(0, 0, 0, 0.8);
}

  .bg-danger-300:hover {
    color: rgba(0, 0, 0, 0.8);
  }

.bg-danger-400 {
  background-color: #fd52a3;
  color: white;
}

  .bg-danger-400:hover {
    color: white;
  }

.bg-danger-500 {
  background-color: #fd3995;
  color: white;
}

  .bg-danger-500:hover {
    color: white;
  }

.bg-danger-600 {
  background-color: #fd2087;
  color: white;
}

  .bg-danger-600:hover {
    color: white;
  }

.bg-danger-700 {
  background-color: #fc077a;
  color: white;
}

  .bg-danger-700:hover {
    color: white;
  }

.bg-danger-800 {
  background-color: #e7026e;
  color: white;
}

  .bg-danger-800:hover {
    color: white;
  }

.bg-danger-900 {
  background-color: #ce0262;
  color: white;
}

  .bg-danger-900:hover {
    color: white;
  }

.color-danger-50 {
  color: #feb7d9;
}

.color-danger-100 {
  color: #fe9ecb;
}

.color-danger-200 {
  color: #fe85be;
}

.color-danger-300 {
  color: #fe6bb0;
}

.color-danger-400 {
  color: #fd52a3;
}

.color-danger-500 {
  color: #fd3995;
}

.color-danger-600 {
  color: #fd2087;
}

.color-danger-700 {
  color: #fc077a;
}

.color-danger-800 {
  color: #e7026e;
}

.color-danger-900 {
  color: #ce0262;
}

.bg-fusion-50 {
  background-color: #909090;
  color: white;
}

  .bg-fusion-50:hover {
    color: white;
  }

.bg-fusion-100 {
  background-color: #838383;
  color: white;
}

  .bg-fusion-100:hover {
    color: white;
  }

.bg-fusion-200 {
  background-color: #767676;
  color: white;
}

  .bg-fusion-200:hover {
    color: white;
  }

.bg-fusion-300 {
  background-color: dimgray;
  color: white;
}

  .bg-fusion-300:hover {
    color: white;
  }

.bg-fusion-400 {
  background-color: #5d5d5d;
  color: white;
}

  .bg-fusion-400:hover {
    color: white;
  }

.bg-fusion-500 {
  background-color: #505050;
  color: white;
}

  .bg-fusion-500:hover {
    color: white;
  }

.bg-fusion-600 {
  background-color: #434343;
  color: white;
}

  .bg-fusion-600:hover {
    color: white;
  }

.bg-fusion-700 {
  background-color: #363636;
  color: white;
}

  .bg-fusion-700:hover {
    color: white;
  }

.bg-fusion-800 {
  background-color: #2a2a2a;
  color: white;
}

  .bg-fusion-800:hover {
    color: white;
  }

.bg-fusion-900 {
  background-color: #1d1d1d;
  color: white;
}

  .bg-fusion-900:hover {
    color: white;
  }

.color-fusion-50 {
  color: #909090;
}

.color-fusion-100 {
  color: #838383;
}

.color-fusion-200 {
  color: #767676;
}

.color-fusion-300 {
  color: dimgray;
}

.color-fusion-400 {
  color: #5d5d5d;
}

.color-fusion-500 {
  color: #505050;
}

.color-fusion-600 {
  color: #434343;
}

.color-fusion-700 {
  color: #363636;
}

.color-fusion-800 {
  color: #2a2a2a;
}

.color-fusion-900 {
  color: #1d1d1d;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #222222;
}

.bg-primary-gradient {
  background-image: linear-gradient(-250deg, rgba(86, 61, 124, 0.7), transparent);
}

.bg-danger-gradient {
  background-image: linear-gradient(-250deg, rgba(206, 2, 98, 0.7), transparent);
}

.bg-info-gradient {
  background-image: linear-gradient(-250deg, rgba(9, 96, 165, 0.7), transparent);
}

.bg-warning-gradient {
  background-image: linear-gradient(-250deg, rgba(218, 148, 0, 0.7), transparent);
}

.bg-success-gradient {
  background-image: linear-gradient(-250deg, rgba(16, 112, 102, 0.7), transparent);
}

.bg-fusion-gradient {
  background-image: linear-gradient(-250deg, rgba(29, 29, 29, 0.7), transparent);
}


#divBUAvailable card:hover {
  opacity: .6;
  border-color: blue;
} 
