@import url(https://fonts.googleapis.com/css?family=Nunito:400,700,300);

/* body {
    font-family: "Nunito", sans-serif;
    background-color: #060e33;
} */

.container2 {
    position: absolute;
    left: 75%;
    top: 95%;
    transform: translate(-50%, -50%);
}

.container2 .button2 {
    display: none;
}

.container2 .btnPDF {
    text-transform: uppercase;
    color: rgb(95, 93, 93);
    border: 2px solid #cb134e;
    display: inline-block;
    padding: 15px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 14px;
    transition: all 0.3s ease;
}

.container2 .btnPDF .mo {
    position: relative;
    overflow: hidden;
    bottom: -150px;
    width: 0px;
    height: 0px;
    text-align: center;
    display: inline-block;
    opacity: 0;
    color: #d4c3c3;
}

.container2 .btnPDF:before {
    width: 0%;
    position: absolute;
    left: 0;
    bottom: 3px;
    height: 5px;
    background-color: #cb134e;
    content: "";
}

.container2 .btnPDF:after {
    width: 100%;
    height: 0%;
    position: absolute;
    bottom: 3px;
    left: 0;
    background-color: #cb134e;
    content: "Download complete";
    overflow: hidden;
    text-align: center;
    line-height: 180px;
}

.container2 .btnPDF:hover {
    background-color: #cb134e;
    color: #e5e6eb;
}

.container2 input[type=button]:active~.btnPDF {
    background: #383337;
    border-radius: 0px;
    border: none;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 70px;
    padding-right: 70px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}


/* .container2 input[type=button]:active~.btnPDF:before {
    width: 80%;
    content: "";
    color: #fff;
    text-align: center;
    line-height: 70px;
    transition: all 3.5s linear;
}

.container2 input[type=button]:active~.btnPDF:after {
    height: calc(100% - 3px);
    color: #060e33;
    transition: all 0.3s ease-in-out;
    transition-delay: 3.5s;
} */


/* .container2 input[type=button]:active~.btnPDF .me {
    display: none;
}

.container2 input[type=button]:active~.btnPDF .mo {
    transition: bottom 0.4s ease, opacity 4s ease;
    transition-delay: 0.1s;
    height: auto;
    width: auto;
    bottom: 0px;
    opacity: 1;
} */