html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

.highlight {
    color:#ff6600;
}

.filterReset, .exportList {
    cursor: pointer;
    color: #184f90;
}

a, .breadcrumb-item {
    color: #184f90;
}
.breadcrumb {
    padding: .25rem 0;
}

.inputError {
    border: 1px solid red;
}

.submitErrors {
    color: red;
}

.readonly {
    /* color: #a5a4a4; */
    background-color: #f2f2f2;
}
#selectClientModalBox {
    z-index: 1200;
}
.lineHidden {
    display: none;
}

.modal.show .modal-dialog {
box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.7);
}

#deleteOfferDetailModalBox, #deleteOfferFileModalBox, #deleteClientContactModalBox, #deleteVisitFileModalBox, #deleteVisitDetailModalBox {
    z-index: 1310;
}
#addClientModalBox, #addOfferDetailModalBox, #addClientContactModalBox, #editClientModalBox {
    z-index: 1300;
}
#selectClientModalBox {
    z-index: 1290;
}
.filterReload {
    cursor: pointer;
}

table p, table a, .form-control {
    font-size: 0.75rem;
}
table.dataTable td {
    padding-top: 5px;
    padding-bottom: 5px;
}
tbody td {
  vertical-align: top;
}
.btn {
font-size: 0.75rem;
padding: 0.3rem 0.75rem;
}
select.form-control {
  padding: 0 0.3rem;
}
div.dataTables_wrapper div.dataTables_paginate {
  margin-top: 0px; 
}
.card .card-body {
  padding: 0.55rem 1rem;
}
table.dataTable td input {
    width: 85%;
}
table.dataTable td select {
    width: 85%;
}
.offerDetailTextArea, .visitDetailTextArea {
    width: 95%;
    padding: 0.25rem 0.25rem;
}
.offerDetailInput, .visitDetailInput {
    width: 85%;
}








/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}


