body {
	margin: 0;
	padding: 0;
	font-family: 'Cairo', sans-serif;
}

* {
	font-family: 'Cairo', sans-serif !important;
}

.container {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(2, 50%);
	grid-template-areas: "left_side right_side";
}

.container-AR {
	grid-template-areas: "right_side left_side ";
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
----------------------------------Left Side css--------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */

.left_side {
	grid-area: left_side;
	background-color: white;
	height: 100vh;
	padding: 40px 60px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
----------------------------------Title--------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */

.left_side h1 {
	font-weight: 100;
	color: #222222;
	line-height: 1.5;
	font-size: 35px;
	margin-bottom: 50px;
	margin: 0;
}

.left_side span {
	font-weight: 400;
	cursor: pointer;
}

.whatsApp {
	color: #1ebea5;
	border-bottom: 1px solid #1ebea5;
	font-size: 35px;
}

.dropdown-menu1 {
	position: absolute;
	z-index: 1000;
	display: none;
	min-width: 160px;
	padding: 5px 0;
	margin: 10px 0 0 0;
	list-style: none;
	font-size: 16px;
	font-weight: 200;
	text-align: left;
	background-color: rgb(255, 255, 255);
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 4px;
	border: none;
	-webkit-box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
	box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
}

.dropdown-menu1 li {
	cursor: pointer;
	padding: 3px 20px;
}

.dropdown-menu1 li a,
.dropdown-menu1 li a:link,
.dropdown-menu1 li a:visited,
.dropdown-menu1 li a:active {
	text-decoration: none;
	width: 100%;
	color: gray;
	display: inline-block;
}

.dropdown-menu1 li:hover {
	background-color: #cccccc;
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
----------------------------------Email Field--------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */
.email-sending {
	width: 100%;
	display: flex;
	flex-direction: row;
	border: 2px solid rgba(151, 151, 151, 0.123);
	border-radius: 3px;
	margin-bottom: 15px;
	margin-top: 30px;
}
.email-sending-AR {
	flex-direction: row-reverse;
}

.left_side select {
	margin: 0;
	border: none;
	padding: 12px 10px;
	font-family: inherit;
	color: rgb(75, 75, 75);
	background-color: white;
	font-size: 14px;
	border-right: 2px solid rgba(151, 151, 151, 0.123);
	border-left: 2px solid rgba(151, 151, 151, 0.123);
	color: gray;
}
::placeholder {
	color: rgba(128, 128, 128, 0.692);
}

.left_side input[type=email] {
	flex: 1;
}
.left_side input[type=email],
.left_side input[type=number],
.left_side input[type=text] {
	border: none;
	padding: 12px 12px;
	font-size: 14px;
	font-family: inherit;
	min-width: 0;
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
----------------------------------Phone Field--------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */

.phoneNumber {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid rgba(151, 151, 151, 0.123);
	border-radius: 3px;
	margin-bottom: 15px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
}

.phoneNumber h6 {
	margin: 0 auto;
	font-weight: bold;
	color: gray;
}

.phoneNumber input {
	flex: 1;
}

.phoneNumber #info-number svg {
	width: 18px;
	margin-right: 5px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
----------------------------------Text Field--------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */

.send-text {
	margin-bottom: 15px;
	width: 100%;
}

.send-text div {
	background-color: rgba(151, 151, 151, 0.123);
	width: 100%;
	border-radius: 3px 3px 0 0;
}

.send-text h6 {
	display: inline-block;
	color: #757e83bd;
	margin: 0;
	text-align: center;
	font-size: 14px;
	padding: 10px 12px;
	transition: 0.5s;
	cursor: pointer;
}

.send-text h6:hover {
	background-color: #39065a;
	color: white;
}

.send-text textarea {
	width: 100%;
	height: 150px;
	border: none;
	border-top: none;
	border-radius: 0 0 3px 3px;
	border: 2px solid rgba(151, 151, 151, 0.123);
	resize: none;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 15px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
	outline: none;
}

/*
 ------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-------------------- Buttons (opstions-reset-generate) ------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */

.btns {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: wrap;
	transition: all 0.5s;
}

.btns-AR {
	flex-direction: row-reverse;
}

.btns h6 {
	text-decoration: none;
	font-size: 14px;
	transition: all 0.5s;
	cursor: pointer;
	padding: 10px 15px;
	font-weight: 400;
	margin: 0;
}

.btns #btn-moreOptions:hover {
	text-decoration: underline;
	color: #1ebea5;
}
.btns #btn-resetAll {
	margin-left: auto;
	margin-right: 10px;
	border: none;
	background-color: white;
	color: black;
}

.btns-AR #btn-resetAll {
	margin-left: 10px;
	margin-right: auto;
}

.btns #btn-resetAll:hover {
	background-color: rgba(128, 128, 128, 0.452);
}

.popover {
	border: none;
	position: absolute !important;
	padding: 15px 20px;
	border-radius: 0;
	margin-bottom: 15px;
	-webkit-box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
	box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
}

.popover-content {
	display: flex;
	justify-content: center;
}

.popover button {
	text-align: center;
	width: 130px;
	border-radius: 1px;
	font-size: 12px;
	padding: 10px 5px;
	color: white;
	border: none;
	font-weight: bold;
	transition: 0.5s;
	cursor: pointer;
	outline: none;
}

.popover-title {
	margin: 0;
	font-size: 14px;
	color: gray;
	background-color: #fff;
	border: none;
	text-align: center;
}
.yes {
	margin-right: 5px;
	background-color: #39065a;
}

.yes:hover {
	background-color: #601d8d;
}

.no {
	background-color: #bf5329;
}

.no:hover {
	background-color: #e26c3d;
}
.btns #btn-generateLink {
	background-color: #39065a;
	color: white;
	font-weight: 400;
	border-radius: 3px;
}

.btns #btn-generateLink:hover {
	background-color: #652b8b;
}
/*
 ------------------------------------------------------------------------------
-------------------------------------------------------------------------------
------------------------------- Model Pop Up ----------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */

.modelBack {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.445);
	padding: 0 15px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
}

.modelContainer {
	max-width: 600px;

	margin: 50px auto 0 auto;
	background-color: white;
	border-radius: 3px;
	box-shadow: 0 0 50px rgba(0, 0, 0, .05);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
	padding: 15px;
}
.modelContainer h1 {
	margin: 15px 0 10px 0;
	font-weight: bold;
	font-size: 16px;
	color: rgb(95, 95, 95);
}

.modelContainer-AR h1 {
	text-align: right;
}

.modelContainer h4 {
	margin: 15px 0 10px 0;
	font-size: 12px;
	font-weight: normal;
	color: rgb(168, 168, 168);
}

.modelContainer-AR h4 {
	margin-right: auto;
	margin-left: 0;
	text-align: right;
}

.modelheader {
	display: flex;
	align-items: center;
}

.modelheader-AR {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

.modelheader h1 {
	margin: 0;
	font-weight: 400;
	font-size: 22px;
	color: gray;
}

.modelheader span {
	margin-left: auto;
}

.modelheader-AR span {
	margin-right: auto;
	margin-left: 0;
}

.modelheader span:hover {
	text-decoration: underline;
}

.saveChangesContainer {
	display: flex;
	flex-direction: row-reverse;
	margin-top: 30px;
}

.saveChangesContainer-AR {
	flex-direction: row;
}

.saveChangesContainer h6 {
	background-color: #39065a;
	color: white;
	font-weight: 400;
	margin: 0;
	border-radius: 3px;
}

.saveChangesContainer h6:hover {
	background-color: #5f1b8b;
}

.customLink {
	width: 100%;
	display: flex;
	border: 2px solid rgba(151, 151, 151, 0.123);
	border-radius: 3px;
	margin-bottom: 15px;
}

.customLink h6 {
	margin: 0;
	border-right: 2px solid rgba(151, 151, 151, 0.123);
	color: gray;
}

.customLink input {
	flex-grow: 1;
	color: gray;
	min-width: 0;
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--------------------------------- URL Form --------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */
#short-form {
	display: none;
}

.url-input {
	width: 100%;
	border: 2px solid rgba(151, 151, 151, 0.123);
	border-radius: 3px;
	margin-bottom: 15px;
}

.url-input input {
	width: 100%;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--------------------------------- Company Mark --------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */

.mark {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	background-color: white;
}
.mark h1 {
	font-size: 16px;
	color: rgba(128, 128, 128, 0.705);
}

.mark a {
	color: #652b8b;
	text-decoration: none;
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--------------------------------- Right Side --------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */
.right_side {
	grid-area: right_side;
	height: 100vh;
	background-color: #39065a;
	padding: 40px 60px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--------------------------------- Preview Button --------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */

.preview {
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
	padding: 0 15px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
}

.preview h1 {
	border: 3px solid white;
	text-align: center;
	display: inline-block;
	margin: 0 auto;
	color: white;
	font-size: 18px;
	padding: 20px 20px !important;
	font-weight: normal;
	cursor: pointer;
}

.preview h1:hover {
	text-decoration: underline;
}

.preview h2 {
	border: 3px solid white;
	text-align: center;
	display: inline-block;
	margin: 0 0 0 auto;
	color: white;
	font-size: 18px;
	padding: 20px 15px;
	cursor: pointer;
	transition: 0.5s;
}

.preview h2:hover {
	background-color: white;
	color: #39065a;
}

.dropdown-menu2 {
	position: absolute;
	z-index: 1000;
	display: none;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	font-size: 16px;
	font-weight: 200;
	text-align: left;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 4px;
	border: none;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
	color: gray;
}

.dropdown-menu1 ul,
.dropdown-menu2 ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dropdown-menu2 li {
	padding: 3px 20px;
	cursor: pointer;
}

.dropdown-menu2 li:hover {
	background-color: #b4b4b4;
	color: white;
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--------------------------------- Phone View --------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */
.phone {
	height: 620px;
	width: 300px;
	margin: auto;
	background-image: url("../img/phone.png");
	background-size: cover;
	display: flex;
	flex-direction: column;
}

.header {
	background-color: #005e54;
	height: 55px;
	max-width: 310px;
	margin: 70px 13px 0 16px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.header #person {
	width: 37px;
	height: 37px;
	margin-left: 7px;
}
.header h1 {
	color: white;
	font-size: 16px;
	margin-left: 5px;
	white-space: nowrap;
	overflow: hidden;
}

.header #icons {
	margin-left: auto;
	margin-right: -40px;
}

.messages {
	background-image: url("../img/whatsapp_back.jpg");
	background-size: cover;
	height: 420px;
	margin: 0px 13px 0 16px;
	overflow-y: scroll;
	overflow-x: hidden;
}

.messages::-webkit-scrollbar {
	width: 4px;
}

.messages::-webkit-scrollbar-thumb {
	background-color: rgba(128, 128, 128, 0.527);
}

.right_message {
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	margin-top: 20px;
	margin-bottom: 20px;
}

.right_message .container_right {
	background-color: #dcf8c6bb;
	padding: 10px;
	max-width: 70%;
	font-size: 16px;
	height: auto;
	text-align: left;
	border-radius: 5px 0px 5px 5px;
	-webkit-box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
	box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
}

.right_message .container_right span {
	display: inline-block;
	width: 100%;
	text-align: right;
	font-size: 12px;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	transition: all 0.5s;
	margin-top: 3px;
}

.left_message {
	width: 100%;
	flex-direction: row;
	margin-top: 20px;
	margin-bottom: 20px;
	display: none;
}

.left_message .container_left {
	background-color: rgba(255, 255, 255, 0.726);
	padding: 10px;
	max-width: 70%;
	font-size: 16px;
	height: auto;
	text-align: left;
	border-radius: 0px 5px 5px 5px;
	-webkit-box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
	box-shadow: -1px 1px 9px -6px rgba(0, 0, 0, 0.75);
}

.left_message .container_left span {
	display: inline-block;
	width: 100%;
	text-align: right;
	font-size: 12px;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	transition: all 0.5s;
	margin-top: 3px;
}

.left_message p,
.right_message p {
	font-size: 14px;
	margin: 0;
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--------------------------------- Result Page --------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */

.resultPage {
	display: none;
	position: absolute;

	width: 100%;
	height: 100%;
	padding: 15px;
	background-color: #39065a;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
}

.resultPage .mainContainer {
	max-width: 600px;
	margin: auto;
	padding: 15px;
}

.resultPage .mainContainer h1 {
	text-align: center;
	color: white;
	font-weight: normal;
	margin: 0;
	margin-bottom: 30px;
}

.resultPage .mainContainer hr {
	width: 30px;
	color: gray;
	margin-bottom: 30px;
}

.resultPage .subContainer {
	background-color: white;
	border-radius: 3px;
	padding: 20px;
}
.resultPage .subContainer {
	background-color: white;
	border-radius: 3px;
	padding: 20px;
}

.resultPage .subContainer h1 {
	color: gray;
	font-size: 20px;
}

.resultLink {
	display: flex;
	align-items: center;
	border-radius: 3px;
	border: 2px solid rgba(128, 128, 128, 0.534);
}

.resultLink h6 {
	margin: 0 5px;
	flex: 1;
	text-align: center;
	color: gray;
	min-width: 0;
	height: auto;
	overflow-x: auto;
}

.resultLink h6::-webkit-scrollbar {
	height: 4px;
}

.resultLink h6::-webkit-scrollbar-thumb {
	background-color: rgba(128, 128, 128, 0.527);
}

.resultLink svg {
	height: 35px;
	width: 35px;
	min-width: 35px;
	border-right: 2px solid rgba(128, 128, 128, 0.534);
	padding: 5px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
	background-color: rgba(128, 128, 128, 0.534);
}

.resultTypes {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: wrap;
	margin: 30px 0;
}

.resultTypes > div {
	padding: 5px;
	border: 2px solid rgba(128, 128, 128, 0.452);
	border-radius: 3px;
	display: flex;
	flex-direction: column;
	margin: 10px 10px;
	transition: 0.5s;
}

.resultTypes > div:hover {
	border: 2px solid #39065a;
}

.resultTypes img {
	height: 30px;
	width: 30px;
	margin: 15px 30px;
}

.resultTypes > div h4 {
	text-align: center;
	font-weight: normal;
	font-size: 14px;
	color: gray;
	margin: 0;
}

.resultPage .subContainer h3 {
	text-align: center;
	font-weight: normal;
	color: gray;
	font-size: 16px;
}

.resultPage .subContainer h3:hover {
	text-decoration: underline;
	cursor: pointer;
}

/*
 -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--------------------------------- Mobile Responsive --------------------------------
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
 */
@media only screen and (max-width: 768px) {
	.container {
		grid-template-columns: repeat(1, 100%);
		grid-template-areas: "left_side "" right_side";
	}

	.left_side {
		height: auto;
		padding: 40px 20px;
	}

	.right_side {
		height: auto;
		padding: 40px 0px;
	}

	.resetAllConform h5,
	.generateConform h5 {
		width: 100px;
	}

	.left_side input[type=number] {
		padding: 12px 5px;
	}

	.btns #btn-resetAll {
		margin-right: 0;
	}

	.btns-AR #btn-resetAll {
		margin-left: 0;
	}

	.left_side select {
		width: 70px;
	}

	.resultPage {
		position: relative;
		height: auto;
	}
}
