#popupModal {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

/* Animation keyframes from 0.1 to 0.5 opacity */
@keyframes fadeInOpacity {
  0% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.9;
  }
}
/* Style the login form container */
.login-form-container {
  max-width: 400px;
  margin: 0 auto;
}

/* Style the input fields */
.login-form-container input[type=text],
.login-form-container input[type=password],
.login-form-container input[type=submit] {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Style the submit button */
.login-form-container input[type=submit] {
  background-color: #0a496e;
  color: #fff;
  cursor: pointer;
}

/* Style the form heading */
.login-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Class to apply animation */
.fade-in-opacity {
  animation: fadeInOpacity 1s infinite; /* 'forwards' keeps the element at 0.5 opacity after animation ends */
}

.subs-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-self: flex-start;
}
@media (max-width: 700px) {
  .subs-tabs {
    flex-direction: column;
  }
}
.subs-tabs .tab {
  opacity: 0.1;
  padding: 10px;
  border: 1px solid #014775;
  color: #014775;
  max-width: 300px;
}
.subs-tabs .tab_inner p {
  font-size: 15px;
  margin-bottom: 0px;
}
.subs-tabs .sub_ordered_books {
  display: none;
}
.subs-tabs .sub_book_sum {
  display: none;
}
.subs-tabs .sub_books_left {
  display: none;
}
.subs-tabs .sub_date {
  display: none;
}
.subs-tabs .tab.active {
  opacity: 1;
}
.subs-tabs .tab.active .sub_ordered_books {
  display: block;
}
.subs-tabs .tab.active .sub_date {
  display: block;
}
.subs-tabs .tab.active .sub_book_sum {
  display: block;
}
.subs-tabs .tab.active .sub_books_left {
  display: block;
}

.selectionBg .book-checkbox {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 20px; /* Desired width */
  height: 20px; /* Desired height */
  transform: scale(1.2); /* Scaling the checkbox */
  -webkit-transform: scale(1.2); /* For Safari */
  pointer-events: none;
}

.selectionBg:hover .nrSelectBook {
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.wrap_results {
  padding-top: 1em;
}

#submit-books {
  display: none;
  background-color: #0a496e;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 50vw;
  margin: auto;
  flex-direction: row;
  justify-content: space-between;
  z-index: 9;
  padding: 1em;
  color: white;
}
@media (max-width: 700px) {
  #submit-books {
    width: 80vw;
    flex-direction: column;
  }
}
#submit-books .selection {
  width: 75%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media (max-width: 700px) {
  #submit-books .selection {
    flex-direction: column;
  }
}
#submit-books .selection div {
  margin-left: 10px;
}
#submit-books #submit-books-btn {
  width: 10%;
}
@media (max-width: 700px) {
  #submit-books #submit-books-btn {
    width: 40%;
    margin-top: 10px;
  }
}

.no_books_left {
  display: none;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
  text-align: center;
}

.error {
  background-color: red;
}

.success {
  background-color: green;
}

.hideDivs {
  height: 420px;
  background-color: gray;
  margin: 0px 10px;
}

.msg {
  position: fixed;
  top: 5em;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  width: 50%;
  color: white;
  padding: 10px 30px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
}
.msg .closeError span {
  display: inline-block;
  transform: rotate(45deg);
  cursor: pointer;
  font-size: 2em;
  line-height: 1;
}/*# sourceMappingURL=subs.css.map */