:root {
  --black-color: #090914;
  --dark-grey-color: #676A7F;
  --light-grey-color: #E6E7EA;
  --grey-color: #ACA9A9;
  --melanin-color: #E99883;
  --red-color: #F20000;
  --dark-orange-color: #B92C07;
  --green-color: #1D6E0F;
  --orange-color: #DD532E;
  --light-orange-color: #FFD7CC;
  --dark-yellow-color: #FFCA41;

}

body {
  color: var(--dark-grey-color);
}



h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-weight: 700;
  line-height: 1.2em;
}

a {
  color: var(--orange-color);
  transition: all .3s ease-in-out;
}

a:hover {
  color: var(--black-color);
}

button {
  transition: all .3s ease-in-out !important;
}

/*----------animated button--------*/
.animated-orng-btn {
  position: relative;
  overflow: hidden;
  height: 40px;
}

.btn-text {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  transition: bottom 0.5s ease;
  /* Smooth transition */
}

.btn-text-1 {
  bottom: 8px;
}

.btn-text-2 {
  bottom: -30px;
}

.btn-text-3 {
  bottom: -50px;
  animation: none;
  /* Initially no animation */
}

.animated-orng-btn:hover .btn-text-1 {
  bottom: 40px;
}

.animated-orng-btn:hover .btn-text-2 {
  animation: slideText2 1s forwards;
}

.animated-orng-btn:hover .btn-text-3 {
  animation: slideText3 1s forwards 0.5s;
  /* 1s animation with 0.5s delay */
}

/* Keyframes for .btn-text-2 */
@keyframes slideText2 {
  0% {
    bottom: -30px;
  }

  50% {
    bottom: 8px;
  }

  100% {
    bottom: 40px;
  }
}


@keyframes ball {
  100% {
    transform: translateX(300px);
  }
}




/* Keyframes for .btn-text-3 */
@keyframes slideText3 {
  0% {
    bottom: -30px;
  }

  50%,
  100% {
    bottom: 8px;
  }
}








.rotate-icon-btn {
  transform: rotate(-45deg);
}

/*---------/animated button--------*/

.mw-auto {
  min-width: auto !important;
}

.form-check-input {
  border: 1px solid #ffbfae;
  --form-check-input-bg: var(--light-orange-color);
  --form-check-input-focus-border: #ffbfae;
  ;
}

.form-check-input:focus {
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--orange-color);
}

.form-switch .form-check-input {
  border: 1px solid #a8a8a8;
  --form-check-input-bg: #a8a8a8;
  --form-check-input-focus-border: #a8a8a8;
  --form-check-input-width: calc(1.45rem * 1.75);
}

.form-switch .form-check-input,
.form-switch .form-check-input:focus,
.form-switch .form-check-input:checked {
  background-image: url("../../../public/assets/images/white-circle-bg-img.svg");
}

.form-switch .form-check-input:checked {
  border: 1px solid var(--orange-color);
}

.cust-bg-red {
  background-color: var(--red-color);
}

.cust-bg-orange {
  background-color: var(--orange-color);
}

.login-icon {
  width: 16px;
  margin-right: 10px;
  margin-top: -3px;
}

.btn-light {
  background-color: #ffffff;
  border-color: #333333;
  font-weight: 500;
  color: var(--dark-grey-color);
}

.btn-light:hover,
.btn-light:active {
  background-color: #ffffff !important;
  color: var(--orange-color) !important;
  border-color: #333333 !important;
}

.secondary-text-color {
  color: var(--dark-grey-color);
}

.text-red {
  color: var(--red-color);
}
.text-green{
  color: var(--green-color);
}

.navbar-footer {
  border-top: 1px solid var(--light-grey-color);
}

.orange-color {
  color: var(--orange-color);
}

.black-color {
  color: var(--black-color);
}

.bg-light-green{
  background-color: #f1ffed;
}
.bg-green{
  background-color: var(--green-color);
}
.bg-dark-yellow{
  background-color: var(--dark-yellow-color);
}
.navbar-static {
  box-shadow: 0px 1px 10px 2px rgb(221 83 46 / 15%);
}

.nav-logo {
  height: 30px !important;
}

.lock-color {
  color: var(--grey-color);
}

.wlcm-user-btn {
  max-width: 200px;
}

.btn {
  min-height: 40px;
  position: relative;
  overflow: hidden;
}

.cust-orng-btn {
  background-color: var(--orange-color);
  color: #ffffff;
  min-width: 150px;
}

.cust-orng-btn:hover, .btn.cust-orng-btn:active{
  background-color: var(--dark-orange-color);
  color: #ffffff;
}

.cust-white-btn {
  border: 1px solid var(--red-color);
  color: var(--red-color);
  min-width: 150px;
}

.cust-white-btn:hover, .btn.cust-white-btn:active {
  background-color: var(--red-color);
  color: #ffffff;
}

.sidebar-main {
  background-color: var(--orange-color);
  background-image: url("../../../public/assets/images/sidebar-vector-with-transparent.svg");
  background-repeat: no-repeat;
  background-size: cover;
  --sidebar-border-color: none;
}

.nav-sidebar .nav-link {
  color: #ffffff;
  font-weight: 400;
  border-radius: 5px 0px 0px 5px;
}

.nav-sidebar .nav-link.active,
.nav-sidebar .nav-link:hover {
  background-color: #ffffff;
  color: var(--black-color);
}

.nav-sidebar .nav-link.active {
  font-weight: 500;
}

.nav-sidebar .nav-item {
  width: 90%;
  margin-left: auto;
}

.nav-sidebar .nav-link img,
.nav-sidebar .nav-link svg {
  width: 20px;
  margin-right: 1.25rem;
}

.nav-sidebar .nav-link:hover svg path,
.nav-sidebar .nav-link.active svg path {
  fill: #000000;
}

hr {
  color: rgb(252 204 191 / 80%);
}
.light-orng-hr{
  color: var(--light-orange-color);
  opacity: 1;
}
.sidebar-main hr {
  color: #ffb09b;
}

.nav-sidebar .icon-lock2 {
  font-size: 18px;
  color: #ffffff;
}

.nav-sidebar .locked,
.nav-sidebar .locked:hover {
  color: #E99883;
}

.nav-sidebar .locked:hover .icon-lock2 {
  color: #000000;
}

.project-img-wrapper {
  /*  width: 230px;*/
  overflow: hidden;
  position: relative;
}

.project-img {
  /*  width: 230px;*/
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--light-grey-color);
  border-radius: 3px 3px 0px 0px;
}

.project-wrapper {
  /*float: left;
  margin: 0 1.5vw 1.5vw 0;*/
  box-shadow: 0px 0px 5px 1px #ddd;
  border-radius: 5px;
  border: 3px solid #ffffff;
  cursor: pointer;
}

.premium {
  border: 2px solid var(--orange-color);
}

.project-name {
  margin: 0;
  color: var(--black-color);
  font-weight: 500;
  font-size: 15px;
}

.premium-img-icon {
  width: 34px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0px 0px 0px 3px;
  box-shadow: -1px 1px 10px 0px rgb(0 0 0 / 70%);
  display: none;
  z-index: 1;
}
.go-pro-wrapper{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 34px;
    text-align: center;
}
.go-pro-wrapper .cust-orng-btn{
    padding: 5px;
    min-height: 14px;
}
/* #contentDiv{
  animation: ball 4s ease-in-out 1s infinite alternate both;
} */


.premium .premium-img-icon {
  display: block;
}

.project-text-details {
  padding: 5px 10px;
}

/* cropper preview box css */

.main-image-container {
  background-color: #ffffff;
  position: relative;
  width: 90%;
  max-width: 90%;
  height: 100%;
  max-height: 420px;
  border-radius: 0px;
  /*  margin: auto;*/
  margin-top: 15px;
}

.main-image-container img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.image-container {
  position: relative;
  overflow: hidden;
  background-color: rgb(209 209 209 / 50%);
}

.cursor-pointer {
  cursor: pointer;
}

.modal-header {
  border-bottom: 0;
}

.modal-footer {
  border-top: 0;
}

.modal-content {
  border: 0;
}

.modal {
  background: rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
  display: none;
}
.modal:nth-of-type(even) {
    z-index: 9999 !important;
}
#uploadModal{
  z-index: 1055!important;
}
#addField.modal:nth-of-type(even) {
    z-index: 1055 !important;
}
.modal-backdrop.show:nth-of-type(even) {
    z-index: 1051 !important;
}
.form-control {
  color: var(--dark-grey-color);
}

.form-control:focus {
  border-color: #d1d5db;
  outline: 0;
  box-shadow: none;
}

.active>.page-link,
.page-link.active {
  background-color: var(--orange-color);
  border-color: var(--orange-color);
}

.overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 40%);
  opacity: 0;
  transition: all .3s ease-in-out;
}

.project-img-wrapper:hover .overlay-wrapper,
.preview-mosaic-sample-img-wrapper:hover .overlay-wrapper {
  opacity: 1;
}

.overlay-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  transform: scale(0);
  transition: all .5s ease-in-out;
}

.project-img-wrapper:hover .overlay-content {
  transform: scale(1);
}

.project-overlay-del-wrapper {
  position: absolute;
  padding: 5px;
  bottom: -32px;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0px 24px 0 rgb(0 0 0);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all .5s ease-in-out;
}

.project-img-wrapper:hover .project-overlay-del-wrapper {
  bottom: 0;
}

.project-overlay-del-btn {
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.project-overlay-del-btn:hover{
  color: var(--red-color);
}
.btn-to-top-visible button,
.btn-to-top-visible button:hover {
  background-color: var(--orange-color);
  border-color: var(--orange-color);
  display: none;
}

.sample-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background-color: var(--light-grey-color);
}

.bundle-sample-img-wrapper {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.bundle-sample-img-wrapper .sample-img {
  height: 100px;
  object-fit: cover;
}

.morphism-div {
  position: absolute;
  padding: 2px 5px;
  bottom: 0px;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all .5s ease-in-out;
  color: var(--black-color);
  border-radius: 0px 0px 5px 5px;
}

/*------circle progress bar--------*/
.circle-progress {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: none;
  margin-left: auto;
  box-shadow: none;
  position: relative;
}

.circle-progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #ffe8e2;
  position: absolute;
  top: 0;
  left: 0;
}

.circle-progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.circle-progress .progress-left {
  left: 0;
}

.circle-progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 10px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: var(--orange-color);
}

.circle-progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.circle-progress .progress-right {
  right: 0;
}

.circle-progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 75px;
  border-bottom-left-radius: 75px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.circle-progress .progress-value {
  display: flex;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 500;
  color: var(--black-color);
}

.circle-progress .progress-value span {
  font-size: 12px;
  text-transform: uppercase;
}

/* This for loop creates the 	necessary css animation names 
Due to the split circle of progress-left and progress right, we must use the animations on each side. 
*/
.circle-progress[data-percentage="10"] .progress-right .progress-bar {
  animation: loading-1 1.5s linear forwards;
}

.circle-progress[data-percentage="10"] .progress-left .progress-bar {
  animation: 0;
}

.circle-progress[data-percentage="25"] .progress-right .progress-bar {
  animation: loading-2 1.5s linear forwards;
}

.circle-progress[data-percentage="25"] .progress-left .progress-bar {
  animation: 0;
}

.circle-progress[data-percentage="30"] .progress-right .progress-bar {
  animation: loading-3 1.5s linear forwards;
}

.circle-progress[data-percentage="30"] .progress-left .progress-bar {
  animation: 0;
}

.circle-progress[data-percentage="40"] .progress-right .progress-bar {
  animation: loading-4 1.5s linear forwards;
}

.circle-progress[data-percentage="40"] .progress-left .progress-bar {
  animation: 0;
}

.circle-progress[data-percentage="50"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.circle-progress[data-percentage="50"] .progress-left .progress-bar {
  animation: 0;
}

.circle-progress[data-percentage="60"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.circle-progress[data-percentage="60"] .progress-left .progress-bar {
  animation: loading-1 1.5s linear forwards 1.5s;
}

.circle-progress[data-percentage="75"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.circle-progress[data-percentage="75"] .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.5s;
}

.circle-progress[data-percentage="80"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.circle-progress[data-percentage="80"] .progress-left .progress-bar {
  animation: loading-3 1.5s linear forwards 1.5s;
}

.circle-progress[data-percentage="90"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.circle-progress[data-percentage="90"] .progress-left .progress-bar {
  animation: loading-4 1.5s linear forwards 1.5s;
}

.circle-progress[data-percentage="100"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.circle-progress[data-percentage="100"] .progress-left .progress-bar {
  animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90);
    transform: rotate(90deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}

/*------circle progress bar--------*/
.cropper-container .cropper-modal {
  opacity: 1;
  background-color: rgb(209 209 209 / 50%);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}

.cropper-container .cropper-view-box {
  outline: 1px solid var(--orange-color);
  outline-color: rgb(221 83 46 / 75%);
}

.aspect-ratio-wrapper .form-check-label {
  margin-top: 0px;
}

.aspect-ratio-wrapper svg {
  position: absolute;
  top: -18px;
  background: #fff;
}

.aspect-ratio-wrapper .form-check-inline {
  position: relative;
  text-align: center;
  margin-right: 20px;
}

.aspect-ratio-wrapper .form-check-inline input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 2px solid #aca9a9;
  cursor: pointer;
  --form-check-input-bg: #ffffff;
  --form-check-input-focus-border: #ffffff;
}

.aspect-ratio-wrapper .form-check-inline label {
  cursor: pointer;
}

.aspect-ratio-wrapper .form-check-inline input:checked {
  background-color: #ffffff;
  border: 2px solid var(--orange-color);
}

.zoom-btn-wrapper {
  position: absolute;
  bottom: 6px;
  right: 6px;
}

.zoom-btn-wrapper button {
  border: 0;
  outline: 0;
  box-shadow: none;
  background: rgb(255 255 255 / 65%);
  color: #000;
}

.disabled {
  pointer-events: none;
  cursor: default;
}

.disabled-orng-btn {
  pointer-events: none;
  cursor: default;
  background-color: rgb(217 87 52 / 50%);
}

.disabled-section {
  opacity: 0.5;
  pointer-events: none;
}

.ratio-div {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.ratio-16-9 {
  width: 40px;
  height: 25px;
}

.ratio-9-16 {
  width: 25px;
  height: 40px;
}

.ratio-1-1 {
  width: 30px;
  height: 30px;
}

.ratio-4-3 {
  width: 38px;
  height: 28px;
}

.ratio-3-4 {
  width: 28px;
  height: 38px;
}

fieldset {
  position: relative;
  padding: 20px 25px;
  border: 1px solid var(--light-orange-color);
  border-radius: 5px;
}

legend {
  font-size: 18px;
  color: var(--black-color);
  font-weight: 500;
  padding: 0 5px;
  float: none;
  width: auto;
  margin-bottom: 0;
}

.preview-mosaic-sample-img-wrapper {
  margin: auto;
  overflow: hidden;
  position: relative;
}

.preview-mosaic-sample-img-wrapper,
.preview-mosaic-sample-img {
  width: 112px;
  height: 112px;
}

.preview-mosaic-sample-img-wrapper .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.modal-sample-img-wrapper {
  position: relative;
}

.modal-sample-img-wrapper button {
  position: absolute;
  right: 0;
  background: var(--orange-color);
  color: #fff;
  opacity: 1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.card {
  box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 10%);
}

.card-header {
  border-bottom: 0;
}

.card .collapse .card-body,
.card .collapse .card-footer {
  border-top: 1px solid var(--light-orange-color);
}

.card-locked {
  background-color: #e7e7e7;
}

.card-locked .title {
  color: #747070;
}

.card-locked .collapse .card-body,
.card-locked .collapse .card-footer {
  border-top: 1px solid #cfcfcf;
}

.card-locked .form-control {
  background: #e7e7e7;
}

.card-locked .file-opload-option .form-control,
.card-locked .file-opload-option .form-check-label {
  color: var(--dark-grey-color);
}

.file-opload-option .form-control,
.file-opload-option .form-check-label {
  color: var(--black-color);
}

.file-opload-option {
  border-bottom: 1px solid var(--light-orange-color);
  padding-bottom: 3px;
  margin-bottom: 3px;
}

.file-opload-option-last {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.file-opload-option .form-check-input {
  --form-check-input-bg: #ffffff;
}

.uploaded-tiles {
  max-height: 300px;
  overflow-y: auto;
  padding: 5px;
}

.uploaded-tiles-col {
  width: 105px;
  height: 105px;
  overflow: hidden;
  float: left;
  margin-right: 12px;
  margin-bottom: 12px;
  box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 10%);
  position: relative;
}

.uploaded-tiles img {
  width: 100%;
  height: 105px;
  object-fit: cover;
}

.tiles-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 70%);
  display: flex;
  opacity: 0;
  transition: all .3s ease-in-out;
}

#lottie-player {
  display: none;
}

.cursor-pointer {
  cursor: pointer;
}

.tiles-overlay .progress {
  margin: auto;
  width: 80%;
  --progress-height: 6px;
  --progress-bg: #ffffff;
}

.tiles-overlay .progress-bar {
  background-color: #dd532e;
}

.tiles-overlay .delete-icon {
  position: absolute;
  right: 0;
  color: var(--orange-color);
}

/* .uploaded-tiles-col:hover .tiles-overlay{
	opacity: 1;
} */

.uploaded-tiles-col {
  position: relative;
  display: inline-block;
  margin: 10px;
}

.uploaded-tiles-col:hover .tiles-overlay,
.tiles-overlay.uploading {
  opacity: 1;
}

.btn-outline-success {
  --btn-color: #1D6E0F;
  --btn-border-color: #1D6E0F;
  --btn-hover-bg: #1D6E0F;
  --btn-hover-border-color: #1D6E0F;
  --btn-active-bg: #1D6E0F;
  --btn-active-border-color: #1D6E0F;
  --btn-disabled-color: #1D6E0F;
}

.btn-mw {
  min-width: 150px;
}

.btn {
  border-radius: 4px;
}

.page-overlay {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
  padding: 20px;
  text-align: center;
  margin-left: 0 !important;
}


.density-page-overlay {
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
  padding: 20px;
  text-align: center;
}

#density-preview-box {
  position: relative;
}


.page-overlay img {
  width: 50px;
  transform: rotate(45deg);
}

.page-overlay .spinner-grow {
  width: 5px;
  height: 5px;
  margin-left: 2px;
}

/* loading dots */
.loading {
  line-height: 1.2em;
  margin-top: 20px;
}

/* loading dots */
.loading:after {
  content: ' .';
  animation: dots 2s steps(5, end) infinite;
}





.page-overlay-tile-images {
  background: rgba(255, 255, 255, 0.8);
  /* Slight transparency */
  position: absolute;
  /* Position it relative to the parent container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
  padding: 20px;
  text-align: center;
}

.page-overlay-tile-images img {
  width: 50px;
  transform: rotate(45deg);
}

.page-overlay-tile-images .spinner-grow {
  width: 5px;
  height: 5px;
  margin-left: 2px;
}

/* Optional: Make sure the container has position relative */
.tile-images-container {
  position: relative;
  /* Required to make the loader align properly */
}




/* Add this to your stylesheet */
.suggestion-item {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 5px;
  transition: background-color 0.3s ease;
}

.suggestion-item:hover {
  background-color: #e2e6ea;
}



/* public form search wrapper start*/

#result_part {
  position: absolute;
  top: 40px;
}

.search-public-scroll-wrapper {
  overflow: hidden;
  width: 325px;
}

#mobileSearch {
  background: #FFFF;
  position: relative;
  max-height: 270px !important;
  z-index: 9990;
  overflow-y: scroll;
  padding: 20px;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #d1d5db;
  border-top: none;
}

.search-input-main-sec {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}



.upload-div {
  position: relative;
  /* Make the loader position relative to this parent div */
}

.public-form-image-page-overlay {
  background: rgb(255 255 255 / 95%);
  /* Slight transparency for better visual */
  position: absolute;
  /* Position relative to .upload-div */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  /* Higher than other elements within .upload-div */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
  padding: 20px;
  text-align: center;
}

.public-form-image-page-overlay img {
  width: 50px;
  transform: rotate(45deg);
}

.public-form-image-page-overlay .spinner-grow {
  width: 5px;
  height: 5px;
  margin-left: 2px;
}






.button-wrapper {
  position: relative;
  display: inline-block;
}

.click-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer; /* Enable cursor to indicate it can be clicked */
  pointer-events: auto; /* Ensure the overlay can receive pointer events */
  z-index: 1; /* Place above the button */
}

.click-overlay.hidden {
  width: 0;
  height: 0;
  pointer-events: none; /* Disable interaction when hidden */
  z-index: -1; /* Send behind the button */
}




.public-form-image-page-overlay-all {
  background: rgba(255, 255, 255, 0.8);
  /* Slight transparency for better visual */
  position: absolute;
  /* Position relative to .upload-div */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  /* Higher than other elements within .upload-div */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
  padding: 20px;
  text-align: center;
}

.public-form-image-page-overlay-all img {
  width: 50px;
  transform: rotate(45deg);
}

.public-form-image-page-overlay-all .spinner-grow {
  width: 5px;
  height: 5px;
  margin-left: 2px;
}






/* Loader Wrapper */
.loader-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  width: 15rem;
}

/* Loader Styles */
.loader {
  background: #efeff0;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 0.375rem;
  width: 500px;
  overflow: hidden;
  margin: 0 5px;
}

/* Loader Value Animation */
.loader-value {
  box-shadow: 0 10px 40px -10px #fff;
  border-radius: 100px;
  background: #ed6a5a;
  height: 0.375rem;
  width: 0;
  animation: none;
}

/* Keyframes for the repeating animation */
@keyframes loaderAnimation {
  0% { width: 0; }
  100% { width: 100%; }
}



/* loader-text-wrapper */
.loader-text-wrapper {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.5s;
  text-align: center;
  padding:0 15px;
}

/* Animation for each progress bar */
#progress-bar-1 {
  animation: showStep1 135s linear forwards;
}

#progress-bar-2 {
  animation: showStep2 135s linear forwards;
}

#progress-bar-3 {
  animation: showStep3 135s linear forwards;
}







.frontend-loader {
  animation: bounce-in 1.0s ease forwards, bounce-out 0.5s ease forwards;
  animation-delay: 0s, 1.3s; /* Delay bounce-out by 2s */
}


.bounce-img{
  width: 150px;
  height: 150px;
}




/* start of expiry html on off and keep generate button disabled css */

/* Button Styling */
.generate-disabled-btn, .disabled-input  {
  opacity: 0.6;
  cursor: not-allowed !important;
  pointer-events: none !important;
  position: relative;
}

.expired-btn {
  background-color: #cccccc !important;
  border-color: #aaaaaa !important;
  color: #666666 !important;
}

/* Make it resistant to inspection changes */
.generate-mosaic-btn[disabled] {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  background-image: none !important;
}

/* Overlay protection */
#btn-security-overlay, #input-protection-overlay {
  pointer-events: auto !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  z-index: 1;
}

.button-security-wrapper, .input-protection-wrapper {
  position: relative;
  display: inline-block;
}

/* Prevent right-click on button */
.generate-mosaic-btn {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


#public_url[disabled] {
  background-color: #f8f9fa !important;
  border-color: #dee2e6 !important;
  color: #6c757d !important;
}





.pop-out-image {
  transition: opacity 0.3s ease-out !important;
  will-change: opacity;
}

/* end of expiry html on off and keep generate disabled css */

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale3d(0, 0, 1); /* Start from scale 0 */
  }
  20% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1); /* Overshoot for spring effect */
  }
  35% {
    transform: scale3d(0.96, 0.96, 1); /* Compression */
  }
  50% {
    transform: scale3d(1.06, 1.06, 1); /* Slight bounce back */
  }
  65% {
    transform: scale3d(0.98, 0.98, 1); /* Small oscillation */
  }
  80% {
    transform: scale3d(1.02, 1.02, 1); /* Final scale */
  }
  100% {
    transform: scale3d(1, 1, 1); /* Final scale */
  }
}

@keyframes bounce-out {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.1);
  }
}



/* Keyframes for visibility control */
@keyframes showStep1 {
  0%, 33.33% {
      opacity: 1;
  }
  33.34%, 100% {
      opacity: 0;
  }
}

@keyframes showStep2 {
  0%, 33.33% {
      opacity: 0;
  }
  33.34%, 66.66% {
      opacity: 1;
  }
  66.67%, 100% {
      opacity: 0;
  }
}

@keyframes showStep3 {
  0%, 66.66% {
      opacity: 0;
  }
  66.67%, 100% {
      opacity: 1;
  }
}

/* public form search wrapper end*/


@keyframes dots {

  0%,
  20% {
    color: rgba(0, 0, 0, 0);
    text-shadow:
      .25em 0 0 rgba(0, 0, 0, 0),
      .5em 0 0 rgba(0, 0, 0, 0);
  }

  40% {
    color: black;
    text-shadow:
      .25em 0 0 rgba(0, 0, 0, 0),
      .5em 0 0 rgba(0, 0, 0, 0);
  }

  60% {
    text-shadow:
      .25em 0 0 black,
      .5em 0 0 rgba(0, 0, 0, 0);
  }

  80%,
  100% {
    text-shadow:
      .25em 0 0 black,
      .5em 0 0 black;
  }
}

.read-only-input {
  padding: 0;
  border: 0;
}

.fixed-generate-btn-wrapper {
  position: fixed;
  bottom: 43px;
  background: #ffffff;
  border-top: 1px solid #cfcfcf;
  width: calc(100% - 18.75rem);
  left: 18.75rem;
  text-align: center;
  padding: 10px;
  z-index: 1;
}

.fixed-generate-btn {
  max-width: 300px;
  width: 40%;
  margin: auto;
}

.fixed-generate-btn-wrapper [disabled] {
  background-color: #E7E7E7 !important;
  color: rgb(116 112 112 / 60%) !important;
  border: 0 !important;
}

.notific-badge {
  --badge-padding-x: 2px;
  --badge-padding-y: 3px;
  --badge-font-size: 10px;
  right: 7px;
  top: 7px;
}

.pagination .page-item {
  margin-left: 5px;
  margin-right: 5px;
}

#openseadragon {
  width: 100%;
  height: 600px;
  background-color: rgb(209 209 209 / 50%);
}

.pro-version-details-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.price-col {
  background: rgb(225 101 69 / 15%);
}

.premium-price {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
}

.pro-version-text-details {
  margin-top: -50px;
}

.external-bullet {
  list-style: none !important;
  padding-left: 0px !important;
  padding-bottom: 0 !important;
  display: inline-block;
  text-align: left;
  font-size: 14px;
}

.external-bullet li {
  line-height: 1.5em;
  margin-bottom: 10px;
  margin-left: 25px;
}
.external-bullet li:last-child{
  margin-bottom: 0;
}
.external-bullet li:before {
  margin-right: 0px;
  margin-left: -25px;
  position: relative;
  display: inline-block;
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 14px;
  width: 25px;
  color: var(--orange-color);
}

.login-content-wrapper {
  margin-left: 0 !important;
}

.login-content-wrapper .navbar-footer .container-fluid {
  display: block;
  text-align: center;
}
.sidebar-main-resize{
  min-height: auto;
}
.sidebar-main-resized .nav-sidebar .nav-link svg {
  margin-left: 1rem;
}

.sidebar-section-body {
  padding-left: 30px;
  transition: all 0.50s;
}

.sidebar-main-resized .sidebar-section-body {
  padding-left: 12px;
}

.file-input {
  --fi-preview-border: calc(var(--border-width) * 2) dashed var(--light-orange-color);
}

.disabled-btn [disabled] {
  background-color: #E7E7E7 !important;
  color: rgb(116 112 112 / 60%) !important;
  border: 0 !important;
}

.btn-file {
  background-color: var(--orange-color);
  color: #ffffff;
  border-color: var(--orange-color);
}

.btn-file:hover {
  background-color: var(--dark-orange-color);
  color: #ffffff;
  border-color: var(--dark-orange-color);
}

.purchased-text-overlay {
  position: fixed;
  width: calc(100% - 18.75rem);
  height: calc(100% - 104px);
  /* background: red; */
  z-index: 3;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-img {
  object-fit: cover;
}

.datatable-scroll {
  overflow-x: auto;
}

.cust-sorting_disabled {
  cursor: auto !important;
  padding-right: 20px !important;
}

.cust-sorting_disabled:before,
.cust-sorting_disabled:after {
  display: none !important;
}

.bb-light-grey {
  border-bottom: 1px solid #d1d5db;
}

.admin-login-card {
  max-width: 900px;
}

.admin-login-img {
  max-width: 300px;
  width: 100%;
}

.form-select:focus {
  border-color: #d1d5db;
  outline: 0;
  box-shadow: none;
}

.mw-badge {
  min-width: 80px;
}

.lock-unlock-btn {
  transition: none;
}

.lock-unlock-btn i {
  border: 1px solid var(--orange-color);
  padding: 5px;
  border-radius: 3px;
  font-size: 20px;
  transition: all .3s ease-in-out;
}

.lock-unlock-btn:hover i {
  border: 1px solid var(--black-color);
}

.lock-unlock-btn.disabled i {
  color: var(--light-grey-color);
  border: 1px solid var(--light-grey-color);
}

.orange-search-btn {
  background-color: var(--orange-color);
  color: #ffffff;
}

.orange-search-btn:hover,
.orange-search-btn:focus {
  background-color: var(--dark-orange-color);
  color: #ffffff;
}

/* .front-mosaic {
  max-width: 650px;
} */

.front-mosaic .nav-logo{
  height: 50px!important;
}

.ftr-logo {
  height: 14px;
}

.orange-input[type=file] {
  --form-file-button-color: #ffffff;
  --form-file-button-bg: var(--orange-color);
  --form-file-button-hover-bg: var(--dark-orange-color);
}

.upload-div {
  max-width: 600px;
  height: 250px;
  border: 2px dashed var(--light-orange-color);
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.upload-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-div .del-btn {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--red-color);
  color: #fff;
  padding: 5px;
  border-radius: 0px 0px 0px 6px;
}

.form-control:disabled {
  background-color: #e7e7e7;
  border-color: transparent;
}

.profile-img-wrapper {
  width: 130px;
  height: 130px;
  /*  overflow: hidden;*/
  border-radius: 50%;
  border: 1px solid #d1d5db;
  position: relative;
}

.profile-img {
  width: 100%;
  border-radius: 50%;
}

.profile-icon-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  min-width: auto;
  min-height: auto;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}

.border-box {
  border: 1px solid #d1d5db;
  border-radius: 5px;
  display: inline-block;
  padding: 10px;
  min-width: 130px;
}

.generated-mosaic-wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.sand-clock-img {
  width: 25px;
}

.image-overlay {
  position: absolute;
  width: 24px;
  height: 24px;
  transition: all 1s ease-in-out;
  object-fit: cover;
}

.openseadragon1 {
  width: 100%;
  height: 600px;
  background-color: rgb(209 209 209 / 50%);
}

.error-input {
  color: var(--red-color);
  border: 1px solid var(--red-color);
}

.nav-tabs .nav-link.active {
  background-color: var(--orange-color);
}

.footer-logo {
  height: 24px;
}

.tab-filter-sec {
/*  border: 1px solid var(--light-orange-color);*/
  border-bottom: 0;
}

.tab-filter-sec .nav-link.active {
  background-color: transparent;
  border: 0;
}

.tab-filter-sec .nav-link,
.tab-filter-sec .nav-link.active,
.tab-filter-sec .nav-link:hover {
  border: 0;
  border: 1px solid var(--light-orange-color);
  border-radius: 5px;
}

.tab-filter-sec .nav-item:last-child .nav-link,
.tab-filter-sec .nav-item:last-child .nav-link:hover {
  border-right: 0;
}
.tab-filter-sec .nav-link.disabled{
  border: 1px solid #edeceb;
  color: #edeceb;
}
.tab-filter-sec .nav-link.disabled svg{
  opacity: 0.1;
}
.cust-orng-outline-btn {
  border: 1px solid var(--orange-color);
  color: var(--orange-color);
}

.cust-orng-outline-btn:hover, .btn.cust-orng-outline-btn:active {
  background-color: var(--orange-color);
  color: #ffffff;
}

.image-checkbox {
  position: absolute;
  top: 0;
  right: 0;
}

.pro-btn-text {
  background-color: var(--dark-orange-color);
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 15px;
  border-radius: 0px 0px 0px 10px;
  font-size: 12px;
}

.only-icon-btn {
  min-width: 80px;
}

.pro-list-icon li:before {
  content: "\f061";
}








lottie-player {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.orange-bg-tab {
  justify-content: space-between;
  background-color: var(--light-orange-color);
}

.orange-bg-tab .nav-link {
  background-color: var(--light-orange-color);
  color: #ffb09b;
  justify-content: center;
  border-right: 1px solid rgb(252 204 191 / 80%) !important;
  font-weight: 500;
}

.orange-bg-tab .nav-item {
  width: 16.66%;
}

.orange-bg-tab .nav-link.active {
  background-color: #ffb09b;
  color: var(--orange-color);
  box-shadow: 1px 4px 6px 0px #B56551 inset;
}


.main-content-area {
  min-width: 60vw;
  margin: auto;
}
.upload-img-overlay{
  position: relative;
}
.upload-img-overlay img{
  width: 50px!important;
  height: auto!important;
}
.btn i{
  margin-top: 2px;
}
.swal2-confirm{
  background-color: var(--orange-color);
  box-shadow: none!important;
}
.swal2-confirm:hover{
  background-color: var(--dark-orange-color);
}
.dyn-gnrted-text{
  min-height: 50px;
}
#tryMainSampleModal{
  z-index: 100000001;
}
.introjs-progressbar{
  background-color: #dc532e!important;
}
.introjs-tooltipbuttons .introjs-button{
  border: 1px solid #dd532e!important;
  color: #dd532e!important;
  background: #ffffff!important;
  box-shadow: none!important;
}
.introjs-tooltipbuttons .introjs-button:hover {
    outline: 0;
    text-decoration: none;
    border-color: #dd532e!important;
    background-color: #dd532e!important;
    color: #ffffff!important;
    text-shadow: none;
}
.introjs-tooltipbuttons .introjs-disabled, 
.introjs-tooltipbuttons .introjs-disabled:focus, .introjs-tooltipbuttons .introjs-disabled:hover{
    color: #9e9e9e!important;
    border-color: #bdbdbd!important;
    background-color: #f4f4f4!important;
}
.introjs-helperLayer{
    box-shadow: none!important;
}
.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{
    border-right: var(--swal-icon-border-width) solid #a5dc86;
    border-top: var(--swal-icon-border-width) solid #a5dc86;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line]{
    background-color: transparent;
}
.swal2-icon.swal2-success {
    border-color: transparent;
}
div:where(.swal2-icon) .swal2-icon-content{
  font-size: 0.75em;
}
.pay-sucess .ph-check-circle{
  font-size: 22px;
}
.check-bullet li:before{
    content: "\f058";
}
.pay-sucess h2{
    font-size: 20px;
    margin: 0;
}
.refer-step-img{
  width: 60px;
}
.coupon-img{
  width: 40px;
}
.coupon-code-div{
  display: inline-block;
  background-image: repeating-linear-gradient(90deg, #d7d6d6, #d7d6d6 6px, transparent 6px, transparent 10px), repeating-linear-gradient(180deg, #d7d6d6, #d7d6d6 6px, transparent 6px, transparent 10px), repeating-linear-gradient(90deg, #d7d6d6, #d7d6d6 6px, transparent 6px, transparent 10px), repeating-linear-gradient(180deg, #d7d6d6, #d7d6d6 6px, transparent 6px, transparent 10px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
  padding: 10px;
}
#viewCouponModal .modal-content{
  background-image: url("../../../public/assets/images/coupon-bg-img.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
.responsive-table{
  overflow-x: auto;
}
#couponCode{
    width: 100%;
    border: 0;
    outline: 0;
    border-bottom: 1px solid #d1d5db;
}
#validateCoupon{
    border: 0;
    color: var(--orange-color);
    font-weight: 700;
    border-bottom: 1px solid #d1d5db;
    background: none;
}
#validateCoupon:disabled{
    color: var(--grey-color);
}
#clearCoupon{
  border: 0;
  border-bottom: 1px solid #d1d5db;
}
.select2-selection--single{
    border: var(--s2-border-width) solid var(--light-orange-color);
}
.select2-container--focus:not(.select2-container--disabled) .select2-selection--single, 
.select2-container--open .select2-selection--single{
    border-color: var(--light-orange-color);
    box-shadow: none;
}
.del-price{
  font-size: 20px;
}
.premium-price.orange-color{
  color: var(--orange-color);
}
.logo-qr{
  max-width: 40px;
}
.logo-text{
  max-width: 160px;
}
.carousel-item{
  transition: transform 1s cubic-bezier(0, 0.63, 0.41, 0.88);
}
.pass-input-wrapper {
    position: relative;
}
.pass-input-icon-wrapper {
    position: absolute;
    top: 0;
    color: #333;
    padding-left: 0.875rem;
    padding-right: 0.875rem;
    line-height: calc(1.5715em + .875rem + 2px);
    min-width: 1rem;
    right: 0;
}
.max-height-auto{
    max-height: 100%!important;
}
.notifi-icon{
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
/*    display: inline-block;*/
}
.notifi-icon i{
    font-size: 18px;
}
.notifi-icon-img{
    width: 16px;
    position: relative;
    bottom: 1px;
}
.offcanvas-body .flex-1{
  line-height: 1.4em;
}
.project-config-upload-div{
    max-width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-config-upload-div img{
  object-fit: contain;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button{ 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number]{
    -moz-appearance:textfield;
}
.label-break{
    width: 100%;
    word-wrap: break-word;
}
.cust-btn-group,.cust-dropdown-menu{
    min-width: 150px;
}
.cust-dropdown-menu a{
    color: var(--orange-color);
    justify-content: center;
}
.cust-dropdown-menu .dropdown-divider{
    border-top: 1px solid var(--light-orange-color);
    margin: 0;
}
.cust-btn-group .btn.show{
  color: var(--orange-color);
  border-color: var(--orange-color)
}
.cust-dropdown-menu{
  border: 1px solid var(--orange-color);
  padding-bottom: 0;
  padding-top: 0;
}
.cust-btn-group .btn.show:hover{
  color: #ffffff;
}
.cust-dropdown-menu .dropdown-item:focus, .cust-dropdown-menu .dropdown-item:hover{
    background-color: var(--orange-color);
    color: #ffffff;
}
.project-badge{
    border: 1px solid var(--orange-color);
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 20px;
}
/*------------media query-------*/
@media(max-width: 991.98px) {
  .fixed-generate-btn-wrapper {
    width: calc(100% - 60px);
    left: 60px;
  }

  .sidebar-main {
    position: absolute;
    left: 0;
    transition: all 0.50s !important;
  }




  .content-wrapper {
    margin-left: calc(var(--spacer)* 2 + var(--icon-font-size));
  }

  .purchased-text-overlay {
    width: calc(100% - 60px);
  }
}



@media(max-width: 767px) {
  .width-100 button {
    width: 100%;
  }
}
@media(min-width: 576px){
  .refer-step-border-line{
    position: relative;
    z-index: 1;
  }
  .refer-step-border-line:before{
    content: "";
    background-image: repeating-linear-gradient(90deg, var(--orange-color), var(--orange-color) 9px, transparent 9px, transparent 22px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    width: 60%;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    position: absolute;
    top: 35px;
    z-index: -1;
  }
}
@media(max-width: 575px) {
  .circle-progress:after {
    border: 5px solid #ffe8e2;
  }

  .circle-progress .progress-bar {
    border-width: 5px;
  }

  .circle-progress {
    width: 65px;
    height: 65px;
    line-height: 65px;
  }

  .circle-progress .progress-value {
    font-size: 12px;
  }

  .uploaded-tiles-col {
    width: 20vw;
    height: 20vw;
  }

  .uploaded-tiles img {
    height: 20vw;
  }

  .orange-bg-tab .nav-item {
    width: auto;
  }
}

@media(max-width: 457px) {
  .aspect-ratio-wrapper .form-check-inline {
    margin-right: 10px;
  }
  .file-drop-zone-title{
    padding: 2rem;
  }
}

@media(max-width: 451px) {
  .fixed-generate-btn-wrapper {
    bottom: 65px;
  }

  .purchased-text-overlay {
    height: calc(100% - 125px);
  }
}

/*@media(max-width: 391px) {
  .navbar-footer {
    font-size: 11px;
  }
}*/
@media(max-width: 402px) {
  .aspect-ratio-wrapper .form-check-inline {
    margin-right: 5px;
  }
}

@media(max-width: 413px) {
  .xs-mob-full-btn {
    width: 100%;
  }

  .file-opload-option {
    display: block !important;
  }
}

@media(max-width: 374px) {

  .file-opload-option .form-control,
  .file-opload-option .form-check-label {
    font-size: 12px;
  }

  .card .title {
    font-size: 14px;
  }
}

@media(max-width: 373px) {
  .aspect-ratio-wrapper .form-check-inline {
    margin-right: 15px;
  }

  .all-ratio-wrapper {
    display: flex;
    align-items: baseline;
    width: 100%;
    overflow: scroll;
  }
}

@media(max-width: 365px) {
  #creatNewModal .modal-footer button {
    min-width: 46%;
  }

  .search-public-scroll-wrapper {
    width: 280px;
  }
}