@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap');
:root{
    --white: rgba(255, 255, 255, 100);
    --color_primary: rgba(63, 81, 181, 100);
    --background-color: rgba(234, 233, 239, 100);
    --black: rgba(0, 0, 0, 100);
    --black_90: rgba(0, 0, 0, 0.9);
    --black_80: rgba(0, 0, 0, 0.8);
    --black_70: rgba(0, 0, 0, 0.7);
    --black_60: rgba(0, 0, 0, 0.6);
    --black_50: rgba(0, 0, 0, 0.5);
    --black_40: rgba(0, 0, 0, 0.4);
    --black_30: rgba(0, 0, 0, 0.3);
    --black_20: rgba(0, 0, 0, 0.2);
    --black_10: rgba(0, 0, 0, 0.1);
    --green: rgba(76, 175, 80, 100);
}

body{
    display: flex;
    flex-direction: column;
    /*background: #f8f8f8;*/
    font-family: 'Lato', sans-serif;
    color: var(--black_80);

    background: #f8f8f8;

}

h1{
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    background: var(--green);
    margin-left: -35px;
    padding: 7px;
    color: var(--white);
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
h3{
    font-size: 22px;
    color: var(--black_70);
    font-weight: 400;
}
label{
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
}

.navbar{
    border-bottom: 1px solid var(--black_20);
    background: var(--white) !important;
}
.navbar .navbar-brand img{
    height: 35px;
    margin-left: 10px;
}
.navbar .navbar-nav{
    padding: 10px;
}
.navbar-nav .nav-item .nav-link{
    font-size: 18px;
    color: var(--black_80);
}
.navbar-nav .nav-item .nav-link.active{
    color: var(--color_primary);
    font-weight: bold;
}
.custom-content{
    padding: 30px;
    /*box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;*/
    background: var(--white) !important;
    border-radius: 10px;
    border: 1px solid var(--black_10);
}
.helper-text{
    display: block;
    font-size: 15px;
    padding: 5px;
    color: var(--color_primary);
}
.text-agreement{
    font-size: 19px;
}
.text-agreement a{
    text-decoration: none;
    color: var(--color_primary);
}

.instructions{
    display: inline-block;
    font-size: 18px;
    padding: 0;
    margin-bottom: 20px;
    color: var(--black_80);
}
.instructions span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30px;
    height: 30px;
    background: var(--color_primary);
    color: white;
    border-radius: 100px;
    margin-right: 5px;
}
.instructions strong{
    color: var(--color_primary);
}
.verify-links{
    font-size: 18px;
    word-break: break-word;
    overflow: auto;
}
.verify-links li{
    margin-bottom: 10px;
}
.verify-links a{
    text-decoration: none;
    color: var(--color_primary);
    font-size: 18px;
}
.table{
    word-break: break-word;
}

.adview{
    display: flex;
    justify-content: center;
}
.adview .ad-placeholder{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 300px;
    color: var(--black_80);
    font-size: 25px;
    border: 3px dotted var(--black_30);
}

.progress-bar{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: var(--black_10);
}
.progress-bar .progress-wrapper{
    display: flex;
    align-items: center;
    background: var(--black_60);
    border-radius: 10px;
    padding: 15px;
}
.progress-bar .progress-wrapper .spinner-border{
    color: var(--white);
    width: 35px;
    height: 35px;
}

.dialog{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: var(--black_10);
}
.dialog .dialog-wrapper{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 300px;
    background: #ffffff;
    border-radius: 10px;
    word-break: break-word;
}
.dialog .dialog-wrapper .dialog-title{
    display: inline-block;
    color: var(--black);
    margin-top: 20px;
    font-size: 17px;
    font-weight: 700;
}
.dialog .dialog-wrapper .dialog-msg{
    display: inline-block;
    font-size: 15px;
    margin-top: 5px;
    margin-right: 20px;
    margin-left: 20px;
}
.dialog .dialog-wrapper .dialog-split{
    background: var(--black_10);
    height: 1px;
    width: 100%;
    margin-top: 10px;
}
.dialog .dialog-wrapper .btn-dismiss{
    height: 45px;
    background: transparent;
    outline: none !important;
    border: none !important;
    color: #007aff;
    font-size: 18px;
}
.dialog .dialog-wrapper .btn-dismiss:hover{
    background: #f3f3f3;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.social-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.social-container h3{
    color: var(--black_90);
    padding: 0;
    margin: 0;
}
.social-container i{
    font-size: 35px;
}
.social-container .fa-facebook{
    color: rgb(66 103 178);
}
.social-container .fa-twitter{
    color: rgb(29 161 242);
}
.social-container .fa-whatsapp{
    color: rgb(	7 94 84);
}

/*Input*/
.form-control, .form-select{
    display: block;
    box-shadow: none !important;
    background: var(--white);
    border-radius: 0 !important;
    padding: 6px 15px;
    font-size: 20px;
}
.form-control:focus, .form-control:focus-visible, .form-select:focus, .form-select:focus-visible{
    outline: 2px solid var(--color_primary);
}

input[type='radio'], input[type="checkbox"]{
    width: 20px;
    height: 20px;
    accent-color: var(--color_primary);
}

textarea{
    font-size: 15px !important;
}

/*Buttons*/
.custom-button {
    align-items: center;
    appearance: none;
    border-radius: 4px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 1px -2px,rgba(0, 0, 0, .14) 0 2px 2px 0,rgba(0, 0, 0, .12) 0 1px 5px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .0892857em;
    line-height: normal;
    outline: none;
    overflow: visible;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    will-change: transform,opacity;
}

.table a.btn:after{
    display: none;
}

.custom-button:hover {
    color: white;
    box-shadow: rgba(0, 0, 0, .2) 0 2px 4px -1px, rgba(0, 0, 0, .14) 0 4px 5px 0, rgba(0, 0, 0, .12) 0 1px 10px 0;
}

.custom-button:disabled {
    background-color: rgba(0, 0, 0, .12);
    box-shadow: rgba(0, 0, 0, .2) 0 0 0 0, rgba(0, 0, 0, .14) 0 0 0 0, rgba(0, 0, 0, .12) 0 0 0 0;
    color: rgba(0, 0, 0, .37);
    cursor: default;
    pointer-events: none;
}

.custom-button:not(:disabled) {
    background-color: var(--color_primary);
}
.custom-button.disabled{
    background-color: rgba(0, 0, 0, .12);
    box-shadow: rgba(0, 0, 0, .2) 0 0 0 0, rgba(0, 0, 0, .14) 0 0 0 0, rgba(0, 0, 0, .12) 0 0 0 0;
    color: rgba(0, 0, 0, .37);
    cursor: default;
    pointer-events: none;
}

.custom-button:focus {
    box-shadow: rgba(0, 0, 0, .2) 0 2px 4px -1px, rgba(0, 0, 0, .14) 0 4px 5px 0, rgba(0, 0, 0, .12) 0 1px 10px 0;
}

.custom-button:active {
    box-shadow: rgba(0, 0, 0, .2) 0 5px 5px -3px, rgba(0, 0, 0, .14) 0 8px 10px 1px, rgba(0, 0, 0, .12) 0 3px 14px 2px;
    background: rgba(63, 81, 181, 0.85);
}

.custom-button i{
    color: var(--white);
    margin-right: 10px;
}

.button-download {
    appearance: none;
    background-color: #FAFBFC;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    padding: 10px 16px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
    text-decoration: none !important;
    color: var(--black_80);
}

.button-download:hover {
    background-color: #F3F4F6;
    text-decoration: none;
    transition-duration: 0.1s;
    color: var(--black_80);
}

.button-download:disabled {
    background-color: #FAFBFC;
    border-color: rgba(27, 31, 35, 0.15);
    color: #959DA5;
    cursor: default;
}

.button-download:active {
    background-color: #EDEFF2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}

.button-download:focus {
    outline: 1px transparent;
}

.button-download:before {
    display: none;
}
.button-download i{
    color: var(--black_70);
    margin-right: 10px;
}