
@font-face {
    font-family: 'Segoe UI Bold';
    src: url('../font/Segoe_UI_Bold.ttf') format('truetype');
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Segoe UI';
    src: url('../font/Segoe_UI.ttf') format('truetype');
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Segoe UI Semibold';
    src: url('../font/Segoe_UI_Semibold.ttf') format('truetype');
}
.template-wrapper {
  margin-top: 3%;
  display: flex;
  justify-content: normal;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  padding-right: 15px;
  flex-basis: 80%;
}

.popup-template:hover .btns-container{
  opacity: 1;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

#toplevel_page_flash-popup-builder .wp-submenu li a[href="admin.php?page=flash-popup-builder-edit"] {
  display: none !important;
}

.popup-templates {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.popup-btn {
  background-color: black;
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 13px;
  font-weight: bold;
  width: 100px;
  height: 30px;
  padding: 5px 0 5px 0;
  cursor: pointer;
}

.popup-img {
  height: 50px;
  width: 50px;
  border: 1px solid black;
}

.delete-btn {
  background-color: red !important;
  color: white !important;
  font-weight: bold !important;
  border: none !important;
}

.edit-btn {
  background-color: white !important;
  color: black !important;
  font-weight: bold !important;
}

/* ======================== */

.toggle-container {
  width: 51px;
  height: 31px;
  position: relative;
}

.toggle-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.switch {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #e9e9eb;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.toggle-slider {
  width: 27px;
  height: 27px;
  position: absolute;
  left: calc(50% - 27px/2 - 10px);
  top: calc(50% - 27px/2);
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.toggle-checkbox:checked + .switch {
  background-color: #34C759;
}

.toggle-checkbox:checked + .switch .toggle-slider {
  left: calc(50% - 27px/2 + 10px);
  top: calc(50% - 27px/2);
}
 

/* ======================== */

.edit-form-btn {
  z-index: 10;
}

.current_image_preview {
  max-width: 200px;
  margin-top: 10px;
  height: 131px;
  width: 200px;
}

.button-primary{
  border: 0px !important;
  border-radius: 0px !important;
}

label textarea {
  height: 70px !important;
}

.typography-editor {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  justify-content: space-evenly;
}

.form h2 {
  color: #1d2327;
  font-size: 1.5em;
  margin: 4px 0;
}

.image-preview {
  max-width: 180px;
  margin-top: 5px;
  margin-left: 150px;
}

.select-img-btn {
  align-items: center;
  display: flex;
  height: 35px;
}

.img-btn-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.text-size {
  width: 71px;
  border-radius: 5px;
}

.text-color {
  height: 30px;
}

#edit-form-container {
  display: block;
}

.popup-form-container {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 90%;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  z-index: 100;
}

.container{
  width: 100%;
  height: 100%;
}

.color-set label{
  display: contents;
}

/* ======================== */
/* Prebuilt Template CSS Started */

.active-template{
  border: 1px solid black !important;
  padding: 4px;
}

.btns-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.popup-template{
  /* height: 300px; */
    width: 310px;
    display: flex;
    flex-flow: column;
    align-items: normal;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: flex-start;
    position: relative;
}

/* overlay css started */
.popup-template::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); 
  transition: background-color 0.3s ease-in-out; 
  z-index: 1;
}

.popup-template:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}
/* overlay css ended */

.filter-bar-container{
  flex-basis: 25%;
  margin-top: 3%;
}

.search-container {
  position: relative; 
  display: flex; 
  align-items: center; 
  width: fit-content; 
  padding: 0px !important;
}

.search {
  border-radius: 0px !important;
  background-color: black !important;
  color: yellow;
  border: none;
  outline: none; 
  width: 263px !important; 
  box-sizing: border-box;
  height: 45px;
  font-size: 15px;
  color: white !important;
}

.search::placeholder {
  color: #fcb103;
}

.fa-magnifying-glass{
  color: #fcb103;
}

.search-icon {
  position: absolute;
  right: 12px; 
  top: 50%;
  transform: translateY(-50%); 
  width: 30px; 
  height: 28px; 
  background-size: contain;
  background-repeat: no-repeat;
  border-left: 1px solid #fcb103;
  padding-left: 12px;
  padding-top: 5px;
}

.filter-column{
  /* background-color: rgb(242, 242, 242); */
  background-color: #a79b9b47;
  border: 1px solid black;
  height: 473px;
  width: 266px;
  display: flex;
  flex-direction: column;
}

.content-wrapper{
  display: flex;
  flex-direction: row;
}

.template-category.active {
  background-color: #fcb103;
}

.template-category{
  font-weight: 500;
  cursor: pointer;
  margin-top: 2px;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  padding-left: 12px !important;
  justify-content: space-between !important;
  padding-right: 20px !important;
}


/* ========Go to Link Button CSS Started ==========*/

.btn-contaier {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* ========Go to Link Button CSS Ended ============*/

.button-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.add-popup-form {
  display: none;
  margin: 20px 0 0 0;
}

.cancel-submit {
  background-color: red !important;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  margin-top: 15px;
  border: 1px solid black;
}

.color-set{
  display: flex;
  align-items: center;
  text-transform: capitalize;
}

.color-set span{
  padding: 5px;
}

.color-set input{
  width: 150px;
  height: 50px;
}

.size-set{
  display: flex;
  align-items: center;
  text-transform: capitalize;
}

.size-set span{
  padding: 5px;
}

.size-set input{
  width: 150px;
  height: 50px;
}

.form label {
  position: relative;
  
}

.form label .input {
  max-width: 100%;
  height: 46px;
  width: 100%;
  padding: 10px 10px 10px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

label p{
  text-transform: capitalize;
}

.temp-button-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.temp-button-content .typography-editor{
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.temp-button-content div .btn-input {
  width: 450px;
  max-width: 100%;
  height: 46px;
  padding: 10px 10px 10px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
  top: 30px;
  font-size: 0.7em;
  font-weight: 600;
}

.form label .input:valid + span {
  color: green;
}

.submit {
  border: none;
  outline: none;
  background-color: royalblue;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transform: 0.3s ease;
  width: 124px;
  cursor: pointer;
}

.submit:hover {
  background-color: rgb(56, 90, 194);
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}


/* for permalink hide */

#edit-slug-box {
  display: none;
}

/* for default content */
#postdivrich {
  display: none;
}

/* for hiding new post  */

.wrap .wp-heading-inline + .page-title-action {
  margin-left: 0;
  display: none;
}


/* for hiding preview action */
#preview-action {
  display: none;
}


/* for nav tabs */
/* Scoped Flash Popup Builder Navbar Styling */
.flash-popup-builder-nav .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
      gap: 50px;
}

.flash-popup-builder-nav .navbar-logo {
  height: 40px;
  margin-right: 15px;
}

.flash-popup-builder-nav .nav-tabs {
  flex-grow: 1;
  justify-content: flex-start;
      gap: 20px;
      border: unset;
}

.flash-popup-builder-nav .nav-item {
  margin-right: 10px;
}

.flash-popup-builder-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border: none;
  padding: 10px 15px;
  background: transparent;
}

.flash-popup-builder-nav .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color) !important;
  background-color: #fcb103 !important;
  border-color: var(--bs-nav-tabs-link-active-border-color) !important;
}

.flash-popup-builder-nav .nav-link:hover {
  background-color: #e9ecef;
  color: #0056b3;
}

/* Go Pro Button */
.flash-popup-builder-nav .btn-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.flash-popup-builder-nav .btn-warning i {
  margin-right: 5px;
}

.flash-popup-builder-nav .btn-warning:hover {
  background-color: #f39c12;
}

.flash-popup-builder-nav .btn-warning {
  --bs-btn-color: #ffd700 !important;
  --bs-btn-bg: #000 !important;
  --bs-btn-border-color: #000 !important;
  --bs-btn-hover-color: #000 !important;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217,164,6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.flash-popup-builder-nav .text-warning {
  --bs-text-opacity: 1;
  color: rgb(0, 0, 0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .flash-popup-builder-nav .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .flash-popup-builder-nav .nav-tabs {
    width: 100%;
    margin-top: 10px;
  }

  .flash-popup-builder-nav .btn-warning {
    margin-top: 10px;
  }
}


.locked-category {
  pointer-events: none; 
  opacity: 0.6; 
  cursor: not-allowed; 
}


/* new css */
.flash-popup-builder-nav{
  background: #F2F2F2;
  box-shadow: 0px 3px 6px #00000047;
}
.flash-popup-builder-nav .nav-tabs .nav-link{
  border-radius: 0;
}
#fpbt-block-tab{
  width: 100%;
    margin-top: 3%;
}
#fpbt-block-tab .search-wrapper-box{
  background: #F2F2F2 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px #00000047;
  padding: 5px;
  /* position: fixed; */
  position: sticky;
  top: 0;
}
#search-box{
     position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 0px !important;
    box-shadow: 0px 3px 6px #00000047;
    background-color:transparent;
}
#search-button{

  padding-left: 12px !important;
  background: transparent;
  border: none;
  position: relative;
    border-left: 1px solid #fcb103;
}
#api-response-list{
  padding: 5px;
  padding: 5px;
  height: 700px;
  overflow-y: scroll;
}
::-webkit-scrollbar {
  width: 2px; /* vertical scrollbar */
  height: 2px; /* horizontal scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 1px;
}

::-webkit-scrollbar-track {
  background: transparent;
}
#fpbt-block-tab .search-container{
      width: 100%;
    background: #000;
  padding: 9px 5px !important;
        box-shadow: 0px 3px 6px #00000047;
}
#fpbt-block-tab input{
width: 100%;
    border: none;
    color: #EEC910;
       font-size: 14px;
    padding-left: 10px !important;
}
#fpbt-block-tab input::placeholder{
      color: #EEC910;
}
  
#fpbt-block-tab .list-group-item{
    margin: 0;
    background: transparent;
    border: none;
    font: 16px / 20px Segoe UI;
    border-radius: 0 !important;
    cursor: pointer;
}
#fpbt-block-tab .list-group-item.active{
  background:#EBB503;
  box-shadow: 0px 3px 6px #00000047;
  color: #000 !important;
}
.card-img-wrap{
    height: 266px;
    box-shadow: 0px 0px 6px #00000080;
    border-radius: 0px;
    position: relative;
    top: -20px;
    left: -20px;
}
#product-cards .card-img-wrap img{
      height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
}
#product-cards .card{
    background: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 4px;
    padding: 0;
    border: none;
    width: 85%;
    margin: 0 auto;
}
.pro-price{
    background: #000000;
    font: 30px / 35px Segoe UI Bold;
    letter-spacing: 0px;
    color: #EEC910;
    border-radius: 6px;
    margin-top: 0 !important;
    padding: 10px;
        height: min-content;
}

#product-cards{
  padding-top: 20px;
  gap: 40px 0;
  height: 780px;
  overflow-y: scroll;
      margin: 0 20px;
}

#product-cards .card-title{
    font: 18px / 25px Segoe UI Semibold;
}
.card-content-wrap{
    padding: 0 10px 10px 10px;
}
.eye-btn{
    box-shadow: 0px 0px 6px #00000047;
    border-radius: 6px !important;
    padding: 4px 20px !important;
    font-size: 24px !important;

}
.demoo-btn{
    background: #EBB503 !important;
    font: 20px / 31px Segoe UI Bold !important;
    letter-spacing: 0px;
    width: 100%;
    /* padding: 5px 90px !important; */
    display: flex!important;
    justify-content: center;
}
#load-more{
    /* display: block !important; */
    display: block;
    background: #050B20 !important;
    font: 18px / 26px Segoe UI !important;
    padding: 9px 30px !important;
    text-transform: capitalize !important;
    border: none !important;
    border-radius: 0;
}
#load-more:hover{
    background: #EBB503 !important;
}
.btn:focus{
outline:unset;
}
.btn:hover{
  background:#000 !important;
  color:#fff !important;
}

/* new add */
button#load-more {
  font: normal normal 600 16px / 30px Outfit;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: uppercase;
  background: #5E2CED;
  margin: 20px auto;
}




@media screen and (max-width:1024px) {
  .pro-price{
    font: 20px / 36px Segoe UI Bold;
  }

}

@media screen and (max-width:767px) {
  #product-cards{
    margin:unset
  }
}