.plusBtn {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 50px;
    right: 30px;
    display: none;
    background: white;
    box-shadow: 0 0 10px 0 rgba(0, 110, 181,0.3);
    border-radius: 999px;
}

.plusBtn:before, .plusBtn:after {
    content: "";
    position: absolute;
    background-color: rgb(0, 104, 173);
    transition: transform 0.25s ease-out;
    /*box-shadow: 0 0 15px 0 rgb(0, 110, 181);*/
    /*box-shadow: 0 0 15px 0 white;*/
    border-radius: 999px;

}

/* Vertical line */
.plusBtn:before {
    top: 50%;
    left: 50%;
    width: 3px;
    height: 50%;
    margin-left: -1.5px;
    transform: translateY(-50%);
    /*transform: translate(-50%, -50%);*/
}

/* horizontal line */
.plusBtn:after {
    top: 50%;
    left: 50%;
    width: 50%;
    height: 3px;
    margin-top: -1.5px;
    transform: translateX(-50%);
}

.plusBtn:hover {
    cursor: pointer;
    box-shadow: 0 0 15px 0 rgba(0, 110, 181,0.5);

}


