/* reset.scss */
/* Box sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default margins and paddings */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* Set default body styles */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: sans-serif;
  background-color: #fff;
  color: #000;
}

/* Remove list styles */
ul[role=list], ol[role=list] {
  list-style: none;
}

/* Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove built-in form typography styles */
input, button, textarea, select {
  font: inherit;
}

/* Remove animations and transitions for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
#nav-icon1 {
  width: 45px;
  height: 30px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #7165A5;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 12px;
}

#nav-icon1 span:nth-child(3) {
  top: 24px;
}

#nav-icon1.open span:nth-child(1) {
  top: 12px;
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 12px;
  transform: rotate(-135deg);
}

.navigation .linkLable {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.navigation .linkLable h5 {
  font-size: 18px;
  display: block;
  font-weight: 400;
}
.navigation > ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin: 0px;
  padding: 0px;
  align-items: center;
  width: 100%;
}
.navigation > ul > li {
  padding: 15px 15px;
  position: relative;
  width: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  cursor: pointer;
  position: relative;
  row-gap: 10px;
  border-bottom: 1px solid #ccc;
}
.navigation > ul > li .submenu {
  position: relative;
  width: 200px;
  background-color: #fff;
  top: 0px;
  text-align: left;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
  height: auto;
  max-height: 0px;
  overflow: hidden;
}
.navigation > ul > li .submenu h3 {
  font-size: 18px;
  font-weight: 400;
  padding: 15px;
}
.navigation > ul > li .submenu ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.navigation > ul > li .submenu ul li {
  text-align: left;
  justify-content: flex-start;
  padding: 10px 15px;
  margin: 0px;
  list-style-type: none;
}
.navigation > ul > li .submenu ul li a {
  text-decoration: none;
  color: #000;
  z-index: 1;
}
.navigation > ul > li:hover .submenu {
  max-height: 200px;
}
.navigation > ul > li:hover:after {
  width: 60%;
}
.navigation > ul > li img {
  z-index: 1;
  position: relative;
  fill: #fff;
  color: #aca9ff;
  filter: invert(39%) sepia(61%) saturate(653%) hue-rotate(211deg) brightness(87%) contrast(87%);
}
.navigation > ul > li::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #aca9ff;
  background: linear-gradient(90deg, rgb(172, 169, 255) 0%, rgba(172, 169, 255, 0) 100%);
  left: 0px;
  top: 0px;
  position: absolute;
}

.pageAdmin {
  background-color: #E5E5E5;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 15px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 480px) {
  .pageAdmin {
    padding-top: 90px;
  }
}
.pageAdmin .navigation {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .pageAdmin .navigation {
    width: 100%;
    position: fixed;
    width: 100%;
    height: calc(100vh - 70px);
    left: -100%;
    top: 70px;
    background-color: #fff;
    padding: 15px;
    box-sizing: border-box;
  }
}

.loginBtn {
  position: absolute;
  top: 20px;
  padding: 10px 30px;
  line-height: 20px;
  background-color: #7165A5;
  color: #fff;
  right: 20px;
  border-radius: 8px;
  display: none;
}
@media screen and (max-width: 480px) {
  .loginBtn {
    display: block;
  }
}

.horizontalMenu {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .horizontalMenu .icon-1 {
    display: none;
  }
}

.navDiv {
  width: 250px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: fixed;
  left: 15px;
  height: calc(100vh - 30px);
  z-index: 2;
}
.navDiv .logoDiv {
  width: 100%;
  position: relative;
}
.navDiv.active {
  width: 250px;
}
@media screen and (max-width: 480px) {
  .navDiv.active {
    width: 100%;
  }
  .navDiv.active .navigation {
    left: 0%;
  }
}
.navDiv.active .linkLable h5 {
  display: block;
}
@media screen and (max-width: 480px) {
  .navDiv {
    width: 100%;
    position: fixed;
    flex-direction: row;
    left: 0px;
    top: 0px;
    padding: 10px 15px;
    box-sizing: border-box;
    height: 70px;
  }
}
.navDiv .totalPoints {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 0px;
  margin: 0px;
  padding: 0px;
}
.navDiv .totalPoints abbr {
  font-size: 12px;
}
.navDiv .totalPoints span {
  font-size: 18px;
  font-weight: 700;
  color: #7165A5;
}
.navDiv .actions {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 480px) {
  .navDiv .actions {
    flex-direction: row;
    -moz-column-gap: 15px;
         column-gap: 15px;
    align-items: center;
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}
.navDiv .actions a {
  color: #414141;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .navDiv .actions a {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.navDiv .actions .icon-1 {
  display: none;
}
@media screen and (max-width: 480px) {
  .navDiv .actions .icon-1 {
    display: block;
  }
}
.navDiv .actions .profilePic {
  width: 40px;
  height: 40px;
  background-color: #e1fcef;
  color: #414141;
  border-radius: 50%;
  line-height: 40px;
  position: relative;
  cursor: pointer;
}
.navDiv .actions .profilePic .tooltip-text {
  visibility: hidden;
  width: 180px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px;
  border-radius: 5px;
  max-width: 400px;
  /* Positioning */
  position: absolute;
  z-index: 1;
  top: 50%;
  /* Show above the element */
  left: 120%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.navDiv .actions .profilePic:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.navDiv .actions > div {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.w-100 {
  width: 100%;
}

.marginT {
  margin-top: 30px;
}

table.dataTable th {
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #E5E5E5;
  color: #030229;
  text-align: left;
}

.tableDiv {
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  box-sizing: border-box;
  padding-bottom: 10px;
  overflow-x: scroll;
}
.tableDiv table {
  width: 100%;
}
.tableDiv thead td {
  vertical-align: top;
}

.contentDiv {
  width: calc(100% - 290px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  min-height: 100vh;
  padding-bottom: 40px;
  position: relative;
}
.contentDiv.active {
  width: calc(100% - 290px);
}
@media screen and (max-width: 480px) {
  .contentDiv.active {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .contentDiv {
    width: 100%;
  }
}
.contentDiv .chartDiv {
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  box-sizing: border-box;
}
.contentDiv .chartDiv canvas {
  width: 100%;
}
.contentDiv .pageHeading {
  width: 100%;
  justify-content: space-between;
  padding: 10px 0px;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.contentDiv .pageHeading h1 {
  font-size: 24px;
}
@media screen and (max-width: 480px) {
  .contentDiv .pageHeading .icon-1 {
    display: none;
  }
}
.contentDiv .pageHeading .actions {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin: 0px;
  padding: 0px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .contentDiv .pageHeading .actions {
    flex-direction: row;
    -moz-column-gap: 15px;
         column-gap: 15px;
    align-items: center;
    -moz-column-gap: 25px;
         column-gap: 25px;
    display: none;
  }
}
.contentDiv .pageHeading .actions .totalPoints {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 0px;
  margin: 0px;
  padding: 0px;
}
.contentDiv .pageHeading .actions .totalPoints abbr {
  font-size: 12px;
}
.contentDiv .pageHeading .actions .totalPoints span {
  font-size: 18px;
  font-weight: 700;
  color: #7165A5;
}
.contentDiv .pageHeading .actions a {
  color: #414141;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .contentDiv .pageHeading .actions a {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.contentDiv .pageHeading .actions .icon-1 {
  display: none;
}
@media screen and (max-width: 480px) {
  .contentDiv .pageHeading .actions .icon-1 {
    display: block;
  }
}
.contentDiv .pageHeading .actions .profilePic {
  width: 40px;
  height: 40px;
  background-color: #e1fcef;
  color: #414141;
  border-radius: 50%;
  line-height: 40px;
  position: relative;
  cursor: pointer;
}
.contentDiv .pageHeading .actions .profilePic .tooltip-text {
  visibility: hidden;
  width: 180px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px;
  border-radius: 5px;
  max-width: 400px;
  /* Positioning */
  position: absolute;
  z-index: 1;
  top: 50%;
  /* Show above the element */
  left: 120%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.contentDiv .pageHeading .actions .profilePic:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.contentDiv .pageHeading .actions > div {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.thankyouPage {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 15px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .thankyouPage {
    max-width: 100%;
    row-gap: 25px;
  }
}
.thankyouPage h2 {
  font-size: 64px;
  font-weight: 500;
  text-align: center;
  line-height: 56px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .thankyouPage h2 {
    font-size: 48px;
  }
}
.thankyouPage h4 {
  font-size: 22px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .thankyouPage h4 {
    font-size: 18px;
  }
}
.thankyouPage .tableDiv {
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 480px) {
  .thankyouPage .tableDiv {
    padding-bottom: 10px;
    overflow-x: scroll;
  }
}
.thankyouPage .notes {
  background-color: #E5E5E5;
  color: #030229;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 600px;
}
.thankyouPage .notes p {
  font-size: 16px;
  line-height: 22px;
  font-size: #030229;
  text-align: center;
}

.profilePage {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 15px;
  display: flex;
  flex-direction: row;
  row-gap: 40px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .profilePage {
    row-gap: 25px;
    flex-direction: column;
  }
}
.profilePage .profilePic {
  width: 15%;
}
@media screen and (max-width: 480px) {
  .profilePage .profilePic {
    width: 50%;
  }
}
.profilePage .profilePic img {
  width: 100%;
}
.profilePage .profileDetails {
  width: 82%;
}
@media screen and (max-width: 480px) {
  .profilePage .profileDetails {
    width: 100%;
  }
}
.profilePage .profileDetails ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  padding-right: 5%;
  row-gap: 45px;
}
@media screen and (max-width: 480px) {
  .profilePage .profileDetails ul {
    padding-left: 0px;
    padding-right: 0px;
    row-gap: 25px;
    margin: 0px;
  }
}
.profilePage .profileDetails ul li {
  width: 48%;
}
@media screen and (max-width: 480px) {
  .profilePage .profileDetails ul li {
    width: 100%;
  }
}
.profilePage .profileDetails ul li.full-w {
  width: 100%;
  text-align: right;
}

.tableDiv table {
  width: 100%;
}
.tableDiv table thead th {
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #E5E5E5;
  text-align: left;
  background-color: #f7f9fc;
  text-transform: uppercase;
  color: #687182;
  font-weight: 600;
}
.tableDiv table tbody td {
  font-size: 12px;
  padding: 10px;
  text-align: left;
  color: #030229;
  vertical-align: top;
  border-bottom: 1px solid #E5E5E5;
}

.buttons {
  font-size: 14px;
  background-color: #7165A5;
  color: #fff;
  line-height: 18px;
  padding: 17px 50px;
  border-radius: 10px;
  text-decoration: none;
}

.profilePage {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.formInput label {
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 480px) {
  .formInput label {
    font-size: 14px;
  }
}
.formInput.checkboxs input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.formInput.checkboxs input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #FFD66B;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.formInput.checkboxs label {
  position: relative;
  cursor: pointer;
}
.formInput.checkboxs label::before {
  content: "";
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #FFD66B;
  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: 5px;
}
.formInput.textinput2 input[type=text],
.formInput.textinput2 select {
  width: 100%;
  padding: 10px 15px;
  line-height: 20px;
  border: 1px solid #FFD66B;
  box-sizing: border-box;
}
.formInput.textinput2 textarea {
  width: 100%;
  padding: 10px 15px;
  line-height: 20px;
  border: 1px solid #FFD66B;
  height: 90px;
  box-sizing: border-box;
}
.formInput input {
  border: none;
  outline: none;
  color: #414141;
}
.formInput input[type=text],
.formInput select {
  width: 100%;
  padding: 10px 0;
  line-height: 20px;
  border: none;
  border-bottom: 1px solid #E5E5E5;
}
.formInput input[type=text]:disabled,
.formInput select:disabled {
  background-color: #f1f1f1;
}
.formInput input[type=date] {
  width: 100%;
  padding: 10px 0;
  line-height: 20px;
  border-bottom: 1px solid #E5E5E5;
}
.formInput button {
  font-size: 16px;
  background-color: #7165A5;
  color: #fff;
  line-height: 18px;
  padding: 17px 60px;
  border-radius: 10px;
  text-decoration: none;
  border: 0px;
  outline: 0px;
}

.tablemainDiv {
  padding: 40px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .tablemainDiv {
    padding: 15px;
  }
}
.tablemainDiv table {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
.tablemainDiv thead th {
  background-color: #f7f9fc;
  text-transform: uppercase;
  color: #687182;
  font-size: 14px;
  font-weight: 600;
}
.tablemainDiv .badge {
  line-height: 14px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}
.tablemainDiv .badge.bg-success {
  background-color: #e1fcef !important;
  color: #14804a;
}
.tablemainDiv .badge.bg-danger {
  background-color: #ffedef !important;
  color: #d1293d;
}
.tablemainDiv .badge.bg-warning {
  background-color: #fcf2e6 !important;
  color: #aa5b00;
}

.tablemainDiv2 {
  padding: 40px;
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
}
.tablemainDiv2 table {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
.tablemainDiv2 thead th {
  background-color: #f7f9fc;
  text-transform: uppercase;
  color: #687182;
  font-size: 14px;
  font-weight: 600;
}
.tablemainDiv2 .badge {
  line-height: 14px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}
.tablemainDiv2 .badge.bg-success {
  background-color: #e1fcef !important;
  color: #14804a;
}
.tablemainDiv2 .badge.bg-danger {
  background-color: #ffedef !important;
  color: #d1293d;
}
.tablemainDiv2 .badge.bg-warning {
  background-color: #fcf2e6 !important;
  color: #aa5b00;
}

.statistic {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .statistic {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
.statistic .stats-col {
  width: calc(25% - 15px);
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .statistic .stats-col {
    width: 100%;
  }
}
.statistic .stats-col .description {
  width: calc(100% - 120px);
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.statistic .stats-col .icons {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.statistic .stats-col .icons.blue {
  background-color: rgba(91, 147, 255, 0.1);
}
.statistic .stats-col .icons.yellow {
  background-color: rgba(255, 214, 107, 0.1);
}
.statistic .stats-col .icons.orange {
  background-color: rgba(255, 143, 107, 0.1);
}
.statistic .stats-col .icons.voilet {
  background-color: rgba(96, 91, 255, 0.1);
}
.statistic .stats-col .icons img {
  width: 26px;
}

.columntwo {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .columntwo {
    flex-direction: column;
    row-gap: 20px;
  }
}
.columntwo > div {
  width: calc(50% - 15px);
}
@media screen and (max-width: 480px) {
  .columntwo > div {
    width: 100%;
  }
}

.topNav {
  width: 100%;
  padding: 0 15px;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.topNav ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  list-style-type: none;
}
@media screen and (max-width: 480px) {
  .topNav ul {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}
.topNav ul li {
  position: relative;
  border-radius: 10px;
  display: flex;
}
.topNav ul li a {
  text-decoration: none;
  color: #414141;
  padding: 15px;
}
.topNav ul li:hover {
  background-color: #7165A5;
}
.topNav ul li:hover a {
  color: #fff;
}
.topNav ul li:hover ul {
  max-height: 500px;
  padding: 10px 0px;
}
.topNav ul li ul {
  position: absolute;
  width: 200px;
  padding: 0px 0px;
  top: 100%;
  height: auto;
  max-height: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #7165A5;
  border-radius: 10px;
  box-sizing: border-box;
}
.topNav ul li ul li {
  border-radius: 0px;
  border-bottom: 1px solid #E5E5E5;
}
.topNav ul li ul li a {
  padding: 10px;
  color: #fff;
}
.topNav ul li ul li:last-child {
  border-bottom: 0px;
}

.copyText {
  text-align: left;
  font-size: 14px;
  color: #414141;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

/* Error message */
.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.productList {
  width: 100%;
}
.productList.whiteBg {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
}
.productList.whiteBg .productCol {
  background-color: #e4e4e4;
}
.productList ul {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  flex-wrap: wrap;
}
.productList ul li {
  width: calc(25% - 25px);
}
@media screen and (max-width: 764px) {
  .productList ul li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 480px) {
  .productList ul li {
    width: 100%;
  }
}
.productList ul li .productCol {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  row-gap: 15px;
  flex-direction: column;
  position: relative;
}
.productList ul li .productCol a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}
.productList ul li .productCol .imgBox {
  border-radius: 15px;
  overflow: hidden;
}
.productList ul li .productCol .imgBox img {
  width: 100%;
  line-height: 0px;
}
.productList ul li .productCol h4 {
  font-size: 20px;
  color: #414141;
  padding: 15px;
}

.productDetailspage {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 25px;
}
.productDetailspage.whiteBg {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
}
.productDetailspage .productImage {
  width: 40%;
}
.productDetailspage .productImage img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .productDetailspage .productImage {
    width: 100%;
  }
}
.productDetailspage .productDetails {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 60%;
}
@media screen and (max-width: 480px) {
  .productDetailspage .productDetails {
    width: 100%;
  }
}
.productDetailspage .productDetails h2 {
  color: #7165a5;
  font-size: 48px;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
}
.productDetailspage .productDetails div {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
}
.productDetailspage .productDetails .buttonreset {
  border: 0px;
  width: 48%;
  color: #fff;
  background-color: #b3b3bf;
  line-height: 18px;
  padding: 10px 0;
  outline: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  border-radius: 5px;
}
.productDetailspage .productDetails button {
  max-width: 250px;
}
.productDetailspage .productDetails input[type=text] {
  width: 100%;
  background-color: #fff;
  border: 0px;
  line-height: 18px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
}
.productDetailspage .productDetails .error-msg {
  color: red;
  font-style: italic;
  font-size: 16px;
}
.productDetailspage .productDetails p {
  margin-top: -10px;
}

.radioBtn [type=radio]:checked,
.radioBtn [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.radioBtn [type=radio]:checked + label,
.radioBtn [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
  font-family: "Roboto", sans-serif;
}
.radioBtn [type=radio]:checked + label:before,
.radioBtn [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.radioBtn [type=radio]:checked + label:after,
.radioBtn [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #7165A5;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.radioBtn [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.radioBtn [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.radioBtn2 {
  margin: 0.5rem 0px;
}
.radioBtn2 input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radioBtn2 input[type=radio] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid rgb(234.5, 169.5371621622, 0);
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0em;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radioBtn2 input[type=radio]:checked + .radio-label:before {
  background-color: #FFD66B;
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border: 1px solid rgb(234.5, 169.5371621622, 0);
}
.radioBtn2 input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #3197EE;
}
.radioBtn2 input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #FFD66B;
  border-color: rgb(180.25, 180.25, 180.25);
  background: rgb(180.25, 180.25, 180.25);
}
.radioBtn2 input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.innerContent {
  padding: 30px;
  width: 100%;
  overflow-y: auto;
  height: 100%;
}
.innerContent h1 {
  color: #7165A5;
  font-size: 48px;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 480px) {
  .innerContent h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .innerContent {
    padding: 20px;
  }
}

.price-range-slider {
  width: 100%;
}
.price-range-slider .range-value {
  margin: 0;
}
.price-range-slider .range-value input {
  width: 100%;
  background: none;
  color: #000;
  font-size: 16px;
  font-weight: initial;
  box-shadow: none;
  border: none;
  margin: 0px 0 20px 0;
}
.price-range-slider .range-bar {
  border: none;
  background: #000;
  height: 3px;
  width: 96%;
  margin-left: 8px;
}
.price-range-slider .range-bar .ui-slider-range {
  background: #414141;
}
.price-range-slider .range-bar .ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #fff;
  border: 2px solid #7165A5;
  height: 17px;
  width: 17px;
  top: -0.52em;
  cursor: pointer;
}
.price-range-slider .range-bar .ui-slider-handle + span {
  background: #7165A5;
}

.p-coupon-page .innerContent {
  position: relative;
}
.p-coupon-page .rightDiv {
  overflow-x: visible !important;
}
.p-coupon-page .filterIconMob {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  display: none;
}
.p-coupon-page .filterIconMob img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-coupon-page .filterIconMob {
    display: block;
  }
}
.p-coupon-page .filterPannel {
  position: absolute;
  padding: 30px;
  background-color: #F6F6F6;
  width: 250px;
  height: 70%;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  border-radius: 20px 0px 0px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 480px) {
  .p-coupon-page .filterPannel {
    width: 100%;
    top: inherit;
    bottom: -100%;
    transform: translateY(0%) translateX(0%);
    left: 0px;
    position: fixed;
    height: 80%;
    overflow-y: auto;
  }
}
.p-coupon-page .filterPannel.active {
  bottom: 0%;
}
.p-coupon-page .filterPannel .filterIcon {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0px;
  top: 0px;
  transform: translate(-50%, -50%);
  display: none;
}
@media screen and (max-width: 480px) {
  .p-coupon-page .filterPannel .filterIcon {
    left: initial;
    right: 0px;
  }
}
.p-coupon-page .filterPannel .filterIcon img {
  width: 100%;
}
.p-coupon-page .filterPannel .closeicon {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
  transform: translate(0%, 0%);
  background-color: #DDD;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: none;
}
@media screen and (max-width: 480px) {
  .p-coupon-page .filterPannel .closeicon {
    display: block;
  }
}
.p-coupon-page .filterPannel .closeicon img {
  width: 100%;
}
.p-coupon-page .filterPannel h3 {
  color: #7165A5;
  font-size: 26px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
.p-coupon-page .filterPannel h5 {
  color: #414141;
  font-size: 18px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.p-coupon-page .filterPannel .filterpane {
  display: flex;
  row-gap: 10px;
  flex-direction: column;
}
.p-coupon-page .filterPannel .filterpane ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 0px;
  margin: 0px;
  padding-left: 30px;
}
.p-coupon-page .filterPannel .filterpane ul li {
  font-size: 16px;
}
.p-coupon-page .couponList ul {
  display: flex;
  list-style-type: none;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
}
.p-coupon-page .couponList ul .imageBox {
  line-height: 0px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.p-coupon-page .couponList ul li {
  width: calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .p-coupon-page .couponList ul li {
    width: 100%;
  }
}
.p-coupon-page .couponList ul li .conDiv {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  background-color: #FFF;
}
.p-coupon-page .couponList ul li img {
  width: 100%;
  line-height: 0px;
}
.p-coupon-page .couponList ul li h4 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}
.p-coupon-page .couponList ul li h3 {
  font-size: 24px;
  color: #7165A5;
}
.p-coupon-page .couponList ul li p {
  font-size: 16px;
  line-height: 20px;
  color: #414141;
}
.p-coupon-page button {
  border: 0px;
  width: 100%;
  color: #FFF;
  background-color: #FFD66B;
  line-height: 18px;
  padding: 10px 0;
  outline: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-top: 10px;
  border-radius: 5px;
}

.buttonvoilet {
  border: 0px;
  width: 48%;
  color: #FFF;
  background-color: #7165A5;
  line-height: 18px;
  padding: 10px 0;
  outline: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  border-radius: 5px;
}

.p-handover-page .handover-form {
  max-width: 50%;
}
@media screen and (max-width: 480px) {
  .p-handover-page .handover-form {
    max-width: 100%;
    width: 100%;
  }
}
.p-handover-page .handover-form input[type=text] {
  width: 100%;
  background-color: #FFF;
  border: 0px;
  line-height: 18px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
}
.p-handover-page .handover-form select {
  padding: 10px 15px;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  box-sizing: border-box;
}
.p-handover-page .handover-form .resultDiv {
  border: 0px;
  width: 100%;
  color: #414141;
  background-color: #FFF;
  line-height: 22px;
  padding: 15px;
  outline: 0px;
  font-size: 16px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 50px;
}
.p-handover-page .handover-form .buttonreset {
  border: 0px;
  width: 48%;
  color: #FFF;
  background-color: #B3B3BF;
  line-height: 18px;
  padding: 10px 0;
  outline: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  border-radius: 5px;
}
.p-handover-page .handover-form .countrycode {
  width: 60px;
}
.p-handover-page .handover-form .mobileNum {
  width: calc(100% - 85px);
}
.p-handover-page .handover-form ul {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 480px) {
  .p-handover-page .handover-form ul {
    row-gap: 25px;
  }
}
.p-handover-page .handover-form ul li {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-direction: column;
  row-gap: 10px;
}
.p-handover-page .handover-form ul li ul {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
}
.p-handover-page .handover-form ul li ul.twocol {
  justify-content: space-between;
}
.p-handover-page .handover-form ul li ul.twocol li {
  width: 48%;
}
.p-handover-page .handover-form ul li ul.twocol li button {
  width: 100%;
}

.handover-form {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.handover-form ul {
  max-width: 500px;
}
@media screen and (max-width: 480px) {
  .handover-form {
    max-width: 100%;
    width: 100%;
    padding: 15px;
  }
}
.handover-form input[type=text],
.handover-form input[type=password] {
  width: 100%;
  background-color: #FFF;
  border: 0px;
  line-height: 18px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
}
.handover-form input[type=date],
.handover-form input[type=time],
.handover-form input[type=datetime-local] {
  width: 100%;
  background-color: #FFF;
  border: 0px;
  line-height: 18px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
}
.handover-form select {
  padding: 10px 15px;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  box-sizing: border-box;
}
.handover-form .buttonvoilet {
  border: 0px;
  width: 48%;
  color: #FFF;
  background-color: #7165A5;
  line-height: 18px;
  padding: 10px 0;
  outline: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  border-radius: 5px;
}
.handover-form .resultDiv {
  border: 0px;
  width: 100%;
  color: #414141;
  background-color: #FFF;
  line-height: 22px;
  padding: 15px;
  outline: 0px;
  font-size: 16px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 50px;
  background-color: #f1f1f1;
  max-width: 800px;
}
.handover-form .buttonreset {
  border: 0px;
  width: 48%;
  color: #FFF;
  background-color: #B3B3BF;
  line-height: 18px;
  padding: 10px 0;
  outline: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  border-radius: 5px;
}
.handover-form .countrycode {
  width: 60px;
}
.handover-form .mobileNum {
  width: calc(100% - 85px);
}
.handover-form ul {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 480px) {
  .handover-form ul {
    row-gap: 25px;
  }
}
.handover-form ul li {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-direction: column;
  row-gap: 10px;
}
.handover-form ul li ul {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
}
.handover-form ul li ul.twocol {
  justify-content: space-between;
}
.handover-form ul li ul.twocol li {
  width: 48%;
}
.handover-form ul li ul.twocol li button {
  width: 100%;
}

.fileupload {
  position: relative;
}
.fileupload [type=file] {
  /* Style the color of the message that says 'No file chosen' */
  color: #878787;
}
.fileupload [type=file]::-webkit-file-upload-button {
  border: 0px;
  color: #FFF;
  background-color: #FFD66B;
  line-height: 18px;
  padding: 10px 20px;
  outline: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  border-radius: 5px;
  cursor: pointer;
}

.formDivMain {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
.formDivMain .formRow {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.formDivMain .formRow h3 {
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .formDivMain .formRow h3 {
    font-size: 16px;
  }
}
.formDivMain .formRow ul {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 480px) {
  .formDivMain .formRow ul {
    flex-wrap: wrap;
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
}
.formDivMain .formRow ul li label {
  color: #414141;
}

.survey-main {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 480px) {
  .survey-main {
    padding: 25px;
  }
}

label {
  font-size: 16px;
}
label sup {
  font-size: 16px;
}
label sup.red {
  color: red;
}

.main {
  width: 100%;
  height: auto;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
}

.anim, .pageContainer .navigation, .p-login .signinBox, .navigation > ul > li .submenu, .navigation > ul > li::after, .pageAdmin .navigation, .navDiv, .contentDiv, .topNav ul li ul, .p-coupon-page .filterPannel {
  transition: all 0.5s ease-in-out;
}

.p-login {
  background-image: url("../images/signin_image.png");
  background-size: cover;
  background-position: center;
}
.p-login .logo {
  width: auto;
  top: 30px;
  left: 30px;
  position: absolute;
}
@media screen and (max-width: 480px) {
  .p-login .logo {
    width: 100px;
  }
}
.p-login .signinBox {
  width: 90%;
  max-width: 350px;
  background-color: #FFF;
  padding: 25px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.p-login .signinBox.active {
  transform: translateY(-5%);
}
@media screen and (max-width: 480px) {
  .p-login .signinBox {
    bottom: 0px;
    transform: translateY(100%);
  }
}
.p-login .signinBox .actions {
  text-align: center;
}
.p-login .signinBox .actions p {
  font-size: 14px;
}
.p-login .signinBox .actions a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
.p-login .signinBox h2 {
  color: #7165A5;
  font-size: 48px;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
}
.p-login .signinBox p {
  font-size: 16px;
  color: #414141;
}
.p-login .signinBox input[type=text],
.p-login .signinBox input[type=password] {
  border: 0px;
  width: 100%;
  border-bottom: 1px solid #E5E5E5;
  background-color: #FAFAFA;
  line-height: 18px;
  padding: 10px 0;
  padding-left: 30px;
  outline: 0px;
}
.p-login .signinBox button, .p-login .signinBox input[type=submit] {
  border: 0px;
  width: 100%;
  color: #FFF;
  background-color: #7165A5;
  line-height: 18px;
  padding: 10px 0;
  outline: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-top: 10px;
  cursor: pointer;
}
.p-login .signinBox ul {
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.p-login .signinBox ul li {
  list-style-type: none;
}
.p-login .signinBox ul li.username {
  position: relative;
}
.p-login .signinBox ul li.username::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 6px;
  width: 22px;
  height: 24px;
  background-image: url(../images/fi_user.png);
  background-repeat: no-repeat;
  background-position: center;
}
.p-login .signinBox ul li.password {
  position: relative;
}
.p-login .signinBox ul li.password::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 6px;
  width: 22px;
  height: 24px;
  background-image: url(../images/Icon_password.png);
  background-repeat: no-repeat;
  background-position: center;
}

.pageContainer {
  width: 100%;
  height: auto;
  max-height: 100vh;
  font-family: "Roboto", sans-serif;
  background-color: #FFF;
  display: flex;
  padding: 15px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .pageContainer {
    max-height: initial;
    padding-top: 70px;
  }
}
.pageContainer .navigation {
  max-width: 70px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.pageContainer .navigation.active {
  left: 0%;
}
.pageContainer .navigation.usermenu {
  max-width: 200px;
}
@media screen and (max-width: 480px) {
  .pageContainer .navigation.usermenu {
    max-width: 100%;
  }
}
.pageContainer .navigation.usermenu .linkLable h5 {
  display: block;
}
@media screen and (max-width: 480px) {
  .pageContainer .navigation {
    width: 100%;
    position: fixed;
    width: 100%;
    height: calc(100vh - 70px);
    left: -100%;
    top: 70px;
    background-color: #FFF;
    padding: 15px;
    box-sizing: border-box;
  }
}
.pageContainer .LeftDiv {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: space-between;
}
.pageContainer .LeftDiv #nav-icon1 {
  display: none;
}
@media screen and (max-width: 480px) {
  .pageContainer .LeftDiv #nav-icon1 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .pageContainer .LeftDiv {
    width: 100%;
    position: fixed;
    background-color: #FFF;
    padding: 10px 15px;
    left: 0px;
    top: 0px;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .pageContainer .LeftDiv .logo {
    width: 80px;
  }
  .pageContainer .LeftDiv .copy {
    display: none;
  }
}
.pageContainer .rightDiv {
  background-color: #E9EDF5;
  width: 65%;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .pageContainer .rightDiv {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .p-user-page {
    flex-direction: column;
  }
}
.p-user-page .signinBox {
  width: 100%;
  background-color: #FFF;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
}
.p-user-page .signinBox > div {
  width: 90%;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  max-width: 350px;
}
.p-user-page .signinBox .actions {
  text-align: center;
}
.p-user-page .signinBox .actions p {
  font-size: 14px;
}
.p-user-page .signinBox .actions a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
.p-user-page .signinBox h2 {
  color: #7165A5;
  font-size: 48px;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
}
.p-user-page .signinBox p {
  font-size: 16px;
  color: #414141;
}
.p-user-page .signinBox input[type=text],
.p-user-page .signinBox input[type=password] {
  border: 0px;
  width: 100%;
  border-bottom: 1px solid #E5E5E5;
  background-color: #FAFAFA;
  line-height: 18px;
  padding: 10px 0;
  padding-left: 30px;
  outline: 0px;
  font-size: 14px;
}
.p-user-page .signinBox button {
  border: 0px;
  width: 100%;
  color: #FFF;
  background-color: #FFD66B;
  line-height: 18px;
  padding: 10px 0;
  outline: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-top: 10px;
  border-radius: 5px;
}
.p-user-page .signinBox ul {
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.p-user-page .signinBox ul li {
  list-style-type: none;
}
.p-user-page .signinBox ul li.username {
  position: relative;
}
.p-user-page .signinBox ul li.username::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 6px;
  width: 22px;
  height: 24px;
  background-image: url(../images/icon_email.png);
  background-repeat: no-repeat;
  background-position: center;
}
.p-user-page .signinBox ul li.password {
  position: relative;
}
.p-user-page .signinBox ul li.password::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 6px;
  width: 22px;
  height: 24px;
  background-image: url(../images/Icon_password.png);
  background-repeat: no-repeat;
  background-position: center;
}
.p-user-page .signinBox .checkBox ul {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-direction: row;
}
.p-user-page .signinBox .checkBox ul li label {
  color: #414141;
}
.p-user-page .copy {
  font-size: 14px;
}
.p-user-page .signinCarousel {
  position: relative;
  height: 100%;
  background-color: aqua;
  overflow: hidden;
}
.p-user-page .slick-dots {
  position: absolute;
  bottom: 10px;
  display: flex;
  list-style-type: none;
  -moz-column-gap: 20px;
       column-gap: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.p-user-page .slick-dots .slick-active button {
  background-color: #E8B34E;
}
.p-user-page .slick-dots button {
  width: 50px;
  height: 4px;
  overflow: hidden;
  background-color: #D9D9D9;
  border: none;
  border-radius: 4px;
}
.p-user-page .slick-list {
  height: 100%;
}
.p-user-page .slick-track {
  height: 100%;
}
.p-user-page .slick-slide {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #7165A5;
  overflow: hidden;
}
.p-user-page .slick-slide .slideContent {
  width: 100%;
  bottom: 40px;
  left: 0px;
  display: flex;
  position: absolute;
  flex-direction: column;
  row-gap: 20px;
  color: #FFF;
  z-index: 999;
  text-align: center;
  padding: 30px;
}
.p-user-page .slick-slide img {
  width: 100%;
  height: 100%;
}
.p-user-page .slick-slide::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 20%;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

.error {
  border-bottom: 1px solid #ef4444 !important;
}

button {
  cursor: pointer;
}

.popUp {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
.popUp.active {
  display: flex;
}
.popUp h2 {
  color: #414141;
  font-size: 48px;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 480px) {
  .popUp h2 {
    font-size: 36px;
  }
}
.popUp ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.popUp .closebtn {
  position: absolute;
  right: 10px;
  top: 10px;
  transform: translate(0%, 0%);
  width: 40px;
  height: 40px;
  background-color: #414141;
  border-radius: 50%;
  display: flex;
  color: #FFF;
  line-height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popUp .PopContainer {
  width: 90%;
  height: 600px;
  background-color: #FFF;
  border-radius: 10px;
  max-width: 600px;
  padding: 30px;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

.popactionBtn {
  background-color: #f1f1f1;
  padding: 5px 10px;
  border-radius: 5px;
  color: #414141;
  font-size: 14px;
  cursor: pointer;
}
.popactionBtn:hover {
  color: #FFF;
  background-color: #7165A5;
}

.Tlink {
  color: #7165A5;
  text-decoration: none;
  font-size: 16px;
}
.Tlink:hover {
  color: #FFD66B;
}/*# sourceMappingURL=main.css.map */