#demopanel {
    position: fixed;
    bottom: 0px;
    right: 0px;
    background: #017399;
    color: #fff;
    z-index: 10000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    
    transition: all .15s ease-out;
}
#demopanel a {
    display: block;
    text-decoration: none;
    outline: 0 !important;
    color: inherit;
    border: 0;
    padding: 14px;
    overflow: hidden;
    
    display: flex;
    align-content: center;
    align-items: center;
}
#demopanel img {
    display: block;
    width: 26px;
    margin-right: 10px;
}
.demo-panel-text {
    overflow: hidden;
}
#demopanel a span {
    display: block;
}
#demopanel .demo-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}
#demopanel a:hover .demo-title {
    text-decoration: underline;
}
#demopanel .demo-subtitle {
    font-size: 11px;
}

@media only screen and (max-width: 900px) {
    #demopanel a {
        padding: 4px;
    }
    #demopanel .demo-title {
        font-size: 14px;
    }
}

#demopanel.not-show {
    transform: translate(0,100%);
}

.close-panel {
    cursor: pointer;
    display: block;
    position: absolute;
    z-index: 40;
    width: 28px;
    height: 28px;
    line-height: 24px;
    border-radius: 50%;
    top: -20px;
    left: -10px;
    font-size: 18px;
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    font-weight: normal;
    color: white;
    background: #017399;
    border: 2px solid white;
}
.close-panel:hover {
    transform: scale(1.1);
}
.close-panel span {
    display: block;
    line-height: inherit;
}
.close-panel .up {
    display: none;
}
#demopanel.not-show .close-panel:hover {
    transform: scale(1);
}
#demopanel.not-show .close-panel .times {
    display: none;
}
#demopanel.not-show .close-panel .up {
    display: block;
}