.vault-container {
  display: grid;
  place-items: start;
  /*justify-items: center;*/
  margin-bottom: 50px;
}

/*
.vault-partners {
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  gap: 10px;
}*/

.vault-partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px 20px;
}

@media only screen and (max-width: 600px) {
  .vault-partners {
    flex-direction: column;
  }
}

.partner-container {
  /*flex-basis: 1 1 180px;
  display: flex;
  justify-content: center;*/
  overflow: hidden;
  max-width: 210px;
  padding: 2px;
}

.partner-container img {
  padding: 2px;
}

.partner-container:hover {
  box-shadow: 0 0 5px 2px rgba(52, 105, 170, 0.5);
  border-radius: 20px;
  cursor: pointer;
}

.vault-products {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  padding-top: 20px;
}

.vault-products h3 {
  font-size: 1.1rem;
}

.vault-products label, .vault-products select, .total-cost {
  font-size: 0.95rem;
}

.vault-products select, .vault-products input[type="number"] {
  max-width: 300px;
  background-color: #eee;
  border: solid thin #ddd!important;
  padding: 10px;
  color: #262729;
}

.vault-products input[type="range"] {
  max-width: 300px;
}

.total-cost {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
}

.total-cost-units span {
  color: #3d88cb;
  font-weight: 700;
}

.product-terms {
  font-size: 0.9rem;
}

.product-terms-sla {
  color: #a94442;
  font-weight: 500;
}

.product-terms h3 {
  font-size: 1.1rem;
}

.terms-agreement input[type="checkbox"] {
  transform: scale(1.5);
}

.terms-agreement label {
  padding-left: 10px;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.login-required {
  display: none;
}

.login-required .active {
  display: block;
}

.error {
  width: 100%;
  padding: 0;
  font-size: 80%;
  color: #8F2B45;
  background-color: #FBE3E4;
  box-sizing: border-box;
}

.active {
  display: block;
}

.inactive {
  display: none;
}

/* Loading screen */
.loading-screen {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(14px);
  z-index: 999999;
}

.loading-active {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loading-text {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000000;
}

.loading-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
  width: 130px;
  border-radius: 50%;
  border: 10px solid #ddd;
  border-top-color: #2B6CB0;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.vault-container .modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.vault-container .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  overflow: auto;
  max-height: 80vh;
}


.vault-container .show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  z-index: 99;
  display: block;
}

.vault-container .modal .close-button {
  float: right;
  width: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
  font-size: 30px;
  font-weight: 600;
}

.otp-content {
  display: grid;
  place-items: center;
  margin-top: 2.5rem;
  gap: 1rem;
}

.otp-content label {
  text-align: center;
}

.otp-buttons {
  padding: 0 1rem;
}

.otp-buttons button {
  min-width: 105px;
}

.otp-content .error  {
  font-size: inherit;
  text-align: center;
  width: 90%;
}
