﻿@font-face {
    font-family: Assistant;
    src: url(/css/fonts/Assistant-Regular.ttf);
}
@font-face {
    font-family: Assistant;
    src: url(/css/fonts/Assistant-Bold.ttf);
    font-weight: bold;
}


.grecaptcha-badge {
    display: none !important;
}

body {
    background: linear-gradient(135deg, #004b3b, #00ac86);
    box-sizing: border-box;
    color:white;
    font-family: Assistant;
    text-align:center;
    margin:0px;
}
input {
    font-family:Assistant;
}
input[type="text"],
input[type="password"] {
    text-align:center;
    font-size: 22px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid gray;
}
select {
    font-family:Assistant;
    text-align:center;
    font-size: 19px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid gray;
}
.onboarding-textbox {
    width:80%;
    max-width: 360px;
}
.link {
    color: #00746d;
    text-decoration: none;
    cursor: pointer;
}
.link:hover {
    color: #00534e;
    text-decoration: underline;
}

.valigned > * {
    vertical-align: middle;
}
.container {
    max-width:80%;
    margin:auto;
}
.overlay {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(77, 77, 77, 0.65);
    z-index:9999;
}
.overlay img {
    max-width: 100px; 
    max-height: 100px;
}

/* STEPS */
#onboarding-step-name {
    margin-top:10px;
}
#onboarding-step-company,
#onboarding-step-country,
#onboarding-step-email,
#onboarding-step-email-code,
#onboarding-step-password {
    display:none;
}

/* TRACKER */
#tracker {
    margin-top: 40px;
}
.tracker-circle {
    border: 2px solid gray;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    margin: 0px 5px;
    margin-top: 8px;
}
.tracker-circle-active {
    background-color: #59706e;
    color: white;
}

.tracker-circle-completed {
    background-color: #096f56;
    color: white;
    border-color: rgb(58, 146, 105);
}
/* BUTTONS */
.button {
    margin: 0px 10px;
    padding: 13px 22px 11px 22px;
    background-color: #01a398;
    font-family: Assistant;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    transition: all 0.6s;
}
.button:hover {
    background-color: #00bba2;
}
.button-small {
    font-size: 14px;
    padding: 13px 22px 11px 22px;
    background-color: transparent;
    font-family: Assistant;
    font-weight: normal;
    color: #91fff0;
}
.button-link {
    background-color: transparent;
    color: #00746d;
    font-family: Assistant;
    font-weight: normal;
    border: none;
    padding: 0px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
}

/* DOM ELEMENTS */

#code-resent-success {
    display: none;
    font-size: 16px;
    margin-top: 15px;
}
#div-footer {
    background-color: #eeeeee;
    border-top: 1px solid #d1d1d1;
    position: fixed;
    bottom: 0px;
    width: 100%;
    text-align: center;
    height: 30px;
    padding-top: 8px;
    z-index: 9998;
}
#error-message {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f35900;
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    z-index: 9999;
}
#div-change-language {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 24px 40px;
    padding-bottom: 45px;
    border-radius: 30px;
    width: 40%;
    max-width: 290px;
}
#div-change-language > a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #a40ffa;
}
.email-code-box {
    width:44px; 
    text-align:center; 
    font-size:28px !important;
    font-weight: bold;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
        margin-top: 20px;
        margin-bottom: 20px;
        font-weight:normal;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    select {
        padding: 9px 7px;
        font-size: 19px;
        border-radius: 40px;
        max-width: 64%;
    }
    .dektop-only {
        display: none;
    }
    #error-message {
        width: 70%;
    }
    #div-footer {
        font-size: 13px;
        height: 26px;
        padding-top: 4px;
    }
}