@charset "utf-8";
:root {
    --primary: #EE2969;
    --secondary: #8B218B;
    --secondary_two: #F39200;
    --text: #000000;
    --border-color: #E4DEE6;
    --e-global-typography-primary-font-family: "Poppins";
    --e-global-typography-primary-font-weight: 600;
    --e-global-typography-secondary-font-family: "Poppins";
    --e-global-typography-secondary-font-weight: 400;
}

a {
    color: var(--secondary);
}
a:hover {
    color: var(--primary);
}

.btn-link {
    --bs-btn-color: var(--secondary);
    --bs-btn-hover-color: var(--primary);
    --bs-btn-active-color: var(--primary);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--secondary);
    --bs-btn-border-color: var(--secondary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg:var(--primary);
    --bs-btn-hover-border-color:var(--primary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg:var(--primary);
    --bs-btn-active-border-color:var(--primary);
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary);
    --bs-btn-hover-border-color: var(--secondary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg:var(--secondary);
    --bs-btn-active-border-color:var(--secondary);
}
.page-link {
  color: #fff;
  background-color: var(--secondary);
  border: var(--bs-pagination-border-width) solid var(--secondary);
}
.active>.page-link, .page-link.active {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

a strong,
strong a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight);
    text-decoration: none !important;
}

a,
ol,
span,
ul,
li,
span,
p,
p a,
body {
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-weight: var(--e-global-typography-secondary-font-weight);
    text-decoration: none !important;
}
.mt-6 {
    margin-top: 60px !important;
}
.mt-8 {
    margin-top: 80px !important;
}
.mb-6 {
    margin-bottom: 60px !important;
}
.mb-8 {
    margin-bottom: 80px !important;
}
.logo {
    width: 60px;
    margin: 15px auto 3px;
    display: block;
}
.flex-column {
    flex-direction: column !important;
    margin-top: 20px;
}
.menu-list .nav-link {
    color: #000;
    font-size: 16px;
    padding:4px 4px 4px 6px;
    letter-spacing: .8px;
}
.menu-list .nav-link:hover {
    color: #a24157;
}
.menu-list .nav-link.active {
    color: #f05479;
    font-weight: bold;
}
.section-title {
    color: #b6a1b6;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
    padding-left: 7px;
    text-shadow: 1px 1px #fffdfe;
    pointer-events: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
.dropdown-btn {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    background: #fbf9f9;
    color: #9e7b92;
    padding: 12px 25px 12px 12px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.8px;
    cursor: pointer;
    border-radius: 10px;
    border-top-left-radius: 0;
    box-shadow: 3px 3px 0 0 #dbcfd6;
    margin-top: 15px;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Arrow triangle */
.dropdown-btn::before {
    top: -32px;
    left: 48px;
    width: 0;
    height: 0;
    content: "";
    display: block;
    position: absolute;
    border: 16px solid transparent;
    border-bottom-color: #ddd3d7;
    z-index: 999;
}
.dropdown-btn span.arrow {
    display: inline;
    position: absolute;
    right: 8px;
    font-size: 14px;
    top: 18px;
}
/* Rounded rectangle shape */
.dropdown-btn::after {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    width: 64px;
    height: 16px;
    border-radius: 10px 0 0;
    background-color: #fbf9f9;
    display: block;
    transition: background-color 0.3s ease; 
}
.dropdown-btn:hover {
    background: #fff;
    color: #f05479;
}
.dropdown-btn:hover::after {
    background-color: #fff;
}

/*---------------
    TOP=BAR
---------------*/
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.topbar-left a, 
.topbar-center a {
    font-size: 21px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.circle-btn {
 width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    border: 1px dashed #999;
    background: hsla(0, 0%, 100%, .3);
    padding: 3px;
}
.user-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #8f798f;
}
.user-info {
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.user-info span {
    font-weight:500;
    color: #000;
    font-size: 18px;
    margin-bottom: 2px; 
    display: block;
}

.user-info a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.user-info a:hover {
    text-decoration: underline;
    
}
/*---------------
Couple Section
---------------*/
.couple-section .couple-card {
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 150px;
}
.set-name-link {
    color: #f05479;
    font-weight: bold;
    text-decoration: none;
}
.set-name-link:hover {
    text-decoration: underline;
}
.over h2 {
    font-size: 24px;
}
.over p{
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    color: #000000;
    letter-spacing: .3px;
    padding-bottom: 10px;
}
.over {
    text-align: center;
}
/*---------------
Accordion 
---------------*/

.custom-accordion {
    max-width: 750px;
    margin: 20px auto;
    padding: 25px 20px;
    border-radius: 4px;
    background: hsla(0, 0%, 100%, .12);
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background-color: transparent;
    font-weight: 600;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    letter-spacing: .6px;
    color: var(--secondary);
    cursor: pointer;
    padding:20px 20px 20px 50px; 
    border: none;
    box-shadow: none;
    position: relative; 
    justify-content: flex-start; 
}

.custom-accordion .accordion-button::after {
    content: "";
    position: absolute;
    left: 23px;
    transform: translateY(-50%) rotate(45deg); 
    margin-left: 0;
    border-right: 2px solid #639;
    border-bottom: 2px solid #639;
    top: 23px;
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-135deg);
}
/* Hover effect */
.custom-accordion .accordion-button {
    background-color:#f9ecef;
    border-bottom: 1px solid #e4dee6;
    border: 0;
    color:var(--secondary);
}
.custom-accordion .accordion-button:hover {
    color: var(--secondary);
}
.accordion-item {
    border: 0;
}

/* Arrow like Bootstrap */
.custom-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    margin-left: auto;
    content: "";
    background-image: none;
    border-right: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(225deg);
    margin-top: 5px;
}
.custom-accordion .accordion-body {
    background-color: #f9ecef;
    /* border-top: 1px solid var(--border-color); */
}
.custom-accordion .couple-name a {
    text-decoration: none;
    border-bottom: 1px dashed var(--secondary);
}
.custom-accordion .couple-png {
    display: block;
    max-width: 200px;
    margin: 15px auto 0;
}
.custom-accordion .accordion-item {
    border-top: 1px solid #e4dee6;
}
.custom-accordion .accordion-item:last-child    {
    border-bottom: 1px solid #e4dee6;
}
.custom-accordion .accordion-item:first-child {
    border-top: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary) !important;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    border-right: 2px solid var(--primary) !important;
    border-bottom: 2px solid var(--primary) !important;
}
/*---------------
    Event Information
---------------*/

.post-wedding-body {
    border-bottom: 1px solid #e4dee6;
}
.post-wedding-body {
    text-align: center;
}

.care-one p {
    font-size: 14px;
    margin-bottom: 0;
}
.post-wedding-header a,
.care-one a {
    font-size: 17px;
    text-decoration: none;
    border-bottom: 1px dashed var(--secondary);
}
.wed-one {
    background-color: #f9ecef;
    border-radius: 6px;
    margin: 0 auto;
}
.care-one {
    position: relative;
}
.care-one.date::before {
    content: "";
    display: block;
    background-image: url(../images/location2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 75px;
    height: 75px;
    position: absolute;
    top: -8px;
    right: -150px;
    transform: rotate(-25deg);   
}
.care-one.location::before {
    content: "";
    display: block;
    background-image: url("../images/location1.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 75px;
    height: 75px;
    position: absolute;
    top: -8px;
    right: -150px;
    transform: rotate(-25deg);
}
.guest-card h5 {
    color: var(--secondary);
}
/*---------------
 Guests 
---------------*/
/* Button top center */
.wed-one .btn {
    display: block;
    margin: 0 auto 15px auto;
}
.guest-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px !important;
}
.guest-stats p {
    margin: 0;
    font-size: 20px;
    color: #000;
    font-weight: 400;
}
.guest-stats p strong {
    
    color: #000000;
    font-weight: 400;
    font-size: 18px;
}
.text-center {
    text-align: center !important;
}

/*---------------
Checklist 
---------------*/     
.wedding-checklist .accordion-button {
  background-color: #ffd9e6;
  color: var(--secondary);
  font-weight: 600;
  gap: 20px;
  align-items: center;
}
.month-check:checked + .section-title {
  text-decoration: line-through;
  color: #888;
  opacity: 0.6;
}
.task-check:checked + .subtask-title {
  text-decoration: line-through;
  color: #888;
  opacity: 0.6;
}
.section-title,
.subtask-title {
  transition: all 0.3s ease;
}
[contenteditable="true"]:focus,
[contenteditable="true"]:focus,
.section-title[contenteditable="true"]:focus,
.subtask-title[contenteditable="true"]:focus {
  outline: none;

}
.wedding-checklist .progress {
  background: #fff;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
  text-align: left; 
}

.wedding-checklist .progress-bar {
  background: #fff; 
  height: 100%;
  width: 0%; 
}
.wedding-checklist  .bar-one p {
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.28581;
  color: #182026;
}
.month-section h4 {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 15px;
  text-transform: uppercase !important;
}

.wedding-checklist .accordion-item {
  background: #ffd9e6;
}
/* Accordion header */
.wedding-checklist .accordion-header {
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  position: relative;
  min-height: 51px;
  border: 0 !important;
  align-items: center;
  padding: 10px;
}
.wedding-checklist .accordion-button:focus {
  box-shadow:none;
}

.wedding-checklist .month-check {
  height: 22px !important;
  width: 22px !important;
}

.wedding-checklist .accordion-header h5.section-title {
  font-size: 22px;
  margin: 0;
  color: #182026;
  font-weight: 300;
  line-height: 27px;
  text-transform: none;
}   

.wedding-checklist .accordion-header .counter {
font-size: 14px;
font-weight: 500;
color: #666;
}

/* Accordion arrow */
.wedding-checklist .accordion-arrow {
  font-size: 16px;
  font-weight: bold;
  margin-left: 8px;
  color: #666;
}

.wedding-checklist .accordion-body {
  padding: 15px;
  background: #ffd9e6;
  border: 0 !important;
  padding-top: 0;
}

.accordion-body .description {
  font-size: 14px;
  color: #f05479;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-left: 33px;
  padding-right: 54px;
}

.subtask-container {
  margin-top: 10px;
}

.subtask {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
}

.subtask input.task-check {
  margin-top: 3px;
  accent-color: #444;
}

.subtask-title {
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  font-weight: 300;
}

.checklist-page .month-section:after {
    content: "***";
    display: block;
    font-size: 20px;
    margin: auto;
    width: 50px;
    text-align: center;
    color: var(--secondary);
}
.category-body thead th {
    font-size: 14px;
}
/*---------------
  Checklist CLOSE
---------------*/  
/*---------------
  Budget
---------------*/
/* General */
.budget-one .budget-list {
  padding: 15px;
  background: #f7f7f7;
  border-radius: 6px;
}

/* Search bar */
.budget-one .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}
#searchCategories {
  border: 1px solid #bb92ad;
  border-radius: 6px;
  padding: 10px 10px 10px 35px;
  width: 100%;
}
#searchCategories:focus {
  border: 1px solid #bb92ad;
  outline: none;
  box-shadow: none;
}

/* Category header */
.budget-one .category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 0px 10px;
}
.budget-one .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  width: 8px;
  height: 8px;
  border-right: 2px solid #5c7080;
  border-bottom: 2px solid #5c7080;
  transform: rotate(45deg);
  margin-right: 8px;
}
#cat1-toggle:checked + .category-header .arrow {
  transform: rotate(-135deg);
}

/* Icon selector */
.icon-selector {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
.budget-icon {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.icon-options {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  top: 27px;
  left: 0;
  z-index: 10;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  width: 300px;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.icon-options img {
  width: 24px;
  height: 24px;
  margin: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
.icon-options img:hover {
  transform: scale(1.2);
}
.icon-selector:hover .icon-options {
  display: flex;
}
/* Category body */
.budget-one .category-body {
  padding: 10px;
}
/* Inputs */
.budget-one .item-title,
.budget-one .item-cost {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  outline: none;
  font-size: 15px;
}
.budget-one .item-title {
  flex: 1;
}
.budget-one .item-cost {
  width: 15%;
}

/* Add item button */
.budget-one .add-item-btn {
  background: none;
  border: none;
  color: #8b218b;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

/* Total */
.budget-one .total {
  text-align: end;
}
.budget-one .total h2 {
  font-size: 43px;
  font-weight: 300;
  padding-top: 15px;
  color: #888;
  text-align: right;
  position: relative;
}
.budget-one .total h2::before {
  content: "";
  display: block;
  width: 45%;
  border-top: 1px solid #ccc;
  position: absolute;
  top: 0;
  right: 20px;
}
.budget-one .actual-cost-label {
  font-size: 11px;
  color: #242429;
  font-weight: 300;
  margin-bottom: 10px;
}
.budget-one span.cat-title {
    font-size: 18px;
    color: #242429;
    font-weight: 300;
    margin-top: 0;
    width: 100%;
    padding-right: 0;
}
.budget-page .accordion-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
    position: relative;
}
.budget-page .accordion-button {
    padding: 10px 44px;
    position: relative;
    overflow: hidden;
}
.budget-page .accordion-button::after {
    position: absolute;
    left: 12px;    
}
.overview-page .total .row,
.budget-page .total .row {
    justify-content: end;
}
.category-card .accordion-button:not(.collapsed) {
    background-color: #fff;
}
.total-col {
  text-align: center;
}
/*---------------
 Event Itinerary
---------------*/

div#collapseItinerary {
    background-color: #f9ecef;
}
.event-itinerary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.event-itinerary .itinerary-item {
    display: grid;
    grid-template-columns: 1fr 20px 1fr;
}

.event-itinerary .itinerary-time    {
    display: flex;
    flex-direction: column;
    align-items: end;
}
.itinerary-time h3 {
    font-size: 15px;
    font-weight: 400;
    color: #182026;
    margin: 0;
}
.itinerary-time strong {
    font-size: 11px;
    font-weight: 400;
    color: #000000;
}
.event-itinerary .itinerary-duration {
    font-size: 12px;
    color: #182026;
    font-weight: normal;
}
.itinerary-title h3{
    font-size: 15px;
    color: #000000;
    font-weight: 400;
}
.event-itinerary .itinerary-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-itinerary .itinerary-line::before {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0;
    width: 2px;
    border-right: 1px dotted #cabaca;
}
.event-itinerary .itinerary-dot {
    width: 9px;
    height: 9px;
    border: 1px dotted #000000;
    z-index: 1;
    background: #f7f5f8;
    border-radius: 100%;
    position: absolute;
    top: 5px;
    left: 6px;
}

/*---------------
wedding-project
---------------*/
.project-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.folder-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 220px;
    height: 150px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #5d2c73;
    
    transition: all 0.3s ease;
}
.folder-card.solid::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    width: 64px;
    height: 16px;
    border-radius: 10px 0 0;
    background-color: #fff;
    transition: left .1s, background-color .3s;
}
.folder-card.solid::after {
    content: "";
    position: absolute;
    top: -32px;
    left: 29%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 16px solid transparent;
    border-bottom-color: #fff;
    transition: border-bottom-color 0.3s;
}
.folder-card.dashed::before {
    content: "";
    display: block;
    position: absolute;
    top: -16px;
    left: -2px;
    width: 88px;
    height: 16px;
    border-top: 2px dashed #639;
    border-right: 2px dashed #639;
    border-left: 2px dashed #639;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.folder-card.dashed::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 84px;
    width: 115px;
    border-top: 2px dashed #639;
}
.folder-card.solid {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
    border-top-left-radius: 0;
}
.folder-card.dashed {
    background-color: transparent;
    border-radius: 25px;
    border-top-left-radius: 0;
    margin: 0 14px 39px;
    padding: 10px;
    border: 2px dashed #639;
    border-top: 0;
    position: relative;
    top: 0;
    text-align: center;
    cursor: pointer;
}
.folder-card.solid:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border-color: #c6b3cf;
    transition: box-shadow .1s ease-in-out, top .1s ease-in-out;
    top: -1px;
}
.folder-card.dashed:hover {
    text-decoration: none;
    color: #8c44d3;
    box-shadow: 3px 3px 0 0 #dbcfd6;
    transition: box-shadow .1s ease-in-out, top .1s ease-in-out;
    top: -1px;

}
.folder-card.solid:hover::before {
    background-color: #fff;
}
.folder-card.solid:hover::after {
    border-bottom-color: #fff;
}
.folder-card.dashed:hover {
    border-color: #6a2e82;
}
.folder-body {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    height: 100%;
    width: 100%;
}
.folder-body h3 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

.folder-body p {
    font-size: 12px;
    color: #f02869;
    text-align: center;
    margin-bottom: 0;
}
.folder-footer p {
    font-size: 12px;
}
.folder-body h4 {
    font-size: 12px;
    color: #639;
    margin: 0;
    text-align: center;
}
.plus-sign {
    font-size: 42px;
    font-weight: 300;
    color: #8c4da1;
    line-height: 1;
}
.project-cards {
    padding-top: 60px;
}

/*---------------
    Create-page
---------------*/
/* Container */
.section {
    text-align: center;
    margin: 60px auto;
}
.create-page .cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 50px;
}
.create-page .card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    width: 200px;
    height: 350px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.create-page .card .logo {
    width: 120px;
    height: auto;
}
.create-page .card p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: var(--secondary);
}
.create-page .card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
.over.text-center h3 {
    font-weight: 300;
    font-size: 33px;
}
.terms {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
    text-align: center;
}
.terms a {
    color: var(--secondary);
    text-decoration: none;
}
.terms a:hover {
    text-decoration: underline !important;
}
.wdpt-sidebar-box {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}
.projects-page {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wdpt-sidebar-collapse {
    padding: 30px;
    height: 100%;
    border-right: 1px solid var(--border-color);
}
.wdpt-sidebar-box .btn.btn-primary i {
    transition: all 400ms ease;
}
.wdpt-sidebar-box .btn.btn-primary.collapsed i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: all 400ms ease;
}
.wdpt-sidebar-collapse-body {
    min-width: 260px;
}
.wdpt-sidebar-collapse-body .btn.btn-primary {
    display: none;
}
.wdpt-sidebar-box {
    position: relative;
}
button.btn.btn-primary.wdpt-sidebar-box-btn-main {
    top: 10px;
    position: absolute;
    right: -51px;
}
.form-control {
    padding: 12px 12px;
}
button.budget-chart-tooltip {
    max-width: 40px;
    min-height: 100%;
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    transition: background .1s;
    border: 0;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    background-color: #8b219840;
}
button.budget-chart-tooltip:hover {
    background-color: #8b219859;
}
.chart-container {
    display: flex;
    height: 200px;
}
img.bride-guest-png.p-2,
img.groom-guest-png.p-2 {
    width: 80px;
}
.guest-card {
    background-color: #fff;
}
.guest-icon img {
    padding: 0 15px !important;
    height: 46px;
}
.guest-row .flex-grow-1 {
    max-width: 308px;
}
.overview-page input#ceremony_date {
    background-color: transparent;
    padding: 0;
    border: 0;
    width: fit-content;
}
.ceremony-details-page input#reception_date,
.ceremony-details-page input#ceremony_date {
    background-color: transparent;
    padding: 0;
    border: 0;
    width: fit-content;
    margin: auto;
}
.d-flex.ceremony-details-page .download-btn-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ceremony-details-page .card-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.ceremony-details-page .card {
    background: #fafafa;
    border: 1px solid #e5dff3;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s ease;
    width: -webkit-fill-available;
}
.ceremony-details-page .card:hover {
    background: #f3ecf9;
}
.ceremony-details-page  .ceremony-details-page .card a {
    color: #7c4d99;
    text-decoration: none;
    font-weight: bold;
}
.ceremony-details-page textarea {
    width: 100%;
    min-height: 100px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    resize: vertical;
}
.ceremony-details-page .upload-box {
    border: 2px dashed #a77dc2;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    background: #fefefe;
}
.ceremony-details-page .upload-box:hover {
    background: #f9f3ff;
}
.ceremony-details-page .upload-box input {
    display: none;
}
.ceremony-details-page .upload-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background: #a77dc2;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.ceremony-details-page .upload-btn:hover {
    background: #8d63a8;
}
.ceremony-details-page .preview {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 15px;
    justify-content: center;
}
.ceremony-details-page .preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}
.ceremony-details-page .download-btn {
    display: inline-block;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    background: #7c4d99;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}
.ceremony-details-page .download-btn:hover {
    background: #623a7a;
}



/*---------------
   VENDROS START 
---------------*/
.vendors-wrapper {
     position: relative;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 8px;
    background: #f0ebea;
}

.vendors-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  
}

.vendor-card {
  position: relative;
  border-radius: 10px;
  height: 300px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3); 
}

.vendor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Purple overlay */
.vendor-header::before,
.vendor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(139, 33, 139, 0.5) 60%,
    rgba(238, 41, 105, 0.5) 100%
  );
  z-index: 1;
}

.vendor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vendor-card .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #8B218B;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    z-index: 3;
    letter-spacing: .6px;
}

/* 🔹 3 dots button */
.vendor-card .menu-dots {
 position: absolute;
  top: 15px;
  right: 9px;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 3;
  border-radius: 3px;
  background: transparent;
  transition: background 0.2s  ease, transform 0.2s ease;
}

.vendor-card .menu-dots span {
  width: 5px;
  height: 5px;
  background: #f05479;
  border-radius: 50%;
  display: block;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* Card hover → container white, dots red */
.vendor-card:hover .menu-dots {
  background: #ffffff47;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.vendor-card:hover .menu-dots span {
  background: #f05479;
}

/* Dots hover → container blue, dots red */
.vendor-card .menu-dots:hover {
  background: #fb5f8057;
  transform: translateY(-1px);
}

.vendor-card .menu-dots:hover span {
  background: #f05479;
  transform: scale(1.1);
}

/* Dropdown menu */
.vendor-card .menu-dropdown {
  position: absolute;
  top: 40px;
  right: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 4;
}

.vendor-card  .dropdown-menu-end.show {
  background: #fff;
  border-radius: 3px;
  color: #182026;
  list-style: none;
  margin: 0;
  min-width: 180px;
  padding: 5px;
  text-align: left;
  box-shadow: 0 0 0 1px rgba(16, 22, 26, .1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, .2);

}

.vendor-card .menu-dropdown .menu-item {
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.vendor-card .menu-dropdown .menu-item:hover {
  background: #f1f1f1;
}

.vendor-card .overlay {
  position: absolute;
  bottom: 47px;
  left: 0;
  right: 0;
  padding: 15px;
  color: #fff;
  z-index: 2;
}

.vendor-card .role {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  text-rendering: optimizelegibility;
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, .8);
  letter-spacing: .4px;
}

.vendor-card .name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, .8);
    letter-spacing: .4px;
}

/* Add Vendor Card */
.vendor-card.add-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border: 2px dashed #bbb;
  color: #333;
}

.vendor-card.add-card::before {
  display: none;
}

.vendor-card.add-card .plus {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.vendor-card.add-card .add-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.vendor-card::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 96%;
  height: 96%;
  border: 1px dashed #6b5352;
  border-radius: 6px;
  opacity: .5;
  z-index: 2;
  pointer-events: none;
  margin: auto;
  bottom: 0;
  right: 0;
}
/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
/* Popup container */
.popup-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  max-width: 800px;   /* width control */
  margin: auto;
  padding: 20px;
  overflow: hidden;
}

/* Close (cross) button */
.popup-close {
  position: absolute;
  top: -3px !important;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #8B218B;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.2s ease-in-out;
}
.popup-close:hover {
  color: #EE2969; /* hover red */
}
/* Popup Box */
.popup-content.vendor-details {
  background: #fff;
  width: 60%; 
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Vendor Cover */
.vendor-cover {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.vendor-cover img.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-header {
  position: relative;
}
.vendor-logo {
  width: 90px;
  height: 90px;
  border-radius: 100%;
}

/* Title text inside cover */
.vendor-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 1;
}
.vendor-cover .vendor-title .role {
  font-size: 14px;
  opacity: 0.9;
}
.vendor-title .name {
  font-size: 34px;
  font-weight: bold;
  margin: 5px 0;
}


.profile-name {
    margin-left: 20px;
}
.desc p {
  color: #fff ;
}
.vendor-title .vendor-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}
.vendor-title .stars {
  color: #fff;
  font-size: 18px;
}
.vendor-title .desc {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Right side (price + button) */
.vendor-actions {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
}
.price-range {
  text-align: right;
  color: #fff;
}
.price-range small {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}
.price-range .price {
  font-weight: 700;
  font-size: 16px;
}


.nav-tabs .nav-link {
    border: none !important;
    background: transparent !important;
    color: #242429 !important; /* Black text */
    font-weight: 600;
    font-size: 14px;
    padding: 10px 25px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect (text black hi rahe) */
.nav-tabs .nav-link:hover {
    color: #000 !important;
}

/* Purple underline for active tab */
.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8B218B; /* purple underline */
    border-radius: 2px;
}

.nav-item span{
    display: inline-block;
    width: auto;
    min-width: 18px;
    height: 18px;
    border: 1px solid #bac1c1;
    border-radius: 50px;
    margin-left: 0px;
    text-align: center;
    font-size: 11px;
    padding: 4px 5px 0;
    color: #484848;
}

.tab-content {
    background-color: #f4f4f4;
}

.card  {
    background: #fff;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .0705882353);
    border-radius: 5px;
    border:none;
}
.card h5 {
    font-weight: 600;
    color: #242429;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 20px;
}
.card  p {
    font-size: 14px;
    line-height: 22px;
        color: #242429;
}
.card i {
  color: #9d9d9d !important;
  font-size: 20px;
}

/* Open Hours Collapse Button */
/*button*/

/* Open hours list */
#openHoursCollapse ul li {
  font-weight: 400;
  font-size: 14px;
  color: #242429;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

#openHoursCollapse ul li:last-child {
  border-bottom: none;
}

.work-hours-timezone {
  font-size: 13px;
  color: #242429;
  margin-top: 12px;
  font-style: italic;
  text-align: end;
}
.actions i ,
.card i.la.la-user.me-1,
.card i.la.la-angle-down.arrow-icon {
    background-color: #f4f4f4;
    padding: 5px;
    border-radius: 50%;
}
.card  i.la.la-glass {
    background-color: #f05479;
    padding: 10px;
    border-radius: 50%;
    color: #fff !important;
}
.vendor-cover i.la.la-envelope {
    color: #fff !important;
}

.card .mt-3 a i,
.card  i.la.la-map-marker.me-1 {
    border-radius: 50%;
    color: #555558 !important;
    background: #f4f4f4;
    padding: 10px;
}
.card .mt-3 a:first-child i:hover {
    background: #3b5998; /* Facebook blue */
    color: #fff !important;
}

/* Twitter hover */
.card .mt-3 a:nth-child(2) i:hover {
    background: #242429;
    color: #fff !important;
}

/* Instagram hover */
.card .mt-3 a:last-child i:hover {
    background: #f05479;
    color: #fff !important;
}

.card  i.la.la-map-marker.me-1:hover {
    background-color: #8B218B;
    color: #fff !important;
}
.d-flex .align-items-center p {
    color: #242429 !important;
    font-size: 14px;
    margin: 0;
}
/* Arrow rotates when button is expanded */
button[aria-expanded="true"] .la-angle-down {
  transform: rotate(180deg);
}

.la-angle-down {
  transition: transform 0.3s ease;
  display: inline-block; /* important for transform */
}
.modal-body  textarea.form-control,
.modal-body  input.form-control {

    width: 100%;
    display: block;
    border: none;
    resize: none;
    line-height: 18px;
    background-color: transparent;
    padding: 14px 0;
    color: #242429;
    outline: none;
    font-size: 14px;
    border-bottom: 1.5px solid rgba(0, 0, 0, .2);
    transition: padding .25s 
ease-in-out;

}
.modal-body  .form-control:focus {
    border-color: #8B218B;
        outline: 0;
    box-shadow: none;
}
.modal-body  .form-control::placeholder  {
    color: #242429;
}


.section-three {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.suggested-cards-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.suggested-card-one {
  width: 370px !important;
    background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.suggested-card {
  background-color: #fff;
  /*width: 370px;*/
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.suggested-card-one:hover,
.suggested-card:hover {
  transform: translateY(-5px);
}

/* ---------- IMAGE & OVERLAY EFFECT ---------- */
.card-top {
  position: relative;
  z-index: 1;
}
.card-top img.main-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  transition: all 0.4s ease-in-out;
  filter: brightness(1);
}
.suggested-card-one:hover .card-top img.main-img,
.suggested-card:hover .card-top img.main-img {
  transform: scale(1.05);
  filter: brightness(0.55) saturate(1.2);
}

/* Overlay gradient like second box */
.card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  border-radius: 10px 10px 0 0;
  z-index: 10;
}
.suggested-card-one:hover .card-top::before,
.suggested-card:hover .card-top::before {
  opacity: 1;
}

/* ---------- TOP ICONS ---------- */
.top-icons {
  position: absolute;
  top: 15px;
  left: 10px;
  color: #fff;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  z-index: 15;
}

.top-icons span {
  font-weight: 400;
  font-size: 13px;
  padding: 7px 5px;
  align-items: center;
  color: #fff;
  background: transparent;
  border: 1.5px solid hsla(0, 0%, 100%, .3);
  border-radius: 5px;
  line-height: 17px;
  height: 32px;
}

.suggested-card:first-child .top-icons span:first-child {
  border-color: #eda900;
  color: #eda900;
}

.suggested-card:nth-child(2) .top-icons span:first-child,
.suggested-card:nth-child(3) .top-icons span:first-child {
  border-color: #3f4199;
  color: #3f4199;
}

.suggested-card .top-icons span:first-child:hover {
  border-color: #fff;
  color: #fff;
}


.top-icons .stars i {
  color: #fff;
}

.rating-box {
  background-color: #28a745;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}

.open-status {
  background-color: #28a745;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}

.open-status.closed {
  background-color: #dc3545;
}

/* ---------- BADGE IMAGE ---------- */
.badge-img {
  position: absolute;
  bottom: -30px;
  left: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  z-index: 15;
}

/* ---------- CARD BOTTOM ---------- */
.card-bottom {
  padding: 40px 15px 15px;
  text-align: left;
  position: relative;
  z-index: 15;
  transition: transform 0.3s ease-in-out;
}

.card-bottom h6 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
  letter-spacing: 0;
}

.verified {
  color: #00aaff;
  font-size: 18px;
}

.card-bottom p {
  font-size: 14px;
  color: #7e7e89;
  margin: 5px 0 15px;
}

/* ---------- EXTRA INFO ---------- */
.extra-info {
  display: none;
  font-size: 13px;
  color: #000;
  margin-top: -10px;
  margin-bottom: 15px;
  transition: opacity 0.3s ease;
}

.suggested-card:hover .extra-info {
  display: block;
}

.extra-info p {
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 2px;
  color:#242429;
}

.extra-info i {
    color: #a6a6ab;
    font-size: 18px;
}

.extra-info .separator {
  color: #fff;
  margin: 0 8px;
}

/* ---------- FOOTER ---------- */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category {
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #242429;
  font-size: 14px;
  text-overflow: ellipsis;
  font-weight: 400;
}

.category i {
  font-size: 18px;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  padding-top: 0;
  display: flex;
  background-color: #f05479;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
}
.category  i.las.la-clock,
.category i.las.la-desktop,
.category i.las.la-basketball-ball {
  background-color: #3f4199; 
  color: #fff;
}
/* Heart and Search icons always visible */
.actions i {
  font-size: 18px;
  margin-left: 12px;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}
p.desc.mb-0 {
  color: #fff !important; 
}




.ratings-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-card h6 {
  color: #242429;
  font-weight: 600;
  font-size: 14px;
      margin: 0px;
      text-transform: none;
}
.rating-item span {
  font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 3px;
}
.stars i {
  font-size: 18px;
  color:  #242429 !important;
}
.stars.mb-3 {
  position: absolute;
    right: 15px;
    top: 13px;
    bottom: 0;
}
.review-content p {
    margin-top: 10px;
}
.avatar-circle {
  background: #f05479;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.reply-link i {
  font-size: 18px;
}

.reply-link:hover {
  color: #3f4199;
}

label {
  font-size: 14px;
  color: #242429;
  font-weight: 600;
  margin-top:10px;
}
.upload-section-one .upload-box-one {
  width: 100px;
  height: 100px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.upload-section-one .upload-box-one:hover {
  border-color: #ddd;
  color: #6c1cff;
}
p.form-check {
  font-size: 12px;
  margin-left: -12px;
  line-height: 1.8em;
}
.card-top img.event-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  transition: all 0.4s 
  ease-in-out;
  filter: brightness(1);
}
.job-one,
.event-bottom {
  padding: 20px 15px 15px;
  text-align: left;
  position: relative;
  z-index: 15;
  transition: transform 0.3s 
ease-in-out;
}
.event-box {
  position: absolute;
  top: -80px;
  bottom: 0;
}
.event-box h6 {
  color: #fff;
  font-size: 14px;
  text-transform: inherit;
}
.event-box p i {
  color: #fff;
  font-size: 20px;
}
.event-box p {
  color: #fff;
  font-size: 13px;
}
.open-status {
  color: #fff !important;
  border: 1px solid #fff !important;
  background: transparent !important;
  padding: 3px 10px;
  border-radius: 4px;
}
.category img.event-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 8px;
}
.job-one img.event-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 8px;
}
.job-one {
  display: flex;
  align-items: center;
}

/* Text area beside image */
.job {
  flex: 1;
}

.job h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 4px;
}
.job-card {
    display: flex;
    gap: 15px;
}
.card-footer-one {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 15px;
    margin-right: 15px;
}



/* ---------- ADD CARD ---------- */
.vendor-card.add-card {
  background: #f9f9ff;
  border: 0;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vendor-card.add-card:hover {
  background: #f2e8ff;
}

.plus {
  font-size: 40px;
  color: #8e44ad;
  line-height: 1;
  margin-bottom: 5px;
}

.add-text {
  color: #8e44ad;
  font-weight: 500;
  font-size: 15px;
}

/* ---------- SEARCH BOX ---------- */
.search-row-one {
  display: flex;
  align-items: center;
}

.search-input-one {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input-one:focus {
  border-color: #8e44ad;
  box-shadow: 0 0 0 2px rgba(142, 68, 173, 0.1);
}

.search-btn-one {
  width: 45px;
  height: 45px;
  border: none;
  background: #8e44ad;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.search-btn-one:hover {
  background: #732d91;
}

/* ---------- BOTTOM ROW ---------- */
.bottom-row-one {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.advanced-btn-one {
  background: transparent;
  border: none;
  color: #8e44ad;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.advanced-btn-one:hover {
  color: #732d91;
  text-decoration: underline;
}

.map-link-one {
  font-size: 15px;
  color: #8e44ad;
  text-decoration: none;
  transition: 0.3s;
}

.map-link-one:hover {
  text-decoration: underline;
  color: #732d91;
}
.vendors-box-one .popup-box-one {
    width: 100%;
    max-width: 900px;
}

.budget-header {
  display: flex;
  gap: 20px;
  justify-content: end;
  margin-bottom: 17px;
}
.budget-header * {
  font-size: 16px !important;
}
.checklist-body .progress-bar {
  background-color: var(--secondary);
}
.notes-textarea {
  position: relative;
}
.notes-textarea .btn-close {
  position: absolute;
  right: 15px;
  top: 24px;
  background-color: #fff;
}
.notes-textarea textarea {
  background: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .3);
  border: 0;
  border-radius: 8px;
  padding: 34px;
}
nav.notes-textarea-nav {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notes-textarea-nav .pagination {
  margin-bottom: 0 !important;
}

select.guest-title {
    width: 80px;
    border: 0;
    outline: 0;
    max-width: 62px;
}
.guest-list-page select {
  appearance: none;
  -webkit-appearance: none; /* For WebKit browsers like Chrome and Safari */
  -moz-appearance: none;    /* For Mozilla Firefox */
  /* For Internet Explorer, target the ::-ms-expand pseudo-element */
  ::-ms-expand {
    display: none;
  }
}
.guest-box_row.row-reverse {
  flex-direction: row-reverse !important;
}
.couple-name-box .couple-name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.couple-name-box.row-reverse .couple-name {
  flex-direction: row-reverse !important;
}
.couple-name-box.row-reverse img {
  transform: scaleX(-1);
}
.sidebar_name {
    justify-content: flex-start;
    width: fit-content;
    max-width: 260px;
    flex-wrap: wrap;
}
.folder-body h3.guest-box_row.d-flex.sidebar_name {
    justify-content: center;
    align-items: center;
    width: 100%;
}
#brideListMain .input-group-text.title-prefix,
#groomListMain .input-group-text.title-prefix {
  padding: 0 !important;
}
.guest-list-page select {
    padding: .375rem .75rem;
}
.my_projects_folder_box {
    position: relative;
}
.dropdown.my_projects_dropdown {
    position: absolute;
    z-index: 99;
    right: 0;
}
a.btn.btn-primary.wdpt-sidebar-box-btn-iner {
    width: fit-content !important;
}
.attached_file_url_box {
    position: relative;
}
a.attached_file_dlet {
    position: absolute;
    background-color: #ee216a;
    color: #fff;
    border-radius: 100%;
    line-height: 18px;
    width: 18px;
    font-size: 14px;
    top: -10px;
    left: -7px;
}
.notes-textarea.page {
    display: none;
}
.event-itinerary-right,
.event-itinerary-center,
.event-itinerary-left {
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-itinerary-right {
  justify-content: left;
}
.event-itinerary-left {
  justify-content: right;
}
.event-itinerary-box {
    padding: 15px 0;
    max-width: 700px;
    margin: auto;
    align-items: center;
    justify-content: center;
    position: relative;
}
.notes-textarea.page.active {
    display: block;
}
.event-itinerary-box .dots-menu {
    position: absolute;
    right: 10px;
    width: auto;
    max-width: none;
    padding: 5px;
    top: 0;
}
.event-itinerary-right .event-title-box {
    max-width: 100%;
}
.list-icon-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.list-icon-options img {
  max-width: 30px;
  cursor: pointer;
}
p.timeline__dialog-duration-item {
    background-color: #fff0f6;
    cursor: pointer;
    padding: 8px 11px;
    border-radius: 10px;
}
p.timeline__dialog-duration-item:hover{
  background-color: #dadada;
}
.month-section .d-flex h4 {
  text-transform: capitalize;
}

.task-list .accordion-header .accordion-button {
    position: relative;
    overflow: hidden;
}

.task-list .accordion-header .accordion-button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background-color: rgb(248 38 100 / 18%);
    z-index: 0;
    transition: width 0.3s ease;
}
.task-list .accordion-header .accordion-button * {
  position: relative;
  z-index: 2;
  margin: 0 !important;
}
p.task-title {
    width: 100%;
}
.task-title .form-control,
.task-title .form-control:active,
.task-title .form-control:focus {
    outline: unset;
    box-shadow: unset;
    border: 0;
    padding: 4px 9px;
}
.task-list [type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1px solid #444444;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-list [type="checkbox"]:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.task-list [type="checkbox"]:checked::after {
    content: "✔";
    color: #fff;
    font-size: 12px;
}
.td-button {
    margin-top: 8px;
}
.projects_action .dropdown-item.active,
.projects_action .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--secondary);
}

.folder-head.projects_action {
    display: flex;
    align-items: end;
    justify-content: end;
    width: 100%;
    margin-top: -13px;
    margin-right: -23px;
}

/* Animation */
@keyframes popupFadeOne {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ✅ Tablet (max-width: 768px) — 2 boxes per row */
@media (max-width: 768px) {
  /* Icons + contact info */
  .extra-info-one p {
    margin: 0;
    font-size: 14px;
  }

  .card-footer-one {
    border-top: 1px solid #ddd;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* ✅ Default (Desktop) */
  .vendors-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    align-items: stretch; /* equal height boxes */
  }

  .vendor-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .vendors-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .vendor-card {
    height: 100%;
    min-height: 260px;
  }

  .vendor-cover {
    height: 220px;
  }

  .vendor-title .name {
    font-size: 22px;
  }

  .vendor-actions {
    position: static;
    justify-content: space-between;
    margin-top: 10px;
  }

  .suggested-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .suggested-card {
    width: 100%;
    max-width: 360px;
  }

  .vendor-card .overlay {
    bottom: 20px;
    padding: 10px;
  }

  .tab-content .card {
    padding: 15px;
  }

  .nav-tabs .nav-link {
    padding: 8px 14px;
    font-size: 13px;
  }

  /* ✅ Popup Fix for Tablet */
  .popup-overlay-one {
    align-items: flex-end;
    justify-content: center;
  }

  .popup-box-one {
    width: 95%;
    max-width: 600px;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }

  /* Slide up animation */
  #open-popup-one:checked ~ .popup-overlay-one .popup-box-one {
    transform: translateY(0);
    opacity: 1;
  }

  .search-input-one {
    font-size: 14px;
    padding: 8px 12px;
  }

  .search-btn-one {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .bottom-row-one {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ✅ Mobile (max-width: 480px) — 1 box per row */
@media (max-width: 480px) {
  .vendors-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .vendor-card {
    min-height: 250px;
    height: 100%;
  }

  .vendor-cover {
    height: 180px;
  }

  .vendor-title .name {
    font-size: 18px;
  }

  .vendor-card .tag {
    font-size: 12px;
    padding: 2px 6px;
  }

  .suggested-card {
    width: 100%;
  }

  .vendor-card .overlay {
    bottom: 15px;
    padding: 8px;
  }

  .nav-tabs .nav-link {
    font-size: 12px;
    padding: 6px 10px;
  }

  .modal-body input.form-control,
  .modal-body textarea.form-control {
    font-size: 13px;
  }

  /* ✅ Popup Fix for Mobile */
  .popup-overlay-one {
    align-items: flex-end;
    justify-content: center;
  }

  .popup-box-one {
    width: 100%;
    max-width: none;
    border-radius: 20px 20px 0 0;
    padding: 18px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.45s ease-in-out;
  }

  #open-popup-one:checked ~ .popup-overlay-one .popup-box-one {
    transform: translateY(0);
    opacity: 1;
  }

  .search-row-one {
    flex-direction: column;
    gap: 10px;
  }

  .search-input-one {
    width: 100%;
  }

  .search-btn-one {
    width: 100%;
    font-size: 16px;
    height: 40px;
  }

  .bottom-row-one {
    flex-direction: column;
    gap: 8px;
  }

  .advanced-btn-one,
  .map-link-one {
    font-size: 14px;
  }
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .create-page .card img {
        width: 100%;
        max-width: 120px;
        height: auto;
    }
    .create-page .card h3 {
        font-size: 16px;
    }
    p.couple-name.p-2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    p.couple-name.p-2 a {
        padding-bottom: 10px;
    }
    .budget-header {
        justify-content: center;
    }
    .care-one.location,
    .care-one.date {
        text-align: center;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .create-page .cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    .create-page .card img {
        width: 100%;
        max-width: 120px;
        height: auto;
    }
    .create-page .card h3 {
        font-size: 22px; 
    }
    .event-itinerary-left {
        justify-content: center;
    }
  .event-itinerary-center {
      display: none;
  }
  .event-itinerary-right .event-title-box {
      border-top: 1px solid #dee2e6;
      padding-top: 8px;
      margin-top: 15px;
  }
  .budget-one .budget-list {
      padding: 10px;
  }
  .category-body tr.item-row {
      display: flex;
      flex-direction: column;
  }
  
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .wdpt-sidebar-collapse {
        position: fixed;
        left: 0;
        background: #fff0f6;
        z-index: 99999;
        top: 0;
    }
    .wdpt-sidebar-collapse-body .btn.btn-primary {
        display: flex;
    }
    .wdpt-sidebar-box-btn-main {
        position: absolute;
        top: 10px;
        left: 10px;
    }
    .wdpt-sidebar-box-btn-iner {
        margin-left: auto;
        margin-top: -15px;
        margin-right: -15px;
        margin-bottom: 20px;
    }
}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

@media (max-width: 768px) {

}

