/*
 * COMMON
 * ------------------------------------------------------*/

:root {
    --bgColor: #4D7EA8;
    --gradientColor: #2D4962; 
    /* --bgColor: #EB6A5A;
    --gradientColor: #c9402f; */
    --iconColor: black;
    --buttonText: white;
    --buttonBackground: var(--bgColor);
}

.page {
    display: grid;
    width: 100%;
    grid-template-areas: "header" "body" "footer";
}

/*
FILE UPLOAD
*/
@import url(https://fonts.googleapis.com/css?family=Exo+2:400,700,500,300);

/* #region zone styles */
.zone {
    margin: auto;
    padding-top: 10px;
    position: relative;
    height: 300px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: radial-gradient(ellipse at center, var(--bgColor) 0, var(--gradientColor) 100%);
    /* width: 80%; */
    border: 5px dashed white;
    text-align: center;
    color: white;
    z-index: 20;
    transition: all 0.3s ease-out;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .05), inset 0 0 .25em 0 rgba(0, 0, 0, .25);
}

.zone_icon {
    text-align: center;
    font-size: 10em;
}

.zone_icon_normal {
    color: #fff;
}
.zone_icon_dragover {
    color: var(--gradientColor);
}

.selectFile {
    height: 50px;
    margin: 20px auto;
    position: relative;
    width: 200px;
}

.zone_label, file_input {
    cursor: pointer;
    display: block;
    height: 50px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    border-radius: 5px;
}

.zone_label {
    background: #fff;
    color: var(--bgColor);
    display: inline-block;
    font-size: 1.2em;
    line-height: 50px;
    padding: 0;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 400;
    box-shadow: 0 1px 1px gray;
}

input[type=file] {
    opacity: 0;
}

.zone.in {
    color: white;
    border-color: white;
    background: radial-gradient(ellipse at center, var(--bgColor) 0, var(--gradientColor) 100%);

    i {
        color: var(--bgColor);
    }

    label {
        background: #fff;
        color: var(--bgColor);
    }
}

.zone.hover {
    color: gray;
    border-color: white;
    background: #fff;
    border: 5px dashed gray;

    i {
        color: var(--bgColor);
    }

    label {
        background: #fff;
        color: var(--bgColor);
    }
}

.zone.fade {
    transition: all 0.3s ease-out;
    opacity: 1;
}
/* #endregion zone styles */

.fieldset {
    border: 2px solid var(--bgColor);
    opacity: .8;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.zone_label {
    display: block;
    margin: 0px 0 0 0;
}
select, textarea {
    width: 350px;
}
.text_input {
    width: 350px;
}
.overflow {
    height: 180px;
}

.asl_setting {
    font-size: 1em;
}
/* Settings */

#choose_content {
    padding-top: 5px;
}

.grid_header_icon {
    grid-column: 1 / 2;
    height: fit-content;
}
.grid_header_icon i {
    color:var(--iconColor);
    font-size: 3em;
    place-self: center;
    height: fit-content;  
}
.small_icon {
    color:var(--iconColor);
    font-size: 1em;
    place-self: center;
    height: fit-content;
    padding-left: 5px;
}
.grid_header_title {
    grid-column: 2 / 6;
    font-size: 40px;
    height: fit-content;
    align-self: center;
    padding-left: 10px;
}
.width_100_percent {
    width: 100%;
}

.indented {
    padding-left: 15px;
}

fieldset {
    margin-bottom: 10px;
}
.cb_container {
    display: flex;
    justify-content: center; /* align horizontally */
    align-items: center; /* align vertically */
}

.form_buttons{
    font-size: 30px;
    color: var(--buttonText);
    background-color: var(--buttonBackground);
}

.form_buttons:hover {
    background-color: var(--buttonText);
    color: var(--buttonBackground);
}

.form_buttons:nth-child(1) {
    margin-right: 20px;
}

#your_content_buttons {
    margin-top: 50px;
}

.description {
    margin-bottom: 25px;
    font-size: 24px;
}

.centered {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position:absolute;
}