body {
	min-height: 100%;
	display: flex;
    flex-direction: column;
}
.asset {
	display: flex;
	flex-direction: column;
	flex: auto;
}
.asset .container {
	flex: auto;
	position: relative;
}
/* Info */
.asset .info {
	width: 100%;
	height: 100%;
	max-height: 405px;
	margin: 0 0 30px 0;
	display: flex;
	justify-content: flex-start;
	align-content: stretch;
	background: #000000;
	position: relative;
}
.asset .preview {
	display: flex;
	justify-content: flex-start;
	align-content: stretch;
    flex: 0 0 800px;
}
/* Navigation */
.asset .preview .navigation {
	width: 80px;
	margin: 0;
    padding: 3px 0;
	list-style: none;
	display: flex;
	align-items: center;
    flex-direction: column;
    overflow: hidden;
	z-index: 100;
}
.asset .preview .navigation .nav-link {
	width: 30px;
	height: 30px;
	padding: 30px;
	background-repeat: no-repeat;
	background-position: center;
	-moz-transition: all 0.1s ease-out 0ms;
    -o-transition: all 0.1s ease-out 0ms;
    -webkit-transition: all 0.1s ease-out 0ms;
    transition: all 0.1s ease-out 0ms;
}
.asset .preview .navigation .nav-link:hover, .asset .preview .navigation .nav-link.active {
	filter: brightness(300%);
	-webkit-filter: brightness(300%);
	cursor: pointer;
}
.asset .preview .navigation .picture {
	background-image: url(../../images/asset/pt_16px.png);
}
.asset .preview .navigation .preset {
	background-image: url(../../images/asset/ps_16px.png);
}
.asset .preview .navigation .soundcloud {
	background-image: url(../../images/asset/sc_16px.png);
}
.asset .preview .navigation .youtube {
	background-image: url(../../images/asset/yt_16px.png);
}
.asset .preview .navigation .sketchfab {
	background-image: url(../../images/asset/sf_16px.png);
}
.asset .preview .navigation .tiling {
	background-image: url(../../images/asset/pills_tiling.webp);
}
.asset .preview .navigation .shading {
	background-image: url(../../images/asset/pills_shading.webp);
}
/* Preview */
.asset .preview .tab-content {
	width: 100%;
	max-width: 720px;
}
.asset .preview .tab-pane {
	width: 100%;
	display: none;
	position: relative;
	opacity: 0;
	transition: opacity .15s linear;
}
.asset .preview .tab-pane.active {
	display: block;
    opacity: 1;
}
.asset .preview .tab-pane::before {
    display: block;
    content: "";
    padding-top: 56.25%;
}
.asset .preview .tab-pane .tab-pane-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.asset .preview .tab-pane .icon {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 100;
	background-image: url(../../images/asset/fullscreen.png);
    background-repeat: no-repeat;
	background-position: center;
	-moz-transition: all 0.1s ease-out 0ms;
    -o-transition: all 0.1s ease-out 0ms;
    -webkit-transition: all 0.1s ease-out 0ms;
    transition: all 0.1s ease-out 0ms;
    pointer-events: none;
}
.asset .preview .tab-pane:hover .icon {
	filter: brightness(300%);
	-webkit-filter: brightness(300%);
}
@media (max-width: 576px) {
	.asset .preview .tab-pane .icon {
		display: none;
	}
}
.asset .preview .tab-pane.pointer:hover {
	cursor: pointer;
}
/* tab screenshot */
@media (max-width: 576px) {
	.asset .preview .tab-pane::after {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		z-index: 100;
	}
}
.asset .preview .tab-pane.screenshot .tab-pane-inner {
    display: flex;
    justify-content: center;
    align-items: center;
	background-size: cover;
	background-color: transparent;
	background-position: center;
}
.asset .preview .tab-pane.screenshot .tab-pane-inner img {
	width: 100%;
	height: auto;
}
.asset .preview .tab-pane.no-screenshot .tab-pane-inner {
    display: flex;
    justify-content: center;
    align-items: center;
	background-size: cover;
	background-color: transparent;
	background-position: center;
}
.asset .preview .tab-pane.no-screenshot .tab-pane-inner img {
	width: auto;
	height: 100%;
}
/* tab frame */
.asset .preview .tab-pane .tab-pane-inner .frame {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* tab presets */
.asset .preview .tab-pane.presets .tab-pane-inner ul {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.asset .preview .tab-pane.presets .tab-pane-inner ul .preset {
	width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
	background-size: cover;
	background-color: transparent;
	overflow: hidden;
	background-repeat: no-repeat;
}
.asset .preview .tab-pane.presets .tab-pane-inner ul .preset .preset--inner {
	width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
	background-size: cover;
	background-color: transparent;
	overflow: hidden;
	position: relative;
	background-repeat: no-repeat;
}
.asset .preview .tab-pane.presets .tab-pane-inner ul .preset .preset-name {
	width: 100%;
    min-height: 50px;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 16px;
	line-height: 1.2;
	color: #adadad;
	font-weight: 600;
	text-shadow: 1px 1px #000000;
}
@media (max-width: 992px) {
	.asset .preview .tab-pane.presets .tab-pane-inner ul .preset .preset-name {
		display: none;
	}
}

.asset .preview .tab-pane.presets .tab-pane-inner .jokes-2 .preset {
	max-width: calc(100%/2);
}
.asset .preview .tab-pane.presets .tab-pane-inner .jokes-2 .preset-1 .preset--inner {
	background-position: left;
	border-right: 2px solid #000000;
}
.asset .preview .tab-pane.presets .tab-pane-inner .jokes-2 .preset-2 .preset--inner {
	background-position: right;
}

.asset .preview .tab-pane.presets .tab-pane-inner .jokes-3 .preset {
	max-width: calc(100%/3);
}
.asset .preview .tab-pane.presets .tab-pane-inner .jokes-3 .preset-1 .preset--inner {
	background-position: left;
}
.asset .preview .tab-pane.presets .tab-pane-inner .jokes-3 .preset-2 .preset--inner {
	background-position: center;
	border-left: 2px solid #000000;
	border-right: 2px solid #000000;
}
.asset .preview .tab-pane.presets .tab-pane-inner .jokes-3 .preset-3 .preset--inner {
	background-position: right;
}

.asset .preview .tab-pane.presets .tab-pane-inner .jokes-4 .preset {
	max-width: calc(100%/4);
}
.asset .preview .tab-pane.presets .tab-pane-inner .jokes-4 .preset-1 .preset--inner {
	background-position: 0% 50%;
	border-right: 2px solid #000000;
}
.asset .preview .tab-pane.presets .tab-pane-inner .jokes-4 .preset-2 .preset--inner {
	background-position: 50% 50%;
	border-right: 2px solid #000000;
}
.asset .preview .tab-pane.presets .tab-pane-inner .jokes-4 .preset-3 .preset--inner {
	background-position: 75% 50%;
	border-right: 2px solid #000000;
}
.asset .preview .tab-pane.presets .tab-pane-inner .jokes-4 .preset-4 .preset--inner {
	background-position: 100% 50%;
}

.modal-swiper {
	height: 0px!important;
	overflow: hidden;
	display: flex!important;
    background-color: hsla(0, 0%, 0%, 0.7);
    z-index: 1080;
}
.modal-swiper.show {
	height: 100%!important;
	display: flex!important;
}
.modal-swiper .swiper-container {
	width: 100%;
	height: auto;
	max-width: 70%;
	max-height: 98%;
	padding: 0;
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    background: #0f0f0f;
    -webkit-box-shadow: 0 0 50px rgba(0,0,0,1)!important;
    -moz-box-shadow: 0 0 50px rgba(0,0,0,1)!important;
    box-shadow: 0 0 50px rgba rgba(0,0,0,1)!important;
}
.modal-swiper .swiper-container::before {
    display: block;
    content: "";
    padding-top: 56.25%;
}
.modal-swiper .swiper-container .modal-swiper-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 18px;
    background-image: url(../../images/icons/header/menu-close.png);
    background-repeat: no-repeat;
	background-position: center;
	background-size: 26px;
    z-index: 1081;
    filter: drop-shadow(1px 1px 2px black);
    -webkit-filter: drop-shadow(1px 1px 2px black);
    pointer-events: none;
    opacity: 0;
	-moz-transition: all 0.1s ease-out 0ms;
    -o-transition: all 0.1s ease-out 0ms;
    -webkit-transition: all 0.1s ease-out 0ms;
    transition: all 0.1s ease-out 0ms;
}
.modal-swiper .swiper-container .modal-swiper-close:hover {
	cursor: pointer;
}
.modal-swiper .swiper-container:hover .modal-swiper-close {
	opacity: 1;
	pointer-events: auto;
}
.modal-swiper .swiper-container .swiper-wrapper {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide {
	background-size: cover;
	background-color: transparent;
	cursor: grab;
	position: relative;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .swiper-slide--inner {
	width: 100%;
	height: 100%;
	position: relative;
	background-size: cover;
	background-color: transparent;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide img {
	width: 100%;
	height: auto;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets .preset {
	width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
	overflow: hidden;
	position: relative;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets .preset .preset--inner {
	width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
	background-size: cover;
	background-color: transparent;
	overflow: hidden;
	position: relative;
	background-repeat: no-repeat;
}

.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-2 .preset {
	max-width: calc(100%/2);
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-2 .preset-1 .preset--inner {
	background-position: left;
	border-right: 2px solid #000000;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-2 .preset-2 .preset--inner {
	background-position: right;
}

.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-3 .preset {
	max-width: calc(100%/3);
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-3 .preset-1 .preset--inner {
	background-position: left;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-3 .preset-2 .preset--inner {
	background-position: center;
	border-left: 2px solid #000000;
	border-right: 2px solid #000000;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-3 .preset-3 .preset--inner {
	background-position: right;
}

.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-4 .preset {
	max-width: calc(100%/4);
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-4 .preset-1 .preset--inner {
	background-position: 0% 50%;
	border-right: 2px solid #000000;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-4 .preset-2 .preset--inner {
	background-position: 50% 50%;
	border-right: 2px solid #000000;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-4 .preset-3 .preset--inner {
	background-position: 75% 50%;
	border-right: 2px solid #000000;
}
.modal-swiper .swiper-container .swiper-wrapper .swiper-slide .presets.jokes-4 .preset-4 .preset--inner {
	background-position: 100% 50%;
}

.modal-swiper .swiper-container .swiper-pagination {
	padding: 0 20px;
	bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    -moz-transition: all 0.1s ease-out 0ms;
    -o-transition: all 0.1s ease-out 0ms;
    -webkit-transition: all 0.1s ease-out 0ms;
    transition: all 0.1s ease-out 0ms;
}
.modal-swiper .swiper-container:hover .swiper-pagination {
	opacity: 1;
	pointer-events: auto;
}
.modal-swiper .swiper-container .swiper-pagination-bullet {
	width: 26px;
	height: 26px;
	position: relative;
	border-radius: 50%;
	border: 3px solid #ffffff;
	background: transparent;
    opacity: 1;
    filter: drop-shadow(1px 1px 5px black);
    -webkit-filter: drop-shadow(1px 1px 5px black);
}
.modal-swiper .swiper-container .swiper-pagination-fraction, .modal-swiper .swiper-container  .swiper-pagination-custom, .modal-swiper .swiper-container  .swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 20px;
}
.modal-swiper .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 0px 0 18px;
}
.modal-swiper .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:first-child {
	margin: 0 0px 0 0px;
}
.modal-swiper .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
	background: transparent;
}
.modal-swiper .swiper-container .swiper-pagination .swiper-pagination-bullet-active::before {
	content: '';
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #ffffff;
	position: absolute;
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
}

.lazy-screenshot.loading {
	background-image: url(../../images/placeholders/loading.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 200px!important;
}
.lazy-preview-background.loading {
    background-image: url(../../images/placeholders/loading.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%!important;
    background-size: 200px!important;
}
.modal-lazy-screenshot.loading {
	background-image: url(../../images/placeholders/loading.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%!important;
    background-size: 200px!important;
}
.modal-lazy-preview-background.loading {
    background-image: url(../../images/placeholders/loading.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%!important;
    background-size: 200px!important;
}

/* Description */
.asset .info .description {
	width: 100%;
	display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
	flex: 1 1 auto;
	color: #666666;
	background: #000000;
}
.asset .info .description .desc-upper {
	width: 100%;
	height: 100%;
	padding: 20px;
	flex: 0 1 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
.asset .info .description .desc-upper a {
	color: #666666;
	text-decoration: none;
	font-weight: bold;
	-moz-transition: all 0.1s ease-out 0ms;
    -o-transition: all 0.1s ease-out 0ms;
    -webkit-transition: all 0.1s ease-out 0ms;
    transition: all 0.1s ease-out 0ms;
}
.asset .info .description .desc-upper a:hover, .asset .info .description .desc-upper a:focus {
	color: #ffffff;
}
.asset .info .description .desc-upper .inner {
	height: 100%;
	padding: 0 10px;
	overflow-x: hidden;
	overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.asset .info .description .text {
   	flex: 0 1 100%;
    margin-bottom: 24px;
}
.asset .info .description .parameter {
	display: flex;
	flex-direction: column;
}
.asset .info .description .parameter .parameter-item {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.asset .info .description .parameter .parameter-item .parameter-data {
	display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
}
.asset .info .description .parameter .parameter-item .parameter-data a {
	margin-left: 5px;
}
.asset .info .description .parameter .parameter-item .parameter-data a:first-child {
	margin-left: 0px;
}
.asset .info .description .desc-bottom {
	width: 100%;
	height: 50px;
	padding: 0 30px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 50px;
    border-top: 2px solid #494847;
}
.asset .info .description .brands {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.asset .info .description .brands .con {
    width: 30px;
    height: 30px;
    margin: 0 20px;
	background-repeat: no-repeat;
    background-position: center;
	-moz-transition: all 0.1s ease-out 0ms;
    -o-transition: all 0.1s ease-out 0ms;
    -webkit-transition: all 0.1s ease-out 0ms;
    transition: all 0.1s ease-out 0ms;
}
.asset .info .description .brands .con:hover {
	filter: brightness(300%);
	-webkit-filter: brightness(300%);
	cursor: pointer;
}
.asset .info .description .brands .fb {
	background-image: url(../../images/asset/fb_16px.png);
}
.asset .info .description .brands .tw {
	background-image: url(../../images/asset/x_16px.png);
}
.asset .info .description .brands .tg {
	background-image: url(../../images/asset/tg_16px.png);
}
.asset .info .description .brands .em {
	background-image: url(../../images/asset/ml_16px.png);
}
@media (max-width: 768px) {
	.asset .info {
		max-height: unset;
	    justify-content: center;
    	align-items: flex-start;
    	flex-direction: column;
	}
	.asset .preview {
	    width: 100%;
		flex: 1 1 auto;
		justify-content: center;
    	align-items: flex-start;
    	flex-direction: column-reverse;
	}
	.asset .preview .navigation {
	    width: 100%;
	    padding: 0;
	    justify-content: center;
        flex-direction: row;
	}
	.asset .preview .tab-content {
		width: 100%;
		-ms-flex: 1 1 auto;
	    flex: 1 1 auto;
	}
}
@media (min-width: 768px) and (max-width: 992px) {
	.asset .info {
		max-height: unset;
	    justify-content: center;
    	align-items: flex-start;
    	flex-direction: column;
	}
	.asset .preview {
	    width: 100%;
		flex: 1 1 auto;
	}
	.asset .preview .tab-content {
		-ms-flex: 1 1 auto;
	    flex: 1 1 auto;
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
	.asset .info {
		max-height: 349px;
	}
	.asset .preview {
		flex: 0 0 680px;
	}
	.asset .preview .tab-content {
		-ms-flex: 0 0 620px;
	    flex: 0 0 620px;
	}
	.asset .info .description {
		max-width: 312px;
	}
}
/* Downloads */
.asset .downloads {
	width: 100%;
	margin: 0 0 30px 0;
}
.asset .downloads .download {
	margin: 0 0 20px 0;
}
.asset .downloads .download:last-child {
	margin: 0 0 0px 0;
}
.asset .downloads .download .upper {
	height: 60px;
	padding: 5px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #494847;
	background-image: url(../../images/plates/lenta_2.jpg);
    background-repeat: repeat;
	background-position: bottom;
}
.asset .downloads .download .upper h2 {
	padding: 0 30px;
	font-size: 26px;
	line-height: 30px;
	font-weight: bold;
	text-transform: none;
	color: #ffffff;
	word-wrap: break-word;
}
.asset .downloads .download .upper span {
	padding: 0 30px;
	margin-left: auto;
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	font-weight: bold;
	color: #adadad;
	flex: 0 1 400px;
}
.asset .downloads .download .bottom {
	display: flex;
	justify-content: space-between;
	align-content: stretch;
	background: #000000;
}
.asset .downloads .download .bottom .description {
	padding: 30px;
	font-size: 16px;
	color: #666666;
	-ms-flex: 0 1 auto;
}
.asset .downloads .download .bottom .link {
	padding: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 400px;
}
@media (max-width: 768px) {
	.asset .downloads .download .upper {
		height: 100%;
		max-height: 80px;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		background-position: bottom;
		background-repeat: repeat;
	}
	.asset .downloads .download .upper span {
		margin-left: 0px;
		padding: 10px 30px;
	}
	.asset .downloads .download .bottom {
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		flex: 1 1 auto;
	}
	.asset .downloads .download .bottom .description {
		width: 100%;
	}
	.asset .downloads .download .bottom .link {
		width: 100%;
		flex: 0 1 auto
	}
}
/* Related */
.asset .related {
	width: 100%;
	margin: 60px 0 30px 0;
}
.asset .related .title {
	height: 45px;
    padding: 0 30px;
	margin-bottom: 5px;
	font-size: 26px;
    line-height: 30px;
	font-weight: bold;
	text-transform: none;
	color: #ffffff;
	border: none;
    background: none;
}
.asset .related .grid {
	display: grid;
    height: auto;
    grid-auto-flow: row;
    grid-auto-rows: minmax(20px, auto);
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1px;
}
.asset .related .grid .more {
	position: relative;
}
.asset .related .grid .more::before {
	content: "";
	display: block;
	padding-top: 100%;
}
.asset .related .grid .more .mask {
	padding: 0rem;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
	background: #202020;
	-webkit-transition: background 0.2s 0s;
	-moz-transition: background 0.2s 0s;
	-o-transition: background 0.2s 0s;
	transition: background 0.2s 0s;
}
.asset .related .grid .more .name {
	padding: 10px;
	color: #adadad;
    font-size: 48px;
	line-height: 48px;
	font-weight: bold;
    width: 100%;
    white-space: wrap;
    overflow: hidden;
	text-shadow: 1px 1px 0px #000000;
	text-align: center;
	z-index: 20;
	-webkit-transition: all 0.2s 0s;
	-moz-transition: all 0.2s 0s;
	-o-transition: all 0.2s 0s;
	transition: all 0.2s 0s;
}
.asset .related .grid .more:hover .mask {
	background: #292929;
}
.asset .related .grid .more:hover .name {
	color: #ffffff;
	-webkit-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

/*
.asset .related .grid .assetplate, .asset .related .grid .more {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	width: 100%;
}
@media (min-width: 576px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		width: 100%;
	}
}
@media (min-width: 768px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/2);
		flex: 0 0 calc(100%/2);
		width: calc(100%/2);
	}
}
@media (min-width: 1024px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/2);
		flex: 0 0 calc(100%/2);
		width: calc(100%/2);
	}
}
@media (min-width: 1440px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/4);
		flex: 0 0 calc(100%/4);
		width: calc(100%/4);
	}
}
@media (min-width: 1600px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/4);
		flex: 0 0 calc(100%/4);
		width: calc(100%/4);
	}
}
@media (min-width: 1920px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/4);
		flex: 0 0 calc(100%/4);
		width: calc(100%/4);
	}
}
@media (min-width: 2560px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/4);
		flex: 0 0 calc(100%/4);
		width: calc(100%/4);
	}
}
@media (min-width: 2880px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/4);
		flex: 0 0 calc(100%/4);
		width: calc(100%/4);
	}
}
@media (min-width: 3840px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/4);
		flex: 0 0 calc(100%/4);
		width: calc(100%/4);
	}
}
@media (min-width: 4096px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/4);
		flex: 0 0 calc(100%/4);
		width: calc(100%/4);
	}
}
@media (min-width: 8192px) {
	.asset .related .grid .assetplate, .asset .related .grid .more {
		-ms-flex: 0 0 calc(100%/4);
		flex: 0 0 calc(100%/4);
		width: calc(100%/4);
	}
}
*/

/* Keywords */
.asset .keywords {
    width: 100%;
    margin: 40px 0 60px 0;
}
.asset .keywords .title {
    height: 45px;
    padding: 0 30px;
    margin-bottom: 5px;
    font-size: 26px;
    line-height: 30px;
    font-weight: bold;
    text-transform: none;
    color: #ffffff;
    border: none;
    background: none;
}
.asset .keywords .keywords-list {
	flex-wrap: wrap;
    display: flex;
}
.asset .keywords .keywords-list .keyword {
    padding: 15px 20px 15px 20px;
    margin: 5px;
    display: inline-table;
    font-size: 16px;
    line-height: 10px;
    color: #666666;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #333333;
    background: #000000;
    -moz-transition: all 0.1s ease-out 0ms;
    -o-transition: all 0.1s ease-out 0ms;
    -webkit-transition: all 0.1s ease-out 0ms;
    transition: all 0.1s ease-out 0ms;
}
.asset .keywords .keywords-list .keyword:hover, .asset .keywords .keywords-list .keyword:focus {
	color: #ffffff;
	border-color: #808080;
}

.asset .creators {
    width: 100%;
    margin: 40px 0 40px 0;
}
.asset .creators .title {
    height: 45px;
    padding: 0 30px;
    margin-bottom: 5px;
    font-size: 26px;
    line-height: 30px;
    font-weight: bold;
    text-transform: none;
    color: #ffffff;
    border: none;
    background: none;
}
.asset .creators .creators-list {
	display: grid;
    height: auto;
    grid-auto-flow: row;
    grid-auto-rows: minmax(20px,auto);
    gap: 16px;
}
.asset .creators .creators-list.list-col-1 {
	grid-template-columns: repeat(auto-fill,minmax(1280px,1fr));
}
.asset .creators .creators-list.list-col-2 {
	grid-template-columns: repeat(auto-fill,minmax(580px,1fr));
}
.asset .creators .creators-list.list-col-3 {
	grid-template-columns: repeat(auto-fill,minmax(360px,1fr));
}
.asset .creators .creators-list .creator-item {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 128px 1fr;
    gap: 26px;
	text-decoration: none;
}
.asset .creators .creator-image {

}
.asset .creators .creator-image img {
	width: 128px;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    border: 3px solid #494847;
	transition: border 0.1s ease-out 0ms;
}
.asset .creators .creator-info ul {
	height: 100%;
    display: flex;
    align-content: flex-start;
    flex-direction: column;
    justify-content: center;
    row-gap: 14px;
}
.asset .creators .creator-info ul li {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
    text-transform: none;
    color: #666666;
	transition: color 0.1s ease-out 0ms;
}
.asset .creators .creator-info ul li:first-child {
	font-size: 22px;
    line-height: 24px;
    font-weight: bold;
}
.asset .creators .creator-info ul li i {
	color: #666666;
	text-decoration: underline;
	font-style: normal;
	transition: color 0.1s ease-out 0ms;
}
.asset .creators .creator-info ul li span img {
	width: 24px;
	height: auto;
	aspect-ratio: 1 / 1;
	transition: all 0.1s ease-out 0ms;
}

.asset .creators .creators-list .creator-item:hover .creator-image img {
	border: 3px solid #ffffff;
}
.asset .creators .creators-list .creator-item:hover .creator-info ul li {
	color: #ffffff;
}
.asset .creators .creators-list .creator-item:hover .creator-info ul li i {
	color: #ffffff;
}
.asset .creators .creators-list .creator-item:hover .creator-info ul li span img {
	filter: brightness(300%);
	-webkit-filter: brightness(300%);
}
.ads-wide {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
.ads-wide .ads-info {
	font-size: 10px;
    line-height: 12px;
	color: #666666;
}