html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: #ffffff;
}

h1 {
  font-size: 16px;
}

.spinner-text {
  padding-top: 5%;
  margin: auto;
  text-align: center;
}

.rapyd-logo {
  display: block;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
    margin-bottom: 20px;
  width: 250px;
}

.loader{
    margin:auto;
    text-align:center;
}

.lds-spinner {
    /* change color here */
    color: #1c4c5b
}

    .lds-spinner,
    .lds-spinner div,
    .lds-spinner div:after {
        box-sizing: border-box;
    }

.lds-spinner {
    color: currentColor;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-spinner div {
        transform-origin: 40px 40px;
        animation: lds-spinner 1.2s linear infinite;
    }

        .lds-spinner div:after {
            content: " ";
            display: block;
            position: absolute;
            top: 3.2px;
            left: 36.8px;
            width: 6.4px;
            height: 17.6px;
            border-radius: 20%;
            background: currentColor;
        }

        .lds-spinner div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: -1.1s;
        }

        .lds-spinner div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1s;
        }

        .lds-spinner div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -0.9s;
        }

        .lds-spinner div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.8s;
        }

        .lds-spinner div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.7s;
        }

        .lds-spinner div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.6s;
        }

        .lds-spinner div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.5s;
        }

        .lds-spinner div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.4s;
        }

        .lds-spinner div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.3s;
        }

        .lds-spinner div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.2s;
        }

        .lds-spinner div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.1s;
        }

        .lds-spinner div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: 0s;
        }

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

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

.error-title, warning-title {
  font-size: 34px;
}

.error-description, warning-title {
  font-size: 20px;

}

.detailed-warning-description {
    font-size: 10px;
}

.submitBtn {
    border-radius: 5px;
    padding: 15px 15px;
    background-color: lightslategray;
    color: #ffffff;
    border: none;
    text-align: center;
    font-size: .8em;
    max-width: 250px;
    white-space: normal;
}

.redirectForm {
    text-align: center;
}

.cardSchemeBox {
    width: 200px;
    margin: auto;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cardSchemeImage {
    padding: 20px;
}

.cardSchemeText {
    font-weight: bold;
    color: black;
    padding-bottom: 10px;
    font-size: 10px;
}