body {
  width: 100%;
  height: 100%;
}

.modal {
    display: none;
    /*display: flex;*/
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -ms-backdrop-filter: blur(4px);
    overflow-y: hidden;
    align-items: center;
  }
  
  .modal-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: rgb(255, 255, 255);
    margin: 15% auto;
    padding: 16px;
    width: 85%;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .modal-content-element {
    width: 90%;
    margin: 10px;
  }

  .modal-action-button {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 6px;
    background: #000000;
    box-shadow: inset 0 -3px 0 24px #00000040;
    font-family: Maybe Coffee,sans-serif;
    color: rgba(255, 255, 255);
    letter-spacing: .1em;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
  }

  .modal-header {
    color: rgba(0, 0, 0, 0.87);
    font-weight: 700;
    margin: 0;
  }

  .modal-text {
    color: rgba(0, 0, 0, 0.87);
    font-weight: 300;
    font-size: 14px;
    margin: 0;
  }

  .browser-icon {
    height: 50px;
  }

.svg-bank {
  height: 50px;
}

.svg-mastercard {
  height: 50px;
}

.modal-input {
  width: 90%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  border: solid 1px gray !important;
  border-radius: 6px;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  position: relative;
  height: 60px;
}
.loading-spinner-label {
  position: absolute;
  top: 24px;
  font-size: 14px;
}

.loader {
  display: inline-block;
  width: 60px;
  height: 60px;
  position: relative;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.input-label-error {
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
  color: red;
}