.plashque {
	font-family: 'Montserrat', sans-serif;
	position: fixed;
	bottom: 26px;
	right: 24px;
	background-color: #fff;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
	z-index: 9999;
	display: flex;
	border-radius: 15px;
	color: #000;
}

.plashque.hide {
	right: -352px;
}

.plashque-toggle {
	z-index: 2;
	cursor: pointer;
}

.plashque-toggle__left {
	display: flex;
	align-items: center;
	width: 40px;
	height: 256px;
	writing-mode: vertical-rl;
}

.plashque-toggle__right {
	position: absolute;
	right: -8px;
	top: -8px;
}

.plashque-toggle__icon {
	width: 40px;
	height: 40px;
	display: inline-block;
	border-radius: 10px;
	background-color: #f1f1f1;
	background-position: center;
	background-repeat: no-repeat;
}

.plashque-toggle__icon-left {
	background-image: url(../images/bx_arrow-to-left.png);
}

.plashque-toggle__icon-right {
	background-image: url(../images/bx_arrow-to-right.png);
}

.plashque-toggle.active {
	border-radius: 10px;
}

.plashque-toggle div {
	white-space: nowrap;
	margin: auto;
}

.plashque-content {
	font-size: 15px;
	line-height: 18px;
	color: #fff;
	padding: 16px;
}

.plashque-image {
	position: relative;
}

.plashque-image video {
	border-radius: 5px;
}

.plashque-text {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	padding: 8px;
}

.plashque-under {
	padding: 26px 20px 18px 20px;
}

.plashque-btn {
	background-color: #FF0D0D;
	color: #fff;
	font-size: 16px;
	line-height: 19.5px;
	padding: 10px 0;
	width: 100%;
	text-align: center;
	display: inline-block;
	transition: .2s linear;
}

.plashque-btn:hover {
    box-shadow: 0px 0px 10px rgba(255, 13, 13, 0.6);
	color: #fff;
}

@media (max-width: 640px) {
	.plashque {
		display: none;
	}
}