@charset "UTF-8";

/*

Nugget Name: Onyx - DropzoneJS example with everything you will need, translations, custom preview and a powerful PHP code to handle upload/delete file
Nugget URI: http://www.onyxdev.net/
Author: Obada Qawwas
Author URI: http://www.onyxdev.net/
Version: 1.0

*/


/************************************************************

	Main Styles

*************************************************************/


body {
	background-color: #fff;
	font-family: 'Open Sans', Arial, sans-serif;
	letter-spacing: normal;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .25px;

   
}

* {
    outline: 0;
}

a,
a:hover,
a:focus {
	text-decoration: none;
}
a:focus,
a:hover,
button:focus,
button:hover {
    outline: none;
    color: #fff;
}
button {
	cursor: pointer;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::selection {
    background: #e84158; color: #ffffff;
}
::-moz-selection {
    background: #e84158; color: #ffffff;
}
::-webkit-selection {
    background: #e84158; color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1;
}
h1 > span,
h2 > span,
h3 > span,
h4 > span,
h5 > span,
h6 > span {
    font-weight: 300;
}



/************************************************************

    Common styles

*************************************************************/

/* Transitions
*************************************/
.file-item:before,
.file-item,
.file-item .fake button i,
.remove-file:before,
.files-container {
    -webkit-transition: all .15s ease-in-out;
       -moz-transition: all .15s ease-in-out;
        -ms-transition: all .15s ease-in-out;
         -o-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
}


/* Content
*************************************/
.section-sub-title {
    font-family: "Montserrat", Arial, Sans-serif;
    font-size: 18px;
    line-height: 1.35;
    text-transform: capitalize;
}
.text-center {
    text-align: center;
}



/************************************************************

    Sections

*************************************************************/


/* Wrapper
*************************************/
.wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* BGs
*************************************/
.full-dark-bg {
    background-color: rgba(0, 0, 0, .25);
    padding: 5%;
}



/************************************************************

    DropzoneJS Example

*************************************************************/

.inner-page .section-title {
    font-size: 28px;
    text-transform: uppercase;
    position: relative;
}
.inner-page .section-sub-title {
    margin-top: 10px;
    text-transform: uppercase;
    color: #fff;
}
.inner-page .section-sub-title:not(:first-child) {
    margin-top: 35px;
}


/* Upload files
*************************************/
.files-container {
    position: relative;
    margin: 30px 2px 15px 2px;
    background-color: rgba(0, 0, 0, .2);
}
.files-container span {
    display: block;
    text-align: center;
    padding: 50px 25px;
    font-size: 13px;
    text-transform: capitalize;
}

/*** Dropzone ***/
.files-container.hover {
    background-color: rgba(255, 255, 255, .1);
    border: 1px dashed rgba(255, 255, 255, .5);
    color: rgba(255, 255, 255, .85);
}
.files-container {
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    min-height: auto;
}
.files-container #upload-label{
  background: rgba(231, 97, 92, 0);
  color: #fff;
  position: absolute;
  height: 115px;
  top: 20%;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  min-width: 20%;
  text-align: center;
  cursor: pointer;
}
.files-container.active{
  background: #fff;
}
.files-container.active #upload-label{
  background: #fff;
  color: #e7615c;
}

.files-container #upload-label i:hover {
    color: #444;
    font-size: 9.4rem;
    -webkit-transition: width 2s;
}

.files-container #upload-label span.title{
  font-size: 1em;
  font-weight: bold;
  display: block;
}

span.tittle {
    position: relative;
    top: 222px;
    color: #bdbdbd;
}

.files-container #upload-label i{
    text-align: center;
    display: block;
    color: #e7615c;
    height: 115px;
    font-size: 9.5rem;
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
}
/** Preview of collections of uploaded documents **/
.preview-container{
    position: relative;
    visibility: hidden;
}
.preview-container #previews .onyx-dropzone-info {
    width: 88%;
    margin-right: 2%;
}
#previews > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}


/* Uploaded files
*************************************/
.uploaded-files {
    margin-top: 10px;
}
.uploaded-files span,
.uploaded-files a {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
}
.uploaded-files a:hover {
    text-decoration: underline !important;
}
.uploaded-files i {
    position: relative;
    margin-right: 7px;
    font-size: 12px;
    color: #de1500;
}


/* Warnings
*************************************/
.last-date {
    display: block;
    margin-top: 10px;
}


