@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;600&display=swap');
body {
  font-family: 'Roboto', sans-serif;
  background-color: transparent;
  margin: 0;
  padding: 0 0 100px;
}

.error-title {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.max-wait {
  text-align: center;
  margin-bottom: 15px;
  color: #eccc22;
  font-size: 20px;
  font-weight: 500;
}
.welcome {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.welcome span {
  display: inline-flex;
  line-height: 14px;
  padding: 2px 5px;
  font-weight: 400;
  background-color: #fc6826;
  color: #fff;
  margin: 0 5px;
  border-radius: 4px;
}
.title {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.title span {
  display: block;
  opacity: .5;
}

.promotion {
  margin-top: 30px;
}
.promotion .inputs {
  display: flex;
  align-items: center;
}
.promotion .form-control:focus {
  box-shadow: none;
  border-color:#dee2e6;
}
.promotion .btn {
  margin-left: 5px;
}
.promotion .btn, .promotion .btn:active {
  background-color: #fc6826;
  color: #fff;
}

.items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.item-group-title {
  flex: 0 0 100%;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}
.item {
  flex: 0 0 25%;
}
.item-content {
  display: block;
  margin: 5px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px 20px 5px 5px;
  background-color: rgba(0, 0, 0, .4);
}
.item .img {
  position: relative;
  overflow: hidden;
}
.item img {
  width: 100%;
  height: auto;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.item .name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 6px 12px;
}
.item.disabled {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  pointer-events: none;
  cursor: not-allowed;
}
.item-content:not(.disabled):hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.card-content {
  max-height: 500px;
  overflow: auto;
}
.card {
  background-color: rgba(255,255,255,.05);
  color: #fff;
  margin-bottom: 5px;
  font-size: 13px;
}
.card.empty {
  padding: 20px;
  text-align: center;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-color: rgba(255,255,255,.1);
}
.card-header .date span {
  display: inline-flex;
  opacity: .6;
  margin-left: 2px;
}
.card-header .status {
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 1px 5px;
  font-size: 12px;
}
.spinner {
  margin-right: 5px;
}
.process {
  background-color: #6a707c;
}
.denied {
  background-color: #a02803;
}
.approved {
  background-color: #138f45;
}
.card-body {
  text-align: center;
}
.card .name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.card .message {
  font-weight: 300;
  opacity: .8;
}

@media only screen and (min-width: 1280px) {
  .container {
    max-width: 1400px;
  }
}
@media (max-width : 1399px) {
  .item {
    flex: 0 0 25%;
  }
}
@media (max-width : 1199px) {
  .item {
    flex: 0 0 50%;
  }
}
@media (max-width : 767px) {
  .item {
    flex: 0 0 100%;
  }
  .item-content {
    background-color: rgba(106, 112, 124, .7);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    padding: 5px;
    display: flex;
    align-items: center;
    text-align: left;
  }
  .item img {
    width: auto;
    height: 50px;
  }
  .item .name {
    margin-left: 10px;
    background-color: transparent;
    padding: 0;
  }
  .item-content:not(.disabled):hover img {
    -webkit-transform: none;
    transform: none;
  }
}

#loader {
  background-color: rgba(0,0,0,.2);
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}
.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  margin: 0 0 15px 15px;
  --c:#0000 calc(100%/3),#fff 0 calc(2*100%/3),#0000 0;
  --c1:linear-gradient(90deg,var(--c));
  --c2:linear-gradient( 0deg,var(--c));
  background: var(--c1),var(--c2),var(--c1),var(--c2);
  background-size: 300% 4px,4px 300%;
  background-repeat: no-repeat;
  animation: l12 1s infinite linear;
}
.loader:after {
  margin: 15px 15px 0 0;
  transform: scale(-1,-1);
}
@keyframes l12 {
  0%   {background-position: 50%  0,100% 100%,0    100%,0 0}
  25%  {background-position: 0    0,100% 50% ,0    100%,0 0}
  50%  {background-position: 0    0,100% 0   ,50%  100%,0 0}
  75%  {background-position: 0    0,100% 0   ,100% 100%,0 50%}
  75.01%{background-position: 100% 0,100% 0   ,100% 100%,0 50%}
  100% {background-position: 50%  0,100% 0   ,100% 100%,0 100%}
}

.spinner {
  text-align: center;
}

.spinner > div {
  width: 10px;
  height: 10px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}