@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box; 
}
body {
	background-color:transparent !important;
}

html {
	background:  url("https://www.thewatchtower.com/demo/Watsapp_V1.svg") no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-family: 'Quicksand', sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(13, 37, 48, 0);
	height: 100%;
	background-color:rgba(13, 37, 48, 1) !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	background-color:transparent !important;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

/*header*/
.headBG {
	background-color: #232d36;
	color: #e1e8f0;
	z-index: 999;
	top: 0;
	width: 100%;
}
/*header*/

/* textarea grow */
.grow-wrap {
  /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
  display: grid;
  width: 100%;
}
.grow-wrap::after {
  /* Note the weird space! Needed to preventy jumpy behavior */
  content: attr(data-replicated-value) " ";
  /* This is how textarea text behaves */
  white-space: pre-wrap;
  /* Hidden from view, clicks, and screen readers */
  visibility: hidden;
}
.grow-wrap > textarea {
  /* You could leave this, but after a user resizes, then it ruins the auto sizing */
  resize: none;
  /* Firefox shows scrollbar on growth, you can hide like this. */
  overflow: hidden;
}
.grow-wrap > textarea,
.grow-wrap::after {
  /* Identical styling required!! */
  border: 1px solid #283239;
  padding: 0.5rem;
  font: inherit;
  /* Place on top of each other */
  grid-area: 1 / 1 / 2 / 2;
}
/* textarea grow */

/* flyin */
.selContrCodeBg {
	height: 100%;
	width: 100%;
	top: 0;
	left: -100%;
	position: fixed;
	z-index: 99999;
	background-color: rgba(0,0,0,0);
	transition: 0.5s;
}
.particCntr {
	cursor:pointer;
}
.cntrAreaCon {
	height: 250px;
	overflow-y: scroll;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.cntrAreaCon::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.cntrAreaCon {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/* flyin */

/*body*/
.formMesg .form-control {
    border: 1px solid #1e272e;
    background-color: #1e272e;
	color: #8e999f;
}
.formMesg .custom-select {
    border: 1px solid #1e272e;
    background-color: #1e272e;
    border-radius: 15px 0px 0px 15px;
	color: #8e999f;
}
.formMesg .form-group {
    border: 1px solid #212e36;
    background-color: #212e36;
    border-radius: 15px;
	color: #8e999f;
	box-shadow: 0px 0px 4px 0 rgb(25 42 70 / 5%) !important;
	margin-bottom: 20px;
}
.whatsBtn, .whatsBtn2, .shareBtn {
	color: #fff;
	font-size: 0.8rem;
    font-weight: 600;
    background-color: #075e55;
    border-radius: 0.25rem;
    text-transform: uppercase;
    padding: 10px 12px;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.whatsBtn:hover, .whatsBtn2:hover, .shareBtn:hover {
    color: #fff;
	background-color: #106f65;
}
/*body*/

.form-control:focus, .btn:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}

/* footer */
.myFoot {
	position: fixed;
	color: #8e999f;
	width: 100%;
    bottom: 0;
	display: block;
	background-color: rgba(13 110 253, 0);
}
.myFoot a {
	text-decoration: none;
	color: #e9432b;
}
.myFoot a:hover{
	text-decoration: none;
	color: #e9432b;
}
/* footer */

/*media query to detect orientation change*/
@media screen and (orientation: landscape) {
	
}