/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
	min-height: 100%;
	max-height: max-content;
	/* background: linear-gradient(rgba(141, 32, 239, 0.6), rgba(23, 239, 254, 0.6)); */
	background: linear-gradient(rgba(141, 32, 239, 1), rgba(23, 239, 254, 1));
	/* color1:#8d20ef;
	text-color2:#17effe;
	*/
}
body {
	font-family: montserrat, arial, verdana;
	height: max-content;
}
body, form {background:transparent;}

.toast.show {
    display: block;
    opacity: 1;
    z-index: 2;
    box-shadow: 2px 2px 10px grey;
    top: 10px;
    left: 10px;
}

/*Side Menu Styles*/
#openSideNav{
	position: fixed;
	z-index: 1;
    background: rgba(255, 255, 255, 0.1 );
    box-shadow: 0px 0px 5px #b2bff7;
    border-radius: 2px;
    padding: 0px 3px;
	color: white;
	left: 25px;
    top: 25px;
}

.sidenavmenu {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background: linear-gradient(to bottom right,#06047A, #2e2ee8);
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 20px;
	box-shadow:10px 0 100px black;
	overflow:hidden;
}

.sideNavMenuHeader img{
	max-width: 25%;
	height: 60px;
    width: 60px;
	float:left;
    border-radius: 100%;
    border: 4px solid white;
    box-shadow: 2px 0px 10px black;
	margin: 5px 0px 0 5%;
	transition: 0.3s;
}
.sidenavmenu p{transition: 0.3s;width: 70%; overflow:hidden; float:left; color:#ffffff; font-size:12px; margin-top:10px; padding-left:5px;}
.sidenavmenu button{transition: 0.3s; margin-top:10px; font-size:12px;}
.sidenavmenu hr{transition: 0.3s; border-color:#8181ea}

.sidenavmenu a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 18px;
	color: #ffffff;
	display: block;
	transition: 0.3s;
}

.sidenavmenu a p{width:25px; float:left; margin:0 5px 0 0; font-size:inherit; color:inherit;}

.sidenavmenu a:hover, .sidenavmenu .active {font-weight:600; color: #818181;}

.sidenavmenu .closebtn {
	position: absolute;
	top: 0;
	right: 5px;
	font-size: 36px;
	margin-left: 50px;
}

/*form styles*/
#msform {
	width: 100%;
	margin: 30px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}
/*buttons*/
#msform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}

.indicateCenterUp::after{
	content: "";
	position: absolute;
	bottom: 24px;
    left: 34px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #989898;
}
.AltMobNoSec .borderedDiv{
	border: 2px dashed #d2d2d2;
	padding: 15px 5px;
	margin-bottom: 10px;
	min-height:50px;
}
.AltMobNoSec .borderedDiv .altMobNoDelet{
	float: right;
    font-size: 8px;
    margin-top: 4px;
}

#allSliderVideos iframe{
	width:100% !important;
	height:200px !important;
}

/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 25%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60;
	color: white;
}

#ModUl{
	list-style:disc;
	margin-left:35px;
}

#ModUl li{
	margin:8px 0;
}

#vcardAllDesigns{height:325px; overflow-y:scroll; margin-bottom:3vh;}
#vcardAllDesigns::-webkit-scrollbar {width: 7px;}
#vcardAllDesigns::-webkit-scrollbar-track {background: #f1f1f1; }
#vcardAllDesigns::-webkit-scrollbar-thumb {background: #888;}
#vcardAllDesigns::-webkit-scrollbar-thumb:hover {background: #555;}
#vcardAllDesigns .col-md-6{height:325px; overflow:hidden;}
#vcardAllDesigns .card{height:95%; margin-bottom:5%; overflow: hidden;}
#vcardAllDesigns .card-body{padding:0}
#vcardAllDesigns .card-body img{width:100%;}
#vcardAllDesigns .card-img-overlay{
	top: 40px;
    background: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: flex-end;
    padding: 0;
}
#vcardAllDesigns .card-img-overlay p{
	color: #000000;
    line-height: 20px;
    background: rgba(255, 255, 255, 0.75);
    padding: 10px;
    font-weight: 600;
	font-size: 12px;
    overflow: hidden;
    height: max-content;
	max-height: 100%;
}
#vcardAllDesigns .card-img-overlay p span{font-size:16px; font-weight:800;}
#vcardAllDesigns .col-md-6{position: relative;}


#vcardAllDesigns .selected-vcard::after{
	content: "SELECTED";
    position: absolute;
    z-index: 1;
    top: 22px;
	left: 10px;
	color:#ffffff;
	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg); /* Safari 3-8 */
	transform: rotate(-45deg);
	font-size: 12px;
	font-weight: 800;
}
#vcardAllDesigns .selected-vcard::before{
	content: "";
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 15px;
    border-width: 38px;
    border-style: solid;
	border-color: #0016b1 transparent transparent #0016b1;
	border-radius: 7px 0 0 0;
} 

input[type="radio"]{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 100% !important;
	z-index: 1;
	opacity: 0;
}
.modal-body {line-height: 1.5rem;}

#loading{display:none;position:fixed;top:0;left:15px;width:100%; justify-content: center; background:rgba(0, 0, 0, 0.5);overflow-y: auto;}


/* GOOGEL INPUT TOOLS CSS */
@keyframes floating {
    from { transform: translate(0,  -0px); }
    65%  { transform: translate(0, -10px); }
    to   { transform: translate(0, 0px); }    
}

#translControl{
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 1;
	background: #ffffff;
	border-radius:100%;
	box-shadow: 0px 0px 8px black;
	font-size: 12px;
}



#translControl::before, #translControl::after{
	animation-name: floating;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

#translControl::after{
	content: "";
    position: absolute;
    top: -9px;
   /*  border: 10px solid black;
    border-left-color: #5f71f5;
    border-right-color: #6763f4;
	border-bottom: 0; */
	width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;	
	border-top: 10px solid #000000;
}

#translControl::before{
	content: "Marathi : ctrl+m";
    position: absolute;
    top: -35px;
    width: max-content;
    background: black;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 15px;
}


#translControl .inputapi-custom-button-collapse-right,
#translControl .inputapi-transliterate-button,
#translControl .inputapi-transliterate-button-caption,
#translControl .inputapi-transliterate-button-inner-box,
#translControl .inputapi-transliterate-button .inputapi-transliterate-button-outer-box,
#translControl .inputapi-transliterate-button .inputapi-transliterate-button-outer-box
{background:transparent;border:none;}

.toast{
	width: max-content;
    max-width: 100%;
    position: fixed;
    top: 0;
    font-weight: 600;
}

@media(max-width:991px){
	#msform {margin-top: 65px;}
	#translControl{bottom: 10px; right: 35px;}
	#msform fieldset { width: 90%; margin: 0 5%;}
	.imageuploadify .imageuploadify-images-list i {margin-top: 15px;}
	#vcardAllDesigns::-webkit-scrollbar {width: 4px;}
}

@media screen and (max-height: 450px) {
	.sidenavmenu {padding-top: 15px;}
	.sidenavmenu a {font-size: 16px;}
}