/* Google Font Embed */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/*
	font-family:'Inter', sans-serif;
	font-family: 'Poppins', 'Open Sans', sans-serif;
	font-family: 'Baloo Bhai 2', cursive;
*/

/* 
	========================== 
	DEFAULT CSS 
	==========================
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

html,
body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

body {
  width: 100%;
  height: 100vh;
  margin: 0px auto;
  font-family: "Poppins", Roboto;
  font-size: 16px;
  color: #212121;
  background-color: #f9f9f9;
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}


.bottomseventytwo {
  margin-bottom: 72px;
 
}
body[data-header="false"] {
  margin-top: 0px;
}

body[data-footer="true"] {
  margin-bottom: 72px;
}

body[data-bottom="true"] {
  padding-bottom: 72px;
}

body[data-bgcolor="white"] {
  background-color: #fff;
}

header,
footer,
menu,
nav,
article,
section,
aside,
div {
  display: block;
  margin: 0px;
  padding: 0px;
  z-index: 1;
}
h1,
h2,
h3,
h4,
h5,
h6,
form {
  margin: 0px;
  padding: 0px;
}

p,
ul,
li,
a,
dt,
dl,
i {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

a,
span,
label,
dt,
dl,
i {
  display: inline-block;
}

img {
  max-width: 100%;
  vertical-align: top;
}

a {
  outline: none;
  border: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color:#5E54F6;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
select,
textarea {
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  outline: none;
  border: none;
  background: none;
}

/*
	=======================
	%Widget: Custome Alert
	=======================
*/
.alert {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 15px 15px;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.alert .alertWrapper {
  margin: 0px auto 0px auto;
  top: calc(50% - 126px);
  background: #fff;
  width: 85%;
  max-width: 450px;
  border-radius: 5px;
  border-top: 5px solid rgb(255, 105, 147);
}

.alertContent {
  padding: 25px 15px 25px;
  text-align: center;
}

.alertContent h5 {
  font-size: 18px;
  font-weight: 600;
}

.alertContent p {
  color: #000;
  line-height: 25px;
}

.alertAction {
  background: #f6f6f6;
  border-radius: 0px 0px 10px 10px;
  padding: 10px 25px;
  text-align: center;
}

.alertAction a {
  border-radius: 3px;
  padding: 7px 15px;
  margin-left: 5px;
  font-weight: 400;
  font-size: 15px;
}

.alertAction a.left {
  float: left;
}

.alertAction a.right {
  float: right;
}

.alertAction .blue {
  background: #a98cde;
  color: #fff;
}

.alertAction .blue:hover {
  background: #a98cde;
}

.alertAction .green {
  background: #08bba3;
  color: #fff;
}

.alertAction .green:hover {
  background: #08a893;
}

.alertAction .red {
  background: #f78888;
  color: #fff;
}

.alertAction .red:hover {
  background: #d75f5f;
}

.alertAction .white {
  background: #fff;
}

.alertAction .white:hover {
  background: #f4f4f4;
}

/*
	=======================
	%Widget: Switch
	=======================
*/
input.switch {
  position: relative;
  -webkit-appearance: none;
  outline: none;
  width: 50px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #d9dadc;
  border-radius: 50px;
  box-shadow: inset -20px 0 0 0 #fff;
}

input.switch:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  background: transparent;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}

input.switch:checked {
  box-shadow: inset 20px 0 0 0 #4ed164;
  border-color: #4ed164;
}

input.switch:checked:after {
  left: 20px;
  box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.05);
}

/*
	=======================
	%Widget: Model
	=======================
*/
.modelWrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -8;
  width: 100%;
  height: 100%;
  background: rgba(10, 183, 187, 0.78);
  opacity: 0;
  overflow: hidden;
  -webkit-transition: -webkit-transform 350ms ease;
  -moz-transition: -moz-transform 350ms ease;
  transition: transform 350ms ease;
}

.modelWrapper .clickOverlay {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: red;
  opacity: 0;
}

.modelWrapper .model {
  background: #fff;
  box-shadow: 0px 0px 48.06px 5.94px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 5;
  width: 80%;

  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);

  -webkit-transition: -webkit-transform 350ms ease;
  -moz-transition: -moz-transform 350ms ease;
  transition: transform 350ms ease;
}

.modelWrapper .model .modelTitle {
  background: rgb(231, 108, 66);
  background: linear-gradient(
    90deg,
    rgba(231, 108, 66, 1) 0%,
    rgba(216, 48, 126, 1) 35%,
    rgba(87, 90, 203, 1) 100%
  );
  color: #fff;
  height: 55px;
  line-height: 55px;
  padding: 0px 15px;
}

.modelWrapper .model .modelTitle .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.modelWrapper .model .modelContent {
  padding: 15px;
}

.modelWrapper[data-modelShow="false"] {
  opacity: 0;
}

.modelWrapper[data-modelShow="true"] {
  z-index: 10000;
  opacity: 1;
}

.modelWrapper[data-modelShow="true"] .model {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*
	============
	Widget
	============
*/
.widget .card h2 {
  color: #000;
  padding-bottom: 0px;
}

.widget .card p {
  padding-bottom: 30px;
  color: #535353;
}

.form li {
  grid-template-columns: 250px calc(100% - 250px) !important;
}

/* 
	=============
	Alerts
	=============
*/

.alert svg,
.alert img {
  vertical-align: middle;
  margin-right: 15px;
}

.alert button {
  background: none;
  opacity: 0.2;
  cursor: pointer;
}

.alert-success {
  background: #e7faec;
  color: #2bc155;
}

.alert-warning {
  background: #fff6e6;
  color: #df8a4b;
}

.alert-error {
  background: #fee6ea;
  color: #f72b50;
}

.alert-info {
  background: #f0f6fc;
  color: #2781d5;
}

/* 
	=============
	Import file
	=============
*/
.importFile {
  max-width: 700px;
}

.importFile .dropArea {
  border: 2px dashed #ccc;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 42% 56%;
  grid-column-gap: 2%;
  align-items: center;
}

.importFile .dropArea input {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.importFile .dropArea .elementMob {
  text-align: center;
  border-right: 1px solid #eae9e9;
  margin: 18px 0px;
}

.importFile .dropArea .elementMob h5 {
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px;
}

.importFile .dropArea .elementMob p {
  font-size: 16px;
  font-weight: 300;
  color: #cccccc;
  padding: 10px 0px;
}

/* uploded file priview */
.dropPreview {
  display: grid;
  grid-template-columns: 20% 66%;
  grid-column-gap: 4%;
  border: 2px solid #38d5a6;
  padding: 15px;
  margin-top: 15px;
  align-items: center;
  border-radius: 6px;
}

.extExcelDiv img {
  vertical-align: top;
  width: 100%;
}

.dropPreview .fileName span {
  font-size: 15px;
  display: block;
}

.dropPreview a {
  font-size: 13px;
  padding-top: 5px;
}

/*
	===================
	atatchment images 
	===================
*/

.fileAttachments {
  padding: 20px;
}

.addPhotoPanel {
  border: 1px solid rgb(246, 236, 231);
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px rgba(9, 9, 9, 0.2);
  padding: 10px;
  display: grid;
  grid-template-columns: 245px calc(96% - 245px);
  grid-column-gap: 4%;
  margin-top: 10px;
  margin-bottom: 25px;
}

.addPhotoPanel .dragPhoto {
  display: block;
  border: 2px dashed #ccc;
  padding: 35px 0px;
  height: 245px;
  height: auto;
  background: #f6f7fb;
}

.addPhotoPanel .dragPhoto input[type="file"] {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.addPhotoPanel .photoInfo {
  padding-top: 5px;
}

.addPhotoPanel .photoInfo h5 {
  font-weight: 600;
  font-size: 15px;
  color: #384476;
  margin-bottom: 10px;
}

.addPhotoPanel .photoInfo p {
  font-size: 13px;
  margin: 4px 0px;
  padding: 0px;
  margin-left: 7px;
  padding-left: 10px;
  color: #8086a0;
  overflow: hidden;
}

.addPhotoPanel .photoInfo p:before {
  content: " ";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 8px;
  left: 0px;
  z-index: 1;
  background-color: #8086a0;
}

/* uploaded images style */
.uploadedImages ul {
  display: grid;
  grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
  grid-column-gap: 2%;
  margin-top: 35px;
}

.uploadedImages ul li {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  padding: 6px;
  margin-bottom: 25px;
}

.uploadedImages ul li .remove {
  background: red;
  border: 3px solid #fff;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 10;
  border-radius: 100%;
  text-align: center;
  color: #fff;
  line-height: 24px;
}

.uploadedImages ul li .thumb {
  width: 100%;
  height: 200px;
  margin-bottom: 0px;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.uploadedImages ul li .thumb img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  vertical-align: top;
}

/* === */
.addPhotoPanel .dragPhoto {
  height: 245px;
  background: #f6f7fb;
  text-align: center;
}

.addPhotoPanel .dragPhoto span {
  display: block;
  padding: 15px 0px;
  margin: 13px 35px;
}

.addPhotoPanel .dragPhoto label {
  display: inline-block;
  background: #fff;
  border-radius: 5px;
  padding: 6px 10px;
  color: #ff5a00;
  border: 1px solid #ff8544;
  margin-top: 0px;
}

.addPhotoPanel .dragPhoto input[type="file"] {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* ================ */
.addPhotoPanel .viewPhoto {
  display: flex;
  height: 245px;
  background: #f6f7fb;
  text-align: center;
  align-items: center;
}

.addPhotoPanel .viewPhoto li {
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  height: 245px;
}

.addPhotoPanel .viewPhoto li span {
  display: none;
}

.addPhotoPanel .viewPhoto img {
  object-fit: contain;
  width: 100%;
  height: 245px;
}

.addPhotoPanel .viewPhoto .photoLoader {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #f6f7fb;
}

.addPhotoPanel .viewPhoto .photoLoader .spinLoader {
  top: 40%;
}

.addPhotoPanel .viewPhoto .edit,
.addPhotoPanel .viewPhoto .remove {
  background: red;
  border: 3px solid #fff;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 10;
  border-radius: 100%;
  text-align: center;
  color: #fff;
  line-height: 24px;
}

.addPhotoPanel .viewPhoto .remove:after {
  font-family: "FontAwesome";
  content: "\f00d";
  font-size: 15px;
}

/* ============== */
.addPhotoPanel .photoInfo {
  padding-top: 5px;
}

.addPhotoPanel .photoInfo h5 {
  font-weight: 600;
  color: #384476;
  font-size: 15px;
  margin-bottom: 10px;
}

.addPhotoPanel .photoInfo p {
  font-size: 13px;
  margin: 4px 0px;
  color: #8086a0;
  padding-left: 12px;
  margin-left: 7px;
}

.addPhotoPanel .photoInfo p:before {
  content: " ";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 8px;
  left: 0px;
  z-index: 1;
  background-color: #8086a0;
}

.addPhotoPanel .photoAction {
  margin-top: 25px;
}

.addPhotoPanel .photoAction a {
  text-align: center;
  border-right: 1px solid #ededed;
  padding: 0px 20px;
}

.addPhotoPanel .photoAction a:first-child {
  padding-left: 0px;
}

.addPhotoPanel .photoAction a:last-child {
  border: 0px;
}

.addPhotoPanel .photoAction a:last-child {
  margin-right: 0px;
}

.addPhotoPanel .photoAction a.inactive {
  cursor: not-allowed !important;
  pointer-events: none;
}

.addPhotoPanel .photoAction a.inactive span,
.addPhotoPanel .photoAction a.inactive i {
  cursor: not-allowed !important;
  opacity: 0.2;
  pointer-events: none;
}
.addPhotoPanel .photoAction a i {
  width: 35px;
  height: 35px;
  background: url("../../images/image_action_controll.png") no-repeat;
  background-size: 43px;
  transition: all 0.3s ease-out;
}

.addPhotoPanel .photoAction a:hover i {
  transform: translateY(-5px);
}

.addPhotoPanel .photoAction a span {
  display: block;
}

.addPhotoPanel .photoAction a.markup {
  color: #41689e;
}

.addPhotoPanel .photoAction a.markup i {
  background-position: 0px 3px;
}

.addPhotoPanel .photoAction a.rotate {
  color: #6830b4;
}

.addPhotoPanel .photoAction a.rotate i {
  background-position: 0px -63px;
}

.addPhotoPanel .photoAction a.crop {
  color: #eca61f;
}

.addPhotoPanel .photoAction a.crop i {
  background-position: 0px -133px;
}

.addPhotoPanel .photoAction a.download {
  color: #4427ef;
}

.addPhotoPanel .photoAction a.download i {
  background-position: 0px -192px;
}

/* For Layouts */
main {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px calc(100% - 250px);
}

.pageContent {
  padding: 30px 25px 0px;
}

.contentWrapper {
  padding-bottom: 100px;
}

.clr {
  clear: both;
}

/* card */
.card {
  background: #ffffff;
  box-shadow: 0px 1px 6px 0px rgba(1, 1, 1, 0.08);
  border-radius: 5px;
  padding: 15px 20px 15px;
  margin-bottom: 20px;
}

.card h2 {
  font-size: 25px;
  font-weight: 500;
  color: #48378a;
  /*padding-bottom:18px;*/
}

/* ============= For Menu */
.activeView {
  -webkit-transform: translate3d(0, 0, 0) !important;
  -moz-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

.menuOverlay {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 20000;
  width: 105%;
  height: 105%;
}

/*
	=======================
	anchore button
	=======================
*/
.disabled a {
  border: 1px solid #d8d8d8 !important;
  background-color: rgb(216, 216, 216) !important;
  box-shadow: 0px 5px 6px 0px rgb(215, 213, 213);
  color: #fff;
}

.button a {
  background-color: #48378a;
  border: 2px solid #48378a;
  box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 8px 20px;
  color: #fff;
  font-weight: 500;
}

.button a:hover {
  transform: translateY(-5px);
}

.button .btnLoader {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #48378a;
  border: 2px solid #48378a;
  text-align: center;
}

/*.button .btnLoader span {
	top: 9px;
}*/

/* blue */
.button.border a {
  background: #fff !important;
  color: #48378a;
}

/* Green */
.button.green a,
.button.green .btnLoader {
  background-color: #38d5a6;
  border-color: #38d5a6;
}

.button.green.border a {
  color: #51a266;
}

/* red */
.button.red a,
.button.red .btnLoader {
  background-color: #de5e5e;
  border-color: #de5e5e;
}

.button.red.border a {
  color: #de5e5e;
}

/* yellow */
.button.yellow a,
.button.yellow .btnLoader {
  background-color: #f0c349;
  border-color: #f0c349;
}

.button.yellow.border a {
  color: #f0c349;
}

/* orrange */
.button.orrange a,
.button.orrange .btnLoader {
  background-color: #ff5a00;
  border-color: #ff5a00;
}

.button.orrange.border a {
  color: #ff5a00;
}

/*
	=======================
	ringLoader
	=======================
*/
.spinLoader .small {
  background: url("../../images/cross-icon.png");
}

.spinLoader.small {
  width: 22px;
  height: 22px;
  border-width: 4px;
}

/* ============= Custom CheckBox */
.checkbox {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #eee;
  border-radius: 3px;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox input:checked ~ .checkmark {
  background-color: #ff5a00;
}

.checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

::placeholder {
  color: #6b7280 !important;
  font-weight: 300;
  opacity: 1;
}

.verifyPageTitleh1 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-family: "Poppins", Roboto;
  font-weight: 600;
  text-align: center;
  color: #3e3e3e;
  margin-bottom: 20px;
  margin-top: 8px;
}

.otpForm h2 {
  font-size: 16px;
  line-height: 22px;
  color: #3e3e3e;
  width: 100%;
  padding: 32px 20px 12px 20px;
}

.otpForm p {
  color: #3e3e3e;
  font-size: 13.5px;
  line-height: 20px;
}
.otpForm p span {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}
.otpForm ul li:first-child {
  padding: 0px 28px;
  margin-bottom: 24px;
}

.formCenter h2 {
  text-align: center;
  margin: auto;
}

.formCenter a {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #5e54f6;
  font-style: italic;
  text-decoration: underline;
}

h2 span {
  font-size: 12px;
  font-weight: 400;
  position: static;
  margin-left: 5px;
}
h2 {
  color: #212121;
  font-size: 1.4rem; /* 1.33 times the base size */
  line-height: 1.2;
  font-family: "Poppins", Roboto;
  font-weight: 500;
}

/* Regiser card */

.registerCard {
  position: absolute;
  width: 90%;
  max-width: 330px;
  height: auto;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);

  background: #f2f1ff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
  border-radius: 9px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.registerTitle {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #535353;
  margin: 0 0 4px;
}

.registerSubtitle {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #7c7c7c;
  margin: 0 0 12px;
  max-width: 224px;
}

/* validation message css*/
.validation {
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  color: red;
  clear: both;
}

