.cd-btn-hover {
    top: 21px;
    left: 10px;
    border: 2px solid #3f51b5 !important;
    background-color: #3f51b5 !important;
    color: white !important;
    /*-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);*/
}



.img-panel-cd {
    padding: 0px;
    position: absolute;
    border-radius: 100px;
    width: 100px;
    height: 100px;
    top: 40px;
    left: 40%;
    border: 5px solid #fff;
    background: none repeat scroll 0 0 #fff;
}

.cd-panel_Btn {
    position: absolute;
    top: 12px;
    right: 4px;
}

.cd-main-content {
    text-align: center;
}

    .cd-main-content h1 {
        font-size: 2rem;
        color: #64788c;
        padding: 4em 0;
    }

.cd-btn {
    position: relative;
    display: inline-block;
    padding: 1em 2em;
    background-color: #89ba2c;
    color: #ffffff;
    border-radius: 50em;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-box-shadow 0.2s;
    transition: -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s;
    transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

    .cd-btn:hover {
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    }

.cd-fix-panel {
    position: fixed;
    background-color: transparent;
    top: 0;
    left: 0;
    z-index: 2500;
    height: 100%;
    width: 100%;
    -webkit-transition: background 0s 0.6s;
    transition: background 0s 0.6s;
}

    .cd-fix-panel::after {
        -webkit-transition: background 0.3s 0.3s;
        transition: background 0.3s 0.3s;
    }

.cd-panel {
    position: fixed;
    z-index: 2999;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.6s;
    transition: visibility 0s 0.6s;
}

    .cd-panel::after {
        /* overlay layer */
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: transparent;
        cursor: pointer;
        -webkit-transition: background 0.3s 0.3s;
        transition: background 0.3s 0.3s;
    }

    .cd-panel.cd-panel--is-visible {
        visibility: visible;
        -webkit-transition: visibility 0s 0s;
        transition: visibility 0s 0s;
        z-index: 2999;
    }

        .cd-panel.cd-panel--is-visible::after {
            background-color: rgba(0,0,0,.4);
            -webkit-transition: background 0.3s 0s;
            transition: background 0.3s 0s;
        }

.cd-panel__header {
    position: fixed;
    width: 80%;
    height: 90px;
    background: #3f51b5;
    z-index: 3001;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    -webkit-transition: -webkit-transform 0.3s 0s;
    transition: -webkit-transform 0.3s 0s;
    transition: transform 0.3s 0s;
    transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

    .cd-panel__header h2 {
        width: 98%;
        color: white;
        padding: 8px 0px 0px 19px;
        margin-top: 22px !important
    }

.baged-mr {
    font-size: 12px;
    margin-left: 14px;
    margin-bottom: -10px;
    position: absolute;
}

.cd-panel--from-right .cd-panel__header {
    right: 0;
}

.cd-panel--from-left .cd-panel__header {
    left: 0;
}

.cd-panel--is-visible .cd-panel__header {
    -webkit-transition: -webkit-transform 0.3s 0.3s;
    transition: -webkit-transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}



.cd-panel__close {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    /* image replacement */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}


.cd-panel--is-visible .cd-panel__close::before {
    -webkit-animation: cd-close-1 0.6s 0.3s;
    animation: cd-close-1 0.6s 0.3s;
}

.cd-panel--is-visible .cd-panel__close::after {
    -webkit-animation: cd-close-2 0.6s 0.3s;
    animation: cd-close-2 0.6s 0.3s;
}

.cd-panel__content label {
    font-weight: 400;
}

@-webkit-keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@-webkit-keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

.cd-panel__container {
    box-shadow: 1px 2px 11px 0px rgba(0,0,0,8.4);
    position: fixed;
    width: 80%;
    height: 100%;
    top: 0;
    background: white;
    z-index: 3000;
    -webkit-transition: -webkit-transform 0.3s 0.3s;
    transition: -webkit-transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.cd-panel--from-right .cd-panel__container {
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.cd-panel--from-left .cd-panel__container {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.cd-panel--is-visible .cd-panel__container {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.cd-panel__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 4%;
    overflow: auto;
    /* smooth scrolling on touch devices */
    -webkit-overflow-scrolling: touch;
}



@media only screen and (min-width: 1170px) {
    .cd-panel__container {
        width: 30%;
    }

    .cd-panel__content label {
        font-weight: 400;
    }

    .cd-panel__header {
        width: 30%;
    }

    .cd-main-content h1 {
        font-size: 3.2rem;
    }
}

@media only screen and (min-width: 768px) {
    .cd-panel__header {
        width: 30%;
    }

    .cd-panel__container {
        width: 30%;
    }

    .cd-panel__content label {
        font-weight: 400;
    }
}

@media only screen and (max-width: 480px) {
    .cd-btn-hover {
        padding: 4px !important;
        font-size: 13px;
        left: 6px;
        top: 15px;
    }

        .cd-btn-hover i {
            font-size: 16px !important;
        }

    .img-panel-cd {
        left: 30%;
    }
}


@media only screen and (max-width: 350px) {
    .img-panel-cd {
        left: 29%;
    }
}
