.button_outer {
    border-radius: 5px;
    text-align: center;
    padding: 20px 10px;
    display: inline-block;
    border: 1px solid #18293D;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
}

.cover_photo .button_outer {
    border-radius: 50%;
    padding: 22px 10px;
    display: inline-block;
    border: 1px solid #616161;
}

.btn_upload {
    color: #616161;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 3;
}
.btn_upload input {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    width: 100%;
    height: 105%;
    cursor: pointer;
    opacity: 0;
}

.btn_upload label{
    cursor: pointer !important;
}

.file_uploading {
    width: 100%;
    height: 10px;
    margin-top: 20px;
    background: #ccc;
}
.file_uploading .btn_upload {
    display: none;
}
.processing_bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 30px;
    background: #83ccd3;
    transition: 3s;
}
.file_uploading .processing_bar {
    width: 100%;
}
.success_box {
    display: none;
    width: 50px;
    height: 50px;
    position: relative;
}
.success_box:before {
    content: "";
    display: block;
    width: 9px;
    height: 18px;
    border-bottom: 6px solid #fff;
    border-right: 6px solid #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 17px;
    top: 10px;
}
.file_uploaded .success_box {
    display: inline-block;
}
.file_uploaded {
    margin-top: 0;
    width: 50px;
    background: #83ccd3;
    height: 50px;
}

/* .cover_photo .uploaded_file_view #upload_file6{
    max-width: 100px !important;
    max-height: 100px !important;
} */

.uploaded_file_view {
    /* max-width: 300px; */
    max-width: 90px;
    text-align: center;
    position: relative;
    transition: 0.2s;
    opacity: 0;
    border: 2px solid #ddd;
}
.file_remove {
    height: 21px;
    width: 20px;
    border-radius: 50%;
    display: block;
    position: absolute;
    background: #18293D;
    line-height: 22px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    right: -12px;
    top: -11px;
}
.file_remove:hover {
    background: red;
    transition: 0.2s;
}
.uploaded_file_view img{
    /* max-width: 100%; */
    width: 90px;
    height: 95px;
    object-fit: cover;
    background-repeat: no-repeat;
}
.uploaded_file_view.show {
    opacity: 1;
}
.error_msg {
    text-align: center;
    color: #f00;
}

.uploaded_img{
    max-width: 90px;
    text-align: center;
    position: relative;
    transition: 0.2s;
    border: 2px solid #ddd;
}

.uploaded_img img{
    width: 90px;
    height: 95px;
    object-fit: cover;
    background-repeat: no-repeat;
}
