﻿		/***----chat box wrapper css------****/
		#chat-circle {
			position: fixed;
			bottom: 25px;
			right: 35px;
			width: 55px;
			height: 55px;
			border-radius: 50%;
			color: white;
			z-index: 100;
			line-height: 47px;
			text-align: center;
			cursor: pointer;
			-webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 0.7);
			-moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 0.7);
			-ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 0.7);
			animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 0.7);
			z-index: 999999;
		}

		#chat-circle i {
			font-size: 18px;
		}

		.btn-raised {
			background: #38a7d0;
			box-shadow: 0 0 0 0 rgba(235, 49, 90, 0.22);
		}

		.btn#my-btn {
			background: white;
			padding-top: 13px;
			padding-bottom: 12px;
			border-radius: 45px;
			padding-right: 40px;
			padding-left: 40px;
			color: #5865C3;
		}

.chat-box {
    display: none;
    position: fixed;
    right: 30px;
    z-index: 10000;
    bottom: 34px;
    background: #fff;
    width: 385px;
    max-width: 85vw;
    max-height: 100vh;
    border-radius: 5px;
    -ms-box-shadow: 0 6px 20px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 6px 20px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 6px 20px 20px rgb(0 0 0 / 10%);
    box-shadow: 0 6px 20px 20px rgb(0 0 0 / 10%);
}

		.chat-box-toggle {
			float: right;
			margin-right: 20px;
			cursor: pointer;
		}
.chathead img {
    width: 60px;
    margin-right: 10px;
}
.chat-box-header {
    background: #3751a0;
    height: auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-box-body {
		position: relative;
		height: 370px;
		height: auto;
		border: 1px solid #e2e2e2;
		overflow: hidden;
}

.chat-box-body:after {
    content: "";
    background-image: url(../img/003.jpg);
    height: 100%;
    background-position: center 0;
    background-size: cover;
    opacity: 0.9;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    position: absolute;
    z-index: -1;
}
		.chat-input {
			background: #fff;
			width: 100%;
			position: relative;
			height: 50px;
			padding-top: 10px;
			padding-right: 50px;
			padding-bottom: 10px;
			padding-left: 15px;
			border: none;
			resize: none;
			outline: none;
			border: 1px solid #e2e2e2;
			color: #777;
			border-top: none;
			border-bottom-right-radius: 5px;
			border-bottom-left-radius: 5px;
			overflow: hidden;
		}


		.chat-submit {
			position: absolute;
			bottom: 7px;
			right: 10px;
			background: transparent;
			box-shadow: none;
			border: none;
			border-radius: 50%;
			color: #38a7d0;
			width: 35px;
			height: 35px;
			font-size: 18px;
		}
.chat-messageicon {
    position: relative;
}
.chat-logs {
    padding: 15px 0px 0px 0px;
    height: 370px;
    overflow-y: auto;
}
.chat-msg .from-icon {
    background-image: url(../img/ct.png);
    background-repeat: no-repeat;
    background-size: 24px;
    position: absolute;
    left: 0px;
    top: 40px;
    border-radius: 30px;
    width: 24px;
    height: 24px;
    display: inline-block;
    background-position: center center;
    z-index: 999999;
}
		.chat-logs::-webkit-scrollbar-track {
			background-color: #F5F5F5;
		}

		.chat-logs::-webkit-scrollbar {
			width: 5px;
			background-color: #F5F5F5;
		}

		.chat-logs::-webkit-scrollbar-thumb {
			background-color: #c5c5c5;
		}

		@media only screen and (max-width: 500px) {
			.chat-logs {
				height: 40vh;
			}
		}

		.chat-msg.user>.msg-avatar img {
			width: 45px;
			height: 45px;
			border-radius: 50%;
			float: left;
			width: 15%;
			position: relative;
			z-index: 10;
		}

		.chat-msg.self>.msg-avatar img {
			width: 45px;
			height: 45px;
			border-radius: 50%;
			float: right;
			width: 15%;
			z-index: 10;
		}

		.cm-msg-text {
    background: #3751a0;
    padding: 8px 25px 8px 25px;
    color: #fff;
    /* z-index: 10000000; */
    max-width: 75%;
    float: left;
    margin-left: 10px;
    position: relative;
    border-radius: 9px 0px 0px 0px;
    margin-top: 12px;
}

		.chat-msg {
			clear: both;
			float: left;
			width: 100%;
			margin-bottom: 25px;
			position: relative;
		}

	.chat-msg.self>.cm-msg-text {
    float: right;
    margin-right: 10px;
    background: #38a7d0;
    color: #fff;
    position: relative;
    z-index: 10;
    border-radius: 0px 0px 0px 10px;
}

		.user span img {
			float: right;
		}

		.cm-msg-button>ul>li {
			list-style: none;
			float: left;
			width: 50%;
		}

		.chat-msg img {
			position: relative;
			z-index: 100;
		}

		.cm-msg-button {
			clear: both;
			margin-bottom: 70px;
		}

		@-webkit-keyframes pulse {
			to {
				box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
			}
		}

		@-moz-keyframes pulse {
			to {
				box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
			}
		}

		@-ms-keyframes pulse {
			to {
				box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
			}
		}

		@keyframes pulse {
			to {
				box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
			}
		}

		/* chat boat end */



		.goog-te-banner-frame {
			left: 0px;
			top: 0px !important;
			height: 39px;
			width: 100%;
			z-index: 10000001;
			position: fixed;
			border: none;
			border-bottom: 1px solid #6b90da;
			margin: 0;
			-moz-box-shadow: 0 0 8px 1px #999999;
			-webkit-box-shadow: 0 0 8px 1px #999999;
			box-shadow: 0 0 8px 1px #999999;
			position: absolute;
			display: none;

		}

		iframe.goog-te-banner-frame,
		.skiptranslate span {
			display: none !important;
		}

		div.goog-te-gadget {
			color: transparent !important;
		}

		.goog-logo-link {
			display: none !important;
		}

		.dropdown.nav-flag-dropdown {
			position: absolute;
			top: -6px;
		}

		.goog-logo-link {
			display: none !important;
		}

		.goog-te-gadget {
			text-align: right;
			color: transparent !important;
			line-height: 2px;
		}

		.goog-te-gadget .goog-te-combo {
			margin: 4px 0;
			padding: 5px;
			border-radius: 3px;
		}

		#google_translate_element img {
			display: none !important;
		}

		.language .goog-te-combo .form-control {
			font-size: 13px;
			min-height: 4px;
			padding: 4px;
			border-radius: 6px;
			width: 90px;
			border: none;
		}