/*-------------------------------- RESET CSS ---------------------------------------*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
/*============================ END RESET CSS =======================================*/

/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); */

html, body{
	margin: 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	color: #353537;
	font-size: 15px;
	line-height: 20px;
	position: relative;
}
body {
	background: linear-gradient(180deg, rgba(203, 200, 226, 0) 0%, #E2E1EC 100%);
    width: 100%;
    min-height: 100vh;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.modal_overlay {
    background-color: rgb(110 110 239 / 70%);
}
.close_notification {
    color: #fff;
}
strong {
    font-weight: bold;
}
.input_line {
    display: table;
    width: 100%;
    color: #6C5CE7;
    background: transparent;
    font-size: 25px;
    font-weight: bold;
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid #6C5CE7;
}
.input_line:focus,
.input_line:active {
    border: 0;
    outline: 0;
    border-bottom: 2px solid #6C5CE7;
}
.input_line:read-only {
    color: #6C5CE7;
    opacity: 1;
    border-bottom: 2px solid transparent;
}

input,
select,
textarea {
    display: block;
    width: 100%;
    height: auto;
    color: #6C5CE7;
    background: transparent;
    font-size: 25px;
    font-weight: bold;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #6C5CE7;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input:active,
input:focus,
select:active,
select:focus,
textarea:active,
textarea:focus {
    outline: 0
}
input[type=radio],
input[type=checkbox] {
    display: initial;
    width: auto;
}
::placeholder {
	color: rgba(55, 45, 129, 0.3);
	font-weight: initial;
    letter-spacing: initial;
}
:-ms-input-placeholder {
	color: rgba(55, 45, 129, 0.3);
	font-weight: initial;
    letter-spacing: initial;
}
::-ms-input-placeholder {
	color: rgba(55, 45, 129, 0.3);
	font-weight: initial;
    letter-spacing: initial;
}
.input_with_icon input {
    text-indent: 0;
    padding-left: 45px;
    padding-right: 30px;
}
.input_with_icon .input_delete {
    display: none;
    position: absolute;
    width: auto;
    height: 45%;
    top: 50%;
    left: auto;
    right: 5px;
    transform: translate(0%,-50%);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.input_with_icon .input_delete:hover {
    cursor: pointer;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.input_with_icon:hover .input_delete {
	display: table;
}
.talent_onboarding_custom_link_div {
    position: relative;
}
.talent_onboarding_custom_link_div .input_delete {
    display: none;
    position: absolute;
    width: auto;
    height: 25px;
    top: 17px;
    left: auto;
    right: 5px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.talent_onboarding_custom_link_div .input_delete:hover {
    cursor: pointer;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.talent_onboarding_custom_link_div:hover .input_delete {
	display: table;
}
.input_border_top {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin-bottom: -2px;
    padding-right: 30px;
}
.input_border_bottom {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin-bottom: 15px;
    padding-right: 30px;
}
/*-------------------- custom radio input ---------------------*/
.radio_label {
	display: table;
	position: relative;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font-size: 20px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.radio_label input[type=radio] {
	opacity: 0;
	cursor: pointer;
	margin-right: 10px;
}
.radio_label_checkmark {
	position: absolute;
	top: -2px;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #C4C4C4;
	border-radius: 50%;
}
.radio_label_text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    max-width: calc(100% - 35px);
}
.radio_label:hover input ~ .radio_label_checkmark {
	background-color: #ccc;
}
.radio_label input:checked ~ .radio_label_checkmark {
	background-color: #6C5CE7;
}
.radio_label_checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.radio_label input:checked ~ .radio_label_checkmark:after {
	display: block;
}
.radio_label .radio_label_checkmark:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
/*----------- custom checkbox input ------------------*/
.checkbox_label {
	display: block;
	position: relative;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font-size: 20px;
    text-align: left;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.checkbox_label input {
	opacity: 0;
	cursor: pointer;
}
.checkbox_label_checkmark {
	position: absolute;
	top: -2px;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #C4C4C4;
	border-radius: 5px;
}
.checkbox_label:hover input ~ .checkbox_label_checkmark {
	background-color: #ccc;
}
.checkbox_label input:checked ~ .checkbox_label_checkmark {
	background-color: #6C5CE7;
}
.checkbox_label_checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.checkbox_label input:checked ~ .checkbox_label_checkmark:after {
	display: block;
}
.checkbox_label .checkbox_label_checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.checkbox_label_text {
    display: inline-block;
    vertical-align: top;
    margin-left: 16px;
    max-width: calc(100% - 30px);
    padding-top: 2px;
    float: none;
}


.talent_onboarding_view_650 {
    display: table;
    max-width: 650px;
    margin: auto;
}
.talent_onboarding_view_700 {
    display: table;
    max-width: 700px;
    margin: auto;
}
.form_button {
    display: table;
    padding: 15px 30px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form_button_full {
    width: 100%;
}
.form_button_small {
    padding: 5px 15px;
    font-size: 15px;
}
.form_button_purple {
    background: #6C5CE7;
    color: #fff;
    font-weight: bold;
    border-radius: 20px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.form_button_link {
    color: #858585;
    text-decoration: underline;
}
.form_button_empty_gray {
    background: transparent;
    color: #858585;
    font-weight: bold;
    border-radius: 20px;
    border: 2px solid #858585;
}
.form_button_empty_gray:hover {
    color: #fff;
    background: #6C5CE7;
    border: 2px solid #6C5CE7;
}
.form_button_empty_purple {
    background: transparent;
    color: #6C5CE7;
    font-weight: bold;
    border-radius: 20px;
    border: 2px solid #6C5CE7;
}
.form_button:hover {
    cursor: pointer;
}
.header {
    display: table;
    width: 100%;
    padding: 15px 0;
}
.progress_bar_container {
    position: absolute;
    top: 50%;
    left: 250px;
    transform: translate(0%,-50%);
    width: 100%;
    max-width: calc(100% - 250px);
}
.progress_bar {
    display: table;
    width: 100%;
    height: 10px;
    background: #CFCFCF;
    border-radius: 10px;
}
.progress_bar_purple {
    display: table;
    width: 100%;
    height: 10px;
    background: #6C5CE7;
    border-radius: 10px;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    transition: width 0.5s;
}
.form_container {
    display: table;
    width: 100%;
    max-width:  800px;
    padding: 20px 0 50px 0;
    margin: auto;
}
.form_title {
    display: table;
    width: 100%;
    margin: 10px auto 20px auto;
    font-weight: bold;
    /* text-align: center; */
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -0.25px;
    color: #372D81;
}
.form_title img {
    width: auto;
    height: 35px;
    margin-right: 10px;
}
.form_subtitle {
    display: table;
    width: 100%;
    margin: 5px auto 10px auto;
    /* font-weight: bold; */
    /* text-align: center; */
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -0.25px;
    color: #6C5CE7;
}
.form_body {
    display: table;
    width: 100%;
    margin: auto;
    padding: 30px 0;
    text-align: center;
}
.talent_category {
    display: table;
    width: calc(30% - 10px);
    margin: 15px;
    padding: 15px 20px;
    float: left;
    border-radius: 20px;
    border: 2px solid #BBBAC1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.talent_category:hover {
    cursor: pointer;
    border: 2px solid #6C5CE7;
}
.talent_category_img {
    display: table;
    width: auto;
    height: auto;
    max-height: 50px;
}
.talent_category_text {
    display: table;
    margin-top: 5px;
    text-align: left;
    min-height: 40px;
}
.form_body_idea {
    display: table;
    width: 100%;
    text-align: center;
    margin: 20px auto;
    color: #838383;
    font-size: 15px;
    line-height: 20px;
}
.form_body_idea img {
    width: auto;
    height: 20px;
    margin-right: 10px;
}
.form_body_idea span {
    max-width: calc(100% - 50px);
}
.talent_subcategory_div {
    text-align: center;
}
.talent_subcategory {
    display: inline-block;
    vertical-align: top;
    width: calc(30% - 10px);
    margin: 15px;
    padding: 15px 20px;
    font-size: 20px;
    line-height: 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
}
.form_body_buttons {
    display: table;
    width: 100%;
    max-width: 800px;
    margin: 50px auto 20px auto;
}
.form_body_buttons .form_button_link {
    float: left;
}
.form_body_buttons .form_button_empty_purple {
    float: left;
}
.form_body_buttons .form_button_purple {
    float: right;
}
.form_buttons_accept_decline {
    padding: 17px 35px;
    border-radius: 10px;
}
.form_body_buttons_invited_1 {
    max-width: 500px;
}
.form_body_invite_img {
    display: table;
    width: 95%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto 30px auto;
}
.talent_category_container,
.talent_subcategory_container {
    display: table;
    width: 100%;
}
.form_body_profile {
    display: table;
    margin: 0;
    width: 150px;
    height: 150px;
    background: #C4C4C4;
    border-radius: 100%;
}
.form_body_profile:hover {
    cursor: pointer;
}
.form_body_profile_camera {
    display: table;
    width: 100px;
    height: 100px;
    margin: 25px auto;
}
.form_body_profile_img {
    display: table;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.public_profile_picture {
    background: #C4C4C4;
    border: 0;
    margin-bottom: -5px;
}
.talent_onboarding_name_autocomplete,
#talent_onboarding_name {
    /*text-transform: capitalize;*/
}
.input_with_counter {
    position: relative;
}
.char_count_text {
    position: absolute;
    bottom: -25px;
    right: 0;
    font-size: 15px;
    color: rgba(55, 45, 129, 0.3);
}
.talent_onboarding_link_icons {
    display: block;
    width: 100%;
    margin: auto;
    text-align: center;
}
.talent_onboarding_link_icon {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: auto;
    margin: 5px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.talent_onboarding_link_icon_active {
    cursor: pointer;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.talent_onboarding_link {
    margin: 15px 0;
}
#talent_onboarding_input_display_url {
    display: inline-block;
    width: auto;
    max-width: 90%;
    font-size: 30px;
    /*text-transform: capitalize;*/
}
.talent_onboarding_display_url {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 1px;
    color: rgba(55, 45, 129, 0.3);
}
.talent_onboarding_display_url_buttons {
    display: table;
    width: 100%;
}
#talent_onboarding_display_url_copy {
    display: table;
    float: left;
    width: 30px;
    height: auto;
    margin: 0 5px;
}
#talent_onboarding_display_url_share {
    display: table;
    float: left;
    width: 40px;
    height: auto;
    margin: -5px 5px 0 5px;
}
#talent_onboarding_display_url_copy:hover,
#talent_onboarding_display_url_share:hover {
    cursor: pointer;
}
#talent_onboarding_display_url_edit, #talent_onboarding_display_url_save {
    display: table;
    float: right;
}
.talent_onboarding_whatsnext {
    font-weight: normal;
    font-size: 25px;
    line-height: 30px;
}
.talent_onboarding_whatsnext:hover {
    cursor: pointer;
    color: #fff;
    background: #6C5CE7;
}

/*--- MEDIA QUERIES ---*/
@media only screen and (max-width: 600px) {
    .public_profile_picture, 
    .public_profile_picture_overlay {
        width: 150px;
        height: 150px;
    }
}
@media only screen and (min-width: 601px) {
    .talent_onboarding_link_icon:hover {
        cursor: pointer;
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
    .modal_container {
        position: absolute;
        top: 40%;
        margin-bottom: 5%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}
@media only screen and (max-width: 600px) {
    body {
        background: linear-gradient(180deg, rgba(203, 200, 226, 0) 0%, #CBC8E2 77.6%);;
    }
    .logo img {
        width: 100px;
    }
    .progress_bar_container {
        max-width: calc(100% - 170px);
        left: auto;
        right: 0;
        transform: translate(0%, -50%);
    }
    .talent_category {
        width: calc(50% - 10px);
        margin: 5px;
    }
    .talent_subcategory {
        width: 75%;
        margin: 10px auto;
        text-align: left;
    }
    .form_body {
        padding: 20px 0;
    }
    .form_title {
        font-size: 30px;
        line-height: 35px;
    }
    .form_title img {
        height: 25px;
    }
    .form_subtitle {
        font-size: 25px;
        line-height: 30px;
    }
    #talent_onboarding_dashboard_button {
        float: none !important;
        margin: auto;
    }
    #talent_onboarding_display_url_copy {
        display: inline-block;
        vertical-align: middle;
        float: none;
        width: 45px;
    }
    #talent_onboarding_display_url_share {
        display: inline-block;
        vertical-align: middle;
        float: none;
        width: 60px;
        height: auto;
        margin: -5px 5px 0 5px;
    }
    #talent_onboarding_display_url_edit, #talent_onboarding_display_url_save {
        display: inline-block;
        vertical-align: middle;
        float: none;
        padding: 10px 25px;
        font-size: 20px;
    }
    .talent_onboarding_display_url {
        font-size: 20px;
    }
    #talent_onboarding_input_display_url {
        display: table;
        margin: auto;
        font-size: 25px;
        text-align: center;
    }
    .radio_label {
        width: 100%;
    }
}

@media only screen and (max-width: 320px) {
    .talent_category {
        padding: 20px 10px 10px 15px;
    }
}

