html,
body {
    height: 100%;
}
body {
    background: #f8f8f8;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-align: center;
}

body label {
    display: block;
    line-height: 40px;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.control-group {
    display: inline-block;
    margin: 10px;
    padding: 30px;
    text-align: left;
    vertical-align: top;
    background-color: #f1ebf6;
    border-radius: 5px;
}

.control-group label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.radio-buttons {
    margin: 0 auto;
    width: 30%;
}

.row {
    padding: 10px;
}

textarea {
    max-width: 750px;
    min-height: 80px;
    margin-left: 30px;
    margin-top: -15px;
    margin-bottom: 30px;
}

a:link {
    color: #572b7e;
}

a:visited {
    color: #572b7e;
}

a:hover {
    color: #bf1a4c;
}

a:active {
    color: #572b7e;
}

.logo {
    max-width: 200px;
    width: 100%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#loading {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
}
.loading-logo {
    padding: 0 3em;
    width: clamp(175px, 100vw, 300px);
}
.loading-spinner {
    margin-top: 3rem;
    border: 5px solid #f1ebf6;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #e31d3b;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 100;
}

.form-control {
    display: block;
    width: 100%;
    padding: 10px 25px;
    height: 48px;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    color: #572b7e;
    background-color: #fff;
    background-image: none;
    border: 1px solid #bababa;
    border-radius: 24px;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all ease-in-out .15s;
    transition: all .15s ease-in-out;
    text-overflow: ellipsis;
    overflow: visible;
}
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border-color: #572b7e;
}
.form-control:disabled {
    cursor: not-allowed;
    background-color: #f9f9f9;
    color: #cbcbcb;
    box-shadow: inset 0 0 16px -15px #bababa;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    font-family: "Ubuntu", sans-serif;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-transition: all .1s cubic-bezier(0, .63, .7, 1.18);
    -o-transition: all .1s cubic-bezier(0, .63, .7, 1.18);
    transition: all .1s cubic-bezier(0, .63, .7, 1.18);
}
.btn.disabled,
.btn[disabled] {
    cursor: not-allowed;
    background: #bababa !important;
    border-color: #bababa !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    pointer-events: none;
    color: #fff;
}
.btn:enabled.focus,
.btn:enabled:focus,
.btn:enabled:hover {
    text-decoration: none;
    outline: none;
}
.btn .btn-text {
    line-height: 18px;
    display: inline-block;
    vertical-align: middle;
}
.btn-sm {
    padding: 7px 15px;
    font-size: 11px;
    height: 34px;
    border-radius: 17px;
}
.btn-sm .icon-next {
    margin-left: 17px;
}
.btn-md {
    padding: 8px 20px;
    font-size: 15px;
    line-height: 18px;
    border-radius: 26px;
    height: 39px;
}
.btn-md .icon-next {
    margin-left: 26px;
    font-size: 16px;
    margin-top: 2px;
}
.btn-lg {
    padding: 8px 20px;
    font-size: 15px;
    line-height: 18px;
    border-radius: 26px;
    height: 44px;
}
.btn-lg .icon-next {
    margin-left: 26px;
    font-size: 16px;
    margin-top: 2px;
}
a.btn-lg {
    line-height: 24px;
}
.btn-default {
    color: #fff;
    border-color: #e31d3b;
    background: #e31d3b;
}
.btn-default:enabled:focus,
.btn-default:enabled:hover {
    color: #fff;
    border-color: #bf1a4c;
    background: #bf1a4c;
}
a.btn-default:focus,
a.btn-default:hover,
a.btn-default:active {
    color: #fff;
    border-color: #bf1a4c;
    background: #bf1a4c;
}
.btn-white-contour {
    color: #fff;
    border-color: #fff;
    background: transparent;
}
.btn-white-contour:enabled:focus,
.btn-white-contour:enabled:hover {
    color: #fff;
    border-color: #e31d3b;
    background: #e31d3b;
}
.btn-purple {
    color: #572b7e;
    border-color: #572b7e;
    background: transparent;
}
.btn-purple:focus,
.btn-purple:hover,
.btn-purple:enabled:focus,
.btn-purple:enabled:hover {
    color: #fff;
    border-color: #572b7e;
    background: #572b7e;
}

.btn-primary {
    color: #000;
    border-color: #000;
    background: #fff;
}
.btn-primary:enabled:focus,
.btn-primary:enabled:hover {
    color: #000;
    border-color: #000;
    background: #f6f6f6;
}
.btn-200 {
    min-width: 200px;
}
.btn-320 {
    max-width: 320px;
    width: 100%;
}
.btn-145 {
    min-width: 145px;
}
.btn-block {
    display: block;
    width: 100%;
}

.form-check,
.form-radio {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.form-check input[type=checkbox],
.form-radio input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
}
.form-check input[type=checkbox]:checked~.form-check-indicator,
.form-radio input[type=checkbox]:checked~.form-check-indicator {
        border-color: #572b7e;
    }
.form-check input[type=checkbox]:checked~.form-check-indicator:after,
.form-radio input[type=checkbox]:checked~.form-check-indicator:after {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.form-radio input[type=radio] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
}
.form-radio input[type=radio]:checked~.form-radio-indicator {
    border-color: #572b7e;
}
.form-radio input[type=radio]:checked~.form-radio-indicator:after {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.form-check .form-check-label,
.form-radio .form-radio-label {
    position: relative;
    margin: 0;
    padding-left: 33px;
    text-align: left;
    line-height: 22px;
    vertical-align: middle;
    margin-bottom: 25px;
}
.form-check .form-check-label .form-check-indicator {
    cursor: pointer !important;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-position: 50%;
    border: 1px solid #d2d2d2;
    background-color: #fff;
    border-radius: 2px;
}
.form-check .form-check-label .form-check-indicator:after {
    top: 50%;
    left: 50%;
    margin-left: -7px;
    margin-top: -6px;
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    position: absolute;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: #e31d3b;
    font-size: 14px;
    content: "\f10c";
}

.form-radio .form-radio-label .form-radio-indicator {
    cursor: pointer !important;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-position: 50%;
    border: 1px solid #d2d2d2;
    background-color: #fff;
    border-radius: 50%;
}
.form-radio .form-radio-label .form-radio-indicator:after {
    top: 50%;
    left: 50%;
    margin-left: -0.25rem;
    margin-top: -0.25rem;
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    position: absolute;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #e31d3b;
    font-size: 14px;
    content: "";
    z-index: 1;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.form-check .form-check-text,
.form-radio .form-radio-text {
    cursor: pointer !important;
    color: #000;
    display: inline;
    vertical-align: middle;
}
.form-check .form-check-text a,
.form-radio .form-radio-text a {
    color: #572b7e;
    text-decoration: underline;
}
.form-check .form-check-text a:focus,
.form-check .form-check-text a:hover,
.form-radio .form-radio-text a:focus,
.form-radio .form-radio-text a:hover {
    text-decoration: none;
}

input {
    outline: none;
    -webkit-appearance: none !important;
}
input[type="radio"] {
    -webkit-appearance: radio !important;
}
.input-checkbox {
    -webkit-appearance: checkbox !important;
}
input[type="text"] {
    -webkit-appearance: textfield !important;
}
@media (max-width: 920px) {
    h1 {
        font-size: 22px;
    }
    textarea {
        width: auto !important;
        margin: -15px 0 20px !important;
    }
}