/*-------- feedback upload ------------------------*/

.fb-upload-cont {
    padding: 20px 20px 10px;
}

.fb-upload-cont .close {
    position: absolute;
    top: 4px;
    right: 10px;
}

.fb-upload-box .dropzone {
    min-height: 250px;
    border: 2px dashed rgba(0, 0, 0, 0.3);
    background: white;
    padding: 10px;
}

.fb-upload-box .dropzone .dz-message {
    /* text-align: center;
    margin: 0;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center; */
    margin: 80px 0 0;
}

.fb-upload-box .dropzone .dz-preview {
    margin: 12px;
}

.fb-upload-box .dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 106px;
    height: 106px;
}

.fb-upload-box .dropzone .dz-message span {
    width: 100%;
}

.fb-upload-box .dropzone .dz-message i {
    display: block;
    margin-bottom: 10px;
    font-size: 25px;
}

.fb-upload-box .dropzone .dz-message .dz-button {
    font-size: 18px;
}

.upload-btn-holder {
    text-align: center;
    margin: 20px 0 0;
}

.fb-upload-box .dropzone .dz-preview .dz-error-message {
    font-size: 11px;
    top: 115px;
    width: 130px;
    left: -12px;
}

.fb-upload-box .dropzone .dz-preview .dz-error-message:after {
    left: 60px;
}

.main-btn {
    padding: 4px 22px;
    font-size: 14px;
}

.main-btn {
    background-color: #ff8510;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 30px;
    min-width: 90px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    outline: none;
    border: 1px solid #ff8510;
    transition: all 0.3s ease 0s;
    transition: 0.5s;
}

.main-btn:focus {
    outline: 0;
    box-shadow: none;
}

.main-btn:hover {
    color: #fff;
    background-image: linear-gradient(to right, #FF512F 0%, #F09819 100%);
}

.btn-wave {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.btn-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgba(255, 255, 255, 0.075);
    background-color: rgba(255, 255, 255, 0.25);
}

.btn-wave:hover::before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.note-btn {
    background-color: #006dea;
    color: #fff !important;
    border: 0;
}

.note-btn:hover {
    background-color: #0151ad !important;
}