/*so all the element's specified width and height aren't affected by padding or borders*/
* {
  box-sizing: border-box;
}

/* body and main are both flex*/
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  font-family: Poppins;

}

#main {
  display: flex;
  flex: 1;
}

.center {
  text-align: center;
}

.map-parent {
  width: 100%;
  display: flex;
  justify-content: space-around;

  min-height: calc(100vh - 40vh);
}

.map-row {
  width: 100%;
  display: flex;
  justify-content: space-around;
  min-height: calc(100vh - 40vh);
}

.map-col {
  width: 100%;
  min-height: calc(100vh - 40vh);
}

#MapViewDiv {
  padding: 0;
  margin: 0;

  min-height: calc(100vh - 40vh);
}

#MapLayerToggle {
  top: 20px;
  right: 20px;
  position: absolute;
  z-index: 99;
  background-color: white;
  border-radius: 8px;
  padding: 10px;
  opacity: 0.75;
}


#layerToggleDiv {
  position: absolute;
  z-index: 999;
  height: 106px;
  width: 336px;
  background-color: #f1f1f1;
  border: 1px solid #d3d3d3;
  top: 36px;
  right: 5px;
  /* opacity: 65%; */
  /* font-size: 13pt; */
  border-radius: 12px;

}

#layerToggleDivheader {
  padding: 10px;
  cursor: move;
  background-color: #0059ad;
  color: #fff;
  text-align: center;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}

#ChartDiv {
  position: absolute;
  z-index: 9;
  width: 336px;
  height: 299px;
  background-color: #f1f1f1;
  border: 1px solid #d3d3d3;
  top: 140px;
  left: 5px;
  /* opacity: 65%; */
  border-radius: 12px;
  z-index: 2;

}

#ChartDivheader {
  padding: 10px;
  cursor: move;
  background-color: #0059ad;
  color: #fff;
  text-align: center;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}



.ChartDiv .resizer-right {
  width: 5px;
  height: 100%;
  background: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: e-resize;
}

.ChartDiv .resizer-bottom {
  width: 100%;
  height: 5px;
  background: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: n-resize;
}

.ChartDiv .resizer-both {
  width: 5px;
  height: 5px;
  background: transparent;
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: nw-resize;
}

.map-tab-div {
  min-height: 3vh;
  background-color: #e9ecef;
  font-size: 8pt;
  max-height: 3vh !important;
}

.map-tab {
  width: 124px;
  background-color: #63a3e3;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  text-align: center;
  margin-top: 1px;
  margin-left: 10px;
  color: white;
  cursor: pointer;
}

.map-tab-active{
  background-color: #0059ad !important;
}

#show-table-container-button {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  display: flex;
}

.full-width-table {
  width: 100%;
}

.header-row-fixed {
  position: sticky;
  top: 0;
  background-color: #0056aa;
  color: white;

}

.map-table-div {
  min-height: 33vh;
  background-color: #e9ecef;
  font-size: 10pt;
  text-align: center;
  max-height: 33vh !important;
  overflow: auto;
}

.map-table-div table thead th {
  /* border: 1px solid #dee2e6; */
  background-color: #0056aa;
  color: white;
  padding: 2px;
  font-size: 7pt;
}

.button-margin {
  margin-right: 30px;
  margin-right: 30px;
}


.maintenance-map-table-div {
  min-height: 33vh;
  background-color: #e9ecef;
  font-size: 10pt;
  text-align: center;
  max-height: 33vh !important;
  overflow: auto;
}

.maintenance-map-table-div table thead th {
  /* border: 1px solid #dee2e6; */
  background-color: #0056aa;
  color: white;
  padding: 2px;
  font-size: 7pt;
  /* width: 100px !important; */
  min-width: 153px;
}



/***********************/
/*start navbar styling*/
/***********************/
#main>nav {
  flex: 0 0 2vw;

}

#nav-bar {

  height: 4vh;
  background-color: #005cb0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  position: sticky;
  top: 0px;
  z-index: 3;
}

.siteHeader__section {
  display: flex;
  align-items: center;
}

.siteHeader__item {
  padding: 5px 15px;
  font-size: 12px;
}

.siteHeader__item+.siteHeader__item {
  margin-left: 5px;
}

.siteHeader__item.is-site-header-item-selected {
  color: #FFFFFF;
  background-color: #898f92;
  border-radius: 4px;
}

.siteHeaderLogo {
  font-size: 20px;
  line-height: 0;
  color: white;
}



.siteHeaderButton {
  cursor: pointer;
  color: #D9E9EF;
}

.siteHeaderInfo {
  color: #d6dce0;
}

.siteHeader__section {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}

.dropdown>.dropdown-sub {
  display: none;
  z-index: 1;
  flex-direction: column;
  position: absolute;
}

.dropdown-option {
  background-color: #005cb0;
  font-size: 12px;
  padding: 8px;
  color: #D9E9EF;
  font-family: Poppins;
}

#services-options>a>*:hover {
  background-color: #0077E3;
  z-index: -1;
  cursor: pointer;
}

.dropdown:hover>.dropdown-sub>.dropdown-option:hover {
  background-color: #0077E3;
  z-index: -1;
  cursor: pointer;
}

.nav-selected {
  background-color: #0077E3;
}

.siteHeaderButton:hover {
  background-color: #0077E3;
  border-radius: 3px;

}

#services {
  z-index: 1;
}

/***********************/
/*end navbar styling*/
/***********************/




#main {
  display: flex;
  min-height: calc(100vh - 40vh);
}

#main>article {
  flex: 1;
}

#main>aside {
  flex: 0 0 10vw;
  background: rgb(67, 126, 175);
}

.login {
  position: relative;
  height: 84vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login::before {
  /* background-image: url("/static/images/waves-circles-ge4c0704d8_1920.jpg"); */
  content: "";

  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: .5;
  z-index: -1;
}

.login-fields {
  width: 237px;
  height: 33px;
  border-style: solid;
  border-radius: 6px;
  border-color: #7c7474;
  color: #7c7474;
  margin: 3px;
  font-family: Poppins;
}

.qa_qc_menu {
  margin-top: 30px;
  display: flex;
  margin-bottom: 30px;
  justify-content: space-around;
}

.qc-coded {
  background-color: pink;
}

.qc_row_selected {
  background-color: #b01500;
  color: rgb(255, 255, 255);

}

.qc_row_notselected {
  background-color: white;
  color: black;
}

.qa-select-div-outer {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: space-around;
}

.qa-select-div {
  width: 1000px;
  display: none;
  font-size: 10pt;
}

.ss-list {
  font-size: 10pt;
}

.front-page {

  background-blend-mode: overlay;
  position: relative;
  height: 96vh;
  width: 100%;
  display: flex;
  justify-content: center;
  background-image: url(/static/images/site-background-smaller.jpeg);
  background-color: #cccccc;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
}

button {
  color: white;
  background-color: #0059ad;
  font-family: Poppins;
  padding: 2px 17px 3px 17px;
  margin: -3px;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  cursor: pointer;
  max-width: max-content;
  border-color: #688fb1;
  margin: 2px;
}

button:disabled {
  color: #b5b5b5;
  background-color: #4b4f52;
  border-color: #4b4f52;
  cursor: not-allowed;
}

.dataTables_scrollHead {
  background: #0059ad;
  color: white;
}

.qaqc-row-fixed {
  cursor: pointer;
}

button:active {
  background: #4b4f52;
  color: rgb(181, 181, 181);
  -webkit-box-shadow: inset 0px 0px 5px #202122;
  -moz-box-shadow: inset 0px 0px 5px #202122;
  box-shadow: inset 0px 0px 5px #202122;
  outline: none;
}


button:disabled,
button:disabled:active {
  background-color: rgba(239, 239, 239, 0.3);
  color: rgba(16, 16, 16, 0.3);
  border-color: rgba(118, 118, 118, 0.3);
  cursor: unset;
  /* cursor: not-allowed; */
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  box-shadow: unset;
  outline: none;
}

.users_table_container {
  display: flex;
  flex: 1;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.users_table_container table {
  border-collapse: collapse;
}

.users_table_container table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.users_table_container table tr:hover {
  background-color: #ddd;
}

.users_table_container table th {
  padding-top: 12px;
  padding-bottom: 12px;
  /* text-align: left; */
  background-color: #0077E3;
  color: white;
}

.users_table_container table td,
.users_table_container table th {
  border: 1px solid #ddd;
  padding: 8px;
}

.users_table_container table td {
  text-align: center;
}

.unauthorized {
  display: flex;
  flex: 1;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  font-size: 4px;
  /* background-color: #246ca2; */
}


.no_link_decor {
  text-decoration: none;
}

.icon_btn {
  cursor: pointer;
  color: #0059ad;
}

.edit_btn {
  cursor: pointer;
}

.delete_btn {
  cursor: pointer;
}

.reset_password_btn {
  cursor: pointer;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  place-content: center;
  justify-content: center;
  align-items: center;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  /* border: 1px solid #888; */
  width: 50vw;
  /* Could be more or less, depending on screen size */
  min-height: 25vw;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 25px #6c6666;
  -moz-box-shadow: 0px 0px 25px #6c6666;
  box-shadow: 0px 0px 25px #6c6666;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


input {
  font-family: Poppins;
}

.input-field,
textarea {
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
  padding: .375rem .75rem;
  margin: 5px 1px 3px 0px;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.input-field:focus,
textarea:focus {
  box-shadow: 0 0 3px 3px rgba(81, 203, 238, 1);
  padding: .375rem .75rem;
  margin: 5px 1px 3px 0px;
  border: 1px solid rgba(81, 203, 238, 1);
  border-radius: 4px;
}

.col {
  display: flex;
  flex-direction: column;
}

.col.center {
  align-items: center;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center
}

.row.center {
  justify-content: center;
}

.pad-5 {
  padding: 5px;
}

.logger-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: nowrap;
  justify-content: space-evenly;
}

.logger-element {
  margin-bottom: 21px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.cell-buffer {
  width: 31px;
  max-width: 15px;
  margin: 0px;
  padding: 0px !important;
  ;
}

.tooltip {
  position: relative;
  display: inline-block;

}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 2px 0;
  position: absolute;
  z-index: 1;
  margin-left: 101px;
  font-size: 7pt;
}

.tooltip .tooltiptext.logger_status {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 2px 0;
  position: absolute;
  z-index: 1;
  margin-left: 14px;
  font-size: 7pt;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.mscp-input {
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  border-bottom-color: #5c5c5c;
  border-top-color: #d1d1d1;
  border-right-color: #5c5c5c;
  border-left-color: #d1d1d1;
  font-family: 'Poppins';
}

.logger-checkbox {

  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: flex-end;
  justify-content: flex-end;
  align-items: baseline;

}

.right {
  justify-content: flex-end;
}
.left {
  justify-content: flex-start;
}

a.bread-crumb{
  position: absolute;
  padding: 10px; 
}

a.bread-crumb:link, a.bread-crumb:visited {
  color: black;
  text-decoration: none;
}
.grow-1 {
  flex-grow: 1;
}

/* .grow-2{
    flex-grow: 2;
} */

.row .col.grow-1 {
  margin-left: 0.15vw;
  margin-right: 0.15vw;
}

.space-around {
  justify-content: space-around;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

a:link {
  text-decoration: none;
}

.small {
  font-size: small;
}

.error {
  color: red
}

/* Sites Styles */
.general-container {
  display: flex;
}


.sites-container {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.loggers-container {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  align-content: center;
  /* flex-wrap: wrap; */
  flex-direction: column;
  align-items: center;
}

.input-boarder-blue {
  border: solid;
  border-color: #2279c5;
  border-radius: 6px;
  border-width: 2px;
}

.page-title {
  text-align: center;
}

.page-title div {
  font-size: 35px;
  text-transform: uppercase;
}

.page-title-cap {
  text-align: center;
}

.page-title-cap div {
  font-size: 35px;
  text-transform: capitalize;
  margin: 29px;

}

#attach-button {
  width: 78.5%;
  margin-bottom: 10px;
}

.input-boarder-blue:focus-within {
  border: solid;
  border-color: #2279c5;
  border-radius: 6px;
  border-width: 2px;
  background-color: #ebf2f9;
}

.station-search {
  padding: 0px;
  height: 25px;
  margin: 10px;
}

#stations-list {
  font-size: 13px;
}

.logger-button {
  margin: 0px;
  margin-bottom: 6px;
}

#loggers-list {
  font-size: 15px;
}

.manage-search {
  display: flex;
  justify-content: center;
  padding-right: 78px;
}

.manage-table {
  width: 79%;
  overflow-x: auto;
  height: 74vh;
}

.manage-table thead {
  background: #0059ad;
  color: white;
}

.manage-table th,
.manage-table td {
  padding: 0px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: inset 0.1px 0.1px 1px 0px;
  flex: 1 0 10em;
  padding-top: 7px;
}

.manage-table,
.manage-table thead,
.manage-table tbody,
.manage-table tfoot {
  display: flex;
  flex-direction: column;
}

.manage-table tr {
  display: flex;
  flex: 1 0;
}

#stations-list tbody a span {
  font-size: 19px;
}

@media screen and (min-aspect-ratio: 1) {
  .manage-table tbody {
    overflow-y: auto;
  }
}


.manage-hang-table {
  width: 90%;
  overflow-x: auto;

}

.manage-hang-table thead {
  background: #0059ad;
  color: white;
  font-size: 10pt;
}

.manage-hang-table th,
.manage-hang-table td {
  padding: 0px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: inset 0.1px 0.1px 1px 0px;

  padding-top: 7px;
}





@media screen and (min-aspect-ratio: 1) {
  .manage-hang-table tbody {
    overflow-y: auto;
  }
}



  .manage-hang-table {
    width: 90%;
    overflow-x: auto;
    
  }
  .manage-hang-table thead {
    background: #0059ad;
    color: white;
    font-size: 10pt;
  }
  .manage-hang-table th,
  .manage-hang-table td {
    padding: 0px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: inset 0.1px 0.1px 1px 0px;
  
    padding-top: 7px;
  }





  @media screen and (min-aspect-ratio: 1) {
    .manage-hang-table tbody {
      overflow-y: auto;
    }
  }


.maintenance-row{
  cursor: pointer;
}

.maintenance-row:hover {
  background-color: #ebf2f9;
}

.manage-table-parent {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  font-size: 1vw;
}


.manage-hang-length-parent {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;

}

#main {
  display: flex;
  min-height: calc(100vh - 40vh);
  flex-direction: column;
}

.general-card-labels {
  border-top-style: solid;
  border-top-color: #0059ad;
}


.small-width {
  max-width: 93px;
}

.mscp-red {
  color: #AD0059
}

.mscp-green {
  color: #59AD00
}

.color-blue {
  color: #0059ad;
}

.general-upper {
  height: 16%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #f7f8f9;
}

.general-card {
  background-color: #fff;
  border-radius: 5px;

  display: inline-block;
  width: 300px;
  text-align: center;
  box-shadow: 3px 2px 7px rgba(0, 0, 0, 0.2);
}

.general-lower {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.general-instrument-list {
  display: table;
  width: 75%;
  margin-top: 20px;
}

.general-instrument-row {
  display: table-row;
  text-align: center;
}

.general-instrument-cell {
  display: table-cell;
  padding: 4px;
  border: 1px solid #ccc;
}

.general-instrument-header {
  display: table-cell;
  padding: 5px;
  border: 1px solid #ccc;
  background-color: #0059ad;
  color: white;
}

.site-row-even {
  background-color: #f1f8ff;
}

canvas {
  margin: 0 auto;
}

.chart-container {
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.wave-wait {
  height: 27vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff0;
}

.wave {
  width: 5px;
  height: 100px;
  background: linear-gradient(45deg, #0059ad, #fff);
  margin: 10px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}

.wave:nth-child(2) {
  animation-delay: 0.1s;
}

.wave:nth-child(3) {
  animation-delay: 0.2s;
}

.wave:nth-child(4) {
  animation-delay: 0.3s;
}

.wave:nth-child(5) {
  animation-delay: 0.4s;
}

.wave:nth-child(6) {
  animation-delay: 0.5s;
}

.wave:nth-child(7) {
  animation-delay: 0.6s;
}

.wave:nth-child(8) {
  animation-delay: 0.7s;
}

.wave:nth-child(9) {
  animation-delay: 0.8s;
}

.wave:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

.hidden {
  display: none;
}

#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: #0059ad;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

.subsite-parent {
  display: flex;
  justify-content: center;
  align-content: stretch;
  flex-wrap: nowrap;
  margin-top: 27px;
}

.w100 {
  width: 100%;
}

.logger-overflow {
  display: contents;
  max-height: 100px;
  height: 100px;
  overflow: scroll;
}

.pointer {
  cursor: pointer;
}

.tabs {
  /**
    * Setting display to flex makes this container lay
    * out its children using flexbox, the exact same
    * as in the above "Stepper input" example.
    */
  display: flex;

  border-bottom: 1px solid #D7DBDD;
}

.tab {
  cursor: pointer;
  padding: 5px 30px;
  color: #16A2D7;
  font-size: 12px;
  border-bottom: 2px solid transparent;
}

.tab.is-tab-selected {
  border-bottom-color: #4EBBE4;
}

#ports_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-basis: 50%;
}

.middle-div {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

#full_overlay {
  position: absolute;
  width: 100%;
  height: 96%;
  display: flex;
  align-content: space-around;
  justify-content: space-around;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: #323232;
  opacity: .8;
  z-index: 1;
  transition: opacity 1s;

}

#full_overlay.fade {
  opacity: 0;
  display: none;
}

.alert>.start-icon {
  margin-right: 0;
  min-width: 20px;
  text-align: center;
}

.alert>.start-icon {
  margin-right: 5px;
}

.greencross {
  font-size: 18px;
  color: #25ff0b;
  text-shadow: none;
}

.alert-simple.alert-success {
  border: 1px solid rgba(36, 241, 6, 0.46);
  background-color: rgba(7, 149, 66, 0.12156862745098039);
  box-shadow: 0px 0px 2px #259c08;
  color: #0ad406;

  transition: 0.5s;
  cursor: pointer;
}

.alert-success:hover {
  background-color: rgba(7, 149, 66, 0.35);
  transition: 0.5s;
}

.alert-simple.alert-info {
  border: 1px solid rgba(6, 44, 241, 0.46);
  background-color: rgba(7, 73, 149, 0.12156862745098039);
  box-shadow: 0px 0px 2px #0396ff;
  color: #0396ff;

  transition: 0.5s;
  cursor: pointer;
}

.alert-info:hover {
  background-color: rgba(7, 73, 149, 0.35);
  transition: 0.5s;
}

.blue-cross {
  font-size: 18px;
  color: #0bd2ff;
  text-shadow: none;
}

.alert-simple.alert-warning {
  border: 1px solid rgba(241, 142, 6, 0.81);
  background-color: rgba(220, 128, 1, 0.16);
  box-shadow: 0px 0px 2px #ffb103;
  color: #ffb103;

  transition: 0.5s;
  cursor: pointer;
}

.alert-warning:hover {
  background-color: rgba(220, 128, 1, 0.33);
  transition: 0.5s;
}

.warning {
  font-size: 18px;
  color: #ffb40b;
  text-shadow: none;
}

.alert-simple.alert-danger {
  border: 1px solid rgba(241, 6, 6, 0.81);
  background-color: rgba(220, 17, 1, 0.16);
  box-shadow: 0px 0px 2px #ff0303;
  color: #ff0303;

  transition: 0.5s;
  cursor: pointer;
}

.alert-danger:hover {
  background-color: rgba(220, 17, 1, 0.33);
  transition: 0.5s;
}

.danger {
  font-size: 18px;
  color: #ff0303;
  text-shadow: none;
}

.alert-simple.alert-primary {
  border: 1px solid rgba(6, 241, 226, 0.81);
  background-color: rgba(1, 204, 220, 0.16);
  box-shadow: 0px 0px 2px #03fff5;
  color: #03d0ff;

  transition: 0.5s;
  cursor: pointer;
}


#update_logger_message_inner {
  margin-top: 18px;
  opacity: 0;
  transition: opacity 1s;
}


#update_logger_message_inner.show {
  opacity: 1;
  transition: opacity 1s;
}

.transparent {
  opacity: 0;
}

.opaque {
  opacity: 1;
}

.cursor-wait {
  cursor: wait;
}

.full-chart {
  width: 80% !important;
}

.full-chart-parent {
  display: flex;
  justify-content: space-around;
}

.chart_time_input {
  width: 226px;
}

#warning_message {
  margin-left: 160px;
  margin-right: 160px;
}

.timerange {
  font-family: 'Poppins';
  padding: 1px;
  border-radius: 4px;
}


.fpimage {
  width: 29%;
  float: left;
  margin-left: 10%;
  background-color: #0046b0bf;
  display: flex;
  justify-content: space-around;
  align-content: space-around;
  flex-wrap: wrap;
  flex-direction: row;
  color: white;
}

.fpcontent {
  width: 51%;
  /* padding: 0px; */
  background-color: white;
  font-size: 11pt;
  float: right;
  margin-right: 10%;
  background-color: #ffffffc7;
}

.fpcontent img {
  margin-right: 15px;
  float: left;
}

.fpcontent h3,
.fpcontent p {
  margin-left: 15px;
  display: block;

}

.break {
  flex-basis: 100%;
  height: 0;
}

.logoblock {
  background-color: white;
  width: 100%;
  display: flex;
  justify-content: space-evenly;

  align-items: center;
}

.logos {
  display: flex;
  justify-content: space-evenly;
  width: 80%;
}

.logodiv {


  width: 13%;

}

.more {
  color: #005cb0;
  float: right;
  font-size: 14pt;
  cursor: pointer;
}


.more-modal-content {
  background-color: #fefefe;
  margin: 6% auto;

    padding: 32px;
    /* border: 1px solid #888; */
    width: 76vw;
    min-height: 34vw;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 25px #6c6666;
    -moz-box-shadow: 0px 0px 25px #6c6666;
    box-shadow: 4px 6px 10px 7px #6c6666
}

.map-tab-wide {
  width: 217px;
  background-color: #63a3e3;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  text-align: center;
  margin-top: 1px;
  margin-left: 10px;
  color: white;
  cursor: pointer;
}




table.dataTable td {
  font-size: .85em;
}

table.dataTable th {
  font-size: .9em;
}

table.dataTable td.status-col {
  font-size: 1em;
}

.area{
    background: #0046b0bf;
    /* background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);   */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position:absolute;
    z-index:-1;
   
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 96%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 100%;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 100%;
    }

}

.zig-zag{
  background-color: #e5e5f7;
  opacity: 0.8;
  background-image:  linear-gradient(135deg, #0046b0 25%, transparent 25%), linear-gradient(225deg, #0046b0 25%, transparent 25%), linear-gradient(45deg, #0046b0 25%, transparent 25%), linear-gradient(315deg, #0046b0 25%, #e5e5f7 25%);
  background-position:  4px 0, 4px 0, 0 0, 0 0;
  background-size: 8px 8px;
  background-repeat: repeat;
}


/* Style for the wrapper */
.datetime-field {
  position: relative;
  /* width: 250px; */
}

.datetime-field input[type="datetime-local"] {
  width: 100%;
  padding: 8px !important;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: white;
  border-radius: 5px;
  outline: none;
  color: black; 
}

.datetime-field span{
  /* if you decide to add the borders make them a different color from the datetime border. also make sure the text color and side borders are the same color */
  position: absolute;
  left:0;
  padding:10px;
  pointer-events: none;
  font-size: 1em;
  /* color: rgba(0, 0, 0, 0.25); */
  text-transform: uppercase;
  /* color: #00dfc4; */
  color: #4d4d4d;
  font-size: .65em;
  transform: translateX(10px) translateY(-7px);
  /* transform: translateX(20%) translateY(50%); */
  padding: 0 5px;
  background: white;
  /* border-left: 1px solid black;
  border-right: 1px solid black; */
}

/* Style for the wrapper */
.text-field {
  position: relative;
  /* width: 250px; */
}

.text-field input[type="text|number"] {
  width: 100%;
  padding: 8px !important;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: white;
  border-radius: 5px;
  outline: none;
  color: black; 
}

.text-field span{
  /* if you decide to add the borders make them a different color from the datetime border. also make sure the text color and side borders are the same color */
  position: absolute;
  left:0;
  padding:10px;
  pointer-events: none;
  font-size: 1em;
  /* color: rgba(0, 0, 0, 0.25); */
  text-transform: uppercase;
  /* color: #00dfc4; */
  color: #4d4d4d;
  font-size: .65em;
  transform: translateX(10px) translateY(-7px);
  /* transform: translateX(20%) translateY(50%); */
  padding: 0 5px;
  background: white;
  /* border-left: 1px solid black;
  border-right: 1px solid black; */
}

.slim-select-input{
  font-family: Poppins !important;
  padding: 2px !important;
  width: 400px !important;
}

.timerange-select{
  font-family: Poppins !important;
  padding: 2px !important;
  font-size:.75em !important;
}
.timerange-select option{
  font-family: Poppins !important;
  font-size:.75em !important;
}
.slim-select-input-small{
  font-family: Poppins !important;
  padding: 2px !important;
  width: 200px !important;
}
.slim-select-input-half{
  font-family: Poppins !important;
  padding: 2px !important;
  width: 50% !important;
}


.button-link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: white;
  background-color: #0059ad;
  font-family: Poppins;
  padding: 2px 17px 3px 17px;
  margin: -3px;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  cursor: pointer;
  max-width: max-content;
  border-color: #688fb1;
  margin: 2px;
  font-size: 14px;
}

#input-number-min {
  padding: 7px;
  margin: 20px 5px 5px 15px;
  width: 88px;
}

#input-number-max {
  padding: 7px;
  margin: 5px 5px 20px 15px;
  width: 88px;
}

@media only screen and (max-width: 930px) {
  .sideBar {
    width: 100%;
    display: none !important;
  }
}

@media only screen and (max-width: 950px) {
  .sideBar {
    width: 15vw;
    display: flex;
  }
}

.sideBar {
  
  flex-direction: column;
  justify-content: space-between;
  /* height: 85vh; */
  min-width: min-content;
  border-right: 1px solid #D7DBDD;
  background-color: #FCFDFD;
  padding: 10px;
  margin-top: 40px;
  width: 15vw;
  position:fixed;
  overflow-y: auto;
}

.sideBar__item {
  cursor: pointer;
  padding: 5px 10px;
  color: #16A2D7;
  font-size: 12px;
}
.sub__item {
padding-left: 32px;
}

.sideBar__item.is-side-bar-item-selected {
  background-color: #EEF3F5;
  border-radius: 4px;
}

.cui-page {
  display: block;
  margin: 0 auto;
  max-width: 768px;
  padding: 40px 40px;
  /* overflow-y: auto; */
  max-height: 85vh;
  min-width: min-content;
  /* font-family: "Raleway", "Helvetica", sans-serif; */
}

.cui-page-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #2F3442;
}

.cui-page-sub-section{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #2F3442;
}

.cui-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
  margin-bottom: 40px;
  line-height: 1.5;
  /* background-color: #f1f1f1; */
}

.cui-panel-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  max-width: 100%;
}
.cui-content{
  padding: 32px;
  overflow-x: auto;
  color: #2F3442;
  font-weight: 400 !important;
}

.cui-content.table{
  padding: 0px;
}

.cui-content img {
  max-width: 750px;
}

.cui-description{
  margin-top: 32px;
  margin-bottom: 40px;
  color: #2F3442;
  font-weight: 400 !important;
}

.card {
  display: flex;

  flex-direction: column;

  border: 1px solid #CAD0D2;
  border-radius: 4px;
  overflow: hidden;
}

.card__description {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 15px 0;
}

.card__descriptionIcon {
  font-size: 32px;
  margin-bottom: 10px;
}

.card__descriptionText {
  color: #57727C;
  font-size: 12px;
  text-align: center;
  max-width: calc(100% - 30px);
}

.card__price {
  text-align: center;
  color: #57727C;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 15px;
  border-top: 1px solid #D7DBDD;
  background-color: #EEF3F5;
}

.card--fixedWidth {
  max-width: 120px;
}

/* .card--fullWidth{
  max-width: 750px;
}*/

.text-block.note{
  background-color: #003bff24;

}


.hang_length_div{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.hang_length_header{
  text-align: center;
    background-color: #005cb0;
    color: white;
}

.page-title-ports {
  text-align: center;
  width: 100%;
  font-size: 33pt;
  margin-top: 29px;
  color: #005cb0;
}
