@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

html {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

#pay-form-vue {
    font-family: "Roboto", sans-serif;
    max-width: 900px !important;
}

#pay-form-vue label,
#pay-form-vue .h4,
#pay-form-vue .h5 {
    font-family: "Roboto", sans-serif;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-label, .form-check-label {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

label.form-label {
    margin-bottom: 4px !important;
}

label.form-check-label {
    margin-bottom: 0;
}

label.form-radio-label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.offer-link {
    color: #fff;
    border-bottom: 1px dashed #fff;
    transition: all 0.2s ease-in-out;
}

.offer-link:hover {
    color: #fff;
}

#vue-form-phone {
    letter-spacing: 0.05em;
}

input.form-control::placeholder {
    color: #626569;
}

input.form-control, select.form-select {
    font-size: 16px;
    font-weight: 400;
    max-width: 100%;
    height: 48px;
    border-radius: 8px;
    background-color: #fff;
    color: #666;
    border: none;
    box-sizing: border-box;
}

input.form-control:focus, select.form-select:focus {
    color: #666 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input.form-control:disabled, select.form-select:disabled {
    background-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

input.with-border {
    border: 1px solid #ced4da;
    border-radius: .375rem;
}

input.edit-cost {
    font-weight: 700;
    border: none;
    background: transparent;
    color: #fff;
    padding: 0;
}

input.edit-cost::-webkit-outer-spin-button,
input.edit-cost::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.vue-container {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
}

.vue-form-background {
    /* background-color: #90bcea; */
    background-color: #a6bbff;
    box-shadow: 0 0 5px 0 rgba(49, 134, 189, 0.3);
    padding: 24px 12px;
    width: 100%;
    border-radius: 14px;
}

.btn-link:hover, .btn-link:focus {
    background-color: initial;
    color: #0a58ca;
    text-decoration: underline;
}

.btn-close:hover, .btn-close:focus {
    background-color: initial;
}

.vue-btn {
    font-size: 16px;
    font-weight: 400;
    height: 48px;
    line-height: 48px;
    text-decoration: none;
    display: inline-block;
    border: none;
    padding: 0 2.5em;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    user-select: none;
}

.vue-btn-small {
    height: 36px;
    line-height: 36px;
}

.vue-btn-actions {
    display: flex;
    justify-content: space-around;
    padding: 30px 12px 12px 12px;
}

button.vue-rounded-btn {
    border-radius: 50px;
}

.vue-purple, .vue-purple:focus {
    background-color: #707BFF;
    color: #fff;
}

.vue-purple:hover {
    background-color: #5f69db !important;
    color: #fff !important;
}

.vue-purple-text {
    color: #4054B2;
}


.vue-green, .vue-green:focus, .vue-green:hover, .vue-btn-success, .vue-btn-success:focus, .vue-btn-success:hover {
    background-color: #289a46;
    color: #fff;
}

.vue-green:hover {
    background-color: #2b8d46;
    color: #fff;
}

button:disabled.vue-btn {
    background-color: #7788aa !important;
    color: #eee;
    cursor: not-allowed;
}

.vue-btn-success {
    background-color: #2b8d46;
    color: #fff;
}

button:disabled.vue-btn-success {
    background-color: #2b8d46 !important;
}

/* Steps */

.steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.steps .step {
    display: block;
    width: 100%;
    margin-bottom: 35px;
    text-align: center
}

.steps .step .step-icon-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 32px;
    text-align: center
}

.steps .step .step-icon-wrap::before,
.steps .step .step-icon-wrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 50%;
    height: 3px;
    margin-top: -1px;
    background-color: #e1e7ec;
    z-index: 1
}

.steps .step .step-icon-wrap::before {
    left: 0
}

.steps .step .step-icon-wrap::after {
    right: 0
}

.steps .step .step-icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid #e1e7ec;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #a4b1cb;
    font-size: 16px;
    font-weight: 500;
    z-index: 5
}

.steps .step .step-title {
    margin-top: 12px;
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.steps .step:first-child .step-icon-wrap::before, .steps .step:last-child .step-icon-wrap::after {
    display: none;
}

.steps .step.completed .step-icon-wrap::before,
.steps .step.completed .step-icon-wrap::after {
    background-color: #5f69db;
}

.steps .step.completed .step-icon {
    border-color: #5f69db;
    background-color: #5f69db;
    color: #fff;
}

@media (max-width: 768px) {
    .vue-form-background {
        padding: 12px 0;
    }

    .steps .step .step-title {
        display: none;
    }
}