@font-face {
  font-family: GilroyRegular;
  src: url(gilroy-regular.ttf);
}
@font-face {
  font-family: GilroyBold;
  src: url(gilroy-bold.ttf);
}

body {
  font-family: "GilroyRegular";
  background-color: #f2f2f2 !important;
}
.main_Banner {
  width: 100%;
  height: 86vh;
  background: linear-gradient(
    to bottom,
    rgb(100, 102, 102),
    rgb(255, 255, 255)
  );
  background: black;
  background: whitesmoke;
  background: linear-gradient(120deg, rgb(238, 227, 222), rgb(169, 240, 201));
  background: linear-gradient(120deg, rgb(211, 220, 236), rgb(169, 240, 201));
  overflow: hidden;
  position: relative;
  padding: 0;
  z-index: 0;
  margin-top: 6vh;
}


.btn {
  border-width: 2px;
  font-size: 0.9rem;
  font-weight: 600;
}
.btn-primary {
  background: rgb(226, 239, 249);
  color: rgb(110, 161, 200);
  border: 2px solid rgb(110, 161, 200);
}
.btn-success {
  background: rgb(226, 250, 237);
  color: mediumseagreen;
  border: 2px solid mediumseagreen;
}
.btn.btn-icon {
  border-width: 2px;
  font-size: 1.3rem;
  border-radius: 50px;
  padding: 0rem 0.6rem;
}
.btn-danger {
  background: rgb(250, 234, 228);
  color: orangered;
  border: 2px solid orangered;
}

.text-content {
  font-family: "GilroyRegular";
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
  width: 45%;
}
.text-content .imageDiv {
  width: 60%;
  overflow: hidden;
}
.text-content .imageDiv img {
  width: 100%;
  object-fit: cover;
  transform: rotate(-10deg);
}
.text-content .caption {
  font-family: "GilroyBold";
  font-size: 2.75rem;
}
.text-content .desc {
  font-size: 1.1rem;
  color: gray;
}
.text-content .iconsDiv {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 1rem;
}
.text-content .iconsDiv .each_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-right: 2rem;
}
.text-content .iconsDiv .each_icon i {
  background: rgb(240, 226, 221);
  color: rgb(255, 68, 0);
  box-shadow: 2px 1px 5px rgb(232, 173, 151);
  border-radius: 10px;
  padding: 1rem;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.text-content .iconsDiv .each_icon span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(83, 143, 158);
  width: 75%;
  text-align: center;
}
.mod-content {
  font-family: "GilroyRegular";
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
  
  background: white;
  box-shadow: 2px 1px 5px 0px gainsboro;
  width: 35%;
  /* margin: 2rem 0; */
  border-radius: 15px;
}
.mod-header {
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: gray;
  border-bottom: 1px solid rgb(230, 230, 230);
}
.mod-body {
  padding: 1.5rem;
  max-height: 58vh;
  overflow-y: auto;
}
.mod-footer {
  border-top: 1px solid rgb(230, 230, 230);
  padding: 1rem;
  text-align: right;
}


.mod-body::-webkit-scrollbar {
  width: 4px;
  height: 8px;
}
/* Track (background) */
.mod-body::-webkit-scrollbar-track {
  background: #dedede; /* dark background */
}
/* Scroll thumb */
.mod-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #9d9d9d, #c6c5c5);
  border-radius: 10px;
  transition: 0.3s ease;
}
/* Hover effect */
.mod-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7c7b7b, #b6b6b6);
}

.step-box-heading {
  color: cornflowerblue;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem auto;
  width: 100%;
}
.form-group label {
  font-weight: 550;
  font-size: 1rem;
  color: rgb(68, 68, 68);
  width: 100%;
  display: block;
}
form .form-control {
  font-size: 1rem;
  background: transparent;
  border-radius: 0;
  border-width: 1px;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #ced4da;
  background: transparent;
  border-width: 1px !important;
}
.error {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  width: 100%;
  display: block;
}
.form-check-label {
  display: inline-flex !important;
  align-items: center;
  width: fit-content !important;
  margin-right: 1rem;
}
.form-check-input {
  position: relative;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0.25rem;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  height: calc(2.25rem + 2px);
  border: 1px solid #ced4da;
  border-radius: 0;
  font-size: 1rem;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  background: transparent;
}

/* Multiple select height auto */
.select2-container .select2-selection--multiple {
  min-height: calc(2.25rem + 2px);
  padding: 0.25rem 0.5rem;
  background: transparent;
}

/* Remove default focus blue outline */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border-color: #ced4da !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent;
}

/* Match input-group prepend styling */
.select2-container {
  flex: 1 1 auto;
  width: 1% !important;
  background: transparent;
}

/* Fix left border radius when used with input-group-prepend */
.select2-selection {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

fieldset {
  margin: 2%;
  position: relative;
}
fieldset.border {
  box-shadow: 0px 0px 5px 0px #d1d1d1;
  border: none !important;
}
legend {
  font-size: 1.2rem;
  color: cornflowerblue;
  background: white;
}
.choose_file_btn {
  cursor: pointer;
}
.choose_file_btn:hover {
  color: cornflowerblue;
}
.files_container {
  margin-top: 1rem;
}
.files_container .file_item {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem;
  margin: 0.5rem;
  color: cornflowerblue;
  font-size: 0.9rem;
  background: #f2f2f2;
  border: 1px solid gainsboro;
  width: fit-content;
}
.files_container .file_item .fa-paperclip {
  margin-right: 5px;
  color: gray;
  font-size: 1.1rem;
}
.files_container .file_item .fa-times {
  cursor: pointer;
  color: red;
  font-size: 1.1rem;
}
input[readonly],
textarea[readonly] {
  background-color: #fff !important;
  color: #000;
}

.note-editor.note-frame {
  width: 100% !important;
  box-shadow: none !important;
  border: 1px solid #ced4da !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.autoimages {
  padding-left: 1%;
  padding-right: 1%;
  padding-top: 2%;
}
.autoimages ul {
  padding-left: 0px;
}
.autoimages .uploadli {
  width: 160px !important;
  height: 150px !important;
  float: left;
  border-radius: 2px;
  background-color: #f7f7f7;
  position: relative;
  margin: 0 10px 10px 0;
  overflow: hidden;
}
.uploadli span {
  position: absolute;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 50%;
  z-index: 999;
}
.uploadli span:before {
  height: 16px;
  width: 2px;
  background-color: rgba(36, 39, 44, 0.5);
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  top: 6px;
  margin: auto;
  bottom: 0;
}
.uploadli input[type="file"] {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.picupload {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid rgba(36, 39, 44, 0.1);
  border-radius: 4px;
  top: 4px;
}
.uploadli span:after {
  background-color: rgba(36, 39, 44, 0.5);
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  top: -12px;
  margin: auto;
}
.uploadli span:after {
  top: -5px;
  height: 2px;
  width: 12px;
  bottom: -12px;
}
#interior_image_preview {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
#interior_image_preview img {
  width: 150px;
  height: 120px;
  margin-left: 1%;
  margin-bottom: 1%;
  object-fit: cover;
}
.editdelimgcls .changeimg {
  margin-top: 5%;
}
.hidden {
  visibility: hidden;
  width: 50%;
  /* display: none; */
}
.imagecls label,
.editdelimgcls label {
  display: block;
  text-align: center;
  position: absolute;
  bottom: -9px;
  padding: 2%;
  font-size: 14px;
  background: #f5b642;
  color: white;
  border-radius: 5px;
  font-weight: 400;
}
.editdelimgcls label {
  bottom: 40px !important;
  display: block;
}
.nomarginauto .updateimage {
  margin: 5px !important;
  display: inline !important;
}
.updateimage,
.deleteimage,
.deleteretrofittedimage,
.updateretrofittedimage {
  margin: auto;
  margin-top: 1%;
  margin-right: 1%;
  margin-left: 5%;
}
.editdelimgcls img {
  width: 100% !important;
  height: 150px;
  object-fit: cover;
}
#interior_image_preview .btn-danger {
  font-size: 0.9rem;
}