@import url(https://fonts.googleapis.com/css?family=Roboto:700);

body{background : #DDD; font-family : Roboto;}

#btnset1, #btnset2, #btnset3, #btnset4{
    background: white;
    padding: 10px;
    width: 500px;
    margin: 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 5px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 5px 3px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
    float: left;
}

.button {
    background: #404040;
    margin : 20px auto;
    width : 400px;
    height : 75px;
    overflow: hidden;
    text-align : center;
    transition : .2s;
    cursor : pointer;
    /*-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;*/
    /*-moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;*/
    /*box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;*/
    box-shadow: 5px 7px 20px rgba(0,0,0,0.2);
}

.btnHover {
    position : relative;
    width : 400px;
    height : 115px;
    margin-top: 0;
    padding-top: 1px;
    background : #0dc0c0;
    top: -170px;
    transition : .3s;
}

.btnText, .btnText2 {
    color : white;
    transition : .3s;
    padding-bottom: 0;
    margin-bottom: 20px;
    margin-top: 13px;
}

.btnText1 {
    color : white;
    transition : .3s;
    margin-top: 8px;
}

.btnText3{
    background-color: #D43F3F;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    margin: 5px auto 0 auto;
    padding: 1px;
    transition: .6s;
}

.btnText3 svg{
    visibility:visible;
    opacity:1;
    transition-delay: .3s;
}

.btnTextHover {
    margin-top : 53px;
    color : #FFF;
}

.btnHover1 {
    width : 160px;
    height : 35px;
    background : #D43F3F;
    transition : .3s;
    position: absolute;
    margin: 8px 0 0 20px;
    border-radius: 6px;
}

.btnHover2 {
    width : 300px;
    height : 50px;
    background : #D43F3F;
    transition : .4s;
    position: relative;
    margin-top: -53px;
    left: -260px;
    border-radius: 30px;
}

.btnHover3{
    width: 200px;
    height: 50px;
    position: relative;
    top: -50px;
    color: white;
    visibility:hidden;
    opacity:0;
    transition:visibility 0s linear 0.5s,opacity 0.5s linear;
}

.btnTextHover3{
    margin-top: 13px;
}

.btnTextHover1 {
    color : #FFF;
}

.btnTextHover2 {
    color : #FFF;
    padding-top: 15px;
}

.button:hover .btnHover{ /*When hovering over .button change .btnTwo*/
    top: -140px;
}

.button:hover .btnHover1{ /*When hovering over .button change .btnTwo*/
    width: 200px;
    height: 50px;
    margin: 0 0 0 0;
    border-radius: 0;
}

.button:hover .btnHover2{ /*When hovering over .button change .btnTwo*/
    left: -50px;
}

.button:hover .btnText{ /*When hovering over .button change .btnText*/
    margin-top : 65px;
}

.button:hover .btnText1{ /*When hovering over .button change .btnText*/
    margin-top : 14px;
}

.button:hover .btnHover3{
    visibility:visible;
    opacity:1;
    transition-delay:.3s;
}

.button:hover .btnText3{
    width: 200px;
    height: 50px;
    border-radius: 0;
    margin-top: 0;
}

.button:hover .btnText3 svg{
    visibility: hidden;
    opacity: 0;
    transition:visibility 0s linear 0.5s,opacity 0.5s linear;
}

.button:active { /*When button is clicked*/
    box-shadow: 0 5px 5px rgba(0,0,0,0.4);
}