.header {
    display: flex;
    justify-content: space-between;
    background: #ED1C24;
    color: #fff;
    padding: 5px 15px;
    height: 38px;
}
.header a {
    color: #fff;
    text-decoration: none;
}
.header-title {
    font-size: larger;
}
.header-right > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.header-right > ul > li {
    margin-left: 10px;
    position: relative;
    z-index: 10;
}
.header-right > ul > li:first-child {
    margin-left: 0;
}
.header-right > ul > li a {
    display: block;
    padding: 3px 0 5px;
}
.content-flipbook {
    position: relative;
    height: calc(100vh - 38px);
}
.content-flipbook #container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.book-list {
    position: fixed;
    top: 39px;
    right: -300px;
    bottom: 0;
    overflow: auto;
    width: 300px;
    padding: 15px;
    background: #ED1C24;
    transition: all linear 0.3s;
}
.book-list.active {
    right: 0;
    bottom: 50px;
}
.book-list .search-panel {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}
.book-list .xemTheoNgay {
    height: 40px;
    font: 16px / 40px Roboto;
    width: 100%;
    display: inline-block;
    margin: 0 5px;
    background-color: #e5d8e2;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    position: relative;
}
.xemTheoNgay input {
    height: 40px;
    font: 16px / 40px Roboto;
    width: 100%;
    display: inline-block;
    margin: 0 5px;
    background-color: transparent;
    text-align: center;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    font-size: 0;
    border: solid 1px #ddd;
    padding: 0.25rem 0.75rem;
    position: absolute;
    left: -5px;
    font-weight: 700;
    color: #362c2c;
    font-size: 14px;
}
.xemTheoNgay i {
    position: absolute;
    top: 11px;
    left: 10px;
}
.book-list .book {
    display: block;
    margin-bottom: 15px;
}
.book-list .book img {
    width: 100%;
}
.c-more {
    text-align: center;
    padding: 5px 0;
}
.c-more a {
    display: inline-block;
    min-width: 124px;
    text-decoration: none;
    border: 1px solid #E5E5E5;
    padding: 8px 15px;
    text-align: center;
    color: #525252;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}