.gdropfileupload {
    text-align: center;
    overflow: hidden;}

.gdropfileupload .box {
    width: 100%;
    min-height: 60px;
    position: relative;
    background-color: #E5EDF1;
    outline: 2px dashed #92b0b3;
    outline-offset: -10px;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
}

.gdropfileupload .box.box.is-dragover {
    background-color: #EFEFEF;
    outline-offset: -12px;
}

.gdropfileupload .box__inner {
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gdropfileupload .box__status {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 16px;
    transform: translate(-50%,-50%);
}

.gdropfileupload .box__input label {
    cursor: pointer;
    cursor: hand;
    font-size: 13px;
    line-height: 20px;
}

.gdropfileupload .box__input label.custom {
    display: none;    
}

.gdropfileupload .box__button {
    margin-left: 10px;
}

.gdropfileupload .box__file {
    opacity: 0;
    overflow: hidden;
    position: absolute;
    height: 0px;
}

.gdropfileupload .has-advanced-upload .box__dragndrop {
    display: inline;
}

.gdropfileupload .box__dragndrop {
    display: none;
}

.gdropfileupload .box__uploading {
    display: none;
}

.gdropfileupload .box__success {
    display: none;
}

.gdropfileupload  .box__error {
    display: none;
}

.gdropfileupload span.strong {
	font-weight: bold;
}