html {
  scroll-behavior: smooth;
}


/* -----------------Modal---------------- */
:root {
	--bg-color:#1b1919;
	--bg-hover-color: #696363;
	--text-color: #fff;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style-type: none;
	font-family: 'Hind', sans-serif;
}
.modal-wrap {
	position: fixed;
	top: -150%;
	left: 0;
	margin: auto;
	width: 100%;
  height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: top .5s ease;
	z-index: 9;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-wrap.active {
  top: 0;
}
.modal-reg, .modal-sign {
	position: relative;
	margin: 40px;
	padding: 80px;
	display: block;
	width: 50%;
	background-color: var(--text-color);
	border-radius: 10px;
}
.exit {
	position: absolute;
	top: 40px;
	right: 40px;
}

.modal-reg a {
	font-size: 0.8rem;
}
.modal-wrap-sign {
	position: fixed;
	top: -150%;
	left: 0;
	margin: auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: top .5s ease;
	z-index: 9;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100vh;
}
.modal-wrap-sign.active {
  top: 0;
}
#smsIcon {
	position: fixed;
	bottom: 10px;
	right: 10px;
	color: var(--text-color);
	z-index: 12;	
	animation: sms 5s ease infinite;
}
@keyframes sms {
	0%, 100% {
		transform: rotateY(0deg);
	}
	40% {
		transform: rotateY(0deg);
	}
	60% {
		transform: rotateY(360deg);
	}
}
#message {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 350px;	
	height: 0;
	padding: 0px;	
	background-color: var(--text-color);
	transition: all .5s linear;
	z-index: 99;
}
#exitMessage {
	position: absolute;
	top: 15px;
	right: 15px;
}
.message-header {
	display: flex;
	align-items: center;	
	justify-content: flex-start;	
}
.message-info {
	margin-left: 10px;	
}
.message-info h3 {
	font-size: 1rem;
	font-weight: bold;		
}
.message-info p {
	font-size: 14px;	
}
.message-info p span {
	display: inline-block;	
	width: 8px;	
	height: 8px;
	margin-right: 5px;	
	border-radius: 50%;	
	background-color: green;
}
.all-message {
	width: 100%;	
	height: 420px;
	background-color: #f3eded;
	padding: 15px;	
	overflow: auto;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.accept, .send {
	width: 85%;	
	padding: 10px;	
	font-size: 14px;
	border-radius: 10px;
	position: relative;
	margin-bottom: 8px;	
	padding-bottom: 10px;	
}
.accept {
	background-color: #ccc;
	border-bottom-left-radius: 0px;
}
.send {
	margin-left: auto;
	right: 0;	
	background-color: green;
	border-bottom-right-radius: 0px;
	color: var(--text-color);
	display: none;
}
.time {
	position: absolute;
	bottom: 0px;	
	right: 5px;	
	font-size: 0.7rem;
	margin-top: 10px;	
}
.accept:after {
	content: "";
	position: absolute;
	bottom: 0px;	
	left: -8px;	
	width: 4px;	
	height: 4px;
	border: 4px solid #ccc;	
	border-left-color: transparent;
	border-top-color: transparent;
}
.send:after {
	content: "";
	position: absolute;
	bottom: 0px;	
	right: -8px;	
	width: 4px;	
	height: 4px;
	border: 4px solid green;	
	border-right-color: transparent;
	border-top-color: transparent;

}
.send-message  {		
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.send-message input {
	margin: 10px;
	width: 85%;
	border: none;
}
.send-message input:focus {
	outline: none;
}
.send-message button {
	border: none;
	background-color: transparent;
}
.send-message .fa-paper-plane {
	margin-left: auto;
  
}
.input-group {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 992px) {
	.modal-reg, .modal-sign {
		width: 70%;
	}
}
@media only screen and (max-width: 576px) {
	.modal-reg, .modal-sign {
		width: 100%;
		height: 100%;	
		margin: 0;
		padding: 50px;
		border-radius: 0;
	}
	.modal-wrap, .modal-wrap-sign {
		margin: 0;	
		padding: 0;	
		height: 100vh;	
	}
}		
@media only screen and (max-width: 480px) {
	#message {
		width: 100%;
	}
	
}
button:focus, button {
	outline: none;
}
.grecaptcha-badge {
	display: none;
}