/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

@import url(https://fonts.googleapis.com/css?family=Roboto);
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    font-weight: 400
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    text-decoration: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

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

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

[class*=icon-]:before {
    display: inline-block;
    font-family: custom;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-arrow_l:before {
    content: '\0041'
}

.icon-arrow_r:before {
    content: '\0042'
}

.icon-arrow_up_dn:before {
    content: '\0043'
}

.icon-calendar:before {
    content: '\0044'
}

.icon-tag:before {
    content: '\0047'
}

.icon-video:before {
    content: '\0048'
}


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible
}

.hamburger:hover {
    opacity: .7
}

.hamburger.is-active:hover {
    opacity: .7
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
    background-color: #aab4cc
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    width: 40px;
    height: 4px;
    background-color: #aab4cc;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

.hamburger-inner::after,
.hamburger-inner::before {
    content: "";
    display: block
}

.hamburger-inner::before {
    top: -10px
}

.hamburger-inner::after {
    bottom: -10px
}

.hamburger--3dx .hamburger-box {
    -webkit-perspective: 80px;
    perspective: 80px
}

.hamburger--3dx .hamburger-inner {
    -webkit-transition: background-color 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform .15s cubic-bezier(.645, .045, .355, 1);
    transition: background-color 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform .15s cubic-bezier(.645, .045, .355, 1);
    transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1);
    transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform .15s cubic-bezier(.645, .045, .355, 1)
}

.hamburger--3dx .hamburger-inner::after,
.hamburger--3dx .hamburger-inner::before {
    -webkit-transition: -webkit-transform 0s .1s cubic-bezier(.645, .045, .355, 1);
    transition: -webkit-transform 0s .1s cubic-bezier(.645, .045, .355, 1);
    transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1);
    transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform 0s .1s cubic-bezier(.645, .045, .355, 1)
}

.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent!important;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

.hamburger--3dx.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg)
}

.hamburger--3dx.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}

button:focus {
    outline: 0
}

body {
    font-size: 0;
    background-color: #323846;
    font-family: Roboto, sans-serif
}

.tK79Nycontainer {
    width: 100%;
    max-width: 1160px;
    margin: auto;
    padding: 0 5px
}

.tK79Nyheader {
    background-color: #151a21
}

.tK79Nyaside {
    background-color: #1a2028
}

.tK79Nyheader-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7px 0
}

.tK79Nynav a {
    color: #aab4cc;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid transparent;
    margin: 2px
}

.tK79Nynav a.active,
.tK79Nynav a:hover {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #f23e5a;
    color: #f23e5a
}

.tK79Nynav-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.tK79Nyintro {
    color: #555e71;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding-left: 15px;
    margin: 0;
    max-height: 44px;
    overflow: hidden
}

.tK79Nylogo {
    width: 100%;
    max-width: 192px;
    min-width: 192px;
    text-align: center;
    position: relative;
    border-right: 1px solid #272d38
}

.tK79Nylogo span {
    color: #555e71;
    font-family: Roboto;
    font-size: 10px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    display: block
}

.tK79Nylogo img {
    max-width: 100%;
    height: auto
}

.tK79Nymain-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.tK79Nyheader-wrap {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0
}

.tK79Nyaside {
    width: 192px;
    min-width: 192px
}

.tK79Nyguy {
    width: 100%;
    height: auto
}

.tK79Nyaside-title {
    color: #fff;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    padding: 0 0 10px;
    border-bottom: 1px solid #323846;
    margin: 20px 15px 0
}

.tK79Nycats-more {
    color: #fff;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    -webkit-box-shadow: 0 0 4px #0e0e0e;
    box-shadow: 0 0 4px #0e0e0e;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #58d24c;
    border: 1px solid #58d24c;
    display: block;
    padding: 5px 10px;
    text-align: center;
    margin: 10px 15px 0
}

.tK79Nycats-more:hover {
    -webkit-box-shadow: 0 0 4px #0e0e0e;
    box-shadow: 0 0 4px #0e0e0e;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #58d24c;
    background-color: #1a2028;
    color: #58d24c
}

.tK79Nycats li a {
    padding: 10px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.tK79Nycats li a .tK79Nycat-title {
    color: #aab4cc;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px
}

.tK79Nycats li a .tK79Nycat-quantity {
    color: #49515f;
    font-size: 10px
}

.tK79Nycats li a:hover {
    background-color: #151a21
}

.tK79Nycats li a:hover span {
    color: #fff
}

.tK79Nycats li a:hover:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #386abd;
    content: ''
}

.tK79Nycloud {
    text-align: center
}

.tK79Nycloud li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px
}

.tK79Nycloud li a {
    display: block;
    color: #f23e5a;
    font-weight: 400;
    line-height: 34px
}

.tK79Nycloud li a:hover {
    color: #fff
}

.tK79Nytag-size-1 {
    font-size: 10px
}

.tK79Nytag-size-2 {
    font-size: 12px
}

.tK79Nytag-size-3 {
    font-size: 14px
}

.tK79Nytag-size-4 {
    font-size: 20px
}

.tK79Nytag-size-5 {
    font-size: 24px
}

.tK79Nycontent {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    margin-left: 5px
}

.tK79Nytitle {
    color: #a4abc7;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    margin: 15px 0 5px 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #555e71;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.tK79Nytop-item {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #1a2028;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4px
}

.tK79Nytop-item:hover {
    background-color: #212832
}

.tK79Nytop-item-content {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    padding-left: 5px
}

.tK79Nytop-title {
    color: #58d24c;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    text-transform: capitalize;
    white-space: nowrap;
    text-overflow: ellipsis
}

.tK79Nytop-title a {
    color: #58d24c
}

.tK79Nytop-title a:hover {
    color: #fff;
    text-decoration: underline
}

.tK79Nytop-go {
    color: #a4abc7;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    display: table;
    padding: 5px 30px;
    margin-top: 12px;
    -webkit-border-radius: 17px;
    border-radius: 17px;
    border: 2px solid #555e71;
    background-color: #1a2028
}

.tK79Nytop-go:hover {
    -webkit-border-radius: 17px;
    border-radius: 17px;
    border: 2px solid #58d24c;
    background-color: #58d24c;
    color: #fff
}

.tK79Nytop-item-img {
    width: 290px;
    min-width: 290px
}

.tK79Nytop-item-img img {
    width: 100%;
    height: auto
}

.tK79Nytop-text {
    color: #fff;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    max-height: 54px;
    overflow: hidden
}

.tK79Nytop-date,
.tK79Nytop-quantity {
    color: #a4abc7;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-right: 20px;
    padding-left: 20px
}

.tK79Nytop-date:before,
.tK79Nytop-quantity:before {
    position: absolute;
    color: #323846;
    font-size: 16px;
    left: 0;
    top: 0;
    font-family: custom;
    content: '\0048'
}

.tK79Nytop-date:before {
    content: '\0044'
}

.tK79Nytop-in-out-wrap {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #151a21;
    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;
    padding: 5px 10px;
    margin-left: 20px;
    white-space: nowrap
}

.tK79Nyrating-like {
    display: inline-block;
    background-image: url(../img/like.svg);
    width: 27px;
    height: 27px;
    margin-right: 5px;
    background-size: cover
}

.tK79Nyrating-text {
    display: inline-block;
    vertical-align: top;
    color: #f23e5a;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px
}

.tK79Nytop-title-wrap {
    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
}

.tK79Nyin-out {
    position: relative;
    color: #a4abc7;
    font-family: Roboto;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 20px;
    margin-left: 15px
}

.tK79Nyin-out span {
    color: #fff;
    font-family: Roboto;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase
}

.tK79Nyin-out:before {
    position: absolute;
    left: 0;
    top: -10px;
    content: '\0043';
    font-family: custom;
    color: #58d24c;
    font-size: 25px
}

.tK79Nythumbs {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #1a2028;
    padding: 3px 0 0 3px
}

.tK79Nythumb {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px 13px 0;
    width: -webkit-calc(33.3333% - 3px);
    width: calc(33.3333% - 3px)
}

.tK79Nythumb:hover .tK79Nyimg-wrapper {
    border-color: #303644
}

.tK79Nythumb:hover .tK79Nythumb-title {
    color: #555e71;
    text-decoration: underline
}

.tK79Nythumb:hover .tK79Nythumb-title-cat {
    text-decoration: none
}

.tK79Nythumb-title {
    color: #fff;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px
}

.tK79Nyimg-wrapper {
    position: relative;
    border: 1px solid transparent
}

.tK79Nyimg-wrapper img {
    width: 100%
}

.tK79Nythumb-extra {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    background-color: rgba(0, 0, 0, .8);
    padding: 4px 5px
}

.tK79Nythumb-info {
    color: #fff;
    font-family: Roboto;
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px
}

.tK79Nythumb-info span {
    color: #5b5f69
}

.tK79Nythumb-tags {
    max-height: 18px;
    overflow: hidden;
    padding: 0 5px
}

.tK79Nythumb-tags a {
    color: #f23e5a;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding-left: 13px;
    margin-right: 8px
}

.tK79Nythumb-tags a:hover {
    color: #fff
}

.tK79Nythumb-tags a:hover:before {
    color: #fff
}

.tK79Nythumb-tags a:before {
    font-family: custom;
    color: #323846;
    font-size: 11px;
    content: '\0047';
    position: absolute;
    left: 0;
    top: 1px
}

.tK79Nythumb-rating {
    color: #58d24c;
    font-family: Roboto;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px
}

.tK79Nythumb-rating:before {
    content: '';
    width: 17px;
    height: 17px;
    position: absolute;
    left: 0;
    top: -2px;
    background-image: url(../img/like.svg);
    background-size: cover
}

.tK79Nypagination {
    text-align: center;
    display: table;
    margin: 10px auto;
    border-top: 1px solid #272d38;
    padding-top: 5px;
    padding-bottom: 15px
}

.tK79Nypagination a,
.tK79Nypagination span {
    color: #58d24c;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    display: inline-block;
    padding: 5px 15px;
    vertical-align: top
}

.tK79Nypagination a:hover,
.tK79Nypagination span {
    color: #fff
}

.tK79Nypagination .tK79Nynext,
.tK79Nypagination .tK79Nyprev {
    position: relative;
    text-align: center
}

.tK79Nypagination .tK79Nynext:before,
.tK79Nypagination .tK79Nyprev:before {
    position: absolute;
    font-family: custom;
    content: '\0041';
    font-size: 20px;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.tK79Nypagination .tK79Nynext:before {
    content: '\0042'
}

.tK79Nythumb-quantity {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: Roboto;
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, .8);
    padding: 5px 10px
}

.tK79Nythumb-title-cat {
    font-size: 18px;
    line-height: 24px;
    text-align: center
}

.tK79Nyfooter-content {
    margin-top: 40px
}

.tK79Nyfooter-text {
    text-align: center;
    color: #fff;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px
}

.tK79Nyfooter-text a { color: rgb(88,210,76); }
.tK79Nyfooter-text a:hover { color: rgb(156,255,146); }


.hamburger {
    display: none
}

.desctop { max-width: 1150px; margin: 5px auto; overflow: hidden; font-size: 13px; text-align: justify; line-height: 16px; padding: 4px; background-color: rgb(26,32,40); color: #aab4cc; border-radius: 4px; }


@media screen and (max-width:950px) {
    .tK79Nymain-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .tK79Nycontent {
        margin-left: 0
    }
    .tK79Nyguy {
        display: none
    }
    .tK79Nyaside {
        width: 100%
    }
    .tK79Nycats {
        -webkit-columns: 5;
        -moz-columns: 5;
        columns: 5
    }
    .tK79Nycats li {
        display: inline-block;
        vertical-align: top;
        width: 100%
    }
    .tK79Nyfooter-content {
        display: none
    }
    .tK79Nycloud {
        padding-bottom: 30px
    }
}

@media screen and (max-width:950px) {
    .tK79Nynav {
        position: absolute;
        left: 0;
        top: -100%;
        background-color: rgba(21, 26, 33, .8);
        width: 100%;
        z-index: 20;
        -webkit-transition: top .25s ease-in-out;
        transition: top .25s ease-in-out
    }
    .tK79Nynav.is-active {
        top: 90px
    }
    .tK79Nynav a {
        display: block;
        font-size: 24px;
        text-align: center;
        border: none!important
    }
    .hamburger {
        display: block
    }
    .tK79Nynav-wrap {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
    .tK79Nyintro {
        max-height: 22px
    }
}

@media screen and (max-width:700px) {
    .tK79Nyintro {
        display: none
    }
    .tK79Nynav.is-active {
        top: 81px
    }
    .tK79Nytop-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .tK79Nytop-go,
    .tK79Nytop-item-img {
        margin: 0 auto 5px
    }
    .tK79Nythumb {
        width: -webkit-calc(50% - 3px);
        width: calc(50% - 3px)
    }
    .tK79Nycats {
        -webkit-columns: 3;
        -moz-columns: 3;
        columns: 3
    }
}

@media screen and (max-width:500px) {
    .tK79Nytop-title-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .tK79Nytop-in-out-wrap {
        margin-left: 0
    }
    .tK79Nytop-item-img {
        min-width: 0;
        max-width: 290px;
        width: 100%
    }
}

@media screen and (max-width:400px) {
    .tK79Nycats {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2
    }
    .tK79Nythumb {
        width: 100%
    }
}