
body {
    background-color: white;
    box-sizing: border-box;
    color:rgb(43, 43, 43);
    font-family: Assistant;
    font-size: 18px;
    text-align:center;
    margin:0px;
}
@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;
}
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;
}
.option-row {
    margin-top: 16px;
}
.option-icon{
    color: #4e4e4e;
    font-size: 24px;
    margin: 0px 14px;
}

/* LOADER */
.loader-icon {
    margin:0px 15px;
    margin-top: 20px;
    width:100px;
}
.loader-title {
    margin-top: 50px;
    font-size: 25px;
}
.loader-sub-title {
    margin-top: 10px;
    font-size: 16px;
    color: #757575;
}
.loader-text {
    font-size: 18px;
    color: rgb(105, 105, 105);
    margin-top: 15px;
}
.progress-info-text {
    font-weight: bold;
}
.progress-info-text-completed {
    color: #c4c4c4;
    font-weight: normal;
}

/* DOM ELEMENTS */
#create-position-with-ai-container {
    margin: auto;
    width:100%;
    max-width: 900px;
    text-align: center;
}
#create-position-with-ai-tile {
    font-size: 24px;
    margin-bottom: 17px;
    margin-top: 50px;
}
#create-position-with-ai-options {
    display: none;
    text-align: left;
    margin: auto;
    margin-top: 34px;
    width: fit-content;
}
#generating-your-position {
    display: none;
}
#btn-create {
    margin-top: 34px;
}
#create-position-with-ai-custom-description {
    margin-top: 40px;
}
#txt-custom-description {
    display: none;
    width: 80%;
    height: 150px;
    max-width: 600px;
}

/* ONBOARDING GREETING DIV */
#onboarding-greeting {
    display: none;
}
#onboarding-greeting-title {
    font-weight: bold;
    color: #01a398;
    font-size: 34px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 15px;
    max-width: 80%;
}
#onboarding-greeting-desc {
    margin: auto;
    max-width: 80%;
}

/* ONBOARDING SKIP THIS (CREATE LATER) */
#onboarding-skip {
    display: none;
    margin-top: 34px;
}
#btn-skip {
    font-size: 16px;
    color: #7c7c7c;
}

/* 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;
}