@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  color: #000;
  line-height: 140%;
  background-color: #fff;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

input, textarea, select {
  background-color: transparent;
  border: 0;
  outline: transparent;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

.button {
  min-width: 120px;
  height: 50px;
  border-radius: 8px;
  border: solid 1px #ff9100;
  background-color: #ff9100;
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 0 15px;
}
.button img {
  height: 24px;
  width: 24px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1080px) {
  .button img {
    height: 18px;
    width: 18px;
  }
}
.button:hover {
  background-color: transparent;
  color: #ff9100;
}
.button:hover img {
  filter: saturate(89.5);
}
@media (max-width: 1366px) {
  .button {
    font-size: 1rem;
  }
}
@media (max-width: 1080px) {
  .button {
    font-size: 14px;
    height: 40px;
    padding: 0px 10px;
  }
}
.button.fullWidth {
  width: 100%;
}
.button.quarterWidth {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.button.halfWidth {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.button:disabled {
  opacity: 0.6;
}
.button:disabled:hover {
  background-color: #ff9100;
  color: #fff;
}

.buttonBorder {
  min-width: 120px;
  height: 50px;
  border-radius: 8px;
  border: solid 1px #ff9100;
  background-color: transparent;
  color: #ff9100;
  font-size: 1.15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.buttonBorder img {
  height: 24px;
  width: 24px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.buttonBorder:hover {
  background-color: #ff9100;
  color: #fff;
}
.buttonBorder:hover img {
  filter: saturate(89.5);
}
@media (max-width: 1366px) {
  .buttonBorder {
    font-size: 1rem;
  }
}
@media (max-width: 1080px) {
  .buttonBorder {
    font-size: 14px;
    height: 40px;
  }
}
.buttonBorder.fullWidth {
  width: 100%;
}
.buttonBorder.quarterWidth {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.buttonBorder.halfWidth {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.buttonBorder:disabled {
  opacity: 0.6;
}
.buttonBorder:disabled:hover {
  background-color: #fff;
  color: #ff9100;
}

.pageHead {
  font-size: 2rem;
  color: #000;
  font-weight: 500;
}
@media (max-width: 1080px) {
  .pageHead {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  .pageHead {
    font-size: 18px;
  }
}

.customeCloseBtn {
  background: url("../images/modal-close.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center;
  background-size: contain;
  margin: -0.5rem -0.5rem -0.5rem auto;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: white;
  border: solid 5px #fff;
  border-radius: 5px;
  padding: 5px;
  z-index: 100;
  border-radius: 6px;
}

.customeCloseBtn:hover {
  opacity: 1;
}

.modal-content {
  position: relative;
  border-radius: 16px;
  background-color: #fff;
}

.custome-modal-body {
  padding: 20px;
  position: relative;
}

.modalHeadText {
  font-size: 24px;
  color: #0a070d;
  font-weight: 500;
  margin-bottom: 10px;
}

.modalHeadTextTheme {
  font-size: 24px;
  color: #ff9100;
  font-weight: 500;
  margin-bottom: 10px;
}

.modalParagraphText {
  font-size: 16px;
  color: #0a070d;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.6;
}

#detailsGridToggle .modal-dialog {
  max-width: 400px;
  margin: 1.75rem auto;
}

.text-center {
  text-align: center;
}

.custome-modal-bodyList {
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .custome-modal-bodyList {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .custome-modal-bodyList {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.textLnk {
  font-size: 18px;
  font-weight: 300;
  color: #ff9100;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  margin: 20px auto;
}
.textLnk:hover {
  color: #000;
}
@media (max-width: 600px) {
  .textLnk {
    font-size: 14px;
  }
}

.gap30 {
  height: 30px;
  display: block;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ff9100;
  border-radius: 30px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ff9100;
}

.formGrouHeading {
  font-size: 2rem;
  color: #000;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .formGrouHeading {
    font-size: 1.2rem;
    line-height: 130%;
  }
}
.formGrouHeading small {
  font-size: 1.2rem;
}

.formSubHeading {
  font-size: 1.25rem;
  color: #0a070d;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 0.5rem;
}

.inputField, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ff9100;
  padding: 18px 28px;
  font-size: 1rem;
  line-height: 125%;
  color: #0a070d;
}
.inputField::placeholder, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD::placeholder {
  color: #0a070d;
}
@media (max-width: 767px) {
  .inputField, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD {
    padding: 14px 18px;
  }
}
.inputField.textarea, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .textarea.inpCutomDD {
  height: 140px;
  resize: none;
}
@media (max-width: 767px) {
  .inputField.textarea, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .textarea.inpCutomDD {
    height: 100px;
  }
}
.inputField:disabled, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD:disabled {
  border: 1px solid #c9c9c9;
  color: #6B6B6B;
}
.inputField:disabled::placeholder, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD:disabled::placeholder {
  color: #6B6B6B;
}

.modalflexHeading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .modalflexHeading {
    flex-direction: column;
    align-items: flex-start;
  }
}
.modalflexHeading .formGrouHeading {
  margin: 0;
}
@media (max-width: 991px) {
  .modalflexHeading .formGrouHeading {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
}
.modalflexHeading .formGrouHeading.themeTxt {
  color: #ff9100;
}

.flex_btn_wrap {
  display: flex;
  gap: 0 20px;
}

.customToaster {
  position: fixed;
  width: 400px;
  max-width: 95%;
  top: 100px;
  left: calc(50% - 50px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .customToaster {
    padding: 1rem;
    width: 270px;
    left: 75px;
  }
}
.customToaster .ctLeft {
  display: flex;
  align-items: center;
}
.customToaster .ctLeft img {
  width: 24px;
}
.customToaster .ctLeft .ctMsg {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 120%;
  color: #0a070d;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .customToaster .ctLeft .ctMsg {
    font-size: 0.825rem;
  }
}
.customToaster .ctRight {
  outline: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.customToaster .ctRight:hover {
  opacity: 1;
}
.customToaster .ctRight .tostCloser {
  width: 20px;
}

/* The checkboxLabel */
.checkboxLabelWrap {
  display: block;
}

.checkboxLabel {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxLabel input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 2px solid #0a070d;
  border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.checkboxLabel:hover input ~ .checkmark {
  background-color: #ffffff;
}

/* When the checkbox is checked, add a blue background */
.checkboxLabel input:checked ~ .checkmark {
  background-color: #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxLabel input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxLabel .checkmark:after {
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: solid #0a070d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.dashboarWrap {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: relative;
}
.dashboarWrap .dasboardMenuPanelWrap .dbmenuOverlaySM {
  display: none;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.dashboarWrap .dasboardMenuPanel {
  background-color: #161615;
  width: 320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 200;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  .dashboarWrap .dasboardMenuPanel {
    width: 65px;
    padding: 10px;
  }
}
.dashboarWrap .dasboardMenuPanel.expand .dasboardPanelLeftTop .dashboardLogo img.logo {
  display: block !important;
}
.dashboarWrap .dasboardMenuPanel.expand .dasboardPanelLeftTop .dashboardLogo img.logoCollapse {
  display: none !important;
}
.dashboarWrap .dasboardMenuPanel.expand .dasboardPanelLeftTop .sidemenu li a span {
  opacity: 1;
  visibility: visible;
}
.dashboarWrap .dasboardMenuPanel.expand .dasboardPanelLeftBottom .bottomMenu li a span {
  opacity: 1;
  visibility: visible;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop {
  width: 100%;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .dashboardLogo {
  width: 100%;
  height: initial;
  margin-bottom: 50px;
  padding: 5px 0;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .dashboardLogo img.logo {
  width: 280px;
  min-width: 100px;
}
@media (max-width: 1024px) {
  .dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .dashboardLogo img.logo {
    display: none;
  }
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .dashboardLogo img.logoCollapse {
  display: none;
  width: 45px;
  height: 29.2px;
  object-fit: contain;
  object-position: left;
}
@media (max-width: 1024px) {
  .dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .dashboardLogo img.logoCollapse {
    display: block;
  }
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .sidemenu {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .sidemenu li {
  display: block;
  width: 100%;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .sidemenu li a {
  width: 100%;
  padding: 10px 10px;
  background-color: transparent;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  align-items: flex-start;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 0 10px;
  font-size: 1rem;
  white-space: nowrap;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .sidemenu li a:hover {
  background-color: rgba(255, 145, 0, 0.3);
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .sidemenu li a img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .sidemenu li a.active {
  background-color: rgba(255, 145, 0, 0.3);
}
@media (max-width: 1024px) {
  .dashboarWrap .dasboardMenuPanel .dasboardPanelLeftTop .sidemenu li a span {
    opacity: 0;
    visibility: hidden;
  }
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftBottom {
  width: 100%;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftBottom .bottomMenu {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftBottom .bottomMenu li {
  display: block;
  width: 100%;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftBottom .bottomMenu li a {
  width: 100%;
  padding: 10px 10px;
  background-color: transparent;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  align-items: flex-start;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 0 10px;
  font-size: 1rem;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftBottom .bottomMenu li a:hover {
  background-color: #000 !important;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftBottom .bottomMenu li a img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.dashboarWrap .dasboardMenuPanel .dasboardPanelLeftBottom .bottomMenu li a.active {
  background-color: rgba(255, 145, 0, 0.3);
}
@media (max-width: 1024px) {
  .dashboarWrap .dasboardMenuPanel .dasboardPanelLeftBottom .bottomMenu li a span {
    opacity: 0;
    visibility: hidden;
  }
}
.dashboarWrap .dasboardContainer {
  width: 100%;
  padding-left: 320px;
  background-color: #fff;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  .dashboarWrap .dasboardContainer {
    padding-left: 65px;
  }
}
.dashboarWrap .dasboardContainer .dasboardHead {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .dashboarWrap .dasboardContainer .dasboardHead {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px 0;
  }
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dasboardHead {
    padding: 15px 15px;
  }
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadLeft {
  width: initial;
}
@media (max-width: 1024px) {
  .dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadLeft {
    display: flex;
    align-items: center;
  }
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadLeft .sidebarCaller {
  display: none;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
  margin-right: 20px;
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadLeft .sidebarCaller img {
  width: 26px;
}
@media (max-width: 1024px) {
  .dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadLeft .sidebarCaller {
    display: inline-block;
  }
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight {
  width: initial;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 20px;
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px 0;
    width: 100%;
  }
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .viewModeWrap {
  width: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .viewModeWrap button {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  outline: transparent;
  border: 0;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .viewModeWrap button svg {
  width: 100%;
  height: 100%;
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .viewModeWrap button.active {
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap {
  width: initial;
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap {
    width: 100%;
  }
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap .searchDiv {
  width: 300px;
  height: 50px;
  border-radius: 8px;
  padding: 10px;
  border: solid 1px #c9c9c9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap .searchDiv img {
  width: 24px;
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap .searchDiv img {
    width: 18px;
  }
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap .searchDiv input {
  width: calc(100% - 34px);
  height: 100%;
  font-size: 1rem;
  color: #000;
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap .searchDiv input {
    font-size: 14px;
  }
}
.dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap .searchDiv input::placeholder {
  color: #c9c9c9;
}
@media (max-width: 1080px) {
  .dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap .searchDiv {
    height: 44px;
    width: 260px;
  }
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dasboardHead .dasboardHeadRight .topSearchWrap .searchDiv {
    width: 100%;
    height: 40px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody {
  width: 100%;
  height: calc(100vh - 90px);
  overflow: auto;
  padding: 20px 20px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody {
    padding: 15px 15px 0;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody::-webkit-scrollbar {
  background-color: transparent;
  border-radius: 0;
  width: 5px;
}
.dashboarWrap .dasboardContainer .dashboardBody::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
  width: 5px;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  display: none;
  padding-bottom: 30px;
}
@media (max-width: 992px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap {
    margin-bottom: 30px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid {
  width: calc(16.6% - 20px);
  border-radius: 16px;
  border: solid 1px #e2e2e2;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px 0;
}
@media (max-width: 1440px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid {
    width: calc(20% - 20px);
  }
}
@media (max-width: 1280px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid {
    width: calc(25% - 20px);
  }
}
@media (max-width: 992px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid {
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid {
    width: 100%;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .dasboardCardGridImg {
  height: 120px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .dasboardCardGridImg {
    height: initial;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .dasboardCardGridName {
  font-size: 1.125rem;
  color: #0a070d;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .cardSpecification {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px 0;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .cardSpecification li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .cardSpecification li h3 {
  font-size: 1rem;
  color: #0a070d;
  opacity: 0.5;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .cardSpecification li h4 {
  font-size: 1rem;
  color: #0a070d;
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .gridCardFooter {
  width: 100%;
  padding-top: 10px;
  border-top: solid 1px #e2e2e2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .gridCardFooter button {
  opacity: 0.5;
  width: 24px;
  height: 24px;
  border: 0;
  outline: 0;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .gridCardFooter button:hover {
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .gridCardFooter button.edit {
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .gridCardFooter button.edit:hover {
  opacity: 0.5;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap .dasboardCardGrid .gridCardFooter .lineGap {
  height: 40px;
  width: 1px;
  background-color: #e2e2e2;
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .gridProWrap {
    margin-bottom: 30px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  display: none;
  padding-bottom: 30px;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList {
  width: calc(33.33% - 20px);
  border-radius: 16px;
  border: solid 1px #e2e2e2;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0 10px;
}
@media (max-width: 1600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList {
    width: calc(50% - 20px);
  }
}
@media (max-width: 1280px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList {
    flex-direction: column;
    align-items: flex-start;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .dasboardCardListImg {
  width: 100px;
  border-radius: 12px;
}
@media (max-width: 1600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .dasboardCardListImg {
    height: initial;
    width: 90px;
  }
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .dasboardCardListImg {
    height: initial;
    width: 100%;
    margin-bottom: 15px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardFooter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px 0;
  padding: 10px;
  border-left: solid 1px #c9c9c9;
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardFooter {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0 5px;
    border: 0;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardFooter button {
  opacity: 0.5;
  width: 20px;
  height: 20px;
  border: 0;
  outline: 0;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardFooter button:hover {
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardFooter button:first-child {
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardFooter button:first-child:hover {
  opacity: 0.8;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardFooter button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardFooter .lineGap {
  height: 1px;
  width: 40px;
  background-color: #e2e2e2;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap {
  width: calc(100% - 170px);
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap {
    width: 100%;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap h2 {
  font-size: 22px;
  color: #0a070d;
  margin: 0 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap h2 {
    text-align: center;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap table {
  width: 100%;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap table tbody {
  width: 100%;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap table tbody tr {
  width: 100%;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap table tbody tr td {
  font-size: 13px;
  color: #040404;
  font-weight: 500;
  padding: 5px;
  text-align: center;
  opacity: 1;
  line-height: 110%;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap table tbody tr td:first-child {
  text-align: left;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap table tbody tr:first-child {
  width: 100%;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap table tbody tr:first-child td {
  font-size: 13px;
  color: #040404;
  font-weight: 500;
  padding: 5px;
  text-align: center;
  opacity: 0.5;
  line-height: 110%;
}
.dashboarWrap .dasboardContainer .dashboardBody .allProductWrap .listProWrap .dasboardCardList .listCardInfoWrap table tbody tr:first-child td:first-child {
  text-align: left;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap.newPresentationWrap .formBodyWrapper {
  max-height: calc(100vh - 116px);
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap.newPresentationWrap .formBodyWrapper {
    max-height: initial;
  }
}
@media (max-width: 1024px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap.newPresentationWrap .formBodyWrapper .gap30 {
    height: 0px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 1199px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper {
    justify-content: center;
    margin-bottom: 44px;
  }
}
@media (max-width: 1199px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper {
    margin-bottom: 34px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem {
  display: flex;
  align-items: center;
  margin-right: 15px;
  opacity: 0.5;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem {
    margin-right: 8px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem.active {
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem.completed {
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem.completed .fstLine {
  background-color: #F25C05;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem.completed .fsTxtWrap .fstNumb {
  background-color: #F25C05;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem.completed .fsTxtWrap .fstName {
  color: #F25C05;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fstLine {
  width: 115px;
  height: 1px;
  background-color: #000;
  margin-right: 15px;
}
@media (max-width: 1500px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fstLine {
    width: 75px;
  }
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fstLine {
    width: 28px;
    margin-right: 8px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fsTxtWrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1367px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fsTxtWrap {
    flex-direction: column;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fsTxtWrap .fstNumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  line-height: 150%;
  background-color: #0a070d;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fsTxtWrap .fstNumb {
    width: 25px;
    height: 25px;
    font-size: 0.825rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fsTxtWrap .fstName {
  color: #0a070d;
  font-size: 1rem;
  font-weight: 300;
  line-height: 150%;
  margin-left: 8px;
}
@media (max-width: 1500px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fsTxtWrap .fstName {
    font-size: 0.85rem;
  }
}
@media (max-width: 1199px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formStepper .fstpItem .fsTxtWrap .fstName {
    display: none;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper {
  display: flex;
  justify-content: center;
  max-height: calc(100vh - 196px);
  overflow: auto;
}
@media (max-width: 1367px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper {
    max-height: calc(100vh - 220px);
  }
}
@media (max-width: 1199px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper {
    max-height: calc(100vh - 182px);
    overflow-x: hidden;
  }
}
@media (max-width: 600px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper {
    max-height: initial;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper::-webkit-scrollbar {
  background-color: transparent;
  border-radius: 0;
  width: 5px;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
  width: 5px;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap {
  max-width: 80%;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap.productFormGroup {
  display: none;
}
@media (max-width: 1199px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap {
    max-width: 95%;
  }
}
@media (max-width: 991px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap {
    max-width: 100%;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap.active {
  display: block;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap.widthQuarter {
  width: 700px;
  max-width: 100%;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .dropBoxWrap {
  width: 100%;
  min-height: 200px;
  border-radius: 1.125rem;
  border: 2px dashed #F25C05;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .dropBoxWrap {
    padding: 10px 10px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .dropBoxWrap .dropThumbIcon {
  width: 40px;
  margin: 0 auto 10px;
  display: block;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .dropBoxWrap .drpBigHead {
  font-size: 1.5rem;
  color: #0a070d;
  margin-bottom: 0.8rem;
  display: block;
  text-align: center;
  font-weight: 300;
  line-height: 130%;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .dropBoxWrap .drpBigHead {
    font-size: 1.25rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .dropBoxWrap .drpDesc {
  font-size: 1rem;
  color: #0a070d;
  opacity: 0.5;
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .dropBoxWrap .drpDesc {
    font-size: 0.825rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .inputField, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD {
  margin-bottom: 2rem;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .inputField::-webkit-outer-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD::-webkit-outer-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .inputField::-webkit-inner-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD::-webkit-inner-spin-button {
  display: none;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .inputField, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD {
    margin-bottom: 1.25rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .setThumbLink {
  background-color: transparent;
  color: #F25C05;
  font-size: 1rem;
  line-height: 125%;
  cursor: pointer;
  border: 0;
  outline: 0;
  position: relative;
  top: -20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .setThumbLink:hover {
  color: #c64800;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD {
  width: 100%;
  background: transparent;
  text-align: left;
  margin-bottom: 0;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD::-webkit-outer-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD::-webkit-inner-spin-button {
  display: none;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .inpCutomDD::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  position: absolute;
  right: 20px;
  top: 26px;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .dropdown-menu {
  width: 100%;
  padding: 0.5rem 0.5rem;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorActionlink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  color: #0a070d;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorActionlink:active {
  background-color: transparent;
  color: #0a070d;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .listDevider {
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;
  position: relative;
  margin: 10px 0;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .listDevider::after {
  content: "or";
  width: 40px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 10px);
  color: #6B6B6B;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap {
  margin: 1rem 0 1.25rem;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap {
    margin: 0 -0.25rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap .colorHexItem {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  background-color: #eeeeee;
  margin: 0 0.75rem 0.75rem;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap .colorHexItem {
    margin: 0 0.25rem 0.5rem;
    padding: 6px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap .colorHexItem .colorBox {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 4px;
  background-color: #f70;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap .colorHexItem .colorBox {
    width: 1rem;
    height: 1rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap .colorHexItem .colorHex {
  color: #0a070d;
  font-size: 0.9rem;
  line-height: 125%;
  margin: 0 8px;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap .colorHexItem .colorHex {
    font-size: 0.75rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap .colorHexItem .colorRemover {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .colorValueWrap .colorHexWrap .colorHexItem .colorRemover:hover {
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .formInfo {
  background-color: rgba(255, 145, 0, 0.1);
  padding: 10px;
  margin-bottom: 2rem;
  border-radius: 8px;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .formInfo p {
  font-size: 0.825rem;
  color: #0a070d;
  margin: 0;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .formInfo p a {
  color: #F25C05;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .formInfo p a:hover {
  color: #c64800;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap {
    margin-bottom: 1rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap.profitRow .formSubHeading {
  color: #6B6B6B;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap.profitRow .prRow .prItem .inputField, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap.profitRow .prRow .prItem .customDD .inpCutomDD, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .prRowWrap.profitRow .prRow .prItem .inpCutomDD {
  border: 1px solid #6B6B6B;
  color: #6B6B6B;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap.profitRow .prRow .prItem .inputField::-webkit-outer-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap.profitRow .prRow .prItem .customDD .inpCutomDD::-webkit-outer-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .prRowWrap.profitRow .prRow .prItem .inpCutomDD::-webkit-outer-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap.profitRow .prRow .prItem .inputField::-webkit-inner-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap.profitRow .prRow .prItem .customDD .inpCutomDD::-webkit-inner-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .prRowWrap.profitRow .prRow .prItem .inpCutomDD::-webkit-inner-spin-button {
  display: none;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap.profitRow .prRow .prItem .inputField::placeholder, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap.profitRow .prRow .prItem .customDD .inpCutomDD::placeholder, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .prRowWrap.profitRow .prRow .prItem .inpCutomDD::placeholder {
  color: #6B6B6B;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow {
  display: flex;
  margin: 0 -0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow {
    margin: 0 -0.25rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem {
  padding: 0 0.5rem;
  flex: 0 0 16.66%;
  max-width: 16.66%;
  position: relative;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 0.25rem;
    margin-bottom: 0.5rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem .inputField, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem .customDD .inpCutomDD, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .prRowWrap .prRow .prItem .inpCutomDD {
  margin-bottom: 0;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem .inputField::-webkit-outer-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem .customDD .inpCutomDD::-webkit-outer-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .prRowWrap .prRow .prItem .inpCutomDD::-webkit-outer-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem .inputField::-webkit-inner-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem .customDD .inpCutomDD::-webkit-inner-spin-button, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .prRowWrap .prRow .prItem .inpCutomDD::-webkit-inner-spin-button {
  display: none;
}
@media (max-width: 991px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem .inputField, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .prRowWrap .prRow .prItem .customDD .inpCutomDD, .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customDD .prRowWrap .prRow .prItem .inpCutomDD {
    padding: 10px 10px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customFiledWrap .curstomFieldCaller {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  cursor: pointer;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customFiledWrap .curstomFieldCaller img {
  width: 24px;
  margin-right: 8px;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customFiledWrap .curstomFieldCaller span {
  font-size: 1rem;
  line-height: 125%;
  font-weight: 300;
  color: #ff9100;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customFiledWrap .addedFieldWrap .addedfiledHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customFiledWrap .addedFieldWrap .addedfiledHead .removeFieldCTA {
  outline: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  opacity: 0.8;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customFiledWrap .addedFieldWrap .addedfiledHead .removeFieldCTA:hover {
  opacity: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .customFiledWrap .addedFieldWrap .addedfiledHead .removeFieldCTA img {
  width: 24px;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .formBtnWrap .fullWidth {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .formBtnWrap .fullWidth {
    margin-bottom: 1.25rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .skipOption {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 3rem;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .skipOption span {
  font-size: 1rem;
  line-height: 125%;
  color: #6B6B6B;
  margin-bottom: 1.5rem;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .skipOption .finalSave {
  display: inline-flex;
  font-size: 1rem;
  line-height: 125%;
  color: #F25C05;
  border: none;
  outline: none;
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .skipOption .finalSave:hover {
  color: #c64800;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .fakeInputCTA {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .clLogoFileWrap {
  margin-bottom: 1.25rem;
  display: inline-block;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .clLogoFileWrap .clLogoInpWrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.08);
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .clLogoFileWrap .clLogoInpWrap .logoAddIcon {
  width: 26px;
  z-index: 1;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .clLogoFileWrap .clLogoInpWrap .addedLogo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .clLogoFileWrap .clLogoInpWrap input[type=file] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  opacity: 0;
  z-index: 3;
  cursor: pointer;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .clLogoFileWrap .clLogoInpWrap .editLogoImg {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ff9100;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 15px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  opacity: 0;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .clLogoFileWrap .clLogoInpWrap .editLogoImg img {
  width: 15px;
  filter: invert(1);
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .clLogoFileWrap .logoLabel {
  font-weight: 300;
  font-size: 0.825rem;
  line-height: 116%;
  color: #000;
  display: block;
  margin-top: 0.5rem;
  text-align: center;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .datePicekrWrap {
  position: relative;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .datePicekrWrap .dateIcon {
  position: absolute;
  right: 28px;
  top: 17px;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .datePicekrWrap .dateIcon {
    right: 18px;
    top: 13px;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .successInfoWrap {
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .successInfoWrap {
    padding: 1.25rem;
  }
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .successInfoWrap .tickIcon {
  width: 64px;
  margin-bottom: 2rem;
}
.dashboarWrap .dasboardContainer .dashboardBody .bodyInnerWrap .formBodyWrapper .formGroupWrap .successInfoWrap .successMsg {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 130%;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
}

.detailsGridBanner {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}
.detailsGridBanner img {
  width: 100%;
}

.detailsListBanner {
  width: 370px;
  height: 270px;
  border-radius: 12px;
  margin-right: 15px;
  overflow: hidden;
}
.detailsListBanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .detailsListBanner {
    width: 100%;
    height: initial;
    margin-right: 0;
  }
}

.detailsGridFooter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  gap: 0 10px;
}
.detailsGridFooter button {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 0;
  outline: transparent;
  background-color: transparent;
  opacity: 0.7;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.detailsGridFooter button:hover {
  opacity: 1;
}
.detailsGridFooter button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detailsGridFooter .lineGap {
  height: 40px;
  width: 1px;
  background-color: #e2e2e2;
}

.detailsGridtable {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  margin: 15px 0;
}
@media (max-width: 600px) {
  .detailsGridtable {
    max-height: 180px;
  }
}

.detailsGridtable table {
  width: 100%;
}
.detailsGridtable table tbody tr {
  width: 100%;
}
.detailsGridtable table tbody tr table {
  width: 100%;
  border-bottom: solid 1px #c9c9c9;
}
.detailsGridtable table tbody tr table tr {
  width: 100%;
}
.detailsGridtable table tbody tr table tr td {
  font-size: 14px;
  color: #0a070d;
  font-weight: 500;
  text-align: center;
  opacity: 0.5;
  padding: 5px;
}
@media (max-width: 600px) {
  .detailsGridtable table tbody tr table tr td {
    font-size: 14px;
  }
}
.detailsGridtable table tbody tr table tr td:first-child {
  text-align: left !important;
}
.detailsGridtable table tbody tr table tr:first-child {
  width: 100%;
}
.detailsGridtable table tbody tr table tr:first-child td {
  font-size: 14px;
  color: #0a070d;
  font-weight: 500;
  text-align: center !important;
  padding: 5px;
  opacity: 1;
}
@media (max-width: 600px) {
  .detailsGridtable table tbody tr table tr:first-child td {
    font-size: 14px;
  }
}
.detailsGridtable table tbody tr table tr:first-child td:first-child {
  text-align: left !important;
}

.detailsGridFooterBtn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  gap: 0 10px;
}

.listModalDetailsTabile {
  width: 30%;
  padding-left: 10px;
  border-left: solid 1px #c9c9c9;
}
@media (max-width: 992px) {
  .listModalDetailsTabile {
    padding-left: 0;
    border-left: 0;
    padding: 15px;
    max-height: 210px;
  }
}
.listModalDetailsTabile table {
  width: 100%;
}
.listModalDetailsTabile table tbody tr table {
  margin-bottom: 10px;
}
.listModalDetailsTabile table tbody tr table tbody tr td {
  font-size: 14px;
  color: #040404;
  padding: 5px;
  opacity: 1;
  text-align: center;
}
@media (max-width: 600px) {
  .listModalDetailsTabile table tbody tr table tbody tr td {
    font-size: 14px;
  }
}
.listModalDetailsTabile table tbody tr table tbody tr td:first-child {
  text-align: left;
}
.listModalDetailsTabile table tbody tr table tbody tr:last-child td {
  font-size: 14px;
  color: #040404;
  padding: 5px;
  opacity: 0.5;
}
@media (max-width: 600px) {
  .listModalDetailsTabile table tbody tr table tbody tr:last-child td {
    font-size: 14px;
  }
}
.listModalDetailsTabile table tbody tr table tbody tr:last-child td:first-child {
  text-align: left;
}
.listModalDetailsTabile table tbody tr table:last-child {
  margin-bottom: 0;
}

.detailsListInfo {
  width: 100%;
  padding: 15px;
}
@media (max-width: 1200px) {
  .detailsListInfo {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .detailsListInfo {
    padding: 15px 0px;
  }
}
.detailsListInfo .detailsListInfoHed {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: solid 1px #c9c9c9;
}
.detailsListInfo .detailsListInfoHed .listModalBtn {
  width: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.detailsListInfo .detailsListInfoHed .listModalBtn button {
  width: 20px;
  height: 20px;
  border: 0;
  background-color: transparent;
  outline: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.8;
}
.detailsListInfo .detailsListInfoHed .listModalBtn button:hover {
  opacity: 1;
}
.detailsListInfo .detailsListInfoHed .listModalBtn button img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.detailsListInfo .detailsListInfoHed .listModalBtn button:first-child {
  opacity: 1;
}
.detailsListInfo .detailsListInfoHed .listModalBtn button:first-child:hover {
  opacity: 0.8;
}
.detailsListInfo .detailsListInfoHed .listModalBtn .lineGap {
  height: 25px;
  width: 1px;
  background-color: #c9c9c9;
}

.detailsListInfoBody {
  width: 100%;
}
.detailsListInfoBody table {
  width: 100%;
}
.detailsListInfoBody table tbody {
  width: 100%;
}
.detailsListInfoBody table tbody tr {
  width: 100%;
}
.detailsListInfoBody table tbody tr td {
  font-size: 15px;
  color: #040404;
  font-weight: 500;
  text-align: center;
  opacity: 1;
  padding: 5px;
}
@media (max-width: 600px) {
  .detailsListInfoBody table tbody tr td {
    font-size: 14px;
  }
}
.detailsListInfoBody table tbody tr td:first-child {
  text-align: left;
}
.detailsListInfoBody table tbody tr:last-child {
  width: 100%;
}
.detailsListInfoBody table tbody tr:last-child td {
  font-size: 14px;
  color: #040404;
  font-weight: 500;
  text-align: center;
  opacity: 0.5;
  padding: 5px;
}
@media (max-width: 600px) {
  .detailsListInfoBody table tbody tr:last-child td {
    font-size: 14px;
  }
}
.detailsListInfoBody table tbody tr:last-child td:first-child {
  text-align: left;
}

@media (max-width: 1200px) {
  .detailsModalBody {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .detailsModalBody {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .listModalDetailsTabile {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .listModalDetailsTabile {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .listModalDetailsTabile {
    padding: 0px 0;
  }
}

.proTabActive {
  display: flex !important;
}

.select-dropdown,
.select-dropdown * {
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

.select-dropdown {
  position: relative;
  background-color: #f25c05;
  border-radius: 50px;
}

.select-dropdown select {
  font-size: 14px;
  font-weight: normal;
  max-width: 100%;
  padding: 4px 25px 3px 10px;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
}
@media (max-width: 600px) {
  .select-dropdown select {
    font-size: 12px;
  }
}
.select-dropdown select option {
  background-color: #e2e2e2;
  color: #000;
  font-size: 16px;
}
.select-dropdown select option:focus {
  background-color: #ff9100 !important;
}
.select-dropdown select option:hover {
  background-color: #ff9100 !important;
}

.select-dropdown select:active,
.select-dropdown select:focus {
  outline: none;
  box-shadow: none;
}

.select-dropdown:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.presentationHead .dasboardHeadLeft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
}

.searchDiv {
  width: 100%;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.presentationList {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px 0px;
  margin-bottom: 30px;
}
@media (max-width: 1080px) {
  .presentationList {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .presentationList {
    margin-bottom: 30px;
  }
}
.presentationList .presentationDiv {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: solid 1px #e2e2e2;
  padding: 10px 15px;
  gap: 0px 10px;
}
@media (max-width: 600px) {
  .presentationList .presentationDiv {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px 0;
  }
}
.presentationList .presentationDiv .presentationHeadText {
  text-align: left;
  flex: 0 0 38%;
  max-width: 38%;
}
.presentationList .presentationDiv .presentationHeadText h1 {
  font-size: 24px;
  color: #000;
  font-weight: 500;
}
@media (max-width: 1680px) {
  .presentationList .presentationDiv .presentationHeadText h1 {
    font-size: 20px;
  }
}
@media (max-width: 1440px) {
  .presentationList .presentationDiv .presentationHeadText h1 {
    font-size: 18px;
  }
}
.presentationList .presentationDiv .presentationInfo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
  flex: 0 0 40%;
  max-width: 40%;
}
@media (max-width: 600px) {
  .presentationList .presentationDiv .presentationInfo {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px 0;
  }
}
.presentationList .presentationDiv .presentationInfo .presentationDate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.presentationList .presentationDiv .presentationInfo .presentationDate h3 {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .presentationList .presentationDiv .presentationInfo .presentationDate h3 {
    font-size: 14px;
  }
}
.presentationList .presentationDiv .presentationInfo .presentationDate h4 {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  padding: 8px 10px;
  border-radius: 12px;
  background-color: rgba(255, 145, 0, 0.08);
}
@media (max-width: 1440px) {
  .presentationList .presentationDiv .presentationInfo .presentationDate h4 {
    font-size: 14px;
  }
}
.presentationList .presentationDiv .presentationInfo .presentationDate h4.inactiveBg {
  background-color: #F1F5EE;
  white-space: nowrap;
}
.presentationList .presentationDiv .presentationInfo .presentationDate h4.expiredBg {
  background-color: #e7d2d2;
  white-space: nowrap;
}
.presentationList .presentationDiv .presentationInfo .presentationEmail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  cursor: pointer;
}
.presentationList .presentationDiv .presentationInfo .presentationEmail img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.presentationList .presentationDiv .presentationInfo .presentationEmail p {
  font-size: 16px;
  color: #545454;
  font-weight: 300;
  margin: 0;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1920px) {
  .presentationList .presentationDiv .presentationInfo .presentationEmail p {
    max-width: 350px;
  }
}
@media (max-width: 1600px) {
  .presentationList .presentationDiv .presentationInfo .presentationEmail p {
    max-width: 180px;
  }
}
@media (max-width: 1440px) {
  .presentationList .presentationDiv .presentationInfo .presentationEmail p {
    max-width: 140px;
    font-size: 14px;
  }
}
@media (max-width: 1366px) {
  .presentationList .presentationDiv .presentationInfo .presentationEmail p {
    max-width: 118px;
    font-size: 14px;
  }
}
.presentationList .presentationDiv .presentationTriger {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 10px;
  flex: 0 0 18%;
  max-width: 18%;
}
@media (max-width: 1080px) {
  .presentationList .presentationDiv .presentationTriger {
    gap: 0 6px;
  }
}
.presentationList .presentationDiv .presentationTriger button {
  padding: 6px;
  border: 0;
  outline: transparent;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.presentationList .presentationDiv .presentationTriger button:hover {
  opacity: 0.7;
}
.presentationList .presentationDiv .presentationTriger button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 1080px) {
  .presentationList .presentationDiv .presentationTriger button img {
    width: 20px;
    height: 20px;
  }
}
.presentationList .presentationDiv .presentationTriger .buttonGap {
  height: 40px;
  width: 1px;
  background-color: #e2e2e2;
}

.paraBreak {
  max-width: 300px !important;
  margin: 20px auto;
}

.presentationFrontWrap {
  width: 100%;
  background-color: #fff;
}
.presentationFrontWrap .customeContainer {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 600px) {
  .presentationFrontWrap .customeContainer {
    padding: 0px 15px;
  }
}
.presentationFrontWrap .customeContainer .frontHeaderWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: solid 1px #040404;
}
@media (max-width: 600px) {
  .presentationFrontWrap .customeContainer .frontHeaderWrap {
    flex-direction: column;
    gap: 20px 0;
  }
}
.presentationFrontWrap .customeContainer .frontHeaderWrap .frontLogo {
  display: inline-block;
  width: initial;
  height: 25px;
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontHeaderWrap .frontLogo {
    height: 20px;
  }
}
.presentationFrontWrap .customeContainer .frontHeaderWrap .frontLogo img {
  width: initial;
  height: 100%;
}
.presentationFrontWrap .customeContainer .frontHeaderWrap .frontProHeader {
  font-size: 40px;
  color: #000;
  font-weight: 500;
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontHeaderWrap .frontProHeader {
    font-size: 24px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap {
  width: 100%;
  padding: 20px 0;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodCustCompany {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 20px;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodCustCompany img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodCustCompany img {
    width: 50px;
    height: 50px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodCustCompany h1 {
  font-size: 24px;
  color: #040404;
  font-weight: 300;
}
@media (max-width: 600px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodCustCompany h1 {
    font-size: 18px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodCustCompany h1 span {
  color: #545454;
  display: block;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap {
  width: 100%;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow {
  width: 100%;
  border-top: solid 1px #040404;
  display: flex;
  justify-content: center;
  align-items: center;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow:last-child {
  border-bottom: solid 1px #040404;
}
@media (max-width: 600px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow {
    flex-direction: column;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv {
  width: calc(50% - 2px);
  border-right: solid 1px #040404;
  padding: 50px;
}
@media (max-width: 1080px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv {
    padding: 20px 20px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv:nth-child(even) {
  border-right: 0px;
}
@media (max-width: 600px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv {
    width: 100%;
    border-right: 0;
    padding: 20px 0;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px 0;
  flex-direction: column;
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText {
    gap: 10px 0;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection {
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px 0;
  flex-direction: column;
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection {
    gap: 10px 0;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection p {
  font-size: 18px;
  line-height: 150%;
  color: rgba(4, 4, 4, 0.4);
  margin: 0;
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection p {
    font-size: 14px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection h2 {
  font-size: 40px;
  color: #040404;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection h2 {
    font-size: 34px;
  }
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection h2 {
    font-size: 20px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection h3 {
  font-size: 32px;
  color: #040404;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection h3 {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection h3 {
    font-size: 18px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection h4 {
  font-size: 24px;
  color: #040404;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection h4 {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection h4 {
    font-size: 16px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection .tagsWrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 24px;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection .tagsWrap span {
  padding: 5px 10px;
  border-radius: 8px;
  background-color: #e2e2e2;
  font-size: 18px;
  font-weight: 500;
  color: #0a070d;
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection .tagsWrap span {
    font-size: 14px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection table {
  width: 80%;
}
@media (max-width: 1200px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection table {
    width: 100%;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection table tbody tr {
  border-bottom: solid 1px #c9c9c9;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection table tbody tr:last-child {
  border: 0;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection table tbody tr td {
  padding: 10px;
  font-size: 16px;
  color: #040404;
  text-align: right;
  border-right: solid 1px #c9c9c9;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection table tbody tr td:first-child {
  text-align: left;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection table tbody tr td:last-child {
  border: 0;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection table tbody tr td span {
  color: #040404;
  opacity: 0.4;
}
@media (max-width: 992px) {
  .presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection table tbody tr td {
    font-size: 14px;
  }
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection .warningLabel {
  padding: 10px;
  border-radius: 8px;
  background-color: rgba(255, 145, 0, 0.1);
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection .warningLabel a {
  color: #ff9100;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivText .prodcustSection .warningLabel a:hover {
  opacity: 0.7;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide {
  width: 100%;
  position: relative;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .prodcustSlide {
  width: 100%;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .prodcustSlide img {
  width: 100%;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel {
  width: 100%;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-nav {
  top: 50%;
  position: absolute;
  z-index: 1;
  height: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 15px;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-nav .owl-next:hover {
  background-color: white;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-nav .owl-next::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-nav .owl-next span {
  display: none;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-nav .owl-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-nav .owl-prev:hover {
  background-color: white;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-nav .owl-prev::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../images/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-nav .owl-prev span {
  display: none;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-dots {
  position: relative;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-dots button {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .owl-carousel .owl-dots button.active {
  background-color: white;
  width: 30px;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .enlargeTriger {
  position: absolute;
  bottom: 25px;
  right: 12px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: transparent;
  border-radius: 8px;
  padding: 12px;
  z-index: 100;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .enlargeTriger:hover {
  background-color: white;
}
.presentationFrontWrap .customeContainer .frontBodyWrap .prodcustRowWrap .prodcustRow .prodcustRowDiv .prodcustRowDivSlide .enlargeTriger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prodcustFooter {
  width: 100%;
  padding: 10px 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}
.prodcustFooter a {
  display: inline-block;
  padding: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.prodcustFooter a:hover {
  opacity: 0.6;
}
.prodcustFooter a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sliderModal .sliderModalBody {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}
@media (max-width: 600px) {
  .sliderModal .sliderModalBody {
    gap: 20px 0;
    flex-direction: column-reverse;
  }
}
.sliderModal .sliderModalBody .sideThumb {
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 600px) {
  .sliderModal .sliderModalBody .sideThumb {
    display: none;
  }
}
.sliderModal .sliderModalBody .sideThumb::-webkit-scrollbar {
  width: 0px !important;
}
.sliderModal .sliderModalBody .sideThumb::-webkit-scrollbar-track {
  background: transparent;
}
.sliderModal .sliderModalBody .sideThumb::-webkit-scrollbar-thumb {
  background: transparent;
}
.sliderModal .sliderModalBody .sideThumb::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
.sliderModal .sliderModalBody .sideThumb .imgThumbSlide {
  position: relative;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  flex-direction: column;
  gap: 20px 0;
  height: auto;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .sliderModal .sliderModalBody .sideThumb .imgThumbSlide {
    flex-direction: row;
  }
}
.sliderModal .sliderModalBody .sideThumb .imgThumbSlide .imgThumbSlideBox {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: solid 4px transparent;
  cursor: pointer;
}
.sliderModal .sliderModalBody .sideThumb .imgThumbSlide .imgThumbSlideBox.active {
  border: solid 4px #ff9100;
}
.sliderModal .sliderModalBody .sideThumb .imgThumbSlide .imgThumbSlideBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 992px) {
  .sliderModal .sliderModalBody .sideThumb .imgThumbSlide .imgThumbSlideBox {
    width: 110px;
    height: 110px;
  }
}
.sliderModal .sliderModalBody .resSideThumb {
  width: 100%;
  display: none;
}
@media (max-width: 600px) {
  .sliderModal .sliderModalBody .resSideThumb {
    display: block;
  }
}
.sliderModal .sliderModalBody .resSideThumb .owl-nav {
  top: 50%;
  position: absolute;
  margin-top: -10px;
  width: calc(100% + 20px);
  display: flex;
  justify-content: space-between;
  left: -10px;
}
.sliderModal .sliderModalBody .resSideThumb .owl-nav button {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.6);
}
.sliderModal .sliderModalBody .resSideThumb .owl-nav button span {
  font-size: 30px;
}
.sliderModal .sliderModalBody .resSideThumb .imgThumbSlideBox {
  width: 100%;
  height: initial;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: solid 4px transparent;
  cursor: pointer;
}
.sliderModal .sliderModalBody .resSideThumb .imgThumbSlideBox.active {
  border: solid 4px #ff9100;
}
.sliderModal .sliderModalBody .resSideThumb .imgThumbSlideBox img {
  width: 100%;
  height: 100%;
}
.sliderModal .sliderModalBody .mainSlideImg {
  width: 600px;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 600px) {
  .sliderModal .sliderModalBody .mainSlideImg {
    width: 100%;
    height: auto;
  }
}
.sliderModal .sliderModalBody .mainSlideImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sliderModal .sliderModalBody .mainSlideImg .minimizeBtn {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 0;
  outline: transparent;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.sliderModal .sliderModalBody .mainSlideImg .minimizeBtn:hover {
  background-color: white;
}
.sliderModal .sliderModalBody .mainSlideImg .minimizeBtn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proSliderModal .modal-dialog {
  max-width: 860px;
  margin: 0 auto !important;
}

.clipBoardWrap {
  width: 100%;
  height: 60px;
  background-color: #f6f6f6;
  border-radius: 8px;
  position: relative;
  margin: 20px auto;
}
@media (max-width: 992px) {
  .clipBoardWrap {
    height: 50px;
  }
}
.clipBoardWrap input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: transparent;
  background-color: transparent;
  padding: 0 50px 0 15px;
  color: #000;
  font-size: 24px;
  font-weight: 300;
}
@media (max-width: 992px) {
  .clipBoardWrap input {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .clipBoardWrap input {
    font-size: 14px;
  }
}
.clipBoardWrap .clipboardBtn {
  width: 50px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  outline: transparent;
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.clipBoardWrap .clipboardBtn img {
  width: 24px;
  height: 24px;
}

.accordionCustomeBtn.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordionCustomeBtn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
  background-color: transparent;
  box-shadow: none;
  border: 0;
  outline: transparent;
  padding: 0;
}
.accordionCustomeBtn img {
  width: 80px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
}
@media (max-width: 600px) {
  .accordionCustomeBtn img {
    width: 60px;
    height: 40px;
  }
}
.accordionCustomeBtn h2 {
  font-size: 24px;
  color: #000;
}
@media (max-width: 600px) {
  .accordionCustomeBtn h2 {
    font-size: 18px;
  }
}

.accordion-body {
  padding-left: 0;
  padding-right: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.customeAccoBody span {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  margin: 5px 0 15px;
  display: block;
}

#accordionExample {
  margin: 30px 0;
  border: 0;
}
#accordionExample .accordion-item {
  background-color: #fff;
  border: 0;
  padding: 6px 0;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.203125rem;
  opacity: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.40625rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.custom-control-label::before {
  position: absolute;
  top: 0.203125rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #ff9100;
  background-color: #ff9100;
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-control-label::after {
  position: absolute;
  top: 0.203125rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.priceHeadTable {
  width: 100%;
  overflow: auto;
}
.priceHeadTable::-webkit-scrollbar {
  height: 4px; /* height of horizontal scrollbar ← You're missing this */
  width: 4px; /* width of vertical scrollbar */
  border: 1px solid #d5d5d5;
}
.priceHeadTable table {
  width: 100%;
}
.priceHeadTable table thead tr td {
  padding: 6px;
  border-bottom: solid 1px #c9c9c9;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
.priceHeadTable table thead tr td:first-child {
  border-bottom: 0;
}
@media (max-width: 600px) {
  .priceHeadTable table thead tr td {
    font-size: 14px;
  }
}
.priceHeadTable table tbody tr {
  position: relative !important;
}
.priceHeadTable table tbody tr td {
  padding: 6px;
  border-bottom: solid 1px #c9c9c9;
  font-size: 16px;
  color: black;
  font-weight: 400;
}
@media (max-width: 600px) {
  .priceHeadTable table tbody tr td {
    font-size: 14px;
  }
}
.priceHeadTable table tbody tr td p {
  display: block;
  margin: 4px 0 0;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  padding-left: 23px;
}
.priceHeadTable table tbody tr td:nth-child(2) p {
  padding-left: 0;
}
.priceHeadTable table tbody tr td.priceChartLabel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 6px;
  border-bottom: 0;
}
@media (max-width: 600px) {
  .priceHeadTable table tbody tr td.priceChartLabel {
    font-size: 14px;
  }
}
.priceHeadTable table tbody tr td.priceChartLabel p {
  padding-left: 0px;
  font-size: 16px;
  color: #ff9100;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .priceHeadTable table tbody tr td.priceChartLabel p {
    font-size: 14px;
  }
}
.priceHeadTable table tbody tr td.priceChartLabel label {
  font-size: 16px;
  color: #ff9100;
  font-weight: 500;
}
.priceHeadTable table tbody tr.rowDisabled {
  position: relative;
}
.priceHeadTable table tbody tr.rowDisabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.5);
}

[type=checkbox]:not(:checked),
[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

[type=checkbox] + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

[type=checkbox] + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #5a5a5a;
  border-radius: 1px;
  margin-top: 2px;
}

[type=checkbox].filled-in:checked + label:before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type=checkbox].filled-in + label:after {
  border-radius: 2px;
}

[type=checkbox].filled-in + label:after {
  content: "";
  left: 0;
  position: absolute;
  z-index: 1;
}

[type=checkbox].filled-in:checked + label:after {
  top: 0px;
  width: 20px;
  height: 20px;
  border: 2px solid #ff9100;
  background-color: #ff9100;
  z-index: 0;
}

[type=checkbox].filled-in + label:before,
[type=checkbox].filled-in + label:after {
  content: "";
  left: 0;
  position: absolute;
  z-index: 1;
}

.newPresentationWrapper {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.newPresentationWrapper .selectProductWrapper {
  width: 100%;
  border-radius: 15px;
  background-color: #eaeaea;
  padding: 20px;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper {
    padding: 10px;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .headdingWrapLeft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
  padding: 10px 0;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .headdingWrapLeft h2 {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .headdingWrapLeft h2 {
    font-size: 15px;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .headdingWrapLeft .switchWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .headdingWrapLeft .switchWrap button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 0;
  outline: transparent;
  opacity: 0.6;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .headdingWrapLeft .switchWrap button {
    width: 20px;
    height: 20px;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .headdingWrapLeft .switchWrap button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .headdingWrapLeft .switchWrap button.active {
  opacity: 1;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .addProBtn {
  width: 24px;
  height: 24px;
  border: 0;
  outline: transparent;
  background-color: transparent;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .addProBtn {
    width: 20px;
    height: 20px;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperHead .addProBtn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody {
  width: 100%;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  display: none;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid {
    gap: 20px 0;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv {
  width: calc(50% - 10px);
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv {
    width: 100%;
    padding: 10px;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv:hover .cardDtl {
  opacity: 1;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .cardDtl {
  width: 20px;
  height: 20px;
  border: 0;
  outline: transparent;
  background-color: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .cardDtl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .selectProGridDivHead {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .selectProGridDivHead img {
  width: 60px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  object-fit: cover;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .selectProGridDivHead h3 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .priceTableSm {
  width: 100%;
  margin: 0;
  margin-top: 10px;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .priceTableSm tbody tr {
  padding: 5px 0;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .priceTableSm tbody tr td {
  padding: 4px 6px;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  border: 0;
  border-right: solid 1px #c9c9c9;
  vertical-align: baseline;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .priceTableSm tbody tr td {
    padding: 4px;
    font-size: 14px;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .priceTableSm tbody tr td:last-child {
  border-right: 0;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .priceTableSm tbody tr td .priceCardSm {
  padding: 6px;
  border-radius: 4px;
  border: solid 1px #ff9100;
  font-size: 16px;
  color: #ff9100;
  font-weight: 400;
  margin-bottom: 0;
  vertical-align: baseline;
  display: inline-block;
  text-align: center;
  width: 100%;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .priceTableSm tbody tr td .priceCardSm {
    padding: 4px;
    font-size: 14px;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProGrid .selectProGridDiv .priceTableSm tbody tr td:nth-child(2) {
  text-align: center;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px 0;
  flex-wrap: wrap;
  display: none;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv:hover .cardDtl {
  opacity: 1;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .cardDtl {
  width: 20px;
  height: 20px;
  border: 0;
  outline: transparent;
  background-color: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .cardDtl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .selectProGridDivHead {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
  width: 25%;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .selectProGridDivHead {
    width: 100%;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .selectProGridDivHead h3 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .priceTableSm {
  width: 75%;
  margin: 0;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .priceTableSm {
    width: 100%;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .priceTableSm tbody tr {
  padding: 5px 0;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .priceTableSm tbody tr td {
  width: 33.33%;
  padding: 10px;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  border: 0;
  border-right: solid 1px #c9c9c9;
  vertical-align: baseline;
  text-align: center;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .priceTableSm tbody tr td {
    font-size: 14px;
    white-space: nowrap;
    padding: 4px;
    text-align: left;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .priceTableSm tbody tr td:last-child {
  border-right: 0;
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .priceTableSm tbody tr td .priceCardSm {
  padding: 6px;
  border-radius: 4px;
  border: solid 1px #ff9100;
  font-size: 16px;
  color: #ff9100;
  font-weight: 400;
  margin-bottom: 0;
  vertical-align: baseline;
  text-align: center;
  display: inline-block;
}
@media (max-width: 600px) {
  .newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProList .selectProGridDiv .priceTableSm tbody tr td .priceCardSm {
    font-size: 14px;
    white-space: nowrap;
    padding: 4px;
  }
}
.newPresentationWrapper .selectProductWrapper .selectProductWrapperBody .selectProActive {
  display: flex !important;
}

.customModal .thumbModalHead {
  font-size: 1rem;
  color: #F25C05;
  line-height: 125%;
}
.customModal .modalCloser {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.customModal .modalCloser:hover {
  opacity: 0.8;
}
.customModal .modal-content {
  border-radius: 1.25rem;
}
.customModal .modal-header {
  border-bottom: 0;
  padding: 2rem;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .customModal .modal-header {
    padding: 1rem;
  }
}
.customModal .modal-body {
  padding: 2rem;
  max-height: 75vh;
  overflow: auto;
  scrollbar-width: 5px;
  scrollbar-color: rgba(0, 0, 0, 0.1);
}
.customModal .modal-body.modalPickColorBd {
  overflow: visible;
}
@media (max-width: 991px) {
  .customModal .modal-body {
    max-height: 70vh;
  }
}
@media (max-width: 767px) {
  .customModal .modal-body {
    max-height: 60vh;
    padding: 1rem;
  }
}
.customModal .modal-body::-webkit-scrollbar {
  background-color: transparent;
  border-radius: 0;
  width: 5px;
}
.customModal .modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
  width: 5px;
}
.customModal .modal-footer {
  justify-content: center;
  border-top: 0;
}
.customModal .thumbGridWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 20px;
}
@media (max-width: 991px) {
  .customModal .thumbGridWrap {
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .customModal .thumbGridWrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}
.customModal .thumbGridWrap.productSelThumb {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 991px) {
  .customModal .thumbGridWrap.productSelThumb {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .customModal .thumbGridWrap.productSelThumb {
    grid-template-columns: 1fr 1fr;
  }
}
.customModal .thumbGridWrap.productSelThumb .tumbItem {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.customModal .thumbGridWrap.productSelThumb .tumbItem .thumbImg {
  height: 180px;
}
@media (max-width: 1199px) {
  .customModal .thumbGridWrap.productSelThumb .tumbItem .thumbImg {
    height: 120px;
  }
}
@media (max-width: 991px) {
  .customModal .thumbGridWrap.productSelThumb .tumbItem .thumbImg {
    height: 90px;
  }
}
.customModal .thumbGridWrap.productSelThumb .tumbItem .productName {
  font-size: 1.25rem;
  color: #0a070d;
  line-height: 120%;
  width: 100%;
  display: block;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .customModal .thumbGridWrap.productSelThumb .tumbItem .productName {
    font-size: 1rem;
  }
}
.customModal .thumbGridWrap .tumbItem {
  cursor: pointer;
  padding: 6px;
  position: relative;
  border: 1px solid #fff;
  border-radius: 8px;
}
.customModal .thumbGridWrap .tumbItem::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/check_circle_orange.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  right: -6px;
  top: -6px;
  opacity: 0;
  visibility: hidden;
}
.customModal .thumbGridWrap .tumbItem.active {
  border: 1px solid #F25C05;
}
.customModal .thumbGridWrap .tumbItem.active::after {
  opacity: 1;
  visibility: visible;
}
.customModal .thumbGridWrap .tumbItem .thumbImg {
  width: 100%;
  border-radius: 8px;
  height: 150px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .customModal .thumbGridWrap .tumbItem .thumbImg {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .customModal .thumbGridWrap .tumbItem .thumbImg {
    height: 120px;
  }
}
@media (max-width: 575px) {
  .customModal .thumbGridWrap .tumbItem .thumbImg {
    height: 100px;
  }
}
.customModal .thumbGridWrap .tumbItem.thumbFileUploader {
  height: 150px;
  border-radius: 1.125rem;
  border: 2px dashed #F25C05;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .customModal .thumbGridWrap .tumbItem.thumbFileUploader {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .customModal .thumbGridWrap .tumbItem.thumbFileUploader {
    height: 120px;
  }
}
@media (max-width: 575px) {
  .customModal .thumbGridWrap .tumbItem.thumbFileUploader {
    height: 100px;
  }
}
.customModal .thumbGridWrap .tumbItem.thumbFileUploader .thumbUpInner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.customModal .thumbGridWrap .tumbItem.thumbFileUploader .thumbUpInner img {
  width: 40px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .customModal .thumbGridWrap .tumbItem.thumbFileUploader .thumbUpInner img {
    width: 25px;
  }
}
.customModal .thumbGridWrap .tumbItem.thumbFileUploader .thumbUpInner span {
  font-weight: 300;
  font-size: 1rem;
  line-height: 120%;
  color: #000;
  display: block;
  text-align: center;
}
@media (max-width: 991px) {
  .customModal .thumbGridWrap .tumbItem.thumbFileUploader .thumbUpInner span {
    font-size: 0.825rem;
  }
}
.customModal .thumbGridWrap .tumbItem.thumbFileUploader input[type=file] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 1.125rem;
}
.customModal .thumbGridWrap .thumDropBoxHolder {
  padding: 6px;
}
.customModal .productSelListWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 24px;
}
@media (max-width: 991px) {
  .customModal .productSelListWrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 18px;
  }
}
@media (max-width: 767px) {
  .customModal .productSelListWrap {
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
}
.customModal .productSelListWrap .productlistItem {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .customModal .productSelListWrap .productlistItem {
    padding: 15px;
  }
}
.customModal .productSelListWrap .productlistItem::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/check_circle_orange.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  right: -6px;
  top: -6px;
  opacity: 0;
  visibility: hidden;
}
.customModal .productSelListWrap .productlistItem.active {
  border: 1px solid #F25C05;
}
.customModal .productSelListWrap .productlistItem.active::after {
  opacity: 1;
  visibility: visible;
}
.customModal .productSelListWrap .productlistItem .prdListName {
  font-style: normal;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 120%;
  color: #0a070d;
}
@media (max-width: 1199px) {
  .customModal .productSelListWrap .productlistItem .prdListName {
    font-size: 1rem;
  }
}
.customModal .productGalleryWrap {
  display: none;
}
.customModal .productGalleryWrap.active {
  display: block;
}

.cp-cont .cp-buttons .btn {
  margin: 0 10px;
}
.cp-cont .cp-buttons .btn-close {
  background-image: unset !important;
  background-color: #ff9100 !important;
  opacity: 1 !important;
  width: auto !important;
  height: auto !important;
  color: #fff !important;
  border: 1px solid #ff9100 !important;
  padding: 0.375rem 0.75rem !important;
}
.cp-cont .cp-buttons .btn-close:hover {
  background-color: #fff !important;
  color: #ff9100 !important;
}
.cp-cont .cp-buttons .btn-none {
  background-color: #fff !important;
  border: 1px solid #ff9100 !important;
  color: #ff9100 !important;
  height: auto !important;
  width: auto !important;
  padding: 0.375rem 0.75rem !important;
}
.cp-cont .cp-buttons .btn-none:hover {
  background-color: #ff9100 !important;
  color: #fff !important;
}

.colorNameSelWrap {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.colorNameSelWrap .colorNameInpWrap {
  display: flex;
  align-items: center;
}
.colorNameSelWrap .colorNameInpWrap .colorNameInp {
  width: calc(100% - 25px);
  border-radius: 8px;
  border: 1px solid #eeeeee;
  padding: 12px 10px;
  font-size: 1rem;
  line-height: 125%;
  color: #6B6B6B;
  margin-right: 8px;
  font-weight: 300;
}
.colorNameSelWrap .colorNameInpWrap .colorNameInp::placeholder {
  color: #6B6B6B;
}
.colorNameSelWrap .colorNameInpWrap .addInpCTA {
  border: none;
  outline: none;
  background: transparent;
  opacity: 0.8;
}
.colorNameSelWrap .colorNameInpWrap .addInpCTA:hover {
  opacity: 1;
}
.colorNameSelWrap .colorNameInpWrap .addInpCTA img {
  width: 30px;
}
.colorNameSelWrap #tempColorsHolder {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.colorNameSelWrap .colrAddedName {
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 4px;
  border: 1px solid #e2e2e2;
  margin-right: 16px;
}
.colorNameSelWrap .colrAddedName span {
  font-size: 1rem;
  line-height: 125%;
  color: #6B6B6B;
  margin-right: 12px;
}
.colorNameSelWrap .colrAddedName .removeName {
  border: none;
  outline: none;
  background: transparent;
  opacity: 0.8;
}
.colorNameSelWrap .colrAddedName .removeName:hover {
  opacity: 1;
}
.colorNameSelWrap .colrAddedName .removeName img {
  width: 14px;
}

.listUtileWrap {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .listUtileWrap {
    justify-content: space-between;
    width: 100%;
  }
}
.listUtileWrap .seacrhInpWrap {
  width: initial;
}
.listUtileWrap .seacrhInpWrap .seacrhInpIn {
  width: 300px;
  height: 50px;
  border-radius: 8px;
  padding: 10px;
  border: solid 1px #c9c9c9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
@media (max-width: 767px) {
  .listUtileWrap .seacrhInpWrap .seacrhInpIn {
    width: 200px;
  }
}
.listUtileWrap .seacrhInpWrap .seacrhInpIn img {
  width: 24px;
}
.listUtileWrap .seacrhInpWrap .seacrhInpIn input {
  width: calc(100% - 34px);
  height: 100%;
  font-size: 1rem;
  color: #000;
}
.listUtileWrap .seacrhInpWrap .seacrhInpIn input::placeholder {
  color: #c9c9c9;
}
.listUtileWrap .viewModeHolder {
  width: initial;
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-left: 48px;
}
.listUtileWrap .viewModeHolder button {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  outline: transparent;
  border: 0;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.listUtileWrap .viewModeHolder button:hover {
  opacity: 0.6;
}
.listUtileWrap .viewModeHolder button svg {
  width: 100%;
  height: 100%;
}
.listUtileWrap .viewModeHolder button.active {
  opacity: 1;
}

.inpClickTxt {
  font-size: 2rem;
  color: #000;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 1.5rem;
  border: 1px solid #ffffff;
  outline: 0;
  border-radius: 8px;
  width: 100%;
  padding: 6px 0;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .inpClickTxt {
    font-size: 1.1rem;
    line-height: 130%;
    margin-bottom: 1rem;
  }
}
.inpClickTxt::placeholder {
  color: #000;
}
.inpClickTxt.active {
  border: 1px solid #ff9100;
  padding: 6px 28px;
}

.inpClickTxtWrap {
  position: relative;
}

.inpClickTxtWrap .smPlaceholder {
  font-size: 1.25rem;
  position: absolute;
  left: 312px;
  top: 24px;
  font-weight: 300;
  z-index: 1;
}

.dropzone .dz-preview .dz-remove {
  color: #F25C05 !important;
}

@media (max-width: 600px) {
  .d-noneRes {
    display: none !important;
  }
}

.d-showRes {
  display: none !important;
}
@media (max-width: 600px) {
  .d-showRes {
    display: flex !important;
    margin-left: 20px;
  }
}

.viewModeWrap {
  width: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.viewModeWrap button {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  outline: transparent;
  border: 0;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.viewModeWrap button svg {
  width: 100%;
  height: 100%;
}
.viewModeWrap button.active {
  opacity: 1;
}

.homeBody {
  width: 100%;
}
@media (max-width: 992px) {
  .homeBody {
    height: calc(100vh - 121px) !important;
  }
}
@media (max-width: 600px) {
  .homeBody {
    height: calc(100vh - 164px) !important;
  }
}

.presentationBody {
  width: 100%;
}
@media (max-width: 992px) {
  .presentationBody {
    height: calc(100vh - 121px) !important;
  }
}
@media (max-width: 600px) {
  .presentationBody {
    height: calc(100vh - 164px) !important;
  }
}

.detailsGridtable table tbody tr table tr:first-child td:first-child {
  width: 150px;
}

.detailsGridtable table tbody tr table tr:first-child td {
  text-align: left !important;
}

.detailsGridtable table tbody tr table tr {
  text-align: left !important;
}

.detailsGridtable table tbody tr table tr td {
  text-align: left !important;
}

.detailsListInfoBody table tbody tr td {
  text-align: left !important;
}

.listModalDetailsTabile table tbody tr table tbody tr td:first-child {
  width: 120px;
}
@media (max-width: 1200px) {
  .listModalDetailsTabile table tbody tr table tbody tr td:first-child {
    width: 346px;
  }
}
@media (max-width: 992px) {
  .listModalDetailsTabile table tbody tr table tbody tr td:first-child {
    width: 209px;
  }
}
@media (max-width: 600px) {
  .listModalDetailsTabile table tbody tr table tbody tr td:first-child {
    width: 144px;
  }
}

.listModalDetailsTabile table tbody tr table tbody tr:last-child td {
  text-align: left !important;
}

.listModalDetailsTabile table tbody tr table tbody tr td {
  text-align: left !important;
}

@media (max-width: 1200px) {
  .listModalDetailsTabile {
    width: 100% !important;
    padding-left: 0px !important;
    border-left: 0px !important;
  }
}

.modal {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.modal::-webkit-scrollbar {
  width: 0px !important;
}
.modal::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.modal::-webkit-scrollbar-thumb {
  background: #ff9100;
  border-radius: 30px;
}
.modal::-webkit-scrollbar-thumb:hover {
  background: #ff9100;
}

.newProBody {
  width: 100%;
  height: calc(100vh - 80px) !important;
  overflow: auto;
  padding: 20px 20px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1);
}

#detailsListToggleBody {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
}
#detailsListToggleBody .detailsModalBody {
  width: calc(70% - 385px);
}
#detailsListToggleBody .modalParagraphText {
  font-size: 16px;
  color: #0a070d;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.6;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.inpErrorTxt {
  font-size: 14px;
  color: #f20505;
  position: relative;
  top: -30px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .inpErrorTxt {
    position: relative;
    top: -16px;
  }
}

.prItem .inpErrorTxt {
  font-size: 14px;
  color: #f20505;
  position: absolute;
  bottom: 0;
  left: 10px;
  top: 102%;
  font-weight: 500;
}
@media (max-width: 767px) {
  .prItem .inpErrorTxt {
    position: relative;
    top: 0;
    left: 0;
  }
}

.someInfoWrap {
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .someInfoWrap {
    padding: 1.25rem;
  }
}
.someInfoWrap .tickIcon {
  width: 64px;
  margin-bottom: 2rem;
}
.someInfoWrap .successMsg {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 130%;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
}

.thumbCloser {
  position: absolute;
  right: -7px;
  top: -7px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: #fff;
  border: 0;
  border-radius: 5px;
}
.thumbCloser img {
  width: 15px;
}

.thumbTagWrapper {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
}

.thumbTag {
  display: inline-block;
  border: solid 1px #ff9100;
  opacity: 1 !important;
  background-color: #ff9100;
  color: #ffffff;
  font-size: 13px;
  padding: 4px 6px;
  font-style: normal;
}
.thumbTag:hover {
  background-color: #ff9e1b;
  color: #ffffff;
}

.selectedThumbnail {
  border: 1px solid #F25C05 !important;
}
.selectedThumbnail .thumbTag {
  border: solid 1px #ff9100;
  background-color: #ffffff;
  color: #ff9100;
  font-style: italic;
}

.mb-30 {
  margin-bottom: 30px;
}

.hide {
  display: none;
}

.colorBox {
  width: 20px;
  height: 20px;
  border-radius: 5px !important;
  margin-right: 5px;
  background-color: #CBDBDB;
  display: block;
  padding: 0px;
  float: left;
}

.owl-nav.disabled {
  display: none !important;
}

.productSmTbl .pdQty {
  width: 30%;
}

.productSmTbl .pdPrice {
  width: 30%;
}

.productSmTbl .pdType {
  width: 36%;
}

.dollarField {
  position: relative;
}
.dollarField:before {
  content: "$";
  position: absolute;
  left: 15px;
  top: 17.5px;
  font-size: 16px;
  color: #0A070D;
}

/* new styling 16-08-23 */
.supplierInfoWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-top: -5px;
}

.listTableHolder {
  overflow: auto;
  width: 100%;
}
.listTableHolder::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.listTableHolder::-webkit-scrollbar-thumb {
  width: 5px;
  height: 5px;
}

.listInfoDesc {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.listInfoDesc span {
  color: rgba(10, 7, 13, 0.5);
}

.supplierId {
  display: inline-block;
  padding: 2px 5px;
  color: #0A070D;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08);
}

.listTableWrap {
  display: none;
}
.listTableWrap .listTableHolder .listTable {
  width: 100%;
  border: 0;
  font-size: 16px;
  border-collapse: collapse;
  text-align: left;
}
@media (max-width: 991px) {
  .listTableWrap .listTableHolder .listTable {
    font-size: 14px;
  }
}
.listTableWrap .listTableHolder .listTable th {
  color: #6B6B6B;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-bottom: 18px;
}
@media (max-width: 991px) {
  .listTableWrap .listTableHolder .listTable th {
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
  }
  .listTableWrap .listTableHolder .listTable th:first-child {
    padding-left: 0;
  }
}
.listTableWrap .listTableHolder .listTable tr:nth-child(even) {
  background: #F4F4F4;
}
.listTableWrap .listTableHolder .listTable tr td {
  padding: 5px 0;
  font-weight: 500;
}
@media (max-width: 991px) {
  .listTableWrap .listTableHolder .listTable tr td {
    white-space: nowrap;
    padding: 5px 8px;
  }
  .listTableWrap .listTableHolder .listTable tr td:first-child {
    padding-left: 0;
  }
}
.listTableWrap .listTableHolder .listTable tr .prdRowWrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.listTableWrap .listTableHolder .listTable tr .prdRowWrap img {
  width: 40px;
  height: 30px;
  border-radius: 4px;
  background-color: rgba(211, 211, 211, 0.5);
}
.listTableWrap .listTableHolder .listTable tr .prdRowWrap span {
  color: #0A070D;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 991px) {
  .listTableWrap .listTableHolder .listTable tr .prdRowWrap span {
    white-space: nowrap;
    font-size: 14px;
  }
}
.listTableWrap .listTableHolder .listTable tr .tblActionWrap {
  display: flex;
}
.listTableWrap .listTableHolder .listTable tr .tblActionWrap a {
  padding: 0 10px;
  border-right: 1px solid #E2E2E2;
  transition: all 0.2s ease;
}
.listTableWrap .listTableHolder .listTable tr .tblActionWrap a:last-child {
  border: 0;
}
.listTableWrap .listTableHolder .listTable tr .tblActionWrap a:first-child {
  padding-left: 0;
}
.listTableWrap .listTableHolder .listTable tr .tblActionWrap a:hover img {
  filter: brightness(1);
  opacity: 1;
}
.listTableWrap .listTableHolder .listTable tr .tblActionWrap a img {
  width: 24px;
  filter: brightness(0);
  opacity: 0.5;
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  .listTableWrap .listTableHolder .listTable tr .tblActionWrap a img {
    width: 20px;
  }
}

.detSupplyerWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.detSupplyerWrap .supName {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 145, 0, 0.3);
  color: #0A070D;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.detSupplyerWrap .sumPrdId {
  color: #545454;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.gridCollectionWrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  display: none;
  padding-bottom: 30px;
}
.gridCollectionWrap .dasboardCardGrid {
  width: calc(25% - 20px);
  border-radius: 16px;
  border: solid 1px #e2e2e2;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px 0;
}
@media screen and (max-width: 1440px) {
  .gridCollectionWrap .dasboardCardGrid {
    width: calc(33.33% - 20px);
  }
}
@media screen and (max-width: 992px) {
  .gridCollectionWrap .dasboardCardGrid {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .gridCollectionWrap .dasboardCardGrid {
    width: 100%;
  }
}
.gridCollectionWrap .dasboardCardGrid .collectionCard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectioncardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectioncardHeader .collectionCardTitle h2 {
  color: #000000;
  font-size: 18px;
  font-weight: normal;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectioncardHeader .collectionCardAction .moreDropdown .btn {
  padding: 0;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectioncardHeader .collectionCardAction .moreDropdown .btn:after {
  display: none;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectioncardHeader .collectionCardAction .moreDropdown .btn:focus {
  box-shadow: none;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectioncardHeader .collectionCardAction .moreDropdown .dropdown-menu {
  border-radius: 8px;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectioncardHeader .collectionCardAction .moreDropdown .dropdown-menu a img {
  opacity: 0.5;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectioncardHeader .collectionCardAction .moreDropdown .dropdown-menu a:hover {
  background: none;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectioncardHeader .collectionCardAction .moreDropdown .dropdown-menu a:hover img {
  opacity: 1;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectionItems {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectionItems .collectionItem {
  border-radius: 12px;
  overflow: hidden;
  height: 120px;
  position: relative;
  width: calc(50% - 6px);
  background-color: #f3f3f3;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectionItems .collectionItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gridCollectionWrap .dasboardCardGrid .collectionCard .collectionItems .collectionItem .moreOverlay {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  color: #FFF;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inputExpanderHolder {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .inputExpanderHolder {
    margin-bottom: 1.25rem;
  }
}
.inputExpanderHolder .inputExpander {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ff9100;
  padding: 18px 28px;
  line-height: 125%;
  color: #0a070d;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .inputExpanderHolder .inputExpander {
    padding: 14px 18px;
  }
}
.inputExpanderHolder .expandInputElems {
  border-radius: 12px;
  border: 1px #E2E2E2 solid;
  overflow: hidden;
  display: none;
}
.inputExpanderHolder .expandInputElems .expandInputElem {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  color: #0A070D;
}
.inputExpanderHolder .expandInputElems .expandInputElem img {
  transition: all 0.2s;
  transform: rotate(0deg);
}
.inputExpanderHolder .expandInputElems .expandInputElem:hover img {
  transform: rotate(90deg);
}
.inputExpanderHolder .expandInputElems .expandElemsDivider {
  position: relative;
  height: 1px;
  line-height: 23px;
  text-align: center;
  top: -12px;
}
.inputExpanderHolder .expandInputElems .expandElemsDivider:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  height: 1px;
  background-color: #E2E2E2;
}
.inputExpanderHolder .expandInputElems .expandElemsDivider span {
  color: #6B6B6B;
  font-size: 16px;
  position: relative;
  z-index: 10;
  padding: 0 10px;
  background-color: #FFF;
}

.modalHeaderFlex {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.modalHeaderSubText {
  color: #6B6B6B;
  font-size: 16px;
}

.customModal .thumbGridWrap.collectionSelectThumb {
  grid-template-columns: 1fr;
}
.customModal .thumbGridWrap.collectionSelectThumb .collectionSelector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 16px;
}
@media screen and (max-width: 992px) {
  .customModal .thumbGridWrap.collectionSelectThumb .collectionSelector {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectInfo a {
  color: #0A070D;
  font-size: 24px;
}
.customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectInfo p {
  color: #6B6B6B;
  font-size: 16px;
  margin: 0;
}
.customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectPreview {
  display: flex;
  gap: 10px;
}
.customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectPreview .collectionPreviewDiv {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 992px) {
  .customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectPreview .collectionPreviewDiv {
    border-radius: 6px;
  }
}
.customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectPreview .collectionPreviewDiv img {
  height: 72px;
}
@media screen and (max-width: 992px) {
  .customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectPreview .collectionPreviewDiv img {
    height: 36px;
  }
}
.customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectPreview .collectionPreviewDiv span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  color: #FFF;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .customModal .thumbGridWrap.collectionSelectThumb .collectionSelector .collectionSelectPreview .collectionPreviewDiv span {
    font-size: 16px;
  }
}

.collectionFormGroup {
  margin-bottom: 25px;
  width: 50%;
}

.btnWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .btnWrapper {
    gap: 20px;
  }
}
.btnWrapper button, .btnWrapper a {
  width: 48% !important;
}
@media screen and (max-width: 767px) {
  .btnWrapper button, .btnWrapper a {
    width: 100%;
  }
}

.columnLeft {
  order: 2;
}

.columnRight {
  order: 1;
}

@media (min-width: 768px) {
  .columnLeft {
    order: 1;
  }
  .columnRight {
    order: 2;
  }
}

/*# sourceMappingURL=styles.css.map */
