/* :root {
    --width-content: auto!important;
} */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* overflow-x: hidden; */
}

html {
  scroll-behavior: smooth;
}

.header-footer-editor-border {
  outline: 2px solid #002b42;
  z-index: 999;
}

.row-editor-border {
  outline: 2px solid rgb(0, 155, 245);
  z-index: 999;
}

.header-editor-border {
  outline: 2px solid black;
  outline-offset: 2px;
  z-index: 99999;
}

.footer-editor-border {
  outline: 2px solid black;
  outline-offset: 2px;
}

.element-editor-border {
  outline: 2px solid black;
  outline-offset: 2px;
  border-radius: 0px !important;

}

.colGroup-editor-border {
  outline: 2px solid #046ca9;
  outline-offset: 10px;

}

.col-editor-border {
  outline: 2px solid #4ec6ff;

}

.blocks-editor-border {
  outline: 2px solid #281e5d;

}

.block-editor-border {
  outline: 2px solid #022d36;

}


.top-bar-editor {
  font-family: "Open Sans", sans-serif;
  background-color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-size: 1rem !important;
  color: #323232 !important;

  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999999;
  animation: slideDown 0.5s ease-in-out forwards;
  -webkit-animation: slideDown 0.5s ease-in-out forwards;
  line-height: normal;
}

.top-bar-element-popup {
  display: none;
  position: absolute;
  top: 135%;
  /* Position the popup bar below the top-bar-element */
  left: 50;
  width: 150px;
  background-color: #fff;
  /* Background color of the popup bar */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 998;
  /* Ensure the popup bar is below the top bar editor */
  animation: slideDown 0.3s ease forwards;
  border-radius: 5px;
}

.top-bar-element {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center items horizontally */
  cursor: pointer;

  justify-content: center;
  height: 70px;
  padding-left: 1vw;
  padding-right: 1vw;
}

.line {
  width: 1px;
  height: 70px;
  /* Adjust height as needed */
  background-color: rgba(0, 0, 0, .05);
}

/* .top-bar-element:hover {
  background-color: white;
} */

.top-bar-element:hover .top-bar-element-text {
  color: #009bf5;
  text-shadow: none;
}

.top-bar-element:hover i:not(.toggle-restore-dropdown) {
  color: #009bf5;
}



.page-switch {
  padding-left: 0;
  padding-right: 0;
}

.page-switch:hover {
  background-color: unset;
}

.save {
  padding-left: 0;
  padding-right: 0;
}

.save:hover {
  background-color: unset;
}

.top-bar-element i {
  color: #046ca9;
  text-align: center;
}

.top-bar-element-text {
  font-size: 14px;
  color: #686868;
  font-weight: 600;
  cursor: pointer;
  word-spacing: 0.6px;
  margin-top: 5px;
  text-align: center;
}

.top-bar-element-first {
  display: flex;
  align-items: center;
  background: #046ca9;
  cursor: pointer;
}

.top-bar-element:last-child {
  margin-right: 15px;

}

.page-select {
  font-size: 14px;
}

.page-select-container {
  background-color: white;
  padding: 7px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  position: relative;
}

.page-select-container i {
  color: #046ca9;
}

.select-label {
  font-weight: 600;
}

.page-select-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-options {
  display: none;
  position: absolute;
  background-color: #fff;
  margin-top: -3px;
  padding: 5px 0;
  z-index: 1;
  list-style: none;
  width: 100%;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: shuffleSlideDown 0.5s ease forwards;
}

@keyframes shuffleSlideDown {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-options li {
  padding: 5px 10px;
}

.dropdown-options li:hover {
  background-color: #009bf5;
  color: white;
}

.save-button {
  background-color: #046ca9;
  font-size: 16px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1.2px;
  border-radius: 25px;
  padding: 10px 30px;
  /* Adjust box shadow as needed */
  border: 1px solid transparent;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.save-button:hover {
  background-color: white !important;
  color: #009bf5 !important;
  border: 1px solid #009bf5;
  /* Adjust box shadow as needed */
}

.fa-lg {
  line-height: unset;
}

.grow-image {
  animation-name: growImage;
  /* Assign animation name */
  animation-duration: 1.1s;
  /* Animation duration */
  animation-timing-function: ease;
  /* Animation timing function */
  animation-fill-mode: forwards;
  /* Keeps the image in its final state after the animation */
  padding-left: 20px;
  margin-right: 30px;
}

@keyframes growImage {
  0% {
    transform: scale(0);
    /* Initial scale */
  }

  100% {
    transform: scale(1);
    /* Scale up to 120% */
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Define animation keyframes */
@keyframes slideInLeft {
  0% {
    left: -250px;
  }

  /* Start from off-screen left */
  100% {
    left: 0;
  }

  /* End at the specified position */
}

@keyframes slideInRight {
  0% {
    right: -250px;
  }

  /* Start from off-screen right */
  100% {
    right: 0;
  }

  /* End at the specified position */
}

.sidebar-left,
.sidebar-right {
  font-family: "Open Sans", sans-serif;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;

}

.sidebar-left {
  background-color: #046ca9;
  z-index: 99999999;
  top: 80px;
  width: 250px;
  left: -250px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 15px 30px 15px 30px;
  position: fixed;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sidebar-left.show {
  display: block;
  animation: slideInLeft 0.5s ease forwards;
}

.sidebar-left.hide {
  animation: slideOutLeft 0.8s ease forwards;
}

@keyframes slideOutLeft {
  from {
    left: 0;
    /* Start from current position */
  }

  to {
    left: -250px;
    /* Move out of view */
  }
}

.sidebar-right {

  font-size: 16px !important;
  top: 100px;
  border-radius: 10px;

  right: -25px;
  width: 251px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 0 8px 25px rgba(0, 0, 0, 0.2), 0 12px 35px rgba(0, 0, 0, 0.15);
  padding: 0px 0px 0px 0px;
  position: fixed;
  opacity: 1;
  transition: opacity 0.8s ease;
  font-weight: normal !important;

  color: rgba(50, 50, 50) !important;
  text-align: left !important;
  font-style: normal !important;
  font-weight: normal !important;
  text-decoration: none !important;
  line-height: 1.5 !important;
  z-index: 99999999;


}

.sidebar-right.show {
  display: block;
  animation: slideInRight 0.8s ease forwards;

}

.sidebar-right.hide {
  animation: slideOutRight 0.8s ease forwards;
  opacity: 0;
  /* Set opacity to 0 when hiding */
  pointer-events: none;
}

@keyframes slideOutRight {
  from {
    right: 0;
    /* Start from current position */
  }

  to {
    right: -251px;
    /* Move out of view */
  }
}

.sidebar-right h3 {
  margin-top: 0;
  /* Remove default margin from the heading */
  margin-bottom: 10px;
  /* Add spacing below the heading */
  text-align: center;
  /* Center the heading horizontally */
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.sidebar-right h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;

  margin-top: 0;
  /* Remove default margin from the heading */
  margin-bottom: 10px;
  /* Add spacing below the heading */
  text-align: center;
  /* Center the heading horizontally */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);

  /* background-color: white; */
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); */
}

.sidebar-right .header-line {
  width: 100%;
  left: 0px;
  height: 4px;
  margin-top: -5px;
  border: 0;
  position: absolute;

}

.sidebar-right hr {
  padding-bottom: 0px !important;
  border: 1px solid white !important;
  pointer-events: none;


}



.sidebar-right .header {
  cursor: move;
  /* padding: 10px 20px 15px 25px; */
  padding: 10px 15px 15px 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .sidebar-right span {
  font-size: 16px;
  color: white;
  font-weight: 600;
  cursor: pointer;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  word-spacing: 0.6px;
  
  display: flex;

  margin-top: 30px;
} */

.sidebar-right-settings {
  padding-top: 10px;
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgba(239, 248, 255, 0.5);

  opacity: 0.2;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(167, 216, 255, 0.8);

}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(135, 195, 255, 0.8);

}

.html-markup-container {
  cursor: pointer;
  margin: 115px 40px 40px 40px;
  margin-top: 115px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;

}


.accordion-item {
  font-size: 15px;
  position: relative;
  animation: fadeIn 1s ease-in-out forwards;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;

  }

  to {
    opacity: 1;
    /* Fully opaque */
  }
}

.accordion-header {
  font-size: 16px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
  /* Adjust the value as needed */

  display: flex;
  justify-content: space-between;

  align-items: center;
}

.sidebar-left .accordion-header {
  padding-left: 5px;
  padding-right: 5px;
}



.accordion-header:hover+.comic-style-popup {
  display: block;
}

.arrow {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.rotated {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  transition: max-height 0.8s ease;
  padding-left: 10px;
  padding-right: 10px;
}




/* .layout-accordion {
  font-size: 0px;
} */


.image-container {
  border-radius: 3px;
  /* font-size: 0px; */
  position: relative;
  display: flex;
  /* overflow: hidden; */
  margin-bottom: 25px;
  /* margin-top: 20px; */
  background-color: white;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

  opacity: 0;

  transition: opacity 0.3s ease;
  cursor: pointer;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  opacity: 0;

  transition: opacity 0.3s ease;
  cursor: pointer;
}

.image-container:hover .image-overlay {
  opacity: 1;
  /* Show overlay on hover */
}

.image-container:hover .overlay-text {
  opacity: 1;
  /* Show text on hover */
}


.elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* Center the elements horizontally */
  /* padding-bottom: 15px; */
}

.elements .element {
  font-size: 15px;
  margin: 5px;
  /* Adjust margin as needed for spacing between elements */
  width: 40px;
  /* Max width to prevent overflow */
  text-align: center;
  /* Center the content horizontally */
  /* You can add other styling properties here */
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.elements .element-button {
  width: unset;
  /* 33.33% width for 3 elements per row, minus margins */
  max-width: unset;
  margin: 5px;
  /* Adjust margin as needed for spacing between elements */
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  /* Use Flexbox layout */
  justify-content: center;
  /* Center the content horizontally */
  align-items: center;
}

.element-accordion {
  width: 40px !important;
  font-size: 0px !important;
}

.element-accordion:hover img {
  filter: invert(1);
}


.element:hover {
  color: white;
}

.element-button:hover rect {
  fill: white;
}

.element-button:hover text {
  fill: black;
}

.element:hover {
  background-color: #009bf5;
}

.element:hover i {
  color: white;
}

.sidebar-content {
  animation: fadeIn 1s ease-in-out forwards;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 69, 108, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999999;

}

.loading-overlay i {
  color: white;
  font-size: 40px;
  margin-left: 15px;
  margin-top: 5px;
}



.loading-overlay-duplicate {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 69, 108, 1);
  /* semi-transparent white background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999999;
  /* ensure it's on top of other content */
}

.loading-overlay-inner-duplicate {
  text-align: center;
  text-align: center;
  display: flex;
  /* Set to flex container */
  flex-direction: column;
  /* Align children vertically */
  align-items: center;
}

.loading-overlay-inner-duplicate div {
  justify-content: center;
  display: flex;
  /* Set to flex container */
  align-items: center;
  /* Center horizontally */
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  margin-top: 10px;

  font-weight: 600;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.row-settings {
  position: absolute;
  display: none;
  background-color: #009bf5;
  opacity: 0;
  text-align: left !important;
  transition: opacity 0.5s ease;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 16px !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-decoration: none !important;
  top: 50%;
  transform: translateY(-50%);
  right: -36px;
  z-index: 999999999;

}

.row-settings i {
  color: white;
  display: block;
  padding: 10px;
  cursor: pointer;
}

.row-settings i:hover {
  color: #046ca9;
  background-color: white;
}

.row-settings-left {

  position: absolute;
  display: none;
  background-color: #009bf5;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left !important;
  font-style: normal !important;
  text-decoration: none !important;
}

.row-settings-left i {
  color: white;
  display: block;

  padding: 10px;
  cursor: pointer;
}

.row-settings-left i:hover {
  color: #046ca9;
  background-color: white;
}

.header-footer-settings {
  /* height: fit-content; */
  position: absolute;
  display: none;
  background-color: #002b42;
  opacity: 0;
  text-align: left !important;
  transition: opacity 0.5s ease;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 16px !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-decoration: none !important;
  top: 50%;
  transform: translateY(-50%);
  /* bottom: -2px; */

  /* top: 50%;
  transform: translateY(30%); */
  right: -36px;
  z-index: 999;
}






.header-footer-settings i {
  color: white;
  display: block;

  padding: 10px;
  cursor: pointer;
}

.header-footer-settings i:hover {
  color: #009bf5;
  background-color: white;
}

/* .header-settings-left {
  position: absolute;
  display: none;
  background-color: black;
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left !important;
  font-style: normal !important;
  text-decoration: none !important;
}

.header-settings-left i {
  color: white;
  display: block;

  padding: 10px;
  cursor: pointer;
}

.header-settings-left i:hover {
  color: #009bf5;
  background-color: white;
} */

/* .footer-settings {
  position: absolute;
  display: none;
  background-color: black;
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left !important;
  font-style: normal !important;
  text-decoration: none !important;
}

.footer-settings i {
  color: white;
  display: block;

  padding: 10px;
  cursor: pointer;
}

.footer-settings i:hover {
  color: #009bf5;
  background-color: white;
}

.footer-settings-left {
  position: absolute;
  display: none;
  background-color: black;
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left !important;
  font-style: normal !important;
  text-decoration: none !important;
}

.footer-settings-left i {
  color: white;
  display: block;

  padding: 10px;
  cursor: pointer;
}

.footer-settings-left i:hover {
  color: #009bf5;
  background-color: white;
} */

.placeholder-row {
  background-color: #009bf5;
  color: white;
  text-align: center;
  padding: 50px;
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out forwards;
}

.placeholder-text {
  margin: 0;
  padding: 50px;
  border: 2px dashed white;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;

  font-weight: 600;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.placeholder-div {
  border: 2px dashed white;
  margin: 4px 0;
  background-color: #009bf5;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;

  font-weight: normal !important;
  font-style: normal !important;


}

.placeholder-div-text {
  padding: 10px;

}


.video {
  padding: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* .fade-in {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
} */

.wf-row {
  transition: transform 0.3s ease-out;
}

.cloned-animation {
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.colGroup-settings {
  display: flex;
  position: absolute;
  background-color: #046ca9;
  opacity: 0;
  transition: opacity 0.8s ease;
  top: -50px;
  right: 0px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;

  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left !important;
  font-style: normal !important;
  text-decoration: none !important;
  z-index: 99;
}

.colGroup-settings i {
  color: white;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
}

.colGroup-settings i:hover {
  color: #009bf5;
  background-color: white;
}





.col-settings {
  position: absolute;
  background-color: #4ec6ff;
  opacity: 0;
  transition: opacity 0.5s ease;
  right: -31px;
  top: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 99999999999;
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left !important;
  font-style: normal !important;
  text-decoration: none !important;
}

.col-settings i {
  color: white;
  display: block;
  padding: 12px 6px 12px 6px;
  cursor: pointer;

}

.col-settings .fa-arrow-up-big-small {
  border-top-left-radius: 5px;
}



.col-settings .fa-trash {
  border-bottom-left-radius: 5px;
}

.col-settings .fa-brush {
  padding-left: 7px;
}

.col-settings i:hover {

  color: white;
  background-color: #046ca9;
}

.blocks-settings {
  position: absolute;
  background-color: #281e5d;
  opacity: 0;
  transition: opacity 0.8s ease;
  top: -38px;
  left: 0px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;

  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left !important;
  font-style: normal !important;
  text-decoration: none !important;
  z-index: 99;
}

.blocks-settings i {
  color: white;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
}

.blocks-settings i:hover {
  color: #009bf5;
  background-color: white;
}



.block-settings {

  position: absolute;
  background-color: #022d36;
  opacity: 0;
  transition: opacity 0.5s ease;
  top: -2px;
  left: -26px;

  border-top-left-radius: 5px;

  border-bottom-left-radius: 5px;

  font-size: 16px !important;
  font-weight: normal !important;
  text-align: left !important;
  font-style: normal !important;
  text-decoration: none !important;
  z-index: 9999;

}

.block-settings i {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0px;
  color: white;
  display: block;
  padding: 12px 6px 12px 6px;
  cursor: pointer;
}

.block-settings i:hover {

  color: #009bf5;
  background-color: black;
}


.html-markup-container i {
  /* z-index: 999999; */
  position: relative;
}



.element-settings {

  position: absolute;
  background-color: black;
  opacity: 0;
  transition: opacity 0.5s ease;
  margin-left: -4px;
  margin-top: 4px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  z-index: 999;
  display: flex;

  font-size: 13px !important;
  font-weight: normal !important;
  text-align: center !important;
  font-style: normal !important;
  text-decoration: none !important;
  line-height: 1.5 !important;
}

.element-settings i {
  color: white !important;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
}

.element-settings i:hover {
  /* border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px; */
  color: white !important;
  background-color: #046ca9;
}

.element-settings .ai-tools-icon{
  padding-top: 1px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
}

.element-settings .ai-tools-icon img  {
  max-width: 17px;
}

.col-settings .ai-tools-icon {
  padding-top: 1px;
  padding-bottom: 5px;
 
}

.col-settings .ai-tools-icon img {
  max-width: 22px;
}

.html-markup-container hr {
  padding-bottom: 15px;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
}

.wf-img {
  position: relative;
  /* z-index: 9; */

}


.wf-btn {
  position: relative;

}

.active-button {
  background-color: #046ca9;
  color: white;
  /* border-radius: 5px; */

}

.advanced-section {
  padding-left: 10px;
  padding-right: 10px;


}

/* .advanced-section label {
  font-size: 13px !important;
} */

.attributes-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;


  padding: 20px 15px 0px 15px;
}

.animation-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;


  padding: 10px 15px 0px 15px;
}

.change-id {
  display: flex;
  flex-direction: column;
  align-items: flex-start;


  padding: 10px 15px 5px 15px;
}

.sidebar-right .accordion-item {

  font-size: 16px;

}

.sidebar-right .accordion-header {
  padding: 5px 15px 5px 15px;
  margin-bottom: 0px;

}

.sidebar-right label {
  font-size: 16px;
  margin-right: 10px;
  color: white;
  margin-bottom: 5px;

  font-weight: 600;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
}

.sidebar-right input {
  width: 100%;
  padding: 5px;
  padding-left: 7px;
  padding-right: 7px;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.8);
  border: 0;
  box-sizing: border-box;
  font-size: 14px !important;
  line-height: 1.5 !important;
}


.change-id input:focus {
  outline: none;
}

.change-class {
  display: flex;
  flex-direction: column;
  align-items: flex-start;


  padding: 5px 15px 0px 15px;
  outline: none;
}

.class-pills {
  background-color: white;
  border-radius: 5px;
  padding: 3px;
  padding-left: 7px;
  padding-right: 7px;
  width: 100%;
  font-size: 13px;


}



.class-pills:focus {
  outline: none;

}



.class-pill {
  margin-right: 5px;
  padding-left: 5px;
  padding-right: 5px;
  display: ruby;
  border-radius: 30px;
  background-color: rgba(128, 128, 128, 0.2);
  color: rgba(0, 0, 0, 0.8);

}

.spacing-section {

  margin-top: -10px;
  padding: 5px 25px 5px 25px;


}

.spacing-section label {
  font-size: 14px;
}

.direction-buttons {
  padding-left: 25px;
}

.justify-buttons {
  display: flex;
  overflow-x: auto;
  width: 80%;
  /* justify-content: center; */
  margin: 0px 25px 15px 25px;

  padding-left: 0px;
  align-items: center;
}

.justify-buttons::-webkit-scrollbar {
  height: 5px;
}

.justify-button {
  white-space: nowrap;
  margin-bottom: 5px;


}

.align-button {
  white-space: nowrap;
  margin-bottom: 5px;

}

.sidebar-right .accordion-content {
  padding: 0px;
}

.margin-slider {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.padding-slider {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.slider-value {
  font-size: 12px;
  position: absolute;
  left: 69px;
  margin-bottom: 30px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);


}

.margin-slider label {
  margin-right: 10px;
}

.padding-slider label {
  margin-right: 10px;
}


.background-section {


  padding: 5px 25px 5px 25px;
  display: flex;
  /* Use flexbox to align items in a row */
  align-items: center;
  justify-content: space-between;


}

.background-type-buttons {
  background-color: rgba(255, 255, 255, 0.5);

  border-radius: 5px;


}

.background-section label {
  font-size: 14px;

}

.background-type-buttons i {

  display: inline-block;
  padding: 9px;
  cursor: pointer;
}

.background-type-buttons i:hover,
.background-type-buttons .button-wrapper:hover {
  background-color: white;
  border-radius: 5px;
}

.active-background-button {
  background-color: white;
  color: black !important;
  border-radius: 5px;

  --fa-primary-color: black !important;
  --fa-secondary-color: black !important;
}

.background-type-buttons .button-wrapper {
  padding-top: 5px;
  padding-bottom: 2px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}

.background-type-buttons img {

  margin-bottom: -1px;
  width: 0.9em !important;
  border-radius: 2px !important;
}


.right-sidebar-accordion-content {

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
  padding-left: 15px;
  padding-right: 20px;
}

.right-sidebar-accordion-content .image-option-wrapper {
  padding-top: 15px;
  display: flex;
  align-items: flex-start;
}

.right-sidebar-accordion-content .image-option-wrapper label {
  font-size: 14px;
  padding-left: 10px;
}

.right-sidebar-accordion-content .background-image-container {
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  align-items: end;

}

.right-sidebar-accordion-content .background-image-container img {
  border-radius: 5px;
  float: right;

}

.choose-image-button {
  outline: none !important;
  font-family: 'Open Sans', sans-serif;
  margin-top: 5px;
  margin-right: 4px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;

  font-size: 12px;
  font-weight: 600;

  border-radius: 5px;

  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.choose-image-button:hover {
  background-color: white;
}




.background-size-buttons {
  background-color: rgba(255, 255, 255, 0.5);

  border-radius: 5px;


}

.background-size-buttons label {
  font-size: 12px !important;
  color: rgba(0, 0, 0, 0.9);
  text-shadow: unset;
  font-size: 13px;
  margin: 0px;
  display: inline-block;
  padding: 5px;
  padding-left: 7px !important;
  padding-right: 7px !important;
  cursor: pointer;
}


.background-size-buttons label:hover {
  background-color: white;
  border-radius: 5px;
}

.background-size-buttons .active-size {
  background-color: white;
  border-radius: 5px;
}

.right-sidebar-accordion-content .size-option-wrapper {
  padding-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-evenly;

}

.right-sidebar-accordion-content .size-option-wrapper label {
  font-size: 14px;
  padding-left: 10px;
}


.background-image-overlay {
  position: relative;
  width: 65%;
  margin-right: 7px;
  border-radius: 5px;

}

.background-image-overlay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.background-image-overlay:hover::before {
  background-color: black;
  opacity: 0.6;
}

.background-image-overlay.no-hover:hover::before {
  display: none;
}

.background-remove-icon {
  display: none;
  position: absolute !important;
  top: 2px;
  right: 2px;
  z-index: 2;
  cursor: pointer;
}

.background-image-overlay:hover .background-remove-icon {
  display: block;
  opacity: 1;
}


.right-sidebar-accordion-content .overlay-option-wrapper {
  padding-top: 10px;
  display: flex;
  align-items: center;
  padding-left: 3px;
  padding-right: 3px;
  justify-content: space-between;


}

.overlay-option-wrapper label {
  margin-bottom: 0px !important;
}

.right-sidebar-accordion-content .overlay-option-wrapper label {
  font-size: 14px;
  padding-left: 10px;
  margin-right: 5px !important;
}


.pickr button {

  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid white !important;
  font-size: unset !important;

}




.background-image-overlay-color-picker .color-picker {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  border: none;
  padding: 0;
  left: 10px;
  top: -3px;
  margin: -1px;
  /* Helps to remove the element from the flow without affecting layout */
  overflow: hidden;
}

.background-color-picker .color-picker {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  border: none;
  padding: 0;
  left: 10px;
  bottom: 50px;
  margin: -1px;
  /* Helps to remove the element from the flow without affecting layout */
  overflow: hidden;
}


.right-sidebar-accordion-content .background-color-wrapper {
  padding-top: 10px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-around;

}



.right-sidebar-accordion-content .background-color-wrapper label {
  font-size: 14px;
  margin-right: 0px !important;
  margin-bottom: 0px !important;

}


.right-sidebar-accordion-content .background-color-opacity-wrapper {
  padding-top: 10px;
  display: flex;

  align-items: center;
  padding-left: 3px;
  padding-right: 10px;


}

.right-sidebar-accordion-content .background-color-opacity-wrapper label {
  font-size: 14px;
  padding-left: 10px;
  margin-right: 5px !important;

}



.border-section {


  padding: 5px 25px 5px 25px;



}


.border-section label {
  font-size: 14px;
  margin-bottom: 0px !important;

}


.active-border-button {
  background-color: white;
  border-radius: 5px;
}

.border-radius-section {

  display: flex;
  /* Use flexbox to align items in a row */
  align-items: center;
  justify-content: space-between;


}

.border-radius-section i {
  display: inline-block;
  padding: 6px;
  cursor: pointer;
  margin-right: 3px;

}


.border-radius-section i:hover {
  background-color: white;
  color: black !important;
  border-radius: 5px;
}


.border-radius-accordion-content {

  max-height: 0;
  /* overflow: hidden; */
  transition: max-height 0.8s ease;
  padding-left: 15px;
  padding-right: 20px;
}



.border-radius-slider {
  display: grid;
  align-items: center;
  padding-left: 45px;
}

.border-radius-slider label {
  margin-right: 10px;
  font-size: 12px;
}


#border-radius-accordion {
  padding-right: 0;
}


.borders-section {
  padding-top: 10px;

  display: flex;
  /* Use flexbox to align items in a row */
  align-items: center;
  justify-content: flex-start;


}


.borders-section i {
  cursor: pointer;

  margin-left: 0px;
  margin-right: 2px;
  padding: 5px;


}

.borders-section i:hover {

  background-color: white;
  border-radius: 5px;
  --fa-primary-color: black !important;
  --fa-secondary-color: black !important;
  color: black !important;


}

.seperate-borders i {

  padding: 5px;

  margin: 0;

}

/* .border-radius-section i {
  display: inline-block;
  padding: 6px;
  cursor: pointer;
  margin-right: 3px;
  
}


.border-radius-section i:hover {
  background-color: white;
  color: black!important;
  border-radius: 5px;
} */

#border-all-accordion {
  padding-right: 0;
  padding-left: 10px;
}

.border-style {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.border-width {
  padding-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.border-color {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.border-style-buttons {
  background-color: rgba(255, 255, 255, 0.5);

  border-radius: 5px;


}


.border-style-buttons .button-wrapper {
  padding-top: 5px;

  display: inline-block;
  padding-left: 2px;
  padding-right: 2px;
  cursor: pointer;
}

.border-style-buttons img {
  object-fit: unset !important;
  margin-bottom: -3px;
  height: 1.1em !important;
  width: 1.1em !important;
  font-size: 20px;
  border-radius: 2px;
  display: inline-block !important;
}

.active-button-wrapper {
  background-color: white;
  border-radius: 5px;
}


.active-border-button {
  background-color: white;
  color: black !important;
  border-radius: 5px;

  --fa-primary-color: black !important;
  --fa-secondary-color: black !important;
}

#border-top-accordion {
  padding-right: 0;
  padding-left: 10px;
}

#border-bottom-accordion {
  padding-right: 0;
  padding-left: 10px;
}

#border-left-accordion {
  padding-right: 0;
  padding-left: 10px;
}

#border-right-accordion {
  padding-right: 0;
  padding-left: 10px;
}


.typography-section {


  padding: 5px 25px 5px 25px;



}


.typography-section label {
  font-size: 14px;
  margin-bottom: 0px !important;

}

.font-section {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  position: relative;
  padding-left: 5px;
}

.font-select-container {
  background-color: white;
  padding: 5px;
  padding-left: 9px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  font-size: 13px;
  min-width: 200px;



}

.sidebar-right .font-select-container {
  min-width: unset !important;
}

/* .font-select-dropdown {
  max-width: 135px;
} */

.selected-font {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* or inline-block, depending on your layout */
  max-width: 100%;
  /* Adjust this as needed */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.font-select-container i {

  padding-left: 6px;
  padding-right: 3px;
}


.dropdown-font-options {
  left: 0;
  cursor: pointer;
  display: none;
  position: absolute;
  background-color: #fff;
  margin-top: 0px;
  padding: 5px 0;
  z-index: 1;
  list-style: none;
  width: 100%;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: shuffleSlideDown 0.5s ease forwards;
  max-height: 200px;
  /* Set a maximum height */

  overflow-y: auto;
  overflow-x: hidden;
  outline: none !important;
}


.dropdown-font-options li {
  padding: 5px 10px;
}

.dropdown-font-options li:hover {
  background-color: #009bf5;
  color: white;
}



.font-weight-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 5px;
  padding-top: 10px;
}

.font-weight-container {
  background-color: white;
  padding: 5px;
  padding-left: 9px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  font-size: 13px;



}

.font-weight-dropdown {
  max-width: 135px;
}

.selected-font-weight {
  display: block;
  /* or inline-block, depending on your layout */
  max-width: 100%;
  /* Adjust this as needed */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.font-weight-container i {

  padding-left: 6px;
  padding-right: 3px;
}


.dropdown-font-weight-options {
  left: 0;
  cursor: pointer;
  display: none;
  position: absolute;
  background-color: #fff;
  margin-top: 0px;
  padding: 5px 0;
  z-index: 1;
  list-style: none;
  width: 100%;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: shuffleSlideDown 0.5s ease forwards;
  outline: none !important;

}


.dropdown-font-weight-options li {
  padding: 5px 10px;
}

.dropdown-font-weight-options li:hover {
  background-color: #009bf5;
  color: white;
}


.font-size-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 5px;
  padding-top: 3px;

}

.font-size-section label {
  padding-bottom: 5px;
}

.font-color-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5px;
}

.font-color-picker .color-picker {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  border: none;
  padding: 0;
  left: 10px;
  bottom: 295px;
  margin: -1px;

  overflow: hidden;
}

.text-align-section {
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5px;
}

.text-align-buttons i {
  cursor: pointer;

  padding: 5px;

  margin: 0;
}

.text-align-buttons i:hover {

  background-color: white;
  border-radius: 5px;
  color: black !important;
}


.active-align-button {
  background-color: white;
  border-radius: 5px;
  color: black !important;

}




.text-style-section {
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5px;
}

.text-style-section i {
  cursor: pointer;

  padding: 5px;

  margin: 0;
}

.text-style-section i:hover {

  background-color: white;
  border-radius: 5px;
  color: black !important;
}

.active-decoration-button {
  background-color: white;
  border-radius: 5px;
  color: black !important;

}

.text-decoration-color {
  display: flex;

  padding-top: 10px;
  padding-left: 5px;
  align-items: flex-start;

  justify-content: flex-end;
}


.text-decoration-color-picker .color-picker {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  border: none;
  padding: 0;
  left: 10px;
  bottom: 295px;
  margin: -1px;

  overflow: hidden;
}

#text-decoration-color-accordion {
  padding-right: 0;
  padding-left: 0;
}


.accordion-images .accordion-content {
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: space-between;
  /* This will space out the items evenly */
}

.accordion-images .accordion-item {
  flex: 1;
  /* This allows items to grow and fill the space */
  min-width: calc(50% - 10px);
  /* Adjust the 10px to account for any margin or padding you want between items */
  margin-bottom: 20px;
  /* Optional: Adds space between rows */
}



.accordion-images img {
  cursor: pointer;
  transform: none !important;
  padding: 5px;
  border-radius: 10px !important;
  object-fit: cover;
  width: 80px;
  height: 80px;




}


.content-item {
  color: white;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  margin-bottom: 10px;

}

.content-item:hover .delete-icon {
  display: inline-block;
}

.delete-icon {
  margin-left: 5px;
  display: none;
}

.wf-img-container {
  position: relative;
  display: inline-block;
  margin-top: 12px;
}

.wf-img-container:hover .delete-image-icon {
  display: block;

}


.delete-image-icon {
  display: none;
  position: absolute;
  top: -5px;
  right: 5px;
  color: #ffffff;
  cursor: pointer;
}




.content-options {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 10px;

  margin-top: 15px;
  width: 191px;
}

#images-folder {
  text-align: center;
}

.image-options {
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 10px;
  margin-top: 5px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 191px;
}

.image-options img {
  cursor: pointer;

  object-fit: unset;
  width: unset;
  height: unset;
}

.website-search {
  display: flex;
  align-items: center;

}

.adobe-search {
  display: flex;
  align-items: center;

}

.content-block {
  padding-right: 5px;
  padding-left: 5px;
  overflow-x: hidden;


}

.content-select {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 10px;
}

.content-select i {
  cursor: pointer;
  color: white;
  padding: 10px;
  margin-right: 5px;
}

.content-select i:hover {
  background-color: white;
  color: #009bf5;
  border-radius: 5px;

}

.content-select img {

  width: 35px;
  height: 35px;
}

.content-select-wrapper {
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

}

.content-select-wrapper:hover {
  background-color: white;
  border-radius: 5px;
}



.active-content-select {
  background-color: white;
  color: #009bf5 !important;
  border-radius: 5px;
}

.website-url {

  width: 155px;
  flex-grow: 0;
  padding: 8px;
  border: 1px solid #ccc;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  outline: none;
}

.website-search-button {
  cursor: pointer;
  background-color: #009bf5;
  color: white;
  padding: 9px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.website-search-button:hover {

  color: #009bf5 !important;
  background-color: white !important;

}

.wireframe-row-style {

  background-image: url('assets/wireframe-image.png') !important;
}

.wireframe-text-style {
  color: transparent !important;

  background: #d6d6d6 !important;
  display: inline-block;

}


.wireframe-element-style {
  color: transparent !important;

  background: #BEBDBD !important;
}

.wireframe-column-style {
  background-color: rgba(190, 189, 189, 0.2) !important;
}

.wireframe-button-style {
  background-color: #7C7C7C !important;
  color: #7C7C7C !important;
}

.upload-pdf-button {
  font-family: 'Open Sans', sans-serif;

  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.upload-pdf-button:hover {
  background-color: white;

}

.upload-pdf-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wireframe-icon {
  background-image: url('assets/wireframe-icon-n.png');
}

.wireframe-button:hover .wireframe-icon {
  background-image: url('assets/wireframe-icon-hvr.png');
}

.wireframe-active .wireframe-icon {
  background-image: url('assets/wireframe-icon-hvr.png');
}


.column-group-layout {
  background-color: #046ca9;
  z-index: 99999999;
  bottom: 50px;
  left: -250px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 15px 30px 15px 30px;
  position: fixed;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: none;
  font-family: "Open Sans", sans-serif;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  text-align: center;
}

.active-column-layout {
  background-color: #002b42 !important;
}


.column-group-layout.show {
  display: block;
  animation: slideInLeft 0.5s ease forwards;
}

.column-group-layout.hide {
  animation: slideOutLeft 0.8s ease forwards;
}

.column-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding-top: 10px;
  padding-bottom: 10px;

  border-radius: 5px;
  margin-top: 15px;

  cursor: pointer;
}

.column-layout:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.column-group-layout label {
  font-size: 15px;
  color: white;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
}

/* 
.column-proportions {
  margin-top: 10px;
} */

.column-proportions label {
  font-size: 13px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
  text-align: center;
  display: block;
  margin-top: 2px;

}


.column-proportions-three-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 250px;

}

.column-layout-group {
  width: 48%;
  text-align: center;
  margin-bottom: 10px;
}

.column-layout-group img {
  max-width: 100%;
  height: auto;
}

.column-layout-group label {
  display: block;
  margin-top: 10px;
}

.column-layout-group .column-layout {
  padding-left: 10px;
  padding-right: 10px;
}

.column-proportions-four-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 350px;

}

.column-proportions-four-columns .column-layout-group {
  width: 31%;
  text-align: center;
  margin-bottom: 10px;
}


.margin-select-buttons {

  display: flex;
  overflow-x: auto;
  width: 80%;
  /* justify-content: center; */
  margin: 5px 25px 5px 25px;
  margin-bottom: 10px;


}

.margin-select-buttons::-webkit-scrollbar {
  height: 5px;
}

.margin-size-btn {
  flex-basis: 25%;

  font-size: 13px;
  color: white;
  font-weight: 600;
  margin: 5px;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 5px 10px 5px 10px;
  border-radius: 15px;
}

.margin-size-btn:hover {
  background-color: white;
  color: #046ca9;
}

.margin-label {
  font-size: 14px !important;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
  padding: 5px 25px 5px 25px;


}



.padding-select-buttons::-webkit-scrollbar {
  height: 5px;
}


.padding-select-buttons {

  display: flex;
  overflow-x: auto;
  width: 80%;
  /* justify-content: center; */
  margin: 5px 25px 5px 25px;
  margin-bottom: 10px;



}

.padding-size-btn {
  flex-basis: 25%;

  font-size: 13px;
  color: white;
  font-weight: 600;
  margin: 5px;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 5px 10px 5px 10px;
  border-radius: 15px;
}

.padding-size-btn:hover {
  background-color: white;
  color: #046ca9;
}

.padding-label {
  font-size: 14px !important;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
  padding: 5px 25px 5px 25px;


}

.wf-img.drag-over-overlay {
  position: relative;
}

.wf-img.drag-over-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 155, 245, 0.5);

  border-radius: 5px;
}

.settings-container {
  font-family: "Open Sans", sans-serif;
  position: fixed;
  width: 550px;
  background-color: #046ca9;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;

  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.12);

  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.4s ease;
  max-height: 0;

  z-index: 99999999;


}

/* .settings-container .accordion-content {
  margin-top: -10px;
} */

.settings-container.open {
  position: fixed;
  max-height: 875px;
  overflow-y: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 20px;

}

.settings-container label {

  font-size: 16px;
  /* margin-right: 10px; */
  color: white;
  /* margin-bottom: 5px; */

  font-weight: 600;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;

}


.content-options-container {
  font-family: "Open Sans", sans-serif;
  position: fixed;
  width: 250px;
  background-color: #046ca9;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;

  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.12);

  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.4s ease;
  max-height: 0;

  z-index: 99999999;


}

.content-options-container.open {
  position: fixed;
  max-height: 640px;
  overflow-y: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 20px;

}

.ai-tools-container {
  font-family: "Open Sans", sans-serif;
  position: fixed;
  width: 200px;
  background-color: #046ca9;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;

  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.12);

  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.4s ease;
  max-height: 0;

  z-index: 99999999;
}

.ai-tools-container.open {
  position: fixed;
  max-height: 640px;
  overflow-y: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.ai-tools-container .choose-logo-button {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-bottom: 10px;
}

.ai-tools-container .choose-logo-button:last-child {
  margin-bottom: 0;
}


.preview-options-container {
  font-family: "Open Sans", sans-serif;
  position: fixed;
  width: 270px;
  background-color: #046ca9;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;

  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.12);

  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.4s ease;
  max-height: 0;

  z-index: 99999999;


}

.preview-options-container.open {
  position: fixed;
  max-height: 640px;
  overflow-y: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 15px;

}



.logo-option-wrapper {

  display: flex;
  align-items: flex-start;
  justify-content: center;

}

.logo-option-wrapper label {
  font-size: 14px;
  padding-left: 10px;
}

.logo-container {
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.logo-container img {
  border-radius: 5px;

  width: 50%;

}

.choose-logo-button {
  outline: none !important;
  font-family: 'Open Sans', sans-serif;
  margin-top: 7px;
  margin-right: 4px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;

  font-size: 11px;
  font-weight: 600;

  border-radius: 5px;

  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.choose-logo-button:hover {
  background-color: white;
}

.logo-select-options {
  margin-top: 5px;
}

.wf-col--logo .element-settings {
  bottom: -25px;
}

.logo-colors {
  animation: fadeIn 0.5s ease-out;

  flex-wrap: wrap;
  justify-content: center;

}

.drag-over-background-image {
  background-image: url('assets/wireframe-image.png') !important;
  background-size: cover !important;
  animation: fadeIn 0.5s ease;
}

.drag-over-database-video {
  background-image: url('assets/vecteezy_camera-icon-video-icon-on-transparent-background_14455850.png') !important;
  background-size: contain !important;
  animation: fadeIn 0.5s ease;
}



.icons-container {
  background-color: #046ca9;
  z-index: 99999999;
  top: 50%;
  left: -250px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 15px 30px 15px 30px;
  position: fixed;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: none;
  font-family: "Open Sans", sans-serif;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  text-align: center;
  width: 250px;

}

.icons-container i {
  color: white;

}

.icons-container label {
  font-size: 15px;
  color: white;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;

}


.icons-container.show {
  display: block;
  animation: slideInLeft 0.5s ease forwards;
}

.icons-container.hide {
  animation: slideOutLeft 0.8s ease forwards;
}

.icon-results {
  max-height: 0;
  overflow-y: hidden;
  overflow-x: hidden;

  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: max-height 0.7s ease-out;

}


.icon-search-button {
  cursor: pointer;
  background-color: #009bf5;
  color: white;
  padding: 8.5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.icon-search-button:hover {

  color: #009bf5 !important;
  background-color: white !important;

}

.icon-search {
  display: flex;
  align-items: center;
  margin-top: 10px;

}

.icon-results i {
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.icon-results i:hover {
  color: #009bf5;
  background-color: white;

}

.sidebar-right i {
  font-weight: 900 !important;
  font-size: unset !important;
  width: unset !important;
}

.element-settings i {
  font-weight: 900 !important;

}

.element-settings i {
  font-size: 0.75em !important;
  width: unset !important;
}

a .element-settings {
  bottom: -25px;
  margin-top: 0px;
}

button .element-settings {
  margin-top: 0px;
  bottom: -25px;
}

i .element-settings {
  display: flex;

}



.color-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding-bottom: 10px;
}

.global-colors {
  /* padding-top: 5px; */
  padding-right: 10px;
  padding-left: 15px;
  text-align: end;

}

.global-colors label {
  font-size: 14px;
  margin-right: 0px;
  letter-spacing: 0;
}

.global-colors .color-picker {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  border: none;
  padding: 0;
  left: -235px;
  top: 5px;
  margin: -1px;
  overflow: hidden;
}



/* 
[contenteditable="true"]:empty:before {
  content: attr(placeholder);
  display: block; 
  color: grey;
} */


/* 
p[contenteditable="true"]:empty:before {
  content: attr(placeholder) "Type here...";
  display: block;
  color: grey;

  min-height: 20px; 
} */

.image-database-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.delete-content-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.animation-select-buttons {
  width: 100%;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;


}

.animation-select-buttons::-webkit-scrollbar {
  height: 5px;
}


.animation-btn {


  font-size: 12px;
  color: white;
  font-weight: 600;
  margin: 5px;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 5px 10px 5px 10px;
  border-radius: 15px;
}

.animation-btn:hover {
  background-color: white;
  color: #046ca9;
}



.data-attribute {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 5px;
  padding-left: 10px;

}

.data-attributes-container {
  padding-top: 5px;
}

.data-attribute-info {

  font-size: 10px !important;
  font-style: italic;
  margin-left: 10px;
  margin-bottom: -15px;
}

.data-attribute label {
  font-size: 12px !important;
  margin-bottom: 0px;


}

.data-attribute input:focus {
  outline: none;
}

.data-attribute input {
  padding: 5px;
  width: 45%;
  font-size: 12px;
}

.data-attribute select {
  padding: 5px;
  width: 45%;
  font-size: 12px;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.8);
  border: 0;
  box-sizing: border-box;
}


.add-new-attribute {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.add-new-attribute label {
  margin-bottom: 0px;
}

.add-new-attribute i {
  color: white;
  cursor: pointer;
}



.global-typography-section {
  padding-top: 5px;

}

.global-typography-section label {
  font-size: 14px;
}

.global-typography-section .font-section {
  padding-bottom: 5px;
}

.global-heading-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5px;

}


.global-heading-section .font-size-section label {
  font-size: 13px;
}

.global-heading-section .font-color-section label {
  font-size: 13px;
}

.global-heading-section input {
  width: 100%;
}

.video-block {
  padding-left: 0px;
}

.video-block .video {
  padding: 10px;
}


.video-options {
  max-height: 360px;
  overflow-y: auto;


  margin-top: 15px;


}

.video-options img {
  border-radius: 20px;
}


#delete-all-videos-button {
  margin-top: 10px;
}

.video-options .image-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background-color: unset;
  border-radius: 20px;
  margin-bottom: 10px;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 10px;
  font-weight: 600;
  text-align: center;
}

.video-options .image-container:hover .video-overlay {
  opacity: 1;
}

.video-options .image-container:hover .delete-image-icon {
  display: block;
  position: absolute;
  top: 25px;
  color: white !important;
  z-index: 999999999999999999999;
  right: 15px;
}

.video-options::-webkit-scrollbar {
  width: 7px;
}

.video-overlay-text {
  max-width: 100%;
  word-wrap: break-word;
  line-height: 1.2;
  font-size: 12px;
}







.structured-data {
  padding-bottom: 15px;
}

.structured-data .accordion-header {
  padding-bottom: 0px;
}

.structured-data .wf-img-container:hover {
  cursor: pointer;
}




.alt-text-editor {
  background-color: #046ca9;
  z-index: 99999999;
  bottom: 0px;
  right: 0;
  opacity: 0;
  margin-right: -5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 11px;
  color: white;
  position: absolute;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: none;
  font-family: "Open Sans", sans-serif;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  text-align: center;
  font-size: 13px;
}

.alt-text-editor input {

  outline: none;
  border: none;
  margin-left: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 5px;

}

.alt-text-editor .fa-check {
  padding: 6px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #009bf5;
  color: white;
  cursor: pointer;
  margin-left: -3px;
}

.alt-text-editor .fa-check:hover {
  background-color: white;
  color: #009bf5;
}

.alt-text-editor .fa-loader {
  background-color: unset;
}

.alt-text-editor.show {
  display: block;
  animation: slideOutRightDiv 0.5s ease forwards;
  opacity: 1;
}

.alt-text-editor.hide {
  display: none;
}




@keyframes slideOutRightDiv {
  from {
    right: 0;

  }

  to {
    right: -275px;

  }
}


.replace-row-section {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 15px;
  padding-bottom: 20px;
  z-index: 99999999;
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;

  background-color: #046ca9;
  transition: transform 0.3s ease-out;
  transform: translateX(100%);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.5);

  font-size: 1.2rem !important;

}

.replace-row-section h4 {
  color: white;

  text-align: center;
}

.replacement-rows {
  display: flex;
  overflow-x: auto;
  align-items: center;
  padding: 0;

}


.replacement-rows::-webkit-scrollbar {
  height: 7px;
}

.replacement-rows .image-container {
  flex: 0 0 auto;
  /* animation: slide 5s linear infinite;  */
  width: 15%;
  margin-right: 30px;
  max-height: 200px;
}

.replace-content-select i {
  padding: 10px;
}
.replacement-rows .image-container img {
  width: 100%;
}

.replace-row-header {
  color: white !important;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 25px;
}


@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* .custom-classes .accordion-header {
  margin-bottom: 5px;
} */

.all-classes-container {

  display: flex;
  flex-wrap: wrap;
  max-height: 300px;
  margin-top: 5px;
  padding: 5px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.all-classes-container .class-pill {

  margin-top: 5px;
  font-size: 12.5px;
  background-color: rgba(78, 198, 255, 0.3);
  user-select: none;

}

.all-classes-container .class-pill:hover {
  background-color: #0698c8;
  color: white;
  cursor: pointer;
}


.add-class-css-container,
.image-compress-container {
  display: none;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.5s ease-out;

  padding: 300px;
}

.add-class-css-container.fade-out,
.image-compress-container.fade-out {
  animation: fadeOut 0.5s ease-out;
  display: none;
}

.image-compress-content {
  border-radius: 10px;
  background-color: #046ca9;
  margin: 20% auto;
  padding: 15px;
  border: 1px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  width: 80%;
  color: white;
  max-width: 500px;
  text-align: center;
}


@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.add-class-css-container label {
  color: white;
  font-size: 16px;

}

.add-class-css-container i {
  font-size: 16px;

  color: white;
  padding-bottom: 10px;
}

.add-class-button-css {
  background-color: #046ca9;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
  color: white;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 25px;
}

.add-class-button-css:hover {
  background-color: white;
  color: #046ca9;
}

#add-class-button {
  margin-top: 0px;
  margin-bottom: 10px;
}

#class-search {
  width: 100%;
  padding: 5px;
  border-radius: 3px;
  outline: none;
  border: 0;
  font-size: 12px;
}

#tags-search {
  width: 100%;
  padding: 5px;
  border-radius: 3px;
  outline: none;
  border: 0;
  font-size: 12px;
}

.remove-class-button {

  color: #002b42;
  margin-top: 3px;
  margin-left: 4px;
  margin-bottom: 3px;
  cursor: pointer;
}

.styles-section {
  display: flex;

  border-top: 2px solid white;
  padding-top: 5px;
  align-items: center;


  padding-bottom: 5px;

}

.styles-section i {
  margin-left: 5px;
  margin-right: 10px;

  color: white;
}

.style-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow-y: auto;

  max-height: 100px;
  padding-top: 5px;




}

.styles-section .choose-logo-button {
  margin-top: 0px;
  margin-bottom: 5px;

}

.style-options::-webkit-scrollbar {

  height: 7px;

}

.icon-styles {
  border-bottom: 2px solid white;
}

.button-styles svg {
  margin-right: 5px;
}

.sidebar-left svg {
  position: relative;

}




.paragraph .fa-p {
  padding-top: 14px;
}

.horizontal-line {
  padding-top: 7px !important;
}

.style-button .delete-icon {
  color: black;
  margin-right: 0px;
}

.style-button .delete-icon:hover {
  color: #046ca9;
}

.style-button:hover .delete-icon {
  display: inline-block;
}


.auto-build-icon {
  display: none;
  position: absolute !important;
  bottom: -10px;
  right: -30px;
  font-size: 24px;
  color: #009bf5;
}

.auto-build-icon.active {
  display: block;

}

.wf-sideHeader {
  top: 70px !important;
  /* padding: unset!important; */

}

.wf-sideHeader__bar {
  overflow-x: unset !important;
}

.change-text-size-container {
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: -31px;
  background-color: white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #323232;
  font-size: 13px !important;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);

}




.change-text-size-container i {
  padding: 5px;
}

.change-text-size-container i:hover {
  background-color: #046ca9;
  color: white;
}

.change-text-size-container i:hover:first-child {
  border-top-left-radius: 5px;

}

.change-text-size-container {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;

}



.change-text-size-container .fa-p {
  padding-left: 9px;
  padding-right: 9px;
  border-bottom-left-radius: 5px;

}

#tabs-icon {
  /* width: 22px; */
  margin-top: -3px;
  margin-bottom: -7px;
}

.tabs:hover #tabs-icon {
  content: url('assets/browser-tabs-white.png');
}

.wf-tab-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wf-tab-button.active {
  outline: none;
}

.wf-tab-button i {
  display: none;
  padding-left: 5px;
  margin-right: -10px;
}

.wf-tab-button i:hover {
  color: #046ca9;
}



.wf-tab-button:hover i {
  display: flex;
}

.fa-code {
  padding: 8px !important;
}

.row-code-container,
.header-footer-code-container {
  display: none;
  position: absolute;
  bottom: -375px;
  width: 60%;
  left: 20%;
  background-color: #009bf5;
  padding: 15px;

  /* margin-top: 10px; */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: bottom 0.5s ease-out, max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.code-block-container {
  z-index: 99999999999999;
  display: none;
  position: absolute;
  /* bottom: -375px; */
  width: 100%;
  /* left: 20%; */
  background-color: #002b42;
  padding: 15px;
  left: 0;

  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: bottom 0.5s ease-out, max-height 0.5s ease-out, opacity 0.5s ease-out;

}

.code-block-container .choose-logo-button {
  color: white;
}

.html-editor {
  width: 100%;
  height: 300px !important;
  margin-bottom: 10px;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.4;
  padding: 20px;
  padding-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}


.owl-carousel {
  display: flex !important;

}

.wf-sideHeader {
  pointer-events: auto !important;
  position: static !important;

}

.wf-sideHeader__bar {
  position: fixed !important;
  top: 70px !important;
}

.wf-sideHeader__overlay {
  position: fixed !important;
}

.toggle-restore-dropdown {
  margin-left: 10px;
  cursor: pointer;
  /* color: white!important; */
}

.toggle-restore-dropdown:hover {
  color: #009bf5;
}

.save-button-container {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.restore-dropdown-container {
  font-family: "Open Sans", sans-serif;
  position: fixed;
  width: 165px;
  right: 5px;
  background-color: #046ca9;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.12);

  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.4s ease;
  max-height: 0;

  z-index: 99999999;


}

.restore-dropdown-container.open {
  position: fixed;
  max-height: 800px;
  overflow-y: auto;

  padding-top: 5px;
  padding-bottom: 5px;

}

.restore-dropdown-container label {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;

}

.restore-dropdown-container hr {
  margin-bottom: 0px;
  color: #ccc !important;
  background-color: #ccc !important;
  height: 3px !important;
}



.restore-save-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ccc;


}

.restore-dropdown-container button {
  margin-top: 0px;
}

.restore-save-info {
  text-align: left;
  margin-left: 5px;
  font-size: 12px;
  color: white;
}

.global-animation-label,
.button-style-label {

  font-size: 14px !important;
}

.global-animation-accordion-content,
.button-style-accordion-content {
  text-align: left;

}

.global-animation-container,
.button-style-container {
  margin-left: 15px;
  padding-bottom: 15px;

}

.global-animation-accordion p,
.button-style-accordion p {
  margin-bottom: 5px;
  font-size: 13px;
  color: white;
}

.button-style-buttons {
  margin-top: 5px;
  margin-left: 15px;

  display: flex;
  align-items: baseline;
}

.fa-magnifying-glass-play {
  padding-bottom: 10px;
}

/* Prevent sticky on editor page */
.wf-header--sticky {
  position: relative !important;
  z-index: unset !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
}

.wf-header--fixed {
  position: relative !important;
  z-index: unset !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
}

.wf-header--transparent {
  background: unset !important;
  box-shadow: unset !important;
}

.embed-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 5px;

}

.embed-code-header button {
  margin-top: 0px;
  margin-bottom: 0px;

}

.embed-code-wrapper {

  margin-top: 10px;
  justify-content: space-between;

  margin-left: 10px;
  margin-right: 10px;

}



.embed-code-wrapper label {
  font-size: 14px !important;
  margin-right: 0px;
  text-align: left;


}

.embed-code-header i {
  cursor: pointer;
}

.embed-code-header i:hover {
  color: #009bf5 !important;
}

.embed-code-accordion {
  overflow-y: auto;

}

.embed-code-accordion p {
  font-size: 13px;
  color: white;
  margin-bottom: 0px;
}


.embed-code {
  outline: none;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  padding: 10px;
  resize: vertical;

}

.wf-slider-row {
  min-height: 100vh;
  z-index: 99999 !important;
}

.book__page--2 {

  pointer-events: auto !important;

}

.orientation-icon {
  padding: 8px !important;
}

.orientation-icon:hover {
  color: #046ca9 !important;
}

.wf-row__content {
  min-height: 10vh;
}

.wf-colGroup {
  min-height: 10vh;
}

.wf-row__content--full {
  margin-left: 0 !important;
}

/* .wf-col.nested {
  min-height: 10vh;
} */

.highlight-text-editor {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  transition: display 0.5s ease-out;
}

.highlight-text-editor.show {
  display: flex;
}

.highlight-text-editor.hide {
  display: none;
}

.highlight-text-btn {
  margin-right: 5px;
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 0 8px 25px rgba(0, 0, 0, 0.2), 0 12px 35px rgba(0, 0, 0, 0.15);
  font-size: unset !important;
}

.highlight-text-btn:hover {
  background-color: #009bf5;
  color: white;
}

.active-highlight-text-btn {
  background-color: #009bf5;
  color: white;
}

.owl-carousel {
  width: auto !important;
  z-index: 99 !important;

}

.advanced-setting-container {
  padding-bottom: 25px;
  display: block;
  text-align: left;
  padding-left: 15px;

}

.advanced-setting-container label {
  font-size: 14px;
}



.setting-container {
  display: flex;
  justify-content: space-between;

  padding: 10px;
  align-items: center;

}

.setting-container input {
  /* width: 100%; */
  padding: 7px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 0;
  width: 50%;
  font-size: 14px !important;
  line-height: 1.5 !important;

}


.setting-container input:focus {
  outline: none;
}

/* 
.setting-container label {
  font-weight: 600;
  color: #333;
} */

.favicon-container {
  display: flex;
  margin-top: 10px;

  align-items: center;

}

.favicon-overlay {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.meta-accordion .setting-container {
  padding-bottom: 5px;

}

.meta-accordion .setting-container label {
  font-size: 14px;

}

.meta-accordion .setting-container input {
  width: 70%;
}

.fixed-menu {

  top: 120px !important;
  left: 85px !important;

}

.fixed-logo {

  top: 70px !important;
  right: 100px !important;

}


#include-permalink {
  width: auto;
  box-shadow: none;
}

.permalink-container {
  display: flex;
  gap: 5px;
}

.permalink-container label {
  font-size: 12px;
  margin-left: 0px;
  margin-right: 0px;
  letter-spacing: 0px;
}

.background-video-checkbox-container {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.background-video-checkbox-container label {
  font-size: 12px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  letter-spacing: 0px;
}

.background-video-checkbox-container input {
  width: unset !important;

}







.trigger-animations-once-container {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.trigger-animations-once-container label {
  font-weight: 600;
  font-size: 13px;
  margin-left: 0px;
  margin-right: 0px;
  letter-spacing: 0px;
}




.lock-unlock-preview:hover i {
  color: #009bf5;
}

.lock-unlock-preview {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: white;
  margin-bottom: 5px;
}

.lock-unlock-preview label {
  cursor: pointer;
  font-size: 13px;
  margin-left: 0px;
  margin-right: 0px;
  letter-spacing: 0px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* overflow: auto;  */
  background-color: rgba(0, 0, 0, 0.5);
  color: white;

  opacity: 0;
  transition: opacity 0.5s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}


.modal .modal-content {
  border-radius: 10px;
  background-color: #046ca9;
  margin: 20% auto;
  padding: 15px;
  border: 1px solid white;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  width: 80%;
  max-width: 400px;
  text-align: center;
}

.modal .close {
  color: white;
  float: right;


  font-weight: bold;
}

.modal .close:hover,
.modal .close:focus {
  color: #009bf5;


  cursor: pointer;
}

.modal label {
  margin-top: 100px;
}


.modal input[type="text"] {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  padding: 7px;
  border-radius: 5px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 0;
  width: 50%;
}

.modal input:focus {
  outline: none;
}



.modal button:hover {
  background-color: white;
  color: #009bf5;
}


/* .prompt-container {
  position: fixed;
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px;
  background-color: #046ca9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999999999999999;
  opacity: 0;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  transition: opacity 0.5s ease;
}

.prompt-container button {
  margin-left: 10px;
} */

.notification-box {
  text-align: center;
  position: fixed;
  width: 250px;


  top: 0px;
  right: 200px;
  background-color: #046ca9;
  color: white;
  padding: 15px;

  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(-100%);
  opacity: 0;
  z-index: 9999999999;
}

.save-base-row-overlay {

  display: none;
  color: #009bf5;
  font-weight: 600;

  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: fixed;

  font-size: 35px;

  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999999999;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.5s ease-out;

}

.database-video .delete-video-icon {
  display: none;
  position: absolute;
  color: white;
  right: 25px;
  margin-top: 15px;
  cursor: pointer;

  z-index: 99999999;
}


.database-video:hover .delete-video-icon {
  display: block;
}




.wf-print-buttons {
  cursor: pointer;
  background: #046ca9;
  position: fixed;
  top: 80px;
  display: flex;
  left: -505px;
  align-items: center;
  transition: left 0.3s ease-in-out;
  padding-left: 10px;
  /* padding-right: 10px; */
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;

}

.wf-print-buttons.open {
  left: 0;
}

.wf-print-buttons button,
.wf-print-buttons select {
  margin-top: 0px;
  margin-bottom: 0px;
}

.wf-print-buttons select {
  padding-top: 4px;
  padding-bottom: 4px;
}

.wf-print-buttons i {
  /* border-left: 1px solid white; */
  color: white;
}

.wf-print-buttons .chevron-container {
  text-align: center;
  height: 100%;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 7px;
  margin-left: 5px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #009bf5;
  border-left: 1px solid white;

  width: 30px;
}

.wf-print-buttons .chevron-container:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.replace-print-select {
  width: 151px;
}

/* .regenerate-print-button {
  cursor: pointer;
  position: fixed;
  top: 80px;
  left: 30px;
} */

.regenerate-print-button .fa-arrows-spin {
  --fa-primary-color: #009bf5;
  --fa-secondary-color: #046ca9;
}

.regenerate-print-overlay {


  color: white;
  font-weight: 600;

  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: fixed;

  font-size: 35px;

  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999999999;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.5s ease-out;

}

.prompt-loading-overlay {
  color: white;
  font-weight: 600;

  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: fixed;

  font-size: 35px;

  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999999999;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.5s ease-out;
}

.font-search {
  outline: none;
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;



  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #046ca9;
}

/* .additional-color:hover i {
  color: white !important;
  display: inline;
} */

.additional-color i {
  color: white;

  margin-left: 5px;
  cursor: pointer;
}

.additional-color i:hover {
  color: #009bf5 !important;
}

.all-colors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.pcr-button {
  width: 1.6em !important;
  height: 1.7em !important;
}

.wf-print-banner .block-settings {
  right: unset !important;
  left: -25px !important;
}

.wf-print-banner .block-settings .fa-clone {
  display: none !important;
}

.animation-delay {
  margin-top: 15px;
  width: 100%;
}

.rangeSlider {
  /* margin: unset !important; */
  font-size: 12px !important;
}

.rangePips .pip {
  color: white !important;
}

/* .rangeSlider .rangeHandle.active .rangeNub {
  border: 1px solid white !important;
  background-color: var(--current-sidebar-color) !important;
} */

.rangeSlider .rangeHandle .rangeNub {
  border: 1px solid white !important;
  background-color: var(--current-sidebar-color) !important;
}

.rangeSlider {
  --range-slider: white;
  --range-range-inactive: #046ca9;
  --range-range: #046ca9;
  --range-pip: white;
  --range-pip-hover: white;
  --range-pip-in-range: white;
  --range-pip-active: white !important;
  --range-float-inactive: white !important;
  --range-float: white !important;
  --range-float-text: var(--current-sidebar-color) !important;
}

.rangeFloat {
  opacity: 1 !important;
  top: 4em !important;
  font-weight: bold !important;
}

#horizontal-mode-breakpoint-slider .rangeSlider .rangeFloat {
  background-color: #009bf5 !important;
  color: white !important;
}

#horizontal-mode-breakpoint-slider .rangeSlider .rangeBar {
  background-color: #009bf5 !important;
}

#horizontal-mode-breakpoint-slider .rangeSlider .rangeHandle .rangeNub {
  background-color: #009bf5 !important;
}






.global-animation-buttons {
  display: flex;
  overflow-x: auto;
  width: 95%;
  white-space: nowrap;
  padding-bottom: 10px;
}

.global-animation-buttons button {
  margin-right: 10px;
}

.global-animation-buttons::-webkit-scrollbar {
  height: 5px;
}

.label-container {
  display: flex;
  align-items: center;
}


.additional-color-input {
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 0;
}

.additional-color-input:focus {
  outline: none;
}

.gradient-background-button {
  padding-bottom: 5px !important;
}

#background-gradient-color-picker {
  width: 100%;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}


.grp-preview {
  border-radius: 5px;
}

.grp-wrapper {
  border-radius: 5px;
  height: 35px !important;
}

.grp-handler-cp-wrap {
  margin-left: -6px !important;
}

.background-gradient-direction-buttons i {
  padding: 4px;
}

#gradientAccordion label {
  font-size: 13px !important;
  margin-right: unset !important;
  margin-bottom: unset !important;
}

.background-gradient-repeat-checkbox {
  width: unset !important;
}

.background-gradient-type-section,
.background-gradient-direction-section {
  justify-content: space-around;
}



.background-gradient-direction-buttons i,
.background-gradient-type-buttons i {
  cursor: pointer;

  padding: 5px;

  margin: 0;
}

.background-gradient-direction-buttons i:hover,
.background-gradient-type-buttons i:hover {

  background-color: white;
  border-radius: 5px;
  color: black !important;
}

.active-gradient-type-button {
  background-color: white;
  border-radius: 5px;
  color: black !important;

}

.active-gradient-direction-button {
  background-color: white;
  border-radius: 5px;
  color: black !important;

}

.data-attribute label {

  margin-right: 0px !important;
  width: 50% !important;
}


.row-settings .fa-wand-magic-sparkles {
  padding: 9px;
}


.column-width-section {



  padding: 5px 20px 5px 20px;




}


.column-width-section label {
  font-size: 14px;
  margin-bottom: 0px !important;

}

.column-width-container {
  margin-bottom: 45px;
}

.column-width-container .rangeSlider .rangeHandle .rangeNub {
  background-color: #009bf5 !important;
}




.column-width-container .rangeSlider {
  --range-float-text: #009bf5 !important;
}

/* .disable-access {
  pointer-events: none !important;
  opacity: 0.5 !important;
} */

.hide-access {
  display: none !important;
}

html.content-editor .page-switch,
html.content-editor .page-duplicate,
html.content-editor .prompt-button,
html.content-editor .content-button,
html.content-editor .wireframe-button,
html.content-editor .print-mode-button,
html.content-editor .auto-rebuild-button,
html.content-editor .settings,
html.content-editor .preview-password-button,
html.content-editor .lock-unlock-preview {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

html.content-editor .row-settings,
html.content-editor .col-settings,
html.content-editor .colGroup-settings,
html.content-editor .block-settings,
html.content-editor .auto-build-icon,
html.content-editor .header-footer-settings {
  pointer-events: none !important;
  opacity: 0 !important;
}

html.content-editor .row-editor-border,
html.content-editor .col-editor-border,
html.content-editor .colGroup-editor-border,
html.content-editor .block-editor-border,
html.content-editor .header-footer-editor-border {
  outline: none !important;
}

html.content-editor .element-settings .fa-arrows-up-down-left-right,
html.content-editor .element-settings .fa-floppy-disk,
html.content-editor .element-settings .fa-clone,
html.content-editor .element-settings .fa-trash,
html.content-editor .element-settings .fa-paste,
html.content-editor .element-settings .fa-wand-magic-sparkles {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

html.content-editor .sidebar-left .layout-accordion,
html.content-editor .sidebar-left .elements-accordion,
html.content-editor .sidebar-left .accordion-content-block,
html.content-editor .sidebar-left .videos-accordion,
html.content-editor .sidebar-left .custom-classes,
html.content-editor .sidebar-left .custom-styles,
html.content-editor .sidebar-left .structured-data,
html.content-editor .sidebar-left .all-colors {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

html.content-editor .accordion-images .content-select,
html.content-editor .image-database-button-container {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

html.builder .custom-css-accordion,
html.builder .custom-scripts-accordion,
html.builder .fa-code,
html.builder .fa-floppy-disk {
  display: none !important;
}

.color-toggle-container-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}


.color-toggle-container {

  z-index: 1000;
  animation: drop 1s ease forwards;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  /* height: 15px; */
  /* width: 100px; */

}

.color-toggle {
  position: relative;
  display: inline-block;
  width: 85px;
  /* height: 34px; */
}

.color-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.color-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.color-toggle-slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 5px;
  bottom: 5px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.color-toggle input:checked+.color-toggle-slider {
  background-color: var(--clr-primary);
}

.color-toggle input:checked+.color-toggle-slider:before {
  transform: translateX(70px);
}

.color-toggle-text {
  color: var(--clr-grey);
  font-size: 13px !important;

  position: absolute;
  right: 10px;
  top: 2px;
  transition: transform 0.3s ease;
}

.color-toggle input:checked+.color-toggle-slider .color-toggle-text {
  transform: translateX(-15px);
  color: white;
}

@keyframes drop {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.tota11y-label:not(.html-markup-container .tota11y-label, .row-settings .tota11y-label, .col-settings .tota11y-label, .colGroup-settings .tota11y-label, .blocks-settings .tota11y-label, .block-settings .tota11y-label, .header-footer-settings .tota11y-label) {
  display: none;
}


body .tota11y-toolbar-toggle {
  background-color: #009bf5 !important;
  display: block !important;
  padding: 7px !important;
  width: 100% !important;
  transition: background-color 0.3s ease;
}

body .tota11y-label {
  border-radius: 5px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body .tota11y-toolbar-toggle:hover {
  background-color: #007bb5 !important;
}

body .tota11y-toolbar {
  background-color: #046ca9 !important;
}

body .tota11y-plugin {
  border-bottom: 1px solid white !important;
}

body .tota11y-info {
  background-color: #046ca9 !important;
  border-radius: 10px !important;
}

body .tota11y-info-title {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  font-weight: 600 !important;
}

body .tota11y-info-body {
  padding: 10px 15px 10px 15px !important;
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

body .tota11y-info-section {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}


body .tota11y-info-tabs,
body .tota11y-info-tab,
body .tota11y-info-tab-anchor {
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.settings-title {
  background-color: white !important;

  padding: 0px !important;
  font-weight: 600 !important;
  font-size: 18px !important;

}

.wf-mobileMenu {
  top: 110px !important;
}



.wf-codeBlock {
  background: #009bf5;
  border-radius: 5px;
  display: flex;
  padding: 10px;
  justify-content: space-between;
  /* align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  cursor: pointer; */
}

.wf-codeBlock .fa-code {
  color: white;
}

.wf-codeBlock-button {
  background-color: #046ca9;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wf-codeBlock button:hover {
  background-color: #009bf5;
}

.wf-codeBlock .element-settings {
  margin-top: 45px !important;

}

.img-flip .element-settings,
.img-flip .sidebar-right {
  transform: scaleX(-1);
}

.row-code-tabs,
.code-block-tabs {
  margin-left: 10px;
  text-align: left !important;
}

.row-code-tab-button,
.code-block-tab-button {
  background-color: #002b42;
  font-weight: bold;
  color: white;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;

  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  /* display: none; */
  /* transition: display 0.5s ease-out; */
}

.code-block-tab-button {
  background-color: #007bb5;
}

.row-code-tab-button.active,
.code-block-tab-button.active {
  background-color: white !important;
  color: #002b42 !important;
}

.row-code-tab-button:hover,
.code-block-tab-button:hover {
  background-color: #007bb5;
  color: white;
}

.row-code-tab,
.code-block-tab {
  text-align: left !important;
  color: black !important;
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  border-top: none;
  /* border-top-left-radius: 0px; */
  display: none;
  transition: display 2.5s ease-out;

}

.row-code-tab.active,
.code-block-tab.active {
  display: block;

}

.row-code-tab[data-tab="css"],
.row-code-tab[data-tab="js"],
.code-block-tab[data-tab="css"],
.code-block-tab[data-tab="js"] {
  padding-top: 0px;


}

.script-placement-options {
  margin-bottom: 5px;
}

.script-placement-options label {
  font-size: 12px !important;
  text-shadow: unset;
  color: black;
  letter-spacing: unset;

}

.owlcarousel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 7px;
  padding-right: 7px;
}

.row-settings .owlcarousel-icon {
  padding-top: 7px;
  padding-bottom: 7px;
}

.owlcarousel-icon img {
  max-width: 18px;

}

.owlcarousel-icon:hover {
  background-color: white;
}

.owlcarousel-icon:hover img {
  content: url("assets/owlcarouselblue.png");
}

.owlcarousel-icon.active img {
  content: url("assets/owlcarouselblue.png");
}

.owlcarousel-icon.active {
  background-color: white;
}



.ai-tools-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 5px;
  padding-bottom: 7px;
}

/* .row-settings .ai-tools-icon {
  padding-top: 7px;
  padding-bottom: 7px;
} */

.ai-tools-icon img {
  max-width: 26px;

}

.ai-tools-icon:hover {
  background-color: white;
}

.ai-tools-icon:hover img {
  content: url("https://app.storyshapesimpact.com/wp-content/uploads/2026/01/imageedit_7_8809018107.png");
}

.ai-tools-icon.active img {
  content: url("https://app.storyshapesimpact.com/wp-content/uploads/2026/01/imageedit_7_8809018107.png");
}

.ai-tools-icon.active {
  background-color: white;
}



.owl-carousel-section {

  padding: 5px 20px 5px 20px;

}


.owl-carousel-section label {
  font-size: 14px;
  margin-bottom: 0px !important;

}

.owl-carousel-container {
  margin-bottom: 45px;
  margin-left: 5px;
}

.owl-carousel-container label {
  font-size: 12px !important;
}

.owl-carousel-container .rangeSlider .rangeHandle .rangeNub {
  background-color: #009bf5 !important;
}

.owl-carousel-container .rangeSlider .rangeBar {
  background-color: #99a2a2 !important;
}



.owl-carousel-container .rangeSlider {
  --range-float-text: #009bf5 !important;
}

.preloader-settings-container .button-style-buttons {
  margin-bottom: 15px;
  align-items: center;
  justify-content: space-between;
}

.preloader-icon-container {
  width: 75%;
}

.preloader-settings-container {
  margin-top: 10px;
  padding-bottom: 10px;
}

.preloader-animation-button {
  font-size: 11px !important;
}

.preloader-text-options {
  align-items: baseline !important;
}

.preloader-text-options label {
  font-size: 11px !important;
}

.preloader-text-position {
  label {
    color: black;
    text-shadow: unset;
    border-radius: 5px;

  }
}


.preloader-text-options input {
  /* width: 100%; */
  padding: 7px;
  border-radius: 5px;
  margin-left: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 0;
  width: 50%;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

#aiMagicOverlay,
#aiAssistantOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  /* Semi-transparent dark overlay */
  backdrop-filter: blur(8px);
  /* The blurring effect */
  z-index: 99999;
  /* Ensure it covers everything */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

#aiMagicSpinner {
  background: white;
  padding: 50px 50px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#aiMagicSpinner .fa-wand-magic-sparkles,
#aiMagicSpinner .fa-handshake-angle {
  font-size: 4em;
  color: #1a9af3;
  animation: magic-float 1.8s infinite ease-in-out;
  /* Apply the animation */
  display: block;
  margin-bottom: 15px;
}

#aiMagicSpinner h4 {
  margin: 0;
  color: #333;
  font-weight: 700;
  width: unset!important;
  -webkit-text-fill-color: unset!important;
  background: unset !important;
  
}

#aiMagicSpinner p {
  margin-top: 5px;
  color: #666;
  font-size: 0.9em;
  width: unset !important;
  -webkit-text-fill-color: unset!important;
  background: unset !important;
}

/* Define the animation */
@keyframes magic-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.magic-mode-option {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  transition: all 0.2s ease;
  flex: 1;
}

.magic-mode-option:hover {
  border-color: #b0b0b0;
  background: #f9f9f9;
}


.magic-mode-option.selected {
  border-color: #1a9af3;
  background: #f0f7fb !important;
  box-shadow: 0 4px 12px rgba(26, 154, 243, 0.15);
}

.magic-mode-option input[type="radio"] {
  margin-right: 12px;
  transform: scale(1.3);
  accent-color: #1a9af3;
}

@keyframes slideUp {
  from {
    bottom: -100px;
  }

  to {
    bottom: 30px;
  }
}

.pill-btn {
  background: #f0f2f5;
  border: 1px solid #e1e4e8;
  border-radius: 15px;
  padding: 5px 12px;
  font-size: 11px;
  color: #555;
  cursor: pointer;
  margin-right: 5px;
  transition: all 0.2s;
}

.pill-btn:hover {
  background: #e1e4e8;
  color: #333;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}


.prompt-container {
  position: fixed;
  display: none;
  /* Toggled via JS */
  flex-direction: column;
  width: 530px;
  /* Wider for better layout */
  background-color: #046ca9;
  /* Main Blue BG */
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  /* Ensures child elements respect border radius */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- HEADER --- */
.prompt-header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Subtle divider line */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.prompt-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  /* Bold */
  color: #ffffff;
  /* White Text */
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-prompt-btn {
  cursor: pointer;
  background: #ffffff;
  /* White BG */
  color: #046ca9;
  /* Blue Icon */
  width: 28px;
  height: 28px;
  border-radius: 50%;
  /* Circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease, background-color 0.2s;
}

.close-prompt-btn:hover {
  transform: scale(1.1);
  background-color: #f2f2f2;
}


.prompt-textarea {
  width: 100%;
  min-height: 140px;
  /* Bigger Textarea */
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 14px;
  resize: vertical;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.95);
  /* Slightly off-white for readability */
  color: #333;
}

.prompt-textarea:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* --- CONTROLS ROW --- */
.prompt-controls {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 5px;
}

.add-image-label {
  cursor: pointer;
  color: #ffffff;
  /* White Text */
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}

.add-image-label:hover {
  background: rgba(255, 255, 255, 0.15);
}

.generate-btn {
  background: #ffffff;
  color: #046ca9;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.1s, box-shadow 0.2s;
}

.generate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- SUGGESTIONS SECTION (White BG) --- */
.suggestions-section {
  background: #ffffff;
  /* White BG */
  padding: 15px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);

  display: none;
}

.suggestions-scroll-container {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  /* Hide Scrollbar */
  /* scrollbar-width: none;  */
  -ms-overflow-style: none;
}

.suggestions-scroll-container::-webkit-scrollbar {
  height: 7px;
}

.pill-btn-blue {
  background: #e3f2fd;
  /* Light Blue BG */
  color: #046ca9;
  /* Blue Text */
  border: 1px solid #bbdefb;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 8px;
  transition: all 0.2s;
}

.pill-btn-blue:hover {
  background: #046ca9;
  color: #ffffff;
  border-color: #046ca9;
}

/* --- IMAGE PREVIEW --- */
.image-preview-box,
.file-preview-box {
  display: none;
  /* Toggled JS */
  position: absolute;
  bottom: 30px;
  /* Adjusted position */
  right: 5px;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  background: #fff;
}

.image-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.file-preview-box:hover .image-preview-overlay {
  opacity: 1;
}

#aiReviewBar {
  background: #046ca9;
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.3s ease;
  color: white;
  animation: slideUp 0.3s ease,
    bounce 1.5s ease-out 0.3s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-5px);
  }

  60% {
    transform: translateX(-50%) translateY(-3px);
  }
}

.accept-changes-button {
  background: #2ecc71;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.accept-changes-button:hover {
  background: #27ae60;
}

.deny-changes-button {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deny-changes-button:hover {
  background: #c0392b;
}

button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.accordion-content img {
  max-width: 100%;
  height: auto;
}

html {
  overflow-x: clip;
}


.ai-tools-button:hover img {
  content: url("https://app.storyshapesimpact.com/wp-content/uploads/2026/01/imageedit_4_7075723791.png");
}

/* Optional: Add a smooth fade transition if desired */
.ai-tools-button img {
  transition: content 0.3s ease;
}


#ai-command-dashboard {
  position: fixed;
  width: 730px;
  background-color: #046ca9;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 99999999;

  /* Smooth Transition Setup */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  /* Start slightly tucked up */
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    visibility 0.3s;

  padding: 20px;
  pointer-events: none;
  /* Prevent clicking when hidden */
}

#ai-command-dashboard.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* Slide down to natural position */
  pointer-events: auto;
}

/* Hover effect for the top bar image (Pure CSS as requested earlier) */
.ai-tools-button:hover img {
  content: url("https://app.storyshapesimpact.com/wp-content/uploads/2026/01/imageedit_4_7075723791.png");
}

.ai-tools-button.open img {
  content: url("https://app.storyshapesimpact.com/wp-content/uploads/2026/01/imageedit_4_7075723791.png");
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 40px; */
  margin-bottom: 20px;
}

.dashboard-tabs {
  display: flex;
  gap: 10px;
}

.dash-tab {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.dash-tab.active {
  background: white;
  color: #046ca9;
}

.ai-tab-panel {
  display: none;
  /* padding: 0 40px; */
}

.ai-tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.panel-inner {
  max-width: 800px;
  margin: 0 auto;
}

.dash-info {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.dash-tab i {
  margin-right: 5px;
}

.dash-file-input {
  width: 100%;
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.close-dashboard {
  font-size: 30px;
  margin-left: 20px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}


/* Unified Info Box for all tabs */
.dash-info-box.blue-info {
  background: rgba(255, 255, 255, 0.1);
  /* Matches Assistant/Importer */
  color: white;
  border-left: 4px solid #009bf5;
  /* Primary Blue */
  font-size: 13px;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Ensure the file input matches the Assistant style */
.dash-file-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #009bf5;
  /* Brand Blue */
  box-sizing: border-box;
}

/* Reset Replacer Progress Bar to Blue */
#ai-replacer-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #009bf5 0%, #4ec6ff 100%);
  /* Consistent Gradient */
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 155, 245, 0.5);
}

/* Button override to ensure it matches Generate Button */
#ai-start-replacer-btn {
  background: #ffffff !important;
  color: #046ca9 !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#ai-start-replacer-btn:hover {
  background: #f2f2f2 !important;
  transform: translateY(-1px);
}

.dash-field-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  /* Matching the bold weight of Assistant labels */
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: none;
  /* Ensuring clean text on the blue background */
  letter-spacing: 0.3px;
  line-height: 1.2;
}


#ai-status-text, #ai-replacer-status-text {
  color: white;
}

/* Radio Group Styling */
.radio-group-container {
  padding-left: 5px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-item input[type="radio"] {
  /* Reset default browser styling */
  appearance: none;
  -webkit-appearance: none;

  /* Create the custom circle */
  width: 13px;
  height: 13px;
  border: 2px solid #ffffff;
  /* This changes the black ring to white */
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-content: center;
  margin: 0;
  transition: border-color 0.2s ease;
}

/* Create the blue dot inside when checked */
.radio-item input[type="radio"]::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: #009bf5;
  /* Your specific blue color */
}

.radio-item input[type="radio"]:checked::before {
  transform: scale(1);
}

/* Ensure the border stays white when checked */
.radio-item input[type="radio"]:checked {
  border-color: #ffffff;
}


.radio-item label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0 !important;
  /* Override global label margins */
}



.prompt-body input[type='radio'] {
  position: unset;
  opacity: unset;
}

.prompt-body input[type='radio']:checked+label {
  background-color: unset;
}

.radio-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0 0 26px;
  /* Align text under the label, not the radio */
  line-height: 1.3;
}

/* File Upload Field */
.dash-file-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed #ffffff;
  /* White dash for better visibility on blue */
  font-size: 12px;
  cursor: pointer;
  color: #333;
}


/* Targeting the text inside the blue button */
#ai-command-dashboard input[type="file"]::file-selector-button {
  color: #ffffff;
  /* Change this to your desired color */
  font-weight: 600;
}

/* Optional: Target the 'No file chosen' text separately if needed */
#ai-command-dashboard input[type="file"] {
  color: black;
  /* Changes the 'No file chosen' text color */
}

#ai-command-dashboard input[type="file"]::file-selector-button:hover {
  background-color: #046ca9;
  /* Darker blue on hover */
  /* color: #e0e0e0; */
  /* Subtle light grey text on hover */
}


/* Designer Specific Styling */
.magic-upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.magic-upload-zone:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #009bf5;
}

.magic-upload-zone i {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.magic-upload-zone p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.dash-textarea-small {
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  border: none;
  resize: vertical;
  box-sizing: border-box;
}

/* Ensure the strategy buttons match Assistant/Importer segmented style */
.magic-mode-option {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.magic-mode-option.selected {
  background: white;
  color: #046ca9;
}

.row-tab-panel {
  display: none;
  padding: 15px;
}

.row-tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Re-using your dash-tab style for row dashboard */
#row-ai-dashboard .dash-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  flex: 1;
  font-size: 12px;
  padding: 8px;
  border-radius: 4px;
}

#row-ai-dashboard .dash-tab.active {
  background: white;
  color: #046ca9;
}

#row-ai-dashboard {
  background: #046ca9;
  /* Matching your brand blue */
  color: white;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 0px;
}


/* Fix Header Height and Title Color */
#row-ai-dashboard .prompt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  /* Reduced height */
  padding: 10px 20px;
}

#row-ai-dashboard #rowPromptTitle {
  color: #ffffff !important;
  /* Forces white title */
  font-weight: 700;
  -webkit-text-fill-color: #ffffff !important;

  background: unset!important;
}

/* Match Tab Buttons to Main Dashboard */
#row-ai-dashboard .dash-tab {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  /* Rounded pill shape */
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

#row-ai-dashboard .dash-tab.active {
  background: white !important;
  color: #046ca9 !important;
}

#row-ai-dashboard .dash-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.2);
}

/* File Selector Text Color Fix */
#row-ai-dashboard input[type="file"] {
  color: #ffffff;
  /* Matches your request for white text on blue dashboard */
}

#row-ai-dashboard input[type="file"]::file-selector-button {
  color: #ffffff;
  /* White text for 'Choose File' button */
  background-color: #009bf5;
  border: none;
  border-radius: 4px;
  font-weight: 600;
}

#row-ai-dashboard input[type="file"] {
  color: black;
  /* Changes the 'No file chosen' text color */
}

#row-ai-dashboard input[type="file"]::file-selector-button:hover {
  background-color: #046ca9;
  /* Darker blue on hover */
  /* color: #e0e0e0; */
  /* Subtle light grey text on hover */
}



#row-ai-dashboard .dashboard-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


/* The container/track of the bar */
.ai-progress-track {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1); /* Light gray background */
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
}

/* The actual moving bar */
#ai-progress-bar {
  width: 0%; /* Start at 0 */
  height: 100%;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%); /* Blue gradient */
  transition: width 0.3s ease; /* Smooth movement */
  position: relative;
}

/* Optional: The "Glow" effect mentioned in your HTML */
.progress-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(5px);
}

/* Default State (Global) */
.row-only-view {
  display: none !important;
}

/* Row Mode State */
#shared-importer-interface.is-row-mode .global-only-view {
  display: none !important;
}

#shared-importer-interface.is-row-mode .row-only-view {
  display: block !important;
}

#shared-replacer-interface.is-row-mode .global-only-view {
  display: none !important;
}

#shared-replacer-interface.is-row-mode .row-only-view {
  display: block !important;
}


/* When in row mode, override the absolute positioning */
/* #shared-importer-interface.is-row-mode .prompt-controls {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end; 
}
 */


/* Standard Blur Effect */
.ai-import-blur {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease;
}

/* Ensure the row being blurred stays relatively positioned for the overlay if needed */
.wf-row.ai-import-blur {
  position: relative;
  z-index: 10;
}

/* Optional: Darken effect */
.ai-import-blur::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
  pointer-events: none;
}

.wf-row {
  overflow: visible!important;
}

.colGroup-settings .ai-tools-icon {
  padding-left: 5px;
    padding-right: 5px;
}
.blocks-settings {
display: flex!important;
font-size: 12px!important;

  
}

.block-settings {
  font-size: 12px!important;
}

.blocks-settings .ai-tools-icon img, .block-settings .ai-tools-icon img {
 
  max-width: 20px;
    
  }



.delete-favorite-icon {
  display: none; 
  position: absolute;
  top: 10px;
  right: 5px;
  color: #ffffff;
  cursor: pointer;
 
  z-index: 10;
}



.favorite-item:hover .delete-favorite-icon {
    display: block;
}


/* .save-options-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.save-options-menu {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(15px);
  display: flex;
  background: #222;
  border-radius: 4px;
  padding: 4px;
  gap: 5px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  margin-right: 10px;
}

.save-options-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-50%) translateX(0);
}

.save-option-btn {
  padding: 6px 10px;
  background: #444;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
}

.save-option-btn:hover {
  background: #0073aa;
}

.save-option-btn i {
  font-size: 10px;
}

 */

 .save-row-options-container {
  font-family: "Open Sans", sans-serif;
  position: absolute; 
  right: 100%;    
  /* top: 80%; */
  display: flex;
  width: max-content;
  margin-top: -5px;

  border-top-right-radius: 0px!important;
  border-bottom-right-radius: 0px!important;
 
  background-color: #046ca9;
  border-radius: 15px; 
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 999999999999;
  
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
  transform: translateX(10px); 
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  padding: 10px;
}


.save-row-options-container.open {
  transform:  translateX(0px);
  opacity: 1;
  pointer-events: all;
  
}

.save-option-btn {
  margin-top: 0;
}

