body{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #8e9eab;
    background: -webkit-linear-gradient(to bottom, #8e9eab, #eef2f3);
    background: linear-gradient(to bottom, #8e9eab, #eef2f3);
    background-size: cover;
    background-repeat: no-repeat;
}

.excel_img {
    margin-left: 50px;
}

.preview, .preview th, .preview td {
    border: 1px solid black;
    background: #e5e6e7;
    text-align: center;
    
}
.preview th, .preview td {
    padding: 3px 7px;
}

.excel_container {
    font-family: 'Raleway', Arial, sans-serif;
    box-sizing: border-box;
    background-color: #485568;
    height: auto;
    width: 450px;
    color: #e5e6e7;
    /* position: relative;
    top: 0;
    left: 0; */
    /* transform: translate(-10%, -30%); */
    border-radius: 15px;
    padding: 55px 55px 25px 55px;
}

.excel_container .dropzone {
    height: 200px;
    width: 100%;
    border: 2px dashed #74787a;
    margin: 0 auto;
    background-color: #3a4453;
    color: #595e62;
    text-align: center;
    transition: 0.3s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    position: relative;
}

/* When draged-over */
.excel_container .dropzone.dragover {
    border-color: #5f8f00;
    color: #e5e6e7;
    box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.15);
}
/* When droped */
.excel_container .dropzone.droped {
    border-color: #74787a;
    color: #5f8f00;
    font-size: 35px;
    font-weight: bold;
}

.excel_container #myFile {
    opacity: 0.5;
    outline: none;
    border: none;
    display: none;
}

/*----- Remove file icon -----*/
.excel_container .remove_file {
    color: rgb(207, 207, 207);
    position: absolute;
    font-size: 27px;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-weight: 700;
    display: none;
}
.excel_container .remove_file:hover {
    color: #fff;
}

.excel_container #dropzone_content span {
    margin: 2px 0;
    display: inline-block;
}

/* ----- Drag & Drop text -----*/

.excel_container .dnd {
    color: #78b303;
    font-weight: 700;
    font-size: 28px;
}
.excel_container .small {
    font-size: 18px;
    font-weight: 400;
    color: #dbdbdb;
}
.excel_container .browse {
    cursor: pointer;
    font-weight: 400;
    font-size: 24px;
    transition: 0.3s ease-out;
    color: #fff;
    display: inline-block;
    background-color: #5f8f00;
    padding: 5px 25px;
    border-radius: 7px;
    margin-top: 7px;
}
.excel_container .browse:hover {
    color: #fff;
    background-color: #517901;
}





.excel_container .note {
    font-size: 13px;
    color: #afafaf;
    margin: 25px 0 5px 0;
}

.excel_container .radio-label {
    display: inline-block;
    cursor: pointer;
    font-size: 15px;
    color: #c0c0c0;
    opacity: 0.5;
    margin: 0;
}

.excel_container #choice1:checked + label {
    color: #d6d6d6;
    font-weight: 700;
    opacity: 1;
}
.excel_container #choice2:checked + label {
    color: #d6d6d6;
    font-weight: 700;
    opacity: 1;
}

.excel_container .file_details {
    /* border: 1px dashed white; */
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.excel_container .headline {
    margin: 0;
    margin-bottom: 10px;
}

.excel_container input[type="text"] {
    padding: 7px;
    border-radius: 6px;
    width: 200px;
    display: none;
    outline: none;
    margin-top: 15px;
}

.excel_container select {
    min-width: 150px;
    max-width: 200px;
    padding: 7px 3px;
    border-radius: 6px;
    display: inline-block;
    outline: none;
    margin-top: 15px;
}

.excel_container button[type="button"],
.excel_container input[type="submit"] {
    display: inline-block;
    height: 120px;
    background-color: #fff;
    color: #5f8f00;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 35px;
    font-weight: 700;
    font-size: 20px;
    border-radius: 6px;
    transition: 0.3s ease-out;
    transition-property: background-color, color;
}
.excel_container button[type="button"]:hover,
.excel_container input[type="submit"]:hover {
    box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.15);
    background-color: #6fa306;
    color: #fff;
}
.excel_container button[type="button"]:active,
.excel_container input[type="submit"]:active {
    transform: scale(0.97);
}

/*--- Messages ---*/
.excel_container .messages {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    padding: 0;
    margin-top: 15px;
}

.excel_container .messages.error { 
    color: rgb(199, 0, 0);
}
.excel_container .messages.success {
    color: #78b303;
}
