
#windy #logo-wrapper {
    position: absolute;
    display: none;
}


@page{
    size: A4 portrait;
    margin: 0;
}
@media print {
    .no-print {
        display: none !important;
    }
    body, html {
        height: 100%;
        width: 100%;
    }
    #wrapper{
        display: block !important;
        overflow: auto;
    }
    #inside{
        overflow: visible !important;
    }
    .print-template{
        display: block;
        width: auto;
        /* overflow: auto;  */
        /* height: 1174px;  */
        height: 100%;
        position: fixed;
        top: 20px;
        left: 30px;
        right: 30px;
        z-index: 9999;
    }
    .ivu-avatar-list-item, .ivu-drawer-header, .ivu-drawer-header p, .ivu-drawer-header-inner, #buttonArea{
        display: none !important;
        overflow: visible !important;
    }
    .ivu-drawer-wrap{
        width: 100% !important;
    }
    .ivu-drawer-mask {
        background: #fff !important;
    }
    .ivu-drawer-content{
        box-shadow: 0 4px 12px #fff !important;
    }
    * { overflow: visible !important; }
    .print-page{
        page-break-before: always;
        page-break-after: always;
        height: 100%;
        border: 1px solid red;
        padding: 50px;
    }
}

.createButton {
    border-radius: 50%;
    line-height: 42px;
    z-index: 9999;
    font-size: 35px;
    text-align: center;
    background: #ed4014;
    width: 55px;
    height: 55px;
    border: 4px solid #c12626;
    position: fixed;
    right: 31px;
    bottom: 31px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s linear;
}

.createButton:hover {
    background: #fb8162;
    border: 4px solid #a96f6f;
    transform: scale(1.2);
}