/* Окно WhatsApp */

.whatsap:hover {
	cursor: pointer;
}

.whatsap-message {
	background: rgba(170,170,170,0.7);
	width: 88%;
	max-width: 350px;
	position: fixed;
	top: 15%;
	left: 120%;
	padding: 15px;
	z-index: 100;
	border: 2px solid var(--color-1);
	border-radius: 10px;
	box-shadow: 10px 10px 50px rgba(0,0,0,0.4), 
	-10px -10px 50px rgba(0,0,0,0.4), 
	-10px 10px 50px rgba(0,0,0,0.4), 
	10px -10px 50px rgba(0,0,0,0.4);
}

.whatsap-message a.custom-btn {
	background: var(--color-1);
	display: inline-block;
	position: relative;
	padding: 5px 15px;
	text-align: center;
	color: #fff;
	font-size: 0.85rem;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 5px;
	margin-top: 15px;
}

.whatsap-message a.custom-btn:hover {
	color: #fff;
}

span.whatsap-close {
	text-shadow: 1px 1px 3px #000;
	color: rgb(255, 255, 255);
	position: absolute;
	bottom: 10px;
    font-size: 28px;
    right: 15px;
}

.div-option {
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.div-option:last-child {
	border: none;
}

span.option {
	position: relative;
	display: block;
	padding: 6px 0 6px 24px;
	font-style: italic;
	font-size: 0.98rem;
	line-height: 1.28;
	color: #2c2c2c;
}
span.option:before {
	position: absolute;
	left: 0;
	content: "➞ ";
	font-style: initial;
	display: block; 
  	float: left;
}

.content span.option:hover {
	color: var(--color-1);
}

span.option.select {
	color: #d00;
	box-shadow: none;
	animation: 0.3s ease-out 0s 1 alternate whats_sel;
}
@keyframes whats_sel {
	from {
	  left: -26px;
	}
	to {
	  left: 0;
	}
}

span.option.select:before {
	content: "";
}

span.option:hover, .whatsap-close:hover {
	cursor: pointer;
}
.whatsap-close:hover {
	color: red;
}

.whatsap-message .content {
	transition: .55s opacity, .55s visibility;
	height: auto;
	background: #eee;
	width: 100%;
	clear: both;
}

.whatsap-message .content > div {
	overflow-y: scroll;
	overflow-x: hidden;
	max-height: 50vh;
	padding: 0 15px 10px 15px;
}

.whatsap-message p {
	color: #4e4e4e;
	font-weight: 600;
	padding: 15px 15px;
	margin: 0!important;
	text-transform: uppercase;
	text-align: center;
}

/* .whatsap-message p span {color: #b4b4b4;} */
.hidden {display: none;}
.visible {opacity: 0;}
.option-target {display: none;}