.sd-candidate-account {
    padding: 20px;
    border: 1px solid #e7e7e7;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 35px;
}

.sd-candidate-account button {
    display: block;
}

.sd-candidate-account-photo {
    position: relative;
    display: inline-block;
    height: 200px;
}

.sd-candidate-account-photo img {
    width: auto;
    height: 200px;
}

.sd-candidate-account-form {
    background-color: #e1eefa;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 20px
}

/*.sd-candidate-account-photo .photo-overlay {*/
    /*background-color: rgb(128,128,128);*/
    /*height: 100%;*/
    /*width: 100%;*/
    /*opacity: 0;*/
    /*top: 0;*/
    /*left: 0;*/
    /*position: absolute;*/
    /*padding: 0;*/
    /*transition: opacity .5s;*/
/*}*/

/*.sd-candidate-account-photo:hover .photo-overlay {*/
    /*opacity: .5;*/
    /*transition: opacity .5s;*/
/*}*/

/*.sd-candidate-account-photo:hover .delete-photo {*/
    /*display: block;*/
/*}*/

/*.delete-photo {*/
    /*position: absolute;*/
    /*padding-top: 7px;*/
    /*padding-right: 7px;*/
    /*right: 0;*/
    /*top: 0;*/
    /*display: none;*/
/*}*/

/*.delete-photo a {*/
    /*color: #000;*/
/*}*/

.photo-image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.photo-overlay {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.sd-candidate-account-photo:hover .photo-image {
    opacity: 0.3;
}

.sd-candidate-account-photo:hover .photo-overlay {
    opacity: 1;
}