.btn {
    padding: 12px 0px;
    border-radius: 8px;
    color: #d6d6d6;
    box-shadow: 0px 3px 7px -5px #555;
    margin: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 150px;
    box-sizing: border-box;
    font-weight: bold;
    background: linear-gradient(92deg, #ae3a52 0%, #8a1d34 100%);
}

.btn.full{
    width: 100%;
}

.btn.secondary{
    background: none;
    border: 2px solid #ab1e3b;
    color: #ab1e3b;
}

.btn.addBtn {
    width: 45px;
    height: 45px;
}

.btn.addBtn.small {
    width: 30px;
    height: 30px;
}

.btn.roundBtn {
    height: 35px;
    width: 35px;
    border-radius: 40px;
    background: none;
    box-shadow: none;
    border: 1px solid #ffffff7d;
    opacity: .6;
    cursor: pointer;
    margin-left: 10px;
}

.btn.roundBtn:hover {
    opacity: 1;
}

.btn.smallAddBtn {
    background: none;
    box-shadow: none;
    width: 30px;
    height: 30px;
    margin: 0px;
    font-size: 27px;
}