/* Hero */
/* =================================================================*/

#hero-container {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    align-items: center;
    justify-content: space-around;
}

#hero-text-block {
    background-image: url("../img/index/index_hero_blob.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    position: relative;
    width: 30%;
}

#hero-text-block:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#hero-text-block-content {
    position: absolute;
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
}

#hero-message {
    max-width: 90%;
    text-align: center;
    color: #572d80ff;

    font-size: 36pt;
    margin-bottom: 10%;
}

#hero-message-second-line {
    font-style: italic;
}

#hero-icon {
    max-width: 30%;
}

.hero_circle1 {
    max-width: 10%;
}

.hero_circle2 {
    max-width: 7%;
}

.hero_circle3 {
    max-width: 5%;
}

.hero_circle4 {
    max-width: 3%;
}

.hero_circle5 {
    max-width: 1%;
}

/* Flow */
/* =================================================================*/

.step_row {
    margin-top: 10vh;
}

.step_block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left_step_message {
    background-image: url("../img/index/index_step_left_background.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.right_step_message {
    background-image: url("../img/index/index_step_right_background.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.tend_to_right {
    margin-left: auto;
}

.step_width_limiter {
    max-width: 30vw;
    margin-right: auto;
}

.step_text {
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 3em;

    display: inline-block;

    color: #572d80ff;

    font-size: 1.5em;
}

.left_column {
    flex: 1;
    margin-right: auto;
}

.right_column {
    flex: 1;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}

.video_step_icon {
    max-width: 7.5vw;
}

.slide_step_icon {
    max-width: 5vw;
    padding: 0.1vw;
}

.pdf_step_icon {
    max-width: 8vw;
}

/* Button upload */
/* =================================================================*/

.video_upload_block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: 72pt;
    margin-bottom: 72pt;
}

.info_block {
    color: #572d80ff;
    font-size: 16pt;
}

.highlighted {
    background-color: #572d80ff;
    color: white;
}

.call_to_action {
    color: #22002eff;
    text-decoration: underline;
    text-decoration-color: #572d80ff;
}

.upload_button_block {
    padding-top: 12pt;
}

.helper_text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    color: #572d80ff;
    font-size: 16pt;

    padding-top: 6pt;
}

/* Drag&drop upload */
/* =================================================================*/


#drop-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 2;
}

.occupy_entire_screen {
    width: 100%;
    height: 100%;
}

#drop-area-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 9999999999;
}

#drop-message-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

.hidden {
    display: none;
}

.drop-message-area {
    font-size: 36pt;
    width: 90%;
    height: 90%;

    border-radius: 36pt;
    border-color: #572d80ff;
    border-style: dashed;
    border-width: 10pt;

    background-color: #fffffff0;
}

#uploading-progress-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

.uploading-progress-area {
    font-size: 36pt;
    width: 100%;
    height: 100%;

    background-color: #FFFFFFF0;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
}