:root {
    --primary-color: rgb(11, 78, 179)
}

*,
::before,
::after {
    box-sizing: border-box;
}

body {
    font-family: Montserrat, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    /* display: grid; */
    place-items: center;
    min-height: 90vh;
}

header,
header img {
    height: 40px;
}


header img {
    margin-left: 5%;
}

header {
    background-color: #201B49;
    width: 100%;
    margin-bottom: 2rem;
}

/* Global Stylings */
label {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

input, .option, textarea {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 1rem;
}

textarea, #personalBirth {
    resize: none;
    color: #000;
    font-family: Montserrat, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

input:focus, textarea:focus {
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ECE;
}

#custom-button {
    padding: 10px;
    color: white;
    background-color: var(--primary-color);
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

#custom-button:hover {
    background-color: rgb(55, 126, 233);
}

#custom-text {
    font-family: sans-serif;
    color: #aaa;
}

#upEin {
    display: none;
}

.option {
    background-color: #FFF;
}

#coutryCode, #personalCoutry {
    display: block;
    width: 30%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    float: left;
    display: inline-block;
}

#phoneNumber, #personalPhone {
    display: block;
    width: 70%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}

.welcome {
    font-size: 1.1rem;
    text-align: center;
}

.width-50 {
    width: 50%;
}

.ml-auto {
    margin-left: auto;
}

.text-center, .final-form {
    text-align: center;
}

/* Progress bar */
.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem 0 4rem;
}

.progressbar::before, .progress {
    content: "";
    position: absolute;
    top: 50%;
    background-color: #dcdcdc;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    z-index: -1;
}

.progress {
    background-color: var(--primary-color);
    width: 0%;
    transition: 0.3s;
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-step::before {
    counter-increment: step;
    content: counter(step);
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 0.85rem;
    color: #666;
}

.progress-step-active {
    background-color: var(--primary-color);
    color: #f3f3f3;
}

/* Form */
.form {
    width: clamp(320px, 30%, 430px);
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 0.35rem;
    padding: 1.5rem;
    display: grid;
}

.form-step {
    font-size: 1.1rem;
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
}

.form-step-active {
    display: block;
}

.input-group {
    margin: 2rem 0;
}

/* Button */
.btns-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.clearfix {
    gap: 1.5rem;
    display: flex;
    justify-content: center;
}

.btn, .btn-prev {
    padding: 0.75rem;
    display: block;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #f3f3f3;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-prev {
    background-color: #CCC;
    color: #292626;
}

.btn:hover, .btn-prev:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

/* Float cancel and delete buttons and add an equal width */
.clearfix button {
    margin: 20px 50px 0 10px;
    border-radius: 6px;
}

/* Add a color to the cancel button */
.cancelbtn {
    background-color: #ccc;
    color: #201B49;
    float: left;
}

/* Add a color to the delete button */
.acceptbtn {
    background-color: #3BCC97;
    float: right;
}

/* Add padding and center-align text to the container */
.container {
    display: grid;
    padding: 6px;
    text-align: center;
    color: #201B49;
    border-radius: 6px;
    box-sizing: border-box;
}

/* The Modal (background) */
.modal {
    background-color: rgba(200, 200, 201, 0.5);
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */

}

/* Modal Content/Box */
.modal-content {
    min-height: 300px;
    background-color: #fefefe;
    margin: 40% auto 15% auto;
    /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 90%;
    /* Could be more or less, depending on screen size */
    border-radius: 6px;
}

/* Style the horizontal ruler */
hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.clear {
    clear: both;
}

.btn-language {
    display: none;
}

.vff-modal {
    /* max-width: 1080px; */
    background-color: #dcdbdd;
    border-radius: 6px;
    min-width: 300px;
    min-height: 460px;
    position: absolute;
    display: grid;
    justify-content: center;

    grid-template-columns: 300px;
    grid-template-rows: 70px auto 70px;

    height: 75%;
    width: 90%;
    z-index: 1;
    gap: 5px;
    box-sizing: border-box;
    margin: 0 10%;
}

.vff-modal iframe {
    background-color: white;
    border-radius: 6px;
    min-height: 300px;
    min-width: 170px;
    width: 100%;
    height: 100%;
    justify-self: center;
}

.vff-modal h2 {
    text-align: center;
    color: #201B49;
}

.vff-modal #btn-confirm {
    border-radius: 6px;
    width: 150px;
    height: 40px;
    justify-self: center;
    margin: 5%;
    background: linear-gradient(to right, rgb(0, 20, 125) 0%, rgb(255, 97, 1) 100%);
    border-radius: 100px;
    color: #FFF;
}

/* * ### TEXT HOVER ### */
.tooltipbr, .tooltipus {
    position: relative;
    display: inline-block;
}

.btn-language .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 2;
}

.term-pix {
    float: left;
    margin-left: 10px;
    width: 20px;
}

.spam-pix {
    width: 100%;
    font-size: .85rem;
}