@charset "UTF-8";
@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: #00aeef;
  --secondaryColor: #009DAE;
  --secondaryTextColor: rgb(141, 141, 141);
  --thirdColor: #f9f9f9;
  --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: #cacaca;
  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-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;
}

.print {
  display: none;
}

@media print {
  main {
    display: none;
  }
  .print {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }
  .print .printIcon {
    width: 100px;
  }
  .print .printIcon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .print h1 {
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    margin-top: 25px;
    color: red;
  }
  .print p {
    font-size: 20px;
    line-height: 1.7;
    margin-top: 10px;
    text-align: center;
    color: var(--secondaryTextColor);
  }
}
.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.486);
  display: none;
}

.pageLoader {
  position: fixed;
  z-index: 300;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(128, 128, 128, 0.784);
}
.pageLoader .loader__spinner {
  position: absolute;
  transform: translate(-50%, 50%);
  top: 50%;
  left: 50%;
  border: 5px solid rgb(255, 255, 255);
  border-left: 5px solid var(--primaryColor);
  transform: translateZ(0);
  animation: spinner 1.1s infinite cubic-bezier(0.785, 2, 0.785, 0.785);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.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 .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: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}

#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: 180px;
  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);
}

.sidemenu {
  position: fixed;
  z-index: 10;
  width: 270px;
  background: white;
  height: 100vh;
  top: 0;
  left: 0;
  border-right: 1px solid #ededed;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .sidemenu {
    left: -100%;
    z-index: 100;
  }
}
.sidemenu .closeSidemenu {
  display: none;
}
@media (max-width: 480px) {
  .sidemenu .closeSidemenu {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
  }
  .sidemenu .closeSidemenu span {
    font-size: 22px;
  }
}
.sidemenu .sidemenuHead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 20px;
  position: absolute;
  left: 0;
  background: white;
}
.sidemenu .sidemenuHead .sidemenuLogo {
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.2s;
}
.sidemenu .sidemenuHead .sidemenuLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s;
}
.sidemenu .sidemenuHead .sidemenuLogo .halfSidImg {
  display: none;
}
.sidemenu .navProfile {
  padding: 5px 10px;
  background: var(--thirdColor);
  display: none;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .sidemenu .navProfile {
    display: flex;
    margin: 0 auto;
    margin-top: 90px;
    width: 90%;
    padding: 10px 15px;
  }
}
.sidemenu .navProfile .navProfileThumbnail {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  background: #C8F2EF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidemenu .navProfile .navProfileThumbnail img {
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidemenu .navProfile .navProfileContent {
  max-width: 200px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .sidemenu .navProfile .navProfileContent {
    max-width: inherit;
    width: calc(100% - 45px);
  }
}
.sidemenu .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;
}
.sidemenu .navProfile .navProfileContent p {
  font-size: 12px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.sidemenu .sidemenuBody {
  width: 100%;
  background: white;
  margin-top: 220px;
  height: calc(100vh - 270px);
  overflow-y: auto;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .sidemenu .sidemenuBody {
    height: calc(100vh - 195px);
    margin-top: 0px;
  }
}
.sidemenu .sidemenuBody ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.sidemenu .sidemenuBody ul li {
  list-style: none;
}
.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  color: var(--secondaryTextColor);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.2s;
}
.sidemenu .sidemenuBody ul li a:hover {
  transition: 0.2s;
  background: var(--thirdColor);
  color: black;
}
.sidemenu .sidemenuBody ul li a .sidemenuIcon {
  margin-right: 15px;
  transition: 0.2s;
  margin-top: 3px;
}
.sidemenu .sidemenuBody ul li a .sidemenuIcon span {
  font-size: 14px;
  transition: 0.2s;
}
.sidemenu .sidemenuBody ul li a p {
  font-size: 13px;
  transition: 0.2s;
}
.sidemenu .sidemenuBody ul li .sidemenuLinkActive {
  background: var(--primaryColor);
  color: white;
  font-weight: 500;
}
.sidemenu .sidemenuBody ul li .sidemenuLinkActive:hover {
  transition: 0.2s;
  background: var(--primaryColor);
  color: white;
}
.sidemenu .sidemenuBody ul li .sidemenuLinkActive span {
  color: white;
}
.sidemenu .sidemenuFooter {
  position: absolute;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  bottom: 0;
  left: 0;
  background: white;
}
.sidemenu .sidemenuFooter span {
  font-size: 10px;
  color: var(--secondaryTextColor);
  margin-top: 5px;
  transition: 0.2s;
}
.sidemenu .sidemetoggleBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -21px;
  width: 20px;
  overflow: hidden;
  height: 100px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.2s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.sidemenu .sidemetoggleBtn span {
  color: var(--secondaryTextColor);
  font-size: 28px;
  transition: 0.2s;
}
.sidemenu .sidemetoggleBtn .rotate {
  transform: rotate(180deg);
  transition: 0.2s;
}
.sidemenu .sidemetoggleBtnActive {
  right: -21px;
  transition: 0.2s;
}

.sidemenuActive {
  width: 100px !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuHead .sidemenuLogo {
  width: 60px !important;
  height: 60px !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuHead .sidemenuLogo img {
  width: 120% !important;
  height: 120% !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuHead .sidemenuLogo .fullSidImg {
  display: none !important;
}
.sidemenuActive .sidemenuHead .sidemenuLogo .halfSidImg {
  display: block !important;
}
.sidemenuActive .sidemenuBody {
  margin-top: 100px !important;
  height: calc(100vh - 150px) !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuBody ul li a .sidemenuIcon {
  margin-right: 0 !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuBody ul li a .sidemenuIcon span {
  font-size: 20px !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuBody ul li a p {
  display: none !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuFooter .sidemenuProfile .sidemenuProfileContent {
  display: none !important;
  transition: 0.2s;
}
.sidemenuActive .sidemenuFooter span {
  display: none !important;
  transition: 0.2s;
}

.staffListMenu {
  position: fixed;
  top: 20px;
  right: -100%;
  width: 350px;
  height: calc(100vh - 40px);
  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 - 100px);
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  padding: 10px 0px;
  justify-content: space-between;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox {
  width: 100%;
  height: 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;
}
.staffListMenu .staffListMenuBody .staffListMenuBodyBox .staffListMenuList ul {
  overflow-y: auto;
  height: calc(100% - 120px);
  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 - 40px);
  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;
}

.approveAlert {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 40px;
  width: 400px;
  display: none;
}
.approveAlert .approveAlertMian {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.approveAlert .approveAlertMian .approveAlertThumbnail {
  width: 200px;
}
.approveAlert .approveAlertMian .approveAlertThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.approveAlert .approveAlertMian .approveAlertContent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.approveAlert .approveAlertMian .approveAlertContent p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.approveAlert .approveAlertMian .approveAlertContent .approveAlertBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.approveAlert .approveAlertMian .approveAlertContent .approveAlertBtnArea .closeapproveAlert {
  flex: 0 0 48%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: #eee;
  color: black;
  transition: 0.2s;
}
.approveAlert .approveAlertMian .approveAlertContent .approveAlertBtnArea .closeapproveAlert:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.approveAlert .approveAlertMian .approveAlertContent .approveAlertBtnArea .confirmapproveAlert {
  flex: 0 0 48%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: var(--primaryColor);
  color: white;
  transition: 0.2s;
}
.approveAlert .approveAlertMian .approveAlertContent .approveAlertBtnArea .confirmapproveAlert:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.renewelDatepopup {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 400px;
  display: none;
}
.renewelDatepopup h2 {
  font-size: 20px;
  font-weight: 500;
}
.renewelDatepopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.renewelDatepopup form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.renewelDatepopup form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.renewelDatepopup 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;
}
.renewelDatepopup form .formGroup input:focus {
  border: 1px solid #ccc;
}
.renewelDatepopup form .formBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.renewelDatepopup form .formBtnArea .closeRenewelDatepopup {
  flex: 0 0 40%;
  padding: 12px 25px;
  background: #eee;
  border: none;
  outline: none;
  color: black;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.renewelDatepopup form .formBtnArea .closeRenewelDatepopup:hover {
  transition: 0.2s;
  color: white;
  background: var(--secondaryColor);
}
.renewelDatepopup form .formBtnArea .closeRenewelDatepopup span {
  margin-left: 10px;
  font-size: 18px;
}
.renewelDatepopup form .formBtnArea button {
  flex: 0 0 57%;
  padding: 12px 25px;
  background: var(--primaryColor);
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.renewelDatepopup form .formBtnArea button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.renewelDatepopup form .formBtnArea button span {
  margin-left: 10px;
  font-size: 18px;
}

.historyPaymentPopup {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 1000px;
  display: none;
}
.historyPaymentPopup .historyPaymentPopupHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.historyPaymentPopup .historyPaymentPopupHead h2 {
  font-size: 20px;
  font-weight: 500;
}
.historyPaymentPopup .historyPaymentPopupHead .closeHistoryPaymentPopup {
  cursor: pointer;
}
.historyPaymentPopup .historyPaymentPopupHead .closeHistoryPaymentPopup span {
  font-size: 24px;
  opacity: 0.7;
}
.historyPaymentPopup .historyPaymentPopupTable {
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  margin-top: 20px;
}
.historyPaymentPopup .historyPaymentPopupTable table {
  width: 100%;
  position: relative;
}
.historyPaymentPopup .historyPaymentPopupTable table thead {
  width: 100%;
  background: var(--thirdColor);
}
.historyPaymentPopup .historyPaymentPopupTable table thead tr {
  width: 100%;
  display: table-row;
  outline: 0;
}
.historyPaymentPopup .historyPaymentPopupTable 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;
}
.historyPaymentPopup .historyPaymentPopupTable table thead tr th:nth-child(1) {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.historyPaymentPopup .historyPaymentPopupTable table thead tr th:nth-last-child(1) {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.historyPaymentPopup .historyPaymentPopupTable table thead tr .resizing {
  cursor: col-resize;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.historyPaymentPopup .historyPaymentPopupTable table tbody {
  width: 100%;
}
.historyPaymentPopup .historyPaymentPopupTable table tbody tr:nth-child(1) td {
  border-top: 1px solid white;
}
.historyPaymentPopup .historyPaymentPopupTable table tbody tr td {
  padding: 8px;
  font-size: 14px;
  border-top: 1px solid #ededed;
  position: relative;
}
.historyPaymentPopup .historyPaymentPopupTable .elseDesign {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
}
@media (max-width: 480px) {
  .historyPaymentPopup .historyPaymentPopupTable .elseDesign {
    height: 400px;
  }
}
.historyPaymentPopup .historyPaymentPopupTable .elseDesign .elseDesignthumbnail {
  width: 200px;
}
.historyPaymentPopup .historyPaymentPopupTable .elseDesign .elseDesignthumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.historyPaymentPopup .historyPaymentPopupTable .elseDesign p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.sendMessagepopup {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 400px;
  display: none;
}
.sendMessagepopup h2 {
  font-size: 20px;
  font-weight: 500;
}
.sendMessagepopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sendMessagepopup form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.sendMessagepopup form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.sendMessagepopup 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;
}
.sendMessagepopup form .formGroup input:focus {
  border: 1px solid #ccc;
}
.sendMessagepopup form .formGroup textarea {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 20px;
  background: var(--thirdColor);
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
}
.sendMessagepopup form .formGroup textarea:focus {
  border: 1px solid #ccc;
}
.sendMessagepopup form .formBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sendMessagepopup form .formBtnArea .closeSendMessagepopup {
  flex: 0 0 40%;
  padding: 12px 25px;
  background: #eee;
  border: none;
  outline: none;
  color: black;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.sendMessagepopup form .formBtnArea .closeSendMessagepopup:hover {
  transition: 0.2s;
  color: white;
  background: var(--secondaryColor);
}
.sendMessagepopup form .formBtnArea .closeSendMessagepopup span {
  margin-left: 10px;
  font-size: 18px;
}
.sendMessagepopup form .formBtnArea button {
  flex: 0 0 57%;
  padding: 12px 25px;
  background: var(--primaryColor);
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.sendMessagepopup form .formBtnArea button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.sendMessagepopup form .formBtnArea button span {
  margin-left: 10px;
  font-size: 18px;
}

.collectFeepopup {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 400px;
  display: none;
}
.collectFeepopup h2 {
  font-size: 20px;
  font-weight: 500;
}
.collectFeepopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.collectFeepopup form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.collectFeepopup form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.collectFeepopup 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;
}
.collectFeepopup form .formGroup input:focus {
  border: 1px solid #ccc;
}
.collectFeepopup form .formGroup textarea {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 20px;
  background: var(--thirdColor);
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
}
.collectFeepopup form .formGroup textarea:focus {
  border: 1px solid #ccc;
}
.collectFeepopup form .formGroupCheckbox {
  width: 100%;
  margin-top: 20px;
}
.collectFeepopup form .formGroupCheckbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.collectFeepopup form .formGroupCheckbox label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.collectFeepopup form .formGroupCheckbox 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;
}
.collectFeepopup form .formGroupCheckbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 5px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.collectFeepopup form .formGroupCheckbox input:checked + label:before {
  background: var(--primaryColor);
}
.collectFeepopup form .formBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.collectFeepopup form .formBtnArea .closeCollectFeepopup {
  flex: 0 0 40%;
  padding: 12px 25px;
  background: #eee;
  border: none;
  outline: none;
  color: black;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.collectFeepopup form .formBtnArea .closeCollectFeepopup:hover {
  transition: 0.2s;
  color: white;
  background: var(--secondaryColor);
}
.collectFeepopup form .formBtnArea .closeCollectFeepopup span {
  margin-left: 10px;
  font-size: 18px;
}
.collectFeepopup form .formBtnArea button {
  flex: 0 0 57%;
  padding: 12px 25px;
  background: var(--primaryColor);
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.collectFeepopup form .formBtnArea button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.collectFeepopup form .formBtnArea button span {
  margin-left: 10px;
  font-size: 18px;
}

.assignVideoDatepopup {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 400px;
  display: none;
}
.assignVideoDatepopup h2 {
  font-size: 20px;
  font-weight: 500;
}
.assignVideoDatepopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.assignVideoDatepopup form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.assignVideoDatepopup form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.assignVideoDatepopup 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;
}
.assignVideoDatepopup form .formGroup input:focus {
  border: 1px solid #ccc;
}
.assignVideoDatepopup form .formBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.assignVideoDatepopup form .formBtnArea .closeAssignVideoDatepopup {
  flex: 0 0 40%;
  padding: 12px 25px;
  background: #eee;
  border: none;
  outline: none;
  color: black;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.assignVideoDatepopup form .formBtnArea .closeAssignVideoDatepopup:hover {
  transition: 0.2s;
  color: white;
  background: var(--secondaryColor);
}
.assignVideoDatepopup form .formBtnArea .closeAssignVideoDatepopup span {
  margin-left: 10px;
  font-size: 18px;
}
.assignVideoDatepopup form .formBtnArea button {
  flex: 0 0 57%;
  padding: 12px 25px;
  background: var(--primaryColor);
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.assignVideoDatepopup form .formBtnArea button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.assignVideoDatepopup form .formBtnArea button span {
  margin-left: 10px;
  font-size: 18px;
}

.assignCoursePopup {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 1000px;
  display: none;
}
.assignCoursePopup .assignCoursePopupBody {
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.assignCoursePopup .assignCoursePopupBody h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 50px;
}
.assignCoursePopup .assignCoursePopupBody h3:nth-child(1) {
  margin-top: 0;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList::after {
  content: "";
  height: 0;
  width: 30%;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox {
  flex: 0 0 32%;
  margin-top: 20px;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox input[type=checkbox][id^=myCheckbox] {
  display: none;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox label {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox label::before {
  content: " ";
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 2;
  font-size: 3em;
  color: rgb(0, 0, 0);
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox label:hover .assignCourseListBoxThumbnail img {
  transform: scale(1.1);
  transition: 0.3s;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox label .assignCourseListBoxThumbnail {
  width: 100%;
  height: 150px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox label .assignCourseListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox label .assignCourseListBoxContent {
  width: 100%;
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox label .assignCourseListBoxContent p {
  font-size: 14px;
  font-weight: 500;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox input:checked + label {
  border-color: #ddd;
}
.assignCoursePopup .assignCoursePopupBody .assignCourseList .assignCourseListBox input:checked + label:before {
  content: "✓";
  background: rgba(255, 255, 255, 0.847);
}
.assignCoursePopup .assignCoursePopupFooter {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.assignCoursePopup .assignCoursePopupFooter .cancelAssignCoursePopup {
  padding: 12px 25px;
  background: #eee;
  width: 150px;
  border: none;
  outline: none;
  color: black;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.assignCoursePopup .assignCoursePopupFooter .cancelAssignCoursePopup:hover {
  transition: 0.2s;
  color: white;
  background: var(--secondaryColor);
}
.assignCoursePopup .assignCoursePopupFooter .cancelAssignCoursePopup span {
  margin-left: 10px;
  font-size: 18px;
}
.assignCoursePopup .assignCoursePopupFooter .submitAssignCoursePopup {
  margin-left: 20px;
  width: 150px;
  padding: 12px 25px;
  background: var(--primaryColor);
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.assignCoursePopup .assignCoursePopupFooter .submitAssignCoursePopup:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.assignCoursePopup .assignCoursePopupFooter .submitAssignCoursePopup span {
  margin-left: 10px;
  font-size: 18px;
}

.enquiryMessagePopup {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 1000px;
  display: none;
}
.enquiryMessagePopup .enquiryMessagePopupHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.enquiryMessagePopup .enquiryMessagePopupHead h2 {
  font-size: 20px;
  font-weight: 500;
}
.enquiryMessagePopup .enquiryMessagePopupHead .closeEnquiryMessagePopup {
  cursor: pointer;
}
.enquiryMessagePopup .enquiryMessagePopupHead .closeEnquiryMessagePopup span {
  font-size: 24px;
  opacity: 0.7;
}
.enquiryMessagePopup .enquiryMessagePopupBody {
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  margin-top: 20px;
}
.enquiryMessagePopup .enquiryMessagePopupBody p {
  font-size: 14px;
  line-height: 1.7;
}

.canvas {
  width: calc(100% - 270px);
  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;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 480px) {
  .canvas .canvasHead {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    flex-wrap: nowrap;
  }
}
.canvas .canvasHead .canvasTitle {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .canvas .canvasHead .canvasTitle {
    width: 100%;
  }
}
.canvas .canvasHead .canvasTitle span {
  font-size: 20px;
  margin-right: 10px;
  color: var(--primaryColor);
}
.canvas .canvasHead .canvasTitle h1 {
  font-size: 20px;
  font-weight: 600;
  color: black;
}
@media (max-width: 480px) {
  .canvas .canvasHead .canvasTitle h1 {
    max-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: calc(100% - 40px);
  }
}
.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: 100%;
  height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 0px 2.5% 20px 2.5%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 480px) {
  .canvas .canvasBody {
    margin-top: 60px;
    height: auto;
    padding-bottom: 60px;
  }
}
.canvas .canvasBody .dashBoardCanvas {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu {
  flex: 0 0 70%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu::after {
  content: "";
  height: 0;
  width: 32%;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox {
  flex: 0 0 32%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:hover {
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.048);
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(2) .dashBoardCanvasMenuBoxIcon {
  background: #ffece6;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(2) .dashBoardCanvasMenuBoxIcon::after {
  border: 1px solid #ffece6;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(2) .dashBoardCanvasMenuBoxIcon span {
  color: #fa5f1c;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(3) .dashBoardCanvasMenuBoxIcon {
  background: #f6f4ff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(3) .dashBoardCanvasMenuBoxIcon::after {
  border: 1px solid #f6f4ff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(3) .dashBoardCanvasMenuBoxIcon span {
  color: #5842c0;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(4) .dashBoardCanvasMenuBoxIcon {
  background: #ebfff3;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(4) .dashBoardCanvasMenuBoxIcon::after {
  border: 1px solid #dbfce8;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(4) .dashBoardCanvasMenuBoxIcon span {
  color: #387f3d;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(5) .dashBoardCanvasMenuBoxIcon {
  background: #fff9eb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(5) .dashBoardCanvasMenuBoxIcon::after {
  border: 1px solid #fff9eb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(5) .dashBoardCanvasMenuBoxIcon span {
  color: #ff8c00;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(6) .dashBoardCanvasMenuBoxIcon {
  background: #fdebff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(6) .dashBoardCanvasMenuBoxIcon::after {
  border: 1px solid #fdebff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(6) .dashBoardCanvasMenuBoxIcon span {
  color: #ee00ff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(7) .dashBoardCanvasMenuBoxIcon {
  background: #ffebeb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(7) .dashBoardCanvasMenuBoxIcon::after {
  border: 1px solid #ffebeb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(7) .dashBoardCanvasMenuBoxIcon span {
  color: #ff003c;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(8) .dashBoardCanvasMenuBoxIcon {
  background: #ebfeff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(8) .dashBoardCanvasMenuBoxIcon::after {
  border: 1px solid #ebfeff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(8) .dashBoardCanvasMenuBoxIcon span {
  color: #00c3ff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(9) .dashBoardCanvasMenuBoxIcon {
  background: #efffeb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(9) .dashBoardCanvasMenuBoxIcon::after {
  border: 1px solid #efffeb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(9) .dashBoardCanvasMenuBoxIcon span {
  color: #3dde07;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(10) .dashBoardCanvasMenuBoxIcon {
  background: #ffffd8;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(10) .dashBoardCanvasMenuBoxIcon::after {
  border: 1px solid #ffffb4;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:nth-child(10) .dashBoardCanvasMenuBoxIcon span {
  color: #dec507;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox .dashBoardCanvasMenuBoxIcon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #eee;
  color: black;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox .dashBoardCanvasMenuBoxIcon::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #eee;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox .dashBoardCanvasMenuBoxIcon span {
  font-size: 25px;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox p {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  color: black;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasGraph {
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasGraph img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports {
  flex: 0 0 27%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBox {
  width: 100%;
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBox .dashBoardCanvasReportsBoxIcon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  position: relative;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBox .dashBoardCanvasReportsBoxIcon::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid white;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBox .dashBoardCanvasReportsBoxIcon span {
  font-size: 25px;
  color: #14C38E;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBox .dashBoardCanvasReportsBoxDetails {
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBox .dashBoardCanvasReportsBoxDetails h1 {
  font-size: 18px;
  font-weight: 500;
  color: rgb(0, 0, 0);
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBox .dashBoardCanvasReportsBoxDetails p {
  font-size: 12px;
  color: var(--secondaryTextColor);
  margin-top: 5px;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .IncomeGenerated {
  background: #14C38E;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .IncomeGenerated .dashBoardCanvasReportsBoxDetails h1 {
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: 600;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .IncomeGenerated .dashBoardCanvasReportsBoxDetails p {
  color: white;
  font-size: 14px;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList {
  width: 100%;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li {
  list-style: none;
  flex: 0 0 48%;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(1) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon {
  background: #ffece6;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(1) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon::after {
  border: 1px solid #ffece6;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(1) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon span {
  color: #fa5f1c;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(2) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon {
  background: #f6f4ff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(2) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon::after {
  border: 1px solid #f6f4ff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(2) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon span {
  color: #5842c0;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(3) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon {
  background: #ebfff3;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(3) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon::after {
  border: 1px solid #dbfce8;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(3) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon span {
  color: #387f3d;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(4) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon {
  background: #fff9eb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(4) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon::after {
  border: 1px solid #fff9eb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(4) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon span {
  color: #ff8c00;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(5) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon {
  background: #fdebff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(5) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon::after {
  border: 1px solid #fdebff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(5) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon span {
  color: #ee00ff;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(6) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon {
  background: #ffebeb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(6) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon::after {
  border: 1px solid #ffebeb;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li:nth-child(6) .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon span {
  color: #ff003c;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li .dashBoardCanvasReportsBoxListBox {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  padding-top: 20px;
  position: relative;
  transition: 0.3s;
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li .dashBoardCanvasReportsBoxListBox:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.041);
  transition: 0.3s;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon::after {
  position: absolute;
  content: "";
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid #eee;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxIcon span {
  font-size: 16px;
  color: black;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxDetails h2 {
  font-size: 20px;
  font-weight: 600;
  color: black;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li .dashBoardCanvasReportsBoxListBox .dashBoardCanvasReportsBoxDetails p {
  font-size: 12px;
  color: rgb(174, 174, 174);
  margin-top: 10px;
  font-weight: 500;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasReports .dashBoardCanvasReportsBoxList ul li .dashBoardCanvasReportsBoxListBox .line {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 60px);
  height: 1px;
  background: rgba(238, 238, 238, 0.568627451);
  display: none;
}
.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.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;
  cursor: pointer;
}
@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 .canvasBodyHead .canvasBodyHeadColumn2 .disableBtn {
  cursor: not-allowed;
  opacity: 0.6;
}
.canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 .disableBtn:hover {
  background: var(--primaryColor);
  transition: 0.2s;
}
.canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 .printBtn {
  padding: 10px 18px;
  background: #4E9F3D;
  color: white;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 .printBtn {
    position: fixed;
    bottom: 10px;
    left: 2.5%;
    width: 95%;
    z-index: 10;
    padding: 14px 18px;
  }
}
.canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 .printBtn:hover {
  background: var(--secondaryColor);
  transition: 0.2s;
}
.canvas .canvasBody .canvasBodyHead .canvasBodyHeadColumn2 .printBtn span {
  margin-right: 10px;
  font-size: 18px;
}
.canvas .canvasBody .filterArea {
  width: 100%;
  margin-top: 10px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .filterArea .formGroup {
  width: 200px;
  margin-right: 20px;
}
.canvas .canvasBody .filterArea .formGroup select {
  width: 100%;
  height: 35px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 10px;
  background: var(--thirdColor);
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .filterArea .formGroup select:focus {
  border: 1px solid #ccc;
}
.canvas .canvasBody .filterArea .formGroup input {
  width: 100%;
  height: 35px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 10px;
  background: var(--thirdColor);
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .filterArea .formGroup input:focus {
  border: 1px solid #ccc;
}
.canvas .canvasBody .filterArea .filterAreaBox {
  display: flex;
}
.canvas .canvasBody .filterArea .formBtnArea {
  display: flex;
}
.canvas .canvasBody .filterArea .formBtnArea button {
  width: 35px;
  height: 35px;
  background: var(--primaryColor);
  color: white;
  font-size: 14px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 5px;
  transition: 0.2s;
}
.canvas .canvasBody .filterArea .formBtnArea button:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .filterArea .formBtnArea button span {
  font-size: 18px;
}
.canvas .canvasBody .totalListArea {
  width: 100%;
  margin-top: 10px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .totalListArea .totalListAreaBox {
  flex: 0 0 24%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #eee;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(1) .totalListAreaBoxIcon {
  background: #ffece6;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(1) .totalListAreaBoxIcon::after {
  border: 1px solid #ffece6;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(1) .totalListAreaBoxIcon span {
  color: #fa5f1c;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(2) .totalListAreaBoxIcon {
  background: #f6f4ff;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(2) .totalListAreaBoxIcon::after {
  border: 1px solid #f6f4ff;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(2) .totalListAreaBoxIcon span {
  color: #5842c0;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(3) .totalListAreaBoxIcon {
  background: #fff9eb;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(3) .totalListAreaBoxIcon::after {
  border: 1px solid #fff9eb;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(3) .totalListAreaBoxIcon span {
  color: #ff8c00;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(4) .totalListAreaBoxIcon {
  background: #ebfff3;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(4) .totalListAreaBoxIcon::after {
  border: 1px solid #dbfce8;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(4) .totalListAreaBoxIcon span {
  color: #387f3d;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(5) .totalListAreaBoxIcon {
  background: #fdebff;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(5) .totalListAreaBoxIcon::after {
  border: 1px solid #fdebff;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(5) .totalListAreaBoxIcon span {
  color: #ee00ff;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(6) .totalListAreaBoxIcon {
  background: #ffebeb;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(6) .totalListAreaBoxIcon::after {
  border: 1px solid #ffebeb;
}
.canvas .canvasBody .totalListArea .totalListAreaBox:nth-child(6) .totalListAreaBoxIcon span {
  color: #ff003c;
}
.canvas .canvasBody .totalListArea .totalListAreaBox .totalListAreaBoxIcon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .totalListArea .totalListAreaBox .totalListAreaBoxIcon::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #eee;
}
.canvas .canvasBody .totalListArea .totalListAreaBox .totalListAreaBoxIcon span {
  font-size: 18px;
  color: black;
}
.canvas .canvasBody .totalListArea .totalListAreaBox .totalListAreaBoxDetails {
  width: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.canvas .canvasBody .totalListArea .totalListAreaBox .totalListAreaBoxDetails h1 {
  font-size: 22px;
  font-weight: 600;
}
.canvas .canvasBody .totalListArea .totalListAreaBox .totalListAreaBoxDetails p {
  font-size: 12px;
  font-weight: 500;
  margin-top: 3px;
  color: var(--secondaryTextColor);
}
.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 .canvasSubTitle a {
  text-decoration: none;
  margin-left: 10px;
  font-size: 12px;
  color: var(--primaryColor);
  font-weight: 500;
  background: white;
  border-radius: 10px;
  padding: 7px 15px;
  transition: 0.2s;
}
.canvas .canvasBody .canvasSubTitle a:hover {
  transition: 0.2s;
  background: var(--primaryColor);
  color: white;
}
.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;
  display: none;
}
@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: 100%;
  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 .tableWraper {
  width: 100%;
  margin-top: 10px;
  background: white;
  border-radius: 10px;
  padding: 0px;
  position: relative;
  overflow-x: auto;
  max-height: 100%;
}
.canvas .canvasBody .tableWraper::after {
  position: absolute;
  content: "";
  top: 0;
}
.canvas .canvasBody .tableWraper table {
  width: 100%;
  position: relative;
  border-collapse: collapse;
}
.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: darkseagreen !important;
  border: 1px solid #eee;
  color: white;
}
.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 th:nth-last-child(1) .ui-resizable-e {
  display: none !important;
}
.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: 1px solid #ededed;
  position: relative;
}
.canvas .canvasBody .tableWraper table tbody tr td p {
  white-space: pre;
}
.canvas .canvasBody .tableWraper table tbody tr td a {
  text-decoration: none;
  color: var(--primaryColor);
  font-weight: 500;
}
.canvas .canvasBody .tableWraper table tbody tr td .blocked {
  background: red;
  color: white;
  font-size: 10px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 5px;
  width: 70px;
  text-align: center;
  display: none;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableFileImg {
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableFileImg img {
  width: 100%;
  height: 100%;
  -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 .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 tbody tr td .tableAction .tableApproveBtn {
  padding: 5px 15px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #009DAE;
  cursor: pointer;
  transition: 0.2s;
  margin-right: 10px;
  color: white;
  font-size: 14px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableApproveBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableBlockBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e25e00;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 10px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableBlockBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableAction .tableBlockBtn span {
  font-size: 16px;
  color: white;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableArrow {
  display: flex;
  align-items: center;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableArrow .tableArrowIcon {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableArrow .tableArrowIcon span {
  font-size: 16px;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableArrow .downArrow {
  background: rgba(255, 0, 0, 0.042);
}
.canvas .canvasBody .tableWraper table tbody tr td .tableArrow .downArrow span {
  color: red;
}
.canvas .canvasBody .tableWraper table tbody tr td .tableArrow .upArrow {
  background: rgba(0, 255, 0, 0.042);
}
.canvas .canvasBody .tableWraper table tbody tr td .tableArrow .upArrow span {
  color: rgb(0, 209, 0);
}
.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 .canvasStudentsProfileSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 {
  width: 380px;
  background: #829460;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .blocked {
  background: red;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  display: none;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileHead {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileHead .studentsProfileImg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileHead .studentsProfileImg img {
  width: 80%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileHead .studentsProfileName {
  width: calc(100% - 55px);
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileHead .studentsProfileName p {
  color: white;
  font-size: 18px;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody {
  width: 100%;
  padding: 20px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: calc(100vh - 200px);
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody .studentsProfileBodyTitle {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody .studentsProfileBodyTitle:nth-child(1) {
  margin-top: 10px;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody .studentsProfileBodyTitle h1 {
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2117647059);
  padding: 5px 10px;
  border-radius: 5px;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody .studentsProfileBodyTitle h1 span {
  font-size: 14px;
  color: white;
  font-weight: 300;
  white-space: pre;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody .studentsProfileBodyTitle h1 .line {
  width: 100%;
  height: 1px;
  background: rgba(238, 238, 238, 0.37);
  margin-left: 10px;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px 20px;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody ul li {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody ul li span {
  font-size: 12px;
  color: white;
  opacity: 0.7;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn1 .studentsProfileBody ul li p {
  font-size: 14px;
  color: white;
  margin-top: 5px;
  line-height: 1.5;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 {
  width: calc(100% - 400px);
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Head {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Head .StudentsProfileHeadBtnBox {
  padding: 10px 18px;
  background: white;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #ededed;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  transition: 0.2s;
  margin-right: 10px;
  margin-bottom: 10px;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Head .StudentsProfileHeadBtnBox:hover {
  transition: 0.2s;
  box-shadow: none;
  background: var(--secondaryColor);
  color: white;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Head .blockBtn, .canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Head .UnblockBtn {
  background: red;
  color: white;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Head .disableBtn {
  opacity: 0.5;
  cursor: not-allowed;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Head .disableBtn:hover {
  background: white;
  color: black;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Head .EnableAssignVideoBtn {
  background: var(--primaryColor);
  color: white;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Head .feeCollectBtn {
  background: #379237;
  color: white;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Body {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 170px);
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Body .title {
  width: 100%;
  display: flex;
  margin-top: 10px;
}
.canvas .canvasBody .canvasStudentsProfileSection .canvasStudentsProfileColumn2 .canvasStudentsProfileColumn2Body .title h2 {
  font-size: 18px;
  font-weight: 500;
}
.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 h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}
.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 select {
  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 select: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 .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 .formGroupTextarea .formGroupTextareaBox {
  width: 100%;
  margin-top: 10px;
}
.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 .formWraper .formWraperBox form .formFileUpload {
  width: 100%;
  margin-top: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadFileBtnBox {
  width: 30%;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadFileBtnBox .uploadFileBtn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  min-width: 116px;
  padding: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid;
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  border-radius: 10px;
  line-height: 26px;
  font-size: 14px;
  width: 100%;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadFileBtnBox .uploadFileBtn:hover {
  background-color: unset;
  color: var(--secondaryColor);
  transition: all 0.3s ease;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadFileBtnBox .uploadFileBtn .uploadInputFile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadImgWrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadImgWrap .imgBgBox {
  width: 200px;
  height: 150px;
  margin-top: 20px;
  margin-right: 10px;
  background: #eee;
  border-radius: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadImgWrap .imgBgBox .imgBg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadImgWrap .imgBgBox .imgBg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadImgWrap .imgBgBox .uploadImgClose {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
.canvas .canvasBody .formWraper .formWraperBox form .formFileUpload .uploadImgWrap .imgBgBox .uploadImgClose:after {
  content: "✖";
  font-size: 14px;
  color: white;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #E4FBFF;
  margin-top: 20px;
  padding: 0px 20px 20px 20px;
  border-radius: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 {
  flex: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain {
  width: 100%;
  border-top: 1px solid rgb(207, 207, 207);
  margin-top: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryList::after {
  content: "";
  height: 0;
  width: 30%;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryList .formGroup {
  background: white;
  padding: 15px;
  border-radius: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryList .formGroupFooter {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryList .formGroupFooter .closeSubSubCategory {
  margin-left: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  background: #FA163F;
  margin-top: 5px;
  cursor: pointer;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryList .formGroupFooter .closeSubSubCategory:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryList .formGroupFooter .closeSubSubCategory span {
  font-size: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryBtnArea {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryBtnArea .addSubSubCategoryBtn {
  padding: 10px 25px;
  background: #F58634;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn1 .subSubCateoryMain .subSubCateoryBtnArea .addSubSubCategoryBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .formWraper .formWraperBox form .formWraperBoxSubCategory .formWraperBoxSubCategoryColumn2 {
  flex: 0 0 5%;
}
.canvas .canvasBody .formWraper .formWraperBox form .closeCtegoryBtnArea {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .closeCtegoryBtnArea .closeCtegoryBtn {
  padding: 10px 25px;
  background: #FA163F;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  width: 180px;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .closeCtegoryBtnArea .closeCtegoryBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .formWraper .formWraperBox form .categoryTemplateDiv {
  width: 100%;
}
.canvas .canvasBody .formWraper .formWraperBox form .addSubcategoryBtnArea {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .addSubcategoryBtnArea .addSubcategoryBtn {
  padding: 10px 25px;
  background: #7ECA9C;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .addSubcategoryBtnArea .addSubcategoryBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection {
    flex: 100%;
  }
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea {
  width: 100%;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn {
  margin-right: 40px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:checked,
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:checked + label,
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:checked + label:before,
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:checked + label:after,
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--primaryColor);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupRadioBtnSection .formGroupRadioBtnArea .formGroupRadioBtn [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection {
    flex: 100%;
  }
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea {
  width: 100%;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox {
  margin-right: 40px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:checked,
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:checked + label,
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  line-height: 2;
  display: inline-block;
  color: #666;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:checked + label:before,
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:checked + label:after,
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:not(:checked) + label:after {
  content: "✓";
  width: 19px;
  height: 19px;
  background: var(--primaryColor);
  position: absolute;
  top: 4px;
  left: 4px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.canvas .canvasBody .formWraper .formWraperBox form .formGroupCheckboxBtnSection .formGroupCheckboxBtnArea .formGroupCheckbox [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection {
  flex: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList::after {
  content: "";
  height: 0;
  width: 24%;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .dummyDiv {
  flex: 0 0 24%;
  height: 0;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox {
  flex: 0 0 24%;
  margin-top: 20px;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox input[type=checkbox][id^=myCheckbox] {
  display: none;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox label {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox label::before {
  content: " ";
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 2;
  font-size: 3em;
  color: rgb(0, 0, 0);
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox label:hover .assignCourseListBoxThumbnail img {
  transform: scale(1.1);
  transition: 0.3s;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox label .assignCourseListBoxThumbnail {
  width: 100%;
  height: 180px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox label .assignCourseListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox label .assignCourseListBoxContent {
  width: 100%;
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox label .assignCourseListBoxContent p {
  font-size: 14px;
  font-weight: 500;
  color: black;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox input:checked + label {
  border-color: #ddd;
}
.canvas .canvasBody .formWraper .formWraperBox form .courseCheckboxSection .courseCheckboxList .assignCourseListBox input:checked + label:before {
  content: "✓";
  background: rgba(255, 255, 255, 0.847);
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagInput {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagInput .formTagBtn {
  margin-left: 30px;
  height: 45px;
  padding: 5px 25px;
  background: rgb(1, 155, 1);
  color: white;
  cursor: pointer;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  transition: 0.2s;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagInput .formTagBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagList {
  width: 100%;
  border: 1px solid #eee;
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagList .formTagListHead {
  width: 100%;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagList .formTagListHead p {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagList .formTagListSection {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagList .formTagListSection .formTagListBox {
  margin-right: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagList .formTagListSection .formTagListBox .checkbox-input {
  opacity: 0;
  visibility: hidden;
  margin: 0;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagList .formTagListSection .formTagListBox .checkbox-input:checked + .checkbox-tile {
  border-color: green;
  color: green;
  background: rgba(9, 187, 9, 0.123);
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagList .formTagListSection .formTagListBox .checkbox-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: 0.1s ease;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .formWraper .formWraperBox form .formTagSection .formTagList .formTagListSection .formTagListBox .checkbox-tile:hover {
  border-color: #999;
}
.canvas .canvasBody .formWraper .formWraperBox form .formMultiplePricing {
  width: 100%;
  margin-top: 30px;
}
.canvas .canvasBody .formWraper .formWraperBox form .formMultiplePricing input {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}
.canvas .canvasBody .formWraper .formWraperBox form .templateList {
  width: 100%;
}
.canvas .canvasBody .formWraper .formWraperBox form .templateBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #ebfaff;
  margin-top: 20px;
  padding: 0px 20px 20px 20px;
  border-radius: 10px;
}
.canvas .canvasBody .formWraper .formWraperBox form .templateBox input {
  background: white !important;
}
.canvas .canvasBody .formWraper .formWraperBox form .templateBox .formTagSection .formTagList .formTagListSection .checkbox-tile {
  background: white;
}
.canvas .canvasBody .formWraper .formWraperBox form .addTemplateBtnArea {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
.canvas .canvasBody .formWraper .formWraperBox form .addTemplateBtnArea .addTemplateBtn {
  padding: 7px 20px;
  background: rgb(2, 167, 2);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
.canvas .canvasBody .formWraper .formWraperBox form .addTemplateBtnArea .addTemplateBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.canvas .canvasBody .formWraper .formWraperBox form .removeBtnArea {
  width: 100%;
  margin-top: 20px;
  display: flex;
}
.canvas .canvasBody .formWraper .formWraperBox form .removeBtnArea .removeTemplateBtn {
  padding: 7px 20px;
  background: var(--fourthColor);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
.canvas .canvasBody .formWraper .formWraperBox form .removeBtnArea .removeTemplateBtn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.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 .courseBoxWraper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .courseBoxWraper::after {
  content: "";
  height: 0;
  width: 24%;
}
.canvas .canvasBody .courseBoxWraper .dummyDiv {
  flex: 0 0 24%;
  height: 0;
}
.canvas .canvasBody .courseBoxWraper .courseBox {
  flex: 0 0 24%;
  background: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.039);
  text-decoration: none;
  transition: 0.2s;
  position: relative;
  margin-top: 20px;
  z-index: 0;
}
.canvas .canvasBody .courseBoxWraper .courseBox:hover .courseBoxThumbnail img {
  transition: 0.4s;
  transform: scale(1.1);
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBoxLink {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBtnArea {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 10px;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBtnArea .editCourseBtn {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  color: rgb(0, 69, 229);
  margin-left: 10px;
  transition: 0.2s;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBtnArea .editCourseBtn span {
  font-size: 18px;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBtnArea .editCourseBtn:hover {
  background: var(--secondaryColor);
  color: white;
  transition: 0.2s;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBtnArea .deleteCourseBtn {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  margin-left: 10px;
  color: red;
  transition: 0.2s;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBtnArea .deleteCourseBtn span {
  font-size: 18px;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBtnArea .deleteCourseBtn:hover {
  background: var(--secondaryColor);
  color: white;
  transition: 0.2s;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBoxThumbnail {
  width: 100%;
  height: 200px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .courseBoxWraper .courseBox .courseBoxThumbnail {
    height: 170px;
  }
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBoxThumbnail::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.196);
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBoxContent {
  width: 100%;
  padding: 15px 20px;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBoxContent p {
  font-size: 16px;
  font-weight: 500;
  max-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBoxContent .price {
  margin-top: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgb(138, 138, 138);
}
.canvas .canvasBody .courseBoxWraper .courseBox .courseBoxContent .price span {
  color: #00c300;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  margin-left: 20px;
}
.canvas .canvasBody .categoryProfileSection {
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .categoryProfileSection .categoryProfileThumbnail {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: var(--thirdColor);
  padding: 10px;
}
.canvas .canvasBody .categoryProfileSection .categoryProfileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .categoryProfileSection .categoryProfileDetails {
  width: calc(100% - 120px);
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .categoryProfileSection .categoryProfileDetails h2 {
  font-size: 20px;
  font-weight: 600;
}
.canvas .canvasBody .categoryProfileSection .categoryProfileDetails .categoryProfileDetailsList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .categoryProfileSection .categoryProfileDetails .categoryProfileDetailsBox {
  border: 1px solid #eee;
  margin-top: 10px;
  margin-right: 20px;
  padding: 10px 20px;
  border-radius: 5px;
}
.canvas .canvasBody .categoryProfileSection .categoryProfileDetails .categoryProfileDetailsBox p {
  font-size: 14px;
  color: var(--secondaryTextColor);
  font-weight: 500;
}
.canvas .canvasBody .categoryProfileSection .categoryProfileDetails .categoryProfileDetailsBox p b {
  margin-left: 5px;
  color: black;
}
.canvas .canvasBody .productProfileHead {
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .productProfileHead .productProfileHeadThumbnail {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.canvas .canvasBody .productProfileHead .productProfileHeadThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails {
  width: calc(100% - 350px);
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails h1 {
  font-size: 25px;
  font-weight: 600;
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails .categoryBox {
  margin-top: 10px;
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails .categoryBox span {
  padding: 7px 20px;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 500;
  background: var(--thirdColor);
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails .subImages {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails .subImages p {
  font-size: 14px;
  font-weight: 500;
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails .subImages .subImagesMain {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails .subImages .subImagesMain .subImageBox {
  width: calc(12.5% - 20px);
  margin: 10px;
  height: 120px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails .subImages .subImagesMain .subImageBox:nth-child(1) {
  margin-left: 0;
}
.canvas .canvasBody .productProfileHead .productProfileHeadDetails .subImages .subImagesMain .subImageBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .productProfileBox {
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .productProfileBox .productProfileBoxHead {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.canvas .canvasBody .productProfileBox .productProfileBoxHead h2 {
  font-size: 16px;
  color: var(--secondaryTextColor);
  font-weight: 500;
}
.canvas .canvasBody .productProfileBox .productProfileBoxBody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .productProfileBox .productProfileBoxBody p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 15px;
}
.canvas .canvasBody .productProfileBox .productProfileBoxBody .productProfileTags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.canvas .canvasBody .productProfileBox .productProfileBoxBody .productProfileTags .productProfileTagsBox {
  padding: 5px 20px;
  font-size: 14px;
  margin-right: 10px;
  margin-top: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
}
.canvas .canvasBody .customerProfileSection {
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .customerProfileSection .customerProfileThumbnail {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: #ebfff3;
  padding: 10px;
}
.canvas .canvasBody .customerProfileSection .customerProfileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .customerProfileSection .customerProfileDetails {
  width: calc(100% - 150px);
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .customerProfileSection .customerProfileDetails h2 {
  font-size: 20px;
  font-weight: 500;
}
.canvas .canvasBody .customerProfileSection .customerProfileDetails p {
  font-size: 14px;
  margin-top: 7px;
  color: var(--secondaryTextColor);
  display: flex;
  align-items: center;
}
.canvas .canvasBody .customerProfileSection .customerProfileDetails p span {
  margin-right: 15px;
  font-size: 14px;
  color: var(--secondaryColor);
}
.canvas .canvasBody .customerProfileSection .customerProfileDetails p:nth-child(2) {
  margin-top: 15px;
}
.canvas .canvasBody .customerProfileBox {
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxHead {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxHead h2 {
  font-size: 16px;
  color: var(--secondaryTextColor);
  font-weight: 500;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxBody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxBody .customerProfileAddress {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxBody .customerProfileAddress::after {
  content: "";
  height: 0;
  width: 32%;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxBody .customerProfileAddress .customerProfileAddressBox {
  flex: 0 0 32%;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxBody .customerProfileAddress .customerProfileAddressBox h3 {
  font-size: 18px;
  font-weight: 500;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxBody .customerProfileAddress .customerProfileAddressBox p {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.7;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxBody .customerProfileAddress .customerProfileAddressBox .defualtAddress {
  margin-top: 15px;
}
.canvas .canvasBody .customerProfileBox .customerProfileBoxBody .customerProfileAddress .customerProfileAddressBox .defualtAddress span {
  padding: 5px 15px;
  font-size: 12px;
  background: rgba(0, 209, 0, 0.145);
  color: rgb(61, 183, 0);
  font-weight: 500;
  border-radius: 5px;
}
.canvas .canvasBody .bannerImageBoxSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .bannerImageBoxSection::after {
  content: "";
  height: 0;
  width: 24%;
}
.canvas .canvasBody .bannerImageBoxSection .dummyDiv {
  flex: 0 0 24%;
  height: 0;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox {
  flex: 0 0 24%;
  background: white;
  border-radius: 10px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxLink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .block {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  background: var(--fifthColor);
  color: white;
  font-size: 14px;
  border-bottom-right-radius: 5px;
  display: none;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 10px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxBtnAreaBtn {
  text-decoration: none;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxBtnAreaBtn span {
  font-size: 16px;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxEdit:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxEdit:hover span {
  color: white;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxEdit span {
  color: var(--secondaryColor);
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxDelete:hover {
  transition: 0.2s;
  background: var(--fourthColor);
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxDelete:hover span {
  color: white;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxDelete span {
  color: var(--fourthColor);
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxBlock:hover {
  transition: 0.2s;
  background: var(--fifthColor);
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxBlock:hover span {
  color: white;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxBtnArea .bannerImageBoxBlock span {
  color: var(--fifthColor);
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxThumbnail {
  width: 100%;
  height: 150px;
  background: #eee;
  overflow: hidden;
  border-radius: 10px;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxDetails {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .bannerImageBoxSection .bannerImageBox .bannerImageBoxDetails p {
  font-size: 18px;
  color: black;
  font-weight: 500;
  max-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .canvasBody .uiCustomizationSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox {
  width: 100%;
  background: white;
  border: 5px solid white;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
  z-index: 0;
  padding-top: 50px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .block {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  font-size: 14px;
  background: var(--fifthColor);
  color: white;
  z-index: 1;
  border-bottom-right-radius: 5px;
  display: none;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  margin: 10px 10px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateBoxBtn {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  border: 1px solid #eee;
  text-decoration: none;
  transition: 0.2s;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateBoxBtn span {
  font-size: 16px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateEdit:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateEdit:hover span {
  color: white;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateEdit span {
  color: var(--secondaryColor);
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateDelete:hover {
  transition: 0.2s;
  background: var(--fourthColor);
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateDelete:hover span {
  color: white;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateDelete span {
  color: var(--fourthColor);
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateBlock:hover {
  transition: 0.2s;
  background: var(--fifthColor);
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateBlock:hover span {
  color: white;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .uiCustomizationTemplateBoxBtnArea .uiCustomizationTemplateBlock span {
  color: var(--fifthColor);
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeBanner {
  width: 100%;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeBanner .homeBannerMain {
  width: 100%;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeBanner .homeBannerMain .homeBannerBox {
  width: 100%;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeBanner .homeBannerMain .homeBannerBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeBanner .homeBannerMain .owl-dots, .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeBanner .homeBannerMain .owl-nav {
  display: none;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts {
  width: 100%;
  padding: 20px 0px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsHead h1 {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsHead h1 {
    font-weight: 500;
    font-size: 18px;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList::after {
  content: "";
  height: 0;
  width: 32%;
}
@media (max-width: 768px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList::after {
    width: 49%;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .dummyDiv {
  flex: 0 0 32%;
  height: 0;
}
@media (max-width: 768px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .dummyDiv {
    flex: 0 0 49%;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 40px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox {
    flex: 0 0 49%;
    margin-top: 15px;
  }
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox:nth-child(1), .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox:nth-child(2) {
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox {
    margin-top: 7px;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .productLink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxThumbnail {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
}
@media (max-width: 480px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxThumbnail {
    height: 150px;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails {
    padding: 10px;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productTitle {
  font-size: 12px;
  font-weight: 600;
  color: black;
  max-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productStar {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productStar i {
  font-size: 8px;
  margin-right: 3px;
  color: rgb(0, 212, 0);
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productPrice {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productPrice del {
  color: var(--fourthColor);
  font-size: 14px;
  margin-right: 10px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productPrice span {
  font-size: 14px;
  margin-left: 20px;
}
@media (max-width: 480px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productPrice span {
    margin-left: 10px;
    font-size: 14px;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productPrice h1 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productPrice h1 {
    font-size: 20px;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productWhishlistBtn {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  background: var(--thirdColor);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  font-weight: 500;
  z-index: 1;
  cursor: pointer;
  border: 1px solid var(--thirdColor);
  transition: 0.2s;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productWhishlistBtn:hover {
  border: 1px solid var(--secondaryTextColor);
  transition: 0.2s;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productWhishlistBtn span, .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productWhishlistBtn i {
  font-size: 16px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .homeProductsBox .homeProductsBoxDetails .productWhishlistBtnActive i {
  color: red;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .paginationLoader {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 100px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .paginationLoader .paginationLoaderBox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .paginationLoader .paginationLoaderBox .loadingDot {
  width: 10px;
  height: 10px;
  background-color: var(--primaryColor);
  border-radius: 50%;
  margin: 0 5px;
  animation-name: up-and-down;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .paginationLoader .paginationLoaderBox .loadingDot2 {
  animation-delay: 0.1s;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .paginationLoader .paginationLoaderBox .loadingDot3 {
  animation-delay: 0.2s;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .paginationLoader .paginationLoaderBox .loadingDot4 {
  animation-delay: 0.3s;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .paginationLoader .paginationLoaderBox .loadingDot5 {
  animation-delay: 0.4s;
}
@keyframes up-and-down {
  to {
    opacity: 0.2;
    transform: translateY(-10px);
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .elsePage {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  background: white;
  border-radius: 20px;
  margin-top: 50px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .elsePage .elsePageIcon {
  width: 150px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .elsePage .elsePageIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .elsePage p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: rgb(182, 182, 182);
  margin-top: 10px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .elsePage a {
  text-decoration: none;
  padding: 10px 25px;
  background: var(--primaryColor);
  margin-top: 50px;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .elsePage a:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeProducts .homeProductsMain .homeProductsList .elsePage a i {
  margin-right: 10px;
  font-size: 16px;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection {
  width: 100%;
  padding: 20px 0px;
  background: white;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeProductsHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeProductsHead h1 {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1800px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeProductsHead h1 {
    font-weight: 500;
    font-size: 18px;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeAdsSectionMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeAdsSectionMain {
    flex-wrap: wrap;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeAdsSectionMain .homeAdsBox {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--hoverColor);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeAdsSectionMain .homeAdsBox {
    border-radius: 10px;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeAdsSectionMain .homeAdsBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeAdsSectionMain .homeAdsBox iframe {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeAdsSectionMain .homeAdsBox iframe {
    height: 220px;
  }
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeAdsSectionMain .owl-dots, .canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .homeAdsSection .homeAdsSectionMain .owl-nav {
  display: none;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .youtubeSection {
  width: 100%;
  padding-top: 20px;
  background: white;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .youtubeSection .youtubeSectionMain {
  width: 100%;
  position: relative;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn1 .uiCustomizationTemplateBox .youtubeSection .youtubeSectionMain::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  background: white;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li {
  list-style: none;
  flex: 0 0 48%;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(1) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon {
  background: #ffece6;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(1) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon::after {
  border: 1px solid #ffece6;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(1) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon span {
  color: #fa5f1c;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(2) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon {
  background: #f6f4ff;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(2) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon::after {
  border: 1px solid #f6f4ff;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(2) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon span {
  color: #5842c0;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(3) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon {
  background: #ebfff3;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(3) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon::after {
  border: 1px solid #dbfce8;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(3) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon span {
  color: #387f3d;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(4) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon {
  background: #fff9eb;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(4) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon::after {
  border: 1px solid #fff9eb;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(4) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon span {
  color: #ff8c00;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(5) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon {
  background: #fdebff;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(5) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon::after {
  border: 1px solid #fdebff;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(5) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon span {
  color: #ee00ff;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(6) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon {
  background: #ffebeb;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(6) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon::after {
  border: 1px solid #ffebeb;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li:nth-child(6) .uiCustomizationAddbtn .uiCustomizationAddbtnIcon span {
  color: #ff003c;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li .uiCustomizationAddbtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: white;
  border-radius: 10px;
  margin-top: 20px;
  padding: 20px;
  transition: 0.3s;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li .uiCustomizationAddbtn:hover {
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.041);
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li .uiCustomizationAddbtn .uiCustomizationAddbtnIcon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li .uiCustomizationAddbtn .uiCustomizationAddbtnIcon::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #eee;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li .uiCustomizationAddbtn .uiCustomizationAddbtnIcon span {
  font-size: 20px;
  color: black;
}
.canvas .canvasBody .uiCustomizationSection .uiCustomizationSectionColumn2 ul li .uiCustomizationAddbtn p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: black;
  margin-top: 20px;
}
.canvas .canvasBody .hotelList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .hotelList .hotelListBox {
  flex: 0 0 49.5%;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 5px 34px -12px rgba(0, 0, 0, 0.048);
  background: white;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxLink {
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxThumbnail {
  width: 150px;
  border-radius: 10px;
  max-height: 120px;
  overflow: hidden;
  background: #eee;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails {
  width: calc(100% - 170px);
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxDetailsHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxDetailsHead .hotelListBoxDetailsHeadColumn1 {
  flex: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxDetailsHead .hotelListBoxDetailsHeadColumn1 .hotelPalce {
  font-size: 12px;
  color: var(--secondaryTextColor);
  max-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  padding-left: 20px;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxDetailsHead .hotelListBoxDetailsHeadColumn1 .hotelPalce span {
  font-size: 14px;
  margin-right: 5px;
  position: absolute;
  left: 0;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxDetailsHead .hotelListBoxDetailsHeadColumn1 .hotelName {
  font-size: 20px;
  font-weight: 500;
  margin-top: 7px;
  max-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxDetailsHead .hotelListBoxDetailsHeadColumn2 {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(3, 201, 3, 0.041);
  border-radius: 10px;
  display: none;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxDetailsHead .hotelListBoxDetailsHeadColumn2 h1 {
  font-size: 22px;
  font-weight: 600;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelWebsite {
  font-size: 14px;
  margin-top: 15px;
  text-decoration: none;
  color: rgb(0, 187, 255);
  display: flex;
  align-items: center;
  z-index: 1;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelWebsite span {
  font-size: 14px;
  margin-right: 10px;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxBtnarea {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxBtnarea .hotelListBoxBtn {
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-right: 10px;
  margin-top: 10px;
  cursor: pointer;
  color: black;
  transition: 0.2s;
  z-index: 1;
  text-decoration: none;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxBtnarea .hotelListBoxEditBtn:hover {
  background: #00c300;
  color: white;
  border: 1px solid #00c300;
}
.canvas .canvasBody .hotelList .hotelListBox .hotelListBoxDetails .hotelListBoxBtnarea .hotelListBoxDeleteBtn:hover {
  background: var(--fourthColor);
  color: white;
  border: 1px solid var(--fourthColor);
}
.canvas .canvasBody .hotelList .elseDesign {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.canvas .canvasBody .hotelList .elseDesign .elseDesignthumbnail {
  width: 100%;
  height: 150px;
}
.canvas .canvasBody .hotelList .elseDesign .elseDesignthumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .hotelList .elseDesign p {
  font-size: 2em;
  font-weight: 800;
  text-align: center;
  margin-top: 40px;
  color: var(--secondaryTextColor);
}
.canvas .canvasBody .hotelProfileSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileBox {
  width: 100%;
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-top: 15px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileBox:nth-child(1) {
  margin-top: 0;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileTitle {
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileTitle h2 {
  font-size: 20px;
  color: var(--fifthColor);
  font-weight: 600;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn1 {
  width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: white;
  border-radius: 10px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn1 .hotelProfileBanner {
  width: 100%;
  height: calc(100vh - 160px);
  overflow-y: auto;
  padding: 0px;
  border-radius: 0px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn1 .hotelProfileBanner::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn1 .hotelProfileBanner .hotelProfileBannerBox {
  width: 100%;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  text-decoration: none;
  float: left;
  display: flex;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn1 .hotelProfileBanner .hotelProfileBannerBox:nth-child(1) {
  margin-top: 0;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn1 .hotelProfileBanner .hotelProfileBannerBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 {
  width: calc(100% - 550px);
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails {
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelName {
  font-size: 30px;
  font-weight: 600;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelLocation {
  font-size: 14px;
  color: var(--secondaryTextColor);
  margin-top: 7px;
  display: flex;
  align-items: center;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelLocation span {
  font-size: 14px;
  margin-right: 7px;
  color: var(--secondaryColor);
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelPrice {
  width: 100%;
  display: flex;
  margin-top: 20px;
  display: flex;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelPrice .hotelPriceBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(3, 201, 3, 0.041);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 22px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelDescription {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelDescription p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelDetailsList {
  width: 100%;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelDetailsList ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelDetailsList ul li {
  list-style: none;
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  border: 1px solid #eee;
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelDetailsList ul li span {
  font-size: 14px;
  color: var(--secondaryTextColor);
  display: flex;
  align-items: center;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelDetailsList ul li span span {
  color: var(--secondaryColor);
  margin-right: 10px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelDetailsList ul li a {
  text-decoration: none;
  color: rgb(0, 187, 255);
  display: flex;
  align-items: center;
  z-index: 1;
  margin-top: 10px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelBasicDetails .hotelDetailsList ul li p {
  display: flex;
  align-items: center;
  z-index: 1;
  margin-top: 10px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType {
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li {
  width: 100%;
  list-style: none;
  border-top: 1px solid #eee;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li:nth-child(1) {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li:nth-last-child(1) {
  padding-bottom: 0;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li .hotelRoomTypeHead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li .hotelRoomTypeHead .hotelRoomTypeName {
  font-size: 22px;
  font-weight: 500;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li .hotelRoomTypeHead .hotelPrice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(3, 201, 3, 0.041);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 18px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li .hotelRoomTypeBody {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li .hotelRoomTypeBody::after {
  content: "";
  height: 0;
  width: 30%;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li .hotelRoomTypeBody .hotelfecility {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li .hotelRoomTypeBody .hotelfecility p {
  font-size: 12px;
  font-weight: 500;
}
.canvas .canvasBody .hotelProfileSection .hotelProfileSectionColumn2 .hotelRoomType ul li .hotelRoomTypeBody .hotelfecility h3 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  color: var(--secondaryColor);
}
.canvas .canvasBody .locationDetailsSection {
  width: 100%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .locationDetailsSection .locationDetailsHead {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.canvas .canvasBody .locationDetailsSection .locationDetailsHead h1 {
  font-size: 2em;
  font-weight: 600;
  text-align: center;
}
.canvas .canvasBody .locationDetailsSection .locationDetailsGallery {
  width: 100%;
  margin-top: 30px;
  line-height: 0;
  -webkit-column-count: 4;
  -webkit-column-gap: 10px;
  -moz-column-count: 4;
  -moz-column-gap: 10px;
  column-count: 4;
  column-gap: 10px;
}
.canvas .canvasBody .locationDetailsSection .locationDetailsGallery .locationDetailsGalleryBox {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.2s;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.canvas .canvasBody .locationDetailsSection .locationDetailsGallery .locationDetailsGalleryBox:hover {
  transition: 0.2s;
  transform: scale(0.98);
}
.canvas .canvasBody .locationDetailsSection .locationDetailsGallery .locationDetailsGalleryBox:nth-child(1) {
  margin-top: 0;
}
.canvas .canvasBody .locationDetailsSection .locationDetailsGallery .locationDetailsGalleryBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.canvas .canvasBody .activityDetailsSection {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionTitle {
  width: 100%;
  background: white;
  padding: 100px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionTitle::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.368627451);
  z-index: -1;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionTitle h1 {
  font-size: 3em;
  font-weight: 600;
  text-align: center;
  color: white;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionBoxList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionBoxList .activityDetailsSectionBox {
  width: 100%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionBoxList .activityDetailsSectionBox .activityDetailsSectionBoxtitle {
  width: 100%;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionBoxList .activityDetailsSectionBox .activityDetailsSectionBoxtitle h2 {
  font-size: 22px;
  font-weight: 500;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionBoxList .activityDetailsSectionBox .activityDetailsSectionBoxGallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionBoxList .activityDetailsSectionBox .activityDetailsSectionBoxGallery .activityDetailsSectionBoxGalleryBox {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
  margin-top: 10px;
  margin-right: 10px;
  text-decoration: none;
}
.canvas .canvasBody .activityDetailsSection .activityDetailsSectionBoxList .activityDetailsSectionBox .activityDetailsSectionBoxGallery .activityDetailsSectionBoxGalleryBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .canvas .mobDesign {
    margin-top: 110px;
  }
}

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

.printDesingn {
  display: none;
}
.printDesingn .printDesingnBody {
  width: 100%;
  padding-top: 20px;
}
.printDesingn .printDesingnBody table {
  width: 100%;
  border-collapse: collapse;
}
.printDesingn .printDesingnBody table thead {
  width: 100%;
}
.printDesingn .printDesingnBody table thead tr {
  page-break-after: always;
}
.printDesingn .printDesingnBody table thead tr:nth-child(1) th {
  padding: 0;
  background: #fff;
}
.printDesingn .printDesingnBody table thead tr th {
  padding: 4px 6px;
  font-size: 14px;
  font-weight: 500;
  background: #B7CADB;
  color: rgb(0, 0, 0);
  text-align: left;
}
.printDesingn .printDesingnBody table thead tr th .printDesingnHead {
  width: 100%;
  padding: 20px 5%;
  background: #eee;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.printDesingn .printDesingnBody table thead tr th .printDesingnHead h1 {
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.printDesingn .printDesingnBody table thead tr th .printDesingnHead .logo {
  width: 150px;
}
.printDesingn .printDesingnBody table thead tr th .printDesingnHead .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.printDesingn .printDesingnBody table tbody {
  width: 100%;
}
.printDesingn .printDesingnBody table tbody tr {
  page-break-inside: avoid;
}
.printDesingn .printDesingnBody table tbody tr:nth-child(1) td {
  border-top: none;
}
.printDesingn .printDesingnBody table tbody tr td {
  padding: 4px 6px;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #eee;
}

@media print {
  .printDesingn {
    display: block;
  }
  main {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */.print-container { display: none; } @media print { .print-container { display: block; } }
