/**
 * Close button
 */

.device-mobile.chatbot-open {
	overflow: hidden;
}
.device-mobile.chatbot-close {
	overflow: hidden;
	overflow-y: initial;
}

.wpchatbot-quickaccess-close {
	position: absolute;
	top:15px;
	right:25px;
	min-width:30px;
	height:30px;
	background:#f7ce18;
	text-align: center;
	/*margin:0 20px 20px 0;*/
	z-index:30;
	border-radius:5px;
	font-size:12px;
	font-weight: 600;
	padding-top:3px;
	padding-left:8px;
	padding-right:8px;
	color:white;
	font-family: sans-serif;
	border-radius:50%;
	line-height: 200%;
}
@media (max-width: 1367px) {
	.tablet.wpchatbot-quickaccess-close,
	.mobile.wpchatbot-quickaccess-close {
		top: 13px;
		right: 23px;
		padding: 4px 7px 0;
		min-width: 20px;
		height: 20px;
		font-size: 11px;
		line-height: 13px;
	}
}
@media (max-width: 960px) {
	.mobile.wpchatbot-quickaccess-close {
		right: 20px;
	}
}

.wpchatbot-quickaccess-close:hover {
	cursor: pointer;
}

/**
 * Compact Mode
 */

.wpchatbot-quickaccess-compact {
	z-index: 1020;
	position: fixed;
	bottom: 0;
	right:0;
	width:65px;
	height:65px;
	border-radius:100%;
	background:#f7ce18;
	margin:0 20px 20px 0;
	text-align: center;
	-webkit-transition: bottom .3s linear;
	-moz-transition: bottom .3s linear;
	-ms-transition: bottom .3s linear;
	-o-transition: bottom .3s linear;
	transition: bottom .3s linear;
}

.wpchatbot-quickaccess-compact img {
	width:35px;
	margin-top:17px;
}

.wpchatbot-quickaccess-compact:hover {
	-webkit-box-shadow: 0px 0px 49px -13px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 0px 49px -13px rgba(0,0,0,0.45);
	box-shadow: 0px 0px 49px -13px rgba(0,0,0,0.45);
	cursor: pointer;
}

/**
 * Fullview
 */

.wpchatbot-quickaccess-fullview 
{
	display:none;
	position:fixed;
	top: 25vh;
	bottom:0;
	right:2%;
	z-index:10;
	height:auto;
	/*
	border-top-right-radius: 10px !important;
	border-top-left-radius: 10px !important;
	*/
	border: 1px solid transparent;
	-webkit-border-radius: 25px; 
	-moz-border-radius: 25px; 
	border-radius: 25px; 
	width:410px;
	height: 75vh !important;
	overflow: hidden;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 960px) and (orientation: portrait) {
	#page.mobile ~ .wpchatbot-quickaccess-fullview {
		z-index: 2000;
		height: 90vh !important;
	}
	.ios #page.mobile ~ .wpchatbot-quickaccess-fullview {
		z-index: 2000;
		top: auto;
		bottom: 1vh;
		height: 85vh !important;
	}
}
@media (max-width: 960px) and (orientation: landscape) {
	#page.mobile ~ .wpchatbot-quickaccess-fullview {
		z-index: 2000;
		top: auto;
		bottom: 2vh;
		width: 95vw;
		height: 85vh !important;
	}
}
@media (max-width: 960px) and (orientation: landscape) {
	.ios #page.mobile ~ .wpchatbot-quickaccess-fullview {
		bottom: 5vh;
		height: 80vh !important;
	}
}

.wpchatbot-quickaccess-fullview iframe {
	width:100%;
	height:100%;
	border-top-right-radius: 10px !important;
	border-top-left-radius: 10px !important;
	border:0px;
	-webkit-box-shadow: 0px 0px 49px -13px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 0px 49px -13px rgba(0,0,0,0.45);
	box-shadow: 0px 0px 49px -13px rgba(0,0,0,0.45);
}

/**
 * RESPONSIVE QUICK ACCESS
 */

/* Landscape phones and down */
@media (max-width: 480px) 
{ 
	.wpchatbot-quickaccess-fullview {
		width:100%;
		/* top:20vh; */
		top: auto;
		bottom: 0;
		right:0;
	}
}