input:focus, select:focus, textarea:focus, button:focus {
    outline:none;
}

.drop {
    width:90%;
    height:220px;
    border:3px dashed #DADFE3;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    background:transparent;
    -webkit-transition:all 0.5s ease-out;
    -moz-transition:all 0.5s ease-out;
    transition:all 0.5s ease-out;
    margin-top:0px;
    margin-right:auto;
    margin-left:auto;
    margin-bottom:10px;
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
}

.drop .cont {
    width:500px;
    height:170px;
    color:#8E99A5;
    -webkit-transition:all 0.5s ease-out;
    -moz-transition:all 0.5s ease-out;
    transition:all 0.5s ease-out;
    margin:auto;
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
}

.drop .cont i {
    font-size:40px;
    color:#787e85;
    position:relative;
}

.drop .cont .dad {
    font-size:30px;
    text-transform:uppercase;
    font-weight:900;
}

.drop .cont .or {
    color:#787e85;
    font-size:18px;
}

.drop .cont .browse {
    margin:10px 25%;
    color:white;
    padding:8px 16px;
    border-radius:4px;
    background:#00c993;
}

.drop input {
    width:100%;
    height:100%;
    cursor:pointer;
    background:red;
    opacity:0;
    margin:auto;
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
}

.drop output#list {
    width:100%;
    text-align:left;
    position:absolute;
    left:0;
    top:0;
}

.drop_dashed_upload {
    height: 225px;
    position: relative;
}

.drop .progress {
    position: relative;
    top: 110px;
    visibility: hidden;
}
.drop .progress-bar {
    background: #00c993;
}

.drop.have_file .glyphicon-cloud-upload {
    animation: opacity-animation 1s steps(5, start) infinite
}
@keyframes opacity-animation {
    to {
        opacity: 0.5;
    }
}
.drop.have_file .progress {
    visibility: visible;
}
.drop.have_file .hide_on_file {
    visibility: hidden;
}


@media (max-width:767px) {
    .drop .cont {
        width:300px;
    }
    .drop .cont .browse {
        margin: 10px 15%;
    }
}
@media (max-width:360px) {
    .drop .cont {
        width:200px;
    }
    .drop .cont .browse {
        margin: 10px 5%;
    }
}

