body > .navbar {
	position: fixed;
}

.slide {
	display: grid;
	grid-template-columns: 100%;
	align-items: start;
}

.slide#header {
	background-image: url("../../../img/bg.png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	align-items: center;
	min-height: 100vh;
	padding: 100px 0;
}

.slide#header .sitename {
	display: block;
	padding-bottom: 40px;
	text-align: center;
}

.slide#header .sitedesc {
	line-height: 28px;
	font-size: 16px;
	letter-spacing: 1px;
	text-align: center;
}

.slide#header .button-block {
	padding-top: 80px;
	text-align: center;
	width: 440px;
	margin: auto;
}

.slide#header .button-block .btn {
	height: 100px;
	line-height: 100px;
	box-shadow: 0 0 20px #42A5F5;
	border-radius: 12px;
	display: grid;
	width: 100%;
	grid-gap: 20px;
	align-items: center;
	grid-template-columns: 100px calc(100% - 120px);
	padding: 0;
	margin: 0;
}

.slide#header .button-block .btn:hover {
	box-shadow: 0 0 60px #42A5F5;
}

.slide#header .button-block .btn > .block-left {
	text-align: center;
	font-size: 40px;
	border-right: 2px solid rgba(0,0,0,0.1);
}

.slide#header .button-block .btn > .block-right > span {
	display: block;
	line-height: 24px;
}

.slide#header .button-block .btn .ip {
	font-size: 16px;
	text-transform: uppercase;
}

.slide#header .button-block .btn .online {
	color: rgba(0,0,0,0.3);
}

.slide#header .shop-scroll {
	padding-top: 40px;
	text-align: center;
}

.slide#header .shop-scroll > .btn {
	width: 64px;
	height: 64px;
	line-height: 64px;
	border-radius: 50%;
	margin: auto;
	padding: 0;
	font-size: 20px;
	background-color: rgba(0,0,0,0.4);
}

.slide#header .shop-scroll > .btn:hover {
	background-color: #42A5F5;
}

.slide#shop {
	padding: 100px 0;
}

.slide#shop .tabs > .tab-links {
	padding: 0;
	background-color: transparent;
	border-radius: 0;
}

.slide#shop .tabs > .tab-links > li {
	padding-right: 20px;
}

.slide#shop .tabs > .tab-links > li:last-child {
	padding: 0;
}

.slide#shop .tabs > .tab-links > li .tab-link {
	background-color: rgba(0,0,0,0.4);
	border: 0;
	border-radius: 4px;
	min-width: 160px;
	padding: 0 16px;
	font-size: 14px;
	line-height: 40px;
	height: 40px;
}

.slide#shop .tabs > .tab-links > li .tab-link.active {
	background-color: #2196F3;
}

.slide#shop .tabs > .tab-links > li .tab-link:hover:not(.active) {
	background-color: rgba(0,0,0,0.6);
}

.slide#shop .tabs > .tab-links > li .tab-link .fa {
	margin-right: 8px;
}

.slide#shop .items {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	align-items: start;
}

.slide#shop .items > .item-id {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	height: 240px;
	cursor: pointer;
	transition: all 450ms cubic-bezier(.23,1,.32,1) 0s;
}

.slide#shop .items > .item-id.window {
	padding: 0;
	border-radius: 4px;
	overflow: hidden;
}

.slide#shop .items > .item-id:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	left: 0;
	top: 0;
	position: absolute;
	z-index: 1;
}

.slide#shop .items > .item-id:hover {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.slide#shop .items > .item-id > .title {
	position: absolute;
	z-index: 2;
	bottom: 60px;
	left: 0;
	width: 100%;
	padding: 0 20px;
	font-size: 20px;
	font-weight: 500;
}

.slide#shop .items > .item-id > .price {
	top: 20px;
	right: 0;
	font-weight: 600;
	position: absolute;
	z-index: 3;
	width: 100%;
	padding: 0 20px;
	text-align: right;
	font-size: 110%;
}

.slide#shop .items > .item-id > .newprice {
	top: 10px;
	right: 0;
	font-weight: 500;
	position: absolute;
	z-index: 3;
	width: 100%;
	padding: 0 20px;
	text-align: right;
}
.slide#shop .items > .item-id > .category {
	bottom: 20px;
	position: absolute;
	z-index: 2;
	left: 0;
	width: 100%;
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	padding: 0 20px;
}

.slide#shop .items > .item-id .data {
	display: none;
}

.slide#shop .items-block-none {
	padding: 80px 0;
	width: 540px;
	margin: auto;
	text-align: center;
}

.slide#shop .items-block-none .input-block > label {
	font-size: 24px;
	text-align: center;
	display: block;
	padding-bottom: 20px;
}

.slide#shop .items-block-none .input-block > input {
	text-align: center;
	line-height: 64px;
	height: 64px;
	font-size: 20px;
}

.slide#shop .items-block-none .btn[type="submit"] {
	height: 48px;
	line-height: 48px;
	width: 200px;
}

#method .method-list {
	font-size: 0;
	text-align: center;
	display: flex;
	gap: 20px;
	row-gap: 60px;
	align-items: start;
	flex-wrap: wrap;
	padding: 20px;
}

#method .method-list > li {
	height: 120px;
	list-style: none;
	font-size: 14px;
	flex: 1 0 30%;
}

#method .method-list > li:last-child {
	margin: 0;
}

#method .method-list > li > a {
	display: block;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	padding: 10px;
	background-origin: content-box;
	border-radius: 10px;
	box-shadow: 0 0 20px #42a5f5;
	border: 1px solid #eee;
	transition: all 450ms cubic-bezier(.23,1,.32,1) 0s;
	box-sizing: border-box;
}
#method .method-list > li > p {
	display: block;
    padding: 5px;
}

#method .method-list > li > a:hover {
	-webkit-box-shadow: 0 0 20px 0 rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 0 0 20px 0 rgba(34, 60, 80, 0.2);
	box-shadow: 0 0 60px #42A5F5;
}

#method .method-list > li > a[data-pic="qiwi"] {
	background-image: url("../../../img/methods/qiwi.png");
}

#method .method-list > li > a[data-pic="unitpay"] {
	background-image: url("../../../img/methods/unitpay.png");
}
#method .method-list > li > a[data-pic="card"] {
	background-image: url("../../../img/methods/card.png");
}
#method .method-list > li > a[data-pic="yookassa"] {
	background-image: url("../../../img/methods/yookassa.png");
}