
.mdl-logo1 {
    width: 190px;
    height: 190px;
    background-image:url(../images/logo-01.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: 100%;
}

/* ----------------Ripple Modal Styles---------- */
.modal {
    background: #fff;
    height: 100vh;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
/*    transform-origin: 50% 50%;
    transition: opacity 0.5s linear;*/
    width: 100vw;
    z-index: 2;
}
.modal.active {
    opacity: 1;
    pointer-events: auto;
    transition: none;
}
/*.ripple-container {
    height: 100vh;
    left: 0;
    overflow: hidden;
    position: fixed;
    pointer-events: none;
    top: 0;
    width: 100vw;
    z-index: 3;
}
.ripple-container .ripple {
    backface-visibility: hidden;
    background: #448aff;
    border-radius: 50%;
    display: block;
    mask-image: radial-gradient(circle, #fff, #000);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translate(-50%, -50%) scale(0) translateZ(0) translate3d(0, 0, 0);
    overflow: hidden;
    will-change: opacity;
}
.ripple-container .ripple.is-animating {
    animation: ripple 1s linear;
    transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
}
@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0) translateZ(0) translate3d(0, 0, 0);
        opacity: 1;
   }
    50% {
        transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
        opacity: 1;
   }
    100% {
        transform: translate(-50%, -50%) scale(1) translateZ(0) translate3d(0, 0, 0);
        opacity: 0;
   }
} */
/* Demo Styles */
 body {
    background: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
}
h1 {
    color: #ff448b;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 100px;
}
.container {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
}
.btn {
    border: 0;
    background: #448aff;
    box-shadow: 0 0 1px #333;
    color: #fff;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    height: 50px;
}
.btn:hover {
    background: #5e9aff;
    color: #eee;
}
.link {
    color: #448aff;
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}
.modal-trigger {
    display: block;
    margin: 30px auto;
}
.round {
    border-radius: 50%;
    text-indent: -99999px;
    position: relative;
    width: 50px;
}
.round:before {
    content: "\f0c9";
    font-family: 'FontAwesome', sans-serif;
    left: 50%;
    position: absolute;
    text-indent: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}
.modal {
    background: #44e8ff;
}
.modal .close {
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 40px;
    text-indent: -999999px;
    position: absolute;
    right: 55px;
    top: 15px;

    
}




.modal .close:before {
    content: "";
    background-image:url(../images/cross-icon.png);
    background-repeat: no-repeat;
    background-position:center;
    width: 48px;
    height: 48px;
    font-family: 'Genericons', sans-serif;
    text-indent: 0;
    position: absolute;
    left: 0;
}
.modal .wrapper {
    left: 50%;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 75%;
}
.modal .wrapper h2 {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
}
.modal .wrapper ul {
    text-align: left;
    margin: 0 auto;
    width: 40%;
}
.modal .wrapper ul a {
    color: #ff448b;
    display: block;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    text-decoration: none;
}
.modal .wrapper ul a:hover {
    text-decoration: underline;
} 
