.sw-widget {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	position: fixed;
	z-index: 100000000000;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #f8f8f8;
	padding: 15px;
	-webkit-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}

/* Мобильные устройства */
@media (max-width: 768px) {
	.sw-widget {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		padding: 20px;
	}
}

.sw-widget * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.sw-widget__img {
	width: 40px;
}

@media (max-width: 768px) {
	.sw-widget__img {
		margin-bottom: 15px;
	}
}

.sw-widget__text {
	width: calc(100% - 160px);
	padding: 0 15px;
	font: 14px "Open Sans", sans-serif;
	line-height: 1.3;
	color: #555555;
}

@media (max-width: 768px) {
	.sw-widget__text {
		margin-bottom: 15px;
		text-align: center;
		width: 100%;
		font-size: 16px;
	}
}

.sw-widget__text a {
	color: #00a700;
	text-decoration: underline;
}

.sw-widget__text a:visited {
	color: #00a700;
}

.sw-widget__text a:hover {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: #00c100;
}

.sw-widget__button {
	width: 120px;
	font: bold 14px "Open Sans", sans-serif;
	border-radius: 3px;
	height: 40px;
	border: none;
	background: #00a700;
	text-transform: uppercase;
	color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
}

@media (max-width: 768px) {
	.sw-widget__button {
		height: auto;
		display: inline;
		background: none;
		color: #b5b5b5;
		width: auto;
		font: 16px "Open Sans", sans-serif;
		text-transform: capitalize;
		line-height: 20px;
	}
	img.sw-widget__img {
		display: none;
	}
	.sw-widget {
		display: flex;
		flex-direction: row;
		background: rgb(22 22 22);
		border-radius: 20px;
		margin-bottom: 10px;
		width: auto;
	}
	.sw-widget__text {
		color: #e7e7e7;
		text-align: center;
		width: auto;
		font-size: 16px;
		padding: 0;
		margin: 0;
	}
	.cross {
		position: relative;
		width: 12px;
		height: 12px;
		margin-left: 12px;
	}
	.sw_widget_container {
		display: flex;
		justify-content: center;
	}

	.cross::before,
	.cross::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 2px; /* Толщина линий */
		height: 100%;
		background-color: #b5b5b5; /* Цвет крестика */
		transform-origin: center;
	}

	.cross::before {
		transform: translate(-50%, -50%) rotate(45deg); /* Первая линия */
	}

	.cross::after {
		transform: translate(-50%, -50%) rotate(-45deg); /* Вторая линия */
	}
}

.sw-widget__button:hover {
	background: #00c600;
	color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.grecaptcha-badge {
	visibility: hidden;
}
