*, *::after, *::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield; 
}

.form-stages {
    margin: 0 auto;
    width: 320px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-stages__input,
.form-stages__submit,
.form-stages__select {
    display: block;
    width: 100%;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px 20px 5px 20px;
    outline: none;
}

.form-stages__input {
    height: 40px;
    font-size: 16px;
    outline: none;
}

.form-stages__input:focus {
    background: rgba(100,100,100,.1);
}

.form-stages__input[disabled] {
    background: rgba(100,100,100,.1);
}

.form-stages__select:focus {
    background: rgba(100,100,100,.1);
}

.form-stages__label {
    width: 100%;
    text-align: left;
    margin: 5px 0;
}

.form-stages__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    padding: 14px 5px;
    background: linear-gradient(to bottom, #ff9696, #ff0303);
    border-width: 0;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    max-width: 100%;
    width: 100%;
    height: 60px;
}

.form-stages__submit:focus {
    outline-color: #ff9696;
    outline-offset: 2px;
}

.blue-color {
    background:#47C9ED;
    border-radius:2px;
}

.blue-color:hover {
    color: #fff;
}

.form-stage-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-stages__select {
    height: 40px;
    margin-bottom: 15px;
    padding: 5px;
}

.form-stages__select[disabled] {
    background-color: rgba(0, 0, 0, .1);
}

option {
    padding: 5px !important;
}

.invalidInput {
    border: 3px solid red !important;
}

.wrongNumberMessage {
    display: none;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: red;
}

.wrongNumberMessage--visible {
    display: block;
    width: 100%;
    text-align: center;
}


.js-submitBtn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.js-submitBtn div {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* loader */
.lds-dual-ring {
    display: inline-block;
    width: 15px;
    height: 15px;
}

.lds-dual-ring:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1.00);
    }

    100% {
        transform: scale(0.9);
    }
}
.form-stages {
    position: relative;
}
.small_text {
    font-size: 10px;
    margin: 10px auto;
    text-align: left;
    width: 100%;
}