@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Roboto:400,500,500i,700);html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

img {
  max-width: 100%;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

header {
  background: #000;
}

header.auth-header {
  margin-bottom: 50px;
}

.header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header .logo-wrap .text {
  margin-left: 15px;
}

.header .logo-wrap .text p {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0;
}

.header.center {
  justify-content: center;
}

.header .logo img {
  max-width: 45px;
  height: 70px;
}

.navbar ul,
.auth-navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
}

.navbar ul li,
.auth-navbar ul li {
  margin-left: 20px;
}

.navbar ul li a,
.auth-navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.navbar ul li a:hover,
.auth-navbar ul li a:hover {
  text-decoration: underline;
}

.content {
  margin: 50px 0;
}

.content__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px;
  margin-bottom: 50px;
}

.content__top .title h3 {
  margin: 0;
  font-size: 27px;
  font-weight: bold;
  color: #3e3e3e;
  font-family: "Roboto", sans-serif;
}

.actions-button a,
.actions-button button {
  border: 0;
  outline: 0;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  border-radius: 5px;
  display: block;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}

.add-button a,
.add-button button {
  background: #28a745;
}

.add-button a:hover,
.add-button button:hover {
  background: #1c7430;
}

.edit-button a,
.edit-button button {
  background: #ffc107;
}

.edit-button a:hover,
.edit-button button:hover {
  background: #d39e00;
}

.delete-button a,
.delete-button button {
  background: #dc3545;
}

.delete-button a:hover,
.delete-button button:hover {
  background: #c82333;
}

.back-button a {
  background: #17a2b8;
  display: flex;
  justify-content: center;
}

.back-button a img {
  max-width: 10px;
  max-height: 15px;
  align-items: center;
  margin-right: 5px;
}

.back-button a:hover {
  background: #138496;
}

.button-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.button-wrap .actions-button:last-child {
  margin-left: 15px;
}

.delete-button {
  background: transparent;
  border: 0;
  background: #dc3545;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.delete-button svg path {
  fill: #fff;
}

.delete-button:hover {
  background: #c82333;
}

.yes-no-button {
  display: flex;
  justify-content: flex-start;
}

.yes-no-button button {
  background: transparent;
  outline: 0;
  padding: 5px 8px;
  cursor: pointer;
  transition: all 0.3s;
  color: #3e3e3e;
  border: 0;
}

.yes-no-button button:first-child {
  border-radius: 3px 0 0 3px;
  border-left: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
}

.yes-no-button button:last-child {
  border-radius: 0 3px 3px 0;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
}

.yes-no-button button:hover:first-child {
  border-bottom: 1px solid #007bff;
  border-top: 1px solid #007bff;
  border-left: 1px solid #007bff;
}

.yes-no-button button:hover:last-child {
  border-bottom: 1px solid #007bff;
  border-top: 1px solid #007bff;
  border-right: 1px solid #007bff;
}

.yes-no-button button.active {
  background: #007bff;
  color: #fff;
}

.yes-no-button button.active:first-child {
  border-bottom: 1px solid #007bff;
  border-top: 1px solid #007bff;
  border-left: 1px solid #007bff;
}

.yes-no-button button.active:last-child {
  border-bottom: 1px solid #007bff;
  border-top: 1px solid #007bff;
  border-right: 1px solid #007bff;
}

.empty-list {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  display: block;
  margin: 0 auto;
}

.form .form__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.form .form__item input,
.form .form__item textarea,
.form .form__item select {
  height: 45px !important;
  color: #3e3e3e;
  font-size: 16px;
  outline: 0;
  transition: all 0.3s;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
}

.form .form__item input[type=file],
.form .form__item textarea[type=file],
.form .form__item select[type=file] {
  display: none;
}

.form .form__item input[type=file].show,
.form .form__item textarea[type=file].show,
.form .form__item select[type=file].show {
  display: block;
}

.form .form__item textarea {
  height: 130px !important;
}

.form .form__item .upload-image {
  width: 250px;
  height: 250px;
  background: #e8e8e8;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.form .form__item .upload-image:hover {
  border: 1px solid #e8e8e8;
}

.form .form__item .upload-image.upload-logo {
  width: 90%;
  height: 100px;
  background-size: contain !important;
  margin-top: 5px;
}

.form .form__item:last-child {
  margin-bottom: 0;
}

.form__item-wrap {
  display: flex;
  justify-content: space-around;
}

form .form__item .language-input-wrap,
.input-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

form .form__item .language-input-wrap input,
form .form__item .language-input-wrap textarea,
form .form__item .language-input-wrap select,
.input-wrap input,
.input-wrap textarea,
.input-wrap select {
  width: 100%;
}

form .form__item .language-input-wrap input:first-child,
form .form__item .language-input-wrap textarea:first-child,
form .form__item .language-input-wrap select:first-child,
.input-wrap input:first-child,
.input-wrap textarea:first-child,
.input-wrap select:first-child {
  margin-right: 35px;
}

.create-record {
  background: #e8e8e8;
  padding: 0 20px 0px;
  margin-bottom: 30px;
}

.create-record h6 {
  font-size: 20px;
  margin: 0;
  line-height: 1;
}

.create-record .form {
  display: none;
}

.create-record form {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.create-record form .form__item {
  width: 100%;
  margin: 0;
  margin-right: 40px;
  margin-bottom: 10px;
}

.create-record form input {
  width: 100%;
  background: transparent;
  color: #000 !important;
  font-size: 14px !important;
}

.create-record form button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #28a745;
  outline: 0;
  border: 0;
  color: #fff;
  padding: 7px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px !important;
  transition: all 0.3s;
  margin-top: 10px;
}

.create-record form button:hover {
  background: #1c7430;
}

.create-record-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  cursor: pointer;
}

.create-record-header button {
  outline: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.create-record-header button.toggled {
  transform: rotate(180deg);
}

.table-edit-wrap {
  display: flex;
  flex-direction: column;
}

.table-edit-wrap input {
  margin: 7px 0;
  height: 25px;
  padding: 0 10px;
}

.file-wrap {
  display: none;
  margin-bottom: 15px;
}

.file-wrap a {
  color: #3e3e3e;
  margin-left: 3px;
  display: block;
}

.form__item.add-button.actions-button {
  display: flex;
  flex-direction: row;
}

.form__item.add-button.actions-button .delete-form {
  display: none;
  background: #dc3545;
  margin-left: 15px;
  transition: all 0.3s;
}

.form__item.add-button.actions-button .delete-form:hover {
  background: #c82333;
}

form .form__item.file-field-wrap {
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
}

.select-block {
  width: 100%;
  max-width: 300px;
  padding: 20px;
  border: 1px solid #e8e8e8;
  max-height: 98px;
  overflow-y: scroll;
}

.select-block.small-select-block {
  max-height: 400px;
}

.select-block__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.select-block__item input[type=checkbox] {
  width: initial;
  height: initial !important;
}

.select-block__item:not(:last-child) {
  margin-bottom: 10px;
}

.building-file label {
  margin-bottom: 15px;
}

.table-list table {
  width: 100%;
}

.table-list table th,
.table-list table td {
  font-size: 16px;
  text-align: left;
  padding: 20px 0;
  color: #3e3e3e;
  border-bottom: 1px solid #e8e8e8;
}

.table-list table th:last-child,
.table-list table td:last-child {
  text-align: right;
}

.table-list table th .yes-no-button,
.table-list table td .yes-no-button {
  justify-content: flex-end;
}

.table-list.editable th:not(:first-child):not(:last-child),
.table-list.editable td:not(:first-child):not(:last-child) {
  padding: 20px 7px;
}

.table-list.editable button {
  border: 0;
  outline: 0;
  background: #e8e8e8;
  padding: 7px 10px;
  font-size: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.table-list.editable button:hover {
  background: #e8b017;
}

.table-list.editable button.delete-button {
  background: #dc3545;
  padding: 0;
}

.table-list.editable button.delete-button:hover {
  background: #c82333;
}

.modal-input-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modal-input-wrap:first-child {
  margin-right: 20px;
}

.modal-input-wrap label {
  color: #3e3e3e;
  font-size: 14px;
}

.modal-input-wrap textarea {
  margin-top: 10px;
}

.scroll-list-wrap p {
  font-size: 18px;
  font-weight: 700;
  color: #3e3e3e;
  margin: 0;
}

.scroll-list-wrap p span {
  font-size: 12px;
}

.scroll-list {
  padding: 15px 20px;
  border: 1px solid #e8e8e8;
  width: 40%;
  margin-top: 20px;
  /* max-height: 190px */
  overflow-y: scroll;
}

.scroll-list .scroll-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0 10px;
  border-bottom: 1px solid #e8e8e8;
}

.scroll-list .scroll-list__item input {
  height: 15px !important;
}

.scroll-list .scroll-list__item:last-child {
  border-bottom: 0;
}

.modal-wrap {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 15px 0;
  display: none;
}

.modal {
  background: #fff;
  border-radius: 5px;
  padding: 25px 30px 30px;
  margin-bottom: 30px;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}

.modal__header h5 {
  font-size: 22px;
  color: #3e3e3e;
  margin: 0;
}

.modal__header button {
  outline: 0;
  border: 0;
  background: transparent;
  font-size: 16px;
  color: #3e3e3e;
  cursor: pointer;
}

.modal__content {
  margin-top: 20px;
}

.preloader {
  display: none;
}

.preloader img {
  display: block;
  margin: 70px auto;
}

body.modal-open .modal-wrap {
  height: 100vh;
  overflow-y: scroll;
}

.modal-button-wrap {
  display: flex;
}

.modal__header button.copy-unit {
  display: flex;
  background: #17a2b8;
  color: #fff;
  margin-right: 20px;
  padding: 5px 15px;
  border-radius: 5px;
  transition: all 0.3s;
  display: none;
}

.modal__header button.copy-unit:hover {
  background: #138496;
}

.modal__header button.copy-unit svg {
  margin-right: 5px;
}

.modal__header button.copy-unit svg path {
  fill: #fff;
}

.copy-form {
  display: none;
}

#unitModal.copy-mode #save-form,
#unitModal.copy-mode .copy-unit {
  display: none !important;
}

#unitModal.copy-mode .copy-form {
  display: block;
}

.actions-button .back-to-edit {
  background: #17a2b8;
  transition: all 0.3s;
  margin-left: 15px;
}

.actions-button .back-to-edit:hover {
  background: #138496;
}

#copy-form {
  margin-top: 30px;
}

.buildings-wrap {
  margin: 0 -10px;
}

.buildings {
  display: flex;
  flex-wrap: wrap;
}

.buildings__item-wrap {
  margin: 0 10px 30px;
  position: relative;
  width: calc(33.3% - 20px);
}

.buildings__item-wrap:hover .buildings__item {
  filter: blur(2px);
}

.buildings__item-wrap:hover .buildings__item-hover {
  z-index: 1;
  opacity: 1;
}

.buildings__item-wrap .flex-wrap {
  display: flex;
  justify-content: space-between;
  width: 70%;
}

.buildings__item-wrap .flex-wrap a {
  flex: 1 0 calc(25% - 6px);
}

.buildings__item-wrap .flex-wrap a:not(:first-child) {
  margin-left: 5px;
}

.buildings__item-wrap .flex-wrap.preview-box {
  position: relative;
}

.buildings__item-wrap .flex-wrap.preview-box .preview-btn {
  cursor: pointer;
  z-index: 1;
}

.buildings__item-wrap .flex-wrap.preview-link-wrapper {
  position: absolute;
  width: 100%;
  height: 35px;
  bottom: 0;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.buildings__item-wrap .flex-wrap.preview-link-wrapper.active {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.buildings__item-wrap .flex-wrap.preview-link-wrapper a {
  margin-top: 0;
  margin-bottom: 0;
}

.buildings__item {
  width: 100%;
  border-radius: 5px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 250px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  transition: all 0.3s;
}

.buildings__item:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 5px;
}

.buildings__item p {
  z-index: 2;
  position: relative;
  color: #fff;
  font-size: 20px;
  margin: 40px 20px;
  display: block;
}

.buildings__item-hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  display: flex;
  z-index: -1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.buildings__item-hover a {
  width: 70%;
  height: 35px;
  background: #fff;
  color: #606060;
  display: block;
  margin: 7px 0;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0);
}

.buildings__item-hover a:hover {
  border: 1px solid #e8e8e8;
  color: #000;
}

#edit-building-form .delete-form {
  display: flex;
}

.floors > p {
  display: block;
  text-align: center;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}

.floors__item {
  border: 1px solid #e8e8e8;
  padding: 20px;
  position: relative;
}

.floors__item .name {
  position: absolute;
  top: 0;
  left: 20px;
  background: #fff;
  transform: translateY(-50%);
  padding: 0 10px;
}

.floors__item .name p {
  margin: 0;
  font-size: 18px;
  color: #3e3e3e;
}

.floors__item .buttons {
  position: absolute;
  right: 10px;
  top: 0;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 10px;
}

.floors__item .buttons button {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 13px;
}

.floors__item .buttons .add-button button {
  font-size: 20px;
}

.floors__item .buttons .actions-button {
  margin: 0 3px;
}

.floors__item:not(:last-child) {
  margin-bottom: 50px;
}

.flats {
  margin: 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.flats .flats__item {
  margin: 10px;
  background: #e8e8e8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.3s;
  cursor: pointer;
}

.flats .flats__item span {
  color: #3e3e3e;
}

.flats .flats__item:hover {
  border: 1px solid #e8e8e8;
}

.flats > p {
  display: block;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}

.selected-categories-wrap {
  margin: 10px -5px 0;
}

.selected-categories {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.selected-categories__item {
  background: blue;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  padding: 5px 23px 5px 12px;
  background: #d6d8da;
  display: flex;
  align-items: center;
  position: relative;
  margin: 3px 5px;
}

.selected-categories__item p {
  font-size: 14px;
  color: #4d4d4d;
  margin: 0;
}

.selected-categories__item button {
  cursor: pointer;
  outline: 0;
  border: 0;
  color: red;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

.stylesheet {
  width: 100%;
}

.stylesheet form {
  width: 100%;
}

.stylesheet textarea {
  height: 500px;
  width: calc(100% - 40px);
  padding: 20px;
  border: 1px solid #e8e8e8;
  margin-bottom: 30px;
}

.current-file-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.current-file-wrap p,
.current-file-wrap a {
  color: #3e3e3e;
  margin: 0;
}

.current-file-wrap p {
  margin-right: 7px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.breadcrumbs a {
  color: #3e3e3e;
  display: flex;
  align-items: center;
  margin-right: 7px;
  position: relative;
  padding-right: 17px;
}

.breadcrumbs a:after {
  content: ">";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.form__item.gallery-list {
  flex-direction: row;
  flex-wrap: wrap;
}

.form__item.gallery-list .item {
  width: 150px;
  height: 150px;
  background: #e8e8e8;
  border-radius: 5px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0);
  position: relative;
  margin-right: 24px;
  margin-bottom: 25px;
}

.form__item.gallery-list .item:nth-child(6n+6) {
  margin-right: 0;
}

.form__item.gallery-list .item a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form__item.gallery-list .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form__item.gallery-list .item .remove-image-item {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: 0;
  z-index: -1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form__item.gallery-list .item .remove-image-item svg {
  width: 100%;
  height: 100%;
}

.form__item.gallery-list .item:hover {
  border: 1px solid #e8e8e8;
}

.form__item.gallery-list .item:hover .remove-image-item {
  opacity: 1;
  z-index: 1;
  transition: all 0.3s ease;
}

.note-editor .note-toolbar .note-dropdown-menu,
.note-popover .popover-content .note-dropdown-menu {
  min-width: 200px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
	background:unset;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: unset;
    background: #bdbdbd;
    color: #616161;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #000;
    background: #000;
    font-weight: normal;
    color: #ffffff;
}
.ui-widget-header {
    border: unset;
    background: #bdbdbd;
    color: #616161;
    font-weight: bold;
}

@media (min-width: 576px) {
  .container {
    width: 540px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .container {
    width: 720px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .container {
    width: 960px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1140px;
    margin: 0 auto;
  }
}
.smartcondoplans-project-search {
  margin: 0px auto 20px;
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  height: 60px;
  padding: 0 50px 0 50px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  font-size: 20px;
  line-height: 44px;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  background-color: #fff;
  background-image: url('/images/zoom-search.svg');
  background-repeat: no-repeat;
  background-position: 341px center;
  background-size: 30px 30px;
  color: #202124;
  font-family: 'Roboto', Arial, sans-serif;
}

.smartcondoplans-project-search::placeholder {
  color: #5f6368;
  font-size: 20px;
}

.smartcondoplans-project-search:focus {
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.38);
}

.smartcondoplans-project-search:hover {
  box-shadow: 0 2px 8px rgba(32, 33, 36, 0.3);
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: unset;
    outline: 0;
    border-bottom: 1px solid #e8e8e8;
    border-radius: unset;
    color: #000;
}
.select2-container--default .select2-selection--multiple{
    border: unset;
    outline: 0;
    border-bottom: 1px solid #e8e8e8;
    border-radius: unset;
    color: #000;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
    background-color: unset;
    margin-left: 13px;
    border-radius:unset
}
h3.page-title{
    font-size: 27px;
    color: #4f4f4f;
    font-weight: 700 !important;
    margin: auto;
    width: fit-content;
      font-family: "Roboto", sans-serif;
}
.smart-condo-plans-add-project{
    margin: 20px auto;
    width: fit-content;
}