
/*chat bot*/

/*
#chat-bot-inicio{
	height: 285px;
	position: fixed;
	width: 170px;
	top: 150px;
	margin-left: -130px;
	z-index: 400;
	background-color:#fff;
	background:url('./images/bot-image.png') no-repeat;
	cursor: pointer;
	
}

#chat-bot{
	height: 500px;
	position: fixed;
	width: 400px;
	top: 150px;
	left:20px;
	z-index: 450;
	background-color:#fff;
    display:none;
}

#chat-bot div.cabezal{
	background:url('./images/cruz-de-cierre.png') right no-repeat #0078d7;
	height: 30px;
	cursor: pointer;
	width: 36px;
	float: right;
	margin-top: -30px;
	position: relative;
	top: 32px;
	z-index: 10;
	left: -5px;
}



#chat-bot iframe{
	height: 480px;
	width: 100%;
	position: relative;
	border:none;
}
*/

/*estilos de data*/


.chat-bot-bot-figure {
	position: fixed;
	bottom: 0;
	left: 0;
	margin: 15px;
	z-index: 450;
}

.chat-bot-bot-figure:hover {
	cursor: pointer;
}

.chat-bot-card {
    position: fixed;
    /*display: none;*/
    visibility:hidden;
    width: 300px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .25rem;
    bottom: 0;
    left: 0;
    margin: 3px;
    z-index: 1000 !important;
    box-shadow: 0 0 10px 1px rgba(0,0,0,.5);
}

.chat-bot-card-header {
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    width: 100%;
    display: flex;
}


.chat-bot-cerrar-bot {
    position: absolute;
    right: 0;
    margin-right: 25px;
    margin-top: 5px;
    font-weight: 600;
    color: white;
}

.chat-bot-cerrar-bot:hover {
	cursor: pointer;
}

.chat-bot-card-header-name{
	padding-left: 8px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 0px !important;
	width: 25%;
	float: left;
	color: white;
	display: block;
}
.chat-bot-card-header-title{
	padding-left: 8px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 0px !important;
	width: 75%;
	float: left;
	color: white;
	display: block;
}
.chat-bot-color-green-IM {
	background-color: #64b88b;
}
.chat-bot-color-blue-IM {
	background-color: #10b4d1;
}

.chat-bot-separador-img {
	margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    width: 100%;
    display: flex;
}
.chat-bot-separador-img-1 {
	width: 25%;
	height: 5px;
	display: block;
}
.chat-bot-separador-img-2 {
	width: 75%;
	height: 5px;
	display: block;
}



.chat-bot-card-img-holder{
	object-fit: cover;
	width: 100%;
	height: auto;
}





.chat-bot-card-body {
	min-height: 35vh;
}

.chat-bot-myframe {
	width: auto;
	height: 45vh;
	border: none !important;
}


/*imagenes
 * 
 * breaks
 * $break-small: 320px;
 * $break-medium: 480px;
 * $break-large: 768px;
 * 
 * */





/* imagenes para celulares y tabletas*/
@media all and  (max-width: 940px) {
	.chat-bot-bot-figure img.desktop,
	.chat-bot-card-img-holder img.desktop{
		display:none;
	}	

	.chat-bot-bot-figure img.mobile{
		max-width: 65px;
		max-height: 65px;
	}	


	.chat-bot-card-img-holder img.mobile{
		height:127px;
		width: 300px;
	}
}

/*para escritorio*/
@media all and  (min-width: 941px) {
	.chat-bot-bot-figure img.mobile,
	.chat-bot-card-img-holder img.mobile{
		display:none;
	}	

	.chat-bot-bot-figure img.desktop{
		max-width: 135px;
		max-height: 279px;
	}
	
	.chat-bot-card-img-holder{
		height: 127px;
	}

	.chat-bot-card-img-holder img.desktop{
		height: 127px;
		width: 300px;
	}
}


/*iframe en celulares*/
@media all and  (max-width: 480px) {
	.chat-bot-card {
		width: 100%;
		height: 100%;
		margin:none;
	}
	.chat-bot-card-header {
		height: 40px;
		position: absolute;
	}
	.chat-bot-card-img-holder,
	.chat-bot-card-img-holder img.mobile{
		width: 100%;
		height: auto;
	}
	
	.chat-bot-card-body {
		height: 100%;
		min-height: auto;
		padding-top: 40px;
		box-sizing: border-box;
	}

	.chat-bot-myframe{
		width: 100%;
		height: 100%;
	}
	
	.chat-bot-separador-img {
		display: none;
	}
}






















