@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: myFont1;
  src: url("../font/font1/myFont1.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryColor: #6A67CE;
  --secondaryColor: #009DAE;
  --secondaryTextColor: rgb(141, 141, 141);
  --thirdColor: #f9fafc;
  --fourthColor: #f96464;
  --fifthColor: #f19f24;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #D4F6CC;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 95%;
  margin: 0 auto;
}

a, button, div, span, i, b, h1, h2, h3, h4, h5, h6, p, input, ul, li, select, label, textarea {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: "Montserrat", sans-serif;
}

::-moz-selection {
  color: var(--primaryColor);
  background: transparent;
}

::selection {
  color: var(--primaryColor);
  background: transparent;
}

main {
  overflow: hidden;
}

.pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  background: rgba(255, 255, 255, 0.864);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageLoader .pageLoaderIcon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid var(--primaryColor);
  border-top: 3px solid rgb(222, 222, 222);
  animation: rotateLoading 1s linear infinite;
}
@keyframes rotateLoading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.486);
  display: none;
}

.revertPopup{
  position: fixed;
  z-index: 200;
  background: white;
  width: 500px;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  overflow: hidden;
	padding: 40px;
	display: none;
}
.revertPopup h1{
  font-size: 22px;
  font-weight: 500;
}
.revertPopup form{
	width :100%;
	display: flex;
	flex-direction :column;
}
.revertPopup form .formGroup{
  width: 100%;
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}
.revertPopup form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.revertPopup form .formGroup input {
  width: 100%;
  height: 45px;
  margin-top: 5px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  background: var(--thirdColor);
  caret-color: var(--primaryColor);
}
.revertPopup form .formBtnArea{
	width :100%;
	margin-top: 30px;
	display :flex;
	justify-content: space-between;
	align-items: center;
}
.revertPopup form .formBtnArea .closeRevertPopup{
  flex: 0 0 48%;
  padding: 12px;
  background: #eee;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.revertPopup form .formBtnArea .closeRevertPopup:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.revertPopup form .formBtnArea button {
  flex: 0 0 48%;
  padding: 12px;
  background: var(--primaryColor);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
	border: none;
	outline: none;
  transition: 0.3s;
}
.revertPopup form .formBtnArea button:hover {
  transition: 0.3s;
  opacity: 0.7;
} 
.timePopup {
  position: fixed;
  z-index: 200;
  background: white;
  width: 500px;
  max-height: 70vh;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  overflow: hidden;
  display: none;
}
.timePopup .timePopupHead {
  width: 100%;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
}
.timePopup .timePopupHead h1 {
  font-size: 22px;
  font-weight: 500;
}
.timePopup .timePopupBody {
  padding: 5px 40px 20px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.timePopup .timePopupBody .timeSlot {
  flex: 0 0 48%;
  margin-top: 15px;
}
.timePopup .timePopupBody .timeSlot input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.timePopup .timePopupBody .timeSlot input:disabled ~ label{
	background: #a2a67733;
	border: 1px solid #a2a67733;
	color: #929292;
	cursor: not-allowed;
}
.timePopup .timePopupBody .timeSlot label {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 15px 30px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primaryColor);
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid var(--primaryColor);
}
.timePopup .timePopupBody .timeSlot input:checked + label {
  background: #c9d4ff;
}
.timePopup .timePopupFooter {
  width: 100%;
  padding: 20px 40px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.timePopup .timePopupFooter .closeTimePopup {
  flex: 0 0 48%;
  padding: 12px;
  background: #eee;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.timePopup .timePopupFooter .closeTimePopup:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.timePopup .timePopupFooter .sumitTimePopup {
  flex: 0 0 48%;
  padding: 12px;
  background: var(--primaryColor);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.timePopup .timePopupFooter .sumitTimePopup:hover {
  transition: 0.3s;
  opacity: 0.7;
}

.attentionPopup {
  position: fixed;
  z-index: 200;
  background: white;
  width: 500px;
  max-height: 70vh;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  overflow: hidden;
  padding: 40px;
}
.attentionPopup .closeAttentionPopup{
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 20px;
	cursor: pointer;
}
.attentionPopup .attentionPopupMain{
	width :100%;
	display: flex;
	flex-direction :column;
	margin-top :20px;
}
.attentionPopup .attentionPopupMain .attentionPopupMessage{
	width :100%;
	display: flex;
    flex-direction: column;
    gap: 10px;

}
.attentionPopup .attentionPopupMain .attentionPopupMessage input{
	display: none;
}
/*.attentionPopup .attentionPopupMain .attentionPopupMessage input:checked ~ label .checkArea::after{
	display :flex;
}*/
.attentionPopup .attentionPopupMain .attentionPopupMessage input:checked + label .checkArea::after {
    display: flex;
}


.attentionPopup .attentionPopupMain .attentionPopupMessage label{
	display: flex;
	gap :10px;
	cursor: pointer;
}
.attentionPopup .attentionPopupMain .attentionPopupMessage label .checkArea{
	width :20px;
	height :20px;
	border :2px solid var(--primaryColor);
	border-radius :5px;
	display: flex;
	justify-content: center;
	align-items :center;
	position: relative;
	margin-top: 5px;
}
.attentionPopup .attentionPopupMain .attentionPopupMessage label .checkArea::after{
	position: absolute;
	content: '';
	width: 5px;
	height: 10px;
	border-bottom: 2px solid var(--primaryColor);
	border-right: 2px solid var(--primaryColor);
	transform: rotate(45deg);
	margin-top: -3px;
	display: none;
}
.attentionPopup .attentionPopupMain .attentionPopupMessage label p{
	font-size: 16px;
	line-height: 1.5;
	width: calc(100% - 30px);
	text-align: justify;
}
.attentionPopup .attentionPopupMain .attentionPopupBtnArea{
	width: 100%;
	margin-top: 20px;
}
.attentionPopup .attentionPopupMain .attentionPopupBtnArea .sbtBtnAttentionPopup{
	padding :10px 30px;
	background: var(--primaryColor);
	color: white;
	font-size: 14px;
	border-radius :10px;
	cursor: pointer;
	width: fit-content;
	margin-left: 30px;
	transition: .3s;
}
.attentionPopup .attentionPopupMain .attentionPopupBtnArea .sbtBtnAttentionPopup:hover{
	transition: .3s;
	opacity: .7;
}

.successAlert {
  position: fixed;
  z-index: 200;
  background: white;
  width: 500px;
  max-height: 70vh;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  overflow: hidden;
  padding: 40px;
  display: none;
}
.successAlert .successAlertMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.successAlert .successAlertMain .successAlertIcon {
  width: 150px;
}
.successAlert .successAlertMain .successAlertIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.successAlert .successAlertMain p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

.deletePopup {
  position: fixed;
  z-index: 120;
  width: 400px;
  padding: 40px;
  background: white;
  border-radius: 10px;
  transform: translateX(-50%);
  left: 50%;
  top: -110%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease all;
}
@media (max-width: 480px) {
  .deletePopup {
    width: 90%;
    padding: 20px;
  }
}
.deletePopup .deletePopupIcon {
  width: 100px;
}
.deletePopup .deletePopupIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.deletePopup p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  color: black;
}
.deletePopup span {
  font-size: 14px;
  color: var(--secondaryTextColor);
  margin-top: 10px;
  text-align: center;
}

.deletePopup .formGroup{
	width :100%;
	display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.deletePopup .formGroup label{
	font-size :14px;
}
.deletePopup .formGroup input{
	width: 100%;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    padding: 0px 15px;
    outline: none;
    font-size: 16px;
}
.deletePopup .formGroup input:focus{
	border-color: black;
}

.deletePopup .deletePopupBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deletePopup .deletePopupBtnArea .closeDeletePopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: #F8F5F1;
  color: black;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.deletePopup .deletePopupBtnArea .closeDeletePopup:hover {
  transition: 0.2s;
  background: #F4EEE8;
}
.deletePopup .deletePopupBtnArea .confirmDeletePopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: var(--fourthColor);
  color: white;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.deletePopup .deletePopupBtnArea .confirmDeletePopup:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

.deletePopupActive {
  top: 80px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}



.cancelrevertPopup {
  position: fixed;
  z-index: 120;
  width: 400px;
  padding: 40px;
  background: white;
  border-radius: 10px;
  transform: translateX(-50%);
  left: 50%;
  top: -110%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease all;
}
@media (max-width: 480px) {
  .cancelrevertPopup {
    width: 90%;
    padding: 20px;
  }
}
.cancelrevertPopup .deletePopupIcon {
  width: 100px;
}
.cancelrevertPopup .deletePopupIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cancelrevertPopup p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  color: black;
}
.cancelrevertPopup span {
  font-size: 14px;
  color: var(--secondaryTextColor);
  margin-top: 10px;
  text-align: center;
}

.cancelrevertPopup .formGroup{
	width :100%;
	display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.cancelrevertPopup .formGroup label{
	font-size :14px;
}
.cancelrevertPopup .formGroup input{
	width: 100%;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    padding: 0px 15px;
    outline: none;
    font-size: 16px;
}
.cancelrevertPopup .formGroup input:focus{
	border-color: black;
}

.cancelrevertPopup .cancelrevertPopupBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cancelrevertPopup .cancelrevertPopupBtnArea .closecancelrevertPopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: #F8F5F1;
  color: black;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.cancelrevertPopup .cancelrevertPopupBtnArea .closecancelrevertPopup:hover {
  transition: 0.2s;
  background: #F4EEE8;
}
.cancelrevertPopup .cancelrevertPopupBtnArea .confirmcancelrevertPopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: var(--fourthColor);
  color: white;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.cancelrevertPopup .cancelrevertPopupBtnArea .confirmcancelrevertPopup:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

.cancelrevertPopupActive {
  top: 80px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}


.linkAttachmentPopup {
  position: fixed;
  z-index: 200;
  background: white;
  width: 700px;
  max-height: 70vh;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  overflow: hidden;
  padding: 40px;
  display: none;
}
.linkAttachmentPopup h2 {
  font-size: 22px;
  font-weight: 600;
}
.linkAttachmentPopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.linkAttachmentPopup form .formGroup {
  flex: 0 0 49.35%;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.linkAttachmentPopup form .formGroup label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}
.linkAttachmentPopup form .formGroup input {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0px 15px;
  font-size: 14px;
  outline: none;
  font-weight: 500;
  margin-top: 5px;
}
.linkAttachmentPopup form .formGroup input:focus {
  border: 1px solid #aaa;
}
.linkAttachmentPopup form .formGroup input::-moz-placeholder {
  color: #bbb;
}
.linkAttachmentPopup form .formGroup input::placeholder {
  color: #bbb;
}
.linkAttachmentPopup form .formBtnArea {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
}
.linkAttachmentPopup form .formBtnArea .closeLinkAttachementPopup {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primaryColor);
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.6705882353);
  margin-right: 20px;
}
.linkAttachmentPopup form .formBtnArea .closeLinkAttachementPopup:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.5647058824);
}
.linkAttachmentPopup form .formBtnArea .SubmitLinkAttachementPopup {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.linkAttachmentPopup form .formBtnArea .SubmitLinkAttachementPopup:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.linkAttachmentPopup form .formBtnArea .SubmitLinkAttachementPopup span {
  margin-left: 10px;
  font-size: 20px;
}


#dashboard {
  width: 100%;
}

.nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  background: white;
  z-index: 100;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
}
.nav .navLogo {
  float: left;
  height: 60px;
  width: 300px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav .navLogo img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.nav .navLogo h1 {
  font-size: 22px;
  font-weight: 500;
  color: black;
}

.formSection {
  width: 100%;
  background: var(--thirdColor);
  position: relative;
  z-index: 0;
  height: calc(100vh - 60px);
  margin-top: 60px;
}
@media (max-width: 480px) {
  .formSection {
    margin-top: 60px;
    padding: 50px 0px;
    min-height: calc(100vh - 60px);
  }
}
.formSection .formSectionMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 80px);
}
@media (max-width: 480px) {
  .formSection .formSectionMain {
    justify-content: flex-start;
    align-items: flex-start;
    min-height: inherit;
  }
}
.formSection .formSectionMain .form {
  width: 500px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .formSection .formSectionMain .form {
    width: 100%;
    padding: 20px;
  }
}
.formSection .formSectionMain .form h1 {
  font-size: 25px;
  font-weight: 600;
}
.formSection .formSectionMain .form form {
  width: 100%;
  margin-top: 20px;
}
.formSection .formSectionMain .form form .formGroup {
  width: 100%;
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}
.formSection .formSectionMain .form form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.formSection .formSectionMain .form form .formGroup input {
  width: 100%;
  height: 45px;
  margin-top: 5px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  background: var(--thirdColor);
  caret-color: var(--primaryColor);
}
.formSection .formSectionMain .form form .formGroup input:focus {
  border: 1px solid #ccc;
}
.formSection .formSectionMain .form form .formGroup .passwordinput {
  letter-spacing: 15px;
  padding-right: 40px;
}
.formSection .formSectionMain .form form .formGroup .formPassword {
  position: relative;
}
.formSection .formSectionMain .form form .formGroup .formPassword .togglePassword {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: var(--primaryColor);
  font-size: 20px;
}
.formSection .formSectionMain .form form .forgtPsd {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.formSection .formSectionMain .form form .forgtPsd a {
  font-size: 14px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  text-align: right;
}
.formSection .formSectionMain .form form .forgtPsd a:hover {
  text-decoration: underline;
}
.formSection .formSectionMain .form form button {
  width: 100%;
  margin-top: 30px;
  padding: 14px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 15px;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0px 5px 20px -2px rgba(0, 76, 255, 0.235);
  transition: 0.3s;
}
.formSection .formSectionMain .form form button:hover {
  box-shadow: none;
  transition: 0.3s;
  background: var(--secondaryColor);
}
.formSection .formSectionMain .form form .disabledBtn {
  cursor: not-allowed;
  opacity: 0.6;
}
.formSection .formSectionMain .form form .loginBottomLine {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 500;
}
.formSection .formSectionMain .form form .loginBottomLine::after {
  position: absolute;
  content: "";
  width: 40%;
  height: 1px;
  left: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.196), rgb(0, 0, 0));
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
}
.formSection .formSectionMain .form form .loginBottomLine::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 1px;
  right: 0;
  background: linear-gradient(45deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.196), rgba(255, 255, 255, 0));
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
}
.formSection .formSectionMain .form form .loginBottomLink {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.formSection .formSectionMain .form form .loginBottomLink p {
  font-size: 14px;
  margin-top: 0;
  font-weight: 500;
  text-align: center;
  opacity: 1;
}
.formSection .formSectionMain .form form .loginBottomLink p a {
  text-decoration: none;
  color: var(--primaryColor);
}

.staffListMenu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 350px;
  height: calc(100vh - 80px);
  background: white;
  z-index: 150;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .staffListMenu {
    width: 95%;
    top: 10px;
    height: calc(100vh - 2.5%);
  }
}
.staffListMenu .staffListMenuHead {
  width: 100%;
  height: 50px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  padding: 0px 20px;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.staffListMenu .staffListMenuHead span {
  font-size: 16px;
  margin-right: 15px;
  color: var(--secondaryTextColor);
}
.staffListMenu .staffListMenuHead h2 {
  font-size: 16px;
  font-weight: 500;
}
.staffListMenu .staffListMenuBody {
  height: calc(100vh - 150px);
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  padding: 10px 0px;
  justify-content: space-between;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox:nth-child(1) h3 {
  border-top: none;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox h3 {
  font-size: 16px;
  padding: 10px 20px;
  background: white;
  font-weight: 500;
  border-top: 1px solid #ededed;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  height: 50px;
  background: white;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch input {
  width: calc(100% - 50px);
  height: 40px;
  background: var(--thirdColor);
  border: 1px solid var(--thirdColor);
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: black;
  font-weight: 500;
  border-radius: 10px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch input::-moz-placeholder {
  color: #ccc;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch input::placeholder {
  color: #ccc;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch input:focus {
  border: 1px solid #eee;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch button {
  width: 40px;
  height: 40px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffSearch button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList {
  width: 100%;
  background: white;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow-y: auto;
  padding-bottom: 20px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul {
  width: 100%;
  padding: 10px 20px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 10px 0px;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li::after {
  position: absolute;
  content: "";
  width: 105%;
  height: 100%;
  top: 0;
  left: -2.5%;
  transition: 0.2s;
  z-index: -1;
  border-radius: 10px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li:hover::after {
  transition: 0.2s;
  background: var(--thirdColor);
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li:nth-child(1) {
  margin-top: 0;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  max-height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li label span {
  font-size: 16px;
  color: green;
  margin-left: 10px;
  margin-bottom: -3px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primaryColor);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 8px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 8px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul li input:checked + label:before {
  background: var(--primaryColor);
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList .elseDesign {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList .elseDesign .elseDesignthumbnail {
  width: 100%;
  height: 150px;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList .elseDesign .elseDesignthumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList .elseDesign p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}
.staffListMenu .staffListMenuFooter {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0px 20px;
}
.staffListMenu .staffListMenuFooter .closeStaffListMenu {
  flex: 0 0 48%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 10px;
  background: #F8F5F1;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}
.staffListMenu .staffListMenuFooter .closeStaffListMenu:hover {
  transition: 0.2s;
  background: #F4EEE8;
}
.staffListMenu .staffListMenuFooter .SubmitStaffListMenu {
  flex: 0 0 48%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 10px;
  background: var(--primaryColor);
  font-weight: 500;
  cursor: pointer;
  color: white;
  transition: 0.2s;
}
.staffListMenu .staffListMenuFooter .SubmitStaffListMenu:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

.staffListMenuActive {
  width: 350px;
  height: calc(100vh - 80px);
  transition: 0.3s;
  right: 20px;
}
@media (max-width: 480px) {
  .staffListMenuActive {
    width: 95%;
    right: 2.5%;
    height: calc(100vh - 2.5%);
  }
}

.toasterPopup {
  position: fixed;
  z-index: 100;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  bottom: -110%;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--primaryColor);
  transition: 0.3s ease all;
}
@media (max-width: 480px) {
  .toasterPopup {
    max-width: 90%;
  }
}
.toasterPopup p {
  font-size: 14px;
  font-weight: 500;
  white-space: pre;
}

.toasterPopupActivity {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}

.canvas {
  width: 100%;
  min-height: 100vh;
  background: var(--thirdColor);
  float: right;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .canvas {
    width: 100%;
  }
}
.canvas .canvasHead {
  width: 100%;
  height: 60px;
  padding: 0px 2.5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: white;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0470588235);
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
}
@media (max-width: 480px) {
  .canvas .canvasHead {
    flex-wrap: nowrap;
  }
}
.canvas .canvasHead .navLogo {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasHead .navLogo img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasHead .navProfile {
  padding: 5px 10px;
  background: var(--thirdColor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .canvas .canvasHead .navProfile {
    display: none;
  }
}
.canvas .canvasHead .navProfile .navProfileThumbnail {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  background: #C8F2EF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasHead .navProfile .navProfileThumbnail img {
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .canvasHead .navProfile .navProfileContent {
  max-width: 200px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s;
}
.canvas .canvasHead .navProfile .navProfileContent h4 {
  font-size: 14px;
  font-weight: 600;
  max-height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .canvasHead .navProfile .navProfileContent p {
  font-size: 12px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.canvas .canvasHead .navSearch {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: 40px;
}
@media (max-width: 480px) {
  .canvas .canvasHead .navSearch {
    position: fixed;
    top: 60px;
    margin-left: 0;
    padding: 5px 2.5%;
    background: white;
    width: 100%;
    left: 0;
  }
}
.canvas .canvasHead .navSearch input {
  width: 350px;
  height: 40px;
  background: var(--thirdColor);
  border: 1px solid var(--thirdColor);
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: black;
  font-weight: 500;
  border-radius: 10px;
}
.canvas .canvasHead .navSearch input::-moz-placeholder {
  color: #ccc;
}
.canvas .canvasHead .navSearch input::placeholder {
  color: #ccc;
}
.canvas .canvasHead .navSearch input:focus {
  border: 1px solid #eee;
}
.canvas .canvasHead .navSearch button {
  width: 40px;
  height: 40px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
  margin-left: 10px;
}
.canvas .canvasHead .navSearch button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasHead .navBar {
  display: none;
}
@media (max-width: 480px) {
  .canvas .canvasHead .navBar {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.canvas .canvasHead .navBar .navBarBox {
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.canvas .canvasHead .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: black;
  border-radius: 2px;
}
.canvas .canvasHead .navBar .navBarBox span:nth-child(1) {
  margin-top: 0;
}
.canvas .canvasBody {
  width: calc(100% - 300px);
  padding: 0px 2.5% 20px 2.5%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  margin-left: 300px;
}
@media (max-width: 480px) {
  .canvas .canvasBody {
    padding-bottom: 60px;
  }
}
.canvas .canvasBody .canvasBodyHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.canvas .canvasBody .canvasBodyHead .canvasBreadcrumbs {
  width: 50%;
  padding: 10px 0;
  display: flex;
  overflow-y: auto;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasBodyHead .canvasBreadcrumbs {
    width: 100%;
  }
}
.canvas .canvasBody .canvasBodyHead .canvasBreadcrumbs a {
  text-decoration: none;
  font-size: 12px;
  color: var(--primaryColor);
  font-weight: 500;
  white-space: pre;
}
.canvas .canvasBody .canvasBodyHead .canvasBreadcrumbs a:hover {
  color: black;
}
.canvas .canvasBody .canvasBodyHead .canvasBreadcrumbs span {
  margin: 0px 5px;
  font-size: 12px;
  color: var(--secondaryTextColor);
}
.canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 {
    position: inherit;
    width: auto;
  }
}
.canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 .addBtn {
  padding: 10px 18px;
  background: var(--primaryColor);
  color: white;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 .addBtn {
    position: fixed;
    bottom: 10px;
    left: 2.5%;
    width: 95%;
    z-index: 10;
    padding: 14px 18px;
  }
}
.canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 .addBtn:hover {
  background: var(--secondaryColor);
  transition: 0.2s;
}
.canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 .addBtn span {
  margin-right: 10px;
  font-size: 18px;
}
.canvas .canvasBody .canvasSubTitle {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.canvas .canvasBody .canvasSubTitle:nth-child(1) {
  margin-top: 20px;
}
.canvas .canvasBody .canvasSubTitle span {
  font-size: 16px;
  margin-right: 10px;
}
.canvas .canvasBody .canvasSubTitle h1 {
  font-size: 18px;
  font-weight: 500;
}
.canvas .canvasBody .canvasBodyTitle {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .canvasBody .canvasBodyTitle h1 {
  font-size: 25px;
  font-weight: 500;
}
.canvas .canvasBody .canvasBodyTitle .titleBtnArea {
  display: flex;
  align-items: center;
}
.canvas .canvasBody .canvasBodyTitle .titleBtnArea .addBtn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  background: var(--primaryColor);
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}
.canvas .canvasBody .canvasBodyTitle .titleBtnArea .addBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}

.canvas .canvasBody .formHead .formHeadBtnarea {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.canvas .canvasBody .formHead .formHeadBtnarea .updateLinkBtn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .formHead .formHeadBtnarea .updateLinkBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .formHead .formHeadBtnarea .updateLinkBtn span {
  margin-left: 10px;
  font-size: 20px;
}

.canvas .canvasBody .canvasBodyTitle .canvasBodyTitleSearch{
	width: 400px;
	height: 40px;
	display: flex;
	justify-content :space-between;
	align-items: center;
}
.canvas .canvasBody .canvasBodyTitle .canvasBodyTitleSearch input{
	width: calc(100% - 50px);
	height: 100%;
	border: 1px solid #eee;
	outline: none;
	background: white;
	padding: 0px 15px;
	border-radius: 5px;
	font-size: 16px;
}
.canvas .canvasBody .canvasBodyTitle .canvasBodyTitleSearch button{
	width: 40px;
	height: 40px;
	background: var(--primaryColor);
	display :flex;
	justify-content: center;
	align-items :center;
	font-size: 20px;
	color: white;
	border: none;
	outline :none;
	cursor: pointer;
	border-radius :5px;
	transition: .3s;
}
.canvas .canvasBody .canvasBodyTitle .canvasBodyTitleSearch button:hover{
	transition: .3s;
	opacity: .7;
}

.canvas .canvasBody .canvasTilsList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .canvasTilsList::after {
  content: "";
  height: 0;
  width: 32%;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox {
  flex: 0 0 32%;
  margin-top: 20px;
  background: white;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.039);
  text-decoration: none;
  transition: 0.2s;
  position: relative;
  cursor: pointer;
  z-index: 0;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasTilsList .canvasTilsBox {
    flex: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox:hover {
  box-shadow: none;
  transition: 0.2s;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox:nth-child(1) .canvasTilsBoxIcon {
  background: #E8F9FD;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox:nth-child(2) .canvasTilsBoxIcon {
  background: #FEF9EF;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox:nth-child(3) .canvasTilsBoxIcon {
  background: #DBF6E9;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .canvasTilsBoxIcon {
  width: 100px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E8F9FD;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasTilsList .canvasTilsBox .canvasTilsBoxIcon {
    width: 50px;
    padding: 10px;
  }
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .canvasTilsBoxIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .canvasTilsBoxContent {
  width: calc(100% - 120px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasTilsList .canvasTilsBox .canvasTilsBoxContent {
    width: 100%;
    margin-top: 20px;
  }
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .canvasTilsBoxContent h2 {
  font-size: 20px;
  font-weight: 600;
  color: black;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasTilsList .canvasTilsBox .canvasTilsBoxContent h2 {
    font-size: 18px;
  }
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .canvasTilsBoxContent p {
  font-size: 14px;
  color: var(--secondaryTextColor);
  margin-top: 10px;
  display: flex;
  font-weight: 500;
  align-items: center;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .canvasTilsBoxContent p span {
  margin-left: 10px;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction {
  width: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction {
    width: 100%;
    margin-top: 20px;
    justify-content: flex-start;
  }
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileAssignBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #009DAE;
  cursor: pointer;
  transition: 0.2s;
  z-index: 1;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileAssignBtn {
    margin-right: 10px;
  }
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileAssignBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileAssignBtn span {
  font-size: 16px;
  color: white;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileEditBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00BD56;
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileEditBtn {
    margin-right: 10px;
  }
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileEditBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileEditBtn span {
  font-size: 16px;
  color: white;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileDeleteBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EB1D36;
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileDeleteBtn {
    margin-right: 10px;
  }
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileDeleteBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .canvasTilsList .canvasTilsBox .tileAction .tileDeleteBtn span {
  font-size: 16px;
  color: white;
}
.canvas .canvasBody .tileSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .tileSection::after {
  content: "";
  height: 0;
  width: 32%;
}
.canvas .canvasBody .tileSection .tileBox {
  text-decoration: none;
  flex: 0 0 32%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #fff;
  transition: 0.3s;
	position:relative;
}
.canvas .canvasBody .tileSection .tileBox:hover {
  border: 1px solid #ccc;
  transition: 0.3s;
}
.canvas .canvasBody .tileSection .tileBox h2 {
  font-size: 22px;
  font-weight: 600;
  color: black;
}
.canvas .canvasBody .tileSection .tileBox span {
  color: black;
  margin-top: 15px;
  display: flex;
  opacity: 0.7;
}

.canvas .canvasBody .tileSection .tileBox h3{
	font-size:0.7rem;
	font-weight:600;
	background:#3fbd3fe0;
	height:1.5rem;
	width:1.5rem;
	display:flex;
	align-items:center;
	justify-content:center;
	right:-5%;
	top:-12%;
	color:white;
	border-radius:50%;
	position:absolute;
}

.canvas .canvasBody .tableWraper {
  width: 100%;
  margin-top: 20px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow-x: auto;
  max-height: 100%;
}
.canvas .canvasBody .tableWraper::after {
  position: absolute;
  content: "";
  top: 0;
}

.canvas .canvasBody .tableWraper .tableWraperHead{
	width: 100%;
	display: flex;
	column-gap: 20px;
	row-gap: 10px;
	flex-wrap: wrap;
	margin-bottom :10px;
	align-items: flex-end;
}
.canvas .canvasBody .tableWraper .tableWraperHead .filterArea{
	display :flex;
	align-items :flex-start;
}
.canvas .canvasBody .filterArea .formGroup{
	width: 200px;
	display :flex;
	flex-direction :column;
	gap :5px;
}
.canvas .canvasBody  .filterArea .formGroup select{
	width: 100%;
	height: 30px;
	padding: 0px 10px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #ccc;
	outline: none;
	border-radius: 5px;
}


.date-range-container {
	display: flex;
	gap: 10px;
}
.ui-datepicker {
	font-size: 14px;
}

.daterangepicker .drp-buttons .btn{
	background: var(--primaryColor);
	color: white;
	border: none;
	outline: none;
	font-weight :500;
}
.daterangepicker .drp-buttons .cancelBtn{
	background: #a3a3a3;
	font-weight :500;
}

.canvas .canvasBody  .filterArea .formGroup label {
  font-size: 12px;
}
@media (max-width: 600px) {
.canvas .canvasBody  .filterArea .formGroup label {
    flex: 100%;
  }
}
.canvas .canvasBody .filterArea .formGroup input {
  width: 100%;
  height: 30px;
  padding: 0px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  font-size: 14px;
}
@media (max-width: 600px) {
 .canvas .canvasBody .filterArea .formGroup input {
    flex: 100%;
  }
}
.canvas .canvasBody  .filterArea .formGroup input:focus {
  border: 1px solid #000;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown {
  width: 100%;
  position: relative;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown input {
  width: 100%;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup {
  position: absolute;
  width: 100%;
  background: white;
  border-radius: 5px;
  border: 1px solid #ddd;
  z-index: 200;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup .addNewPrductBtn {
  width: 100%;
  background: rgba(238, 238, 238, 0.4784313725);
  padding: 7px 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup .addNewPrductBtn i {
  color: green;
  font-size: 20px;
  margin-right: 10px;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul li {
  list-style: none;
  padding: 7px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul li:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.4078431373);
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound {
  width: 100%;
  padding: 20px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound .resultNotFoundThumbnail {
  width: 50px;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound .resultNotFoundThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #7d7d7d;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopupUp {
  top: 100%;
  bottom: inherit;
}
.canvas .canvasBody  .filterArea .formGroup .customeSingleDropDown .customeSingleDropDownPopupDown {
  bottom: 100%;
  top: inherit;
}
.canvas .canvasBody  .filterArea .exportBtn{
	height: 30px;
	padding :0px 15px;
	background :#295F98;
	color: white;
	font-size: 14px;
	cursor: pointer;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items :center;
	transition: .3s;
}
.canvas .canvasBody  .filterArea .exportBtn:hover{
	transition: .3s;
	opacity: .7;
}


.canvas .canvasBody .tableWraper .tableSearch{
	width: 400px;
	display :flex;
	align-items: center;
	justify-content: space-between;
	/*margin-bottom: 10px;*/
}
.canvas .canvasBody .tableWraper .tableSearch input{
  width: calc(100% - 50px);
  height: 40px;
  background: var(--thirdColor);
  border: 1px solid var(--thirdColor);
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: black;
  font-weight: 500;
  border-radius: 10px;
}
.canvas .canvasBody .tableWraper .tableSearch input::-moz-placeholder {
  color: #ccc;
}
.canvas .canvasBody .tableWraper .tableSearch input::placeholder {
  color: #ccc;
}
.canvas .canvasBody .tableWraper .tableSearch input:focus {
  border: 1px solid #eee;
}
.canvas .canvasBody .tableWraper .tableSearch button {
  width: 40px;
  height: 40px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
  margin-left: 10px;
}
.canvas .canvasBody .tableWraper .tableSearch button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasBody .tableWraper table {
  width: 100%;
  position: relative;
}
.canvas .canvasBody .tableWraper table thead {
  width: 100%;
  background: var(--thirdColor);
}
.canvas .canvasBody .tableWraper table thead tr {
  width: 100%;
  display: table-row;
  outline: 0;
}
.canvas .canvasBody .tableWraper table thead tr th {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  top: 0;
  padding: 8px;
  position: sticky;
  z-index: 20;
  background: var(--thirdColor) !important;
}
.canvas .canvasBody .tableWraper table thead tr th:nth-child(1) {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.canvas .canvasBody .tableWraper table thead tr th:nth-last-child(1) {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.canvas .canvasBody .tableWraper table thead tr th label {
  display: flex;
  cursor: pointer;
  white-space: pre;
}
.canvas .canvasBody .tableWraper table thead tr th label input {
  display: none;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle {
  position: relative;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle p {
  white-space: pre;
  margin-right: 40px;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle .tabletitleDropDown {
  position: absolute;
  bottom: 0;
  right: 0;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle .tabletitleDropDown .tabletitleDropDownBtn {
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.2s;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle .tabletitleDropDown .tabletitleDropDownBtn:hover {
  background: white;
  transition: 0.2s;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle .tabletitleDropDown .tabletitleDropDownBtn span {
  font-size: 12px;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle .tabletitleDropDown .tabletitleDropDownPopup {
  position: absolute;
  top: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.034);
  z-index: 23;
  padding: 10px 0px;
  min-width: 180px;
  border: 1px solid #eee;
  right: 0;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle .tabletitleDropDown .tabletitleDropDownPopup ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle .tabletitleDropDown .tabletitleDropDownPopup ul li {
  list-style: none;
  font-size: 14px;
  padding: 8px 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}
.canvas .canvasBody .tableWraper table thead tr th .tabletitle .tabletitleDropDown .tabletitleDropDownPopup ul li:hover {
  transition: 0.2s;
  background: var(--thirdColor);
}
.canvas .canvasBody .tableWraper table thead tr .resizing {
  cursor: col-resize;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.canvas .canvasBody .tableWraper table tbody {
  width: 100%;
}
.canvas .canvasBody .tableWraper table tbody tr:nth-child(1) td {
  border-top: 1px solid white;
}
.canvas .canvasBody .tableWraper table tbody tr td {
  padding: 8px;
  font-size: 14px;
  border-top: 1px solid #ededed;
  position: relative;
}
.canvas .canvasBody .tableWraper table tbody tr td p {
  white-space: pre;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableFileImg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DBF6E9;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableFileImg img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction {
  display: flex;
  align-items: center;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableAssignBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #009DAE;
  cursor: pointer;
  transition: 0.2s;
  margin-right: 10px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableAssignBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableAssignBtn span {
  font-size: 16px;
  color: white;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableEditBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00BD56;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 10px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableEditBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableEditBtn span {
  font-size: 16px;
  color: white;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableDeleteBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EB1D36;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 10px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableDeleteBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableDeleteBtn span {
  font-size: 16px;
  color: white;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableViewBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 10px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableViewBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableViewBtn span {
  font-size: 16px;
  color: white;
}

.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableCancelBtn {
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c77405;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 10px;
	padding: 0px 10px;
	text-align: center;
	color: white;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableCancelBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableRevertBtn {
  height: 30px;
	padding: 0px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #41644A;
  cursor: pointer;
  text-decoration: none;
	color: white;
  transition: 0.2s;
  margin-right: 10px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableRevertBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableCancelRevertBtn {
  height: 30px;
	padding: 0px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #41644A;
  cursor: pointer;
  text-decoration: none;
	color: white;
  transition: 0.2s;
  margin-right: 10px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableCancelRevertBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableTextarea {
  min-width: 300px;
  display: flex;
  justify-content: space-between;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableTextarea textarea {
  width: calc(100% - 50px);
  height: 50px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableTextarea textarea:focus {
  border: 1px solid var(--primaryColor);
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableTextarea input {
  width: calc(100% - 50px);
  height: 35px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableTextarea input:focus {
  border: 1px solid var(--primaryColor);
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableTextarea button {
  width: 35px;
  height: 35px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableTextarea button span {
  font-size: 16px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableTextarea button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasBody .tableWraper table .allwaysFreeze {
  position: sticky;
  background-color: var(--thirdColor);
  z-index: 21;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  left: -20px;
}
.canvas .canvasBody .tableWraper table .freezeBox1Active {
  position: sticky;
  background-color: white;
  z-index: 21;
  width: 200px;
  min-width: 150px;
  max-width: 200px;
  left: 30px;
}
.canvas .canvasBody .tableWraper table .freezeBox2Active {
  position: sticky;
  background-color: white;
  z-index: 21;
  width: 200px;
  min-width: 150px;
  max-width: 200px;
  left: 180px;
}
.canvas .canvasBody .tableWraper table .selectedCheckbox {
  background-color: #EEF2FF;
  border: 1px solid #CDDEFF !important;
  position: sticky;
  left: 0;
}
.canvas .canvasBody .tableWraper table .hoverColonne {
  border: 1px solid #CDDEFF !important;
  background: rgba(238, 242, 255, 0.4509803922);
}
.canvas .canvasBody .tableWraper .sckelly {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 55px;
  z-index: 12;
  padding: 0px 20px;
  background: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.canvas .canvasBody .tableWraper .sckelly .sckellyLoader {
  flex: 100%;
  position: relative;
  background-color: #fff !important;
  height: 60px;
  margin-top: 0px;
  overflow: hidden;
}
.canvas .canvasBody .tableWraper .sckelly .sckellyLoader:nth-child(odd) {
  background-color: #fff !important;
}
.canvas .canvasBody .tableWraper .sckelly .sckellyLoader::after {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: rgba(238, 238, 238, 0.3215686275);
  animation: loading 1.5s infinite;
}
@keyframes loading {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.canvas .canvasBody .tableWraper .skellytext {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 13;
  padding-top: 30px;
}
.canvas .canvasBody .tableWraper .skellytext h2 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.canvas .canvasBody .tableWraper .skellytext h2 span {
  position: relative;
}
.canvas .canvasBody .tableWraper .skellytext h2 span:nth-child(1) {
  animation: bounsing1 0.5s infinite;
}
.canvas .canvasBody .tableWraper .skellytext h2 span:nth-child(2) {
  animation: bounsing2 0.7s infinite;
}
.canvas .canvasBody .tableWraper .skellytext h2 span:nth-child(3) {
  animation: bounsing3 0.9s infinite;
}
@keyframes bounsing1 {
  0% {
    top: 0px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 0px;
  }
}
@keyframes bounsing2 {
  0% {
    top: 0px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 0px;
  }
}
@keyframes bounsing3 {
  0% {
    top: 0px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 0px;
  }
}
.canvas .canvasBody .tableWraper .elseDesign {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
}
@media (max-width: 480px) {
  .canvas .canvasBody .tableWraper .elseDesign {
    height: 400px;
  }
}
.canvas .canvasBody .tableWraper .elseDesign .elseDesignthumbnail {
  width: 200px;
}
.canvas .canvasBody .tableWraper .elseDesign .elseDesignthumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .tableWraper .elseDesign p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}
.canvas .canvasBody .excelSheet {
  height: calc(100vh - 250px);
}
/**.canvas .canvasBody .pagination {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .canvas .canvasBody .pagination {
    flex-direction: column;
  }
}
.canvas .canvasBody .pagination .paginationColumn1 {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .canvas .canvasBody .pagination .paginationColumn1 {
    width: 100%;
  }
}
.canvas .canvasBody .pagination .paginationColumn1 p {
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}
.canvas .canvasBody .pagination .paginationColumn1 select {
  width: 100px;
  height: 35px;
  border: 1px solid #eee;
  outline: none;
  border-radius: 10px;
  background: white;
  padding: 0px 15px;
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .pagination .paginationColumn2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  .canvas .canvasBody .pagination .paginationColumn2 {
    width: 100%;
    margin-top: 10px;
  }
}
.canvas .canvasBody .pagination .paginationColumn2 ul {
  width: 100%;
  display: flex;
  align-items: center;
}
.canvas .canvasBody .pagination .paginationColumn2 ul li {
  list-style: none;
}
.canvas .canvasBody .pagination .paginationColumn2 ul li:not(:last-child) a {
  margin: 5px;
}
.canvas .canvasBody .pagination .paginationColumn2 ul li:nth-last-child(1) a {
  margin-left: 5px;
}
.canvas .canvasBody .pagination .paginationColumn2 ul li a {
  text-decoration: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: white;
  font-size: 14px;
  color: black;
  font-weight: 500;
  transition: 0.2s;
}
.canvas .canvasBody .pagination .paginationColumn2 ul li a span {
  font-size: 20px;
}
.canvas .canvasBody .pagination .paginationColumn2 ul li a:hover {
  transition: 0.2s;
  background: #E4FBFF;
}
.canvas .canvasBody .pagination .paginationColumn2 ul li .paginationActive {
  background: var(--primaryColor);
  color: white;
}**/
.canvas .canvasBody .formWraper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .formWraper .formWraperBox {
  margin-top: 20px;
  background: white;
  border-radius: 10px;
  padding: 0px 20px 20px 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm {
  width: 100%;
  margin-top: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .drag-file-area {
  border: 2px dashed #ccc;
  border-radius: 20px;
  margin: 10px 0 15px;
  padding: 30px 50px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .drag-file-area:hover {
  border: 2px dashed var(--primaryColor);
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .drag-file-area .upload-icon {
  font-size: 50px;
  color: var(--primaryColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .drag-file-area h3 {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
  color: black;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .drag-file-area label {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 18px;
  color: var(--secondaryTextColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .drag-file-area label .browse-files {
  margin-top: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .drag-file-area label .browse-files-text {
  color: var(--primaryColor);
  font-weight: 600;
  margin-right: 5px;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .drag-file-area .default-file-input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .cannot-upload-message {
  background-color: #FFD1D1;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin: 5px 0;
  padding: 10px 20px;
  border-radius: 10px;
  color: #FF1E00;
  font-weight: 500;
  display: none;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .cannot-upload-message span {
  font-size: 18px;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .cannot-upload-message .cancel-alert-button {
  margin-left: auto;
  padding-right: 0px;
  background: white;
  padding-left: 0 !important;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 16px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .cannot-upload-message span, .canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .upload-button-icon {
  padding-right: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .cannot-upload-message span:last-child {
  padding-left: 20px;
  cursor: pointer;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .file-block {
  color: var(--primaryColor);
  background-color: var(--thirdColor);
  transition: all 1s;
  width: 100%;
  position: relative;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 15px;
  padding: 10px 20px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .file-info {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .file-icon {
  margin-right: 10px;
  font-size: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .file-name, .canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .file-size {
  padding: 0 3px;
  font-weight: 500;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .remove-file-icon {
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: white;
  font-size: 16px;
  color: #FF1E00;
  transition: 0.2s;
  cursor: pointer;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .remove-file-icon:hover {
  color: white;
  background: #FF1E00;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .progress-bar {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 0;
  height: 100%;
  border-radius: 10px;
  z-index: -1;
  background-color: rgba(75, 181, 67, 0.1803921569);
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .upload-button {
  padding: 10px 22px;
  background: var(--primaryColor);
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .upload-button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .excelFileUploadForm .upload-button span {
  font-size: 16px;
  margin-right: 10px;
  padding-right: 0px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .canvas .canvasBody .formWraper .formWraperBox form .formGroup {
    flex: 100%;
  }
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup input {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 20px;
  background: var(--thirdColor);
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup input:focus {
  border: 1px solid #ccc;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .assignExcelBtn {
  width: 200px;
  display: flex;
  align-items: center;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .assignExcelBtn input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .assignExcelBtn label {
  position: relative;
  cursor: pointer;
  width: 100%;
  background: #3CCF4E;
  border-radius: 10px;
  padding: 12px 20px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .assignExcelBtn label:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .assignExcelBtn label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #fff;
  background: #fff;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 5px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .assignExcelBtn input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 29px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .assignExcelBtn input:checked + label:before {
  background: #3CCF4E;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 45px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownInput {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownInput input {
  cursor: pointer;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup {
  position: absolute;
  width: 100%;
  background: white;
  border-radius: 10px;
  top: 50px;
  left: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.059);
  padding: 10px;
  z-index: 1;
  display: none;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch input {
  margin-top: 0;
  width: 100%;
  height: 40px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch input::-moz-placeholder {
  color: #ccc;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch input::placeholder {
  color: #ccc;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch button {
  width: 40px;
  height: 40px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul li {
  list-style: none;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul li:hover {
  background: var(--thirdColor);
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul .dropDownPopuplistMenuActive {
  background: var(--secondaryColor);
  color: white;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul .dropDownPopuplistMenuActive:hover {
  background: var(--secondaryColor);
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist .elseDesign {
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist .elseDesign .elseDesignthumbnail {
  width: 150px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist .elseDesign .elseDesignthumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist .elseDesign p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopupDown {
  top: 50px;
  display: block;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopupUp {
  top: inherit;
  bottom: -50px;
  display: block;
}


.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown {
  width: 100%;
  position: relative;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown input {
  width: 100%;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup {
  position: absolute;
  width: 100%;
  background: white;
  border-radius: 5px;
  border: 1px solid #ddd;
  z-index: 200;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .addNewPrductBtn {
  width: 100%;
  background: rgba(238, 238, 238, 0.4784313725);
  padding: 7px 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .addNewPrductBtn i {
  color: green;
  font-size: 20px;
  margin-right: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul li {
  list-style: none;
  padding: 7px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul li:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.4078431373);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound {
  width: 100%;
  padding: 20px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound .resultNotFoundThumbnail {
  width: 50px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound .resultNotFoundThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #7d7d7d;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopupUp {
  top: 100%;
  bottom: inherit;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .customeSingleDropDown .customeSingleDropDownPopupDown {
  bottom: 100%;
  top: inherit;
}

.canvas .canvasBody .formWraper .formWraperBox form .formGroup .formPassword {
  position: relative;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroup .formPassword .togglePassword {
  position: absolute;
  right: 5%;
  top: 15px;
  font-size: 22px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupTextarea {
  flex: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupTextarea label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupTextarea textarea {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  padding: 10px 20px;
  background: var(--thirdColor);
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupTextarea textarea:focus {
  border: 1px solid #ccc;
}
.canvas .canvasBody .formWraper .formWraperBox form .formBtnArea {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #ededed;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.canvas .canvasBody .formWraper .formWraperBox form .formBtnArea button {
  padding: 10px 25px;
  background: var(--primaryColor);
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  align-items: center;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formBtnArea button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .formBtnArea button span {
  margin-left: 10px;
  font-size: 18px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagArea {
  flex: 100%;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagArea .formTagBox {
  padding: 8px 15px;
  border-radius: 10px;
  margin-top: 10px;
  background: var(--secondaryColor);
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagArea .formTagBox p {
  font-size: 14px;
  color: white;
  font-weight: 500;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagArea .formTagBox .closeFormTagBox {
  margin-left: 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.505);
  width: 25px;
  height: 25px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagArea .formTagBox .closeFormTagBox:hover {
  background: white;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagArea .formTagBox .closeFormTagBox span {
  font-size: 16px;
  color: #FF1E00;
}
.canvas .canvasBody .formWraper .formWraperBox form .dummyDiv {
  flex: 0 0 30%;
  height: 0;
}
.canvas .canvasBody .tableMenu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .canvas .canvasBody .tableMenu {
    display: none;
  }
}
.canvas .canvasBody .tableMenu .tableMenuBox {
  position: relative;
}
.canvas .canvasBody .tableMenu .tableMenuBox .tableMenuBoxBtn {
  padding: 8px 15px;
  border-radius: 5px;
  background: white;
  font-size: 14px;
  white-space: pre;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}
.canvas .canvasBody .tableMenu .tableMenuBox .tableMenuBoxBtn:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
  color: white;
}
.canvas .canvasBody .tableMenu .tableMenuBox .tableMenuBoxDorpDown {
  position: absolute;
  background: white;
  top: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.034);
  z-index: 22;
  padding: 10px 0px;
  min-width: 180px;
  display: none;
  border: 1px solid #eee;
}
.canvas .canvasBody .tableMenu .tableMenuBox .tableMenuBoxDorpDown ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .tableMenu .tableMenuBox .tableMenuBoxDorpDown ul li {
  list-style: none;
}
.canvas .canvasBody .tableMenu .tableMenuBox .tableMenuBoxDorpDown ul li a {
  text-decoration: none;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: black;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.canvas .canvasBody .tableMenu .tableMenuBox .tableMenuBoxDorpDown ul li a:hover {
  transition: 0.2s;
  background: var(--thirdColor);
}
.canvas .canvasBody .tableFooterTab {
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: auto;
  margin-top: 5px;
}
.canvas .canvasBody .tableFooterTab .tableFooterTabBox {
  padding: 10px 20px;
  background: white;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 10px;
  white-space: pre;
  transition: 0.2s;
}
.canvas .canvasBody .tableFooterTab .tableFooterTabBox:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
  color: white;
}
.canvas .canvasBody .tableFooterTab .tableFooterTabBoxActive {
  background: var(--secondaryColor);
  color: white;
}
.canvas .canvasBody .formSection {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  height: auto !important;
}
.canvas .canvasBody .formSection form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .formSection form .reviewDetailsList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox {
  width: 100%;
  background: white;
  padding: 40px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 5px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  width: 100%;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox {
  flex: 0 0 49.35%;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox p {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox p:nth-of-type(1) {
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  display: flex;
	align-items: center;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6:nth-of-type(1) {
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 .icon {
  font-size: 16px;
  margin-right: 10px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 a {
  text-decoration: none;
  color: var(--primaryColor);
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 .linkInputArea {
	width: 100%;
	display :flex;
	align-items: center;
	justify-content: space-between;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 .linkInputArea .linkInput{
	width: calc(100% - 45px);
	height: 35px;
	padding: 0px 10px;
	background: none;
	border: 1px solid #ccc;
	outline: none;
	font-size: 14px;
	border-radius:5px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 .linkInputArea .linkInput:focus{
	border :1px solid black;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 .linkInputArea .linkInputCopyBtn{
	width: 35px;
	height: 35px;
	display :flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	background: #009dae;
	color: white;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 .linkInputArea .linkInputCopyBtn .copiedAlert{
	position: absolute;
    padding: 6px 10px;
    border-radius: 5px;
    background: #c9d4ff;
    font-size: 12px;
	font-weight:600;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
	color: black;
	display: none;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 .linkInputArea .linkInputCopyBtn .copiedAlert::after{
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
    background: #c9d4ff;
	transform: rotate(45deg) translateX(-50%);
	border-radius: 2px;
	bottom: -5px;
	left:50%
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox h6 a:hover {
  text-decoration: underline;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .propertyNote {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .propertyNote li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  list-style: none;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .propertyNote li h4 {
  width: 35%;
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .propertyNote li h5 {
  width: 60%;
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .reviewDetailsDateList {
  width: 100%;
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .reviewDetailsDateList .reviewDetailsDateSlot {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid var(--primaryColor);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  margin-right: 10px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .reviewDetailsDateList .reviewDetailsDateSlot p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--primaryColor);
  margin-top: 5px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .reviewDetailsDateList .reviewDetailsDateSlot span {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: black;
  margin-top: 5px;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .reviewDetailsDateList .reviewDetailsDateSlot span:nth-of-type(1) {
  margin-top: 0;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .reviewDetailsDateList .reviewDetailsDateSlotDetails {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .reviewDetailsDateList .reviewDetailsDateSlotDetails li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  list-style: none;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .reviewDetailsDateList .reviewDetailsDateSlotDetails li h4 {
  width: 200px;
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBox .reviewDetailsDateList .reviewDetailsDateSlotDetails li h5 {
  width: 500px;
  margin-left: 20px;
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFormBoxFullWidth {
  flex: 100%;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFooterBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFooterBtnArea .editPropertyBtn {
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.3s;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .reviewDetailsFooterBtnArea .editPropertyBtn:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  color: white;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .formBtnArea{
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap:1rem;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .formBtnArea .NextBtn{
	padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    background: var(--primaryColor);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.canvas .canvasBody .formSection form .reviewDetailsList .reviewDetailsBox .formBtnArea .NextBtn:hover{
    transition: 0.3s;
	opacity: .7;
}
.canvas .canvasBody .formSection form .formSectionBox {
  width: 100%;
  background: white;
  padding: 40px;
  border-radius: 5px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .formSection form .formSectionBox h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  width: 100%;
}
.canvas .canvasBody .formSection form .formSectionBox .discription {
  font-size: 14px;
  opacity: 0.7;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea input {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0px 15px;
  font-size: 14px;
  outline: none;
  font-weight: 500;
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea input:focus {
  border: 1px solid #aaa;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea input::-moz-placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea input::placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px 15px;
  font-size: 14px;
  outline: none;
  font-weight: 500;
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea textarea:focus {
  border: 1px solid #aaa;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea textarea::-moz-placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea textarea::placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea p {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 500;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-4 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-4 .formCheckboxTileBox {
  flex: 0 0 24%;
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-4 .formCheckboxTileBox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-4 .formCheckboxTileBox label {
  position: relative;
  cursor: pointer;
  width: 100%;
  border: 1.5px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  color: var(--primaryColor);
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-4 .formCheckboxTileBox label .icon span {
  font-size: 25px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-4 .formCheckboxTileBox label .text {
  font-size: 16px;
  margin-top: 5px;
  text-align: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-4 .formCheckboxTileBox input:checked + label {
  border: 1.5px solid var(--primaryColor);
  background: #c9d4ff;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-2 .formCheckboxTileBox {
  flex: 0 0 49.35%;
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-2 .formCheckboxTileBox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-2 .formCheckboxTileBox label {
  position: relative;
  cursor: pointer;
  width: 100%;
  border: 1.5px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primaryColor);
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-2 .formCheckboxTileBox label .icon span {
  font-size: 25px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-2 .formCheckboxTileBox label .text {
  font-size: 16px;
  margin-top: 5px;
  text-align: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-2 .formCheckboxTileBox input:checked + label {
  border: 1.5px solid var(--primaryColor);
  background: #c9d4ff;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	position:relative;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-3::after{
content:'';
height:0px;
width:32.5%;	
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-3 .formCheckboxTileBox {
  flex: 0 0 32.5%;
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-3 .formCheckboxTileBox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-3 .formCheckboxTileBox label {
  position: relative;
  cursor: pointer;
  width: 100%;
  border: 1.5px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primaryColor);
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-3 .formCheckboxTileBox label .icon span {
  font-size: 25px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-3 .formCheckboxTileBox label .text {
  font-size: 16px;
  margin-top: 5px;
  text-align: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupTextarea .formGroupCheckboxTile-3 .formCheckboxTileBox input:checked + label {
  border: 1.5px solid var(--primaryColor);
  background: #c9d4ff;
}
.canvas .canvasBody .formSection form .formSectionBox .linkBtn {
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--primaryColor);
  font-weight: 500;
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .formSectionBox .formAddressArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup {
  flex: 0 0 49.35%;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup input {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0px 15px;
  font-size: 14px;
  outline: none;
  font-weight: 500;
  margin-top: 15px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup input:focus {
  border: 1px solid #aaa;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup input::-moz-placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup input::placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .selectBox {
  position: relative;
  overflow: hidden;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .selectBox::after {
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--primaryColor);
  border-bottom: 2px solid var(--primaryColor);
  position: absolute;
  transform: rotate(-45deg);
  top: 45%;
  right: 15px;
  content: "";
  z-index: 98;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .selectBox select {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0px 15px;
  font-size: 14px;
  outline: none;
  font-weight: 500;
  -webkit-appearance: none;
  margin-top: 15px;
  position: relative;
  z-index: 99;
  background: none;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .selectBox select:focus {
  border: 1px solid #aaa;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .selectBox select::-moz-placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .selectBox select::placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .formGroupInputAddSection {
  width: 100%;
  position: relative;
  margin-top: 15px;
  height: 50px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .formGroupInputAddSection input {
  margin-top: 0px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .formGroupInputAddSection .formGroupInputAddBtnArea {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  height: 100%;
  padding-right: 3px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .formGroupInputAddSection .formGroupInputAddBtnArea button {
  height: 95%;
  width: 50px;
  font-size: 25px;
  background: white;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .formGroupInputAddSection .formGroupInputAddBtnArea button span {
  font-size: 25px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .formGroupInputAddSection .formGroupInputAddBtnArea .minusBtn {
  color: #ccc;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .formGroupInputAddSection .formGroupInputAddBtnArea .addBtn {
  color: var(--primaryColor);
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox {
  flex: 0 0 49.35%;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList {
  height: 50px;
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList input {
  width: 300px;
  margin-right: 20px;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0px 15px;
  font-size: 14px;
  outline: none;
  font-weight: 500;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList input:focus {
  border: 1px solid #aaa;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList input::-moz-placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList input::placeholder {
  color: #bbb;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList .formGroupCheckboxListBox {
  border: 1px solid var(--primaryColor);
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList .formGroupCheckboxListBox:nth-of-type(1) {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList .formGroupCheckboxListBox:nth-of-type(2) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList .formGroupCheckboxListBox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList .formGroupCheckboxListBox label {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 10px 30px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primaryColor);
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupCheckboxList .formGroupCheckboxListBox [type=radio]:checked + label {
  background: #c9d4ff;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupTickboxList{
	width: 100%;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupTickboxList .formGroupTickbox{
	display: block;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupTickboxList .formGroupTickbox input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupTickboxList .formGroupTickbox label {
  position: relative;
  cursor: pointer;
	padding: 7px 12px;
	border: 1.5px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
	    display: flex;
    align-items: center;
    justify-content: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupTickboxList .formGroupTickbox label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primaryColor);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
	border-radius: 5px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupTickboxList .formGroupTickbox  input:checked + label:before {
	background: var(--primaryColor);
}
.canvas .canvasBody .formSection form .formSectionBox .formGroupCheckbox .formGroupTickboxList .formGroupTickbox  input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
      top: 10px;
    left: 20px;
    width: 5px;
    height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}



.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown {
  width: 100%;
  position: relative;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown input {
  width: 100%;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup {
  position: absolute;
  width: 100%;
  background: white;
  border-radius: 5px;
  border: 1px solid #ddd;
  z-index: 200;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup .addNewPrductBtn {
  width: 100%;
  background: rgba(238, 238, 238, 0.4784313725);
  padding: 7px 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup .addNewPrductBtn i {
  color: green;
  font-size: 20px;
  margin-right: 10px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul li {
  list-style: none;
  padding: 7px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup ul li:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.4078431373);
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound {
  width: 100%;
  padding: 20px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound .resultNotFoundThumbnail {
  width: 50px;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound .resultNotFoundThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopup .resultNotFound p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #7d7d7d;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopupUp {
  top: 100%;
  bottom: inherit;
}
.canvas .canvasBody .formSection form .formSectionBox .formGroup .customeSingleDropDown .customeSingleDropDownPopupDown {
  bottom: 100%;
  top: inherit;
}





.canvas .canvasBody .formSection form .formSectionBox .addMoreBtnArea {
  width: 100%;
}
.canvas .canvasBody .formSection form .formSectionBox .addMoreBtnArea .addMoreBtn {
  padding: 12px 20px;
  border: 1px solid var(--primaryColor);
  font-size: 14px;
  font-weight: 500;
  color: var(--primaryColor);
  cursor: pointer;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .formSection form .formSectionBox .addMoreBtnArea .addMoreBtn:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.6705882353);
}
.canvas .canvasBody .formSection form .formSectionBox .addMoreBtnArea .addMoreBtn span {
  margin-left: 10px;
  font-size: 22px;
}
.canvas .canvasBody .formSection form .formSectionBox .formAddingArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .formSection form .formSectionBox .formAddingArea .formTemplate {
  width: 100%;
}
.canvas .canvasBody .formSection form .formSectionBox .formAddingArea .formTemplate .formTemplateBox {
  width: 100%;
  display: flex;
  align-items: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formAddingArea .formTemplate .formTemplateBox .removeBtn {
  height: 50px;
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(238, 238, 238, 0.6705882353);
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  border-radius: 5px;
  cursor: pointer;
  color: red;
  transition: 0.3s;
}
.canvas .canvasBody .formSection form .formSectionBox .formAddingArea .formTemplate .formTemplateBox .removeBtn:hover {
  transition: 0.3s;
  background: #eee;
  margin-top: 40px;
}
.canvas .canvasBody .formSection form .formSectionBox .formBtnArea {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.canvas .canvasBody .formSection form .formSectionBox .formBtnArea .cancelBtn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primaryColor);
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.canvas .canvasBody .formSection form .formSectionBox .formBtnArea .cancelBtn:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.6705882353);
}
.canvas .canvasBody .formSection form .formSectionBox .formBtnArea .backBtn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primaryColor);
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  border: 1px solid var(--primaryColor);
  margin-left: auto;
  margin-right: 20px;
}
.canvas .canvasBody .formSection form .formSectionBox .formBtnArea .backBtn:hover {
  transition: 0.3s;
  background: rgba(238, 238, 238, 0.6705882353);
}
.canvas .canvasBody .formSection form .formSectionBox .formBtnArea .NextBtn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formBtnArea .NextBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .formSection form .formSectionBox .formBtnArea .NextBtn span {
  margin-left: 10px;
  font-size: 20px;
}
.canvas .canvasBody .formSection form .formSectionBox .dummyDiv {
  flex: 0 0 49.35%;
  height: 0;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header {
  width: 100%;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  border: 1px solid #eee;
  border-radius: 10px 10px 0px 0px;
  margin-top: 20px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .previousRestrictionAlert{
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	left: 60px;
	z-index: 2;
	background: #FD8A8A;
	padding: 7px 15px;
	border-radius: 5px;
	display: none;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .previousRestrictionAlert::after{
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	transform: rotate(45deg) translateY(-50%);
	top: 45%;
	background: #FD8A8A;
	left: -7px;
	border-radius: 2px;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .previousRestrictionAlert p{
	font-size: 12px;
	color: white;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .prev-month {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(238, 238, 238, 0.6705882353);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: none;
  outline: none;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .prev-month:hover {
  transition: 0.3s;
  background: #eee;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .prev-month:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .prev-month span {
  font-size: 22px;
  color: #aaa;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .next-month {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(238, 238, 238, 0.6705882353);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: none;
  outline: none;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .next-month:hover {
  transition: 0.3s;
  background: #eee;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .next-month span {
  font-size: 22px;
  color: #aaa;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-header .calendar-month-year {
  display: flex;
  gap: 10px;
  font-weight: 500;
  font-size: 22px;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-week {
  width: 100%;
  display: flex;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-week .calendar-week-box {
  width: 14.2857142857%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px 10px;
  font-weight: 500;
  text-align: center;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-days {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-day {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  padding: 20px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-day:nth-child(7n+0) {
	pointer-events: none;
	background-color: rgba(238, 238, 238, 0.3647058824) !important;
	color: #ccc;
    cursor: not-allowed !important;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-day:nth-child(7n+1) {
	pointer-events: none;
	background-color: rgba(238, 238, 238, 0.3647058824) !important;
	color: #ccc;
    cursor: not-allowed !important;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-day:hover {
  transition: 0.3s;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .activeCalendarDay {
	background: #3CCF4E;
	color: white;
}
.past-day {
	color: #ccc;
	cursor: not-allowed !important;
	pointer-events: none !important;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .calendar-day:hover {
  background-color: rgba(238, 238, 238, 0.3647058824);
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .today {
  background-color: var(--secondaryColor);
  color: white;
  border: 1px solid var(--secondaryColor);
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .calendar .today:hover {
  background-color: var(--primaryColor);
  opacity: 0.7;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .timeSelectedList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .timeSelectedList .timeSelectedBox {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid var(--primaryColor);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .timeSelectedList .timeSelectedBox p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--primaryColor);
  margin-top: 5px;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .timeSelectedList .timeSelectedBox span {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: black;
  margin-top: 5px;
}
.canvas .canvasBody .formSection form .formSectionBox .formCalendarSection .timeSelectedList .timeSelectedBox span:nth-of-type(1) {
  margin-top: 0;
}
.canvas .canvasBody .listPropertySection {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .listPropertySection .listPropertyBox {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.canvas .canvasBody .listPropertySection .listPropertyBox:hover .listPropertyTitle h2 {
  text-decoration: underline;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxIcon {
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxIcon span {
  font-size: 30px;
  color: var(--primaryColor);
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails {
  background: white;
  width: 90%;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsHead .listPropertyTitle {
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsHead .listPropertyTitle h2 {
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin-top: 3px;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsHead .listPropertyTitle h2:nth-child(1) {
  margin-top: 0;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsHead .listPropertyManageBtnArea .listPropertyManageBtn {
  padding: 10px 20px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsHead .listPropertyManageBtnArea .listPropertyManageBtn:hover {
  border: 1px solid var(--primaryColor);
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsHead .listPropertyManageBtnArea .listPropertyManageBtn span {
  font-size: 20px;
  margin-left: 10px;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsBody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsBody .transactionType {
  background: rgba(238, 238, 238, 0.5607843137);
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primaryColor);
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  margin-top: 10px;
}
.canvas .canvasBody .listPropertySection .listPropertyBox .listPropertyBoxDetails .listPropertyBoxDetailsBody p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  opacity: 0.7;
  color: black;
}
@media (max-width: 480px) {
  .canvas .mobDesign {
    margin-top: 110px;
  }
}
.canvas .sidemenu {
  position: fixed;
  background: white;
  width: 300px;
  height: calc(100vh - 80px);
  top: 70px;
  left: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.canvas .sidemenu .closeSidemenu {
  display: none;
}
.canvas .sidemenu .sidemenuHead {
  display: none;
}
.canvas .sidemenu .navProfile {
  display: none;
}
.canvas .sidemenu .sidemenuBody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .sidemenu .sidemenuBody ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
	max-height :calc(100vh - 160px);
	overflow-y :auto;
}
.canvas .sidemenu .sidemenuBody ul li {
  list-style: none;
}
.canvas .sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  color: var(--secondaryTextColor);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  margin-top: 15px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.2s;
}
.canvas .sidemenu .sidemenuBody ul li a:hover {
  background: var(--thirdColor);
  color: black;
  transition: 0.2s;
}
.canvas .sidemenu .sidemenuBody ul li a .sidemenuIcon {
  margin-right: 15px;
  transition: 0.2s;
}
.canvas .sidemenu .sidemenuBody ul li a .sidemenuIcon span {
  font-size: 16px;
  transition: 0.2s;
}
.canvas .sidemenu .sidemenuBody ul li a p {
  font-size: 14px;
  transition: 0.2s;
}
.canvas .sidemenu .sidemenuBody ul li .sidemenuLinkActive {
  background: var(--thirdColor);
  color: black;
  font-weight: 500;
}
.sidemenu .sidemenuFooter {
  position: absolute;
  width: 100%;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  bottom: 0;
  left: 0;
  background: white;
}
.sidemenu .sidemenuFooter span {
  font-size: 8px;
  color: var(--secondaryTextColor);
  margin-top: 2px;
  transition: 0.2s;
}
.sidemenu .sidemenuFooter a{
	text-decoration: none;
	width :50px;
	margin-top :5px;
	display :flex;
}
.sidemenu .sidemenuFooter a img{
	width :100%;
	height :100%;
	object-fit: contain;
	filter: grayscale(1);
}

.canvasActive {
  width: calc(100% - 100px) !important;
  transition: 0.2s;
}

.pagination .paginationCount ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagination .paginationCount ul li {
  list-style: none;
  font-size: 14px;
  padding: 5px 10px;
  background: rgba(243, 243, 243, 0.555);
  border-radius: 5px;
  margin-left: 5px;
  cursor: pointer;
}

.pagination .paginationCount ul li:hover {
  background: rgba(228, 228, 228, 0.808);
}

.pagination .paginationCount ul span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination .paginationCount ul .navigationActive {
  background: #5434e2;
  color: white;
}

.pagination .paginationCount ul .navigationActive:hover {
  background: #5434e2;
}

    
.pagination ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  /*padding: 8px;
  border-radius: 50px;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);*/
}
.pagination ul li{
  color: black;
  list-style: none;
  /*line-height: 45px;*/
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.pagination ul li.numb{
  list-style: none;
  /*height: 45px;
  width: 45px;*/
  margin: 0 3px;
	padding: 5px 10px;
	font-size: 14px;
  border-radius: 5px;
}
.pagination ul li.numb.first{
  margin: 0px 3px 0 -5px;
}
.pagination ul li.numb.last{
  margin: 0px -5px 0 3px;
}
.pagination ul li.dots{
  font-size: 22px;
  cursor: default;
}
.pagination ul li.btn{
  padding: 0 20px;
  border-radius: 50px;
}
.pagination li.active,
.pagination ul li.numb:hover,
.pagination ul li:first-child:hover,
.pagination ul li:last-child:hover{
  color: #fff;
  background: #557bfe;
}

.jobWraperLoadMore {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top:20px;
}

.jobWraperLoadMore .jobWraperLoadMoreBtn {
    padding: 10px 20px;
    background: #6d6bbe;
    color:white;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}
/*# sourceMappingURL=style.css.map */