@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryColor: #ff6d01;
  --secondaryColor: #f3c43e;
  --secondaryTextColor: rgb(141, 141, 141);
  --thirdColor: rgb(0 185 116);
  --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: rgb(255, 242, 182);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 123, 28);
}

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

a, button, div, span, i, b, h1, h2, h3, h4, h5, h6, p, input, ul, li, select, label, textarea {
  -webkit-touch-callout: none;
  -webkit-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;
}

main {
  overflow: hidden;
}

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

.deleteAlert {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 40px;
  width: 400px;
  display: none;
}
@media (max-width: 480px) {
  .deleteAlert {
    width: 90%;
  }
}
.deleteAlert .deleteAlertMian {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.deleteAlert .deleteAlertMian .deleteAlertThumbnail {
  width: 200px;
}
.deleteAlert .deleteAlertMian .deleteAlertThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.deleteAlert .deleteAlertMian .deleteAlertContent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.deleteAlert .deleteAlertMian .deleteAlertContent p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteReason{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 10px;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteReason label {
  font-size: 14px;
  font-weight: 500;
  color: rgb(113, 113, 113);
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteReason input {
  width: 100%;
  height: 45px;
  margin-top: 5px;
  border: 1px solid rgba(128, 128, 128, 0.933);
  outline: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 15px;
  caret-color: var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea .closedeleteAlert {
  flex: 0 0 48%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: #eee;
  color: black;
  transition: 0.2s;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea .closedeleteAlert:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea .confirmdeleteAlert {
  flex: 0 0 48%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: var(--fourthColor);
  color: white;
  transition: 0.2s;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea .confirmdeleteAlert:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.filterSection {
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 110;
  width: 450px;
  height: 100vh;
  background: white;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .filterSection {
    width: 90%;
  }
}
.filterSection .filterSectionHead {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  height: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.039);
  padding: 10px 30px;
  display: flex;
  align-items: center;
}
.filterSection .filterSectionHead h1 {
  font-size: 22px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.filterSection .filterSectionHead h1 i {
  font-size: 20px;
  margin-right: 10px;
}
.filterSection .filterSectionBody {
  position: absolute;
  top: 60px;
  width: 100%;
  height: calc(100vh - 120px);
  left: 0;
  overflow-y: auto;
  padding: 20px 30px;
}
.filterSection .filterSectionBody .filterSectionBodyBox {
  width: 100%;
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.filterSection .filterSectionBody .filterSectionBodyBox:nth-child(1) {
  border-top: none;
  padding-top: 0px;
  margin-top: 0px;
}
.filterSection .filterSectionBody .filterSectionBodyBox h2 {
  font-size: 14px;
  font-weight: 500;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup {
  flex: 0 0 48%;
  display: block;
  margin-top: 20px;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup label {
  position: relative;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primaryColor);
  border-radius: 6px;
  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;
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 5px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filterSection .filterSectionBody .filterSectionBodyBox .filterSectionBodyCheckbox .formGroup input:checked + label:before {
  background: var(--primaryColor);
}
.filterSection .filterSectionFooter {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.039);
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filterSection .filterSectionFooter .closeFilter {
  flex: 0 0 48%;
  height: 40px;
  border-radius: 10px;
  background: #eee;
  color: black;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.2s;
}
.filterSection .filterSectionFooter .closeFilter:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.filterSection .filterSectionFooter .applyFilter {
  flex: 0 0 48%;
  height: 40px;
  border-radius: 10px;
  background: var(--primaryColor);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.2s;
}
.filterSection .filterSectionFooter .applyFilter:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.filterSectionActive {
  right: 0;
  transition: 0.2s;
}

.loginFormSection {
  position: relative;
  text-align: center;
  background: linear-gradient(60deg, #ffd49b 0%, var(--secondaryColor) 100%);
  z-index: 0;
}
.loginFormSection::after {
  position: absolute;
  z-index: -2;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("https://www.transparenttextures.com/patterns/skulls.png");
}
.loginFormSection .inner-header {
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
}
.loginFormSection .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.loginFormSection .flex .formBox {
  width: 450px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0px 0px 25px -7px rgba(0, 0, 0, 0.121);
}
@media (max-width: 480px) {
  .loginFormSection .flex .formBox {
    width: 90%;
    padding: 50px 30px;
  }
}
.loginFormSection .flex .formBox h1 {
  font-size: 25px;
  color: black;
  text-align: center;
  font-weight: 600;
}
.loginFormSection .flex .formBox p {
  font-size: 14px;
  text-align: center;
  color: var(--secondaryTextColor);
  font-weight: 500;
  margin-top: 15px;
}
.loginFormSection .flex .formBox form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.loginFormSection .flex .formBox form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.loginFormSection .flex .formBox form .formGroup input {
  width: 100%;
  height: 50px;
  border: 1px solid rgb(212, 212, 212);
  padding: 15px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  font-weight: 500;
}
.loginFormSection .flex .formBox form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
.loginFormSection .flex .formBox form .formGroup input::-moz-placeholder {
  color: var(--secondaryTextColor);
  opacity: 0.7;
  font-weight: 400;
}
.loginFormSection .flex .formBox form .formGroup input:-ms-input-placeholder {
  color: var(--secondaryTextColor);
  opacity: 0.7;
  font-weight: 400;
}
.loginFormSection .flex .formBox form .formGroup input::placeholder {
  color: var(--secondaryTextColor);
  opacity: 0.7;
  font-weight: 400;
}
.loginFormSection .flex .formBox form .formGroup .formPassword {
  position: relative;
}
.loginFormSection .flex .formBox form .formGroup .formPassword .togglePassword {
  position: absolute;
  top: 12px;
  right: 15px;
  cursor: pointer;
  color: var(--primaryColor);
  font-size: 20px;
}
.loginFormSection .flex .formBox form .forgtPsd {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.loginFormSection .flex .formBox form .forgtPsd a {
  font-size: 14px;
  text-align: right;
  margin-top: 20px;
  font-weight: 500;
  color: rgb(0, 119, 255);
}
.loginFormSection .flex .formBox form button {
  width: 100%;
  margin-top: 30px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--primaryColor), var(--secondaryColor));
  color: white;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0px 10px 20px -5px rgba(255, 106, 0, 0.33);
  transition: 0.2s;
}
.loginFormSection .flex .formBox form button:hover {
  transition: 0.2s;
  box-shadow: none;
}
.loginFormSection .flex .formBox form .loginBottomLine {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 500;
}
.loginFormSection .flex .formBox 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;
}
.loginFormSection .flex .formBox 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;
}
.loginFormSection .flex .formBox form .loginBottomLink {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loginFormSection .flex .formBox form .loginBottomLink p {
  font-size: 14px;
  margin-top: 0;
  font-weight: 500;
  text-align: center;
  opacity: 1;
}
.loginFormSection .flex .formBox form .loginBottomLink p a {
  text-decoration: none;
  color: var(--primaryColor);
}
.loginFormSection .waves {
  position: absolute;
  width: 100%;
  height: 15vh;
  bottom: 0;
  left: 0;
  z-index: -1;
  min-height: 100px;
  max-height: 300px;
}
.loginFormSection .waves .parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.loginFormSection .waves .parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}
.loginFormSection .waves .parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}
.loginFormSection .waves .parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}
.loginFormSection .waves .parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}
@-webkit-keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@media (max-width: 768px) {
  .loginFormSection .waves .waves {
    height: 40px;
    min-height: 40px;
  }
}

#formSection {
  width: 100%;
  margin-top: 80px;
  position: relative;
  z-index: 0;
}
@media (max-width: 480px) {
  #formSection {
    margin-top: 70px;
    padding: 50px 0px;
    min-height: calc(100vh - 70px);
  }
}
#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: 600px;
  padding: 80px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  #formSection .formSectionMain .form {
    width: 100%;
    padding: 0;
  }
}
#formSection .formSectionMain .form h1 {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 480px) {
  #formSection .formSectionMain .form h1 {
    font-size: 25px;
  }
}
#formSection .formSectionMain .form p {
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.7;
  opacity: 0.7;
}
#formSection .formSectionMain .form p span {
  color: var(--secondaryColor);
  font-weight: 500;
}
#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: rgb(113, 113, 113);
}
#formSection .formSectionMain .form form .formGroup input {
  width: 100%;
  height: 45px;
  margin-top: 5px;
  border: 1px solid rgba(128, 128, 128, 0.933);
  outline: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 15px;
  caret-color: var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup input[type=date] {
  background: white;
}
#formSection .formSectionMain .form form .formGroup select {
  width: 100%;
  height: 45px;
  margin-top: 5px;
  border: 1px solid rgba(128, 128, 128, 0.933);
  outline: none;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 15px;
  caret-color: var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup select:focus {
  border: 1px solid var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup select option {
  display: flex;
  flex-direction: column;
}
#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 .formGroup .formRadioBtn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio {
  display: inline-block;
  border-radius: 999px;
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio input {
  opacity: 0;
  width: auto;
  position: absolute;
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio label {
  border-radius: 9999px;
  padding: 10px 20px 10px 45px;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  font-size: 12px;
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio label::before, #formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio label::after {
  content: "";
  border-radius: 9999px;
  width: 16px;
  height: 16px;
  margin: 3px 0;
  position: absolute;
  z-index: 1;
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio label::before {
  background-color: #dcdcdc;
  border: 2px solid #dcdcdc;
  top: 4px;
  left: 15px;
  transition: all 0.5s;
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio label::after {
  background-color: #ffffff;
  top: 6px;
  left: 17px;
  transition: all 0.15s;
  transition-timing-function: ease-out;
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio label:hover {
  background-color: rgba(85, 123, 254, 0.1);
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio label:hover::before {
  border: 2px solid var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio input:checked ~ label {
  background-color: rgba(85, 123, 254, 0.1);
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio input:checked ~ label::before {
  background-color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup .formRadioBtn .myradio input:checked ~ label::after {
  width: 8px;
  height: 8px;
  top: 10px;
  left: 21px;
}
#formSection .formSectionMain .form form .formGroup .formSelect select {
  display: none !important;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#40FFFFFF", endColorstr="#00FFFFFF", GradientType=0);
  background-color: #fff;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: normal;
  line-height: 40px;
  outline: none;
  padding-left: 15px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  border-radius: 15px;
  height: 45px;
  font-weight: 500;
  margin-top: 5px;
  border: 1px solid rgba(128, 128, 128, 0.933);
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select:focus {
  border: 1px solid var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select:active,
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select.open {
  background-color: #fff !important;
  border: 1px solid var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select:after {
  height: 0;
  width: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #777;
  transform: origin(50% 20%);
  transition: all 0.125s ease-in-out;
  content: "";
  display: block;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select.open:after {
  transform: rotate(-180deg);
}
#formSection .formSectionMain .form form .formGroup .formSelect .current {
  display: block;
  overflow: hidden;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select.open .list {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select.open .option {
  cursor: pointer;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select.wide {
  width: 100%;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .list {
  box-sizing: border-box;
  transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
  transform: scale(0.75);
  transform-origin: 50% 0;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 4px;
  padding: 3px 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid rgba(128, 128, 128, 0.933);
  /* width */
  /* Track */
  /* Handle */
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .list::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .list::-webkit-scrollbar-track {
  background: rgba(199, 197, 197, 0.525);
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .list::-webkit-scrollbar-thumb {
  background: var(--secondaryColor);
  border-radius: 5px;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .dd-search {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .dd-searchbox {
  width: 95%;
  padding: 10px;
  border: 1px solid #999;
  border-color: #999;
  border-radius: 10px;
  outline: none;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .dd-searchbox::-moz-placeholder {
  font-weight: 400;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .dd-searchbox:-ms-input-placeholder {
  font-weight: 400;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .dd-searchbox::placeholder {
  font-weight: 400;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .dd-searchbox:focus {
  border-color: #12CBC4;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .list ul {
  padding: 0;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .option {
  cursor: default;
  font-weight: 500;
  line-height: 40px;
  font-size: 14px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
  list-style: none;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .option:hover,
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .option:focus {
  background-color: #f6f6f6 !important;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .option.selected {
  font-weight: 600;
  color: var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select .option.selected:focus {
  background: #f6f6f6;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
#formSection .formSectionMain .form form .formGroup .formSelect .dropdown-select a:hover {
  color: #666;
}
#formSection .formSectionMain .form form .formGroup .formSlotSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control {
  flex: 0 0 48%;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 10px;
}
@media (max-width: 480px) {
  #formSection .formSectionMain .form form .formGroup .formSlotSection .control {
    flex: 0 0 49%;
  }
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control svg {
  margin-right: 6px;
  border-radius: 50%;
  box-shadow: 3px 3px 16px rgba(0, 0, 0, 0.2);
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control input:disabled ~ .control__content {
  background: #eee;
  border: 1px solid #eee;
  opacity: 0.4;
  cursor: not-allowed;
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  font-size: 24px;
  line-height: 32px;
  background-color: rgba(137, 165, 255, 0.05);
  border: 1px solid #d9e0ff;
  border-radius: 10px;
}
@media (max-width: 480px) {
  #formSection .formSectionMain .form form .formGroup .formSlotSection .control__content {
    padding: 6px 10px;
  }
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control__content:hover {
  border: 1px solid var(--primaryColor);
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control__content .timeIcon {
  font-size: 16px;
  margin-right: 10px;
  color: black;
}
@media (max-width: 480px) {
  #formSection .formSectionMain .form form .formGroup .formSlotSection .control__content .timeIcon {
    font-size: 12px;
    margin-right: 5px;
  }
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control__content p {
  margin-top: 0;
  opacity: 1;
  color: black;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 480px) {
  #formSection .formSectionMain .form form .formGroup .formSlotSection .control__content p {
    font-size: 12px;
  }
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control input:focus ~ .control__content {
  background-color: rgba(0, 0, 0, 0.1);
}
#formSection .formSectionMain .form form .formGroup .formSlotSection .control input:checked ~ .control__content {
  background-color: rgba(0, 255, 0, 0.126);
  border: 1px solid rgb(0, 180, 0);
}
#formSection .formSectionMain .form form .otpField {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
@media (max-width: 480px) {
  #formSection .formSectionMain .form form .otpField {
    justify-content: space-between;
  }
}
#formSection .formSectionMain .form form .otpField input {
  width: 35px;
  height: 35px;
  font-size: 20px;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  margin-right: 10px;
  border: 2px solid rgb(191, 191, 191);
  background: #fff;
  font-weight: bold;
  color: #000;
  outline: none;
  transition: all 0.1s;
}
#formSection .formSectionMain .form form .otpField input:focus {
  border: 2px solid var(--primaryColor);
  box-shadow: 0 0 20px rgba(165, 39, 255, 0.062745098);
}
#formSection .formSectionMain .form form .otpField .disabled {
  border: 2px solid var(--primaryColor);
  color: var(--primaryColor);
}
#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);
}

#dashboard {
  width: 100%;
  background: rgba(242, 254, 243, 0.1490196078);
  min-height: 100vh;
  float: left;
  padding-bottom: 10px;
}
#dashboard nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  background: #fff;
  z-index: 100;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
  background-image: url("https://www.transparenttextures.com/patterns/skulls.png");
}
#dashboard nav .navLogo {
  float: left;
  height: 60px;
  width: 180px;
  display: flex;
  align-items: center;
  text-decoration: none;
	background: white;
}
#dashboard nav .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#dashboard nav .navLogo h1 {
  font-size: 16px;
  font-weight: 600;
  color: black;
}
#dashboard nav .navBar {
  float: left;
  height: 60px;
  display: flex;
  align-items: center;
  margin-left: 80px;
}
@media (max-width: 1024px) {
  #dashboard nav .navBar {
    display: none;
  }
}
#dashboard nav .navBar .navBarBox {
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 8px 10px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard nav .navBar .navBarBox:hover {
  transition: 0.2s;
  background: var(--primaryColor);
}
#dashboard nav .navBar .navBarBox:hover span {
  background: white;
}
#dashboard nav .navBar .navBarBox span {
  width: 20px;
  height: 2px;
  margin-top: 4px;
  border-radius: 5px;
  display: block;
  background: black;
  transition: 0.2s;
}
#dashboard nav .navBar .navBarBox span:nth-child(1) {
  margin-top: 0;
}
#dashboard nav .navBar .navBarBoxActive span:nth-child(1) {
  transform: rotate(45deg);
  margin-top: 0px;
}
#dashboard nav .navBar .navBarBoxActive span:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}
#dashboard nav .navBar .navBarBoxActive span:nth-child(3) {
  transform: rotate(-45deg);
  margin-top: -8px;
}
#dashboard nav .navBar2 {
  float: right;
  height: 60px;
  display: none;
  align-items: center;
  margin-left: 80px;
}
@media (max-width: 1024px) {
  #dashboard nav .navBar2 {
    display: flex;
  }
}
#dashboard nav .navBar2 .navBarBox2 {
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 8px 10px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard nav .navBar2 .navBarBox2:hover {
  transition: 0.2s;
  background: var(--primaryColor);
}
#dashboard nav .navBar2 .navBarBox2:hover span {
  background: white;
}
#dashboard nav .navBar2 .navBarBox2 span {
  width: 20px;
  height: 2px;
  margin-top: 4px;
  border-radius: 5px;
  display: block;
  background: black;
  transition: 0.2s;
}
#dashboard nav .navBar2 .navBarBox2 span:nth-child(1) {
  margin-top: 0;
}
#dashboard nav .navProfile {
  float: right;
  height: 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  #dashboard nav .navProfile {
    display: none;
  }
}
#dashboard nav .navProfile .navProfileBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
#dashboard nav .navProfile .navProfileBox .navProfileThumbnail {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--primaryColor);
}
#dashboard nav .navProfile .navProfileBox .navProfileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#dashboard nav .navProfile .navProfileBox .navProfileName {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
#dashboard nav .navProfile .navProfileBox .navProfileName p {
  font-size: 16px;
  font-weight: 500;
	color: black;
}
#dashboard nav .navProfile .navProfileBox .navProfileName span {
  font-size: 12px;
  color: rgb(84, 84, 84);
}
#dashboard .sidemenu {
  position: fixed;
  width: 300px;
  height: calc(100vh - 80px);
  background: white;
  margin-top: 70px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
  border-radius: 20px;
  left: 10px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 100;
  transition: 0.2s;
}
@media (max-width: 1024px) {
  #dashboard .sidemenu {
    display: none;
  }
}
#dashboard .sidemenu h2 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}
#dashboard .sidemenu h2:nth-child(1) {
  margin-top: 0;
  border-top: none;
  padding-top: 0px;
}
#dashboard .sidemenu ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  transition: 0.2s;
}
#dashboard .sidemenu ul::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
#dashboard .sidemenu ul:nth-last-child(2) {
  margin-bottom: 30px;
}
#dashboard .sidemenu ul li {
  width: 100%;
  list-style: none;
  transition: 0.2s;
}
#dashboard .sidemenu ul li a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
#dashboard .sidemenu ul li a:hover .sidemenuIcon {
  background: var(--secondaryColor);
  color: white;
  transition: 0.2s;
}
#dashboard .sidemenu ul li a .sidemenuIcon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 10px;
  background: rgba(247, 254, 251, 0.548);
  color: var(--primaryColor);
  border: 1px solid #eee;
  transition: 0.2s;
}
#dashboard .sidemenu ul li a p {
  width: calc(100% - 60px);
  font-size: 12px;
  font-weight: 500;
  color: rgb(95, 95, 95);
}
#dashboard .sidemenu ul li .sidemenuLinkActive:hover .sidemenuIcon {
  background: var(--primaryColor);
  color: white;
  transition: 0.2s;
}
#dashboard .sidemenu ul li .sidemenuLinkActive .sidemenuIcon {
  background: var(--primaryColor);
  color: white;
  box-shadow: 0px 5px 20px -2px rgba(0, 76, 255, 0.235);
  border: 1px solid var(--primaryColor);
}
#dashboard .sidemenu ul li .sidemenuLinkActive p {
  color: black;
}
#dashboard .sidemenu .sidemenuFooter {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 0px 10px 10px 20px;
}
#dashboard .sidemenu .sidemenuFooter span {
  margin-top: 5px;
  font-size: 10px;
  color: rgb(146, 146, 146);
}
#dashboard .sidemenuFullActive {
  width: 100px;
  padding: 10px !important;
  transition: 0.2s;
}
#dashboard .sidemenuFullActive h2 {
  display: none;
}
#dashboard .sidemenuFullActive ul {
  border-top: 1px solid #eee;
  margin-top: 30px;
  transition: 0.2s;
}
#dashboard .sidemenuFullActive ul:nth-child(2) {
  margin-top: 0;
  border-top: none;
}
#dashboard .sidemenuFullActive ul li {
  flex: 100%;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#dashboard .sidemenuFullActive ul li .sidemenuIcon {
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
  transition: 0.2s;
}
#dashboard .sidemenuFullActive ul li p {
  display: none;
}
#dashboard .sidemenuFullActive .sidemenuFooter {
  display: none;
}
#dashboard .mobileSidemenu {
  position: fixed;
  width: 350px;
  height: 100vh;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
  border-radius: 20px 0 0 20px;
  right: -110%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 110;
  transition: 0.2s;
}
@media (max-width: 480px) {
  #dashboard .mobileSidemenu {
    width: 85%;
  }
}
#dashboard .mobileSidemenu .closeMobileSidemenu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: black;
}
#dashboard .mobileSidemenu h2 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}
#dashboard .mobileSidemenu h2:nth-child(1) {
  margin-top: 0;
  border-top: none;
  padding-top: 0px;
}
#dashboard .mobileSidemenu ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  transition: 0.2s;
}
#dashboard .mobileSidemenu ul::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
#dashboard .mobileSidemenu ul:nth-last-child(2) {
  margin-bottom: 30px;
}
#dashboard .mobileSidemenu ul li {
  width: 100%;
  list-style: none;
  transition: 0.2s;
}
#dashboard .mobileSidemenu ul li a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
#dashboard .mobileSidemenu ul li a:hover .sidemenuIcon {
  background: var(--secondaryColor);
  color: white;
  transition: 0.2s;
}
#dashboard .mobileSidemenu ul li a .sidemenuIcon {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 10px;
  background: rgba(247, 254, 251, 0.548);
  color: var(--primaryColor);
  border: 1px solid #eee;
  transition: 0.2s;
}
#dashboard .mobileSidemenu ul li a p {
  width: calc(100% - 60px);
  font-size: 14px;
  font-weight: 500;
  color: rgb(95, 95, 95);
}
#dashboard .mobileSidemenu ul li .sidemenuLinkActive:hover .sidemenuIcon {
  background: var(--primaryColor);
  color: white;
  transition: 0.2s;
}
#dashboard .mobileSidemenu ul li .sidemenuLinkActive .sidemenuIcon {
  background: var(--primaryColor);
  color: white;
  box-shadow: 0px 5px 20px -2px rgba(0, 76, 255, 0.235);
  border: 1px solid var(--primaryColor);
}
#dashboard .mobileSidemenu ul li .sidemenuLinkActive p {
  color: black;
}
#dashboard .mobileSidemenu .sidemenuFooter {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 0px 10px 10px 20px;
}
#dashboard .mobileSidemenu .sidemenuFooter span {
  margin-top: 5px;
  font-size: 10px;
  color: rgb(146, 146, 146);
}
#dashboard .mobileSidemenuActive {
  right: 0;
  transition: 0.2s;
}
#dashboard .canvas {
  width: calc(100% - 350px);
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  float: right;
  padding-right: 2.5%;
  transition: 0.2s;
}
@media (max-width: 1024px) {
  #dashboard .canvas {
    width: 100%;
    padding: 0px 2.5%;
  }
}
#dashboard .canvas .canvasHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
#dashboard .canvas .canvasHead .canvasHeadBox1 {
  display: flex;
  flex-direction: column;
}
#dashboard .canvas .canvasHead .canvasHeadBox1 h1 {
  font-size: 2em;
  font-weight: 500;
  height: 45px;
  max-width: 700px;
	line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#dashboard .canvas .canvasHead .canvasHeadBox1 .breadCrumbs {
  max-width: 700px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
#dashboard .canvas .canvasHead .canvasHeadBox1 .breadCrumbs a {
  text-decoration: none;
  font-size: 14px;
  color: var(--secondaryTextColor);
}
#dashboard .canvas .canvasHead .canvasHeadBox1 .breadCrumbs a:hover {
  color: var(--primaryColor);
}
#dashboard .canvas .canvasHead .canvasHeadBox1 .breadCrumbs span {
  font-size: 12px;
  margin: 0px 5px;
  color: black;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .addBtn {
  background: var(--primaryColor);
  color: white;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  padding: 14px 25px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px -2px rgba(0, 76, 255, 0.235);
  transition: 0.2s;
}
@media (max-width: 480px) {
  #dashboard .canvas .canvasHead .canvasHeadBox2 .addBtn {
    position: fixed;
    bottom: 10px;
    left: 5%;
    width: 90%;
    z-index: 10;
    text-align: center;
  }
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .addBtn:hover {
  transition: 0.2s;
  box-shadow: none;
  background: var(--secondaryColor);
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox{
	margin-right: 50px;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle{
	margin: 0 4rem;
	padding: 0;
	position: relative;
	border: none;
	height: 1.5rem;
	width: 3rem;
	border-radius: 1.5rem;
	color: #6b7381;
	background: #bdc1c8;
	transform: scale(.7);
}

#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle:focus,
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.focus,
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle:focus.active,
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.focus.active {
  outline: none;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle:before,
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle:after {
  line-height: 1.5rem;
  width: 4rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity 0.25s;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle:before {
  content: 'Not Delivered';
  left: -4rem;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle:after {
  content: 'Delivered';
  right: -4rem;
  opacity: 0.5;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle > .handle {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 1.125rem;
  background: #fff;
  transition: left 0.25s;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.active {
  transition: background-color 0.25s;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.active > .handle {
  left: 1.6875rem;
  transition: left 0.25s;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.active:before {
  opacity: 0.5;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.active:after {
  opacity: 1;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle:before,
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle:after {
  color: #6b7381;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.active {
  background-color: #29b5a8;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg {
  margin: 0 5rem;
  padding: 0;
  position: relative;
  border: none;
  height: 2.5rem;
  width: 5rem;
  border-radius: 2.5rem;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg:focus,
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg.focus,
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg:focus.active,
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg.focus.active {
  outline: none;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg:before,
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg:after {
  line-height: 2.5rem;
  width: 12rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity 0.25s;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg:before {
  content: 'Not Delivered';
  left: -12rem;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg:after {
  content: 'Delivered';
  right: -11rem;
  opacity: 0.5;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.toggle2:before{
  content: 'Offline Payment';
  left: -13rem;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.toggle2:after {
  content: 'Online Payment';
  right: -13rem;
  opacity: 0.5;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg > .handle {
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 1.875rem;
  background: #fff;
  transition: left 0.25s;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg.active {
  transition: background-color 0.25s;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg.active > .handle {
  left: 2.8125rem;
  transition: left 0.25s;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg.active:before {
  opacity: 0.5;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadCheckbox .btn-toggle.btn-lg.active:after {
  opacity: 1;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadSelectBox{
	display: flex;
	align-items: center;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadSelectBox select{
	height: 35px;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 0px 10px;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadSelectBox button{
	width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primaryColor);
    color: white;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.2s;
}
#dashboard .canvas .canvasHead .canvasHeadBox2 .canvasHeadSelectBox button:hover{
    transition: 0.2s;
	opacity: 0.7;
}




#dashboard .canvas .tileSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#dashboard .canvas .tileSection .col_3 {
  flex: 0 0 32%;
}
@media (max-width: 1024px) {
  #dashboard .canvas .tileSection .col_3 {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #dashboard .canvas .tileSection .col_3 {
    flex: 100%;
  }
}
#dashboard .canvas .tileSection .col_4 {
  flex: 0 0 23%;
}
@media (max-width: 1024px) {
  #dashboard .canvas .tileSection .col_4 {
    flex: 0 0 30%;
  }
}
@media (max-width: 768px) {
  #dashboard .canvas .tileSection .col_4 {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #dashboard .canvas .tileSection .col_4 {
    flex: 100%;
  }
}
#dashboard .canvas .tileSection .tileSectionBox {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  background: white;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.059);
  border-radius: 15px;
}
#dashboard .canvas .tileSection .tileSectionBox:nth-child(1) .tileSectionBoxDetails {
  background: #fff1d8;
}
#dashboard .canvas .tileSection .tileSectionBox:nth-child(2) .tileSectionBoxDetails {
  background: #ffe6ff;
}
#dashboard .canvas .tileSection .tileSectionBox:nth-child(3) .tileSectionBoxDetails {
  background: #eafff1;
}
#dashboard .canvas .tileSection .tileSectionBox:nth-child(4) .tileSectionBoxDetails {
  background: #eaf3ff;
}
#dashboard .canvas .tileSection .tileSectionBox:nth-child(5) .tileSectionBoxDetails {
  background: #ffffea;
}
#dashboard .canvas .tileSection .tileSectionBox:nth-child(6) .tileSectionBoxDetails {
  background: #fff1d8;
}
#dashboard .canvas .tileSection .tileSectionBox:nth-child(7) .tileSectionBoxDetails {
  background: #ffe6ff;
}
#dashboard .canvas .tileSection .tileSectionBox:nth-child(8) .tileSectionBoxDetails {
  background: #eafff1;
}
#dashboard .canvas .tileSection .tileSectionBox .tileSectionBoxDetails {
  width: 100%;
  background: #fff;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 15px;
}
#dashboard .canvas .tileSection .tileSectionBox .tileSectionBoxDetails h2 {
  font-size: 22px;
  font-weight: 600;
  width: 50%;
  line-height: 1.5;
  color: black;
}
@media (max-width: 1800px) {
  #dashboard .canvas .tileSection .tileSectionBox .tileSectionBoxDetails h2 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  #dashboard .canvas .tileSection .tileSectionBox .tileSectionBoxDetails h2 {
    width: 100%;
  }
  #dashboard .canvas .tileSection .tileSectionBox .tileSectionBoxDetails h2 br {
    display: none;
  }
}
#dashboard .canvas .tileSection .tileSectionBox .tileSectionBoxDetails .tileSectionBoxDetailsThumbnail {
  position: absolute;
  right: 0;
  top: -50px;
  height: 180px;
  width: 180px;
}
#dashboard .canvas .tileSection .tileSectionBox .tileSectionBoxDetails .tileSectionBoxDetailsThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#dashboard .canvas .tileSection .tileSectionBox .tileSectionBoxFooter {
  width: 100%;
  padding: 20px 30px;
  background: white;
  border-radius: 15px;
}
#dashboard .canvas .tileSection .tileSectionBox .tileSectionBoxFooter p {
  font-size: 16px;
  font-weight: 500;
  color: var(--thirdColor);
}
#dashboard .canvas .tileSection .dummyDiv {
  height: 0;
}
#dashboard .canvas .tableDetailsBoxSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#dashboard .canvas .tableDetailsBoxSection .col_3 {
  flex: 0 0 32%;
}
@media (max-width: 1024px) {
  #dashboard .canvas .tableDetailsBoxSection .col_3 {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #dashboard .canvas .tableDetailsBoxSection .col_3 {
    flex: 100%;
  }
}
#dashboard .canvas .tableDetailsBoxSection .col_4 {
  flex: 0 0 23%;
}
@media (max-width: 1024px) {
  #dashboard .canvas .tableDetailsBoxSection .col_4 {
    flex: 0 0 30%;
  }
}
@media (max-width: 768px) {
  #dashboard .canvas .tableDetailsBoxSection .col_4 {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #dashboard .canvas .tableDetailsBoxSection .col_4 {
    flex: 100%;
  }
}
#dashboard .canvas .tableDetailsBoxSection .tableDetailsBox {
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  color: white;
}
#dashboard .canvas .tableDetailsBoxSection .tableDetailsBox:nth-child(1) {
  background: rgb(20, 201, 159);
}
#dashboard .canvas .tableDetailsBoxSection .tableDetailsBox:nth-child(2) {
  background: rgb(255, 95, 95);
}
#dashboard .canvas .tableDetailsBoxSection .tableDetailsBox p {
  font-size: 14px;
  font-weight: 500;
}
#dashboard .canvas .tableDetailsBoxSection .tableDetailsBox h1 {
  font-size: 20px;
  margin-top: 10px;
}
#dashboard .canvas .tableDetailsBoxSection .dummyDiv {
  height: 0;
}
#dashboard .canvas .tableWraper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  #dashboard .canvas .tableWraper {
    padding-bottom: 30px;
  }
}
#dashboard .canvas .tableWraper .tableWraperList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#dashboard .canvas .tableWraper .tableWraperList .tableWraperListTab {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
#dashboard .canvas .tableWraper .tableWraperList .tableWraperListTab button {
  padding: 12px 25px;
  background: white;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
#dashboard .canvas .tableWraper .tableWraperList .tableWraperListTab button:hover {
  background: var(--secondaryColor);
  transition: 0.2s;
  color: white;
}
#dashboard .canvas .tableWraper .tableWraperList .tableWraperListTab button .WaitingCount {
  position: absolute;
  padding: 3px 6px;
  border-radius: 50px;
  background: var(--thirdColor);
  color: white;
  font-size: 10px;
  top: -5px;
  right: -5px;
}
#dashboard .canvas .tableWraper .tableWraperList .tableWraperListTab .active {
  background: var(--primaryColor);
  color: white;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent {
  display: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead {
    flex-wrap: wrap;
  }
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .searchBox {
  display: flex;
  align-items: center;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .searchBox input {
  width: 350px;
  height: 40px;
  border: 1px solid #ccc;
  outline: none;
  padding: 10px;
  border-radius: 5px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .searchBox button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondaryColor);
  color: white;
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .searchBox button:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .dateRange {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .dateRange {
    margin-left: inherit;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .dateRange {
    justify-content: space-between;
    width: 100%;
  }
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .dateRange input {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 10px;
  outline: none;
}
@media (max-width: 480px) {
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .dateRange input {
    width: auto;
  }
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .dateRange input:focus {
  border: 1px solid var(--primaryColor);
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .dateRange span {
  width: 10px;
  height: 2px;
  background: var(--primaryColor);
  margin: 0px 10px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .dateRange button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  color: white;
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .dateRange button:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .filterTable {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .filterTable {
    margin-top: 20px;
  }
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .filterTable .filterTableBtn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--fifthColor);
  color: white;
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .filterTable .filterTableBtn:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .markdeliveredBtn{
	display: flex;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .markdeliveredBtn button{
	 background: var(--thirdColor); 
	color: white; 
	border: none; 
	padding: 10px 25px; 
	margin-left: 50px; 
	cursor: pointer; 
	border-radius: 5px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableHead .markdeliveredBtn button:disabled{
	opacity: .4;
	cursor: not-allowed;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper {
  width: 100%;
  overflow:auto;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table {
  width: 100%;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  border-top: none;
}
@media (max-width: 768px) {
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table {
    border: none;
  }
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table thead {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table tbody {
  background: #fff;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table th {
  background-color: #fff3e4;
  color: black;
  padding: 15px 20px !important;
  font-size: 16px !important;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table th .tableCheckBox input{
		width: 20px;
		height: 20px;
		cursor: pointer;
	}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td:nth-child(1) {
  background-color: #fff3e4;
  border-radius: 1em 1em 0 0;
  color: black;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table th, #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td {
  padding: 14px 20px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table tr, #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td {
  display: block;
  /*overflow: hidden;*/
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableCheckBox input{
		width: 20px;
		height: 20px;
		cursor: pointer;
	}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td {
  position: relative;
  border-top: 1px solid #eee;
  font-size: 14px;
  font-weight: 500;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td h4 {
  font-size: 2em;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .UniqueId span {
  background: var(--secondaryColor);
  color: white;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: 500;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea {
    float: right;
    justify-content: flex-end;
  }
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .keepWaitBtn {
  padding: 8px 15px;
  border-radius: 5px;
  background: var(--fourthColor);
  color: white;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .keepWaitBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .nextBtn {
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  background: var(--thirdColor);
  color: white;
  font-size: 12px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .nextBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .disableNextBtn {
  cursor: not-allowed;
  opacity: 0.5;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .viewDetailsBtn {
  padding: 8px 15px;
  border-radius: 5px;
  background: var(--fifthColor);
  color: white;
  font-size: 12px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .viewDetailsBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .tableDeleteBtn {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--fourthColor);
  color: white;
  font-size: 16px;
  margin-right: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .tableDeleteBtn:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .tableEditBtn {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--thirdColor);
  color: white;
  margin-right: 5px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .tableEditBtn:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .tableViewBtn {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(7, 106, 255);
  color: white;
  margin-right: 5px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .tableViewBtn:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .tableDisableBtn {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--fifthColor);
  color: white;
  font-size: 16px;
  margin-right: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .tableDisableBtn:hover {
  opacity: 0.7;
  transition: 0.2s;
}

#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .cancelBtn {
 padding: 0px 20px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffa217;
  color: white;
  font-size: 14px;
  margin-right: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
	gap :10px;
	position: relative;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .cancelBtn:hover {
  background: #f6b047;
  transition: 0.2s;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .cancelBtn:hover .tooltipPopup {
	visibility: visible;
	opacity: 1;
	transition: .3s;
    top: -120%;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .cancelBtn i{
	font-size: 16px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .cancelBtn .tooltipPopup{
	position: absolute;
    top: -140%;
    background: wheat;
    border-radius: 8px;
    padding: 10px 15px;
    right: 0;
    max-width: 350px;
    min-width: 200px;
	visibility: hidden;
	opacity: 0;
	transition: .3s;
	z-index: 5;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .cancelBtn .tooltipPopup::after{
	position :absolute;
	content: '';
	bottom: -5px;
	right: 20px;
	width: 10px;
	height: 10px;
    background: wheat;
	border-radius: 2px;
	transform: rotate(45deg);
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .tableBtnArea .cancelBtn .tooltipPopup p{
	font-size: 14px;
	color: black;
	opacity: 1;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .blockedAlert {
  margin-top: 10px;
  display: none;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td .blockedAlert span {
  padding: 5px 10px;
  font-size: 12px;
  background: var(--fourthColor);
  color: white;
  margin-top: 10px;
  border-radius: 5px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
  padding-left: 1em;
  font-weight: 500;
  font-size: 0.9em;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table tr {
  margin-bottom: 1.5em;
  border-radius: 1em;
  text-align: right;
  border: 1px solid #eee;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table tr:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table {
    max-width: 100%;
    margin: 0 auto;
  }
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table thead {
    visibility: visible;
    position: relative;
  }
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table th {
    text-align: left;
    font-size: 0.9em;
    font-weight: 500;
  }
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table tr {
    display: table-row;
    border: none;
    border-radius: 0;
    text-align: left;
  }
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td {
    display: table-cell;
  }
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td::before {
    content: none;
  }
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td:nth-child(1) {
    background: transparent;
    color: #444;
    border-radius: 0;
  }
  #dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table td:nth-child(n+2):nth-child(odd) {
    background-color: transparent;
  }
	#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper table .cancelTableRow td p{
		opacity: .2;
	}

}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper ul li {
  list-style: none;
  line-height: 1.7;
  margin-top: 15px;
  display: flex;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper ul li:nth-child(1) {
  margin-top: 0;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper ul li .dot {
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: black;
  margin-top: 10px;
  margin-right: 10px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .tableWraper h4 {
  font-size: 1.7em;
  margin-top: 10px;
  font-weight: 600;
  margin-bottom: 10px;
  background: #00a733;
  padding: 12px;
  text-align: center;
  color: white;
  border-radius: 5px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .elseDesign {
  width: 100%;
  height: 400px;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .elseDesign .elseDesignthumbnail {
  width: 150px;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .elseDesign .elseDesignthumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#dashboard .canvas .tableWraper .tableWraperList .tabcontent .tableWraperListTable .tableWraperListTableBody .elseDesign p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}
#dashboard .canvas .vazhipadDetails {
  width: 100%;
  background: white;
  padding: 30px 30px 10px 30px;
  box-shadow: 0 0 20px rgba(18, 18, 18, 0.046);
  border-radius: 15px;
  margin-top: 20px;
}
@media (max-width: 480px) {
  #dashboard .canvas .vazhipadDetails {
    flex: 100%;
    padding: 20px 20px 0px 20px;
  }
}
#dashboard .canvas .vazhipadDetails ul {
  width: 100%;
}
#dashboard .canvas .vazhipadDetails ul li {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
#dashboard .canvas .vazhipadDetails ul li:nth-child(1) {
  margin-top: 0;
}
#dashboard .canvas .vazhipadDetails ul li .vazhipadDetailsBox1 {
  flex: 0 0 30%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 480px) {
  #dashboard .canvas .vazhipadDetails ul li .vazhipadDetailsBox1 {
    flex: 100%;
  }
}
#dashboard .canvas .vazhipadDetails ul li .vazhipadDetailsBox1 span {
  font-size: 16px;
  font-weight: 600;
}
#dashboard .canvas .vazhipadDetails ul li .vazhipadDetailsBox2 {
  flex: 0 0 65%;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 480px) {
  #dashboard .canvas .vazhipadDetails ul li .vazhipadDetailsBox2 {
    flex: 100%;
    margin-top: 10px;
  }
}
#dashboard .canvas .vazhipadDetails ul li .vazhipadDetailsBox2 span {
  border: 1px solid rgb(250, 197, 164);
  background: rgba(255, 114, 6, 0.071);
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 20px;
  margin-bottom: 20px;
}
#dashboard .canvas .vazhipadDetails ul li .vazhipadDetailsBox2 .printBtn {
  font-size: 14px;
  background: var(--thirdColor);
  color: white;
  border-radius: 10px;
  padding: 10px 30px;
  text-decoration: none;
  font-weight: 400;
  transition: 0.2s;
}
#dashboard .canvas .vazhipadDetails ul li .vazhipadDetailsBox2 .printBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}
#dashboard .canvas .doctorProfileSection {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  background: white;
  border-radius: 15px;
  padding-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead::after {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 200px;
  content: "";
  top: 0;
  left: 0;
  border-radius: 15px;
  overflow: hidden;
  background: url(../images/muralPaintnig.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: flex-end;
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfilethumbnail {
  width: 150px;
  height: 150px;
  border-radius: 30px;
  overflow: hidden;
  border: 5px solid white;
}
@media (max-width: 480px) {
  #dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfilethumbnail {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfilethumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfileName {
  margin-left: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  #dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfileName {
    margin-top: 0px;
  }
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfileName h2 {
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 480px) {
  #dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfileName h2 {
    font-size: 22px;
  }
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfileName h2 a {
  text-decoration: none;
  font-size: 18px;
  margin-left: 10px;
  color: var(--primaryColor);
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfileName h2 a:hover {
  color: var(--thirdColor);
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .doctorProfileName span {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .blockDoctorBtn {
  padding: 8px 25px;
  border: 1px solid var(--fourthColor);
  color: var(--fourthColor);
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}
#dashboard .canvas .doctorProfileSection .doctorProfileHead .doctorProfileHeadMain .doctorProfileHeadDetails .doctorProfileHeadDetailsBox .blockDoctorBtn:hover {
  background: var(--fourthColor);
  color: white;
  transition: 0.2s;
}
#dashboard .canvasActive {
  width: calc(100% - 150px);
  transition: 0.2s;
}
#dashboard .formWraper {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding-top: 20px;
  margin-top: 20px;
}
#dashboard .formWraper form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
#dashboard .formWraper form::after {
  content: "";
  height: 0;
  width: 30%;
}
#dashboard .formWraper form .dummyDiv {
  flex: 0 0 30%;
  height: 0;
}
@media (max-width: 768px) {
  #dashboard .formWraper form .dummyDiv {
    flex: 0 0 48%;
  }
}
#dashboard .formWraper form .formGroup {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #dashboard .formWraper form .formGroup {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #dashboard .formWraper form .formGroup {
    flex: 100%;
  }
}
#dashboard .formWraper form .formGroup label {
  font-size: 14px;
  font-weight: 500;
}
#dashboard .formWraper form .formGroup input {
  width: 100%;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  outline: none;
  margin-top: 5px;
  font-size: 16px;
}
#dashboard .formWraper form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
#dashboard .formWraper form .formGroup select {
  width: 100%;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  outline: none;
  margin-top: 5px;
  font-size: 16px;
}
#dashboard .formWraper form .formGroup select:focus {
  border: 1px solid var(--primaryColor);
}
#dashboard .formWraper form .formGroup .formPassword {
  position: relative;
  width: 100%;
}
#dashboard .formWraper form .formGroup .formPassword .togglePassword {
  position: absolute;
  right: 10px;
  top: 18px;
  cursor: pointer;
}
#dashboard .formWraper form .formGroup .formGroupRadioCheck {
  width: 100%;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
#dashboard .formWraper form .formGroup .formGroupRadioCheck label {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.375em;
  margin-right: 20px;
}
#dashboard .formWraper form .formGroup .formGroupRadioCheck label input {
  position: absolute;
  left: -9999px;
}
#dashboard .formWraper form .formGroup .formGroupRadioCheck label input:checked + span {
  background-color: #ffe8d6;
}
#dashboard .formWraper form .formGroup .formGroupRadioCheck label input:checked + span:before {
  box-shadow: inset 0 0 0 0.4375em red;
}
#dashboard .formWraper form .formGroup .formGroupRadioCheck label span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
}
#dashboard .formWraper form .formGroup .formGroupRadioCheck label span:hover {
  background-color: #ffe8d6;
}
#dashboard .formWraper form .formGroup .formGroupRadioCheck label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #ff6d01;
}
#dashboard .formWraper form .formGrouptextarea {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#dashboard .formWraper form .formGrouptextarea label {
  font-size: 14px;
  font-weight: 500;
}
#dashboard .formWraper form .formGrouptextarea textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  outline: none;
  margin-top: 5px;
  font-size: 16px;
}
#dashboard .formWraper form .formGrouptextarea textarea:focus {
  border: 1px solid var(--primaryColor);
}
#dashboard .formWraper form .profileUpload {
  width: 100%;
  margin-top: 20px;
}
#dashboard .formWraper form .profileUpload label {
  font-size: 14px;
  font-weight: 500;
}
#dashboard .formWraper form .profileUpload .file-upload {
  margin-top: 10px;
}
#dashboard .formWraper form .profileUpload .file-upload .image-box {
  width: 200px;
  height: 200px;
  cursor: pointer;
  border: 3px solid var(--primaryColor);
  border-radius: 15px;
  position: relative;
  z-index: 0;
}
@media (max-width: 480px) {
  #dashboard .formWraper form .profileUpload .file-upload .image-box {
    width: 100%;
  }
}
#dashboard .formWraper form .profileUpload .file-upload .image-box img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 13px;
}
#dashboard .formWraper form .profileUpload .file-upload .image-box .editPen {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: var(--primaryColor);
  color: white;
  bottom: -10px;
  right: -10px;
  border-radius: 50px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#dashboard .formWraper form .formBtnArea {
  width: 100%;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#dashboard .formWraper form .formBtnArea button {
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  border: none;
  outline: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  background: linear-gradient(45deg, var(--primaryColor), var(--secondaryColor));
  box-shadow: 0px 10px 20px -5px rgba(255, 106, 0, 0.33);
}
@media (max-width: 480px) {
  #dashboard .formWraper form .formBtnArea button {
    width: 100%;
    padding: 14px;
  }
}
#dashboard .formWraper form .formBtnArea button:hover {
  transition: 0.2s;
  box-shadow: none;
}
#dashboard .formWraper form .vazhipadTypeBox {
  width: 100%;
  display: none;
}
#dashboard .formWraper form .vazhipadTypeBox .formGroup {
  width: 30%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #dashboard .formWraper form .vazhipadTypeBox .formGroup {
    width: 48%;
  }
}
@media (max-width: 480px) {
  #dashboard .formWraper form .vazhipadTypeBox .formGroup {
    width: 100%;
  }
}
#dashboard .formWraper form .vazhipadTypeBox .formGroup label {
  font-size: 14px;
  font-weight: 500;
}
#dashboard .formWraper form .vazhipadTypeBox .formGroup input {
  width: 100%;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  outline: none;
  margin-top: 5px;
  font-size: 16px;
}
#dashboard .formWraper form .vazhipadTypeBox .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
#dashboard .formWraper form .vazhipadTypeBox .formGroup span {
  font-size: 14px;
  margin-top: 10px;
  color: var(--secondaryTextColor);
}
#dashboard .formWraper form .vazhipadTypeBox label {
  font-size: 14px;
  font-weight: 500;
}
#dashboard .formWraper form .vazhipadTypeBox .formGroupRadioCheck {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#dashboard .formWraper form .vazhipadTypeBox .formGroupRadioCheck input[type=checkbox] {
  visibility: hidden;
  height: 0;
  width: 0;
  display: none;
}
#dashboard .formWraper form .vazhipadTypeBox .formGroupRadioCheck label {
  display: flex;
  flex: 0 0 15%;
  margin-top: 20px;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  text-align: center;
  cursor: pointer;
  padding: 5px 10px;
  height: 45px;
  border-radius: 6px;
  transition: color 0.1s ease-out, background-color 0.1s ease-in;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  #dashboard .formWraper form .vazhipadTypeBox .formGroupRadioCheck label {
    flex: 0 0 22%;
  }
}
@media (max-width: 480px) {
  #dashboard .formWraper form .vazhipadTypeBox .formGroupRadioCheck label {
    flex: 0 0 32%;
  }
}
#dashboard .formWraper form .vazhipadTypeBox .formGroupRadioCheck label:last-of-type {
  margin-right: 0;
}
#dashboard .formWraper form .vazhipadTypeBox .formGroupRadioCheck input[type=checkbox]:checked + label {
  background-color: var(--thirdColor);
  color: white;
  border: 1px solid var(--thirdColor);
}
#dashboard .formWraper form .vazhipadTypeBox .formGroupRadioCheck input[type=checkbox]:hover:not(:checked) + label {
  background-color: var(--primaryColor);
  color: white;
  border: 1px solid var(--primaryColor);
}
#dashboard .formWraper form .formTag {
  flex: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#dashboard .formWraper form .formTag label {
  font-size: 14px;
  font-weight: 500;
}
#dashboard .formWraper form .formTag .formTagInput {
  display: flex;
  align-items: center;
}
#dashboard .formWraper form .formTag .formTagInput input {
  width: 30%;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  outline: none;
  margin-top: 5px;
  font-size: 16px;
}
#dashboard .formWraper form .formTag .formTagInput input:focus {
  border: 1px solid var(--primaryColor);
}
@media (max-width: 768px) {
  #dashboard .formWraper form .formTag .formTagInput input {
    width: 48%;
  }
}
@media (max-width: 480px) {
  #dashboard .formWraper form .formTag .formTagInput input {
    width: 100%;
  }
}
#dashboard .formWraper form .formTag .formTagInput button {
  height: 45px;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 25px;
  border-radius: 5px;
  background: var(--thirdColor);
  color: white;
  cursor: pointer;
  margin-left: 20px;
}
#dashboard .formWraper form .formTag ul#tagList {
  display: block;
  padding: 0;
  margin: 0;
}
#dashboard .formWraper form .formTag ul#tagList::after {
  content: "";
  clear: both;
  display: table;
}
#dashboard .formWraper form .formTag ul#tagList li {
  position: relative;
  list-style: none;
  float: left;
  font-size: 0.835rem;
  text-transform: capitalize;
  background-color: #E8F5E9;
  line-height: 1rem;
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-radius: 1rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  word-break: break-all;
  margin-top: 20px;
}
#dashboard .formWraper form .formTag ul#tagList li > span.rmTag {
  position: absolute;
  margin: 0.25rem;
  top: 0;
  right: 0;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-align: center;
  background-color: #C8E6C9;
  cursor: pointer;
  transition: 0.3s all;
}
#dashboard .formWraper form .formTag ul#tagList li > span.rmTag:hover {
  background-color: #ef9a9a;
}

.printDesign {
  display: none;
}
.printDesign2 {
  display: none;
}

@media print {
  #dashboard {
    display: none;
  }
	.pageLoader{
		display: none !important;
	}
	#draggable{
		display: none !important;
	}
  .printDesign {
    display: block;
  }
.printDesign2 {
    display: block;
}
  .printDesign .printDesignHead {
    width: 100%;
    border: 1px solid black;
    padding: 10px;
    display: flex;
	  justify-content: space-between;
  }
  .printDesign .printDesignHead .printDesignHeadLogo {
    width: 120px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .printDesign .printDesignHead .printDesignHeadLogo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .printDesign .printDesignHead .printDesignHeadLogo h1 {
    font-size: 26px;
    text-align: center;
  }
  .printDesign .printDesignHead .printDesignHeadAddress {
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    margin-top: 10px;
  }
  .printDesign .printDesignHead .printDesignHeadAddress p {
    text-align: right;
    font-size: 12px;
    line-height: 1.7;
  }
  .printDesign .printDesignProfile {
    width: 100%;
    border: 1px solid black;
    border-top: none;
    display: flex;
  }
  .printDesign .printDesignProfile .printDesignProfileBox {
    width: 100%;
    border-left: 1px solid black;
    padding: 10px;
    display: flex;
    flex-direction: column;
  }
  .printDesign .printDesignProfile .printDesignProfileBox:nth-child(1) {
    border-left: none;
  }
  .printDesign .printDesignProfile .printDesignProfileBox ul {
    width: 100%;
  }
  .printDesign .printDesignProfile .printDesignProfileBox ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
  }
  .printDesign .printDesignProfile .printDesignProfileBox ul li:nth-child(1) {
    margin-top: 0px;
  }
  .printDesign .printDesignProfile .printDesignProfileBox ul li span {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 130px;
  }
  .printDesign .printDesignProfile .printDesignProfileBox ul li p {
    width: calc(100% - 150px);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }
  .printDesign .printDesignTable {
    width: 100%;
    border: 1px solid black;
    border-top: none;
  }
  .printDesign .printDesignTable table {
    width: 100%;
    border-collapse: collapse;
    page-break-inside: auto;
  }
  .printDesign .printDesignTable table th, .printDesign .printDesignTable table td {
    border-top: 1px solid black;
    padding: 12px 12px;
    font-size: 12px;
    text-align: left;
  }
  .printDesign .printDesignTable table td {
    font-size: 12px;
  }
  .printDesign .printDesignTable table th b, .printDesign .printDesignTable table td b {
    font-weight: 600;
  }
  .printDesign .printDesignTable table th {
    font-weight: 600;
    text-align: left;
    white-space: pre;
  }
  .printDesign .printDesignTable tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  .printDesign .printDesignTable thead {
    display: table-header-group;
  }
  .printDesign .printDesignTable tfoot {
    display: table-footer-group;
  }
  .printDesign .printDesignTC h2 {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 20px;
  }
  .printDesign .printDesignTC p {
    font-size: 12px;
    line-height: 1.7;
    margin-top: 10px;
  }
	

	.printDesign2 .printDesignTable .printDesignTableList{
		width :100%;
		display :flex;
		flex-direction:column;
		margin-top: 10px;
		border-top: 1px solid #000;
		padding-top: 10px;
	}
.printDesign2 .printDesignTable .printDesignTableList:nth-child(1){
		margin-top: 0px;
		border-top: none;
		padding-top: 0px;
	}
	.printDesign2 .printDesignTable .printDesignTableList .printDesignTableListBox{
		width :100%;
		font-size: 14px;
		margin-top: 5px;
	}
.printDesign2 .printAddressBox{
	width: 100%;
	border: 1px solid black;
	padding: 40px;
	display: flex;
	flex-direction: column;
	margin-top: 50px;
    page-break-inside: avoid;
    page-break-after: auto;
}
	.printDesign2 .printAddressBox:nth-child(1){
	margin-top: 0;	
}
	.printDesign2 .printAddressBox h1{
		font-size: 14px;
		font-weight: 500;
		margin-bottom: 20px;
	}
	.printDesign2 .printAddressBox p{
		font-size: 16px;
		line-height: 1.7;
	}
	.printDesign2 .printAddressBox hr{
		margin: 50px 0px;
		border: .5px solid black;
	}

	.printDesign2 .printDesignHead {
    width: 100%;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	  flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .printDesign2 .printDesignHead .printDesignHeadLogo {
    width: 110px;
  }
  .printDesign2 .printDesignHead .printDesignHeadLogo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .printDesign2 .printDesignHead .printDesignHeadAddress {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: right;
  }
  .printDesign2 .printDesignHead .printDesignHeadAddress p {
    text-align: center;
    font-size: 10px;
    line-height: 1.5;
  }
  .printDesign2 .printDesignHead .printDesignHeadAddress h2 {
    text-align: center;
    font-size: 12px;
	  margin-top: 10px;
	  font-weight: 600;
  }
  .printDesign2 .printDesignProfile {
    width: 100%;
    border-top: 1px dashed black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	  flex-direction: column;
	  padding-top: 10px;
  }
  .printDesign2 .printDesignProfile .printDesignProfileBox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .printDesign2 .printDesignProfile .printDesignProfileBox:nth-child(1) {
    border-left: none;
  }
  .printDesign2 .printDesignProfile .printDesignProfileBox ul {
    width: 100%;
  }
  .printDesign2 .printDesignProfile .printDesignProfileBox ul li {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 5px;
  }
  .printDesign2 .printDesignProfile .printDesignProfileBox ul li:nth-child(1) {
    margin-top: 0px;
  }
  .printDesign2 .printDesignProfile .printDesignProfileBox ul li span {
    font-size: 10px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 130px;
  }
  .printDesign2 .printDesignProfile .printDesignProfileBox ul li p {
    width: calc(100% - 150px);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
  }
  .printDesign2 .printDesignTable {
    width: 100%;
    border-top: 1px dashed black;
	  margin-top: 10px;
	  padding-top: 0px;
  }
  .printDesign2 .printDesignTable table {
    width: 100%;
    border-collapse: collapse;
    page-break-inside: auto;
  }
  .printDesign2 .printDesignTable table th, .printDesign2 .printDesignTable table td {
    padding: 10px 0px;
    font-size: 10px;
    text-align: left;
  }
  .printDesign2 .printDesignTable table th b, .printDesign2 .printDesignTable table td b {
    font-weight: 600;
  }
  .printDesign2 .printDesignTable table th {
    font-weight: 600;
    text-align: left;
    white-space: pre;
  }
  .printDesign2 .printDesignTable tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  .printDesign2 .printDesignTable thead {
    display: table-header-group;
  }
  .printDesign2 .printDesignTable tfoot {
    display: table-footer-group;
	  border-top: 1px dashed black;
  }
.printDesign2 .printDesignTC{
		border-top: 1px dashed black;
	}
  .printDesign2 .printDesignTC h2 {
    font-size: 10px;
    font-weight: 600;
    margin-top: 10px;
  }
  .printDesign2 .printDesignTC p {
    font-size: 10px;
    line-height: 1.7;
    margin-top: 3px;
  }
	.filterSectionHead{
		display:none;
	}
}



.pagination {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.pagination .pageCount p {
  font-size: 14px;
}

.pagination .pageCount select {
  width: 100px;
  padding: 5px 10px;
  border: 1px solid #afafaf;
  border-radius: 5px;
  outline: none;
  margin-left: 20px;
  background: white;
}

.pagination .paginationCount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  .pagination .paginationCount {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

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

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

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

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

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

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



.pageLoader{
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: #ffffffad;
	z-index: 500;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.pageLoader .pageLoaderBox {
	height: 120px;
	width: 120px;
	box-sizing: border-box;
}
.pageLoader .pageLoaderBox .loader-1 {
	margin: 44px auto;
	box-sizing: border-box;
}


.pageLoader .pageLoaderBox .loader-1 {
	height: 60px;
	width: 60px;
}
.spin {
	position: relative;
	box-sizing: border-box;
	display: block;
	margin: auto;
    height: 60px;
    width: 60px;
    border: 5px solid #e7e7e7;
    border-top: 5px solid #ff9800;
	border-radius: 50%;
	animation: loader-1-spin 2s linear infinite;
}

@keyframes loader-1-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}






.customDropDown {
  position: relative;
}
.customDropDown ul {
  position: absolute;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  top: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 2;
  display: none;
}
.customDropDown ul li {
  list-style: none;
  font-size: 14px;
  padding: 12px 15px;
  cursor: pointer;
  transition: 0.2s;
}
.customDropDown ul li:hover {
  transition: 0.2s;
  background: #eee;
}


.canvasHeadToggleSection{
	width: 100%;
	margin-top: 20px;
	padding: 20px 0px;
}

.canvasHeadToggleSection input[type="checkbox"] {
	position: relative;
	appearance: none;
	width: 50px;
	height: 20px;
	background: #ccc;
	border-radius: 50px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: 0.4s;
}

.canvasHeadToggleSection input:checked[type="checkbox"] {
	background: #7da6ff;
}

.canvasHeadToggleSection input[type="checkbox"]::after {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	top: -5px;
	left: -5px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transform: scale(1.1);
	transition: 0.4s;
}

.canvasHeadToggleSection input:checked[type="checkbox"]::after {
	left: 50%;
}

.remarkPopup{
	position: fixed;
	z-index: 120;
	width: 900px;
	background: white;
	border-radius: 10px;
	padding: 20px;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	overflow: hidden;
	display: none;
}
@media(max-width:768px){
	.remarkPopup{
		width: 90%;
	}
}
.remarkPopup .closeRemarkPopup{
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}
.remarkPopup .remarkPopupMain{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 40px;
	max-height: 70vh;
    overflow-y: auto;
}
.remarkPopup .remarkPopupMain h2{
	font-size: 20px;
	font-weight: 600;
}
.remarkPopup .remarkPopupMain p{
	font-size: 14px;
	font-weight: 400;
	margin-top: 20px;
	line-height: 1.7;
}


.youtubeAdd{
	width: 100%;
	padding: 50px 20%;
	display :flex;
	flex-direction: column;
	justify-content :center;
	align-items: center;
}
@media(max-width:1024px){
	.youtubeAdd{
		padding: 50px 10%;
	}
}
@media(max-width:768px){
	.youtubeAdd{
		padding: 50px 5%;
	}
}
.youtubeAdd .youtubeAddLogo{
	width: 250px;
}
.youtubeAdd .youtubeAddLogo img{
	width: 100%;
	height :100%;
	object-fit: contain;
}
.youtubeAdd .youtubeAddIframe{
	width: 100%;
	height: 60vh;
	margin-top: 30px;
	border-radius: 20px;
	overflow: hidden;
}
@media(max-width:768px){
	.youtubeAdd .youtubeAddIframe{
		height: 400px;
	}
}
@media(max-width:480px){
	.youtubeAdd .youtubeAddIframe{
		height: 220px;
	}
}
.youtubeAdd .youtubeAddIframe iframe{
	width: 100%;
	height :100%;
	object-fit: contain;
}
.youtubeAdd .youtubeAddBtnArea{
	display: flex;
	margin-top: 50px;
}
.youtubeAdd .youtubeAddBtnArea .callBtn{
	display: flex;
	padding: 16px 50px;
	background: #3CCF4E;
	color: white;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 10px;
	transition: .3s;
}
.youtubeAdd .youtubeAddBtnArea .callBtn:hover{
	transition: .3s;
	opacity: .7;
}

.restbtn {
    cursor: pointer;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 5px 5px !important;
    font-size: 13px !important;
    width: 150px !important;
    margin-right: 20px;
    text-align: center;
    display: flex
;
    justify-content: center;
    align-items: center;
    background: #eeeeee38;
    transition: .2s;
}

.PasswordPopup{
	position: fixed;
	width: 400px;
	padding: 30px;
	background: white;
	border-radius: 20px;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	z-index: 150;
	box-shadow: 0 0 20px #00000012;
	display: none;
}
.closePasswordPopup{
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 20px;
	cursor: pointer;
}
.PasswordPopupmain{
	width: 100%;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
}
.PasswordPopupmain h1{
	font-size: 18px;
	font-weight: 500;
	color: black;
}

.copy-text {
	position: relative;
	background: #fff;
	border-radius: 10px;
	display: flex;
	margin-top: 20px;
}
.copy-text input.text {
	padding: 10px;
	font-size: 16px;
	color: #555;
	border: none;
	outline: none;
	width: 100%;
}
.copy-text button {
	padding: 10px;
	background: #5784f5;
	color: #fff;
	font-size: 18px;
	border: none;
	outline: none;
	border-radius: 10px;
	cursor: pointer;
	margin-left: 10px;
}

.copy-text button:active {
	background: #809ce2;
}
.copy-text button:before {
	content: "Copied";
	position: absolute;
	top: -45px;
	right: 0px;
	background: #5c81dc;
	padding: 8px 10px;
	border-radius: 20px;
	font-size: 15px;
	display: none;
}
.copy-text button:after {
	content: "";
	position: absolute;
	top: -20px;
	right: 25px;
	width: 10px;
	height: 10px;
	background: #5c81dc;
	transform: rotate(45deg);
	display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
	display: block;
}
/*# sourceMappingURL=style.css.map */