/* Abhijit-code */

@import "https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";

html {
  overflow: hidden;
  box-sizing: border-box;
}

:root {
  --blue-primary: #1586ef;
  --blue-secondary: #1c76b9;
  --white: #ffffff;
  --black: #000000;
  --gray: #797979;
  --off-white: #e1e1e1;
  --hover-hover: #0b649d;
  --dark-blue: #252839;
  --light-bg: #ecf2ff;
  --alert-red: #f15950;
  --alert-border: rgb(241, 89, 80, 0.5);
  --alert-bg: rgb(241, 89, 80, 0.05);
  --border: #d9dbe4;
}

.error {
  outline: 2px solid red !important;
}

.focus {
  outline: 2px solid var(--blue-primary);
}

/* Abhijit-code-end */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.logo {
  flex-shrink: 0;
  width: 190px;
}

/* abhijit-code */
.container-ule {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.header-icon {
  color: var(--gray);
}

.done .header-icon {
  color: var(--white);
}

.image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

a {
  color: var(--white);
  text-decoration: none;
}

a:hover {
  color: white;
}

.ule-add-from {
  display: flex;
  padding: 10px 40px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  width: 100%;
  background-color: cornflowerblue;
  border: none;
  color: white;
  flex-basis: content;
}

.ule-add-from:hover {
  background-color: var(--blue-primary);
}

/* ule add new button */
.ule-button-add {
  display: flex;
  padding: 6px 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: var(--dark-blue);
  color: var(--white);
  border-radius: 8px;
}

.ule-button-add:hover {
  background-color: var(--black);
  cursor: pointer;
  color: var(--white);
}

/*  ule add new button end */
.ule-nav-button {
  align-self: stretch;
  display: flex;
  padding: 2px;
  justify-content: center;
  align-items: center;
  border: none;
  height: auto;
  background-color: #878787;
  color: #ffffff;
}

.ule-nav-button-layer {
  align-self: stretch;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border: none;
  height: auto;
  background-color: #cdcdcd;
  color: #4C4C4C;
}

.ule-nav-button:hover {
  background-color: #5b5c5f;
}

.ule-button {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border: none;
  height: auto;
  background-color: var(--blue-primary);
  color: var(--white);
  border-radius: 5px;
  gap: 8px;
  width: 100%;
}

.ule-button:hover {
  background-color: var(--blue-secondary);
}

.ule-button-outlined {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border: none;
  outline: 2px solid var(--blue-primary);
  outline-offset: -2px;
  width: 100%;
  height: auto;
  background-color: transparent;
  color: var(--blue-primary);
  border-radius: 8px;
  cursor: pointer;
}

.ule-button-outlined:hover {
  background-color: var(--light-bg);
  outline: 2px solid var(--blue-secondary);
  outline-offset: -2px;
  color: var(--blue-secondary);
}

.ule-button-secondary {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border: none;
  width: 100%;
  height: auto;
  background-color: var(--off-white);
  color: var(--black);
  border-radius: 8px;
  cursor: pointer;
}

.ule-button-secondary:hover {
  background-color: var(--gray);
}

.ule-drag-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  width: 100%;
  height: auto;
  background-color: var(--off-white) !important;
  color: var(--black) !important;
  border-radius: 8px 8px 0 0;
  padding: 14px 40px;
}

.opt-buttons .nav-link.active {
  border: none;
  color: var(--white) !important;
  background-color: var(--blue-primary) !important;
}

.ule-drag-button:hover {
  background-color: var(--off-white);
}

.ule-input {
  font-size: 14px;
  border-radius: 8px;
  border: 2px solid var(--border);
  padding: 14px;
  width: 100%;
  color: #666;
}

.ule-input:focus {
  outline: 2px solid var(--blue-primary);
}

.addnew-dialog {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100vh;
  margin-bottom: 0;
}

.addnew-dialog .modal-content {
  min-height: 100vh;
}

.addnew-pop {
  position: absolute;
  right: 2rem;
  bottom: 4rem;
  min-width: 250px;
  margin-bottom: 0;
}

/* google pop-up */

.google-search-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding: 8px 10px;
  border-radius: 50px;
  border: none;
  box-shadow: 0px 2px 5px rgb(129, 129, 129);
}

.google-search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: auto;
  padding: 14px 20px;
  background-color: white;
  border-radius: 40px;
  gap: 20px;
}

.google-logo-input {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  width: 600px;
}


/* google pop-up end */

.icon-cancel-circled {
  font-size: 20px;
}

.icon-city,
.icon-area,
.icon-school,
.icon-search,
.icon-arrw-down,
.icon-school,
.icon-bedroom,
.icon-bathroom,
.icon-garage,
.icon-plan,
.icon-floor,
.icon-trash,
.icon-edit-1,
.icon-eye,
.icon-eye-closed,
.icon-lock,
.icon-mail,
.icon-profile {
  font-size: 20px;
  color: var(--gray);
}

.icon-grid {
  color: var(--blue-primary);
  font-size: 20px;
}

.left-view-button.active .icon-grid {
  color: var(--white);
}

.icon-map {
  color: var(--blue-primary);
  font-size: 20px;
}

.right-view-button.active .icon-map {
  color: var(--white);
}

.left-time-frame-button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 4px 0px 0px 4px;
  border: 2px solid #1586ef;
  padding: 9px 11px;
}

.right-time-frame-button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 0px 4px 4px 0px;
  padding: 9px 11px;
  border: 2px solid #1586ef;
}

.left-time-frame-button.active,
.right-time-frame-button.active {
  background: #1586ef;
}

.time-frame-span {
  color: var(--blue-primary);
  font-size: 16px;
}

.left-time-frame-button.active .time-frame-span {
  color: var(--white);
}

.right-time-frame-button.active .time-frame-span {
  color: var(--white);
}

.modal-header {
  gap: 20px;
}

.line-progress {
  z-index: -10;
  position: absolute;
  top: 16px;
  width: 120px;
  height: 4px;
  background-color: var(--light-bg);
}

.progress-1 {
  left: 50px;
}

.done .progress-1 {
  background-color: var(--blue-primary);
}

.progress-2 {
  left: 195px;
}

.done .progress-2 {
  background-color: var(--blue-primary);
}

.progress-3 {
  right: 182px;
}

.done .progress-3 {
  background-color: var(--blue-primary);
}

.progress-4 {
  right: 45px;
}

.done .progress-4 {
  background-color: var(--blue-primary);
}

/* ABHIJITCODE-END */
.progress-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: transparent;
  gap: 60px;
}

.step-point {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrap {
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--light-bg);
  width: 37px;
  height: 37px;
  background: var(--light-bg);
}

.done .icon-wrap {
  border-color: #1586ef;
  background: var(--blue-primary);
}

.step-label {
  color: #6478c2;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.done .step-label {
  color: #1586ef;
}

.main-wrap {
  margin-top: 0px;
}

.filter {
  background: #eef1f6;
  padding: 10px 0 10px;
}

.filter-wrap {
  /* display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 10px 0; */
  display: flex;
      gap: 12px;
      padding: 10px 0 10px 0;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
}

.filter-wrap .search-group {
  width: 1028px;
  height: 62px;
}

.filter-wrap .search-group2 {
  width: 500px;
  flex-grow: 1;
}

.search-bar {
  border-radius: 8px;
  border: 2px solid var(--border);
  padding: 14px;
  outline-color: #1586ef !important;
  width: 100%;
  height: 100%;
}

.input-icon {
  position: absolute;
  top: 20px;
  right: 16px;
}

.view-buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.left-view-button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 8px 0px 0px 8px;
  border: 2px solid #1586ef;
  padding: 18px 22px;
}

.right-view-button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 0px 8px 8px 0px;
  padding: 18px 22px;
  border: 2px solid #1586ef;
}

.left-view-button svg,
.right-view-button svg {
  color: #1586ef;
}

.left-view-button.active,
.right-view-button.active {
  background: #1586ef;
}

.left-view-button.active svg,
.right-view-button.active svg {
  color: var(--white);
}

.filter-drop-down {
  background: var(--white);
  border-radius: 8px;
  border: 2px solid var(--border);
  height: 60px;
  padding: 8px 12px 8px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.filter-frame {
  padding: 0px 0px 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
  height: 35px;
  position: relative;
}

.res-wrap {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.result-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 1028px;
}

.backwresult {
  display: flex;
  flex-direction: row;
  color: var(--line-dark, #686b88);
  font-size: 15px;
  font-weight: 500;
}

.sort {
  color: var(--line-dark, #686b88);
}

.sort-span {
  color: var(--line-dark, #686b88);
  font-size: 15px;
  font-weight: 600;
}

.sort-select select {
  border: none;
  background: transparent;
  background-color: #d8d8d8;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  outline: #a19c9c;
  padding: 5px 8px;
  border-radius: 8px;
}

.filter-items {
  padding: 2px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.result-wrap {
  position: relative;
  margin-top: 30px;
}

.map-view {
  display: flex;
  gap: 50px;
}

.community-view {
  padding: 0px 1px 0px 1px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  height: calc(100vh - 310px);
  overflow-y: auto;
  overflow-x: hidden;
  width: 50%;;
}

/* abhijitcode */
.community-map-view {
  width: 50%;
  /* position: absolute;
  right: 0; */
  /* width: calc(100vw - 1095px);
  height: calc(100vh - 232px); */
}

/* abhijitcode-end */
.map {
  border: 2px solid var(--border);
  overflow: auto;
  margin-left: 6px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Abhijit-Code */
select {
  appearance: none;
  cursor: pointer;
}

@media only screen and (max-width: 390px) {
  .community-map-view {
    display: none;
  }
}

.custom-filter-icon {
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.filter-icon {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fil-switch {
  display: flex;
  align-items: center;
}

.fil-switch2 {
  display: flex;
  align-items: center;
  justify-content: right;
}

.filter-btn:hover {
.fil-switch {
  justify-content: right;
}

.fil-switch2 {
  justify-content: left;
}
}

.fil-path {
  width: 24px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--gray);
}

.fil-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: 3px;
  margin-right: 3px;
  border-radius: 6px;
  background-color: var(--blue-primary);
}

.dropup {
  position: relative;
  display: inline-block;
}

.dropup-content {
  display: none;
  position: absolute;
  background-color: #2e7cc6;
  bottom: 35px;
  z-index: 1;
  right: -18px;
  min-width: 200px;
  text-align: center;
}

.dropup-content a {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropup-content a:hover {
  background: #0973d5;
}


/* Abhijit-Code-End */
.com-card {
  border-radius: 8px;
  height: fit-content;
  border-style: solid;
  border-color: #e1e1e1;
  border-width: 1px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 100%;
}

.com-card .img {
  border-radius: 8px 0px 0px 8px;
  flex-shrink: 0;
  width: 50%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.comcard-details {
  background: var(--white);
  border-radius: 0px 8px 8px 0px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  flex: 1;
  position: relative;
}

.comcard-heading {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.comcard-title {
  color: var(--dark, #252839);
  text-align: left;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.comcard-subtitle {
  color: var(--icon, #797979);
  text-align: left;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  position: relative;
  width: 360px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.details-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  flex-wrap: wrap;
}

.details {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.comcard-frame {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.comcard-frame-title {
  color: #4c4d50;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.comcard-frame-value {
  color: #4c4d50;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.grid-view .community-view {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-view .community-view .com-card {
  flex-direction: column;
}

.grid-view .community-view .com-card .img {
  border-radius: 8px 8px 0px 0px;
  width: 100%;
}

.grid-view .community-view .com-card .comcard-details {
  gap: 16px;
}

.elevations-view {
  padding: 0px 1px 5px 1px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  height: calc(100vh - 310px);
  overflow-y: auto;
  overflow-x: hidden;
  width: 1045px;
}

/* abhijitcode  */
.elevations-map-view {
  position: absolute;
  right: 0;
  width: calc(100vw - 1095px);
  height: calc(100vh - 310px);
}

.select-w-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* abhijitcode-end */
.elevations-view .details-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.elevations-view .com-card .img {
  height: 340px;
}

.elevations-view .com-card .comcard-details {
  padding: 21px;
}

.elevations-view .details-group .details .comcard-frame {
  gap: 0;
}

.grid-view .elevations-view {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-view .elevations-view .com-card {
  flex-direction: column;
}

.grid-view .elevations-view .com-card .img {
  border-radius: 8px 8px 0px 0px;
  width: 100%;
}

.grid-view .elevations-view .com-card .comcard-details {
  gap: 16px;
}

.homeplan-dialog {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100vw - 1072px);
  max-width: calc(50vw);
  min-width: 700px;
  height: calc(100vh - 214px);
  overflow: visible;
  margin-bottom: 0;
}

.modal-title{
  text-transform: capitalize;
  font-weight: 600;
}

.homeplan-dialog .modal-content {
  height: 100%;
  border-radius: 0.3rem 0 0 0;
}

.homeplan-dialog .modal-title {
  color: #252839;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.homeplan-dialog .com-card .comcard-details {
  width: 55%;
  padding: 12px;
}

.homeplan-dialog .com-card .comcard-details .comcard-title {
  font-size: 20px;
}

.homeplan-dialog .com-card .comcard-details .details-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.homeplan-dialog .com-card .comcard-details .details {
  gap: 4px;
}

.homeplan-dialog .com-card .comcard-details .details img {
  width: 24px;
}

.homeplan-dialog .com-card .comcard-details .comcard-frame {
  gap: 0px;
}

.homeplan-dialog .com-card .comcard-details .comcard-frame-title {
  font-size: 12px;
}

.homeplan-dialog .com-card .comcard-details .comcard-frame-value {
  font-size: 12px;
}

/******************************** Customize page ********************************/
.customize-page {
  position: relative;
  height: 100vh;
  overflow: hidden;
  /* background: url("../customizer-bg.png") repeat; */
  background-color: #d7d7d7;
  border-top: 1px solid var(--border);
}

.customizer-output {
  text-align: center;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.customizer-output.bulk-open {
  /* height: calc(100vh - 62px - 74px); */

  /* height: calc(100vh - 75px - 155px); */
  pointer-events: none;
  transform: none !important;
  display: flex;
  justify-content: center;
}

.customizer-output canvas {

  width: 100%;
  position: absolute;
  /* top: -215px; */
  background-color: #d7d7d7;

  /* cursor: grab;
  width: auto;
  height: 100%; */
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.customizer-output canvas:active {
  cursor: grabbing;
}

.customizer-output img {
  margin: auto;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.nav-icons {
  font-size: 16px;
  font-weight: 500;
  color: #6c6c6c;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon-set {
  background: #d7d7d7;
  border-radius: 4px;
  width: 40px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border: 2px solid rgba(159, 159, 159, 0.644);
}

.icon-separator {
  background: rgba(0, 0, 0, 0.1);
  width: 24px;
  margin: 0;
}

.zoom-out {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.zoom-in {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.bottom-drag-slider {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}

.top-navs {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.opt-buttons {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.opt-buttons .nav-tabs {
  border-bottom: none;
}

.opt-buttons .nav-link {
  color: #252839;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
  border-bottom: none;
}

.optoin-btn {
  background-image: url("icons/shape-dragger.svg");
  background-size: cover;
  width: 120px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-next-button {
  padding: 0px 10px 8px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.relative-nav-content {
  height: 0;
  width: 100%;
  position: relative;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.relative-nav-content.active {
  height: 228px;
}

.layers-panel-header {
  background: #d7d7d7;
  border-style: solid;
  border-color: var(--border);
  border-width: 1.5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0px 8px 0px 0px;
  width: 100%;
  position: relative;
  min-height: 47px;
}

.layers-row {
  display: flex;
  flex-direction: row;
  gap: 1px;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.layer-option {
  padding: 10px 8px 10px 8px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  background-color: #CDCDCD;
}

.layer-option.active {
  border-bottom: 2px solid var(--blue-primary);
}

.layer-categories {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
}

.layer-option-category {
  font-size: 14px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 10px 8px 10px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  background-color: #dedede;
}

.layer-option-category::after {
  content: "";
  position: relative;
  left: 8px;
  width: 1px;
  height: 50%;
  background-color: #777777;
}

.layer-option-category:last-child::after {
  content: none;
}

.layer-option-category.active {
  border-bottom: 2px solid #7bbfff;
}

.category-text {
  font-size: 14px;
  font-weight: 600;
  color: #7a7a7a;
}

.layer-option-strc {
  padding: 10px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  background-color: #9DB7FF;
}

.layer-option-strc:hover {
  background-color: #809be4;
}

.layer-option-strc:active {
  background-color: #7290E1;
  border-bottom: 2px solid var(--blue-primary);
}

.bottom-drag-slider .search-bar {
  background: var(--white, var(--white));
  border-radius: 4px;
  border-style: solid;
  border-color: var(--border);
  border-width: 1px;
  padding: 3px 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 300px;
  position: relative;
  margin-right: 12px;
}

.search-bar .form-search {
  border: none !important;
  font-size: 14px;
  font-weight: 500;
  outline: none !important;
}

.layers-pane {
  background: #E9E9E9;
  padding: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  min-height: 173px;
}

.expandable-layers-accordion {
  max-width: 88vw;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.layer-types {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 1px;
  max-width: 30vw;
  overflow-x: scroll;;
  scroll-behavior: smooth;
}

.layers-accordion {
  overflow-x: scroll;
  max-width: 80vw;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  scroll-behavior: smooth;
}

.layers-box {
  background: var(--dark, #252839);
  border-radius: 4px 0px 0px 4px;
  padding: 10px 6px 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  height: 160px;
  position: relative;
}

.layers {
  border-width: 1px;
  padding: 5px 10px 10px 10px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.layer {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  position: relative;
  padding: 8px;
  border: 1px solid #CBCBCB;
  border-radius: 5px;
}

.strc-layer {
  background-color: #f1f5ff;
  border: 1px solid #91aeff;
}

.layer-img {
  background: #39383c;
  border-radius: 4px;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.layer-text {
  color: var(--line-dark, #686b88);
  font-size: 10px;
  font-weight: 500;
  width: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summery-page {
  position: relative;
  background: url("customizer-bg.png") repeat;
  border-top: 1px solid var(--border);
}

.summery-wrap {
  padding: 24px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.summery-wrap img.final-draft {
  border-radius: 12px;
  max-width: 100%;
}

.description {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 80vw;
}

.des-name {
  color: #252839;
  font-size: 28px;
  font-weight: 500;
}

.des-loc {
  color: var(--icon, #797979);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.des-des {
  color: #252839;
  font-size: 15px;
  font-weight: 400;
}

.amenities-elevation {
  flex: none;
  width: 100%;
}

.amenities-elevation div.details-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
}

.details-summary {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--white);
  padding: 20px 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}


.selctions {
  display: flex;
      gap: 15px;
      flex-wrap: wrap;
}

.selected-opt {
  flex-shrink: 0;
  margin: auto;
  width: 180px;
  height: 220px;
  position: relative;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.selected-opt-type {
  background: #252839;
  border-radius: 10px 10px 0px 0px;
  color: var(--white);
  text-align: left;
  padding: 12px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selected-opt-img {
  padding: 18px 40px;
}

.selected-opt-img span {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #e4e4e4;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.24);
  display: block;
}

.selected-opt-name {
  color: #323233;
  text-align: center;
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
}

.submits-submit-action {
  width: 100%;
}

.submits {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.submits-title {
  color: #252839;
  text-align: left;
  font-size: 15px;
  line-height: 17px;
  font-weight: 600;
}

.or {
  color: #686b88;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  justify-content: flex-start;
}

.note {
  font-style: italic;
  font-size: 11px;
  font-weight: 600;
  margin: auto;
}

/* abhijitcode */
.add-layers-section {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 200px;
  gap: 15px;
  border-left: 2px solid #acacac;
  padding-left: 20px;
  padding-right: 10px;
}

.add-layers-button {
  color: var(--blue-primary);
  background-color: #CDCDCD;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  gap: 5px;
  padding: 5px;
  font-size: 14px;
  font-weight: 500;
}

.layer-search {
  border: 2px solid #acacac;
  border-radius: 8px;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px;
}

.input-field {
  border: none;
  background-color: transparent;
}

.input-field:focus {
  outline: none;
}

.plan-scroll {
  overflow-y: auto;
}

.scroll-area {
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.elevation-view {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 20px;
}

.submit-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px 0 20px 0;
}

.refresh-2 {
  cursor: pointer;
}

.grab-cursor {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.grab-cursor:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.show-buttons {
  cursor: pointer;
}

.check-color-option {
  width: 18px;
}

.aidiv {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.aidiv .aicon {
  padding: 0px 5px;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.aidiv .aicon:first-child {
  border-bottom-right-radius: 4px;
}

.aidiv .aicon:last-child {
  border-bottom-left-radius: 4px;
}

@media screen and (max-width: 1000px) {}

.map {
  margin: 0;
}

.dragger {
  width: 100%;
  height: 80px;
  justify-content: center;
  align-items: center;
}

.pop-button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.edit-button-save {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
}

/* Mobile-Responsive */
@media screen and (max-width: 480px) {
  .filter {
    padding-top: 10px;
  }

  .submit-bottom {
    display: flex;
    flex-direction: column;
  }

  .selctions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .search-bar {
    height: 40px;
    font-size: 14px;
  }

  #dragger {
    transition: all 0.1s ease-in-out;
    border-radius: 10px 10px 0 0;
  }

  #dragger:hover {
    cursor: grab;
  }

  .community-map-view {
    width: 100vw;
    height: 480px;
    top: 0;
  }

  .sort {
    display: none;
  }

  .sort-right {
    display: none;
  }

  .input-icon {
    top: 10px;
    right: 6px;
  }

  .grid-view .community-view {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .map-view .community-view {
    z-index: 9;
    margin-top: 480px;
    background-color: var(--white);
  }

  .com-card {
    flex-direction: column;
  }

  .com-card .img {
    width: 100%;
    border-radius: 8px 8px 0px 0px;
  }

  .comcard-details {
    gap: 16px;
    border-radius: 0px 0px 8px 8px;
  }

  .grid-view .elevations-view {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .elevations-view .details-group {
    padding: 0;
  }

  .left-view-button {
    padding: 8px 10px;
  }

  .right-view-button {
    padding: 8px 10px;
  }

  .main-wrap {
    margin-top: 130px;
  }

  .filter-drop-down {
    display: none;
  }

  .icon-wrap {
    width: 28px;
    height: 28px;
  }

  .progress-bar {
    order: 2;
    padding-top: 10px;
    margin-top: 10px;
    gap: 10px;
    width: 100%;
    border-top: 1px solid var(--light-bg);
  }

  .header-icon {
    font-size: 14px;
  }

  .line-progress {
    top: 25px;
    width: 78px;
    height: 2px;
  }

  .progress-1 {
    left: 50px;
  }

  .progress-2 {
    left: 130px;
  }

  .progress-3 {
    right: 112px;
  }

  .progress-4 {
    right: 45px;
  }

  .details-summary {
    flex-direction: column;
  }

  .elevation-view {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

@media screen and (max-width: 1000px) and (orientation: landscape) {
  .relative-nav-content {
    height: max-content;
    width: 0px;
    overflow: hidden;
  }

  .relative-nav-content.active {
    height: max-content;
    width: 300px;
  }

  .layers-panel-header {
    flex-direction: column;
  }

  .expandable-layers-accordion {
    display: block;
  }

  .back-next-button {
    display: none;
  }

  .expandable-layers-accordion {
    overflow-y: scroll;
    width: auto;
  }

  .layers {
    background: var(--white);
    border: none;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    height: 200px;
    width: 280px;
    position: relative;
  }

  .layer-img {
    width: 60px;
  }

  .layer-icon {
    display: none;
  }

  .layer-search {
    width: 100%;
  }

  .layers-row {
    overflow: scroll;
    margin: auto;
  }

  .add-layers-section {
    display: none;
  }

  .layers-panel-header {
    padding: 6px;
    gap: 5px;
  }

  .ule-drag-button {
    padding: 10px 15px;
  }

  .optoin-btn {
    background-image: none !important;
    background-color: var(--white);
    width: 45px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 0px 5px #818181;
  }

  .navbar {
    padding: 5px;
  }

  .top-navs {
    width: 300px;
    rotate: 90deg;
    height: fit-content;
    left: -130px;
    top: 130px;
  }

  .bottom-drag-slider {
    flex-direction: row-reverse;
    width: auto;
    align-items: initial;
  }

  .main-wrap {
    margin-top: 58px;
  }

  .icon-wrap {
    width: 28px;
    height: 28px;
  }

  .header-icon {
    font-size: 16px;
  }

  .logo {
    width: 100px;
  }

  .progress-bar {
    gap: 30px;
  }

  .line-progress {
    top: 14px;
    width: 70px;
    height: 2px;
  }

  .progress-1 {
    left: 46px;
  }

  .progress-2 {
    left: 140px;
  }

  .progress-3 {
    right: 131px;
  }

  .progress-4 {
    right: 45px;
  }
}

@media screen and (max-height: 375px) and (orientation: landscape) {
  .relative-nav-content {
    height: 280px;
    width: 0px;
    overflow: hidden;
  }

  .relative-nav-content.active {
    height: 280px;
    width: 300px;
  }

  .top-navs {
    width: 273px;
    left: -117px;
    top: 117px;
  }
}

/*
@media screen and (max-height: 390px) and (orientation: landscape) {
  .relative-nav-content {
    height: 300px;
    width: 0px;
    overflow: hidden;
  }
  .relative-nav-content.active {
    height: 300px;
    width: 300px;
  }
} */
/* abhijitcode-end */

/* Custom Drop Down */

.filter-frame-title {
  color: var(--line-dark, #686b88);
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.filter-frame-value {
  color: var(--dark, #252839);
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.filter-frame-value select {
  border: none;
  outline: none;
  width: 100%;
}

.dropdown {
  width: 560px;
  height: 64px;
  background: white;
  border-radius: 9px;
  position: relative;
}

@media (max-width: 400px) {
  .dropdown {
    width: 240px;
  }
}

.dropdown::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 99;
  width: 12px;
  height: 12px;
  border: 2px solid grey;
  border-top: transparent;
  border-right: transparent;
  transform: rotate(-45deg);
  pointer-events: none;
  transition: all 0.3s linear;
}

.dropdown input {
  background: var(--white);
  font-size: 16px;
  border: 2px solid var(--border);
  padding: 8px 12px 8px 40px;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
}

.dropdown .options {
  width: 100%;
  border-radius: 9px;
  max-height: 300px;
  padding: 8px;
  cursor: pointer;
  background: white;
  outline: none;
  box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
  overflow: hidden;
  position: absolute;
  top: 68px;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 9999;
  transform: translateY(-50px);
  visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.dropdown .options .option {
  padding: 16px;
  border-radius: 9px;
  transition: all 0.2s ease;
  color: #292d34;
}

/* .dropdown .options .option:not(:last-of-type) {
  margin-bottom: 8px;
} */

.dropdown .options .option:hover {
  color: white;
  background: var(--blue-primary);
  box-shadow: 0 10px 25px rgba(42, 179, 248, 0.4);
}

.dropdown.opened .options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow-y: scroll;
}

/* Custom DropDown End */

/* POP down(popup drop down) */

.filter-frame-title {
  color: var(--line-dark, #686b88);
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.filter-frame-value {
  color: var(--dark, #252839);
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.filter-frame-value select {
  border: none;
  outline: none;
  width: 100%;
}

.popdown {
  width: 288px;
  height: 50px;
  background: white;
  border-radius: 9px;
  position: relative;
}

@media (max-width: 400px) {
  .popdown {
    width: 240px;
  }
}

.popdown::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 16px;
  z-index: 99;
  width: 12px;
  height: 12px;
  border: 2px solid grey;
  border-top: transparent;
  border-right: transparent;
  transform: rotate(-45deg);
  pointer-events: none;
  transition: all 0.3s linear;
}

.popdown input {
  background: var(--white);
  font-size: 16px;
  border: 2px solid var(--border);
  padding: 8px 12px 8px 40px;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
}

.popdown .options {
  width: 100%;
  border-radius: 9px;
  max-height: 300px;
  padding: 8px;
  cursor: pointer;
  background: white;
  outline: none;
  box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
  overflow: hidden;
  position: absolute;
  top: 60px;
  transition: all 0.1s ease;
  opacity: 0;
  z-index: 9999;
  transform: translateY(-50px);
  visibility: hidden;
  border: 2px solid rgba(202, 202, 202, 0.5);
}

.popdown .options .option {
  padding: 14px;
  border-radius: 9px;
  transition: all 0.1s ease;
  color: #292d34;
}

.popdown .options .option:not(:last-of-type) {
  margin-bottom: 8px;
}

.popdown .options .option:hover {
  color: white;
  background: var(--blue-primary);
  box-shadow: 0 10px 25px rgba(42, 179, 248, 0.4);
}

.popdown.opened .options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow-y: scroll;
}

/* POP down end */

/* layer image menu */
.layer-image-menu {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 15px;

}

.layer-selected {
  font-family: poppins;
  font-weight: 500;
  color: #797979;
  font-size: 16px;
}

.layer-details {
  font-size: 12px;
  color: #797979;
  font-weight: 500;
}

.extra-button {
  position: absolute;
  top: 28px;
  right: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  border: 1px solid #ADAFCC;
  background-color: white;
  color: #666;
  border-radius: 5px;
  padding: 8px 6px;
  gap: 8px;
}

.edit-delete {
  cursor: pointer;
  display: none;
  position: absolute;
  top: 6px;
  right: 20px;
  padding: 5px;
  flex-direction: column;
  z-index: 999;
  font-size: 14px;
  font-weight: 500;
  color: #7a7a7a;
}

.layer-con-edit {
  display: flex;
  padding-bottom: 2px;
  align-items: center;
  background-color: white;
  border: 1px solid #cdcdcd;
  padding: 5px;
  border-radius: 5px 5px 0 0;
}

.layer-con-delete {
  display: flex;
  padding-bottom: 2px;
  align-items: center;
  background-color: white;
  border: 1px solid #cdcdcd;
  border-top: 0;
  padding: 5px;
  border-radius: 0 0 5px 5px;
}

.layer-con-edit:hover,
.layer-con-delete:hover {
  background-color: #d8d8d9;
}

#d-e-layer {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 15px;
}

/* Login Page */

#loginSignup .modal-content {
  border-radius: 0;
  border: none;
  z-index: 99999;
  border-radius: 10px;
}

#loginSignup .close-btn {
  position: absolute;
  right: 0;
  opacity: .5;
  z-index: 999;
  top: 0;
  text-align: right;
  margin-right: 15px;
  margin-top: 18px;
  cursor: pointer;
  outline: none;
  padding: 0;
  background-color: transparent;
  border: 0;
}

#loginSignup .modal-content .modal-body {
  padding: 0;
  margin: 0;
  overflow-y: auto;
}

#loginSignup .nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

#loginSignup .nav-tabs .nav-item {
  width: 50%;
  padding: 0;
  margin-bottom: -2px;
  text-align: center;
  border-right: solid 1px #ddd;
}

#loginSignup .nav-tabs .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  color: #333;
  padding: 15px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-shadow: none;
}

#loginSignup .nav-tabs .nav-item.show .nav-link,
#loginSignup .nav-tabs .nav-link.active {
  padding: 15px 0;
  border: 0;
  background-color: #0d6efd;
  color: #fff;
}

#loginSignup .tab-content {
  padding: 30px 30px 20px;
}

#loginSignup .btn {
  width: 100%;
  line-height: 35px;
}

#loginSignup .input-group-addon {
  border: 1px solid #ced4da;
  padding: 10px;
}

#loginSignup .input-group-addon svg {
  height: 16px;
  width: 16px;
  border-right: none;
}

.login-panel,
.signup-panel {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 442px;
  border-radius: 10px;
  padding: 20px 40px;
  border: 1px solid #cdcdcd;
  gap: 14px;
}

.login-header,
.signup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 500;
  gap: 14px;
}

.log-info {
  color: #797979;
  display: block;
  font-size: 10px;
  font-weight: 400;
  font-family: Poppins;
}

.log-input {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  height: 44px;
  border-radius: 8px;
  padding: 4px 12px;
  border: 1px solid #D9DBE4;
  background: #FFF;
  align-self: stretch;
}

.log-input:has(input:focus) {
  outline: 2px solid #1586EF;
}

.log-inputs {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-self: stretch;
  gap: 14px;
}

.login-button,
.signup-button {
  border: none;
  border-radius: 8px;
  background: #1586EF;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  align-self: stretch;
}

.signup-link {
  font-size: 14px;
  font-family: Poppins;
  font-weight: 400;
  color: #686B88;
}

.log-f {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}

/* login page end */
.drop-icon {
  position: absolute;
  z-index: 1;
  bottom: 35%;
  left: 12px;
}

.search-bar {
  padding: 14px;
  width: 100%;
}

.blue_outline_btn {
  /*width: 224px;*/
  height: 40px;
  padding: 8px 20px 12px 20px;
  border-radius: 8px;
  gap: 4px;
  border: 1px solid #1C76B9;
  color: #1C76B9;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
}

.save_plan {
  /*width: 456px;*/
  height: 26px;
  padding: 7px 0px 31px 0px;
  border: 1px;
  justify-content: space-between;
  background: #1586EF;
  color: #fff;
}


.upd_img {
  width: 100%;
  aspect-ratio: 2;
  object-fit: cover;
}

div#add-elevation-form .homeplan-dialog {
  width: 456px;
  height: 100vh;
}

.read_only_label {
  padding: 15px 15px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 20px;
}

.summery-col {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

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

.summary-img {
  width: 80vw;
}

.summary-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 80vw;
}

.back-summary {
  padding: 10px;
  width: 120px;
  height: 60px;
}

.radio-input {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}

.color-details {
  color: white;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.064px;
}

.color-view {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.color-values {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #1586EF;
}

.forget-display {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  padding: 30px;
}

.forgot-pass-image {
  max-width: 60%;
}

.forgot-info {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.forgot-input {
  gap: 5px;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.forgot-pass-text {
  color: #707070;
  font-weight: 600;
}

#OTP, #twoFA-OTP {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

#OTP>input, #twoFA-OTP>input {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.otp-field {
  border: none;
  background-color: var(--off-white);
  display: flex;
  text-align: center;
  border-radius: 5px;
}

.layer-thumb-img {
  width: 25px;
}

.segment-control {
  font-size: 13px;
  background-color: #EEEEEF;
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: 9px;
}

.segment-lebel {
  color: var(--gray);
  padding: 3px 10px;
  border: none;
  background: transparent;
  font-weight: 500;
}

.segment-lebel.active {
  padding: 3px 10px;
  align-items: center;
  border-radius: 7px;
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  background: #FFF;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.12), 0px 3px 1px 0px rgba(0, 0, 0, 0.04);
  font-weight: 600;
}

.swatch-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  background: #EEEEEF;
  width: fit-content;
}

#colorPicker {
  width: 32px;
  height: 32px;
  border-radius: 2px;
}

.dropper-picker {
  display: flex;
  color: white;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #1586EF;
  border: none;
  outline: none;
}

.add-from-pop {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.edit-from-pop {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.color-options {
  display: block;
  text-align: center;
  margin: 0 auto;  
}

.mfg-name-code {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.divider {
  height: 80%;
  width: 1px;
  background-color: white;
}

.shine-border{
  border: 5px solid rgb(255, 255, 255) ;
  outline: 2px solid rgb(197, 197, 197);
}

.shine-color {
  position: absolute;
  width: 100%;
  height: 270px;
  background-size: 100% 100%;
  border-radius: 172px;
  background: rgba(0, 0, 0, 0.01);
  box-shadow: 4px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, -4px -4px 4px 0px rgba(255, 255, 255, 0.25) inset;
  display:none;
}

.icon-eyedropper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}

/* .segment-backdrop {
  position: absolute;
  width: 134px;
  height: 28px;

} */

/* Bulk Edit Start */
.all-filters{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 0 0 20px 0;
}
.reset-filter{
  color: #ADAFCC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  outline: none;
  background: none;
}
.filters-group{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.search-n-filter{
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}
/* Bulk Edit End */

/* ------------------------------  laptop responsivenes start  ------------------------------------- */

@media (1260px <= width <=1560px) {

  .main-wrap {
    /* margin-top: 58px; */
    /* margin-top: -20px; */
  }

  .customizer-output canvas {
    /* top: -20px; */
  }

  .map-view {
    display: flex;
    gap: 20px;
}

  .filter-wrap {
    padding: 75px 0 2px 0;
  }

  .community-view{
    /* width: 758px;
    height: calc(100vh - 180px); */
    width: 55%;
  }
  .community-map-view{
    /* width: calc(100vw - 807px);
    height: calc(100vh - 180px); */
    width: 45%;
  }
  
  .elevations-view {
    /* width: 758px;
    height: calc(100vh - 180px); */
    width: 60%;
  }
  .elevations-map-view {
    /* width: calc(100vw - 807px);
    height: calc(100vh - 180px); */
    width: 40%;
  }




  .grid-view .community-view,
  .grid-view .elevations-view {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-wrap .search-group {
    width: 700px;
    height: 43px;
  }

  .dropdown {
    height: 45px;
  }

  .search-bar {
    height: auto;
    padding: 10px;
    font-size: 14px;
  }

  .input-icon {
    top: 15px;
  }

  .dropdown input {
    font-size: 14px;
  }

  .scroll-area {
    gap: 14px;
  }

  .elevations-view {
    padding: 0;
    padding-inline: 1px;
    gap: 14px;
  }

  .left-view-button,
  .right-view-button {
    padding: 10px 12px;
    align-self: stretch;
  }

  .dropdown::before {
    top: 15px
  }

  .drop-icon {
    bottom: 32%;
  }

  .homeplan-dialog {
    height: calc(100vh - 10px);
  }

  .comcard-subtitle {
    font-size: 14px;
  }

  .elevations-view .com-card .img {
    height: 250px;
  }

  .elevations-view .details-group {
    gap: 10px;
    padding: 10px 0;
  }

  .ule-input {
    height: auto;
  }

  .ule-input {
    margin: 0;
    font-size: 12px;
    padding: 10px;
  }

  .upd_img {
    height: 200px !important;
  }

  .read_only_label {
    margin-bottom: 5px;
  }

  .layer-img {
    width: 60px;
    height: 60px;
  }

  .layer-text {
    width: 45px;
  }

  .layer {
    gap: 6px;
    padding: 5px;
  }

  .layers {
    gap: 10px;
    padding: 5px 10px 8px 10px;
  }

  .layer-text {
    font-size: 8px;
  }

  .layers-pane {
    min-height: 122px;
  }

  .layer-details {
    font-size: 10px;
  }

  .relative-nav-content.active {
    height: 160px
  }

  .customizer-output.bulk-open {
    height: calc(100vh - 0px);
  }

  .customize-page {
    height: calc(100vh - 0px);
  }

  .add-layers-section {
    width: 180px;
  }

  .layer-image-menu {
    height: 12px;
  }

  .ule-nav-button-layer {
    padding: 4px;
  }

  .layer-thumb-img {
    width: 20px;
  }

  .navbar {
    padding: 8px 6px;
  }

  .icon-wrap {
    width: 25px;
    height: 25px;
  }

  .header-icon {
    font-size: 12px;
  }

  .line-progress {
    top: 12px;
    width: 100px;
    height: 2px;
  }

  .progress-bar {
    gap: 50px;
  }

  .progress-1 {
    left: 35px;
  }

  .progress-2 {
    left: 146px;
  }

  .progress-3 {
    right: 132px;
  }

  .progress-4 {
    right: 33px;
  }

  .logo {
    width: 140px;
  }

  .step-label {
    font-size: 8px;
  }

  .nav-icons {
    font-size: 14px;
    gap: 12px;
    top: 10px;
    right: 10px;
  }

  .icon-set {
    width: 30px;
    min-height: 40px;
    gap: 8px;
  }

  .ule-button,
  .ule-button-secondary,
  .ule-button-outlined {
    padding: 8px 14px;
    font-size: 14px;
    width: 100%;
  }

  .ule-drag-button {
    padding: 10px 20px;
  }

  .opt-buttons .nav-link,
  .layer-selected {
    font-size: 14px;
  }

  .layer-option,
  .layer-option-category {
    padding: 6px 8px 6px 8px;
  }

  .input-field {
    width: 150px;
    height: 20px;
    font-size: 14px;
  }

  .icon-search {
    font-size: 16px;
  }

  .ule-nav-button {
    padding: 8px 6px;
  }

  .layer-option-category {
    font-size: 12px;
    font-weight: 500;
  }

  .category-text {
    font-size: 12px;
  }

  .com-card .img {
    height: 250px;
    width: 46%;
  }

  .comcard-details {
    padding: 14px;
  }

  .optoin-btn {
    width: 100px;
    height: 25px;
  }

  .dropdown .options {
    top: 46px;
  }

  .dropdown .options .option {
    padding: 12px;
  }

  .modal-header {
    padding: 10px 16px;
  }

  .addnew-dialog {
    width: 380px;
  }

  .add-from-pop {
    gap: 10px;
  }
  .edit-from-pop {
    gap: 10px;
  }

  .ule-add-from {
    padding: 8px 20px;
  }

  .color-details {
    font-size: 12px;
  }

  #colorPicker,
  .icon-eyedropper {
    width: 28px;
    height: 28px;
  }

  .swatch-panel {
    padding: 8px;
  }

  .shine-color {
    height: 200px;
  }

  .popdown input {
    font-size: 14px;
  }

  .dropup-content {
    min-width: 165px;
    right: -12px;
    bottom: 32px;
  }
  .layers-panel-header {
    min-height: 36px;
  }

  .result-bar{
    width: 750px;
  }
  .loader {
    height: calc(100vh - -25px) !important;
  }

  .expandable-layers-accordion{
    max-width: 90vw;
  }
  .layers-accordion{
    width: 80vw;
  }
  /* .extra-button{
    top: 0px;
    right: 128px;
  } */

}

/* ------------------------------  laptop responsiveness end  ------------------------------------- */
@media (min-width: 576px) {
  #loginSignup .modal-dialog {
    max-width: 500px;
    margin: 5.5rem auto;
  }
}

.ui-widget.ui-widget-content {
  z-index: 9991;
  max-height: 150px;
  overflow-y: scroll;
  border-radius: 9px;
}

.ui-widget.ui-widget-content.ui-menu .ui-menu-item {
  background: white;
  overflow: hidden;
}

.ui-widget.ui-widget-content.ui-menu .ui-menu-item:hover {
  overflow: hidden;
  color: white;
  background: var(--blue-primary);
  box-shadow: 0 10px 25px rgba(42, 179, 248, 0.4);
}

.ui-widget.ui-widget-content::-webkit-scrollbar {
  width: 5px;
}

.ui-widget.ui-widget-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
  border-radius: 5px
}

.ui-widget.ui-widget-content::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px #000
}

/* macbook */
@media (height <=768) {
  .customizer-output {
    /* height: calc(110vh - 68px - 66px); */
  }
}

/* small screen laptop */
@media (height <=657) {
  .customizer-output {
    /* height: calc(110vh - 68px - 50px); */
  }
}

.customizer-output {
  /* height: calc(110vh - 68px - 50px); */
}

.shine-color.color-swatch{
  border-radius: 50%;
  aspect-ratio: 1;
  width: auto;
  margin: auto;
  position: relative;
  display: block;
}

.invalid-feedback{  
  color: red;
  font-size: 13px;
  padding: 0px 7px;
}

/** Mass edit **/

.edit-layer-btn{
  padding: 12px;
  cursor: pointer;
}

.mass-thumb-preview{  
  background-repeat:repeat;
  background-size: contain;
  background-position: center;
  width: 96px;
  height: 35px;
  position: relative;
  border-radius: 4px;
}

@media (width >= 1561px) {
  .layers-accordion {
    width: 77vw;
  }
}

  /* Bulk Edit Start */
.all-filters{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 0 0 20px 0;
}
.reset-filter{
  color: #ADAFCC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  outline: none;
  background: none;
}
.filters-group{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.search-n-filter{
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}
/* Bulk Edit End */


/** Mass edit **/

.edit-layer-btn{
  padding: 12px;
  cursor: pointer;
}

.mass-thumb-preview{  
  background-repeat:repeat;
  background-size: contain;
  background-position: center;
  width: 96px;
  height: 35px;
  position: relative;
  border-radius: 4px;
}

/* Toggle CSS */

.switch {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 50px;
  height: 30px;
}
.checkbox {
  height: 30px;
  width: 50px;
  opacity: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}
.track {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 100%;
  background-color: rgba(120, 120, 128, 0.32);
  border-radius: 16px;
}
.thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: white;
  border-radius: 50%;
  height: 26px;
  width: 26px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 3px 8px 0px rgba(0, 0, 0, 0.15), 0px 3px 1px 0px rgba(0, 0, 0, 0.06);
  transition: transform 0.1s ease-in-out;
}
.checkbox:checked ~ .thumb {
  transform: translateX(20px);
}
.checkbox:checked ~ .track {
  background-color: #51d86a;
}


/* Toggle CSS End */

.inline-edit-toggle{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}

.mass-thumb-preview span{
  position: absolute;
  top: 7px;
  right: 35px;
  z-index: 9;
  display: none;
}
.mass-thumb-preview:hover > span , .mass-thumb-preview:hover > .layer-overlay{
  display: block;
}

.mass-thumb-preview .layer-overlay{
  background: #ffffff7d;
  position: absolute;
  height: 100%;width: 100%;
  display: none;
}

/* Toggle CSS */

.switch {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 50px;
  height: 30px;
}
.checkbox {
  height: 30px;
  width: 50px;
  opacity: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}
.track {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 100%;
  background-color: rgba(120, 120, 128, 0.32);
  border-radius: 16px;
}
.thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: white;
  border-radius: 50%;
  height: 26px;
  width: 26px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 3px 8px 0px rgba(0, 0, 0, 0.15), 0px 3px 1px 0px rgba(0, 0, 0, 0.06);
  transition: transform 0.1s ease-in-out;
}
.checkbox:checked ~ .thumb {
  transform: translateX(20px);
}
.checkbox:checked ~ .track {
  background-color: #51d86a;
}


/* Toggle CSS End */

.inline-edit-toggle{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
} 

#googleSearch .row2 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.img-card {
  width: 100% !important;
}
#googleSearch .card-title a{
  display: none;
}
#googleSearch .card-body {
  flex: 1 1 auto;
  padding: 0.4rem 0.4rem;
}
.filter_home, .filter_community{
  margin-top: 0px;
  display: block;

}
.filter_home_show, .filter_community_show, .filter_community_show, .map_show {
  display: none;
}
/* responsiv by shafi */
.elevations-map-view {
  position: relative;

}
.nav-icons {
  display: none;
}

#globalLibrary .modal-dialog {
  max-width: 70%;
}

#globalLibrary .search-bar, #globalLibrary .manufacturer-library {
  display: flex; flex-direction: row; align-items: center; width:40%;
}

#globalLibrary #design-type {
  height: 50px;
}
.modal-body{
  padding:2rem;
}
.layer-search_m i{
  color: #ffffff;
}
.layer-search_m{
  display: none;
  background: #1586ef;
  padding: 5px 9px;
  border-radius: 5px;
}

.layer-search_d{
  display: none;
}
.layer-search_m{
  display: block;
}
.extra-button {
    top: -38px;
  right: 60px;
  flex-direction: row-reverse;
  z-index: 0;
}

@media (width <= 1280px) {
.community-view, .elevations-view {
  width: 58%;
}
.community-map-view, .elevations-map-view {
  width: 42%;
}

.customizer-output canvas {
  width: 145%;
  top: -100px;
}

}
@media (width <= 1040px) {
  .community-map-view {
    width: 50%;
}
.customizer-output canvas {
  width: 145%;
  top: -100px;
}

.elevations-map-view {
  width: 50%;
}
  .map-view {
    gap: 10px;
}
  .filter_home, .filter_community{
    margin-top: 0px;
    display: block;
  }
  
  #mass-edit-modal .modal-dialog{
    max-width: 95%;
  }

  .opt-buttons .nav-link {
    line-height: 10px;
  }
  .layer-option {
    font-size: 14px;
    padding: 8px 10px 8px 10px;
  }

  .layers-panel-header {
    min-height: 40px;
}
.layers-row {
  width: 88% !important; 
}
.layer-types {
  max-width: calc(100vw - 225px) !important;
}
.ule-nav-button-layer {
  padding: 2px;
}
.extra-button {
  top: -39px;
  right: 60px;
  flex-direction: row-reverse;
  z-index: 0;
}

.layer-selected {
  font-size: 15px;
}
.layers {
  gap: 5px;
}
.layer-img {
  width: 80px;
  height: 80px;
}
.layers-pane {
  min-height: 155px;
}
.relative-nav-content.active {
  height: 200px;
}
.canva-ule-button{
  padding: 6px 20px;
  margin-top: 5px;
}
.back-next-button {
  padding: 0px 10px 0px 0px;
}
.customizer-output canvas {
  width: 160%;
  top: -200px;
}
.add-layers-section {
  width: 150px;
  padding-left: 5px;
  padding-right: 5px;
}
.layers-accordion {
  max-width: 79vw;
}

  .progress-bar {
    gap: 70px;
  }
  .search-bar {
    height: 45px;
  }
  .input-icon {
    top: 15px;
  }
  .dropdown {
    height: 45px;
      width: 390px;
  }
  .filter-wrap .search-group {
    width: 600px;
    height: 43px;
  }
  .dropdown .options {
    padding: 0px;
    top: 50px;
  }
  .dropdown .options .option {
    padding: 10px 15px;
  }
  .dropdown .options .option:not(:last-of-type) {
    margin-bottom: 0px;
  }

  .left-view-button {
    padding: 12px 22px;
  }

  .right-view-button {
    padding: 12px 22px;
  }
  .community-view {
    width: 50%;
  }
  .com-card {
    width: 100%;
}
.com-card .img {
  border-radius: 8px 0px 0px 8px;
  width: 35%;
  height: auto;
}
.comcard-details {
  width: 65%;
}
.comcard-subtitle {
  width: 100%;
}
.ule-button {
  padding: 5px 20px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.comcard-details {
  padding: 0px 24px;
}
.dropdown::before {
  top: 16px;
}
.elevations-map-view {
  width: 50%;
}
.elevations-view{
  width: 50%;
}
.px-md-5 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.grid-view .community-view .com-card .comcard-details {
  gap: 10px;
  width: 100%;
  padding: 10px;
}
.result-bar {
  width: 850px;
}

.elevations-view .details-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0px;
  padding: 0px 0;
}

.elevations-view .com-card .img{
  width: 40%;
}
.elevations-view .com-card .comcard-details{
  width: 60%;
  padding: 10px;
}
.elevations-view .com-card .img {
  height: auto;
}
.comcard-subtitle {
  font-size: 15px;
}
.comcard-title {
  font-size: 18px;
}


.map_show{
  display: none;
}

}

@media (width <= 840px) {



}

@media (width <= 768px) {

  #googleSearch .row2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#googleSearch .modal-body {
  padding: 0rem;
}

  .expandable-layers-accordion {
    max-width: 79vw;
  }
  .layers-accordion {
    max-width: 72vw;
}
  .customizer-output canvas {
    width: 160%;
    top: -100px;
}


.layers-row {
  width: 83% !important;
}
.layer-types {
  max-width: 83vw !important;
}



.progress-bar {
  gap: 30px;
}
.logo {
  width: 145px;
}
.navbar {
  padding: 11px 0px;
}

.view-buttons{
  display: none;
}

.filter-wrap .search-group {
  width: 445px;
}

.left-view-button {
  float: left;
}
.result-bar {
  width: 630px;
}
.filter {
  padding: 10px 0px 10px 0px;
}

.res-wrap {
  margin-top: 0px;
}
.community-map-view {
  display: none;
  position: absolute;
        width: 96%;
        height: 100vh;
}
.community-view {
  width: 100%;
}
.map-view {
  flex-wrap: wrap;
}
.elevations-view {
  width: 100%;
  /* margin-top: 320px; */
}
/* .elevations-map-view {
  width: 95%;
  height: 300px;
  position: absolute;
  right: 19px;
} */
/* .map-view {
  height: 100vh;
} */
.elevations-map-view_d {
  display: none;
  position: absolute;
        width: 97%;
        left: 10px;
}
.elevations-map-view_m {
  display: block;
}
.dropdown::before {
  top: 15px;
  width: 10px;
  height: 9px;
}
.icon-city, .icon-area, .icon-school, .icon-search, .icon-arrw-down, .icon-school, .icon-bedroom, .icon-bathroom, .icon-garage, .icon-plan, .icon-floor, .icon-trash, .icon-edit-1, .icon-eye, .icon-eye-closed, .icon-lock, .icon-mail, .icon-profile
{
  font-size: 17px;
}
.dropdown input {
  font-size: 14px;
  padding: 5px 12px 8px 40px;
}

.map_show{
  display: block;
  font-family: sans-serif !important;
  background-color: #1586ef;
  color: #ffffff;
  font-size: 16px;
  padding: 8px 7px;
  right: 265px;
  position: absolute;
  top: 153px;
  border-radius: 5px;
}

#globalLibrary .modal-dialog {
  max-width: 90% !important;
}









}



.filter_home_hide, .filter_community_hide{
  display: none;
  font-size: 18px;
  font-family: sans-serif !important;
  color: #ffffff;
  background-color: #b50909;
  padding: 9px 14px;
  border-radius: 5px;
  float: right;
  margin-top: 1px;
}
.layer-search_d{
  display: none;
}
.layer-search_m{
  display: block;
}
@media (width <= 430px) {
  .step-label {
    font-size: 9px;
  }
  .forgot-info {
    max-width: 100%;
  }
  #OTP {
    gap: 7px;
  }
  #googleSearch .row2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.customizer-output canvas {
  width: 170%;
}
#googleSearch .modal-body {
  padding: 0rem;
}

  #mass-edit-modal .modal-body{
    padding: 1rem !important;
    overflow-y: scroll;
  }
  .modal-body{
    padding:1rem;
}
.progress-bar {
  gap: 0px;
}
  #globalLibrary .modal-dialog {
    max-width: 96% !important;
}
#globalLibrary .search-bar, #globalLibrary .manufacturer-library {
  width: 47%;
}
#search-library-filter {
  padding: 6px !important;
}
#globalLibrary #design-type {
  height: 40px;
}
div#globalLibrary .filter-wrap .form-group {
  width: 100% !important;
}
#globalLibrary .filter-wrap {
  gap: 8px;
}


.back-next-button {
    position: fixed;
    width: 100%;
    bottom: 275px;
    display: block;
}
.back-next-button a.ule-button-secondary {
  width: 100px;
  background-color: #878787;
  color: #ffffff;
  padding: 3px 25px;
  float: left;
  margin: 5px 5px;
  border-radius: 5px;
}
.back-next-button button.canva-ule-button {
  width: 100px;
  background-color: #1586ef;
  color: #ffffff;
  padding: 3px 25px;
  float: right;
  margin: 5px -5px 5px 0px;
  border-radius: 5px;
}

.layer-search_d {
  top: -38px;
  height: 37px;
  width: 83%;
}

.layers-pane {
  flex-wrap: wrap;
}

.add-layers-section {
  width: 100%;
  min-height: 70px;
  align-items: center;
  flex-direction: row;
}

.layer-search .layer-search_d i.icon-search{
  top: 1px;
}

.extra-button {
  top: -75px;
  right: 57px;

}
.layer-search_m {
  position: absolute;
  top: -36px;
  right: 4px;
}
.layers-row {
  width: 100% !important;
}
.layers {
  padding: 5px 5px 5px 5px;
}
.layer-types {
  max-width: 100vw !important;
}
.progress-bar {
  margin-top: 0px;
}
.expandable-layers-accordion {
  max-width: 100vw;
  min-width: 100vw;
  height: 270px;
  overflow-x: scroll;
}
.relative-nav-content.active {
  height: 240px;
}
.expandable-layers-accordion::-webkit-scrollbar {
  width: 8px;
}
.layers-accordion {
  max-width: 100vw;
  min-width: 100vw;
  /* overflow-x: hidden !important; */
}
.layer-option {
  font-size: 14px;
  padding: 5px 8px 5px 8px;
}
.login-panel, .signup-panel {
  width: 100%;
  padding: 20px 10px;
}

.community-view, .elevations-view {
  /* height: calc(100vh - 250px); */
  height: 100vh;
}

.community-view .custom-scroll .com-card:last-child, .elevations-view .com-card:last-child{
  margin-bottom: 300px;
}

#loginSignup .modal-content {
  top: 100px;
}

.addnew-dialog {
  top: 15%;
  bottom: 20%;
}



.layers-pane {
  padding: 0px;
}
.layer-text {
  padding-left: 5px;
}
.d-e-layer{
  padding-right: 5px;
}
.layers-panel-header {
  padding: 0px 0px 0px 0px;
}

.layers {
  /* flex-wrap: wrap;
  overflow-y: scroll;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); */
  flex-wrap: nowrap;
  overflow-x: scroll;
  display: flex;
}
.expandable-layers-accordion {
  height: 125px;
}
.selected-layer{
  margin-top: -10px;
}
.layer-selected {
  margin-bottom: 2px;
}
.ule-nav-button-layer {
  display: none !important;
}
.opt-buttons .nav-link {
  padding: 13px 13px;
}

.layer {
  padding: 0px;
  gap: 2px;
}
.layer-search_d #searchInput1, .layer-search_d #searchInput{
  width: 82%;
}

.customizer-output canvas {
    top: -40px;
}

.ule-drag-button {
  padding: 14px 28px;
}

.community-view .custom-scroll .com-card {
  margin-bottom: 10px;
}

  .filter_home_show, .filter_community_show, .map_show {
    display: block;
  }
  .filter {
    padding: 35px 0px 10px 0px;
  }
  .homeplan-dialog {
    height: calc(100vh - 50px);
  }
  .elevations-view .com-card .img{
    width: 100%;
  }
  .filter_home .filter-wrap {
    gap: 5px;
  }
  .filter-wrap {
    gap: 15px;
  }

.icon-search {
  right: 70px;
}
.elevations-view .com-card .comcard-details{
  width: 100%;
}
.community-map-view{
  position: absolute;
  left: 7px;
  z-index: 9;
}
.com-card .img {
  border-radius: 0px 8px 0px 0px;
  width: 100%;
}
/* .map-view{
  display: none;
}
.grid-view{
  display: block !important;
} */


  .map-view .community-view {
    margin-top: 0px;
}
.dragger{
  display: none !important;
}

.main-wrap {
  margin-top: 110px;
}

.filter-wrap {
  flex-wrap: wrap;
}
.dropdown {
  width: 47%;
}
.filter-wrap {
  padding: 0px;
}

.filter-wrap .search-group {
  margin-bottom: -10px;
  margin-top: -5px;
}
.search-bar {
  height: 40px;
  width: 83%;
}
.dropdown .options {
  top: 39px;
}
.dropdown {
  height: 40px;
}
.dropdown::before {
  top: 13px;
  z-index: 1;
  right: 8px;
}
.drop-icon {
  bottom: 12px;
  left: 5px;
}
.input-icon {
  top: 11px;
}
.dropdown input {
  font-size: 14px;
  padding: 5px 19px 8px 27px;
}
.result-wrap {
  margin-top: 5px;
}
.com-card {
  flex-direction: row;
  flex-wrap: wrap;
}
.comcard-title {
  font-size: 16px;
  margin-bottom: -5px;
}
.comcard-subtitle {
  font-size: 13px;
}
.comcard-frame {
  gap: 2px;
}
.comcard-frame-value {
  font-size: 12px;
}
.comcard-heading {
  margin: 5px 0px -15px 0px;
}
.ule-button {
  padding: 5px;
  font-size: 16px;
}
.details-group {
  margin: 0px 0px -10px 0px;
  gap: 10px;
}
.comcard-details {
  padding: 0px 10px;
}
.details {
  gap: 0px;
}

.homeplan-dialog {
  min-width: 96%;
  bottom: 10px;
  height: 80vh;
}
.homeplan-dialog .modal-content {
  border-radius: 5px;
}
.modal-body .com-card {
  display: flex;
          flex-wrap: wrap;
} 
.modal-body .com-card .img {
  border-radius: 8px 8px 0px 0px;
        width: 100%;
} 
.modal-body .com-card .comcard-details{
        width: 100%;
} 
.filter_home, .filter_community{
  display: none;
}


.filter_home_show, .filter_community_show{
  z-index: 10;
  position: absolute;
  right: 15px;
  background-color: #1586ef;
  color: #ffffff;
  padding: 8px 8px;
  top: 115px;
  border-radius: 3px;
  font-family: sans-serif !important;
}
.map_show {

  right: 105px;
  top: 115px;
}



}

@media (width <= 390px) {
  /* .expandable-layers-accordion {
    max-width: 100vw;
    min-width: 100vw;
    height: 226px;
    overflow-y: scroll;
  } */
  /* .relative-nav-content.active {
    height: 340px;
  } */
}

@media (width <= 375px) {
  .progress-bar {
    gap: 0px;
    
}
#OTP {
  gap: 5px;
}

.backwresult {
  font-size: 13px;
}

/* .homeplan-dialog {
  min-width: 360px;
} */

}

@media (width <= 360px) {
  #OTP {
    gap: 4px;
  }

}

@media (height >= 950px) and (width <= 1040px){
  .layer-types {
    max-width: calc(100vw - 215px) !important;
}
.customizer-output canvas {
  width: 145%;
  top: -80px;
}
.progress-bar {
  gap: 35px;
}
.relative-nav-content.active {
height: 370px;
}
.layers-pane {
min-height: 320px;
}
.ule-nav-button-layer {
display: none;
}
.layers-accordion {
max-width: 80vw;
height: 300px;
}
.layers-accordion {
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.layers {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}



}