@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

.addCvButton{
    text-decoration: none;
    cursor: pointer;
    max-width: 200px;
    color: #FFF;
    background-color: #F90;
    position: relative;
    font-size: 14px;
    border-radius: 25px;
    padding: 10px 20px;
    white-space: nowrap;
}
.addCvButton:after {
    position: relative;
    top: 3px;
    right: -3px;
    content: "\e409";
    font-family: "Material Icons";
    transition: 0.4s;
    font-size: 16px;
}
.addCvButton:hover {
    opacity: 0.7;
}
