* { font-family: 'Noto Sans Display'; font-weight: 300; box-sizing: border-box }

span, nobr, a { font-size: inherit; font-weight: inherit; color: inherit }

b, strong { font-weight: 600 }

i, em { font-style: italic }

table { width: 100%; max-width: calc(100vw - 40px); border-collapse: collapse }

td { vertical-align: top }

input[type="text"], textarea { width: 100% }

body, html {
	margin: 0;
	padding: 0;
	background: #FFF
}

.min-full-h {
	min-height: calc(100vh - 174px)
}

.fullslide, .autoslide {
	padding-top: 60px;
}

body.overflow {
	overflow: hidden
}

.maxw {
	max-width: 1200px;
	margin: 0 auto;
	display: block
}

.fullslide {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden
}

.autoslide {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden
}

h1 {
	color: #000;
	font-size: 32px;
	font-weight: normal
}

h2 {
	color: #333;
	font-size: 28px;
	font-weight: normal
}

h3 {
	color: #444;
	font-size: 24px;
	font-weight: normal
}

a { color: #159 }

a:hover { color: #37B }

.white {
	color: #FFF
}

.npblue, .neuroplay-sign span {
	color: #2fa4da
}

.npblue-bg {
	background-color: #2fa4da
}

a.white-link {
	color: #FFF;
	text-decoration: underline
}

a.white-link:hover {
	opacity: 0.64
}

a.local-link {
	color: inherit;
	text-decoration: none;
	display: inline-block;
	border-bottom: 1px #333 dashed
}

a.local-link:hover {
	color: #159;
	border-bottom: 1px #159 dashed
}

a.local-link.white {
	color: white;
	border-bottom: 1px #FFF dashed
}

a.local-link.white:hover {
	color: #CCC;
	border-bottom: 1px #CCC dashed
}

a.local-link.green {
	color: #71b732;
	border-bottom: 1px #71b732 dashed
}

a.local-link.green:hover {
	color: #71b732;
	border-bottom: 1px #71b732 dashed
}

.button {
    font-size: 14px;
    margin-bottom: 0.5em;
    background: #0CF; padding: 6px 16px; width: auto;
    border-radius: 20px;
    padding-bottom: 8px;
    color: #FFF;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
		border: 0
}

.button:hover {
    transition: 0.5s;
    color: #000;
    background: #3C0
}

.grid-table {
	display: table;
	width: 100%
}

.grid-50-item {
	width: 50%;
	padding: 2em;
	display: table-cell;
	box-sizing: border-box
}

.grid-33-item {
	width: 33%;
	padding: 2em;
	display: table-cell;
	box-sizing: border-box
}

.grid-22-item {
	width: 22%;
	display: table-cell;
	box-sizing: border-box;
	vertical-align: top;
	padding: 5px
}

.grid-22-item video {
	width: 100%
}

.grid {
	display: flex;
	border-spacing: 10px;
	margin: 0 auto;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-grow: 1
}

.grid-item {
	min-width: 320px;
	min-height: 200px;
	flex-grow: 1;
	background: transparent;
	text-align: center;
	margin-top: 20px
}

.grid-item .icon {
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	width: 100%;
	height: 25vh;
	min-height: 200px;
	margin-top: 40px;
	display: block
}

.grid-item .title {
	text-align: center;
	font-weight: 600;
	font-size: 20px;
	color: #000;
	text-decoration: none
}

.grid-item .title:hover {
	color: #000
}

.grid-item .description {
	margin: 0 auto;
	display: inline-block;
	max-width: 190px
}

.grid-item_model .intro {
	display: block;
	width: 148px;
	margin: 0 auto
}

.grid-stub {
	min-height: 10px;
	height: 10px
}

@media (max-width: 800px) {
	.grid-table {
		display: block
	}

	.grid-50-item,
	.grid-33-item,
	.grid-22-item {
		display: block;
		width: 100%;
		padding-top: 0em;
		padding-bottom: 1em
	}
}

@media (min-width: 768px) {
	.grid-item_model {
		-webkit-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
		-ms-transform-style: preserve-3d;
		transform-style: preserve-3d;
		transition: all .5s;
		position: relative
	}

	.grid-item_model:hover {
		z-index: 100
	}

	.grid-item_model:before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(135deg, #2fa4da 0%, #99d2ed 100%);
		opacity: 0;
		visibility: hidden;
		z-index: -1;
		-webkit-transition: opacity .5s, visibility .5s;
		-moz-transition: opacity .5s, visibility .5s;
		-ms-transition: opacity .5s, visibility .5s;
		-o-transition: opacity .5s, visibility .5s;
		transition: opacity .5s, visibility .5s;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px
	}

	.grid-item_model:hover:before {
		opacity: .75;
		visibility: visible
	}

	.grid-item .icon {
		-webkit-transition: all .5s;
		-moz-transition: all .5s;
		-ms-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s;
		transition-delay: .25s
	}

	.grid-item_model:hover .icon {
		transform: translate3d(0, -40px, 45px)
	}

	.grid-item .description {
		-webkit-transition: all .5s;
		-moz-transition: all .5s;
		-ms-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s;
		transform-style: preserve-3d
	}

	.grid-item_model:hover .description {
		transform: translate3d(0, -40px, 40px);
		transition-delay: .5s
	}

	.grid-item_model .price {
		-webkit-transition: all .5s;
		-moz-transition: all .5s;
		-ms-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s
	}

	.grid-item_model:hover .price {
		color: #fff;
		transform: scale(1.5);
		font-weight: bold
	}

	.grid-item {
		max-width: 33%
	}

	.grid-item_model .intro {
		display: flex;
		align-items: center;
		-webkit-transition: opacity .5s, visibility .5s;
		-moz-transition: opacity .5s, visibility .5s;
		-ms-transition: opacity .5s, visibility .5s;
		-o-transition: opacity .5s, visibility .5s;
		transition: opacity .5s, visibility .5s;
		position: absolute;
		top: 50%;
		left: 100%;
		transform: translate3D(-40px, -50%, 30px);
		z-index: 1;
		opacity: 0;
		visibility: hidden;
		background: rgba(0, 0, 0, .75);
		pointer-events: none;
		padding: 20px 20px 20px 30px;
		width: auto;
		max-width: 300px;
		color: #fff;
		border-radius: 15px
	}

	.grid-item_model:hover .intro {
		opacity: 1;
		visibility: visible
	}

	.grid-item_model .intro ul {
		list-style: none;
		text-align: left;
		margin: 0;
		padding-left: 0
	}

	.grid-item_model .intro li {
		position: relative;
		white-space: unset !important
	}

	.grid-item_model .intro li:before {
		content: '';
		display: inline-block;
		width: 5px;
		height: 5px;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		border-radius: 50%;
		background: linear-gradient(135deg, #b118ac 0%, #26c7da 100%);
		position: absolute;
		left: -10px;
		top: 7px
	}
}

a.main-menu {
	font-size: 16px;
	line-height: 44px;
	color: #159;
	text-decoration: none;
	font-weight: 400;
	display: inline-block;
	margin-left: 20px
}

a.main-menu:hover {
	color: #2fa4da;
	text-decoration: underline
}

#top-menu-holder {
	position: fixed;
	top: 0px;
	z-index: 100;
	background: rgba(195, 214, 223, 0.75);
	backdrop-filter: blur(4px);
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
	padding: 10px 0px
}

#neuroplay-logo {
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px
}

#top-menu {
	display: table-cell;
	width: 100%;
	line-height: 48px;
	padding-left: 16px
}

#top-basket {
	display: table-cell;
	text-align: right;
	vertical-align: middle;
}

.cart-button {
	padding: 4px;
	border-radius: 4px;
	background: #0CF;
	white-space: nowrap;
	cursor: pointer;
	color: white;
	display: inline-block
}

.cart-button:hover {
	opacity: 0.8
}

#top-basket * {
	color: #FFF;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none
}

#top-phone {
	display: table-cell;
	white-space: nowrap;
	line-height: 14px;
	text-align: right;
	padding-right: 10px;
	font-size: 0.9em;
	vertical-align: middle;
		display: none;
}

@media (max-width: 1300px) {
    #neuroplay-logo {
        padding-left: 0px
    }
    
    #top-menu-holder {
        padding-right: 10px
    }
}

@media (max-width: 900px) {
    a.main-menu {
        font-size: 14px;
        margin-left: 10px;
    }
		
		#top-menu-holder {
        padding-right: 10px
    }
}

@media (max-width: 800px) {
    #top-menu {
        display: none
    }
    
    #top-phone {
        width: 100%
    }
}

@media (max-width: 420px) {
    #top-phone {
        font-size: 0.1em;
        opacity: 0;
        width: 0;
    }
}

@media (max-width: 350px) {
     #dtop-basket {
         display: none
     }
    
}

.neuroplay-logo-sign {
	  display: table;
}
.neuroplay-logo {
    display: table-cell;
		min-width: 36px;
    min-height: 40px;
		vertical-align: middle;
    padding-right: 8px;
		background: url(/new/assets/images/Neuroplay-LOGO-only.png) no-repeat left bottom;
		background-size: 32px;
}

.neuroplay-sign {
    line-height: 32px;
    font-size: 20px;
    font-weight: bold;
		display: table-cell;
		vertical-align: middle;
		white-space: nowrap;
}

@media (max-width: 720px) {
	.grid-stub {
		display: none
	}
}

.grid-item .description ul {
	margin: 0 auto;
	margin-top: 24px;
	list-style: disc;
	text-align: left;
	padding: 0;
	position: relative;
	margin-left: 20px;
	margin-bottom: 20px
}

.grid-item ul li {
	margin-top: 6px;
	font-size: 14px
}

.app-download {
	display: inline-block;
	min-width: 32px;
	min-height: 32px;
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
	margin-left: 4px;
	margin-right: 8px;
	vertical-align: middle;
	text-decoration: none;
	line-height: 32px
}

a.app-download:hover {
	opacity: 0.64
}

.app-download.windows {
	background-image: url(../images/microsoft-windows.svg)
}

.app-download.plate {
    background-color: #FFF;
	background-image: url(../images/microsoft-windows.svg);
	background-size: 32px;
	background-position-x: 10px; 
	padding: 4px 10px;
	border-radius: 5px;
	border: 1px #999 solid;
	color: #000;
	font-weight: bold;
	min-width: 100px;
	text-align: left;
	filter: invert(1)
}

.app-download.linux {
	background-image: url(../images/linux.svg)
}

.app-download.apk {
	background-image: url(../images/android.svg);
	width: 141px;
	padding-left: 43px;
	margin-top: 1px;
	white-space: nowrap;
	font-size: 14px;
	overflow: hidden;
}


.app-download.android {
	background-image: url(../images/android.svg)
}

.app-download.googleplay {
	background-image: url(../images/google-play-badge-ru.png);
	width: 141px;
	height: 42px
}

.app-download.googleplay.en {
	background-image: url(../images/google-play-badge-en.png)
}


.app-download.rustore {
	background-image: url(../images/rustore-badge-ru.png);
	width: 141px;
	height: 42px;
	margin-top: 1px;
}

.app-download.rustore.en {
	background-image: url(../images/rustore-badge-en.png)
}

.app-download.appgallery {
	background-image: url(../images/appgallery-badge-ru.png);
	width: 141px;
	height: 42px;
	margin-top: 1px;
}

.app-download.appgallery.en {
	background-image: url(../images/appgallery-badge-en.png)
}


.app-download.apple {
	background-image: url(../images/apple-keyboard.svg)
}

.app-download.macos {
	background-image: url(../images/apple.svg)
}

.app-download.document {
	background-image: url(../images/file-document-blue.svg)
}

.app-download.appstore,
.app-download.ios {
	background-image: url(../images/appstore-badge-en.png);
	width: 141px;
	height: 42px
}

.app-download span {
	display: inline-block;
	margin-left: 36px
}

.intro ul {
	text-align: left;
	padding-left: 1em
}

.readable h2 {
	color: #333
}

.readable h3 {
	margin-bottom: 0;
	color: #333
}

.readable strong {
	font-weight: bold
}

.close-readable {
	position: fixed;
	top: calc(50vh - 16px);
	right: 16px;
	background: #000;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	color: #FFF;
	line-height: 32px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer
}

.close-readable:hover {
	background: #333
}

.readable-header {
	margin: 0 auto;
	font-size: 28px;
	color: #FFF;
	text-transform: uppercase;
	display: inline-block;
	cursor: pointer
}

.readable-header span {
	display: inline-block;
	border-bottom: 1px dashed #FFF
}

.readable-header:hover {
	color: #CCC
}

@media (max-width: 500px) {
	.readable-header {
		font-size: 18px
	}
}

.app-item {
	margin-top: 40px
}

.app-icon {
	width: 48px;
	height: 48px;
	background-size: contain;
	background-color: #FFF;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
	background-position: center;
	border-radius: 8px;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2)
}

.app-name {
	display: inline-block;
	font-size: 20px;
	line-height: 32px;
	font-weight: bold;
	margin-left: 0.5em;
	width: 160px;
	text-align: left;
	margin-top: 40px
}

.app-desc {
	font-size: 14px;
	text-align: left;
	max-width: 310px;
	margin: 0 auto;
	margin-top: 10px
}

.app-desc ul {
	margin-left: 20px
}

.gal-item {
	margin: 0;
	padding: 0;
	border: 10px solid rgba(255, 255, 255, 0);
	filter: hue-rotate(8deg)
}

.gal-item img {
	width: 100%;
	height: 20vh;
	min-height: 250px;
	object-fit: cover;
	object-position: center
}

.partner-grid {
	display: flex;
	flex-flow: wrap;

}

.partner-link {
	display: inline-block;
	flex-grow: 1;
	width: 150px;
	height: 100px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	    transition: all 0.4s;
	    transform: scale(1);
}

.partner-link:hover {
    transform: scale(1.2);

}

.contacts {
	color: #000
}

.contacts p {
	margin-bottom: 0
}

.contacts h2 {
	margin: 20px 0
}

.contacts h3 {
	margin: 10px 0
}

.contacts h3:before {
	content: "\A";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #000;
	display: inline-block;
	margin-right: 10px;
	position: relative;
	bottom: 5px
}

.contacts__routes__text {
	padding-left: 20px;
	margin-bottom: 20px
}

.contacts__routes__item {
	margin-bottom: 15px
}

.contacts__routes__item__head {
	padding: 10px 40px 10px 10px;
	font-size: 18px;
	font-weight: bold;
	box-shadow: 0 0 3px #b5b5b5;
	cursor: pointer;
	position: relative
}

.contacts__routes__item__head:after {
	width: 20px;
	height: 20px;
	font-family: "Font Awesome 5 Free";
	content: "\f078";
	position: absolute;
	right: 10px;
	top: calc((100% - 20px) / 2);
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s
}

.contacts__routes__item__head.active:after {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg)
}

.contacts__routes__item__head .round {
	width: 13px;
	height: 13px;
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px
}

.contacts__routes__item__body {
	display: none;
	padding: 10px 15px
}

.navigator-link {
	font-size: 20px;
	color: #333;
	display: block;
	margin: 10px 0
}

.contacts__requisites {
	margin: 0 0 10px;
	font-size: 20px;
	display: block;
	color: #333
}

.contacts__requisites i {
	color: blue
}

.showOnMobile {
	display: none
}

.downloads-type {
	position: relative
}

.downloads-type__icon {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 90px;
	transform: translate(calc(-50% + 2.14286rem), -50%)
}

.downloads-item {
	background-color: rgba(29, 26, 55, .75);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	box-shadow: 0 0 5px rgba(255, 255, 255, .4);
	transition: .5s
}

.downloads-item img {
	margin-right: 10px
}

.downloads-item:hover {
	box-shadow: 0 0 10px rgba(255, 255, 255, .8)
}

.downloads-link {
	color: #ccc;
	-webkit-transition: color .5s;
	-moz-transition: color .5s;
	-ms-transition: color .5s;
	-o-transition: color .5s;
	transition: color .5s
}

.downloads-link:hover {
	color: #4fd2c2;
	text-decoration: none
}

.table-holder {
	overflow-x: auto;
	max-width: calc(100vw - 40px)
}

div.table, .feedback-form {
	display: table;
	width: 100%;
	border-collapse: collapse;
}

div.table-wrapper {
	overflow-x: auto;
	max-width: calc(100vw - 40px)
}

div.tr, div.table tr {
	display: table-row;
}

div.td, div.table td,
div.th, div.table th {
	display: table-cell;
	padding: 8px;
}

div.th, div.table th {
	background: #cbe8f5;
	vertical-align: middle
}

div.table.borders div.td,
div.table.borders td,
div.table.borders div.th,
div.table.borders th{
	border: 1px #CCC solid;
}

.text-center {
	text-align: center;
}

.nowrap {
	white-space: nowrap
}

table.roomy td,
table.roomy th {
	padding: 20px;
	vertical-align: middle;
	border-color: #CCC
}

table.roomy th {
	background: #cbe8f5
}

.lang {
	display: inline-block
}

.lang.active {
	display: none
}

.sidemenu__bottom {
	position: absolute;
	bottom: 0;
	left: 20px
}

.sidemenu__lang {
	color: #9CF;
	font-size: 20px;
	font-weight: 400;
	text-decoration: none;
	white-space: nowrap
}

.sidemenu__phone {
	color: #999;
	font-size: 20px;
	font-weight: 400;
	text-decoration: none;
	white-space: nowrap
}

.bulleted {
	background: url(new/assets/images/lightbulb.svg) no-repeat top left;
	background-size: 0.8em;
	min-height: 1em;
	background-position-y: 0.1em;
	padding-left: 1.2em;
	line-height: 1em
}

a.doc {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 40px;
	text-align: center;
	text-decoration: none
}

a.doc img {
	box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
	margin-bottom: 0.5em;
	transition: 0.2s
}

a.doc:hover img {
	transform: scale(1.05, 1.05);

}

.news-all > a {
	text-decoration: none
}

.latest-news {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-evenly
}

.latest-news .latest-news__item {
	display: flex;
	width: calc((100% - 120px) / 3);
	padding:30px;
	background-color: white;
	box-shadow: 1px 1px 10px rgb(0 0 0 / 20%);
	border-radius: 20px
}

.latest-news .latest-news__item:hover {
	box-shadow: 2px 2px 20px rgb(0 0 0 / 20%)
}

@media (max-width: 991px) {
	.latest-news {
		flex-direction: column;
		align-items: center;
		padding: 0 10%
	}

	.latest-news .latest-news__item {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 20px
	}
}

@media (max-width: 450px) {
	.latest-news .latest-news__item {
		padding: 10px
	}
}

.latest-news__item a {
	color: black;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center
}

.latest-news__item .latest-news__title {
	flex: 0 1;
	margin: 0;
	text-align: center
}

.latest-news__item .latest-news__date {
	flex: 1;
	font-size: 15px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end
}

.latest-news__item .latest-news__image img{
	width: 100%
}

.latest-news__item .latest-news__image{
	max-width: 100%;
	margin-top: 10px;
	margin-bottom: 20px
}

.auto-table {
	display: table;
	width: 100%;
}

.auto-col {
	display: table-cell;
	vertical-align: middle;
	max-width: 25%;
	padding: 4px;
}

.auto-row {
	display: table-row;
}

.auto-row.selectable:hover {
	background: #F6F6F6;
	cursor: pointer;
	overflow: hidden;
}

.auto-col.center {
	text-align: center
}

.auto-col.center ul {
	display: inline-block
}

@media (max-width: 800px) {
	.auto-table, .auto-col, .auto-row {
		display: block;
		max-width: 100%;
	}
	.auto-col {
		width: auto;
		margin: 0 auto;
	}
	
	.center-mobile {
	    text-align: center !important;
	}
}

.news-container {
	padding: 0 15px;
	display: flex;
	flex-direction: column
}

@media (max-width: 991px) {
	.news-container {
		justify-content: center
	}
}

input[type=text],
textarea {
	padding: 8px;
	border: 1px #999 solid;
	border-radius: 4px
}

@media (max-width: 1000px) {
	.partner-link {
		width: 300px
	}
}

@media (max-width: 800px) {
	.partner-link {
		width: 200px
	}
}

@media (max-width: 650px) {
	.partner-link {
		width: 250px
	}

	.small-width-align-center {
		text-align: center
	}

	table.roomy td,
	table.roomy th {
		padding: 10px
	}
}

@media (max-width: 450px) {
	table.roomy td,
	table.roomy th {
		padding: 5px
	}
}

@media screen and (max-width: 767px) {
	.sidemenu__bottom {
		margin-top: 40px;
		position: static
	}

	.sidemenu__bottom a.lang {
		margin-left: 0 !important
	}
}

.button-buy
{
	display: inline-block;
	background: #0CF;
	border: 1px #999;
	border-radius: 4px;
	padding: 0.5em 1em;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
}

.button-buy.basket-full
{
    background: #6eda33;
}

.button-buy .basket
{
    display: inline-block;
    color: rgba(255,255,255,0.5);
    width: 24px;
    height: 24px;
    position: relative;
    margin: -4px;
    margin-left: 0;
    margin-bottom: -6px;
}

#top-basket .fa-shopping-cart
{
    display: inline-block;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(/assets/images/bag.svg) no-repeat center;
    background-size: 100%;
    filter: invert(1);
    float: right;
    margin-left: 15px;
}

.basket .basket-amount
{
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 24px;
    height: 20px;
    line-height: 20px;
    color: #FFF;
    text-align: center;
    font-size: 14px;
}

.shop-cart .full
{
    position: relative;
}

.shop-panel
{
    border: 0;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.container_basket h1 {
    margin: 0;
}

.clear-basket {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 2;
    cursor: pointer;
}

.shop-cart-table {
    display: table;
    width: 100%
}

.shk_count_button {
    background: transparent;
    display: inline-block;
    border: 0;
    vertical-align: middle;
    margin: 0 !important;
    opacity: 0.5;
    cursor: pointer;
}

.shk_count_button:hover {
    opacity: 1;
    transition: all 0.5s;
}

checkIsOrderLink,
.shk_count_button .fa-minus,
.shk_count_button .fa-plus {
    width: 24px;
    height: 24px;
    background: url(/assets/images/minus.svg) no-repeat center;
    background-size: cover;
    opacity: 0.5;
    display: block;
}

.shk_count_button .fa-plus {
    background-image: url(/assets/images/plus.svg);
}

input.shk-count {
	width: 25px;
}

.shk_count_button { width: 26px; height: 26px; white-space: nowrap; padding: 0; margin:0 4px; /*border-radius: 13px;*/ }
.shk-but { margin: 0 4px; }
.shk-count { padding: 2px; text-align: center; }

.tabs__head {
	display: flex;
	width: fit-content;
}

.tabs__head__item {
	width: 50%;
	text-align: left;
	padding: 10px 0;
	font-size: 20px;
	line-height: 1;
	color: #333;
	box-sizing: border-box;
	cursor: pointer;
	background-image: url(/assets/images/radiobox-blank.svg);
	background-repeat: no-repeat;
	background-size: 24px;
	padding-left: 32px;
	padding-right: 16px;
	background-position-y: center;
	background-position-x: 0px;
	white-space: nowrap;
	
}

.tabs__head__item.active {
	cursor: default;
	background-image: url(/assets/images/radiobox-marked.svg);
}

.tabs__head__item.active {
	background-color: #FFF;
	color: #000;
	border-color: #FFF;
}

.tabs__body {
	border: 0;
	border-radius: 0 0 20px 20px;
	background: #FFF;
	margin-bottom: 20px;
}

.tabs__body fieldset
{
    border: 0;
    padding: 0;
}

.tabs__body__tab {
	display: none;
}

.tabs__body__tab.active {
	display: block;
}


formButton.error {
	color: #FFF
}

#formButton.disabled {
	background-color: #CCC;
	color: #E6E6E6;
	pointer-events: none
}

#formButtonEntity.error {
	color: #FFF
}

#formButtonEntity.disabled {
	background-color: #CCC;
	color: #E6E6E6;
	pointer-events: none
}

.basket-form {
	display: table;
	width: 100%
}

.basket-form .basket-form__row {
	display: table-row
}

.basket-form .basket-form__col {
	display: table-cell;
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: top
}

.basket-form .basket-form__col.header {
	color: #333;
	font-size: 14px;
	white-space: nowrap;
	padding-right: 10px;
	padding-top: 20px
}

.basket-form input[type="text"],
.basket-form select,
.basket-form textarea {
	background: white;
	border: 2px #CCCCCC solid;
	border-radius: 16px;
	padding: 8px;
	min-width: 200px;
	width: 100%;
	color: #000;
	font-size: 16px;
	max-width: 500px
}

.basket-form .required {
	border-color: #159 !important
}

.basket-form .error {
	border-color: #C30 !important;
	box-shadow: 0 0 3px #C30
}

.ship-notes {
	font-size: 13px;
	background: #e0f0fb;
	padding: 12px;
	border-radius: 16px;
	display: inline-block
}

.ship-notes a {
	color: #1690e5
}

.basket-form input[type="submit"],
.basket-submit {
	background: #159;
	color: #FFF;
	padding: 10px 20px;
	font-size: 20px;
	border-radius: 10px;
	border: 0;
	cursor: pointer
}

.mobile-visible {
	display: none
}



.shop-cart-row {
	display: table-row;
	background: #FFF;
	border-bottom: 2px solid #999
}

.shop-cart-column {
	display: table-cell;
	vertical-align: middle;
	padding: 10px
}

.basket-total {
	width: 100%;
	text-align: right
}

.cart-order__price {
	font-size: 16px;
	color: #333;
	white-space: nowrap
}

.cart-order__amount {
	border: 1px #CCC solid;
	border-radius: 3px;
	padding: 2px;
	display: inline-block;
	white-space: nowrap
}

.cart-order__amount .shk-count {
	border: 0;
	background: transparent;
	text-align: center;
	padding: 0
}

.cart-order__title a {
	font-size: 20px;
	color: #000;
	text-decoration: none;
	font-weight: 600
}

.cart-order__name {
	font-size: 16px;
	color: #333
}

.cart-order__description {
	font-size: 14px;
	color: #333
}

.cart-order__table_header {
	color: #666;
	font-size: 12px;
	padding-bottom: 4px;
	text-align: center
}

.border-top-gray {
	border-top: 2px #E6E6E6 solid
}

#shk_butEmptyCart, .delete-cart-button {
	display: inline-block;
	background: url(/assets/images/trash-can-outline.svg) no-repeat center;
	background-size: contain;
	width: 24px;
	height: 24px;
	opacity: 0.5
}

#shk_butEmptyCart:hover,
.delete-cart-button:hover {
	opacity: 1;
	transition: all 0.5s
}




@media (max-width: 800px) {
	.burgerable {
		display: none
	}
	.burger, .mobile-visible-block {
		display: block
	}
	.td.burger {
		display: table-cell
	}
	.table-scatter, .table-scatter .tr, .table-scatter .td {
		display: block;
		margin-bottom: 20px;
		width: 100% !important
	}
	.mobile-left {
		text-align: left
	}
	.mobile-center {
		text-align: center
	}
	footer * {
		font-size: 14px
	}
	.mobile-lowercase {
		text-transform: lowercase
	}
	.fullslide {
		height: auto;
		min-height: 100vh
	}
	.mobile-no-pad-right {
		padding-right: 0
	}
	.mobile-no-pad {
		padding: 0
	}
	.mobile-no-margin-top {
		margin-top: 0
	}
	.mobile-w100-with-pad40 {
		width: calc(100vw - 40px) !important
	}
	.mobile-w100-with-pad60 {
		width: calc(100vw - 60px) !important
	}
	.fs32-mob24 {
		font-size: 24px
	}
	.ta-center-mob-left {
		text-align: left
	}
	.ta-right-mob-left {
		text-align: left
	}
	.ta-right-mob-center {
		text-align: center
	}
		#burger {
		top: 0;
		right: 0;
	}
}

@media (max-width: 500px) {
	.review .quote, .white .table {
		padding: 0 30px
	}
	.button-buy {
		font-size: 14px!important
	}
	.review.standalone .quote {
		padding: 0px
	}
	#main-menu .button-buy {
	 margin-right: -10px;
	 padding: 6px 4px 6px 8px
	}
	.button-buy .basket {
		width: 16px;
		height: 18px;
		margin-right: -2px;
		margin-left: -3px
	}
	.basket .shopping-bag {
		width: 16px;
		height: 16px
	}
	.basket .basket-amount {
		top: 3px;
		width: 16px;
		height: 13px;
		line-height: 13px;
		font-size: 10px
	}
	.mobile-invisible {
		display: none
	}
	.mobile-visible {
		display: inherit
	}
	.shop-panel {
		margin: -20px;
		padding: 20px 10px !important;
		border-radius: 0
	}

	.basket-form input[type="text"],
	.basket-form select,
	.basket-form textarea {
		background: white;
		border: 1px #CCCCCC solid;
		border-radius: 16px;
		padding: 8px;
		min-width: 200px;
		color: #000;
		font-size: 14px;
		max-width: 100%
	}
	.basket-form,
	.basket-form__row,
	.basket-form__col {
		display: block !important;
		width: 100%
	}
	.basket-form__col.header {
		padding-bottom: 0;
		padding-top: 0px
	}
	.tabs__head {
		display: block
	}
	.tabs__head div:first-child {
		margin-bottom: 10px
	}
	.shk_count_button {
		display: block;
		margin: 0 auto
	}
	.cart-order__amount {
		text-align: center
	}
	.container_basket {
		border-radius: 0px;
		margin: -20px;
		padding: 20px
	}
	.cart-order__price {
		font-size: 0.9em
	}
}

.product-table {
    display: table;
}

.product-col-auto {
    display: table-cell;
    vertical-align: top;
}

.product-col-full {
    padding: 20px;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

@media (max-width: 650px) {
    .product-table,
    .product-col-auto,
    .product-col-full {
        display: block;
        width: auto;
        text-align: center;
    }
    
    .product-table {
        width: auto;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
.desktop-max-200 {
    max-width: 200px;
}

.desktop-max-250 {
	max-width: 250px;
}

.desktop-max-300 {
    max-width: 300px;
}

.desktop-max-350 {
    max-width: 350px;
}



.desktop-max-400 {
    max-width: 400px;
}
.desktop-pad-right-20 {
    padding-right: 20px;
}
}

@media (max-width: 768px) {
.mobile-as-table {
    display: table;
    dbackground: #E1E5E9;
    border-radius: 20px;
    padding: 0px 20px;
    margin-top: 10px;
}
.mobile-bold {
    font-weight: bold;
}
.mobile-panel {
    border-radius: 20px;
    border: 2px #DDD solid;
    padding-bottom: 1em;
    margin-bottom: 1em;
}

}

.attention-note {
	color: #159; 
	border: 2px #159 solid; 
	border-radius: 2px; 
	background: #FFF; 
	padding: 6px; 
	font-size: 0.6em; 
	font-weight: bold; 
	display: inline-block; 
	margin-top: 8px;
}
