
/* 修复方案集合 */
body {
  overscroll-behavior-x: contain; /* 阻止滚动链 */
  touch-action: pan-y;           /* 禁用横向触摸滑动 */
  overflow-x: hidden; /* 禁用横向滚动 */
  position: relative; /* 修复绝对定位偏移 */
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 60px!important;
  padding-bottom: 120px;
  min-width: 320px;
  background-color: #23232a;
  color: #fff;
  font: 300 16px K2D, sans-serif;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.easy-autocomplete {
    position: relative;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    text-decoration: none;
}



ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

input {
    font-family: K2D, sans-serif;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

a {
    color: #d0a186;
    text-decoration: none;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

p {
    line-height: 24px;
}

.wrapped {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    /*  margin: 16px auto; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.wrapped .content,
.wrapped .sidebar {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.wrapped.open .sidebar {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    pointer-events: all;
}

@media (min-width:1300px) {
    .wrapped .sidebar .side-content {
        margin: 0 auto;
        width: 960px;
    }
    .wrapped.open .sidebar {
        padding-top: 95px;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1800;
    overflow-y: scroll;
    width: 100vw;
    background: rgba(17, 21, 32, .98);
    -webkit-transition: .25s cubic-bezier(.215, .61, .355, 1);
    transition: .25s cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateY(-100vh);
    transform: translateY(-100vh);
    -webkit-overflow-scrolling: touch;
}

.sidebar::-webkit-scrollbar-track {
    border-radius: 3px;
    background: 0 0;
    -webkit-box-shadow: none;
}

.sidebar::-webkit-scrollbar {
    margin-right: 10px;
    width: 5px;
    border-radius: 3px;
    background-color: transparent;
}

.sidebar .block {
    /*margin-bottom: 20px;*/
}

.sidebar .block:last-child {
    margin-bottom: 0;
}

.sidebar::-webkit-scrollbar-thumb {
    border: 1px solid #d0a186;
    background: #d0a186;
}

.sidebar .title {
    padding: 0px 10px;
    margin: 0;
}

.sidebar .title h4 {
    font-size: 21px;
}

.sidebar .list-link li a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    padding: 12px 20px;
    border-radius: 20px;
    color: #fff;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sidebar .list-link li a:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d0a186), to(#ad7a62));
    background-image: linear-gradient( 180deg, #d0a186, #ad7a62);
    content: "";
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (min-width:992px) {
    .sidebar .list-link li a:hover span {
        color: #000;
    }
    .sidebar .list-link li a:hover:before {
        opacity: 1;
    }
}

.sidebar .list-link li a span {
    position: relative;
    z-index: 2;
}

.sidebar .list-link li a .name {
    color: #fff;
    font-size: 14px;
}

.sidebar .list-link li a .name,
.sidebar .list-link li a .value {
    font-weight: 300;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.sidebar .list-link li a .value {
    color: #65656a;
    font-size: 12px;
}

.wrap {
    margin: 0px auto;
    /*padding: 0 16px;*/
    width: 100%;
    max-width: 1370px;
    min-width: 290px;
}

main {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.nav .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav .menu li a {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    padding: 18px 30px;
    height: 100%;
    color: #95979f;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (min-width:992px) {
    .nav .menu li a:hover {
        color: #d0a186;
    }
}

.nav .menu li a.active {
    color: #d0a186;
}

.nav .menu li a.active:before {
    opacity: 1;
}

.nav .menu li a:before {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #d0a186;
    content: "";
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    background: #23232a;
    border-bottom: 1px solid #292931;
    /* background-size: 100% auto;
    -webkit-box-shadow: 0 2px 0 #252527;
    box-shadow: 0 2px 0 #252527; */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: all;
}

.header.search-active .easy-autocomplete {
    opacity: 1;
    pointer-events: all;
}

.header.search-active .nav {
    opacity: 0;
    pointer-events: none;
}

.header .wrap {
    position: relative;
    max-width: 1340px;
}

.header .flex,
.header .wrap {
    height: 100%;
}

.header .flex {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .nav {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header .hamb-menu {
    margin-right: 20px;
    font-size: 20px;
    cursor: pointer;
}

@media (min-width:992px) {
    .header .hamb-menu:hover:before {
        color: #d0a186;
    }
}

.header .hamb-menu:before {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header .hamb-menu.active:before {
    color: #d0a186;
}

.header .btn-search {
    position: relative;
    width: 25px;
}

.header .btn-search span {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: block;
    color: #d0a186;
    font-size: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.header .btn-search span.icon-close {
    opacity: 0;
    pointer-events: none;
}

.header .btn-search span:before {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (min-width:992px) {
    .header .btn-search span.icon-search:hover:before {
        color: #d0a186;
    }
}

.header .btn-search.active span {
    opacity: 0;
    pointer-events: none;
}

.header .btn-search.active span.icon-close {
    opacity: 1;
    pointer-events: all;
}

.header .logo {
    display: inline-block;
    max-width: 191px;
}

.header .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .link-icon {
    margin: 0 10px;
    padding: 5px;
    font-size: 20px;
    cursor: pointer;
}

.header .link-icon:before {
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (min-width:992px) {
    .header .link-icon:hover:before {
        color: #d0a186;
    }
}

.header .left-block,
.header .right-block {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .left-block,
.header .right-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.player-trailer .l-block {
    width: -webkit-calc(100% - 320px);
    width: 100%;
}

.player-trailer .l-block .main-img {
    position: relative;
    /*margin-bottom: 20px;*/
    width: 100%;
}

.search {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 10;
    width: -webkit-calc(100% - 700px);
    width: calc(100% - 700px);
    max-width: 778px;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    pointer-events: none;
}

.search .input.wrap-input {
    position: relative;
    max-width: 100%;
}

.search .input.wrap-input input {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
    width: 100%;
}

.search .input.wrap-input .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background-color: #131720;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d0a186), to(#ad7a62));
    background-image: linear-gradient( 180deg, #d0a186, #ad7a62);
    color: #131720;
}

.search .input.wrap-input .search-btn .icon-search {
    font-size: 20px;
}

.search .input.wrap-input .search-btn .icon-search:before {
    color: #131720;
}

.title {
    position: relative;
    margin-bottom: 15px;
}

.title.border h4 {
    padding-bottom: 2px;
}

.title h3,
.title h4 {
    position: relative;
    color: #fff;
    font-weight: 400;
    font-size: 26px;
}

.btn {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    margin: 0 auto;
    padding: 10px 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    border: none;
    border-radius: 20px;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#d0a186), to(#ad7a62));
    background-image: linear-gradient( 
180deg
, #d0a186, #ad7a62);
    color: #5c3301;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/* @media (min-width:992px) {
    .btn.transparent:hover {
        color: #000;
    }
} */

.btn span {
    position: relative;
    z-index: 2;
    color: inherit;
    white-space: nowrap;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
}

.btn:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d0a186), to(#ad7a62));
    background-image: linear-gradient( 180deg, #d0a186, #ad7a62);
    content: "";
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (min-width:992px) {
    .btn:hover {
        color: #000;
    }
    .btn:hover:before {
        opacity: 1;
    }
}

.block-post {
    margin-left: -10px;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
}

.block-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.block-post .item {
    display: block;
    margin: 0 10px 10px;
    width: -webkit-calc(25% - 20px);
    width: calc(25% - 20px);
}

@media (min-width:992px) {
    .block-post .item:hover .title-post {
        color: #d0a186;
    }
}

.block-post .item .img {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    padding-bottom: 66.8%;
    width: 100%;
    border-radius: 10px;
}

.block-post .item .img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.block-post .item .title-post {
    display: -webkit-box;
    overflow: hidden;
    max-height: 40px;
    color: #e0e0e0;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.pagination {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin: 0 0 70px;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.pagination .item {
    margin: 2px;
    font-weight: 400;
    font-size: 14px;
}

.pagination .item.active a {
    background-image: -webkit-linear-gradient(76deg, #d0a186, #d0a186);
    background-image: -o-linear-gradient(76deg, #d0a186 0, #d0a186 100%);
    background-image: linear-gradient(14deg, #d0a186, #d0a186);
    color: #000;
    pointer-events: none;
}

@media (min-width:992px) {
    .pagination .item:hover a {
        background-color: #84878b;
        color: #000;
    }
    .pagination .item:hover a i:before {
        color: #000;
    }
}

.pagination .item.pager a {
    position: relative;
    padding: 10px 20px;
}

.pagination .item.pager.next a .icon {
    margin-left: 10px;
}

.pagination i {
    position: relative;
    z-index: 2;
    font-size: 8px;
}

.pagination a,
.pagination i:before {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.pagination a {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    padding: 0 5px;
    height: 40px;
    min-width: 40px;
    border-radius: 20px;
    background-color: #252527;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
    color: #6d6d73;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

footer .block-footer {
    margin-top: 12px;
    /*padding: 50px 0 40px;*/
    border-top: 2px solid #252527;
}

footer .block-footer .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .block-footer .copyright {
    color: #65656a;
    text-align: center;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
}

.copyright p {
    color: #d0a186;
}

@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: icomoon;
    src: url(../fonts/icomoon.eot);
    src: url(../fonts/icomoon.eot#iefix) format("embedded-opentype"), url(../fonts/icomoon.ttf) format("truetype"), url(../fonts/icomoon.woff) format("woff"), url(../fonts/icomoon.svg) format("svg");
    font-display: block;
}

[class*=" icon-"],
[class^=icon-] {
    text-transform: none;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    font-family: icomoon!important;
    line-height: 1;
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-hamb:before {
    content: "\e90c";
}

.icon-arrow-right:before {
    content: "\e90e";
}

.icon-search:before {
    content: "\e918";
}

.icon-close:before {
    content: "\e91e";
}

.form .input {
    position: relative;
    margin-bottom: 30px;
    max-width: 340px;
}

.form .input input {
    height: 40px;
    border: 1px solid #3f3f4a;
    border-radius: 4px;
    background-color: #2a2a32;
    -webkit-box-shadow: 0 2px 0 #252527;
    box-shadow: 0 2px 0 #252527;
    color: #6e6e74;
}

.form .input input {
    padding: 10px 20px;
    width: 100%;
    font-weight: 300;
    font-size: 14px;
}

@media (max-width:992px) {
    .form .input {
        margin-bottom: 20px;
    }
}

@media (max-width:1450px) {
    .nav .menu li a {
        margin: 0;
    }
}

@media (max-width:1300px) {
    footer .block-footer {
        /*padding: 30px 0 25px;*/
    }
}

@media (max-width:1200px) {
    .header .link-icon {
        margin: 0 5px;
    }
    .header .logo {
        max-width: 171px;
    }
}

@media (max-width:1100px) {
    .header .logo {
        max-width: 191px;
    }
    .player-trailer .l-block {
        /*margin-bottom: 15px;*/
        width: 100%;
    }
}

@media (max-width:1100px) {
    .header .nav {
        display: none;
    }
}

@media (max-width:992px) {
    .side-content .list-link li {
        width: 50%!important;
    }
    /*.title h1,*/
    /*h2,*/
    /*h3,*/
    /*h4,*/
    /*h5,*/
    /*h6 {*/
    /*    font-size: 22px;*/
    /*}*/
    .block-post .item {
        width: -webkit-calc(33.33% - 20px);
        width: calc(33.33% - 20px);
    }
    .sidebar {
        position: fixed;
        top: 80px;
    }
    .header .link-icon {
        margin: 0;
    }
    .header .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
    .header .left-block {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
    .header.search-active .left-block {
        opacity: 0;
        pointer-events: none;
    }
    .search {
        left: 15px;
        width: -webkit-calc(100% - 70px);
        width: calc(100% - 70px);
        max-width: 100%;
        -webkit-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -ms-transform: translateX(0);
    }
    .pagination {
        margin: 0 0 45px;
    }
}

@media (max-width:767px) {
    h3,
    h4 {
        font-size: 14px;
    }
    footer .block-footer {
        /*margin-top: 16px;*/
        /*padding: 20px 0;*/
    }
    .sidebar {
        top: 60px;
    }
    main {
        /* padding: 20px 0 0; */
    }
    .block-post .item {
        width: -webkit-calc(50% - 20px);
        width: calc(50% - 20px);
    }
    .pagination .item:nth-child(12) {
        display: none;
    }
}

@media (max-width:567px) {
    p {
        line-height: 24px;
    }
    .pagination .item.pager.next a .icon {
        margin-left: 0;
    }
    .pagination .item.pager .btn {
        padding: 10px 13px;
        width: 30px;
    }
    .pagination .item.pager .btn span,
    .pagination .item:nth-child(4) {
        /* display: none; */
    }
}

.player-wrap {
    position: relative;
}

#kt_player {
    position: absolute!important;
}


/* .block-post {
    padding: 0px 0 16px 0;
}
 */

.block-post:after {
    clear: both;
    display: block;
    content: "";
}

.block-post .player {
    color: #16171b;
    font-size: 14px;
    line-height: 24px;
}

.block-post .item .img img {
    opacity: 0;
    transition: opacity 1s;
}

.block-post .item .img img.lazyloaded {
    opacity: 1;
}

.madou {
    padding: 0;
}

@media (max-width:1390px) {
    .madou {
        padding: 0 15px;
    }
}

.gddh {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
}

.item-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item-mask {
    z-index: 1;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    transition: all .35s linear;
}

.item-mask:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 100%, .5);
    content: "";
    -webkit-transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate(45deg) translate3d(10%, -124%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate(45deg) translate3d(10%, -124%, 0);
}

.item:hover .item-mask {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.item:hover .item-mask:after {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate(45deg) translate3d(10%, 124%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate(45deg) translate3d(10%, 124%, 0);
}

.item .img>img {
    transition: all .2s linear!important;
}

.item:hover .img>img {
    transform: scale(1.2);
}

.side-content .list-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.side-content .list-link li {
    width: 30%;
    max-height: 42px;
}

.side-content .list-link li .name {
    font-size: 20px;
}

a {
    text-decoration: none;
}

button,
input {
    overflow: visible;
}

.header {
    transition: all .1s linear;
    /* overflow: hidden; */
}
			
.sidebar-title {
	color: #d0a186;
	font-weight: 600;
}
.sidebar-list {
	color: #d0a186;
}

.MacPlayer {
	background: #000000;
	font-size: 14px;
	color: #F6F6F6;
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	min-height: 100px;
}

.MacPlayer table {
	width: 100%;
	height: 100%;
}

.MacPlayer #playleft {
	position: inherit;
	 /*!important;*/
	width: 100%;
	height: 100%;
}

@media (max-width: 720px)
{
    body
        {
        padding-bottom: 100px;
        }
    
    .pagination .item {
        display: block !important;
    }

}
