#giftify_tab_content .giftify_select_field {
  display: flex;
  padding: 0px !important;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
#giftify_tab_content .giftify_select_field label {
  margin: 0px;
  width: 25%;
}
#giftify_content_wrapper {
  width: 100%;
}
.giftify-wrapper {
  border: 1px solid #a1a1a1;
  width: 100%;
  height: 250px;
}
.upper-title {
  border-bottom: 1px solid #a1a1a1;
  margin-bottom: 20px;
  text-align: left;
  padding: 10px 10px;
}
.content-wrapper {
  padding: 10px 10px;
}
.title-wrapper {
  width: 90%;
  display: flex;
  height: auto;
  margin: 10px 0px;
  gap: 10px;
}
.content-wrapper input[type="text"],
.content-wrapper input[type="number"],
.content-wrapper select {
  width: 550px;
  height: 20px;
}
.checkbox-wrapper {
  display: flex;
  margin: 10px 0px;
  gap: 25px;
}
.repeater-content {
  display: flex;
  width: 100%;
  gap: 10px;
  margin: 10px 0px;
  justify-content: center;
  align-items: center;
}
#repeater {
  width: 90%;
}
.giftify-btn {
  border: 1px solid #a1a1a1;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  margin: 3px 0px;
  padding: 5px;
  height: 20px;
}
.title label,
.checkbox label {
  margin: 0 !important;
  float: none !important;
}
.title-wrapper .title {
  width: 100%;
}
.title-wrapper .title input{
  width: 100% !important;
}

/* setting tab css */

#giftify_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.giftify_content {
  width: 100%;
  min-width: 260px;
  transition: 0.3s ease;
}
@media screen and (max-width: 512px) {
  .giftify_content {
    margin: 0 4%;
    margin-top: 5%;
  }
}

/* Tabs menu */
.giftify_tabs {
  margin: 0;
  display: flex;
  justify-content: start;
  height: 50px;
  border: 1px solid #5c414111;
  border-radius: 2px 2px 0px 0px;
}
@media screen and (max-width: 512px) {
  .giftify_tabs {
    height: 40px;
  }
}

/* Tab Links */
.giftify_tablinks {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  width: 25%;
  /*change depending on the number of tabs*/
  height: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  overflow: hidden;
  transition: 0.3s ease;
}
@media screen and (max-width: 512px) {
  .giftify_tablinks {
    height: 40px;
    font-size: 12px;
  }
}

.giftify_tablinks:before {
  content: "";
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

/*tab buttons hover*/
.giftify_tablinks:hover::before {
  height: 100%;
  z-index: 2;
  bottom: 0;
}
@media screen and (max-width: 512px) {
  .giftify_tablinks:hover::before {
    height: 0;
  }
}

/* Tab active */
.giftify_tablinks.active {
  background-color: white;
  z-index: 0;
  border-right: 0px;
  border-left: 0px;
  height: 50px;
  bottom: 0px;
  overflow: hidden;
}
@media screen and (max-width: 512px) {
  .giftify_tablinks.active {
    height: 60px;
  }
}

.giftify_tablinks.active:before {
  content: "";
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
}

.giftify_tablinks.active p {
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.5s ease;
  padding: 0;
  margin: 0;
  color: #000000;
  backface-visibility: hidden;
  font-weight: 400;
}
.giftify_tablinks p {
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.5s ease;
  padding: 0;
  margin: 0;
  color: #686868;
  backface-visibility: hidden;
  font-weight: 400;
}

.giftify_tablinks:hover p {
  color: rgb(13, 11, 11);
  opacity: 1;
}
@media screen and (max-width: 512px) {
  .giftify_tablinks:hover p {
    color: rgb(13, 11, 11);
    opacity: 0.6;
  }
}

/* Tabs text bigger */
.giftify_tablinks p:before {
  content: attr(data-title);
  position: absolute;
  height: auto;
  width: auto;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  font-size: 40px;
  transition: 1s ease-out;
  z-index: -1;
  font-weight: 600;
  top: 110%;
}
@media screen and (max-width: 512px) {
  .giftify_tablinks p:before {
    display: none;
  }
}

.giftify_tablinks:hover p:before {
  opacity: 0.1;
  font-size: 40px;
  top: -80%;
}

/* tab content */
.giftify_wrapper_tabcontent {
  background-color: white;
  margin-top: 0px;
  position: relative;
  opacity: 1;
  padding: 40px 60px;
  overflow: hidden;
  transition: all 1s ease;
  top: 0;
}

.giftify_tabcontent {
  display: none;
  min-height: 180px;
}

@keyframes tabEffect {
  from {
    top: -40px;
  }
  to {
    top: 0px;
  }
}
.giftify_tabcontent.active {
  transition: all 1s ease;
  display: block;
}

/* Tab content line */
.giftify_wrapper_tabcontent:after {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
  transition: all 1s ease;
}

/* Title */
.giftify_tabcontent h3 {
  font-size: 40px;
  top: 75px;
  transform: rotate(90deg);
  position: absolute;
  left: -90px;
  opacity: 0.1;
  width: 200px;
  height: 60px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0;
  animation: city 1s ease;
}
@media screen and (max-width: 512px) {
  .giftify_tabcontent h3 {
    top: 65px;
  }
}

@keyframes city {
  from {
    left: -150px;
  }
  to {
    left: -90px;
  }
}
/* Text*/
.giftify_tabcontent p {
  color: #686868;
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-weight: 100;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  width: 100%;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
}
@media screen and (max-width: 512px) {
  .giftify_tabcontent p {
    font-size: 14px;
    line-height: 26px;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    margin-left: 30px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}

.giftify_tabcontent {
  display: none;
}

.giftify_tabcontent.active {
  display: block;
  z-index: 1;
}

.giftify_content input[type="text"] {
  pointer-events: auto;
  position: relative;
  z-index: 2; /* Ensure the input is above other elements */
}

/* Core styles/functionality */
.giftify_tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.giftify_tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.giftify_tab input:checked ~ .giftify_tab__content {
  max-height: 10rem;
  height: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 10px;
}

/* Visual styles */
.giftify_accordion {
  color: #5c414111;
  border: 2px solid;
  border-radius: 0.5rem;
  overflow: hidden;
}
.giftify_tab__label,
.giftify_tab__close {
  display: flex;
  color: #000000;
  background: #5c414111;
  cursor: pointer;
}
.giftify_tab__label {
  justify-content: space-between;
  padding: 1rem;
}
.giftify_tab__label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}
.giftify_tab input:checked + .giftify_tab__label::after {
  transform: rotate(270deg);
}
.giftify_tab__content p {
  margin: 0;
  padding: 1rem;
}
.giftify_tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* Arrow animation */
.giftify_tab input:not(:checked) + .giftify_tab__label:hover::after {
  animation: bounce 0.5s infinite;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(0.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-0.25rem);
  }
}
.giftify_key_feature li {
  color: #686868;
}

/* displaying the filter code of setting */

.documentation-container {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.documentation-section {
  margin-bottom: 20px;
}

.documentation-section h4 {
  color: #333;
  margin-bottom: 10px;
}

.documentation-section p {
  margin-bottom: 15px;
  color: #555;
  padding: 0;
}

.code-documentation {
  background-color: #282c34;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
  margin-bottom: 20px;
}

.code-documentation pre {
  margin: 0;
}

.code-documentation code {
  font-family: "Courier New", Courier, monospace;
  color: #abb2bf;
  white-space: pre;
  display: block;
}

.code-documentation .php .keyword {
  color: #c678dd; /* Purple for keywords */
}

.code-documentation .php .function {
  color: #61afef; /* Blue for function names */
}

.code-documentation .php .string {
  color: #98c379; /* Green for strings */
}

.code-documentation .php .comment {
  color: #5c6370; /* Grey for comments */
}
.documentation_title_wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
}
a.giftify_documentation {
  text-decoration: none;
  border: 1px solid #5c414111;
  padding: 5px;
  border-radius: 5px;
}
a.giftify_documentation:hover {
  background-color: #f9f8f8;
}