
.s-cookie * {
			box-sizing: border-box;
		}
		.s-cookie {
		  position: fixed;
		  top: 0;
		  bottom: 0;
		  left: 0;
		  right: 0;
		  pointer-events: none;
		  z-index: 50;
		  box-sizing: border-box;
		}
		.s-cookie .w-cookie-alert {
			padding-left: 10px;
			padding-right: 10px;
			position: absolute;
			bottom: -1px;
			left: 0;
			right: 0;
			width: 100%;
			transition: all 0.2s ease;
		}
		.s-cookie .w-cookie-alert>.frame {
			margin-left: auto;
			margin-right: auto;
			max-width: 400px;
			padding: 15px;
			background-color: #202020;
			color: #fff;
			font-size: 0;
			line-height: 0;
			pointer-events: all;
			border-radius: 4px 4px 0 0;
		}
		.s-cookie .w-cookie-alert>.frame>* {
			display: inline-block;
			vertical-align: middle;
			font-size: 13px;
			line-height: 16px;
		}
		.s-cookie .w-cookie-alert>.frame>.text {
			width: calc(100% - 150px);
		}
		.s-cookie .w-cookie-alert>.frame>.w-button {
			width: 150px;
		}
		.s-cookie .w-cookie-alert>.frame .button {
			display: block;
			text-decoration: none;
			padding: 5px 15px;
			color: #fff;
			border: 1px solid #fff;
			background: transparent;
			transition: all 0.2s ease;
			text-align: center;
			min-height:inherit;
		}
		.s-cookie .w-cookie-alert>.frame .button:hover {
			background-color: #fff;
			border-color: #fff;
			color: #202020;
		}
		.s-cookie .w-cookie-alert>.frame .__link {
			color: #fff;
			text-decoration: none;
			transition: all 0.2s ease;
			opacity: 0.7;
			text-decoration: underline;
		}
		.s-cookie .w-cookie-alert>.frame a.__link:hover {
			opacity: 1;
			text-decoration: none;
		}
		.s-cookie.hide .w-cookie-alert {
			bottom: -500px;
		}
		@media (max-width: 575px) {
			.s-cookie .w-cookie-alert>.frame>.text {
				width: calc(100% - 90px);
			}
			.s-cookie .w-cookie-alert>.frame>.w-button {
				width: 90px;
			}
		}