.cp-banner{
    width: 100%;
    background-color: #fff;
    padding: 24px 35px 18px 25px;
    box-sizing: border-box;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    left: 0;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, .2);
    opacity: 0;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
}

.cp-banner-close{
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.cp-banner-content{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.cp-banner-content h5{
    color: #555555;
    font-size: 24px;
    font-weight: 600;
}
@media (min-width: 768px){
    .cp-banner-content h5{
        display: none;
    }
}
.cp-banner-content p{
    color: #888888;
    padding: 0;
    font-size: 14px;
}
.cp-banner-content p a{
    color: #5abf1c;
    text-decoration: underline;
}

.cp-banner-content p a:hover{
    text-decoration: none;
}

.cp-banner-button a{
    width: 125px;
    height: 40px;
    text-decoration: none;
    text-transform: uppercase;
    background: #5abf1c;
    color: #fff;
    border: 1px solid #5abf1c;
    webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    margin-left: 24px;
}
.cp-banner-button a:hover{
    background: #fff;
    color: #5abf1c;

}

@media (max-width:767px) {
    .cp-banner{
        width: 100%;
        padding: 20px;
        bottom: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .cp-banner-button a{
        margin-left: 0;
        margin-top: 14px;
    }
}
