body {
  padding: 2%;
}
.container {
  padding-right: 1rem;
  padding-left: 1rem;
}

* {
  background: rgba(0, 0, 0, 0.05);
}

/*================================================*/
/* Generic list styles
/*================================================*/
.portfolio-list-item,
.search-list-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .portfolio-list-item,
  .search-list-item {
    flex-direction: row;
  }
}
.big-text{
  font-size: 70px;
}
.responsive-list,
.search-list,
.notification-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.btn {
  border-radius: 10px 1px 12px 0;
  cursor: pointer;
  font-weight: bold;
}
.btn  a {
  text-decoration: none;

}
.responsive-list-cell--no-padding,
.notification-list .responsive-list-item-cta {
  padding: 0;
}

.responsive-list-item,
.notification-list-item {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1rem;
  border-radius: 25px;
  border-width: 5px;
  border-style: solid;
}

[class*="responsive-list-item-"] {
  word-break: break-word;
  padding: 1rem;
}

@media only screen and (min-width: 768px) {
  .responsive-list-item,
  .notification-list-item {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
}
/*================================================*/
/* Notification List styles
/*================================================*/
.notification-list .responsive-list-item-main {
  width: 100%;
  flex: 1 0 auto;
}
.notification-list .responsive-list-item-info {
  width: 100%;
  flex: 1 0 auto;
}
.notification-list .responsive-list-item-cta {
  width: 100%;
  flex: 1 0 auto;
}
.notification-list .responsive-list-item-cta .btn {
  height: 100%;
  width: 100%;
}

[class*="notification-list-item-"] {
  word-break: break-word;
  padding: 1rem;
}

.notification-list-item-main {
  width: 100%;
  flex: 1 0 auto;
}

.notification-list-item-info {
  width: 83.3333333333%;
  flex: 1 0 auto;
}

.notification-list-item-cta {
  width: 16.6666666667%;
  flex: 1 0 auto;
  padding: 0;
}
.notification-list-item-cta .btn {
  height: 100%;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .notification-list-item-main {
    width: 33.3333333333%;
    flex: 1 0 auto;
  }

  .notification-list-item-info {
    width: 58.3333333333%;
    flex: 1 0 auto;
  }

  .notification-list-item-cta {
    width: 8.3333333333%;
    flex: 1 0 auto;
  }
}

.dropdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  border-radius: 25px;
}
.selected-category {
  width: 100%;
  height: 50px;
  border-radius: 15px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  font-weight: bold;
}
.options {
  /*background: aqua;*/
  width: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  display: flex;
  transition: all 0.9s;
  border-radius: 25px;
}

.options span {
  text-transform: uppercase;
  width: 90%;
  height: 50px;

  text-align: center;
  line-height: 40px;
  border-bottom: 2px solid transparent;
  margin: 5px 0;
  transition: all 0.3s;
  cursor: pointer;
}
.options span:hover {
  border-radius: 15px;
  font-size: 20px;
}
#loading-overlay {
  position: fixed; /* Keep the overlay on top of content */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

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

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top-color: #45455a;
  animation: spin 1s linear infinite;
  margin-bottom: 50px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: #fff;
  margin-left: 10px;
  font-size: 60px;
}
.countdown {
  width: 100%;
  height: 70%;
  display: flex;
  font-size: 40px;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
#test div {
  width: 200px;
  height: 50px;
}
