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;
}

/* 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);
  }
}
.navbar .navbar-logo .logo {
  width: 151px !important;
  height: 48px !important;
}
.navbar .navbar-logo .logo-mobile {
  width: 71px !important;
  height: 47px !important;
}

.avatar-navbar {
font-size: 32px;
}

.lockers-list {
text-align: center;
}

.logo-single {
width: 298px !important;
height: 70px !important;
background: url(../img/logo-white.svg) no-repeat !important;
background-position: 50%;
margin-bottom: 0px !important;
}

.table-dashboard {
margin: 0 auto;
}

.table-dashboard tr td{
padding-right: 15px;
font-size: 18px;
}

#map {
width: 100%;
height: 400px;
background-color: grey;
}

.select2-container .select2-selection--single .select2-selection__rendered {
padding-left: 10px !important;
padding-top: 6px;
}

.select2-container--default .select2-selection--single {
border-radius: 0px !important;
height: 40px !important;
}

.select2-selection__clear {
display: none;
}

.filter-card {
padding: 1rem !important;
}

.info-romaneio-table {
font-size: 1.7em;
font-weight: bold;
}


