<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

@font-face {
	font-family: 'Fira Code';
	src: url('/files/fonts/FiraCode-Light.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

html {
	overflow-y: scroll; font-size: 16px; min-width: 320px; height:100%;
	scroll-behavior: smooth;
}
* {
	box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;
	/*transition: all 0.3s;*/
	font-size: 1em;
	font-family: 'Fira Code', monospace;
	margin: 0px;
}
[id] {
	scroll-margin-top: 4em;
}
pre { font-family: Consolas, monospace; }
body {
	background: #808080;
	background-size: auto;
	color: #101010;
	height: 100%; min-height: 100vh;
	margin: 0;
	-webkit-text-size-adjust: none;
}
img { display: block; }
	
th { font-weight: bold; color: #686; }
ul { margin: 0; padding: 0 0 0 1em; text-indent: 1em; display: flow-root; }
li { margin: 0 0 .3em 0; padding: 0; text-indent: 0; }

/*=== multilevels numerated list ===*/
ol {
	list-style: none; counter-reset: li;
	padding-left: 2em;
	text-indent: -2em;
}
ol &gt; li:before {
	counter-increment: li; content: counters(li,".") ". ";
}
hr { margin: .5em 0 .5em 0; }

/*=== general ===*/
.nofloat { clear: both; font-size: 0em; line-height: 0px; height: 0px; } 
.nowrap { white-space: nowrap; }
.noscroll { overflow:  hidden; }
.developer { font-size: 0.7em; text-align: center; background-color: #A0A0A0; color: #DDD; padding: 0.5%; margin: 0; }
.developer a { color: #DDD; }
.copyrights { font-size: 0.7em; opacity: 0.2; text-align: center; padding: 0; margin: 0; }
p.normal { margin: 0 0 .3em 0; text-align: left; }
.center { text-align:center; }

.error { color: #C00 !important; text-shadow: 0px 0px 1px #FFF, 0px 0px 3px #FFF; }
.accept { color: #0A0 !important; text-shadow: 0px 0px 1px #FFF, 0px 0px 3px #FFF; }
.accept i:before { content: "✔\fe0e"; margin-right: .2em; font-style: normal; font-size: 1.5em; line-height: .7em; }
.warning { color: #D80 !important; text-shadow: 0px 0px 1px #FFF, 0px 0px 3px #FFF; }
.warning i:before { content: "\26A0"; margin-right: .2em; font-style: normal; font-size: 1.5em; line-height: .7em; }

.money { color:#080; }
.money_sub { color:#E44; }
.dsk, .dsk_gray { font-size: .8em; }
.dsk_gray { color: #444; }

/*** tost-message ***/
.toast-message {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	background-color: #444;
	padding: 12px 20px;
	border-radius: 6px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	z-index: 9999;
	font-family: sans-serif;
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0;
}
.toast-message .toast-close {
	cursor: pointer;
	font-weight: bold;
}
.toast-message.ok {
	background-color: #080;
}
.toast-message.error {
	background-color: #800;
}

form {
	display: inline-block;
	margin: 0;
	padding: 1vh 1vw 1vh 1vw;
	border-radius: 1em;
	box-shadow: 1px 1px 5px 1px rgba(0,0,0,.5);
	background-color: #EEE;
}
form p { padding: .2em 0 .2em 0; }
fieldset {
	border: 1px solid #888;
	border-radius: 1em;
	padding: .2em 1em .5em 1em; margin: .2em 0 .3em 0;
}
legend { margin: 0 .5em .3em 0; padding: 0 .5em 0 .5em; }

input, textarea, select, option, button {
	font-size : 1.2em;
	font-style: normal;
	font-weight: normal;
	margin: 0; padding: 0 .2em 0 .2em;
	color: #000;
	background-color: #FFF;
}
input[type=password], input[type=text], input[type=email], input[type=tel], textarea, select  { border: 1px solid #D6D6D6; }
input.invalid, textarea.invalid { border: 1px solid #F00; box-shadow: 0 0 .5em #F00 inset; }
input, button, textarea, select { border-radius: 0px; padding: .2em; margin: .2vh 0px .2vh 0px; vertical-align: middle; }
input[type=password]:disabled, input[type=text]:disabled, input[type=email]:disabled, input[type=tel]:disabled, textarea:disabled, select:disabled { border-color: #888; background-color: #AAA; }
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, select:focus, textarea:focus, input[type=password]:focus { border-color: #B4AF8C; background-color: #FFF; box-shadow: 0px 0px 4px 0px #B4AF8C inset; }
select { padding: 2px; }
option { background: #FFF; }
/**/
label { margin: 0px 15px 0px 0px; padding: 3px 0px 5px 0px; cursor: pointer; }
input[type=checkbox], input[type=radio] { border: none; padding: 0px; margin: 0px 7px 4px 0px; position:relative; cursor: pointer; }
input[type=checkbox]:checked { box-shadow: 0px 0px 5px 1px rgba(0,0,100,0.5); }
input[type=radio]:checked { box-shadow: 0px 0px 7px 2px rgba(0,0,100,0.5); }
/**/

.btn, button, input[type=submit], input[type=button] {
	font-weight: normal;
	line-height: 2em;
	margin: .1em 0 .3em 0; padding: .2em 1em .2em 1em;
	text-decoration: none; text-shadow: none; text-align: center; text-transform: uppercase;
	cursor: pointer;
	position: relative;
	display: inline-block;
	user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;
	color: #FFF;
	box-shadow: none;
	background-color: #7047eb;
	border-radius: 8px; border: 0px;
	transition: .1s;
}
.btn:hover, button:hover, input[type=submit]:hover, input[type=button]:hover,
.btn:focus, button:focus, input[type=submit]:focus, input[type=button]:focus {
	color: #FFF;
	box-shadow: none;
	background-color: #8055ff;
	scale: 1.02;
}
/**/
button:hover i { -webkit-filter: grayscale(100%) contrast(200%); filter: grayscale(100%) contrast(200%); }
button:focus i { -webkit-filter: grayscale(100%) contrast(200%); filter: grayscale(100%) contrast(200%); }
/**/
.btn:active, button:active, input[type=submit]:active, input[type=button]:active {
	background-color: #623bd6;
	scale: 1.0;
}
.btn.disabled, button:disabled, input[type=submit]:disabled, input[type=button]:disabled {
	color: #AAA;
	background-color: #777;
}
.btn:disabled:hover, button:disabled:hover, input[type=submit]:disabled:hover, input[type=button]:disabled:hover {
	color: #AAA;
	cursor: default;
	background-color: #777;
}

/* === special === */
.adminaccess { border: 2px dotted #F00; padding: 0px 3px 0px 3px; }

/*=== a ===*/
a          { color: #7047eb; text-decoration: underline; font-weight: normal; word-break: keep-all; white-space: nowrap; }
a:hover    { color: #623bd6; }
a:hover .i { -webkit-filter: grayscale(0%) contrast(150%); filter: grayscale(0%) contrast(150%); }
u.a_js, .a_js u            { color: #7047eb; text-decoration-style: dotted; cursor: pointer; }
u.a_js:hover, .a_js u:hover { color: #623bd6; }
u.a_js:hover .i, .a_js u:hover .i { -webkit-filter: grayscale(100%) contrast(200%); filter: grayscale(100%) contrast(200%); }
.a_js u      { text-decoration: none; }
.a_js u:hover { text-decoration: underline; text-decoration-style: dotted; }

/*=== cart ===*/
.cart_input_cnt { float: left; text-align: center; width: 1.7em; margin: 0; padding:0; height: 2em; }
.cart_discoint_box { float:left; padding:10px; background-color:#EFE; box-shadow: 0px 0px 1px #888; }
@media only screen and (max-width : 600px) {
	.cart_table .mob_hide { display: none; }
}

/*=== phone button ===*/
.phone_mobile {
	width: 64px; height: 64px;
	z-index: 1000;
	position: fixed;
	bottom: -4px; left: 0px;
	display: none;
}
.phone_mobile img { width: 100%; }

/* buttons [+/-] */
.button_step_container { float: left; font-size: 1em; height: 2em; margin: 0 0 0 0; padding: 0; border-right: 1px solid #D6D6D6; }
.button_step_up, .button_step_down {
	color: #777; background-color: #FFF;
	text-align: center;
	vertical-align: top;
	display: inline;
	margin: 0; padding: 0;
	width: 1em;
	box-shadow: 0 0 0 0;
	line-height: 1.2em;
	vertical-align: top;
}
.button_step_up:hover, .button_step_down:hover { color: #FFF; }
.button_step_up::before, .button_step_down::before { content: "^"; }
.button_step_down { -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); }
.button_step_up   { height: calc(1em); border-top: 1px solid #D6D6D6; border-bottom: 1px solid #D6D6D6; }
.button_step_down { height: calc(1em); border-top: 1px solid #D6D6D6; border-bottom: 1px solid #D6D6D6; margin-top: -2px; }
.button_step_down:disabled { color: #AAA; background-color: #DDD; }
.button_step_down:disabled:hover { color: #AAA; background-color: #DDD; }

/*=== icons &amp; images ===*/
.i {
	background: url("/img/main/icons.png?4") no-repeat scroll 0px 0px transparent;
	overflow: hidden; vertical-align: middle; display: inline-block; padding: 0px; margin: 0px;
	line-height: 1em;
	width: 16px; height: 16px;
}
.disabled&gt;.i { -webkit-filter: grayscale(100%) contrast(0%); filter: grayscale(100%) contrast(0%); }
/**/
.i-logo    { background-position: 0px 0px; width: 365px; height: 110px; }
.i-w_close { background-position: 0px -140px; width: 44px; height: 44px; }
.i-cart     { background-position: 0px -190px; width: 32px; height: 35px; font-size: .7em; text-align: center; }
.i-cart_add { background-position: -30px -190px; width: 27px; height: 28px; border-left: 1px solid rgba(255,255,255,.2); margin-top: -2px; }
.i-discount   { background-position: -254px -140px; width: 85px; height: 53px; float: right; position: relative; top: -16px; right: -16px; margin: -0 0 -53px 0; color: #FFF; padding: 16px; font-size: 1.2rem; text-align: center; }
/**/
.i-soc_vk, .i-soc_inst { width: 45px; height: 45px; }
.i-soc_vk   { background-position: 0px -230px; }
.i-soc_inst { background-position: -50px -230px; }
/**/
.i-arch, .i-pdf, .i-doc, .i-xls { width: 40px; height: 46px; }
.i-arch { background-position:    0px -280px; }
.i-pdf  { background-position:  -40px -280px; }
.i-doc  { background-position:  -80px -280px; }
.i-xls  { background-position: -120px -280px; }
/**/
.i-pay_mir, .i-pay_visa, .i-pay_jcb, .i-pay_mastercard { height: 50px; }
.i-pay_mir			{ width: 143px; background-position: 0px -340px; }
.i-pay_visa			{ width: 135px; background-position: -143px -340px; }
.i-pay_jcb			{ width: 78px;  background-position: -278px -340px; }
.i-pay_mastercard	{ width: 191px; background-position: 0px -390px; }

/*=== tables ===*/
.text-table { margin: 0px; }
.text-table td, th { padding: 5px 10px 5px 10px; }
.text-table th { color: #444; background-color: #EEE; }
.table-bordered { border-collapse: collapse; border: 1px solid #888; }
.table-bordered td, th { border-collapse: collapse; border: 1px solid #888; }

/*=== headers ===*/
h1, h2, h3, h4, h5  {
	font-weight: bold;
	text-align: left;
	padding: 0px;
	margin: 0 0 .3em 0;
	color: #000;
}
h1 { font-size: 2.2em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.1em; }

/* === general blocks === */
.page_box, .menu {
	width: 100%;
	max-width: 1224px; /* 1224px, 1400px */
	text-align: left;
	padding: 0px;
	margin: 0 auto;
	clear: both;
}
.page_box {
	box-shadow: 0px 0px 0px 1px rgba(0,0,0,.1), 0px 0px 10px 0px #000;
	background-color: #FFF;
}
.content_box, .header_cont, .menu {
	padding: 0 4vw 0 4vw;
}
main {
	clear: both;
	margin: 0;
	padding: 2em 0 2em 0;
}
h2.page_head {
	margin-bottom: .5em;
}

/*=== header ===*/
.header_box {
	margin: 0;
	padding-top: 3.75em;
	background: #404040 url(/img/main/head01.jpg) no-repeat center;
	background-size: cover;
	width: 100%;
}
.header_cont {
	margin: 0;
	padding-top: 2vh;
	width: 100%;
	display: flex; align-content: flex-start;
}
.header_cont .logo {
	flex: 1 1 auto;
	margin-right: 2%;
}
.header_cont .logo h1 {
	color: #FFF;
	text-shadow: 0px 0px 1px #000, 0px 0px 5px #000;
}
.header_cont .logo .subhead {
	font-size: .55em;
	color: #EEE;
}
.header_cont .right_space {
	flex: 1 1 auto;
}

/* === announces === */
.announces {
	height: 110px;
	font-size: .9rem;
	display: flex; align-content: flex-start;
}
.announces &gt; .item {
	margin-left: 2%; padding: .8em 1em .5em 1em; border-radius: 1em;
	background-color: rgba(255,255,255,.7); box-shadow: 0 0 5px 1px rgba(0,0,0,.1);
	overflow: auto;
	width: 46%;
	flex: 1 1 auto;
}
.announces &gt; .item h5 { color: #F00; margin-top: -.15em; }
.announces &gt; .item img { float: left; width: 88px; height: 88px; margin-right: 1em; box-shadow: 0 0 2px rgba(0,0,0,.3); }
.announces &gt; .item.href { cursor: pointer; }
.announces &gt; .item.href:hover { background-color: rgba(255,255,255,.85); }
.announces &gt; .item.href:active { background-color: rgba(255,255,255,1); }

/* === menu "burger" === */
.burger {
	display: none;
	float: left;
	position: relative;
	width: 4em; height: 4em;
	cursor: pointer;
	background-color: rgba(0,0,0,.6);
	z-index: 2;
}
.burger span {	
	position: absolute;
	width: 60%;
	margin: 0 20% 0 20%;
	height: 4px;
	top: calc(50% - 2px);
	background-color: #FFF;
	transition: background-color .3s;
}
.burger span:before,
.burger span:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: #FFF;
	transform: rotate(0deg);
	transition: background-color .3s, transform .4s ease-in-out, top .4s ease-in-out;
}
.burger span:before {
	top: .8em;
}
.burger span:after {
	bottom: .8em;
}
.burger:hover, .burger:focus, .burger:active { background-color: #555; }
.burger.opened { background-color: #666; }
.burger:hover span,
.burger:hover span:before,
.burger:hover span:after,
.burger.opened:hover span:before,
.burger.opened:hover span:after {	
	background-color: #FFA;
}
.burger.opened {
	box-shadow: 3px 3px 5px #000;
}
.burger.opened span {
	background-color: transparent;
}
.burger.opened span:before {
	background-color: #FFF;
	transform: rotate(45deg);
	top: 0;
}
.burger.opened span:after {
	background-color: #FFF;
	transform: rotate(-45deg);
	top: 0;
}

/* === menu &amp; submenu === */
.menu {
	z-index: 10;
	position: fixed;
	top: 0;
	display: table;
	opacity: 1;
	font-size: 1.2em;
	line-height: 3em;
	background-color: rgba(32,32,32,.7);
}
.submenu {
	position: inherit;
	color: #FFF;
	background-color: #444;
}
.menu ul {
	display: inline;
	float: left;
	list-style: none;
	text-indent: 0px;
	padding: 0;
	background-color: rgba(112,71,235,.5);
}
.menu li {
	margin: .04em 0 0 0;
	padding: 0;
	display: inline-block;
	user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;
}
.menu .logo_menu { display: none; }
#menu_top ul, #submenu_top ul { margin: 0; }
/**/
.menu .socnet { float: right; }
.menu .socnet a, .menu .socnet button { background-color: transparent; padding: 0; }
.menu .socnet a { width: 4rem; text-align: center; }
/**/
.menu a {
	text-decoration: none;
	display: inline-block;
	text-shadow: 0 0 3px #000;
	padding: 0px 1vw 0px 1vw;
	color: #FFF;
	text-transform: uppercase;
}
.submenu a { text-transform: inherit; }
.menu a:hover    { background-color: rgba(112,71,235,.7); color: #FFA; }
.menu li.selected { background-color: rgba(112,71,235,.5); }
/**/
.menu .cart { float: right; }
.menu ul.cart { margin: 0px; }
/**/
.menu_bottom { font-size: .8em; opacity: .5; margin: 2em auto 1em auto; text-align: center; }
.menu_bottom ul { list-style: none; display: block; text-indent: 0px; margin: 0px; }
.menu_bottom li {
	display: inline-block;
	user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;
	margin: 0px .2em 0px .2em;
	padding: 0px .2em 0px .2em;
}
.menu_bottom li.selected { background-color: #FFF; }
/* General Media Queries */
@media only screen and (max-width : 1140px) {
	html { font-size: 15px; }
	.i { transform: scale(0.94); }
	.i-logo { width: calc(365px * 0.9); height: calc(110px * 0.9); background-size: 100% auto; transform: scale(1); }
	.announces { height: calc(110px * 0.9); }
	.announces .item img { width: 80px; height: 80px; }
}
@media only screen and (max-width : 940px) {
	html { font-size: 14px; }
	.i { transform: scale(0.87); }
	.i-logo { width: calc(365px * 0.8); height: calc(110px * 0.8); background-size: 100% auto; transform: scale(1); }
	.announces { height: calc(110px * 0.8); }
	.announces .item img { width: 70px; height: 70px; }
}
@media only screen and (max-width : 820px) {
	html { font-size: 14px; }
	.burger { display: block; }
	.cart li a { width: 4em; width: 4em; text-align: center; }
	.cart #cart_text { display: none; }
	.menu { z-index: 110; line-height: 4em; padding: 0;}
	.header_box { padding: 0; height: 4.8em; }
	.header_cont .logo { display: none; }
	.menu .logo_menu { display: inline-block; float: left; text-align: center; margin-left: 1em; }
	.menu .logo_menu a { margin: 0; padding: 0; }
	.i { transform: scale(0.8); }
	.i-logo { width: 200px; height: 60px; background-size: 100% auto; transform: scale(1); margin: -2px 0px 0px 0px; }
	.i-cart { transform: scale(1); }
	.announces { display: none; }
	#menu_top {
		opacity: 0; line-height: 0em; font-size: 0em;
		margin: 0;
		position: fixed;
		margin-left: -4vw; left: 0em; top: 0em;
		transition: all .5s;
	}
	#menu_top.show {
		opacity: 1; line-height: 3em; font-size: 1em;
		margin: 0; 
		left: 0em; top: 4em;
	}
	#menu_top ul {
		background-color: #222;
		box-shadow: -1px 1px 5px rgba(255,255,255,0.1), 3px 3px 5px 0px #000;
	}
	#menu_top li { display: block; }
	#menu_top a { width: 100%; padding: 0 3vw 0 3vw; }
	/**/
	@media only screen and (max-height : 440px) {
		#menu_top.show { left: 4em; top: 0em; z-index: 1; }
	}
}
@media only screen and (max-width : 480px) {
	.menu .logo_menu { display: inline-block; width: calc(100% - 8em); text-align: center; margin: 0; }
	.menu .socnet { display: none; }
}
@media only screen and (max-width : 340px) {
	.i-logo { width: 186px; height: 56px; background-size: 100% auto; transform: scale(1); }
}

/*=== footer ===*/
footer {
	margin: 0;
	width: 100%;
}
.cnt { opacity: 0.5; font-size: 0px; }
.cnt img { display: inline; margin: 0 0.5% 0 0.5%; }
img.cnt_in { opacity: 0; margin: 0; padding: 0; font-size: 0px; position: absolute; bottom:0; left:0; border: 0; width: 0px; height: 0px; }


/* === menu drop list ===*/
.menu_drop {
	display: block;
	position: absolute;
	z-index: 10;
	max-height: 1500px;
	overflow: hidden;
	transition: .3s linear
}
.menu_drop ul {
	display: block; list-style: none; text-indent: 0px; margin: 0px;
	border: calc(4px + 0.7vmin + 0.7vmax) solid #3A1B2D; background: #26121E; box-shadow: 3px 3px 5px #000;
}
.menu_drop li {
	display: block;
	user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;
}
.menu_drop &gt; ul &gt; li &gt; u, .menu_drop &gt; ul &gt; li &gt; a { padding: 10px 1vw 10px 1vw; display: block; }
.menu_drop.closed { max-height: 0; }

/* === modal winodw === */
.modal_window {
	display: none;
	position: fixed;
	top: 10%; left: 10%;
	width: 50%; height: 50%;
	box-shadow: 2px 2px 7px 1px #000;
	border-radius: 10px;
	padding: calc(.3em + .3%);
	background-color: #888;
	z-index: 1100;
}
@media screen and (max-width: 768px) { 
	.modal_window {
		border-radius: 5px;
		box-shadow: 1px 1px 3px 1px #000;
	}
}
.modal_close_button {
	position: absolute;
 	top: -19px;
	right: -19px;
	cursor: pointer;
}
.loading { background: url('/img/main/loading.gif') no-repeat 50% 50%; }
.loading.fit { background-size: contain; }
.modal_bg { display: none; position:fixed; left:0; top:0; right:0; bottom:0; z-index: 1000; background-color: rgba(0,0,0,0.6); }
.modal_cont { background-color: #FFF; overflow: auto; -webkit-overflow-scrolling:touch; height: 100%; }
.modal_cont_indents { padding: calc(.5em + .5%); display: block; height: 100%; clear: both; }
.modal_cont_center {
	position: relative; top: 50%; text-align: center;
	-webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);
}

/*=== row_box ===*/
.row_box {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
	padding: .5em 0 .5em 0;
}
.row_box.reversed {
	flex-direction: row-reverse
}
.row_box .row_item {
	margin: 0;
	padding: 0;
	flex: 1 1 240px;
}
.row_box .row_item.w33 {
	flex: .0228 1 240px;
}
.row_box .row_item.bordered {
	border-radius: .5em;
	box-shadow: 0px 0px 0px 1px rgba(0,0,0,.2);
	padding: .7em 1em .7em 1em;
}

/* === lazy images === */
img.lazy_img {
	background: url('/img/main/loading.gif') no-repeat 50% 50% rgba(255,255,255,0.5);
	/*width: 100%; height: 100%;*/
}
/* === photoalbum === */
.photoalbum { display: inline-block; width: 100%; margin: 0; padding: 0; font-size: .8em; }
.photoalbum ul { display: inline-block; width: 100%; margin: 0; padding: 0; text-align: center; }
.photoalbum li {
	position: relative;
	display: block;
	float: left;
	margin-bottom: 1%;
	margin-right: 1%;
	overflow: hidden;
}
.photoalbum.w1 li { width: auto }
.photoalbum.w2 li { width: 49% }
.photoalbum.w3 li { width: 32% }
.photoalbum.w4 li, .photoalbum li { width: 24% }
.photoalbum.w5 li { width: 19% }
@media only screen and (max-width : 1000px) {
	.photoalbum.w5 li { width: 24% }
}
@media only screen and (max-width : 820px) {
	.photoalbum.w4 li, .photoalbum li { width: 32% }
}
@media only screen and (max-width : 640px) {
	.photoalbum.w3 li { width: 49% }
	.photoalbum.w5 li { width: 32% }
}
@media only screen and (max-width : 480px) {
	.photoalbum.w2 li { width: 100% }
}
/**/
.photoalbum li &gt; img {
	width: 100%;
}
.photoalbum li.zoomed, .photo .zoomed {
	border-radius: .7em;
	cursor: pointer;
}
.photoalbum img, .photo img {
	transition: .2s;
}
.photoalbum li.zoomed:hover &gt; img, .photo .zoomed:hover &gt; img {
	transform: scale(1.05);
	cursor: pointer;
}
.photoalbum_zoom {
	overflow: hidden;
	height: 100%;
	box-shadow: 0px 0px 1px #000;
	background: url('/img/main/loading.gif') no-repeat 50% 50% #EEE;
}
/* === photo === */
.photo { position: relative; text-align: center; font-size: .8em; padding: .1em 0 .5em 0; display: flow-root; }
.photo img { display: block; width: 100%; }
.photo a img:hover { box-shadow: 2px 2px 5px 1px rgba(0,0,0,.5); }
.photo.center { margin: 0 auto; }
.photo.fleft  { float: left; margin-right: 2em; }
.photo.fright { float: right; margin-left: 2em; }
.photo.left  { float: left; text-align: center; }
.photo.right { float: right; text-align: center; }
/**/
.photo.w1 { width: auto; }
.photo.w2 { width: 50%; }
.photo.w3 { width: 33.3%; }
.photo.w4, .photo { width: 25%; }
.photo.w5 { width: 20%; }
.photo .zoomed { overflow: hidden; }
/**/
@media only screen and (max-width : 1000px) {
	.photo.w5 { width: 25% }
}
@media only screen and (max-width : 820px) {
	.photo.w4, .photo { width: 33.3% }
}
@media only screen and (max-width : 640px) {
	.photo.w3 { width: 50% }
	.photo.w5 { width: 33.3% }
}
@media only screen and (max-width : 480px) {
	.photo.w2 { width: 100% }
}

/*** play button ***/
.play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 5em;
	height: 5em;
	margin: -2em 0 0 -2em;
	border-radius: 50%;
	background-color: rgba(112,71,235,.8);
}
.play-btn::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -1.2em 0 0 -.5em;
	border-style: solid;
	border-width: 1.2em 0 1.2em 1.6em;
	border-color: transparent transparent transparent white;
}</pre></body></html>