/* global styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*:focus {
	outline: none;
}
body {
	overscroll-behavior-y: contain;
}

html,
body,
.home-container {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
}

input {
	background-color: transparent;
}

@media (max-width: 1199px) {
	::-webkit-scrollbar {
		width: 2px;
		height: 2px;
	}

	/* Track */
	::-webkit-scrollbar-track {
		background: #f1f1f1;
	}

	/* Handle */
	::-webkit-scrollbar-thumb {
		background: #888;
	}

	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		background: #555;
	}
}

@media (min-width: 1200px) {
	::-webkit-scrollbar {
		width: 4px;
		height: 4px;
	}

	/* Track */
	::-webkit-scrollbar-track {
		background: #f1f1f1;
	}

	/* Handle */
	::-webkit-scrollbar-thumb {
		background: #888;
	}

	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		background: #555;
	}
}

.smaller {
	font-size: 9px !important;
}

/* menu section */
.menubar {
	height: 50px;
	background-color: #56c3ba;
}

.menuicon {
	background-image: url('../images/icons/menu.svg');
	background-size: 5px 25px;
}
.menuicon:active {
	background-size: 7px 30px;
}
.shareicon {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #44b1a6;
	border-radius: 50%;
	color: white;
	font-size: 18px;
	font-weight: lighter;
}

.shareicon:active {
	background-size: 30px;
}
.menuicon,
.emojies,
.getlocation {
	float: right;
	width: 50px;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
}
.menulogo-container {
	display: flex;
}
.menulogo {
	float: left;
	background-image: url('../images/logo.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40px;
	height: 100%;
	width: 50px;
	margin: 0px 5px 0px 12px;
	height: 100%;
}
.meet-up {
	float: right;
	margin: 10px;
}
.icon {
	display: flex;
	float: right;
	padding: auto;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.location-container p {
	width: 100%;
	font-size: 13px !important;
}

.meet-up a {
	cursor: pointer;
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 3px;
	font-size: 14px;
	padding: 10px 15px;
	text-decoration: none;
	color: black;
}

.meet-up a:hover {
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
}

.menudetails {
	float: left;
	margin-top: 5px;
}
.menudetails {
	height: 100%;
}
.menuname,
.menustatus {
	height: 45%;
	color: #fff;
}
.menuname {
	padding: 3px 3px 2px 0;
	font-weight: bold;
	font-size: 16px;
}
.menustatus {
	font-size: 10px;
}

/* menu-section dark */

.dark-mode .menubar {
	background-color: rgb(43, 43, 67);
}

.dark-mode .shareicon {
	background-color: #6f6993;
	border: none;
}

/* chat section */
.chatbody {
	background-color: #ece5dd;
	background-image: url('../images/bg.png');
	background-position: center;
	background-repeat: repeat;
	height: -moz-calc(100% - 51px);
	height: -webkit-calc(100% - 51px);
	height: -o-calc(100% - 51px);
	height: calc(100% - 51px);
	width: 100%;
	font-size: 15px;
}

/* chat section dark */

.dark-mode .chatbody {
	background-color: rgb(66, 65, 85);
	/* background-image: none; */
}

#chatarea {
	display: inline-block;
	margin-bottom: 40px;
	height: -moz-calc(100% - 51px);
	height: -webkit-calc(100% - 51px);
	height: -o-calc(100% - 51px);
	height: calc(100% - 51px);
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

/*is typing animation */

.istyping {
	height: 25px;
	width: 60px;
	background-color: white;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.5);
	margin: 36px 20px 20px 20px;
	transition: 0.3s ease-in;
}

.istyping .dot {
	height: 5px;
	width: 5px;
	background-color: #1055a1;
	border-radius: 50%;
	margin: 0 4px;
	animation: colorChange 0.9s ease-in infinite;
}

.istyping .dot:nth-child(2) {
	animation-delay: 0.3s;
}

.istyping .dot:nth-child(3) {
	animation-delay: 0.5s;
}

.istyping.hide {
	display: none;
}

.loader-container {
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

#loader {
	width: 120px;
	height: 120px;
	border: 5px solid #f3f3f3;
	border-radius: 50%;
	border-top: 5px solid #56c3ba;
	-webkit-animation: spin 0.5s linear infinite;
	animation: spin 0.5s linear infinite;
	z-index: 10000;
}
.dark-mode #loader {
	border-top: 5px solid rgb(40, 40, 78);
}

@keyframes colorChange {
	0%,
	100% {
		background-color: #1055a1;
	}

	50% {
		background-color: #fff;
	}
}
.combined-istyping {
	position: relative;
}

.combined-istyping .circle {
	position: absolute;
	top: 20px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: white;
}

/*lara message */

.messagediv {
	padding: 5px;
	position: relative;
	display: flex;
	overflow: auto;
}

.mymessagediv {
	padding: 5px;
	position: relative;
	display: flex;
	overflow: auto;
	justify-content: flex-end;
}

.mymessage,
.laramessage,
.get-directions {
	padding: 10px;
	position: relative;
	clear: both;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	transition: 0.5s ease-in;
}

.laramessage span {
	font-weight: 900;
}

.laramessage {
	font-size: 13px;
	color: rgba(0, 0, 0, 0.7);
	display: none;
}
.laramessage,
.get-directions {
	background-color: #fff;
	margin-left: 15px;
	margin-bottom: 6px;
	border-radius: 8px;
	box-shadow: 0.5px 0.5px 0.5px 0.5px #a3a3a3;
	max-width: 270px;
	position: relative;
	/* z-index: 1; */
}

.laramessage.active {
	display: block;
	-webkit-animation-name: addmessage;
	-webkit-animation-duration: 0.5s;
	animation-name: addmessage;
	animation-duration: 0.5s;
}
.mymessage.active {
	display: block;
	-webkit-animation-name: addUsermessage;
	-webkit-animation-duration: 0.5s;
	animation-name: addUsermessage;
	animation-duration: 0.5s;
}
.mymessage {
	background-color: #dcebc3;
	margin-right: 30px;
	margin-bottom: 6px;
	border-radius: 8px;
	max-width: 270px;
	padding: 10px;
	font-size: 13px;
	display: none;
}
.laramessage:after,
.mymessage:after,
.get-directions::after {
	content: '';
	position: absolute;
	border-style: solid;
	display: block;
	width: 0;
	right: -20px;
	top: 0;
}
.mymessage::after {
	border-width: 8px 0 8px 8px;
	right: -15px;
	height: 10px;
	top: 0px;
	border-width: 0px 0px 20px 20px;
	border-color: transparent #dcebcf;
	/* border-top-left-radius: 5px; */
}
.laramessage::after,
.get-directions::after {
	left: -15px;
	height: 7px;
	border-width: 0 20px 20px 0;
	border-color: transparent #ffffff;
	border-top-left-radius: 5px;
}

/* lara message dark */
.dark-mode .mymessage {
	background: linear-gradient(181.13deg, #4e5ae9 3.11%, #4f5bea 99.07%);
	color: rgba(255, 255, 255, 1);
}

.dark-mode .mymessage::after {
	border-color: transparent #4f5bea;
}

/* menu options */

#menu {
	position: fixed;
	top: 20px;
	right: 20px;
	min-width: 250px;
	background-color: #f3f3f3;
	border-radius: 10px;
	filter: drop-shadow(-8px 8px 8px rgba(110, 91, 91, 0.3));
	-webkit-filter: drop-shadow(-8px 8px 8px rgba(110, 91, 91, 0.3));
	display: none;
}

#menu.active {
	display: block;
}
.menuitem {
	font-size: 13px;
	padding: 20px;
	cursor: pointer;
	color: #000;
}

#menu .menuitem {
	padding: 20px 30px;
}

.menuitem > p {
	margin: 10px 0;
}
.menu-footer .dot {
	height: 3px;
	width: 3px;
	background-color: grey;
	border-radius: 50%;
	margin: 3px;
}

.menuitem:hover {
	background-color: rgb(238, 238, 238);
}

.menu-header {
	padding: 20px 30px;
}
.menu-header p {
	font-size: 14px;
	font-weight: bold;
	color: #000;
	line-height: 5px;
}

.menu-header em {
	color: #9786fb;
}
.menu-header span {
	font-size: 10px;
	color: rgb(155, 155, 155);
}

#menu > span {
	position: absolute;
	font-size: 6px;
	bottom: 3px;
	right: 20px;
	color: rgb(155, 155, 155);
}
#menu .menu-footer {
	border-top: 1px solid rgb(223, 222, 225);
}

#menu .menu-header {
	padding: 20px 30px;
}
#menu .menu-header p {
	font-size: 14px;
	font-weight: bold;
	color: #000;
	line-height: 5px;
}

#menu .menu-header em {
	color: #9786fb;
}
#menu .menu-header span {
	font-size: 10px;
	color: rgb(155, 155, 155);
}

#menu .menu-footer {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding: 5px 10px;
	width: auto;
}
#menu .menu-footer .text {
	padding: 5px 10px;
}
#menu .menu-footer .text span {
	font-size: 10px;
	color: rgba(0, 0, 0, 0.5);
	display: block;
}

#menu .menu-footer .text p {
	color: #4a90e2;
	font-size: 12px;
	font-weight: 700;
}

#menu .menu-footer .download-lara {
	text-align: center;
}

#menu .menu-footer .download-lara p {
	font-size: 9px;
	margin-bottom: 10px;
}

.menu-footer .download-lara img {
	height: 25px;
}

#menu .menu-footer:hover {
	background-color: rgb(235, 231, 231);
}

/* menu styles dark */

.dark-mode #menu {
	background-color: #f3f3f3;
	background: #656775;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12), 0px 8px 8px rgba(0, 0, 0, 0.24);
	filter: none;
	-webkit-filter: none;
}

.dark-mode #menu .menu-footer .text p {
	color: rgba(247, 181, 0, 1);
}

.dark-mode #menu .menu-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* chatbar styles */
.chatinput,
.emojies,
.inputbox,
.getlocation,
.sendicon {
	min-height: 40px;
	float: left;
}
.chatbar {
	position: absolute;
	bottom: 0;
	width: 98%;
	padding-bottom: 5px;
	margin-left: 7px;
}
.chatinput {
	position: relative;
	background-color: #fff;
	border-radius: 20px;
	width: -moz-calc(100% - 58px);
	width: -webkit-calc(100% - 58px);
	width: -o-calc(100% - 58px);
	width: calc(100% - 58px);
	filter: drop-shadow(-2px 2px 2px #a3a3a3);
	-webkit-filter: drop-shadow(rgb(163, 163, 163) -2px 2px 2px);
}

.chatinput:after {
	content: '';
	position: absolute;
	border-style: solid;
	display: none;
	width: 0;
	z-index: 1;
	right: -10px;
	top: 0px;
	right: -12px;
	border-width: 0px 0px 10px 12px;
	border-color: transparent #ffffff;
}

.chatinput .dropdown-content {
	position: absolute;
	bottom: 30px;
	width: 100%;
	background-color: rgba(255, 255, 255);
	padding: 20px;
	border-radius: 20px 20px 0px 0px;
	top: initial;
	z-index: 1;
	/* opacity: 0.8; */
	display: none;
}

.dropdown-close {
	position: absolute;
	z-index: 100;
	top: -10px;
	right: -10px;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	border: none;
	color: white;
	background-color: black;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.24);
}

.emojies {
	background-image: url('../images/icons/emoji.svg');
	background-size: 26px;
}
.inputbox {
	width: -moz-calc(100% - 103px);
	width: -webkit-calc(100% - 103px);
	width: -o-calc(100% - 103px);
	width: calc(100% - 103px);
	position: relative;
}

.getlocation {
	background-image: url('../images/icons/location.svg');
	background-size: 20px;
}
.sendicon {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
	background-color: #56c3ba;
	border-radius: 50%;
	z-index: 5;
	padding: 3px;
}

.sendicon i {
	font-size: 18px;
	color: white;
	transform: rotate(45deg);
}

#chatinput {
	width: 99%;
	border: 0;
	outline: none;
	color: #222;
	height: 40px;
	font-size: 14px;
	margin-top: 1px;
	transition: 0.3s ease;
	background-color: transparent;
}

#chatinput.active {
	opacity: 1;
}

.msgtime {
	font-size: 12px;
	margin: 0 5px;
	color: #888;
}
img.readmsg {
	height: 9px;
	width: 18px;
}
#laradirections {
	display: none;
}
#sharelara {
	height: 40px;
}
.lara-icon {
	width: 100%;
	margin: auto;
	text-align: center;
}

.lara-icon img {
	height: 70px;
}

.emoji-group {
	width: 160px;
	border: 1px solid slateblue;
	padding: 3px 3px 0 7px;
	position: fixed;
	z-index: 2;
	left: 15px;
	bottom: 50px;
	display: none;
}
.emojimsg {
	width: 20px;
	height: 20px;
}
.emoji {
	width: 10px;
	height: 10px;
}
.emoji,
.emojimsg {
	background-position: center center;
	background-repeat: no-repeat;
	padding: 12px;
	margin: 2px;
	float: left;
}
.act {
	background-color: rgba(0, 0, 0, 0.65);
}
.happy-1 {
	background-image: url(../images/icons/happy-1.svg);
}
.happy-2 {
	background-image: url(../images/icons/happy-2.svg);
}
.happy {
	background-image: url(../images/icons/happy.svg);
}
.cool {
	background-image: url(../images/icons/cool.svg);
}
.in-love {
	background-image: url(../images/icons/in-love.svg);
}
.location {
	background-image: url(../images/icons/location.svg);
}
.menu {
	background-image: url(../images/icons/menu.svg);
}
.ninja {
	background-image: url(../images/icons/ninja.svg);
}
.quiet {
	background-image: url(../images/icons/quiet.svg);
}
.read {
	background-image: url(../images/icons/read.svg);
}
.sad {
	background-image: url(../images/icons/sad.svg);
}
.send {
	background-image: url(../images/icons/send.svg);
}
.Sent Sent share {
	background-image: url(../images/icons/share.svg);
}
.smile {
	background-image: url(../images/icons/smile.svg);
}
.surprised {
	background-image: url(../images/icons/surprised.svg);
}
.suspicious {
	background-image: url(../images/icons/suspicious.svg);
}
.unhappy {
	background-image: url(../images/icons/unhappy.svg);
}
.wtf {
	background-image: url(../images/icons/wtf.svg);
}
.fb {
	background-image: url(../images/icons/facebook.svg);
}
.tw {
	background-image: url(../images/icons/twitter.svg);
}
.wa {
	background-image: url(../images/icons/whatsapp.svg);
}
.web {
	background-image: url(../images/icons/link.svg);
}
img.yabaconimg {
	width: 99%;
	max-height: 100%;
}

/* chatbar dark */

/* .dark-mode .chatbar {
  bottom: 10px;
} */

.dark-mode .sendicon {
	background-color: none;
	background: radial-gradient(100% 100% at 50% 0%, #5f2ed2 0%, #4f5bea 100%);
}

.dark-mode .chatinput {
	border-radius: 20px;
	background: #f6f5f5;
	filter: none;
	-webkit-filter: none;
}

.dark-mode .chatinput:after {
	display: none;
}

.share {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 2px;
	margin-left: 10px;
	display: inline-block;
	width: 12px;
	height: 12px;
}

/* directions card */

.filter-dropdown {
	margin: 10px 0;
	width: 100%;
	height: 23px;
	background-color: #f1f2f2;
	position: relative;
	cursor: pointer;
}

.filter-dropdown > i {
	position: absolute;
	right: 10px;
	font-size: 26px;
	top: -5px;
}

.directions-container {
	/* overflow-y: hidden; */
	overflow-x: scroll;
	white-space: nowrap;
	width: 500px;
	max-width: 100%;
	height: auto;
	position: relative;
}
.directions-container::-webkit-scrollbar {
	display: none;
}
.house {
	position: relative;
	width: 500px;
	max-width: 100%;
	height: auto;
}
.house > button {
	position: absolute;
	height: 100px;
	width: 20px;
	top: 30%;
	z-index: 100;
	border: none;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	font-size: 18px;
	font-weight: bold;
}
.house > button#left {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	left: 0;
}

.house > button#right {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	right: 0;
}

.get-directions {
	padding: 0;
	margin: 20px;
	color: #616b70;
	max-width: 350px;
	white-space: normal;
	margin-right: 30px;
	overflow-wrap: break-word;
	display: inline-block;
	vertical-align: top;
}

.get-directions b {
	color: #000;
	font-weight: 600;
}
.get-directions h5 {
	color: #000;
	font-size: 13px;
	/* margin: 20px 0 20px 0; */
}

.get-directions .directions-head {
	margin: 10px 0;
	font-style: italic;
	padding: 20px 20px 10px 20px;
}

.get-directions .directions-body > p,
.get-directions .directions-body h5 {
	padding: 2px 20px;
	font-size: 12px;
}

.get-directions .final-direction-info {
	padding: 20px;
	font-size: 12px;
}

.get-directions .final-direction-info p {
	padding: 2px 0;
}
.get-directions > p {
	padding: 0px 20px;
}

.get-directions .directions-head p {
	color: #616b70;
	font-weight: 700;
	font-size: 12px;
}

.directions-footer {
	width: 100%;
	height: 77px;
	background-color: #98c4d9;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.directions-footer li {
	list-style: none;
	cursor: pointer;
	width: 100%;
	/* text-align: center; */
	text-align: center;
}

.directions-footer li > span {
	/* Style for "Alt. Optio" */
	width: 50px;
	color: rgba(0, 0, 0, 0.626);
	font-size: 10px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: normal;
	text-align: center;
	display: block;
	margin-top: 2px;
}
.directions-footer img {
	height: 22px;
}
.directions-footer #alt-route img {
	opacity: 0.5;
}

.directions-footer #save img {
	opacity: 0.5;
}

.estimate {
	color: #44d7b6;
	font-weight: bold;
}

/* directions card dark-mode */

.dark-mode .get-directions::after {
	display: none;
}

.dark-mode .get-directions {
	border-radius: 28px;
	background: rgba(39, 42, 62, 0.7);
	box-shadow: none;
}

.dark-mode .directions-footer {
	background: #d8d8d8;
	border-radius: 0px 0px 28px 28px;
}

.dark-mode .directions-footer li > span {
	width: 50px;
	color: rgba(0, 0, 0);
}

.dark-mode .get-directions .directions-body > p {
	color: rgb(97, 107, 112);
	font-size: 14px;
}
.dark-mode .get-directions .directions-body h5 {
	color: rgb(202, 203, 208);
	font-weight: bold;
	font-size: 14px;
}
.dark-mode .get-directions b {
	color: rgb(202, 203, 208);
	font-weight: bold;
	font-size: 14px;
}

.dark-mode .filter-dropdown {
	background-color: rgb(130, 130, 130);
}

.dark-mode .estimate {
	color: #44d7b6;
	font-weight: bold;
}

.dark-mode .filter-dropdown > i {
	color: rgba(111, 177, 249, 1);
}

.dark-mode .get-directions .directions-body > .mask {
	color: rgba(255, 231, 214, 1);
}

.addiv {
	background-color: #fff;
	margin: 10px auto;
	max-width: 500px;
	min-height: 30px;
	padding: 10px 5px 5px;
	position: relative;
	filter: drop-shadow(-2px 2px 2px #a3a3a3);
	-webkit-filter: drop-shadow(rgb(163, 163, 163) -2px 2px 2px);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.adinsert {
	top: 5px;
	right: 5px;
	margin: 5px 10px;
	width: 30px;
	text-align: center;
	border: 2px solid orange;
	position: absolute;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.admessage {
	width: -moz-calc(100% - 45px);
	width: -webkit-calc(100% - 45px);
	width: -o-calc(100% - 45px);
	width: calc(100% - 45px);
}
.addiv img {
	max-width: -moz-calc(100% - 45px);
	max-width: -webkit-calc(100% - 45px);
	max-width: -o-calc(100% - 45px);
	max-width: calc(100% - 45px);
}
/* .sendicon {
  background-image: url('../images/icons/send.svg');
  background-size: 38px;
  margin-left: 7px;
  z-index: 5;
}
#chatinput {
  width: 99%;
  border: 0;
  outline: none;
  color: #222;
  height: 40px;
  font-size: 14px;
  margin-top: 1px;
  transition: 0.3s ease;
} */

.bwtmenubar {
	background-color: #324f62 !important;
}
.bwtchatbody {
	background-color: #eaeaea !important;
	background-image: url('../images/bgbwt.png') !important;
}
.bwtlaramessage {
	background-color: #e1e8ed !important;
}
.bwtmymessage {
	background-color: #d1d3d4 !important;
}
.bwtsendicon {
	background-image: url('../images/icons/sendbwt.svg') !important;
}
.bwtmymessage::after {
	border-color: transparent #d1d3d4;
}
.bwtlaramessage::after {
	border-color: transparent #e1e8ed;
}
.bgtmenubar {
	background-color: #323a49 !important;
}
.bgtchatbody {
	background-color: #6d6e71 !important;
	background-image: url('../images/bgbgt.png') !important;
}
.bgtlaramessage {
	background-color: #fff !important;
}
.bgtmymessage {
	background-color: #dcf8c6 !important;
}
.bgtsendicon {
	background-image: url('../images/icons/sendbgt.svg') !important;
}
.bgtmymessage::after {
	border-color: transparent #dcf8c6;
}
.bgtlaramessage::after {
	border-color: transparent #fff;
}
@media only screen and (max-width: 600px) {
	#chatarea {
		overflow-y: scroll;
	}
}
@media only screen and (max-width: 600px) {
	.addiv {
		max-width: 90%;
	}
}
#wheretext {
	display: inline-block;
	padding-left: 4px;
	border-radius: 8px;
	width: calc (100% - 32px);
	width: -moz-calc(100% - 32px);
	width: -webkit-calc(100% - 32px);
	height: 22px;
	margin-bottom: 2px;
}
.friendly {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 17px;
	margin-bottom: -3px;
	width: 19px;
	height: 17px;
	display: inline-block;
}
.gobackbtn,
.respondbtn {
	background-color: #60a5da;
	font-weight: 500;
	width: 50%;
	border-radius: 0px;
	color: #fff;
	border: none;
	float: right;
	position: relative;
	bottom: -4px;
	height: 29px;
	font-size: 18px;
}
.respondbtn {
	right: -4px;
}
.gobackbtn {
	left: -4px;
}
#surveyitems {
	min-width: 295px;
	text-align: center;
}
.wsurvey {
	background-color: #60a5da;
	font-weight: 500;
	width: 80%;
	border-radius: 8px;
	padding: 3px;
	margin: 4px auto;
	color: #fff;
	text-align: left;
}
.surveyimg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 1px;
	margin: 2px auto;
	height: 40px;
	width: 40px;
	display: inline-block;
}
.friends {
	background-image: url(../images/survey/friends.svg);
}
.whatsapp {
	background-image: url(../images/survey/whatsapp.svg);
}
.facebook {
	background-image: url(../images/survey/facebook.svg);
}
.twitter {
	background-image: url(../images/survey/twitter.svg);
}
.instagram {
	background-image: url(../images/survey/instagram.svg);
}
.online {
	background-image: url(../images/survey/online.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 1px;
	margin: 2px auto;
	height: 59px;
	width: 167px;
	display: inline-block;
}
a div.admessage {
	text-decoration: none;
	display: inline-block;
	color: #222;
}
#moptions {
	display: none;
}
.moreoptions {
	margin: 20px auto;
	height: 85px;
	width: 290px;
	background-color: #d4eaf4;
	border-radius: 15px;
	color: #999;
}
.moheader {
	text-align: center;
	margin: 10px auto;
	width: 80%;
	border-bottom: 1px solid #799bbc;
	padding-top: 10px;
	padding-bottom: 5px;
	color: #33f;
}
.optionitem {
	display: inline-block;
	margin: 5px auto;
	padding: 1px 33px;
}
.activeoption {
	color: #305261;
	cursor: pointer;
}
.cardtype {
	margin: 15px auto 5px;
	height: 22px;
	width: 180px;
	padding: 5px;
	background-color: #95d0dd;
	border-radius: 10px;
	color: #555;
	text-align: center;
}
.ridesharediv {
	margin: 7px auto;
	padding: 5px;
	min-height: 165px;
	text-align: center;
}
.rssub {
	display: inline-block;
	margin: 7px;
	width: 128px;
	height: 80px;
	padding: 12px 5px;
	background-color: #fff;
	box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
	text-align: center;
	vertical-align: top;
}
.rssub img {
	height: 35px;
}
.rssub a {
	text-decoration: none;
	color: #222;
}
.rsprice {
	font-weight: 500;
	margin: 7px auto;
}
.rstime {
	font-size: 10px;
	font-style: italics;
}
.rsfooter {
	background-color: #000;
	color: #cfa800;
	font-size: 12px;
	font-weight: 600;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 21px;
	width: 100%;
	padding-top: 5px;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}
.rssub {
	border-radius: 8px;
	height: 118px;
	position: relative;
}
#fw {
	margin: 50px auto;
	width: 95%;
	height: 95%;
	background-color: rgba(0, 0, 0, 0.3);
	position: fixed;
	display: none;
	left: 0%;
	top: 0%;
	padding: 130px;
}

.teach-user-container {
	/* margin: 2px 5px; */

	padding: 10px;
}

.assist-you,
.your-turn {
	background: #ffffff 0% 0% no-repeat padding-box;
	border-radius: 7px;
	opacity: 1;
	min-height: 120px;
	text-align: center;
}

.assist-you {
	max-width: 300px;
	/* transition: 1s ease-in-out; */
}

.assist-you.first {
	display: none;
	z-index: -1000;
}

.assist-you.first.active {
	display: block;
	-webkit-animation-name: teach;
	-webkit-animation-duration: 2s;
	animation-name: teach;
	animation-duration: 2s;
}

.your-turn {
	min-height: 80px;
	padding: 20px 10px;
	width: 400px;
	max-width: 100%;
	/* margin: 10px 0; */
}
.your-turn p {
	letter-spacing: -0.4px;
	color: #000000d9;
	opacity: 1;
	padding: 5px 0;
}

.your-turn input {
	border: none;
	/* margin: 5px 0; */
	width: 90%;
	margin: 5px auto 10px auto;
	padding: 5px 10px;
	border-bottom: 1px solid #347fb7;
}

.your-turn .dropdown-content {
	position: initial;
	box-shadow: none;
	background-color: transparent;
}

.your-turn .dropdown-content li {
	border-bottom: 1px solid #f7b500;
	text-align: left;
}
.your-turn .see-more {
	margin-bottom: 8px;
}

.assist-you .assist-body {
	padding: 10px;
	min-height: 80%;
}
.assist-you .assist-body h3 {
	margin: 5px 0;
	letter-spacing: 0px;
	color: #000000d9;
	opacity: 0.81;
	font-size: 14px;
}
.assist-you .assist-body p {
	margin: 5px 0;
	font-style: italic;
	letter-spacing: 0px;
	color: #919191;
	opacity: 1;
	font-size: 13px;
}
.assist-you .assist-action {
	background: #f2f2f2d6 0% 0% no-repeat padding-box;
	padding: 10px;
	border-radius: 0px 0px 7px 7px;
	min-height: 20%;
}

.assist-you .assist-action button {
	border: none;
	padding: 5px;
	background-color: transparent;
}

.assist-you .assist-action i {
	border-radius: 50%;
	animation: teachIcon 2s infinite;
}
.assist-you .assist-action span {
	letter-spacing: -0.46px;
	color: #3394de;
	opacity: 1;
	margin-right: 3px;
	font-weight: bold;
	font-size: 14px;
}

.assist-you .typein-example {
	padding: 10px;
}
.assist-you .typein-example h3 {
	letter-spacing: 0.26px;
	color: #000000d9;
	opacity: 0.81;
	font-size: 15px;
	margin-top: 5px;
	margin-bottom: 7px;
}

.assist-you .dropdown-example {
	text-align: left;
	padding: 10px;
	margin-top: 15px;
}
.assist-you .dropdown-example p {
	width: 90%;
	margin: auto;
	padding: 7px 5px;
	border-bottom: 1px solid #f7b500;
	text-align: left;
	letter-spacing: 0px;
	color: #9b9b9b;
	opacity: 1;
	font-size: 13px;
}
.select-dropdown-example {
	padding: 20px;
	min-height: 200px;
}
.assist-you .dropdown-example p span {
	float: right;
}
.select-dropdown-example h3 {
	letter-spacing: 0.26px;
	color: #000000d9;
	opacity: 0.81;
	font-size: 15px;
}
.seemore-dropdown-example {
	height: 140px;
	padding: 10px;
}

.seemore-dropdown-example span {
	margin: 10px 0;
	display: block;
}
.seemore-dropdown-example .see-more button {
	box-shadow: 0px 0 8px rgba(33, 176, 238, 255);
}

.seemore-dropdown-example h3 {
	letter-spacing: -0.14px;
	color: #000000d9;
	opacity: 0.81;
	font-size: 15px;
}
.assist-you .example {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.assist-you .example p {
	padding: 5px;
	border-bottom: 1px solid #f7b500;
}
.assist-you .example span {
	color: #0091ff;
}

.carousel-cont {
	position: relative;
	width: 300px;
}

.carousel-cont .dot {
	cursor: pointer;
	height: 10px;
	width: 10px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.your-turn {
}

.carousel-cont .dot.active {
	background-color: rgb(0, 145, 255);
}

.carousel-cont .dot-cover {
	position: absolute;
	bottom: 2%;
	left: 42%;
}
/* 
@media (min-width: 1100px) {
  .modal-container {
    margin: 2% 2%;
  }
  table {
    width: 50%;
  }
} */

.btn-icons {
	display: flex;
	justify-content: center;
}

.btn-icons button {
	border: none;
	padding: 5px 20px;
	background-color: rgb(196, 196, 196);
	border-radius: 7px;
	margin: 10px 20px;
	cursor: pointer;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.25);
}
.btn-icons button:hover {
	background-color: rgb(0, 145, 255);
	outline: none;
	color: white;
}

.btn-icons button.active {
	background-color: rgb(0, 145, 255);
	outline: none;
	color: white;
}

/* dropdown container styles */
.drop-down-container {
	width: 400px;
	max-width: 95%;
	margin: 10px 5px;
	display: flex;
	justify-content: center;
	/* align-items: center; */
	flex-direction: column;
	position: relative;
}
.drop-down-header {
	width: 100%;
	background-color: #c3dad8;
	border-radius: 16px;
	box-shadow: 1px 1px 1px 1px #a3a3a3;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
}

.drop-down-header.no {
	background-color: #8faaa7;
}

.drop-down-header label {
	text-align: center;
	margin: 7px auto;
}

.drop-down-header input {
	background-color: transparent;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid rgb(255, 255, 255);
	padding-bottom: 0;
	margin: auto;
	height: 20px;
	width: 80%;
	color: rgba(0, 0, 0, 0.9);
	font-size: 13px;
	font-family: 'Questrial';
	margin-bottom: 5px;
	text-align: center;
}

.check-container {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #2f3a5c;
	font-weight: 600;
}

.checked {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: rgb(10, 193, 177);
	border: 2px solid rgb(2, 79, 73);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
}

.checked-inside {
	height: 9px;
	width: 9px;
	background-color: #1a234a;
	border-radius: 50%;
}

.check-container img {
	height: 30px;
	margin: 0 5px;

	display: none;
}

.drop-down-header.no .checked {
	background-color: #8faaa7;
	border: 2px solid #1a234a;
}

.dropdown-content {
	position: absolute;
	top: 65px;
	width: 100%;
	background-color: rgba(255, 255, 255);
	padding: 20px;
	border-radius: 0px 0px 20px 20px;
	z-index: 100;
	box-shadow: 0.5px 0.5px 0.5px 0.5px rgb(240, 238, 238);
	display: none;
	font-size: 11px;
	font-weight: 600;
}
.drop-down-container .dropdown-content {
	top: 75px;
}

/* dropdown container styles dark */

.dark-mode .drop-down-header {
	background-color: rgba(85, 140, 201, 1);
	/* filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5)); */
	box-shadow: none;
}

.dark-mode .drop-down-header input {
	color: rgb(69, 62, 93);
}

.dark-mode .check-container img {
	display: block;
}

.dark-mode .checked {
	display: none;
	border: 2px solid rgb(181, 231, 251);
}

.dark-mode .checked-inside {
	height: 9px;
	width: 9px;
	background-color: rgba(255, 234, 234, 0.34);
	border-radius: 50%;
}

.see-more {
	text-align: center;
	padding: 5px;
}
.see-more button {
	padding: 10px 20px;
	font-size: 12px;
	color: white;
	border: none;
	/* border: 1px solid red; */
	border-radius: 20px;
	box-shadow: 0px 0 2px rgba(33, 176, 238, 255);
	background-image: linear-gradient(
		to right,
		rgba(17, 137, 216, 255),
		rgba(33, 176, 238, 255)
	);
}

.see-more button.active {
	animation: seemore 2s infinite;
}
.see-more button i {
	margin-left: 5px;
}

.dropdown-content li {
	list-style: none;
	margin: auto;
	padding: 10px 5px 10px 0;
	border-bottom: 1px solid grey;
	cursor: pointer;
	width: 100%;
	position: relative;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dropdown-content li p {
	width: 92%;
	display: inline;
}

.dropdown-content li span {
	position: absolute;
	right: 0px;
	top: 10px;
}

.filter-container {
	background-color: white;
	position: fixed;
	width: 250px;
	max-width: 100%;
	margin: 10px;
	padding: 20px 0;
	border-radius: 10px;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.24);
	z-index: 1000;
	bottom: 5%;
	left: 15%;
	display: none;
	-webkit-animation-name: filter;
	-webkit-animation-duration: 1s;
	animation-name: filter;
	animation-duration: 1s;
}

.filter-container.active {
	display: block;
}

.filter-container > button {
	position: absolute;
	right: 20px;
	top: 20px;
	/* padding: 10px; */
	height: 20px;
	width: 20px;
	border: none;
	background-color: rgba(0, 0, 0, 0.85);
	color: white;
	font-weight: bold;
	border-radius: 50%;
	font-size: 14px;
}

.rad-btns {
	display: flex;
	justify-content: center;
}

.input-group {
	margin: auto;
	text-align: center;
	color: rgba(0, 0, 0, 0.7);
	font-size: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.input-group label {
	margin: 5px;
	text-transform: capitalize;
}

#replace-mode-with .mode-filters img {
	height: 25px;
	margin: 0 10px;
}

.mode-filters {
	display: flex;
	/* justify-content: space-evenly; */
	margin: 5px;
	align-items: center;
}

.mode-filters > div {
	margin: 10px 0;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.mode-filters > div .line {
	width: 21px;
	height: 2px;
	border: 1px solid #3e7dc8;
	background-color: #44d7b6;
	border-radius: 1px;
	margin: 5px auto;
	visibility: hidden;
}

.mode-filters > div > span {
	/* margin-top: 10px; */
	visibility: hidden;
}

.mode-filters > div.active .line,
.mode-filters > div.active span {
	visibility: visible;
}

.filter-btns {
	width: 100%;
	justify-content: flex-end;
	display: flex;
}
.filter-btns button {
	border: none;
	padding: 7px 10px;
	font-size: 9px;
	margin: 15px 5px;
	cursor: pointer;
	border-radius: 10px;
}

.filter-btns button:last-child {
	background-color: #4a90e2;
	color: white;
}

#filter-by-mode,
#replace-mode-with,
#feedback-on {
	display: none;
}
#filter-by-mode.active,
#replace-mode-with.active,
#feedback-on.active {
	display: block;
}

.filter-container .menu-footer {
	padding: 10px 20px;
}

.filter-container .menu-footer .text p {
	color: #4a90e2;
	font-size: 12px;
	font-weight: 700;
	font-style: normal;
}

.filter-container .menu-footer .text span {
	color: #000000;
	font-size: 10px;
	font-weight: 400;
	font-style: normal;
}

.filter-container .download-lara {
	display: flex;
	margin-top: 10px;
	height: 100%;
	align-items: center;
}

.filter-container .download-lara img {
	height: 20px;
	margin-right: 5px;
}

.filter-container .download-lara p {
	color: #000000;
	font-size: 10px;
	font-weight: 400;
	font-style: normal;
	padding: 0;
}

.option-header {
	width: 300px;
	max-width: 100%;
}

.loader {
	position: fixed;
	z-index: -100;
}

.option-header p {
	text-align: center;
	padding: 7px 10px;
	background-color: rgba(0, 0, 0, 0.67);
	width: 150px;
	color: white;
	margin: 15px auto;
	border-radius: 15px;
	display: flex;
	justify-content: center;
}

.option-header img {
	height: 20px;
	margin-left: 7px;
}
/* save styles */
.share-container {
	position: fixed;
	bottom: 0;
	height: 300px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	border-radius: 35px 35px 0 0;
	background-color: #5d40c4;
	width: 100%;
	display: none;
	-webkit-animation-name: animatebottom;
	-webkit-animation-duration: 1s;
	animation-name: animatebottom;
	animation-duration: 1s;
	z-index: 1;
}

.share-container > button {
	position: absolute;
	right: 20px;
	top: 20px;
	/* padding: 10px; */
	height: 20px;
	width: 20px;
	border: none;
	background-color: rgba(0, 0, 0, 0.85);
	color: white;
	font-weight: bold;
	border-radius: 50%;
	font-size: 14px;
	z-index: 100;
}

.share-container.active {
	display: block;
}

.share-container-info {
	position: relative;
	width: 500px;
	margin: auto;
	max-width: 100%;
	height: 100%;
}
.share-container-info > img {
	position: absolute;
	z-index: -1;
	opacity: 0.2;
	height: 200px;
}
.share-container #clipboard {
	position: relative;
}
#clipboard .clipboard-text {
	position: absolute;
	padding: 10px;
	background-color: #44b1a69e;
	color: white;
	border-radius: 5px;
	width: 130px;
	display: none;
}

#clipboard:hover .clipboard-text {
	display: block;
}

#clipboard .clipboard-text p {
	font-size: 11px;
}

.share-container-info > img:nth-child(1) {
	top: 5px;
	left: 0;
}
.share-container-info > img:nth-child(2) {
	bottom: 0;
	right: 0;
}

.share-talk {
	display: flex;
	padding: 10px;
	align-items: center;
	height: 60%;
}

.share-talk h3 {
	color: #ffffff;
	font-size: 27px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 1.13px;
	line-height: 35px;
	text-align: left;
}

.share-talk p {
	color: rgba(255, 255, 255, 0.59);
	font-size: 14px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.58px;
	padding-top: 5px;
}

.share-text {
	width: 70%;
	padding-top: 40px;
}
.share-talk .share-img img {
	height: 120px;
}

.share-links {
	display: flex;
	margin-top: 20px;
}

.share-links li {
	list-style: none;
	height: 35px;
	width: 35px;
	border-radius: 50%;
	padding: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	background-color: #ffffff;
	margin: 5px;
	text-align: center;
}

.share-links a {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: center;
}

.share-links li img {
	height: 20px;
}

/* save styles darkmode */
.dark-mode .share-container {
	background-color: #f4f1f1;
}

.dark-mode .share-container-info {
	position: relative;
}
.dark-mode .share-talk h3 {
	color: rgba(0, 0, 0, 0.85);
	font-size: 18px;
	letter-spacing: normal;
	line-height: normal;
}

.dark-mode .share-talk {
	display: flex;
	padding: 0px;
	align-items: center;
	height: 40%;
}

.dark-mode .share-talk {
	padding: 0 10px;
}
/* .share-talk h3 {
  color: #ffffff;
  
  font-weight: 700;
  font-style: normal;
  
  text-align: left;
} */

.dark-mode .share-talk p {
	color: rgb(215, 178, 185);
}

.dark-mode .share-container-info > img {
	display: none;
}

.dark-mode .share-talk .share-img img {
	position: absolute;
	top: 100px;
	right: 5px;
	height: 120px;
}

.dark-mode .share-links {
	margin-top: 0;
}

.no-route-container {
	width: 500px;
	max-width: 100%;
	padding: 5px;
	display: inline-block;
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
	vertical-align: top;
}

.no-route-container .option-header {
	width: 500px;
	max-width: 100%;
	margin-bottom: 0;
}

.no-route-body {
	background-color: rgba(242, 242, 242, 0.77);
	width: 300px;
	overflow-wrap: break-word;
	margin: auto;
	white-space: normal;
}
.no-route-body > div:first-child {
	padding: 20px;
	color: rgba(0, 0, 0, 0.85);
	font-style: italic;
	text-align: center;
	overflow-wrap: break-word;
	width: 100%;
	word-wrap: break-word;
}

.no-route-body > div:first-child p {
	font-size: 13px;
	text-align: center;
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
}

.no-route-body > div:first-child span {
	text-align: center;
	font-weight: 600;
	font-size: 12px;
	margin-left: 5px;
	display: block;
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
}

.no-route-body > div:last-child {
	padding: 20px;
	background-color: #ffffff;
	text-align: center;
}

.no-route-body > div:last-child p {
	font-size: 11px;
	padding: 5px;
}

.no-route-body > div:last-child button {
	border: none;
	padding: 9px 10px;
	border-radius: 7px;
	background-color: #ffc345;
	font-weight: 500;
	font-size: 15px;
}

/* modal styles */

.modal-overlay {
	width: 500px;
	max-width: 100%;
	/* background-color: rgba(0, 0, 0, 0.15); */
	display: flex;
	filter: drop-shadow(8px 8px 8px #a3a3a3);
	-webkit-filter: drop-shadow(rgb(163, 163, 163) 8px 8px 8px);
	align-items: center;
}

.modal-container {
	width: 400px;
	border-radius: 16px;
	background-color: #ffffff;
	max-width: 90%;
	border-radius: 10px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 10px;
}
.modal-container > p {
	color: #0e063e;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 0.27px;
	line-height: 28.35px;
}
.modal-container .modal {
	display: flex;
	padding: 0 5px;
}

.modal .modalicons {
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 90px;
	justify-content: center;
}

.modal .modalicons input {
	margin: 10px auto;
}

.modalicons img {
	height: 35px;
}

/* modal dark */
.dark-mode .modal-overlay {
	filter: none;
	-webkit-filter: none;
}

.yt-option {
	padding-top: 10px;
	width: 300px;
	background-color: white;
	text-align: center;
}
.yt-option input {
	width: 70%;
	border: none;
	border-bottom: 1px solid #d2c7c3;
	font-size: 12px;
	font-style: italic;
	margin: 5px 0;
	text-align: center;
	color: #616b70;
}
.yt-option p {
	padding: 5px 0;
	font-size: 12px;
}

.yt-option p b {
	font-weight: 700;
	font-size: 14px;
}

/* .yt-option .directions-footer {
  border-radius: 0 0 20px 20px;
} */

.unsaved-trips {
	height: 50vh;
	overflow-y: scroll;
	display: none;
	padding: 20px;
}

.unsaved-trips.active {
	display: block;
}
.unsaved-trip {
	position: relative;
	display: flex;
	padding: 30px;
	justify-content: space-between;
	margin: 30px auto;
	width: 90%;
}

.unsaved-trip-info h4 {
	color: rgba(0, 0, 0, 0.5);
	font-family: 'Open Sans';
	font-size: 9px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: -0.08px;
	line-height: normal;
	text-align: left;
	width: 30px;
}
.unsaved-trip-info .from,
.unsaved-trip-info .to {
	display: flex;
}

.unsaved-trip-info p {
	color: rgba(0, 0, 0, 0.25);
	font-family: 'Open Sans';
	font-size: 10px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.09px;
	line-height: normal;
	text-align: right;
}

.unsaved-trip-info .line {
	border: 0.1px solid rgb(255, 210, 9);
	margin: 5px 0;
}

.unsaved-trip::after {
	content: '';
	height: 70%;
	position: absolute;
	width: 0px;
	top: 20px;
	left: 2%;
	margin-left: -3px;
	border: 0.5px dashed rgba(0, 0, 0, 0.25);
	/* //   transform: matrix(0, 1, -1, 0, 0, 0); */
}

.unsaved-trip > img {
	position: absolute;
	top: 40%;
	left: -15px;
	z-index: 1;
	height: 35px;
	width: 40px;
}

.datetime {
	margin-top: 20px;
}
.datetime p {
	text-align: left;
	color: #1a3d7f;
	font-family: 'Open Sans';
	font-size: 8px;
	font-weight: 300;
	font-style: normal;
	letter-spacing: -0.08px;
	line-height: normal;
	text-align: left;
}

.unsaved-trip .save-trip-btn {
	text-align: center;
	color: rgba(0, 0, 0, 0.3);
}

.unsaved-trip .save-trip-btn p {
	color: rgba(0, 0, 0, 0.85);
	font-family: 'Open Sans';
	font-size: 8px;
	font-weight: 300;
	font-style: normal;
	letter-spacing: -0.08px;
	line-height: normal;
	text-align: left;
}

.unsaved-trip .circle-element {
	position: absolute;
	width: 18px;
	height: 18px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
	border: 3px solid #ffffff;
	background-color: rgba(0, 0, 0, 0.25);
	border-radius: 50%;
}

.unsaved-trip.active .circle-element {
	background-color: #314a8e;
}

.unsaved-trip .circle-element.top {
	top: -5px;
	left: -5px;
}

.unsaved-trip .circle-element.bottom {
	bottom: -5px;
	left: -5px;
}

.feedback-container {
	position: absolute;
	z-index: 10;
	min-height: 250px;
	bottom: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 2px 30px -3px rgba(0, 0, 0, 0.5);
	border-radius: 35px 35px 0 0;
	background-color: #f4f1f1;
	padding: 20px 0;
	transition: 0.5s ease-out;
	display: none;
	-webkit-animation-name: animatebottom;
	-webkit-animation-duration: 1s;
	animation-name: animatebottom;
	animation-duration: 1s;
}

.feedback-container.active {
	display: block;
	transition: 0.5s ease-out;
}

.error-container {
	position: relative;
	width: 400px;
	max-width: 100%;
	margin: auto;
}

.error-text {
	position: absolute;
	width: 320px;
	top: -40px;
	left: 10%;
	z-index: 0;
	text-align: center;
	padding: 10px;
	background: #ffc345;
}

/* @media all and (min-width: 1024px) {

} */

.error-text i {
	position: absolute;
	left: 10px;
	top: 12px;
	font-size: 12px;
}

.error-text p {
	font-size: 12px;
}

.route-feedback-container,
.pricefeedback-container,
.rate-smiley-container,
.filter-by-headsign,
.other-feedback {
	margin: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.feedback-container > button {
	position: absolute;
	right: 20px;
	top: 20px;
	/* padding: 10px; */
	height: 30px;
	width: 30px;
	border: none;
	background-color: rgba(0, 0, 0, 0.85);
	color: white;
	font-weight: bold;
	border-radius: 50%;
	font-size: 18px;
	z-index: 100;
}
.feedback-container h5 {
	font-size: 14px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: -0.44px;
	color: rgba(0, 0, 0, 0.85);
	font-family: 'Open Sans';
}

.route-feedback-container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	height: 100%;
	width: 100%;
}

.route-feedback-container > h5 {
	padding: 5px;
	border-bottom: 0.2px solid rgb(214, 214, 214);
}

.route-feedback-container > p {
	font-family: 'Open Sans';
	font-size: 13px;
	padding: 5px;
	letter-spacing: -0.12px;
	color: #00000080;
}

.steps-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 5px 0;
}

.steps-container > h2 {
	text-align: left;
	letter-spacing: -0.44px;
	color: #000000d9;
	opacity: 1;
	font-size: 13px;
	margin: 5px 0;
}

.steps-container > p {
	letter-spacing: 1px;
	color: #00000080;
	opacity: 1;
	font-size: 13px;
}

.new-modes {
	text-align: center;
	display: none;
}

.new-modes.active {
	display: block;
}

.new-modes p {
	color: #9b9b9b;
	font-family: 'Open Sans';
	font-size: 12px;
	font-weight: 400;
}

.new-modes .modes {
	display: flex;
	justify-content: space-between;
	margin: 10px auto;
	padding: 10px;
	padding: 10px;
	width: 50%;
	overflow-x: scroll;
}

.new-modes .modes .single-mode {
	margin: auto 20px;
}
.new-modes .modes .single-mode img {
	height: 30px;
	margin-top: 10px;
}

.single-mode.other > div {
	height: 30px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #d8d8d8 0% 0% no-repeat padding-box;
	color: #00000040;
}

/* .single-mode.other {
   border: 1px solid red;
} */

.new-modes .modes .single-mode p {
	color: #939598;
	font-family: 'Open Sans';
	font-size: 9px;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	border-top: 2px solid #2577d9;
	padding: 3px 0;
	border-radius: 1px;
	visibility: hidden;
}
.new-modes .modes .single-mode.other p {
	visibility: visible;
	border: none;
	margin-top: 8px;
	font-size: 11px;
	text-align: center;
}

.form-btn {
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px;
}

.route-feedback-container .form-btn .btn {
	min-width: 130px;
	position: relative;
}
.route-feedback-container .form-btn .btn i {
	position: absolute;
	right: 2px;
	top: 35%;
}

.route-feedback-container .input-label {
	text-align: center;
	margin: 5px auto;
	padding: 5px;
	font-size: 13px;
}

.input-label select {
	border: none;
	background-color: transparent;
	color: #00000040;
	font-weight: bold;
	font-size: 13px;
}
.input-label label {
	letter-spacing: -0.35px;
	color: #00000040;
	opacity: 1;
}

.new-modes .modes .single-mode.active p {
	visibility: visible;
}

.route-feedback-container.edit > p {
	color: #0091ff;
	font-family: 'Open Sans';
	font-size: 12px;
	font-weight: 600;
	font-style: normal;
	padding: 0;
}

.route-feedback-container form {
	width: 400px;
	max-width: 80%;
	margin: 10px auto;
}

.route-feedback {
	display: flex;
	align-items: center;
	margin: auto;
	justify-content: center;
}

.route-feedback.noroute {
	display: block;
}

.noroute-feedback {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.route-feedback-mode {
	text-align: center;
}
.route-feedback-mode img {
	height: 45px;
}
.route-feedback.edit > div:nth-child(2) {
	margin: 10px 25px;
	padding: 10px;
}

.formgroup-edit {
	padding: 5px;
}

.route-feedback-container .formgroup {
	width: 250px;
	max-width: 90%;
	margin: 20px auto;
	background-color: white;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	padding: 0px 10px;
	color: rgba(0, 0, 0, 0.8);
	font-family: 'Open Sans';
	font-size: 11px;
	font-weight: 300;
	font-style: italic;
	border-radius: 7px;
}

.route-feedback-container .route-feedback.noroute .formgroup {
	margin: 20px auto;
}

.route-feedback-container .price {
	width: 230px;
}
.route-feedback-container .price input {
	text-align: center;
}

.route-feedback-container .access-buttons {
	display: flex;
	justify-content: space-evenly;
	margin: 20px 0;
}
.route-feedback-container .access-buttons > div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.route-feedback-container .access-buttons > div p {
	letter-spacing: -0.35px;
	color: #00000040;
	opacity: 1;
	font-size: 13px;
}

.route-feedback-container .access-buttons > div > div {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 7px 0;
}

#add-more {
	background: #252525 0% 0% no-repeat padding-box;
	color: white;
}

#end-feedback {
	background: #e00d0d 0% 0% no-repeat padding-box;
	color: white;
}
.feedbacksummary-container {
	position: relative;
}

.feedbacksummary-container .start {
	width: 18px;
	height: 18px;
	box-shadow: 0px 2px 4px #00000080;
	border: 3px solid #ffffff;
	background: #314a8e 0% 0% no-repeat padding-box;
	border-radius: 50%;
	margin: 10px auto;
	z-index: 100;
}

.feedbacksummary-container::after {
	content: '';
	height: 78%;
	position: absolute;
	width: 0px;
	top: 30px;
	left: 50%;
	border: 0.1px dashed rgba(0, 0, 0, 0.25);
}

.feedbacksummary-container .end {
	height: 30px;
	width: 30px;
	background-color: rgb(252, 42, 42);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border-radius: 50%;
	font-size: 12px;

	margin: 10px auto;
}
.summary-card {
	background: #ffffff 0% 0% no-repeat padding-box;
	min-height: 100px;
	width: 280px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	padding: 0 10px;
	margin: 20px 0;
	border-radius: 10px;
	position: relative;
	z-index: 100;
}

.summary-card .serial-no {
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: black;
	left: -10px;
	top: -10px;
}

.summary-card .mode-image {
	height: 30px;
}

.feedbacksummary {
	min-height: 100px;
	max-height: 250px;
	overflow-y: scroll;
	padding: 5px 30px;
}

.summary-card .from-to {
	text-align: center;
	font-size: 12px;
}

.route-feedback-container .formgroup img {
	margin: auto;
	display: none;
}

.route-feedback-container .formgroup input {
	border-radius: 7px;
	padding: 10px;
	margin: 0;
	font-size: 11px;
	font-weight: 300;
	color: rgba(0, 0, 0, 0.25);
	font-style: italic;
	border: none;
}

.route-feedback-container .formgroup label {
	font-weight: lighter;
	font-style: italic;
	letter-spacing: -0.32;
	width: 40%;
}

.route-feedback-container .formgroup.fresh {
	background-color: transparent;
}

.route-feedback-container .formgroup.fresh input {
	background-color: transparent;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
}

.route-feedback-container .formgroup.fresh img {
	display: block;
}

.route-feedback-container .formgroup.focus {
	border-radius: 7px;
	background-color: #ffffff;
	font-weight: bold;
	color: black;
	filter: drop-shadow(1px 1px 1px black);
}

.route-feedback-container .formgroup.focus input {
	color: black;
}

.feedback-container .checkbox {
	display: flex;
	justify-content: center;
	align-items: center;
}
.feedback-container .checkbox.error input {
	border: 1px solid red;
}
.feedback-container .checkbox.error span {
	color: red;
}
.img-checkbox {
	margin: 10px auto;
	text-align: center;
}

.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 18px;
	text-align: center;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(34, 31, 31, 0.26);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.slider::before {
	position: absolute;
	content: '';
	height: 25px;
	width: 25px;
	left: 3px;
	bottom: -3px;
	background-color: #009688;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.24), 0 0 1px rgba(0, 0, 0, 0.12);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.slider.active::before {
	background-color: #009687;
}

.switch input:focus + .slider {
	box-shadow: 0 0 1px #7fb743;
}

.switch input:checked + .slider {
	background-color: #0096876f;
}

.switch input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.feedback-container .checkbox span {
	color: #9b9b9b;
	margin: 10px;
	font-size: 9px;
	font-style: normal;
	letter-spacing: -0.06px;
	line-height: 22px;
}

.feedback-container .btn {
	text-align: center;
	margin: auto;
	border: none;
	min-width: 167px;
	height: 44px;
	border-radius: 20px;
	background-color: rgba(0, 0, 0, 0.85);
	color: #fff;
	font-weight: bold;
	letter-spacing: 5px;
	text-transform: uppercase;
	padding: 10px 20px;
}

.feedback-container span {
	color: rgba(0, 0, 0, 0.25);
	font-style: italic;
	font-size: 15px;
	font-weight: 300;

	letter-spacing: -0.38px;
}

.pricefeedback-container form {
	width: 90vw;
	text-align: center;
	padding: 10px;
	max-width: 500px;
}

.pricefeedback-container .formgroup,
.price {
	display: flex;
	align-items: center;
	justify-content: center;
}

.price {
	width: 250px;
	margin: 5px auto;
}

.price input {
	/* margin: 10px; */
	border: none;
	width: 100%;
	padding: 10px;
	font-size: 11px;
	border-radius: 7px;
	background-color: white;
}
.price input:nth-child(1) {
	margin-right: 3px;
}
.price input:nth-child(2) {
	margin-left: 3px;
}

.pricefeedback-container img {
	margin: 0;
	height: 23px;
	width: auto;
}
.pricefeedback-container > div {
	padding: 20px;
}

.pricefeedback-container .formgroup input {
	margin: 10px;
	border: none;
	width: 90%;
	padding: 15px;
	color: #20a88a;
	font-weight: bold;
	border-radius: 7px;
}

.error {
	color: red;
}

.success {
	color: green;
}

.btn-container {
	margin: 20px auto;
}
.pricefeedback-container .btn {
	text-align: center;
	padding: 10px 30px;
	border-radius: 20px;
}

.final-feedback-container {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 280px;
}

.final-feedback-container > div {
	margin: 5px;
}

.final-feedback-container > div p {
	color: #37474f;
	font-size: 14px;
	font-weight: 400;
}

.final-feedback-container > div:last-child {
	padding: 5px;
	border-radius: 7px;
	background-color: white;
	display: flex;
}
.final-feedback-container > div:last-child img {
	margin: 3px 5px;
}
.final-feedback-container > div:last-child span {
	color: rgba(0, 0, 0, 0.85);
	font-family: 'Open Sans';
	font-size: 14px;
	font-weight: 600;
}
/* .rate-smiley-container {
  display: flex;
  align-items: center;
  height: 400px;
  flex-direction: column;
  justify-content: center;

} */

.rate-smiley-container h5 {
	margin: 20px auto;
}

.smiley-container {
	margin: 10px;
}

.smiley-container img {
	margin: 0 10px;
	cursor: pointer;
	height: 40px;
}

.rate-smiley-container p {
	color: rgba(0, 0, 0, 0.85);
	font-family: 'Open Sans';
	font-size: 12px;
	font-style: italic;
}

.show-textarea {
	margin: 20px 0;
	text-align: center;
}

.rate-smiley-container .thanks {
	display: none;
}

.rate-smiley-container .before-thanks {
	text-align: center;
}

.rate-smiley-container .before-thanks.inactive {
	display: none;
}

.rate-smiley-container .thanks.active {
	display: block;
}

.show-textarea button {
	border: none;
	cursor: pointer;
	height: 40px;
	text-align: center;
}

.rate-smiley-container .show-textarea button > img:hover {
	animation: input-text 0.5s;
}

.input-text {
	display: none;
	transition: 0.5s ease-out;
	position: relative;
}
.input-text.active {
	display: block;
}

.input-text button {
	position: absolute;
	right: 0px;
	top: 0px;
	/* padding: 10px; */
	height: 20px;
	width: 20px;
	border: none;
	background-color: rgba(0, 0, 0, 0.85);
	color: white;
	font-weight: bold;
	border-radius: 50%;
	font-size: 14px;
}
.input-text textarea {
	border: none;
	width: 60vw;
	margin: 10px 0;
	max-width: 400px;
	padding: 10px;
}

.filter-by-headsign {
	width: 80%;
	max-width: 400px;
	padding: 20px;
	justify-content: space-between;
}

.filter-by-headsign input {
	margin: 20px 0;
	border-radius: 7px;
	font-weight: bold;
	padding: 10px 20px;
	border: none;
	width: 100%;
}
.filter-by-headsign .form {
	width: 100%;
	text-align: center;
	position: relative;
}

.filter-by-headsign .dropdown-content {
	position: absolute;
	top: 50px;
	width: 100%;
	background-color: white;
	padding: 10px;
	border-radius: 0px 0px 20px 20px;
	z-index: 100;
	box-shadow: 0.5px 0.5px 0.5px 0.5px gray;
	display: none;
	text-align: left;
	font-size: 10px;
}
.other-feedback {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin: auto;
}

.other-feedback form {
	width: 100%;
	text-align: center;
	margin: auto;
}

.other-feedback textarea {
	padding: 20px;
	margin: 20px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	font-size: 16px;
	color: #888;
}
.other-btn-container {
	text-align: center;
	margin: 20px;
}

.other-btn-container .btn {
	padding: 10px 40px;
	text-transform: uppercase;
	font-weight: bold;
}

.save-container {
	width: 400px;
	max-width: 70%;
	margin: 20px auto;
	text-align: center;
}

.save-container-header {
	margin: 10px;
	display: flex;
	justify-content: space-evenly;
	margin: auto;
}
.save-container form {
	width: 80%;
	margin: auto;
	text-align: left;
}

.save-form input,
.save-form select {
	background-color: transparent;
	text-align: left;
	padding: 15px;
	border: none;
	border-bottom: 1px solid rgb(204, 202, 202);
	width: 100%;
	margin: 5px;
	/* font-size: 18px; */
	text-transform: capitalize;
	font-family: 'Questrial';
	/* z-index: 1; */
	color: rgba(0, 0, 0, 0.7);
}

.add-reminder-btn {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 10px;
}

.add-reminder-btn span {
	font-style: normal;
	font-family: 'Questrial';
	margin: 10px;
}

.add-reminder-btn img {
	height: 30px;
}

.save-container .btn-container {
	text-align: center;
	margin: 10px auto;
}

.save-download-container {
	display: flex;
	width: 400px;
	max-width: 100%;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

.save-download-container .download {
	text-align: center;
	margin: 5px;
	padding: 10px;
	color: rgba(0, 0, 0, 0.5);
	font-family: 'Questrial';
	font-size: 16px;
}

/* lara welcome styles */

.name {
	width: 200px;
	max-width: 50%;
	margin: 10px;
	position: relative;
	background-color: white;
	border-radius: 12px;
}

.name p {
	background-color: white;
	text-align: center;
	padding: 5px;
	opacity: 0.81;
	color: #4a4a4a;
	font-family: 'Open Sans';
	font-size: 13px;
	font-weight: 700;
	font-style: normal;
	border-radius: 12px 12px 0 0;
}

.name > div {
	position: relative;
}

.name > div > .img {
	position: absolute;
	right: 10px;
	top: 1px;
	font-size: 18px;
	color: #009687;
	display: none;
}

.name button {
	position: absolute;
	right: 10px;
	top: 3px;
	height: 18px;
	width: 18px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #009687;
	color: white;
	border-radius: 50%;
	font-size: 12px;
}
.name button img {
	height: 18px;
}

.name input {
	height: 25px;
	border-radius: 0 0 12px 12px;
	background-color: rgba(242, 242, 242, 0.84);
	margin: 0;
	padding: 10px 20px;
	color: #4a4a4a;
	text-align: center;
	width: 100%;
	overflow-x: scroll;
	border: none;
}

/* lara welcome dark */

.dark-mode .name > div > .img {
	color: rgb(98, 54, 255);
}

.dark-mode .name button {
	background-color: rgb(98, 54, 255);
}

.save-form-name,
.add-reminder {
	display: none;
}

.save-form-name.active,
.add-reminder.active {
	display: block;
}

@media all and (max-width: 767px) {
	.drop-down-header {
		width: 300px;
		max-width: 90%;
		margin: 5px 20px;
	}

	.modal-container {
		margin: 10px auto;
	}

	.modal-overlay {
		background-color: rgba(0, 0, 0, 0.2);
	}
	.modal img {
		height: 35px;
	}
	.modal .modalicons {
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}

/*dashboard styles */
.user-container {
	/* display: none; */
	/* overflow: hidden; */
	height: -moz-calc(100% - 51px);
	height: -webkit-calc(100% - 51px);
	height: -o-calc(100% - 51px);
	height: calc(100% - 51px);
	overflow-x: hidden;
	overflow-y: scroll;
	width: 100%;
	margin-bottom: 40px;
}

.map-bg {
	height: 150px;
	margin: 40px 40px 20px auto;
	padding: 20px;
	width: 150px;
	border-radius: 50%;
	background-image: url('../images/Rasterized.svg');
	background-position: center center;
	display: flex;
	justify-content: center;
	background-size: cover;
}

.icon-overlay {
	height: 100px;
	width: 100px;
	border-radius: 50%;
	margin: auto;
	/* background-image: url('../images/mapped_point.svg');
  background-position: center center; */
	background-color: #56c3ba5a;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: blink 3s infinite;
}

.map {
	height: 60%;
	width: 60%;
	border-radius: 50%;
	margin: auto;
	background-color: #56c3ba;
	background-repeat: no-repeat;
	background-size: cover;
}

.email-section {
	padding: 20px;
	/* display: none; */
}

.form-container h4 {
	font-family: 'Open Sans';
	font-size: 18px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.18px;
	line-height: normal;
	text-align: left;
}

.form-container span {
	color: rgba(0, 0, 0, 0.25);
	font-family: 'Open Sans';
	font-size: 10px;
	letter-spacing: -0.11px;
	text-align: left;
}

.form-group {
	margin: 25px auto;
	position: relative;
}

.form-container {
	width: 500px;
	max-width: 95%;
}

.form-group.error small {
	display: block;
}

.form-group.error input {
	border: 1px solid red;
}

.sign-in p {
	font-size: 14px;
}

.sign-in p > span {
	font-size: 14px;
	font-weight: 600;
	color: #000;
}

.form-group.error label {
	color: red;
}

.form-group small {
	position: absolute;
	bottom: -20px;
	left: 0;
	display: none;
}

.form-group > input {
	border-radius: 7px;
	border: 1px solid #44d7b6;
	padding: 20px 10px;
	/* width: 60%; */
}

.login .form-group > input {
	width: 100%;
}

.form-group button {
	border-radius: 7px;
	background-color: #000000;
	padding: 20px 10px;
	text-transform: uppercase;
	color: white;
	border: none;
	margin-left: 1px;
}

.login .form-group {
	text-align: right;
}
.login .form-group > button {
	min-width: 100%;
}

.user-error {
	border-radius: 7px;
	background-color: rgba(237, 95, 95, 0.83);
	padding: 10px 10px;
	text-transform: uppercase;
	color: white;
	border: none;
	margin-left: 1px;
	display: none;
}

.user-error p,
.user-info p {
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 19px;
	letter-spacing: -0.10000000149011612px;
	text-align: center;
	color: white !important;
}

.user-info {
	border-radius: 7px;
	background-color: #2ba9e7;
	padding: 10px 10px;
	text-transform: uppercase;
	color: white;
	border: none;
	margin-left: 1px;
	display: none;
	width: 80%;
	margin: auto;
}

.email-section p,
.email-section a {
	color: rgba(0, 0, 0, 0.5);
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	margin: 10px 0;
}

.widgets {
	margin: 40px 0;
}

.widgets span {
	color: rgba(0, 0, 0, 0.5);
	font-family: 'Open Sans';
	font-size: 16px;
	font-style: normal;
	letter-spacing: -0.11px;
}

.widgets ul {
	list-style: none;
	display: flex;
	margin: 20px 0;
}

.widgets ul li {
	padding: 10px;
}

.widgets li img {
	height: 18px;
}

.finish-profile {
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 20px;
}

.sign-up p {
	font-weight: normal;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: -0.08px;

	text-align: right;
	color: rgba(0, 0, 0, 0.5);
}

.sign-up p > span {
	font-size: 14px;
	font-weight: 600;
	color: #000;
}

.finish-profile .form-container h4 {
	color: #9b9b9b;
	font-size: 18px;
	font-style: normal;
	letter-spacing: -0.18px;

	font-weight: 600;
}

.personal-interests-container {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 20px;
	width: 100%;
}

.personal-interests-container > div {
	width: 500px;
	max-width: 100%;
}

.personal-interests-container h5 {
	color: #000000;
	font-family: 'Open Sans';
	font-size: 20px;
	font-weight: 600;
}

.personal-interests-container p {
	color: #9b9b9b;
	font-family: 'Open Sans';
	font-size: 9px;
	margin: 5px 0;
}

.personalinterest {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.personal-interests {
	width: 85%;
	overflow-x: scroll;
	white-space: nowrap;
	padding: 20px 5px;
}

.personal-interests button {
	white-space: normal;
	/* width: 70px; */
	/* height: 20px; */
	display: inline-block;
	padding: 5px;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.1);
	margin: 0 5px;
	color: rgba(0, 0, 0, 0.5);
	font-family: 'Open Sans';
	font-size: 10px;
	border: none;
	min-width: 100px;
}
.personal-interest-enter {
	width: 15%;
	margin: 0 10px;
}

.personal-interest-enter button {
	text-align: center;
	width: 100%;
	font-size: 18px;
	border: none;
	background-color: transparent;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
	padding: 5px 10px;
}

.personal-interests button.active {
	background-color: #1055a1;
}

.finish-profile .form-container p {
	color: #000;
	font-size: 18px;
	font-style: normal;
	letter-spacing: -0.18px;
	font-weight: 600;
}

.continue-toemail {
	height: 100%;
	padding: 10px;
}

.continue-toemail .all-set {
	width: 80%;
	margin: 30px auto;
	text-align: right;
	padding: 20px;
}

.continue-toemail .all-set h4 {
	margin: 5px 0;
}

.form-container a {
	color: #315c7d;
	font-family: 'Open Sans';
	font-size: 12px;
	font-style: normal;
	letter-spacing: -0.12px;
	line-height: normal;
	text-align: left;
	padding: 10px 0;
	text-decoration: none;
}

.dashboard-container {
	padding: 20px;
	/* height: 100vh; */
}

.dashboard-container .profile-info {
	margin-top: 10%;
}

.dashboard-container .profile-info .profile-pic {
	width: 53px;
	height: 53px;
	border: 1px solid #979797;
	background-color: #000000;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dashboard-container .profile-info .profile-pic h5 {
	font-size: 26px;
	font-weight: 400;
	font-style: normal;
	/* letter-spacing: 0.97px; */
	line-height: normal;
	text-align: left;
	text-transform: uppercase;
	color: white;
}

.dashboard-container .profile-info h4 {
	margin: 10px 0;
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.16px;
	line-height: normal;
	text-align: left;
}

.dashboard-container .profile-info button {
	color: #3e92b3;
	font-family: 'Open Sans';
	font-size: 12px;
	font-style: normal;
	letter-spacing: -0.12px;
	line-height: 16px;
	text-decoration: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.profile-loc {
	display: flex;
	margin: 10px 0;
	align-items: center;
}

.profile-loc img {
	height: 15px;
	border-radius: 35%;
}

.savedtrips-header {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}
.savedtrips-header .header {
	display: flex;
	align-items: center;
}

.savedtrips-header .header h4 {
	color: #000000;
	font-family: 'Open Sans';
	font-size: 14px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.14px;
	line-height: normal;
	text-align: left;
	margin-right: 5px;
}

.search-trips {
	text-align: right;
}

.search-trips label {
	color: #000000;
	font-family: 'Open Sans';
	font-size: 12px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.12px;
	line-height: normal;
	text-align: left;
}
.search-trips input {
	border: none;
	background-color: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.85);
	width: 60%;
	padding: 5px;
}
.profile-loc p {
	color: rgba(0, 0, 0, 0.5);
	font-family: 'Open Sans';
	font-size: 10px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: -0.1px;
	line-height: normal;
	text-align: left;
	margin: 0 5px;
}

.saved-trips {
	margin: 50px 0;
	width: 600px;
	max-width: 100%;
}

.savedtrips-body .card {
	background-color: #f4f1f1;
	padding: 10px;
	border-radius: 10px;
	margin: 20px 5px;
	display: flex;
	align-items: center;
}

.savedtrips-body .mode,
.add-trip-btn {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	margin-right: 5px;
	background-color: rgba(0, 0, 0, 0.19);
	display: flex;
	align-items: center;
	justify-content: center;
}
.savedtrips-body .mode img {
	height: 30px;
	width: 40px;
}

.trip-info {
	margin-right: 10px;
}

.trip-info h3 {
	color: #000000;
	font-family: 'Open Sans';
	font-size: 12px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.12px;
	line-height: normal;
	text-align: left;
}

.trip-info h4 {
	color: rgba(0, 0, 0, 0.5);
	font-family: 'Open Sans';
	font-size: 10px;
	font-style: normal;
	letter-spacing: -0.1px;
	line-height: normal;
	text-align: left;
}

.trip-info p {
	color: #1a3d7f;
	font-family: 'Open Sans';
	font-size: 8px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.08px;
	line-height: normal;
	text-align: left;
}

.trip-widget {
	display: flex;
	justify-content: space-evenly;
	width: 40%;
}

.add-trip {
	margin: 30px 0;
	display: flex;
	align-items: center;
}

.add-trip-info {
	position: relative;
}

.addtrip-dropdown {
	display: none;
	position: absolute;
	width: 108px;
	margin-top: 7px;

	background-color: #f4f1f1;
}
.addtrip-dropdown.active {
	display: block;
}

.addtrip-dropdown ul {
	width: 100%;
	margin: auto;
}
.addtrip-dropdown ul li {
	list-style: none;
	/* margin: 10px auto; */
	padding: 10px;
	color: #1a3d7f;
	font-family: 'Open Sans';
	font-size: 10px;
	font-weight: normal;
	font-style: normal;
	letter-spacing: -0.08px;
	line-height: normal;
	text-align: left;
}

.addtrip-dropdown ul li:hover {
	background-color: rgba(0, 0, 0, 0.04);
}

.add-trip-btn h1 {
	color: rgba(0, 0, 0, 0.5);
	font-size: 50px;
	font-weight: 900;
	font-weight: 700;
	font-style: normal;
	letter-spacing: -0.5px;
	line-height: normal;
	text-align: left;
}

.add-trip-info h3 {
	color: #000000;
	font-family: 'Open Sans';
	font-size: 14px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.14px;
	line-height: normal;
	text-align: left;
}

.add-trip-info p {
	color: rgba(0, 0, 0, 0.25);
	font-family: 'Open Sans';
	font-size: 12px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.1px;
	line-height: normal;
	text-align: left;
}

.update-profile-container {
	height: 100vh;
	/* padding: 20px; */
	overflow: hidden;
}

.update-profile-container #back {
	background-color: transparent;
	border: none;
	font-size: 18px;
	margin: 10px 0;
	cursor: pointer;
}

.back {
	padding: 20px;
	padding-top: 0;
}

.profile-header {
	height: 20%;
	/* margin-top: 30%; */
}

.updateprofile-info {
	padding: 10px 20px;
	display: flex;
	/* height: 100%; */
	align-items: center;
}

.profile-tag {
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background-color: #d8d8d8;
	color: #9b9b9b;
	font-family: 'Open Sans';
	font-size: 31px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.31px;
	line-height: normal;
	text-align: center;
	text-transform: uppercase;
	margin: 0 5px;
}

.email-info h5 {
	color: #000000;
	font-family: 'Open Sans';
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.16px;
	line-height: normal;
	text-align: left;
	padding: 1px 0;
}

.links-header {
	display: flex;
	/* width: 300px; */
	width: 100vw;
	justify-content: space-evenly;
	/* margin: 40px 0; */
	background-color: white;
	padding: 10px;
}

.links-header > div {
	margin-right: 0 15px;
}

.links-header button {
	background-color: transparent;
	border: none;
	color: rgba(0, 0, 0, 0.25);
	font-family: 'Open Sans';
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.16px;
	line-height: normal;
	padding: 10px;
	text-align: left;
}

.email-info p {
	color: rgba(0, 0, 0, 0.5);
	font-family: 'Open Sans';
	font-size: 10px;
	font-style: normal;
	letter-spacing: -0.08px;
	line-height: normal;
}

.links-header button.active {
	color: #000;
	border-bottom: 3px solid #034d45;
}

.profile-container {
	background-color: #f4f1f1;
	height: 80%;
	width: 100%;
	margin: auto;
	/* padding: 20px 30px; */
}

.profile-container form {
	width: 100%;
	margin: 20px auto;
}

.profile-container .form-input {
	width: 400px;
	max-width: 50%;
	margin: 20px auto;
	position: relative;
	transition: 0.3s ease;
	/* text-align: center; */
}

.profile-container .form-input label {
	display: block;
	margin: 2px auto;
	color: rgba(0, 0, 0, 0.85);
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.13px;
	line-height: normal;
	text-align: left;
}

.profile-container .form-input.error small {
	display: block;
}

.profile-container .form-input.error input {
	border: 1px solid red;
}

.profile-container .form-input.error label {
	color: red;
}

.profile-container .form-input input {
	height: 40px;
	border-radius: 7px;
	border: 1px solid rgba(0, 0, 0, 0.25);

	padding: 0 10px;
	color: rgba(0, 0, 0, 0.25);
	width: 100%;
	font-size: 13px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.13px;
	line-height: normal;
}
.profile-container .form-input i {
	position: absolute;
	right: 10px;
	top: 55%;
	color: gray;
}

.profile-container .form-input small {
	float: right;
	font-size: 8px;
	color: red;
	display: none;
}

.profile-container .update-btn {
	width: 90%;
	margin: 10px auto;
	text-align: center;
}

.profile-container .forgot-password {
	display: flex;
	justify-content: center;
	margin: 30px 0;
}

.profile-container .fg-image {
	margin: 0 3px;
	width: 17px;
	height: 17px;
	background-color: #d8d8d8;
	border-radius: 50%;
	text-align: center;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.4);
}

.profile-container .forgot-password p {
	color: rgba(0, 0, 0, 0.85);
	font-family: 'Open Sans';
	font-size: 10px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: -0.1px;
	line-height: normal;
	text-align: left;
	text-decoration: underline;
	cursor: pointer;
}

.profile-container .update-btn .btn.disabled {
	background-color: rgba(0, 0, 0, 0.25);
	border: none;
}

.profile-container .update-btn .btn {
	width: 60%;
	height: 41px;
	border-radius: 7px;
	background-color: #000000;
	color: #ffffff;
	font-family: 'Open Sans';
	font-size: 16px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: -0.16px;
	line-height: normal;
	text-transform: uppercase;
}

.email-notification {
	width: 80%;
}

.email-notification-header {
	display: flex;
	text-align: center;
	justify-content: center;
	margin: 30px 0;
}

.email-notification-header h5 {
	color: rgba(0, 0, 0, 0.85);
	font-family: 'Open Sans';
	font-size: 13px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: -0.13px;
	line-height: normal;
	text-align: left;
	margin-right: 10px;
}

.email-notification .form-checked {
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
}

.email-notification .form-checked p {
	display: inline;
	color: rgba(0, 0, 0, 0.85);
	font-family: 'Open Sans';
	font-size: 11px;
	font-style: normal;
	letter-spacing: -0.1px;
	line-height: normal;
	text-align: left;
	margin: 0 10px;
}
.email-notification .form-checked > div {
	width: 50px;
	text-align: center;
}

.no.trip {
	font-family: 'Open Sans';
	font-style: Italic;
	font-size: 11px;
	line-height: 11px;
	margin: 20px 0;
}

.email-notification .form-checked input[type='checkbox'] {
	height: 20px;
	border-radius: 7px;
	border: 1px solid rgba(0, 0, 0, 0.25);

	padding: 0 10px;
	color: rgba(0, 0, 0, 0.25);
	width: 50px;
	font-size: 11px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: -0.13px;
	line-height: normal;
}

.form-input.number {
	display: none;
}

.verifyemail {
	display: flex;
	flex-direction: column;
	height: 100%;
	align-items: center;
	width: 70%;
	margin: auto;
	justify-content: center;
}

.verifyemail > h4 {
	color: #000000;
	font-family: 'Open Sans';
	font-size: 18px;
	font-style: normal;
	letter-spacing: -0.18px;
	line-height: normal;
	text-align: center;
	margin-bottom: 20px;
}

.verifyemail p {
	color: rgba(0, 0, 0, 0.25);
	font-family: 'Open Sans';
	font-size: 12px;
	font-style: normal;
	letter-spacing: -0.12px;
	line-height: normal;
	text-align: center;
}

.verifyemail .plan-commute {
	margin: 30px 0;
}

.verifyemail .plan-commute > h4 {
	font-family: 'Caveat';
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: -0.16px;
	line-height: normal;
}

.delete-modal {
	display: flex;
	height: 100%;
	width: 100%;
	margin: auto;
	align-items: center;
	justify-content: center;
}
.delete-container {
	background: #f4f1f1;
	box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.5);
	border-radius: 15px;
	width: 400px;
	max-width: 90%;
}

.delete-text {
	display: flex;
	padding: 20px 10px;
	align-items: center;
	height: 100%;
	justify-content: center;
}

.delete-text p {
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: -0.12px;
	color: black;
}

.delete-text i {
	font-size: 25px;
	color: rgba(153, 153, 153, 1);
}

.delete-talk {
	margin-left: 15px;
}

.delete-text span {
	font-style: normal;
	font-weight: normal;
	font-size: 9px;
	line-height: 12px;
	letter-spacing: -0.09px;

	color: rgba(0, 0, 0, 0.5);
}

.delete-btns {
	padding: 5px 10px;
	text-align: right;
}

.delete-btns > button {
	border: none;
	padding: 5px 20px;
	background-color: rgb(196, 196, 196);
	border-radius: 7px;
	margin: 5px;
	cursor: pointer;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.25);
}
.delete-btns #cancel {
	background-color: rgb(0, 145, 255);
	outline: none;
	color: white;
}

.btn-cont > button {
	width: 190px;
	height: 41px;
	border-radius: 7px;
	background-color: #1a3447;
	color: #ffffff;
	font-family: 'Open Sans';
	font-size: 10px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: -0.1px;
	line-height: normal;
	text-transform: uppercase;
	border: none;
}

.notrips-atall {
	text-align: center;
}
.notrips-atall p {
	font-family: 'Open Sans';
	font-style: Italic;
	font-size: 11px;
	line-height: 11px;
	margin: 20px 0;
	margin-left: 10px;
}

@media all and (max-width: 380px) {
	.form-group input {
		border-radius: 7px;
		border: 1px solid #44d7b6;
		padding: 10px;
		width: 50%;
	}

	.form-group button {
		border-radius: 7px;
		background-color: #000000;
		padding: 10px;
		text-transform: uppercase;
		color: white;
		border: none;
		margin-left: 3px;
		font-size: 12px;
	}
	.links-header {
		margin: 7px 0;
	}
}

/* dash baord styles dark */
.dark-mode .user-container {
	background: #f2f2f2;
}

.main-carousel {
	width: 400px;
	max-width: 100%;
	margin: auto;
	position: relative;
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	vertical-align: middle;
}

.mySlides {
	/* display: flex; */
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin: 10px;
	display: none;
	height: 100%;
}

.mySlides p {
	font-size: 16px;
	margin: 20px 0;
	font-weight: 600;
}

.mySlides img {
	height: 80px;
}
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	color: transparent;
	font-weight: bold;
	font-size: 30px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

.mySlides p > img {
	height: auto;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.main-carousel .dot {
	cursor: pointer;
	height: 10px;
	width: 10px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.main-carousel .dot-cover {
	position: absolute;
	bottom: 0px;
	left: 42%;
}

.main-carousel .text {
	padding: 5px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #d8d8d8;
	border-radius: 0px 0px 15px 15px;
	font-size: 18px;
	width: 80%;
}

.main-carousel .text i {
	color: #6d7278;
	font-size: 25px;
}

.main-carousel .active,
.dot:hover {
	background-color: #0091ff;
}

/* what next styles */

.donext-container {
	height: 15vh;
	align-items: center;
	background: rgba(0, 0, 0, 0.2);
	margin: 10px 0;
	width: 100%;
	bottom: 0;
	display: none;
	left: 0;
}
.donext-container.active {
	display: flex;
	-webkit-animation-name: addmessage;
	-webkit-animation-duration: 0.5s;
	animation-name: addmessage;
	animation-duration: 0.5s;
}
.donext-container > div {
	margin: 0 20px;
	width: 100%;
}

.donext-container p {
	font-style: normal;
	font-weight: bold;
	font-size: 13px;
	/* line-height: 18px; */
	margin: 5px 0;
	color: #ffffff;
}

.donext-container .what-next {
	overflow-x: scroll;
	white-space: nowrap;
	width: 90%;
}

.donext-container .what-next::-webkit-scrollbar {
	display: none;
}

.donext-container .what-next button {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	background: #4a5057;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	margin-top: 3px;
	margin-right: 10px;
	font-size: 13px;
	color: white;
	font-weight: normal;
}
.donext-container .what-next button i {
	margin: 0 5px;
}

/* what next dark */
.dark-mode .donext-container {
	background: transparent;
}

.dark-mode .donext-container .what-next {
	margin-top: 10px;
}
.dark-mode .donext-container .what-next button {
	box-shadow: none;
	background: rgba(152, 196, 217, 1);
	color: rgb(64, 64, 66);
}

.help-container {
	position: absolute;
	top: 30%;
	left: 30%;
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #3e3c3cc2;
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
	z-index: 100;
	border-radius: 50%;
	color: white;
}

@keyframes input-text {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	0% {
		height: 60px;
		width: 60px;
		opacity: 0.6;
	}

	15% {
		height: 70px;
		width: 70px;
		opacity: 0.7;
	}
	50% {
		opacity: 1;
		height: 100px;
		width: 100px;
	}

	100% {
		height: 60px;
		width: 60px;
		opacity: 0.6;
	}
}

.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
	from {
		opacity: 0.4;
		width: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fade {
	from {
		opacity: 0.4;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.animate-bottom {
	position: relative;
	-webkit-animation-name: animatebottom;
	-webkit-animation-duration: 1s;
	animation-name: animatebottom;
	animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
	from {
		bottom: -100px;
		opacity: 0;
	}
	to {
		bottom: 0px;
		opacity: 1;
	}
}

@keyframes animatebottom {
	from {
		bottom: -100px;
		opacity: 0;
	}
	to {
		bottom: 0px;
		opacity: 1;
	}
}

@keyframes filter {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 5%;
		opacity: 1;
	}
}

@-webkit-keyframes filter {
	from {
		bottom: -100px;
		opacity: 0;
	}
	to {
		bottom: 5%;
		opacity: 1;
	}
}

@keyframes seemore {
	0% {
		box-shadow: 0px 0 2px rgba(33, 176, 238, 255);
	}
	50% {
		box-shadow: 0px 0 15px rgba(33, 176, 238, 255);
	}
	100% {
		box-shadow: 0px 0 2px rgba(33, 176, 238, 255);
	}
}

@-webkit-keyframes seemore {
	0% {
		box-shadow: 0px 0 2px rgba(33, 176, 238, 255);
	}
	50% {
		box-shadow: 0px 0 15px rgba(33, 176, 238, 255);
	}
	100% {
		box-shadow: 0px 0 2px rgba(33, 176, 238, 255);
	}
}

@keyframes teach {
	0% {
		opacity: 0;
		z-index: -1000;
		transform: translateY(-90%);
	}
	15% {
		opacity: 1;
		z-index: -100;
		transform: translateY(-50%);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes addmessage {
	0% {
		opacity: 0;
		transform: translateX(-50%);
	}
}

@keyframes addUsermessage {
	0% {
		opacity: 0;
		transform: translateX(50%);
	}
}

@-webkit-keyframes addmessage {
	0% {
		opacity: 0;
		transform: translateX(-50%);
	}
}

@-webkit-keyframes addUsermessage {
	0% {
		opacity: 0;
		transform: translateX(50%);
	}
}

@keyframes teachIcon {
	0% {
		box-shadow: 0px 0 2px rgba(0, 0, 0, 0.67);
	}
	50% {
		box-shadow: 0px 0 10px rgba(0, 0, 0, 0.67);
	}
	100% {
		box-shadow: 0px 0 2px rgba(0, 0, 0, 0.67);
	}
}
