/**
 * CubeWP Listings Frontend Styles
 *
 * @package cubewp-listings/cube/assets/css
 * @version 1.0.0
 */

/* Frontend Styles */
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.cwp-listings-container {
    width: 100%;
}

.cwp-listings-item {
    margin-bottom: 20px;
}

.cubewp-search-element .cwp-frontend-form-container .cwp-frontend-search-form .cwp-field-container.cwp-field-button button.cwp-submit-search.cubewp-processing-ajax,
.cubewp-search-element .cwp-frontend-form-container .cwp-frontend-search-form .cwp-field-container.cwp-field-button button.cwp-submit-search.cubewp-processing-ajax svg,
.cubewp-search-element .cwp-frontend-form-container .cwp-frontend-search-form .cwp-field-container.cwp-field-button button.cwp-submit-search.cubewp-processing-ajax svg {
    font-size: 0px !important;
    fill: #00000000 !important;
}

.cubewp-search-element .cwp-frontend-form-container .cwp-frontend-search-form .cwp-field-container.cwp-field-button button.cwp-submit-search.cubewp-processing-ajax::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    background: currentColor;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -12px 0 0 currentColor, 12px 0 0 currentColor;
    animation: dot-flashing 1.2s infinite linear;
}

@keyframes dot-flashing {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

/* ============================================
   Coupon Button Styles
   ============================================ */

.cwp-coupon-button-wrapper {
    display: inline-block;
    width: 100%;
}

.cwp-coupon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    box-sizing: border-box;
    padding: 8px 16px;
    transition: all 0.20s ease-in-out;
    background-color: #73cf42;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.cwp-coupon-button .cwp-coupon-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cwp-coupon-button .cwp-coupon-button-icon svg {
    display: block;
    fill: #fff;
}

.cwp-coupon-button:hover {
    text-decoration: none;
}

.cwp-coupon-button:focus {
    outline: 2px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

/* ============================================
   Coupon Modal Styles
   ============================================ */

.cwp-coupon-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    animation: cwp-coupon-modal-fade-in 0.3s ease;
}

@keyframes cwp-coupon-modal-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cwp-coupon-modal-content {
    position: relative;
    height: 100%;
    width: 100%;
    background: #fafafa;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: cwp-coupon-modal-slide-up 0.3s ease;
    z-index: 10000;
}

@keyframes cwp-coupon-modal-slide-up {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cwp-coupon-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
    z-index: 10001;
}

.cwp-coupon-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.cwp-coupon-modal-close:focus {
    outline: 2px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

.cwp-coupon-modal-close svg {
    width: 16px;
    height: 16px;
    display: block;
}

.cwp-coupon-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    height: 100%;
}

.cwp-coupon-modal-copy-text {
    margin: 0;
    font-size: 14px;
    color: #7f7f7f;
    font-weight: 400;
    transition: all 0.3s ease;
}

.cwp-coupon-modal-copy-text.copied {
    color: #28a745;
    font-weight: 600;
}

.cwp-coupon-modal-code-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cwp-coupon-modal-code {
    letter-spacing: 2px;
    color: #333;
    background: #f5f5f5;
    word-break: break-all;
    transition: all 0.3s ease;
    border: solid 1px #dedede;
    border-right: none;
    font-size: 22px;
    font-weight: 700;
    line-height: 39px;
    padding: 3px 10px 0 10px;
    text-align: center;
}

.cwp-coupon-modal-code.copied {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.cwp-coupon-modal-copy-button {
    font-weight: 400;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    background: #007bff;
    border: 2px solid #007bff;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    line-height: 20px;
}

.cwp-coupon-modal-copy-button:hover {
    /* background: #0056b3; */
    /* border-color: #0056b3; */
    /* transform: translateY(-2px); */
    /* box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3); */
}

.cwp-coupon-modal-copy-button:active {
    transform: translateY(0);
}

.cwp-coupon-modal-copy-button:focus {
    outline: 2px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

.cwp-coupon-modal-copy-button.copied {
    background: #28a745;
    border-color: #28a745;
}

.cwp-coupon-modal-copy-button.copied:hover {
    background: #218838;
    border-color: #218838;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .cwp-coupon-modal-content {
        width: 95%;
        padding: 30px 20px;
    }

    .cwp-coupon-modal-code {
        font-size: 20px;
        min-width: 150px;
    }

    .cwp-coupon-modal-copy-text {
        font-size: 14px;
    }

    .cwp-coupon-modal-copy-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cwp-coupon-modal-content {
        padding: 25px 15px;
    }

    .cwp-coupon-modal-code {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .cwp-coupon-modal-copy-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   Post Card Specific Styles
   ============================================ */

.cwp-elementor-post-card.lp_coupon {
    position: relative;
    overflow: hidden;
}

.cwp-elementor-post-card.lp_coupon .cwp-coupon-modal-overlay {
    position: absolute;
}

/* Coupon Discount Type Styles */
.cwp-lp-coupon-discount-type-container.cubewp-elementor-form-field {
    display: flex !important;
    padding: 0 15px;
    justify-content: flex-end;
    gap: 5px;
}

.cwp-lp-coupon-discount-type-container.cubewp-elementor-form-field label {
    color: #000;
    font-size: 12px;
    line-height: 10px;
    cursor: pointer;
}

.cwp-lp-coupon-discount-type-container.cubewp-elementor-form-field .cwp-lp-coupon-discount-type:first-child label {
    border-right: 1px solid #000;
    padding-right: 5px;
}

.cwp-lp-coupon-discount-type-container.cubewp-elementor-form-field input[type="radio"]:checked+label {
    color: #0093ff;
}

/* ============================================
   Menu Image Button Styles
   ============================================ */

.cwp-menu-image-button-wrapper {
    display: inline-block;
    width: 100%;
}

.cwp-lp-menuss-tab-contents .cwp-tab-content {
    display: none;
}

.cwp-lp-menuss-tab-contents .cwp-active-tab-content {
    display: block;
}

.cwp-menu-image-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    box-sizing: border-box;
    gap: 8px;
}

.cwp-menu-image-button:hover {
    text-decoration: none;
}

.cwp-menu-image-button:focus {
    outline: 2px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

.cwp-menu-image-button .cwp-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cwp-menu-image-button .cwp-button-icon svg {
    width: 1em;
    height: 1em;
}

.cwp-menu-image-button .cwp-button-text {
    display: inline-block;
}

/* ============================================
   Menu Image Popup Styles
   ============================================ */

.cwp-menu-image-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.cwp-menu-image-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cwp-menu-image-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.cwp-menu-image-popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.cwp-menu-image-popup-close svg {
    width: 16px;
    height: 16px;
}

.cwp-menu-image-popup-body {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.cwp-menu-image-popup-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .cwp-menu-image-popup-content {
        max-width: 95%;
        max-height: 95%;
    }

    .cwp-menu-image-popup-close {
        top: 5px;
        right: 5px;
        width: 25px;
        height: 25px;
    }

    .cwp-menu-image-popup-close svg {
        width: 14px;
        height: 14px;
    }
}


/* css for lp menus wdget  */

.lp-cubewp-menus {
    background: #fff;
    overflow: hidden;
    border: 1px solid #dedede;
}

.lp-cubewp-menus-top {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #dedede;
    position: relative;
}

.lp-cubewp-menus-top .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000055;
    z-index: 9;
}

.lp-cubewp-menus-top-title {
    color: #fff;
    line-height: 15px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 9;
    position: relative;
}

.lp-cubewp-menus-popular {
    padding: 0 10px;
}

.lp-cubewp-menus-popular-heading {
    color: #FF5A5F;
    font-size: 16px;
    margin-bottom: 16px;
    margin-top: 25px;
    line-height: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 7px;
}

.lp-cubewp-menus-popular-list {
    display: flex;
    flex-wrap: wrap;
}

.lp-cubewp-menus-popular-card-outer {
    width: 33.333%;
    padding: 5px;
    box-sizing: border-box;
}

.lp-cubewp-menus-popular-card {
    max-height: 96px;
    overflow: hidden;
    position: relative;
}

.lp-cubewp-menus-popular-card img {
    width: 100%;
    display: block;
    height: 96px !important;
    object-fit: cover;
}

.lp-cubewp-menus-popular-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
}

.lp-cubewp-menus-popular-card-price,
.lp-cubewp-menus-popular-card-title {
    background-color: rgba(0, 0, 0, .5);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.lp-cubewp-menus-popular-card-price {
    line-height: 24px;
    width: fit-content;
    padding: 2px 11px 0px 7px;
}

.lp-cubewp-menus-popular-card-title {
    line-height: 26px;
    padding: 5px 7px;
}

.lp-cubewp-menus-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0px;
}

.lp-cubewp-menus-section {
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.lp-cubewp-menus-section .title {
    color: #FF5A5F;
    font-size: 16px;
    line-height: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0;
    padding-bottom: 12px;
}

.lp-cubewp-menus-item {
    display: flex;
    align-items: start;
    border-bottom: 1px solid #dedede;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    gap: 15px;
}

.lp-cubewp-menus-item-image {
    width: 65px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
}

.lp-cubewp-menus-item-image i {
    font-size: 14px;
    color: #1d1d1d;

}

.lp-cubewp-menus-popular-card-image {
    height: 96px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
}

.lp-cubewp-menus-item img {
    width: 65px;
    height: 65px;
    border-radius: 2px;
    object-fit: cover;
}

.lp-cubewp-menus-item-info {
    width: calc(100% - 150px);
}

.lp-cubewp-menus-item-title {
    font-size: 16px;
    font-weight: 400;
    display: block;
    color: #333;
    line-height: 16px;
    margin: 0;
    margin-bottom: 4px;
    transition: .3s;
}

.lp-cubewp-menus-item-title:hover {
    color: #FF5A5F;
}

.lp-cubewp-menus-item-description-outer {
    position: relative;
}

.lp-cubewp-menus-item-description {
    color: #797979;
    line-height: 17px;
    font-size: 13px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin: 0;
    max-width: max-content;
    max-height: 36px;
}

.description-tooltip {
    padding: 10px 12px;
    border: 1px solid #D8D8D8;
    border-radius: 3px;
    position: absolute;
    width: 270px;
    z-index: 99;
    bottom: 94%;
    background-color: #f0f0f0;
    left: -10px;
    display: none;
    box-sizing: border-box;
}

.lp-cubewp-menus-item-description-outer:hover .description-tooltip {
    display: block;
    max-height: 184px;
    overflow: auto;
}

.description-tooltip:before {
    border-color: #d8d8d8 transparent;
    border-style: solid;
    border-width: 7px 7px 0;
    bottom: -7px;
    content: "";
    left: 11px;
    position: absolute;
}

.description-tooltip p {
    color: #797979;
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.lp-cubewp-menus-item-price {
    margin-left: auto;
}

.lp-cubewp-menus-item-new-price {
    color: #FF5A5F;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    border: 1px solid #FF5A5F;
    border-radius: 25px;
    padding: 0 17px;
    text-align: center;
    margin-bottom: 5px;
    max-width: 136px;
}

.lp-cubewp-menus-item.lp-cubewp-menus-item-url .lp-cubewp-menus-item-info {
    width: calc(100% - 194px);
}

.lp-cubewp-menus-item-old-price {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #797979;
    text-align: center;
    margin-bottom: 5px;
}

.lp-cubewp-menus-old-price .lp-cubewp-menus-item-old-price {
    text-decoration: line-through;
}

.lp-cubewp-menus-item-spice-level {
    display: flex;
    margin-top: 10px;
}

.lp-cubewp-menus-item-spice-level img {
    width: 12px;
    height: 12px;
}

@media (max-width: 991px) {

    .lp-cubewp-menus-popular-card-outer {
        width: 100%;
    }

    .lp-cubewp-menus-section {
        width: 100%;
    }
}

.order_food_online_container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.order_food_online_header_title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.order_food_online_text {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.order_food_online_container .order_food_online_img {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.order_food_online_container .order_food_online_img img {
    width: 33px;
    height: 33px;
    object-fit: contain;
    border-radius: 5px;
    background-color: #f5f5f5;
}

.order_food_online_container .order_food_online_img a {
    display: inline-block;
    text-decoration: none;
}

.order_online_service_name {
    font-size: 12px;
    color: #666;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}


/* claim form css  */
body .cwp-container.cwp-plans-container {
    max-width: 730px !important;
    background-color: #fff;
    min-height: 600px;
}

body .cwp-claim-paid-forms {
    max-width: 730px !important;
}

.lp-claim-plan-wrapper {
    position: relative;
    background: #fff;
}

.lp-claim-plans-header .lp-close-plan-wrapper {
    padding: 0;
    border-radius: 50%;
    font-size: 11px;
    height: 15px;
    width: 15px;
    position: absolute;
    right: -6px;
    top: -4px;
    background-color: #eff7ff;
    color: #333;
    border: none;
}

.lp-claim-plans-header h3 {
    font-family: Roboto;
    font-size: 22px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-align: center;
}

.lp-claim-plans-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 95px;
    background-size: cover;
    padding: 0 15px;
}

.lp-claim-plans-lists-wrapper {
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.lp-claim-plans-lists-wrapper .lp-claim-plan-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 49%;
}

.lp-claim-plan-list .claim-plan {
    border: 1px solid #3b88dd;
    background: #fff;
    padding: 20px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.claim-plan:has(input[type="radio"]:checked),
.lp-claim-plan-list .claim-plan.is-active {
    background: #d8e7f8;
}

.claim-plan .claim-plan-title {
    display: flex;
    align-items: center;
    gap: 6px;
}

.claim-plan .claim-plan-title input {
    display: none;
}

.claim-plan .claim-plan-title .radio-mark {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #bebebe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-plan .claim-plan-title .radio-mark::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3b88dd;
    display: none;
}

.claim-plan input[type="radio"]:checked+.radio-mark::after {
    display: block;
}

.claim-plan .claim-plan-title .lp-plan-label {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    color: rgb(0, 0, 0);
}

.claim-plan .claim-plan-description {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    color: rgb(0, 0, 0);
}

.claim-plan .claim-plan-description span {
    font-size: 12px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(127, 127, 127);
}

.lp-claim-plans-lists-wrapper .lp-claim-plan-options {
    width: calc(100% - 49%);
    padding-left: 40px;
    margin-left: 30px;
    border-left: 1px solid #dedede;
    height: 266px;
    overflow: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.lp-claim-plans-lists-wrapper .lp-plan-option {
    display: none;
}

.lp-claim-plans-lists-wrapper .lp-plan-option.active {
    display: flex;
    flex-direction: column;
}

.lp-plan-option ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-plan-option ul li span {
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    line-height: 17.1429px;
    color: rgb(0, 0, 0);
}

.lp-plan-option ul li i {
    color: #3b88dd;
    margin-right: 3px;
}

.lp-plan-privacy-checkbox {
    padding: 0 40px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-plan-privacy-checkbox .claim-plan-privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding-top: 20px;
    border-top: 1px solid #dedede;
    margin-bottom: 10px;
}

.claim-plan-privacy-checkbox input[type="checkbox"] {
    display: none;
}

.claim-plan-privacy-checkbox .checkbox-mark {
    width: 15px;
    height: 15px;
    border: 1px solid #797979;
    flex-shrink: 0;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
}

.claim-plan-privacy-checkbox input[type="checkbox"]:checked+.checkbox-mark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #797979;
}

.claim-plan-privacy-checkbox .claim-plan-privacy-text {
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: rgb(107, 107, 107);
}

.lp-plan-option .disabled .fa-times-circle {
    color: #bdd4ee !important;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}


.lp-plan-option {
    display: none !important;
}

.lp-plan-option.active {
    display: block !important;
}

body span.cwp-claim-form-close {
    transform: translate(363px, 24px);
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    background-color: #eff7ff !important;
    color: #333 !important;
    width: 20px;
    height: 20px;
    padding: 4px 0 0 0;
    z-index: 999999;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cwp-claim-form-close span {
    font-size: 17px;
}

.lp-claim-plan-btn {
    padding: 8px 27px;
    border: 1px solid var(--button-border-color);
    margin: 0 0 5px 0;
    border-radius: 4px;
    font-size: 14px;
    width: 40%;
}

@media (max-width: 767px) {

    .lp-claim-plans-lists-wrapper {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .lp-claim-plan-btn {
        width: auto;
    }

    .lp-claim-plans-lists-wrapper .lp-claim-plan-list {
        width: 100%;
        margin-bottom: 25px;
    }

    .lp-claim-plans-lists-wrapper .lp-claim-plan-options {
        width: 100%;
        border: 0;
        padding: 0;
        margin: 0;
    }

    .lp-plan-privacy-checkbox {
        padding: 0 20px 20px 20px;
    }

    .lp-plan-list-popup-wrapper>.container {
        height: 80vh;
    }

    .lp-plan-list-popup-wrapper {
        height: 80vh;
        overflow: scroll;
    }

}


/* ============================================
   Listing Price Widget Styles
   ============================================ */

.cwp-listing-price-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: inherit;
}

.cwp-listing-price-symbols {
    display: inline-flex;
    align-items: center;
}

.cwp-listing-price-symbol {
    display: inline-block;
    line-height: 1;
}

.cwp-listing-price-label-bottom {
    display: block;
}

.cwp-listing-price-tooltip-wrap {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    margin-bottom: 6px;
    z-index: 10;
    pointer-events: none;
}

.cwp-listing-price-tooltip-text {
    display: inline-block;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.3;
}

.cwp-listing-price-wrapper:hover .cwp-listing-price-tooltip-text {
    opacity: 1;
    visibility: visible;
}

.cwp-listing-price-tooltip-text.cwp-listing-price-tooltip-arrow {
    position: relative;
}

.cwp-listing-price-tooltip-text.cwp-listing-price-tooltip-arrow::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

/* ======= Site Loader Styles ======= */

.cwp-site-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cwp-site-loader-overlay.cwp-site-loader-position-top {
    align-items: flex-start;
    padding-top: 20vh;
}

.cwp-site-loader-overlay.cwp-site-loader-position-bottom {
    align-items: flex-end;
    padding-bottom: 20vh;
}

.cwp-site-loader-overlay.cwp-site-loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Custom image loader */
.cwp-site-loader-custom-wrap {
    line-height: 0;
}

.cwp-site-loader-custom-wrap img {
    display: block;
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
}

.cwp-site-loader-overlay.cwp-site-loader-size-small .cwp-site-loader-custom-wrap img {
    max-width: 60px;
    max-height: 60px;
}

.cwp-site-loader-overlay.cwp-site-loader-size-large .cwp-site-loader-custom-wrap img {
    max-width: 180px;
    max-height: 180px;
}

/* Spinner */
.cwp-site-loader-spinner {
    border-radius: 50%;
    border-style: solid;
    border-color: currentColor;
    border-top-color: transparent;
    animation: cwp-site-loader-spin 0.8s linear infinite;
}

.cwp-site-loader-overlay.cwp-site-loader-size-small .cwp-site-loader-spinner {
    width: 28px;
    height: 28px;
    border-width: 3px;
}

.cwp-site-loader-overlay.cwp-site-loader-size-medium .cwp-site-loader-spinner {
    width: 44px;
    height: 44px;
    border-width: 4px;
}

.cwp-site-loader-overlay.cwp-site-loader-size-large .cwp-site-loader-spinner {
    width: 64px;
    height: 64px;
    border-width: 5px;
}

@keyframes cwp-site-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Dots */
.cwp-site-loader-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cwp-site-loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    animation: cwp-site-loader-dots 1.4s ease-in-out infinite both;
}

.cwp-site-loader-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.cwp-site-loader-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.cwp-site-loader-overlay.cwp-site-loader-size-small .cwp-site-loader-dots span {
    width: 6px;
    height: 6px;
    gap: 5px;
}

.cwp-site-loader-overlay.cwp-site-loader-size-large .cwp-site-loader-dots span {
    width: 14px;
    height: 14px;
    gap: 10px;
}

@keyframes cwp-site-loader-dots {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Ring */
.cwp-site-loader-ring {
    display: inline-block;
    border-radius: 50%;
    border-style: solid;
    border-color: currentColor;
    border-top-color: transparent;
    animation: cwp-site-loader-spin 1s linear infinite;
}

.cwp-site-loader-overlay.cwp-site-loader-size-small .cwp-site-loader-ring {
    width: 28px;
    height: 28px;
    border-width: 3px;
}

.cwp-site-loader-overlay.cwp-site-loader-size-medium .cwp-site-loader-ring {
    width: 44px;
    height: 44px;
    border-width: 4px;
}

.cwp-site-loader-overlay.cwp-site-loader-size-large .cwp-site-loader-ring {
    width: 64px;
    height: 64px;
    border-width: 5px;
}

/* Pulse */
.cwp-site-loader-pulse {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: currentColor;
    animation: cwp-site-loader-pulse 1.2s ease-in-out infinite;
}

.cwp-site-loader-overlay.cwp-site-loader-size-small .cwp-site-loader-pulse {
    width: 28px;
    height: 28px;
}

.cwp-site-loader-overlay.cwp-site-loader-size-large .cwp-site-loader-pulse {
    width: 64px;
    height: 64px;
}

@keyframes cwp-site-loader-pulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Grid Show on Archive */
.cwp-listings-main-container .elementor-container {
    display: flex !important;
    transition: all 0.5s ease-in-out;
}

.cwp-listings-left-panel,
.cwp-listings-right-panel,
.cwp-listings-main-container .cwp-grids-container .cwp-elementor-post-card {
    transition: all 0.5s ease-in-out !important;
}

.cwp-listings-width-50 .cwp-listings-left-panel {
    width: 50% !important;
}

.cwp-listings-width-50 .cwp-listings-right-panel {
    width: 50% !important;
}

.cwp-listings-width-100 .cwp-listings-left-panel {
    width: 100% !important;
}

.cwp-listings-width-100 .cwp-listings-right-panel {
    width: 0% !important;
    opacity: 0;
    visibility: hidden;
}

.cwp-listings-main-container.cwp-listings-width-50 .cwp-grids-container .cwp-elementor-post-card {
    width: 50% !important;
}

.cwp-listings-main-container.cwp-listings-width-100 .cwp-grids-container .cwp-elementor-post-card {
    width: 33.33% !important;
}

/* Event Posts Widget */
.cwp-lp-event-posts-wrap {
    width: 100%;
}

.cwp-lp-event-posts-header {
    margin-bottom: 1em;
}

.cwp-lp-event-posts-header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.cwp-lp-event-posts-title {
    margin: 0 0 0.25em;
    font-size: 1.5em;
    line-height: 1.2;
}

.cwp-lp-event-posts-desc {
    margin: 0;
    opacity: 0.9;
}

.cwp-lp-event-posts-filters ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 0.8em;
    margin-bottom: 1.5em;
    align-items: center;
}

.cwp-lp-event-posts-filters li {
    line-height: 100%;
}

.cwp-lp-event-posts-filters a::before {
    content: '';
    width: 100%;
    height: 4px;
    background: #0000;
    position: absolute;
    top: 17px;
    border-radius: 5px 5px 0px 0px;
    transition: 0.3s;
}

.cwp-lp-event-posts-filters a:hover::before {
    background: #C73048;
}

.cwp-lp-event-posts-filters a {
    text-decoration: none;
    transition: opacity 0.2s;
    position: relative;
}

.cwp-lp-event-posts-filters a:hover {
    opacity: 0.8;
}

.cwp-lp-event-posts-filters a.active {
    font-weight: 600;
    pointer-events: none;
}

.cwp-lp-event-posts-grid {
    display: grid;
    width: 100%;
    box-sizing: border-box;
}

.cwp-lp-event-posts-grid--col-1 {
    grid-template-columns: 1fr;
}

.cwp-lp-event-posts-grid--col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cwp-lp-event-posts-grid--col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cwp-lp-event-posts-grid--col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cwp-lp-event-posts-grid--col-5 {
    grid-template-columns: repeat(5, 1fr);
}

.cwp-lp-event-posts-grid--col-6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1024px) {
    .cwp-lp-event-posts-grid--col-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cwp-lp-event-posts-grid--col-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .cwp-lp-event-posts-grid--col-4,
    .cwp-lp-event-posts-grid--col-3,
    .cwp-lp-event-posts-grid--col-2 {
        grid-template-columns: 1fr;
    }
}

.cwp-lp-event-posts-grid .lp-custom-col {
    width: 100% !important;
}

/* Event posts processing (skeleton) cards – direct children of .cwp-lp-event-posts-grid */
.cwp-lp-event-posts-processing-card {
    border-radius: 5px;
    overflow: hidden;
}

.cwp-lp-event-posts-processing-thumb {
    height: 180px;
    width: 100%;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: cwp-lp-shine 1.5s linear infinite;
    border-radius: 5px 5px 0 0;
}

.cwp-lp-event-posts-processing-content {
    height: 120px;
    background: #fff;
    padding: 1em;
    border: 1px solid #e0e0e0;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.cwp-lp-event-posts-processing-content p {
    height: 14px;
    margin: 0 0 10px 0;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: cwp-lp-shine 1.5s linear infinite;
    width: 100%;
    border-radius: 2px;
}

.cwp-lp-event-posts-processing-content p:nth-child(2) {
    width: 75%;
}

.cwp-lp-event-posts-processing-content p:nth-child(3) {
    width: 35%;
}

@keyframes cwp-lp-shine {
    to {
        background-position-x: -200%;
    }
}

.cwp-lp-event-card {
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cwp-lp-event-card:hover {
    transform: translateY(-2px);
}

.cwp-lp-event-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.cwp-lp-event-card-image {
    width: 100%;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center;
    background-color: #eee;
}

.cwp-lp-event-card-content {
    padding: 1em;
}

.cwp-lp-event-card-title {
    margin: 0 0 0.35em;
    font-size: 1.1em;
    line-height: 1.3;
}

.cwp-lp-event-card-date {
    margin: 0 0 0.5em;
    font-size: 0.9em;
    opacity: 0.85;
}

.cwp-lp-event-card-excerpt {
    margin: 0 0 0.5em;
    font-size: 0.9em;
    line-height: 1.4;
}

.cwp-lp-event-card-attendees {
    display: inline-block;
    font-size: 0.85em;
    margin-right: 0.5em;
}

.cwp-lp-event-card-read-more {
    display: inline-block;
    margin-top: 0.5em;
    font-size: 0.9em;
    font-weight: 600;
}

/* Card style 2: image left */
.cwp-lp-event-posts-grid--grid_style2 .cwp-lp-event-card-link {
    display: flex;
    flex-direction: row;
    text-align: left;
}

.cwp-lp-event-posts-grid--grid_style2 .cwp-lp-event-card-image {
    width: 40%;
    min-width: 140px;
    padding-bottom: 0;
    height: 160px;
    flex-shrink: 0;
}

.cwp-lp-event-posts-grid--grid_style2 .cwp-lp-event-card-content {
    flex: 1;
}

/* Card style 3: minimal (no image block if no image) */
.cwp-lp-event-posts-grid--grid_style3 .cwp-lp-event-card-content {
    padding: 1.25em;
}

.cwp-lp-event-posts-grid:has(.cwp-lp-event-posts-empty) {
    display: block;
}

.cwp-lp-event-posts-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cwp-lp-event-posts-empty-title {
    color: #333;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1em;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.cwp-lp-event-posts-empty-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #7f7f7f;
    margin: 0 0 10px;
    text-align: center;
}

/* ==========================================================================
   Event Calendar Widget (cwp-lp-event-calendar-*)
   ========================================================================== */

.cwp-lp-event-calendar-wrap {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Custom full-calendar spinner (requested) */
.cwp-lp-event-calendar-spinner {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 11;
    width: 100%;
    min-height: 265px;
    text-align: center;
    font-size: 79px;
    color: #7f7f7f;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.cwp-lp-event-calendar-wrap.is-loading .cwp-lp-event-calendar-spinner {
    display: flex;
}

/* Hide calendar UI while loading (spinner takes over) */
.cwp-lp-event-calendar-wrap.is-loading .cwp-lp-event-calendar-inner {
    visibility: hidden;
}

.cwp-lp-event-calendar-spinner-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: #333;
    border-radius: 50%;
    animation: cwp-lp-event-calendar-spin 0.8s linear infinite;
}

@keyframes cwp-lp-event-calendar-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header & navigation */
.cwp-lp-event-calendar-header {
    padding: 23px 26px;
    margin: 0px;
}

.cwp-lp-event-calendar-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75em;
}

.cwp-lp-event-calendar-header-title {
    flex: 1;
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.cwp-lp-event-calendar-nav a {
    text-decoration: none;
    padding: 0;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
    color: #888;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.cwp-lp-event-calendar-nav a i {
    color: #ff5a5f;
}

.cwp-lp-event-calendar-nav a:hover {
    text-decoration: none;
    color: #ff5a5f;
}

/* View switcher (Map / List) */
.cwp-lp-event-calendar-view-switcher {
    margin-bottom: 1em;
}

.cwp-lp-event-calendar-view-switcher-list,
.cwp-lp-event-calendar-page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.cwp-lp-event-calendar-view-switcher-list li {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.cwp-lp-event-calendar-view-switcher-list li.cwp-lp-event-calendar-view-list span {
    background: #fff;
    color: #888888;
    width: 100%;
    line-height: 36px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid #dedede;
}

.cwp-lp-event-calendar-view-switcher-list li span {
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cwp-lp-event-calendar-view-switcher-list li span i {
    margin-right: 8px;
}


.cwp-lp-event-calendar-view-switcher-list li.cwp-lp-event-calendar-view-map span {
    background: #fff;
    color: #888888;
    width: 100%;
    line-height: 36px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top: 1px solid #dedede;
    border-left: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.cwp-lp-event-calendar-view-switcher-list li.cwp-lp-event-calendar-view-map.active span {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.cwp-lp-event-calendar-view-switcher-list li.cwp-lp-event-calendar-view-list.active span {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.cwp-lp-event-calendar-view-switcher-list li.active span {
    color: #fff;
    background: #ff5a5f;
    border-color: #ff5a5f;
}

/* Modern: 50% left (list + map switcher, list, map) and 50% right (calendar) */
.cwp-lp-event-calendar-modern-layout {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
    margin-top: 1em;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    padding-bottom: 25px;
    background: #E1E1E1;
}

.cwp-lp-event-calendar-modern-left {
    width: 50%;
    display: flex;
    flex-direction: column;

}

.cwp-lp-event-calendar-modern-left-header {
    margin-bottom: 0.75em;
}

.cwp-lp-event-calendar-modern-left-content {
    flex: 1;
    min-height: var(--cwp-lp-ec-map-height, 300px);
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

.cwp-lp-event-calendar-modern-list-wrap {
    flex: 1;
    min-height: 0;
}

.cwp-lp-event-calendar-modern-left-content .cwp-lp-event-calendar-map-container {
    flex: 1;
    min-height: var(--cwp-lp-ec-map-height, 300px);
}

.cwp-lp-event-calendar-modern-right {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.cwp-lp-event-calendar-modern-right .cwp-lp-event-calendar-header {
    margin-bottom: 0.75em;
}

.cwp-lp-event-calendar-modern-right .cwp-lp-event-calendar-monthly-grid {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {

    .cwp-lp-event-calendar-modern-left,
    .cwp-lp-event-calendar-modern-right {
        flex: 1 1 100%;
    }
}

/* Monthly calendar grid */
.cwp-lp-event-calendar-monthly-grid {
    overflow: hidden;
    background: #fff;
}

.cwp-lp-event-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: none;
    font-weight: 600;
    font-size: 0.85em;
}

.cwp-lp-event-calendar-weekday {
    padding: 5px 0 19px;
    text-align: center;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.cwp-lp-event-calendar-dates-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
}

/* Classic: panel is inside each dates-row; make it full width on its own line below the date cells */
.cwp-lp-event-calendar-dates-row .cwp-lp-event-calendar-events-panel {
    width: 100%;
    min-width: 100%;
}

.cwp-lp-event-calendar-date-cell {
    display: flex;
    width: calc(100%/7);
    text-align: center;
    vertical-align: middle;
    padding: 0;
    border: none;
    background: #fff;
    transition: background 0.2s;
    align-items: center;
    justify-content: center;
}

.cwp-lp-event-calendar-date-cell:nth-child(7n) {
    border-right: 0;
}

.cwp-lp-event-calendar-date-empty {
    background: none;
}

.cwp-lp-event-calendar-date-cell span {
    position: relative;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 100%;
    display: inline-block;
    font-family: Open Sans;
    color: #7f7f7f;
}

.cwp-lp-event-calendar-date-cell span:hover {
    background-color: #f3f3f3;
    cursor: pointer;
}

.cwp-lp-event-calendar-date-cell.has-event span:hover {
    background-color: #ff5a5f;
    color: #fff;
}

.cwp-lp-event-calendar-date-cell.has-event span::before {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: 2px;
    border-radius: 100%;
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
    background: #ff5a5f;
}


/* Weekly view */
.cwp-lp-event-calendar-week-nav.week-days-wrap-next-prv {
    margin: 0 0 1em;
    padding: 0.5em 0;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.cwp-lp-event-calendar-week-nav .event-npw {
    cursor: pointer;
    padding: 0.25em 0.5em;
    color: #1976d2;
    user-select: none;
}

.cwp-lp-event-calendar-week-nav .event-npw:hover {
    color: #0d47a1;
}

.cwp-lp-event-calendar-week-nav .cwp-lp-event-calendar-week-title-text {
    min-width: 5em;
    font-weight: 600;
}

.cwp-lp-event-calendar-weekly-weeks {
    margin-bottom: 1.5em;
}

.cwp-lp-event-calendar-week-row {
    margin-bottom: 1em;
    padding: 0.75em;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fafafa;
}

.cwp-lp-event-calendar-week-row:not(.active-week) {
    display: none;
}

.cwp-lp-event-calendar-week-row.active-week {
    background: #f0f7ff;
    border-color: #c5d9f0;
}

.cwp-lp-event-calendar-week-title {
    margin: 0 0 0.5em;
    font-size: 1em;
}

.cwp-lp-event-calendar-weekly-events-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
    margin-bottom: 1em;
    padding-bottom: 0.75em;
    border-bottom: 1px solid #eee;
}

.cwp-lp-event-calendar-weekly-week-panel:not(.cwp-lp-weekly-panel-active) {
    display: none;
}

.cwp-lp-event-calendar-weekly-week-panel .cwp-lp-event-calendar-map-container {
    margin-top: 1em;
}

.cwp-lp-event-calendar-wrap.cwp-lp-event-calendar-show-map .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-list-wrap {
    display: none !important;
}

.cwp-lp-event-calendar-wrap.cwp-lp-event-calendar-show-map .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-week-panel.cwp-lp-weekly-panel-active .cwp-lp-event-calendar-map-container {
    display: block !important;
}

.cwp-lp-event-calendar-week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5em;
}

.cwp-lp-event-calendar-week-day-cell {
    padding: 0.5em;
    text-align: center;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #eee;
}

.cwp-lp-event-calendar-week-day-cell.has-event {
    background: #e3f2fd;
    border-color: #90caf9;
}

.cwp-lp-event-calendar-week-day-num {
    display: block;
    font-weight: 600;
}

/* List view */
.cwp-lp-event-calendar-list-events-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
    margin-bottom: 1em;
    padding-bottom: 0.75em;
    border-bottom: 1px solid #eee;
}

.cwp-lp-event-calendar-events-for-label {
    margin: 0;
    font-weight: 600;
}

.cwp-lp-event-calendar-list-pager,
.cwp-lp-event-calendar-events-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.cwp-lp-event-calendar-list-pager.cwp-lp-event-calendar-pager-hidden {
    display: none !important;
}

.cwp-lp-event-calendar-list-pager.cwp-lp-event-calendar-pager-visible {
    display: flex !important;
}

.cwp-lp-event-calendar-event-item {
    /*     border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    background: #fff; */
    padding: 0px 15px;
}

.cwp-lp-event-calendar-event-item.cwp-lp-event-calendar-event-active {
    border-color: #c5d9f0;
}

.cwp-lp-event-calendar-event-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    padding: 9px;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    border-right: 12px solid #6fb2f6;
    align-items: center;
}

.cwp-lp-event-calendar-event-image {
    flex-shrink: 0;
    width: 85px;
    min-height: 85px;
}

.cwp-lp-event-calendar-event-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.cwp-lp-event-calendar-event-body {
    flex: 1;
    min-width: 200px;
}

.cwp-lp-event-calendar-event-title {
    display: block;
    /*     margin: 0 0 0.35em; */
    text-decoration: none;
    transition: color 0.2s;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.cwp-lp-event-calendar-event-title:hover {
    color: #ff5a5f;
}

.cwp-lp-event-calendar-event-time {
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 24px;
    color: #ff5a5f;
}

.cwp-lp-event-calendar-event-location {
    margin: 0 0 0.25em;
    font-size: 0.9em;
    opacity: 0.9;
}

.cwp-lp-event-calendar-event-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Lines ki tadad yahan set karein */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 24px;
}

.cwp-lp-event-calendar-event-attendees {
    font-size: 0.85em;
    margin-bottom: 0.25em;
}

.cwp-lp-event-calendar-no-events {
    margin: 0;
    padding: 1em;
    text-align: center;
    opacity: 0.8;
}

.cwp-lp-event-calendar-day-events-header {
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px 0.5em;
    padding: 25px 15px;
    margin: 0px;
}

.cwp-lp-event-calendar-day-events-header p {
    margin: 0;
    font-weight: 600;
    flex: 1 1 auto;
}

.cwp-lp-event-calendar-day-events-header p span {
    display: inline-block;
    width: 100%;
}

.cwp-lp-event-calendar-day-events-header .cwp-lp-event-calendar-day-panel-close {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 0.2em 0.5em;
    font-size: 1.5em;
    line-height: 1;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    color: #555;
}

.cwp-lp-event-calendar-day-events-header .cwp-lp-event-calendar-day-panel-close:hover {
    background: #f5f5f5;
    color: #333;
}

/* Day header with map/list switcher: title and switcher in one row */
.cwp-lp-event-calendar-day-events-header .cwp-lp-event-calendar-view-switcher-list {
    /*     margin-top: 0.5em; */
    flex: 1 1 100%;
}

.cwp-lp-event-calendar-events-panel-classic .cwp-lp-event-calendar-day-events-header .cwp-lp-event-calendar-view-switcher-list li,
.cwp-lp-event-calendar-events-panel-classic2 .cwp-lp-event-calendar-day-events-header .cwp-lp-event-calendar-view-switcher-list li,
.cwp-lp-event-calendar-events-panel-modern .cwp-lp-event-calendar-day-events-header .cwp-lp-event-calendar-view-switcher-list li {
    min-width: 0;
    flex: 0 1 auto;
}

/* Classic/classic2: map container inside each day-events, hidden by default */
.cwp-lp-event-calendar-events-panel-classic .cwp-lp-event-calendar-day-events .cwp-lp-event-calendar-map-container,
.cwp-lp-event-calendar-events-panel-classic2 .cwp-lp-event-calendar-day-events .cwp-lp-event-calendar-map-container,
.cwp-lp-event-calendar-events-panel-modern .cwp-lp-event-calendar-day-events .cwp-lp-event-calendar-map-container {
    display: none;
    margin-top: 1em;
    min-height: var(--cwp-lp-ec-map-height, 300px);
    height: var(--cwp-lp-ec-map-height, 300px);
    background: #f5f5f5;
    border-radius: 6px;
}

.cwp-lp-event-calendar-events-panel-classic .cwp-lp-event-calendar-day-events .cwp-lp-event-calendar-map-container .cwp-lp-event-calendar-map-inner,
.cwp-lp-event-calendar-events-panel-classic2 .cwp-lp-event-calendar-day-events .cwp-lp-event-calendar-map-container .cwp-lp-event-calendar-map-inner,
.cwp-lp-event-calendar-events-panel-modern .cwp-lp-event-calendar-day-events .cwp-lp-event-calendar-map-container .cwp-lp-event-calendar-map-inner {
    min-height: var(--cwp-lp-ec-map-height, 300px);
    height: var(--cwp-lp-ec-map-height, 300px);
    width: 100%;
}

.cwp-lp-event-calendar-day-events.cwp-lp-event-calendar-day-show-map .cwp-lp-event-calendar-map-container {
    display: block !important;
}

.cwp-lp-event-calendar-day-events.cwp-lp-event-calendar-day-show-map .cwp-lp-event-calendar-events-list {
    display: none !important;
}

/* Classic monthly: week-based panels, hidden by default */
.cwp-lp-event-calendar-events-panel-classic .cwp-lp-event-calendar-week-events,
.cwp-lp-event-calendar-events-panel-classic .cwp-lp-event-calendar-day-events,
.cwp-lp-event-calendar-events-panel-classic2 .cwp-lp-event-calendar-week-events,
.cwp-lp-event-calendar-events-panel-classic2 .cwp-lp-event-calendar-day-events,
.cwp-lp-event-calendar-events-panel-modern .cwp-lp-event-calendar-week-events,
.cwp-lp-event-calendar-events-panel-modern .cwp-lp-event-calendar-day-events {
    display: none;
}

.cwp-lp-event-calendar-events-panel-classic .cwp-lp-event-calendar-week-events.is-active,
.cwp-lp-event-calendar-events-panel-classic2 .cwp-lp-event-calendar-week-events.is-active,
.cwp-lp-event-calendar-events-panel-modern .cwp-lp-event-calendar-week-events.is-active {
    display: block;
}

.cwp-lp-event-calendar-events-panel-classic .cwp-lp-event-calendar-day-events.is-active,
.cwp-lp-event-calendar-events-panel-classic2 .cwp-lp-event-calendar-day-events.is-active,
.cwp-lp-event-calendar-events-panel-modern .cwp-lp-event-calendar-day-events.is-active {
    display: block;
}

.cwp-lp-event-calendar-pagination {
    margin-top: 1.25em;
    padding-top: 1em;
}

.cwp-lp-event-calendar-page-num {
    display: inline-block;
    padding: 0.4em 0.75em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.cwp-lp-event-calendar-page-num:hover,
.cwp-lp-event-calendar-page-num.current {
    background: #e3f2fd;
}

.cwp-lp-event-calendar-map-container {
    display: none;
    margin-top: 1em;
    min-height: var(--cwp-lp-ec-map-height, 300px);
    background: #f5f5f5;
    border-radius: 6px;
}

.cwp-lp-event-calendar-wrap.cwp-lp-event-calendar-show-map .cwp-lp-event-calendar-map-container {
    display: block;
}

/* List view: when map is shown, hide the list (pagers + pagination) */
.cwp-lp-event-calendar-wrap.cwp-lp-event-calendar-show-map .cwp-lp-event-calendar-list-events .cwp-lp-event-calendar-list-pager,
.cwp-lp-event-calendar-wrap.cwp-lp-event-calendar-show-map .cwp-lp-event-calendar-list-events .cwp-lp-event-calendar-pagination {
    display: none !important;
}

/* Monthly (classic/classic2): when map is shown, hide calendar grid. Modern: grid stays in right column. */
.cwp-lp-event-calendar-wrap.cwp-lp-event-calendar-show-map .cwp-lp-event-calendar-monthly-grid {
    display: none !important;
}

/* Modern: grid is in right 50% and always visible; list/map toggle only affects left column */
.cwp-lp-event-calendar-inner.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-monthly-grid {
    display: flex !important;
    flex-direction: column;
}

/* Modern: when map is shown, hide the left column list only */
.cwp-lp-event-calendar-wrap.cwp-lp-event-calendar-show-map .cwp-lp-event-calendar-modern-list-wrap {
    display: none !important;
}

/* When list view/modern is active and map not toggled, hide the top-level map container only (not day panel maps) */
.cwp-lp-event-calendar-wrap:not(.cwp-lp-event-calendar-show-map) .cwp-lp-event-calendar-map-container {
    display: none !important;
}

/* Classic/classic2: day panel map is shown via day-show-map on day-events, not on wrap — override above so it stays visible */
.cwp-lp-event-calendar-wrap .cwp-lp-event-calendar-day-events.cwp-lp-event-calendar-day-show-map .cwp-lp-event-calendar-map-container {
    display: block !important;
    padding: 0px 10px;
}

.cwp-lp-event-calendar-wrap .cwp-lp-event-calendar-day-events.cwp-lp-event-calendar-day-show-map .cwp-lp-event-calendar-no-events {
    display: none !important;
}

/* 3. Modern calander CSS */
.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-day-events-header {
    border: none;
    padding-bottom: 10px;
}

.cwp-lp-event-calendar-view-switcher-list li {
    width: 50%;
}

.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-list-events-header-inner {
    /* Event for February */
}

.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-list-pager {
    gap: 10px;
}

.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-event-item {
    padding: 0px 15px;
}

.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-event-inner {
    padding: 9px;
    margin: 0;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    border-right: 12px solid #6fb2f6;
    align-items: flex-start;
    gap: 10px;
}

.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-image {
    width: 72px;
    height: 72px;
    min-height: 72px;
    overflow: hidden;
    display: inline-table;
    vertical-align: top;
    background-color: #f9f9f9;
    position: relative;
}

.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-title,
.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-excerpt {
    margin-bottom: 0;
    width: fit-content;
}

.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-location {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 24px;
    color: #7f7f7f;
    width: fit-content;
}

.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-map-container {
    padding: 0px 30px 10px 30px;
    margin: 0;
}

.cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-no-events {
    padding: 30px 30px 10px 30px;
}




/* 2. Weak calander CSS */
.cwp-lp-event-calendar-style-classic2 {
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    overflow: hidden;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-header {
    padding: 25px 25px;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-nav a {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-header-title {
    flex: unset;
    width: fit-content;
    font-weight: 700;
    line-height: 23px;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-monthly-grid {
    background: #fff;
    padding-bottom: 25px;
    box-shadow: inset -2px -60px 0 -35px rgba(225, 225, 225, 1);
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-weekdays {
    margin: 0 -45px;
    display: flex;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-weekday {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    padding: 0;
    width: 14.28%;
    text-align: center;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-dates {
    margin: 20px 0 0;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-dates-row {
    margin: 0 -45px;
    width: unset;
    position: relative;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-dates-row:before {
    content: '';
    height: 1px;
    content: '';
    background: #dedede;
    width: calc(100% - 140px);
    position: absolute;
    left: 70px;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-date-cell {
    padding: 0;
    margin: 10px 0;
    text-align: center;
    min-height: auto;
    width: 14.28%;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-events-panel-classic2 {
    background: #f5f5f5;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-week-events {
    padding: 30px 0;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-events-header {
    padding: 0 30px 30px 30px;
    background: #f5f5f5;
    gap: 0;
    border: none;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-events-header-inner {
    width: 50%;
    padding-right: 15px;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-events-header-inner p {
    font-size: 15px;
    color: #333;
    display: inline-block;
    border: 1px solid #dedede;
    border-radius: 5px;
    padding: 0 15px;
    line-height: 33px;
    margin-top: 3px;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-events-header-inner p span {
    color: #ff5a5f;
    text-transform: uppercase;
    font-weight: 700;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-events-list {
    gap: 14px;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-event-item {
    padding: 0;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-event-inner {
    padding: 20px;
    margin: 0 30px;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    border-right: 12px solid #6fb2f6;
    align-items: flex-start;
    gap: 25px;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-image {
    width: 140px;
    height: 140px;
    overflow: hidden;
    display: inline-table;
    vertical-align: top;
    background-color: #f9f9f9;
    position: relative;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-title,
.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-excerpt {
    margin-bottom: 10px;
    width: fit-content;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-location {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 24px;
    color: #7f7f7f;
    width: fit-content;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-map-container {
    padding: 10px 30px 20px 30px !important;
    margin: 0 !important;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-view-switcher-list {
    width: 41.67%;
    flex: unset;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-view-map,
.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-view-list {
    width: 50%;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-view-list .cwp-lp-event-calendar-view-list-btn {
    width: 100%;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-panel-close {
    width: 8.33%;
    padding: 0;
    padding-left: 15px;
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    color: #7f7f7f;
    line-height: 36px;
    font-size: 14px;
    font-weight: 400;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-panel-close:hover,
.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-panel-close:focus {
    background: transparent;
    color: #7f7f7f;
}

.cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-panel-close i {
    background: #ff5a5f;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    text-align: center;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-top: -1px;
}


/* 3. classic calander CSS */
.cwp-lp-event-calendar-style-classic {
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    overflow: hidden;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-header {
    padding: 25px 25px;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-nav a {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-header-title {
    flex: unset;
    width: fit-content;
    font-weight: 700;
    line-height: 23px;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-monthly-grid {
    background: #fff;
    padding-bottom: 25px;
    box-shadow: inset -2px -60px 0 -35px rgba(225, 225, 225, 1);
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-weekdays {
    margin: 0 -45px;
    display: flex;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-weekday {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    padding: 0;
    width: 14.28%;
    text-align: center;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-dates {
    margin: 20px 0 0;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-dates-row {
    margin: 0 -45px;
    width: unset;
    position: relative;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-dates-row:before {
    content: '';
    height: 1px;
    content: '';
    background: #dedede;
    width: calc(100% - 140px);
    position: absolute;
    left: 70px;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-date-cell {
    padding: 0;
    margin: 10px 0;
    text-align: center;
    min-height: auto;
    width: 14.28%;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-events-panel-classic2 {
    background: #f5f5f5;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-week-events {
    padding: 30px 45px;
    background: #f5f5f5;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-events-header {
    padding: 0 30px 30px 30px;
    background: #f5f5f5;
    gap: 0;
    border: none;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-events-header-inner {
    width: 50%;
    padding-right: 15px;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-events-header-inner p {
    font-size: 15px;
    color: #333;
    display: inline-block;
    border: 1px solid #dedede;
    border-radius: 5px;
    padding: 0 15px;
    line-height: 33px;
    margin-top: 3px;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-events-header-inner p span {
    color: #ff5a5f;
    text-transform: uppercase;
    font-weight: 700;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-events-list {
    gap: 14px;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-event-item {
    padding: 0;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-event-inner {
    padding: 20px;
    margin: 0 30px;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    border-right: 12px solid #6fb2f6;
    align-items: flex-start;
    gap: 25px;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-image {
    width: 140px;
    height: 140px;
    overflow: hidden;
    display: inline-table;
    vertical-align: top;
    background-color: #f9f9f9;
    position: relative;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-title,
.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-excerpt {
    margin-bottom: 10px;
    width: fit-content;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-location {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 24px;
    color: #7f7f7f;
    width: fit-content;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-map-container {
    padding: 10px 30px 20px 30px !important;
    margin: 0 !important;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-view-switcher-list {
    width: 41.67%;
    flex: unset;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-view-map,
.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-view-list {
    width: 50%;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-view-list .cwp-lp-event-calendar-view-list-btn {
    width: 100%;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-panel-close {
    width: 8.33%;
    padding: 0;
    padding-left: 15px;
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    color: #7f7f7f;
    line-height: 36px;
    font-size: 14px;
    font-weight: 400;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-panel-close:hover,
.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-panel-close:focus {
    background: transparent;
    color: #7f7f7f;
}

.cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-panel-close i {
    background: #ff5a5f;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    text-align: center;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-top: -1px;
}

/* 4. Weak calander CSS */
.cwp-lp-event-calendar-weekly {
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    overflow: hidden;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-header {
    padding: 25px 30px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-nav a {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-week-nav.week-days-wrap-next-prv {
    padding: 10px 0;
    margin-bottom: 15px;
    margin-top: 10px;
    gap: 25px;
    background: #fafafa;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-week-nav .event-npw {
    cursor: pointer;
    color: #7f7f7f;
    width: 50px;
    height: 50px;
    padding: 0;
    line-height: 50px;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 50px;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, .015);
    transition: all .33s ease;
    display: inline-block;
    font-size: 26px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-week-nav .event-npw:hover {
    border-color: #ff5a5f;
    color: #ff5a5f;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-week-nav .event-npw i {
    color: #7f7f7f;

}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-week-nav .event-npw:hover i {
    color: #ff5a5f;

}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-week-nav .cwp-lp-event-calendar-week-title-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-weeks {
    margin: 0 -45px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-weeks .cwp-lp-event-calendar-week-row {
    padding: 0;
    background: transparent;
    margin: 0;
    border: none;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-weeks .cwp-lp-event-calendar-week-days {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-weeks .cwp-lp-event-calendar-week-day-cell {
    width: 14.28%;
    padding: 0;
    border: none;
    margin-bottom: 15px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-weeks .cwp-lp-event-calendar-week-day-cell.has-event {
    background: transparent;
    border: none;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-weeks .cwp-lp-event-calendar-week-day-name,
.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-weeks .cwp-lp-event-calendar-week-day-num {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #333;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events {
    background: #f5f5f5;
    padding: 30px 0px 50px;
    box-shadow: inset -2px -60px 0 -30px rgba(225, 225, 225, 1);
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events .cwp-lp-event-calendar-weekly-events-header {
    padding: 30px;
    padding-top: 0;
    background: #f5f5f5;
    display: flex;
    gap: 0;
    margin: 0;
    border: none;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events .cwp-lp-event-calendar-weekly-events-header-inner,
.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events .cwp-lp-event-calendar-view-switcher-list {
    width: 50%;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events .cwp-lp-event-calendar-weekly-events-header-inner {
    padding-right: 15px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events .cwp-lp-event-calendar-weekly-events-header-inner .cwp-lp-event-calendar-weekly-title {
    font-size: 15px;
    color: #333;
    display: inline-block;
    border: 1px solid #dedede;
    border-radius: 5px;
    padding: 0 15px;
    line-height: 33px;
    margin-top: 3px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events .cwp-lp-event-calendar-weekly-events-header-inner .cwp-lp-event-calendar-weekly-title span {
    color: #ff5a5f;
    text-transform: uppercase;
    font-weight: 700;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-events-list {
    gap: 14px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-event-item {
    padding: 0;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-event-inner {
    padding: 20px;
    margin: 0 30px;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    border-right: 12px solid #6fb2f6;
    align-items: flex-start;
    gap: 25px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-image {
    width: 140px;
    height: 140px;
    overflow: hidden;
    display: inline-table;
    vertical-align: top;
    background-color: #f9f9f9;
    position: relative;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-title,
.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-excerpt {
    margin-bottom: 10px;
    width: fit-content;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-location {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 24px;
    color: #7f7f7f;
    width: fit-content;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-map-container {
    padding: 0px 30px 10px 30px;
}

.cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-no-events {
    padding: 0px 30px 10px 30px;
}


/* 5. List calander CSS */
.cwp-lp-event-calendar-list {
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    overflow: hidden;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-header {
    padding: 25px 25px;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-header .cwp-lp-event-calendar-nav a {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-header .cwp-lp-event-calendar-header-title {
    flex: unset;
    font-weight: 700;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-monthly {
    background: #f5f5f5;
    box-shadow: inset -2px -60px 0 -35px rgba(225, 225, 225, 1);
    padding: 0px 0px 25px;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-list-events {
    background: #f5f5f5;
    padding: 30px 0;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-list-events-header {
    padding: 0px 30px 30px;
    border: none;
    margin: 0;
    gap: 0;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-list-events-header-inner,
.cwp-lp-event-calendar-list .cwp-lp-event-calendar-view-switcher-list {
    width: 50%;
}


.cwp-lp-event-calendar-list .cwp-lp-event-calendar-list-events-header-inner {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    padding-right: 15px;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-list-events-header-inner .cwp-lp-event-calendar-events-for-label {
    font-size: 15px;
    color: #333;
    display: inline-block;
    border: 1px solid #dedede;
    border-radius: 5px;
    padding: 0 15px;
    line-height: 33px;
    margin-top: 3px;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-list-events-header-inner .cwp-lp-event-calendar-events-for-label span {
    color: #ff5a5f;
    text-transform: uppercase;
    font-weight: 700;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-list-pager {
    gap: 14px;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-event-item {
    padding: 0;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-event-inner {
    padding: 20px;
    margin: 0 30px;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
    box-shadow: -1px 3px 36px -1px rgba(225, 225, 225, 1);
    border-right: 12px solid #6fb2f6;
    align-items: flex-start;
    gap: 25px;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-image {
    width: 140px;
    height: 140px;
    overflow: hidden;
    display: inline-table;
    vertical-align: top;
    background-color: #f9f9f9;
    position: relative;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-title,
.cwp-lp-event-calendar-list .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-excerpt {
    margin-bottom: 10px;
    width: fit-content;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-event-inner .cwp-lp-event-calendar-event-location {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 24px;
    color: #7f7f7f;
    width: fit-content;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-map-container {
    padding: 0px 30px 10px 30px;
    margin: 0;
}

.cwp-lp-event-calendar-list .cwp-lp-event-calendar-no-events {
    padding: 0px 30px 10px 30px;
}


@media (max-width: 992px) {

    .cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-modern-left,
    .cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-modern-right {
        width: 100%;
        flex: unset;
    }

    .cwp-lp-event-calendar-style-modern .cwp-lp-event-calendar-modern-left-content {
        min-height: unset;
    }

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-dates-row,
    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-weekdays,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-weekdays,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-dates-row,
    .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-weeks {
        margin: 0px -25px;
    }

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-dates-row:before,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-dates-row:before {
        width: calc(100% - 80px);
        left: 40px;
    }

    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-week-events {
        padding: 30px 25px;
    }

    .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events .cwp-lp-event-calendar-weekly-events-header,
    .cwp-lp-event-calendar-list .cwp-lp-event-calendar-list-events-header,
    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-events-header,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-events-header,
    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-map-container,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-map-container,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-map-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-event-inner,
    .cwp-lp-event-calendar-list .cwp-lp-event-calendar-event-inner,
    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-event-inner,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-event-inner {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-events-header,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-events-header {
        justify-content: space-between;
    }

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-events-header-inner,
    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-panel-close,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-events-header-inner,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-panel-close,
    .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events .cwp-lp-event-calendar-weekly-events-header-inner,
    .cwp-lp-event-calendar-list .cwp-lp-event-calendar-list-events-header-inner {
        width: fit-content;
    }

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-view-switcher-list,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-view-switcher-list {
        width: 50%;
    }
}

@media (max-width: 768px) {

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-dates-row,
    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-weekdays,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-weekdays,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-dates-row,
    .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-weeks {
        margin: 0px 0px;
    }

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-dates-row:before,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-dates-row:before {
        width: calc(100% - 30px);
        left: 15px;
    }

    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-week-events {
        padding: 30px 0px;
    }
}

@media (max-width: 500px) {

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-events-header,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-events-header,
    .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-weekly-events .cwp-lp-event-calendar-weekly-events-header,
    .cwp-lp-event-calendar-list-events-header {
        gap: 15px !important;
        position: relative;
    }

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-view-switcher-list,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-view-switcher-list,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-view-switcher-list,
    .cwp-lp-event-calendar-list .cwp-lp-event-calendar-view-switcher-list {
        width: 100% !important;
    }

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-day-panel-close,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-day-panel-close {
        position: absolute;
        top: 5px;
        right: 15px;
    }

    .cwp-lp-event-calendar-style-classic2 .cwp-lp-event-calendar-event-inner,
    .cwp-lp-event-calendar-style-classic .cwp-lp-event-calendar-event-inner,
    .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-event-inner,
    .cwp-lp-event-calendar-weekly .cwp-lp-event-calendar-event-inner {
        gap: 15px;
        padding: 10px;
    }
}

/* Taxonomy Filter widget (Event Categories) */
.cwp-lp-tax-filter-wrap {
    position: relative;
}

.cwp-lp-tax-filter-inner {
    position: relative;
}

.cwp-lp-tax-filter-term {
    cursor: pointer;
    list-style: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cwp-lp-tax-filter-term .cwp-lp-tax-filter-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cwp-lp-tax-filter-term .cwp-lp-tax-filter-icon-wrap img {
    display: block;
}

.cwp-lp-tax-filter-term .cwp-lp-tax-filter-name {
    display: block;
}

.cwp-lp-tax-filter-slider .slick-slide {
    padding-left: 5px;
    padding-right: 5px;
}

.cwp-lp-tax-filter-slider .slick-slide>div {
    outline: none;
}

.cwp-lp-tax-filter-slider .slick-list {
    margin-left: -5px;
    margin-right: -5px;
}

/* slider style */
.cwp-lp-tax-filter-slider {
    position: relative;
}

.cwp-lp-tax-filter-slider .slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: auto;
    height: fit-content;
    z-index: 999;
}

/* slick dots style */
.cwp-lp-tax-filter-slider .slick-dots {
    padding: 0;
    margin: 0;
    width: fit-content;
    height: fit-content;
}

.cwp-lp-tax-filter-slider .slick-dots li {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.cwp-lp-tax-filter-slider .slick-dots li button {
    padding: 0px;
    border: none;
    background: none;
    font-size: 0px;
    outline: none;
}


/* Event Filters widget */
.cwp-lp-event-filters-wrap {
    width: 100%;
}

.cwp-lp-event-filters {
    width: 100%;
}

/* .cwp-lp-event-filters-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
}
.cwp-lp-event-filters .cwp-lp-ef-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
} */
.cwp-lp-event-filters .cwp-lp-ef-field-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.cwp-lp-event-filters .cwp-lp-ef-field-inner select,
.cwp-lp-event-filters .cwp-lp-ef-date-input {
    width: 100%;
    min-width: 120px;
}

/* Event Filters: custom dropdown (Filter Builder style) */
.cwp-lp-event-filters .cwp-lp-ef-dropdown-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.cwp-lp-event-filters .cwp-lp-ef-dropdown-toggle {
    cursor: pointer;
    border: none;
    text-align: left;
    width: 100%;
    min-width: 150px;
}

.cwp-lp-event-filters .cwp-lp-ef-dropdown-menu {
    display: none !important;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.cwp-lp-event-filters .cwp-lp-ef-dropdown-menu.open {
    display: block !important;
}

.cwp-lp-event-filters .cwp-lp-ef-dropdown-item {
    cursor: pointer;
    list-style: none;
}

.cwp-lp-ef-dropdown:has(> .cwp-lp-ef-dropdown-menu.open) .cwp-lp-ef-dropdown-icon {
    transform: rotate(180deg) !important;
}

.cwp-lp-event-filters .cwp-lp-ef-field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    pointer-events: none;
}

.cwp-lp-event-filters .cwp-lp-ef-date-picker-container {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cwp-lp-event-filters .cwp-lp-ef-submit-wrap {
    display: flex;
    align-items: flex-end;
}

.cwp-lp-event-filters .cwp-lp-ef-label {
    display: block;
}

/* Business Hours Filter widget */
.cwp-lp-business-hours-filter {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cwp-lp-business-hours-filter .cwp-lp-bh-label {
    display: block;
    margin-bottom: 6px;
}

.cwp-lp-business-hours-filter .cwp-lp-bh-date-input {
    min-width: 140px;
}

/* Ticket Verification widget */
.cwp-lp-tv-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.cwp-lp-tv-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cwp-lp-tv-input-wrap {
    display: flex;
    align-items: center;
}

.cwp-lp-tv-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    padding: 12px 16px;
    background: #eee;
    color: #555;
    font-weight: 400;
    line-height: 1em;
}

.cwp-lp-tv-input {
    padding: 6px 12px;
    border-radius: 0 4px 4px 0;
    min-width: 140px;
    font-size: 13px;
    height: 40px;
    line-height: 1.43em;
    box-shadow: none;
    color: #555;
    background-color: #fff;
    border: 1px solid #e3e3e3;
}

.cwp-lp-tv-submit {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43em;
    text-align: center;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.cwp-lp-tv-submit:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

.cwp-lp-tv-submit:focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.cwp-lp-tv-msg-error {
    color: #7f7f7f;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
}

.cwp-lp-tv-table-wrap {
    overflow-x: auto;
    margin-bottom: 20px;
}

.cwp-lp-tv-table {
    min-width: 1200px;
    border-collapse: collapse;
    border: none;
    margin-bottom: 0px;
}

.cwp-lp-tv-table th,
.cwp-lp-tv-table td {
    padding: 8px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #ddd;
}

.cwp-lp-tv-table th {
    background: transparent;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #7f7f7f;
}

.cwp-lp-tv-table td {
    background: transparent;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #7f7f7f;
}

.cwp-lp-tv-table td a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #7f7f7f;
}

.cwp-lp-tv-table td a:hover {
    text-decoration: underline;
}

.cwp-lp-tv-table td code {
    font-size: 13px;
    line-height: 18px;
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}

.cwp-lp-tv-table td a:hover:has(code) {
    text-decoration: none;
}

.cwp-lp-tv-no-attendees {
    color: #666;
    font-style: italic;
}

.ep-button a {
    position: relative;
}

.ep-button.active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    color: #C73048;
    background-color: #C73048;
    border-radius: 5px 5px 0 0;
}

/* ==========================================================================
   Event Date Picker (Listings-style: days slider + month/year dropdowns)
   ========================================================================== */
.cwp-lp-event-date-picker-wrap.cwp-lp-event-date-picker--hidden {
    display: none !important;
}

.cwp-lp-event-date-picker-wrap {
    width: 100%;
    margin-top: 20px;
}

.cwp-lp-edp-container {
    display: flex;
    flex-wrap: wrap;
    align-items: self-start;
    gap: 0;
    justify-content: space-between;
}

.cwp-lp-edp-days-outer {
    width: 62%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 30px 0 20px;
    position: relative;
}

.cwp-lp-edp-arrow {
    font-size: 18px !important;
    padding: 0px 9px !important;
    position: absolute;
    z-index: 1;
    font-weight: 700 !important;
    opacity: 1;
    line-height: 28px;
    border-radius: 10px !important;
    border: 1px solid #9EBCD2 !important;
    color: #4D6B81 !important;
}

.cwp-lp-edp-arrow.cwp-lp-edp-arrow-prev {
    left: -25px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cwp-lp-edp-arrow.cwp-lp-edp-arrow-next {
    right: -28px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cwp-lp-edp-arrow:hover,
.cwp-lp-edp-arrow:focus {
    background-color: #c73048 !important;
    border-color: #c73048 !important;
    color: #fff !important;
}

.cwp-lp-edp-days-slider {
    min-width: 0;
    overflow: hidden;
    padding: 0 21px;
}

.cwp-lp-edp-days-track {
    display: flex;
    gap: 42px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
}

.cwp-lp-edp-days-track:active {
    cursor: grabbing;
}

.cwp-lp-edp-days-track::-webkit-scrollbar {
    height: 6px;
}

.cwp-lp-edp-days-track::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.cwp-lp-edp-day-link {
    display: inline-block;
    text-align: center;
}


.cwp-lp-edp-day-box {
    padding: 10px 12px 6px;
    border-radius: 15px;
    border: 1px solid #7696AE5E;
    display: inline-block;
    color: #4D6B81;
}

.cwp-lp-edp-day-num {
    width: 30px;
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #4D6B81;
    text-align: center;
    font-family: Open Sans;
    user-select: none;
}

.cwp-lp-edp-day-week {
    width: 30px;
    display: block;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    font-family: Open Sans;
    color: #2C3E50;
    font-size: 11px;
    margin-top: -3px;
    user-select: none;
}

.cwp-lp-edp-day-item:hover .cwp-lp-edp-day-box {
    background-color: #c73048;
    border-color: #c73048;
    color: #fff;
}

.cwp-lp-edp-day-item:hover .cwp-lp-edp-day-num,
.cwp-lp-edp-day-item:hover .cwp-lp-edp-day-week,
.cwp-lp-edp-day-item.active .cwp-lp-edp-day-num,
.cwp-lp-edp-day-item.active .cwp-lp-edp-day-week {
    color: #fff;
}

.cwp-lp-edp-day-item.active .cwp-lp-edp-day-box {
    background-color: #c73048;
    border-color: #c73048;
    color: #fff;
}

.cwp-lp-edp-month-year {
    display: flex;
    align-items: center;
    gap: 18px;
    width: calc(100% - 67%);
    position: relative;
    justify-content: flex-end;
    padding-top: 2px;
}

.cwp-lp-edp-month-box,
.cwp-lp-edp-year-box {
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 500;
    color: #2C3E50;
    font-size: 13px;
    border: 1px solid #9EBCD2;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
}

.cwp-lp-edp-month-box {
    min-width: 54%;
}

.cwp-lp-edp-month-show {
    color: #2C3E50;
    font-size: 13px;
    font-weight: 500;
    line-height: 25px;
    user-select: none;
}

.cwp-lp-edp-year-box {
    min-width: 36.5%;
}

.cwp-lp-edp-year-show {
    font-size: 13px;
    font-weight: 500;
    line-height: 25px;
    color: #2C3E50;
    user-select: none;
}

.cwp-lp-edp-angle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cwp-lp-edp-angle i {
    font-size: 20px;
    color: #2C3E50;
}

.cwp-lp-edp-month-dropdown,
.cwp-lp-edp-year-dropdown {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    min-width: 120px;
    max-height: 240px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 44px #c7c0dd4d;
    z-index: 999;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ececec #ffffff00;
}

/* Webkit browsers (Chrome, Edge, Safari) */
.cwp-lp-edp-month-dropdown::-webkit-scrollbar,
.cwp-lp-edp-year-dropdown::-webkit-scrollbar {
    width: 3px;
}

.cwp-lp-edp-month-dropdown::-webkit-scrollbar-track,
.cwp-lp-edp-year-dropdown::-webkit-scrollbar-track {
    background-color: transparent;
}

.cwp-lp-edp-month-dropdown::-webkit-scrollbar-thumb,
.cwp-lp-edp-year-dropdown::-webkit-scrollbar-thumb {
    background-color: #ececec;
    border-radius: 10px;
}

.cwp-lp-edp-month-dropdown::-webkit-scrollbar-thumb:hover,
.cwp-lp-edp-year-dropdown::-webkit-scrollbar-thumb:hover {
    background-color: #ececec;
}

.cwp-lp-edp-month-dropdown.open,
.cwp-lp-edp-year-dropdown.open {
    display: block;
}

.cwp-lp-edp-month-dropdown ul,
.cwp-lp-edp-year-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0px 0;
}

.cwp-lp-edp-month-dropdown li,
.cwp-lp-edp-year-dropdown li {
    padding: 10px;
    cursor: pointer;
    font-family: Quicksand;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #2C3E50;
    background: #fff;
    user-select: none;
    transition: background 0.15s;
}

.cwp-lp-edp-month-dropdown li,
.cwp-lp-edp-year-dropdown li {
    border-bottom: 1px solid #9EBCD2;
}

.cwp-lp-edp-month-dropdown li:last-child,
.cwp-lp-edp-year-dropdown li:last-child {
    border-bottom: none;
}

.cwp-lp-edp-month-dropdown li:hover,
.cwp-lp-edp-year-dropdown li:hover {
    background-color: #9EBCD2;
    opacity: 0.9999;
    color: #fff;
}

.cwp-lp-edp-month-dropdown li.active,
.cwp-lp-edp-year-dropdown li.active {
    background-color: #9EBCD2;
    opacity: 0.9999;
    color: #fff;
}

.cwp-lp-edp-month-dropdown {
    width: 54%;
    left: 20px;
}

.cwp-lp-edp-year-dropdown {
    left: auto;
    right: 0;
    width: 36%;
}

@media (max-width: 1040px) {
    .cwp-lp-edp-container {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .cwp-lp-edp-days-outer {
        width: calc(100% - 80px);
    }

    .cwp-lp-edp-days-track {
        gap: 30px;
    }

    .cwp-lp-edp-month-year {
        width: 100%;
        justify-content: center;
    }

    .cwp-lp-edp-month-box {
        min-width: 55%;
    }

    .cwp-lp-edp-year-box {
        min-width: 35%;
    }
}

/* medicalpro leadform */
/* medicalpro-booking-form */

#medicalpro-booking-form {
    background: #FFFFFF;
    box-shadow: 0 10px 29px #0A74F314;
    border-radius: 10px;
    padding: 15px 20px;
}

#medicalpro-booking-form .cwp-frontend-section-container {
    margin-bottom: 0;
}

#medicalpro-booking-form .cwp-frontend-section-heading-container h2 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    text-transform: capitalize;
    color: #333;
    word-spacing: 0;
    padding: 0 0 16px 0;
}

#medicalpro-booking-form .cwp-frontend-section-heading-container p {
    display: none;
}

#medicalpro-booking-form .cwp-frontend-section-heading-container {
    border: none;
    background: transparent;
    padding: 0px;
}

#medicalpro-booking-form .cwp-frontend-section-content-container {
    border: none !important;
    padding: 0px !important;
}

#medicalpro-booking-form .cwp-frontend-section-container .cwp-field-container {
    margin: 0 0 15px 0;
    padding: 0px;
}

#medicalpro-booking-form .cwp-field-container label {
    display: none !important;
}

#medicalpro-booking-form .form-control {
    background-color: #fff;
    box-shadow: none;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    color: #555;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    transition: all .3s ease;
}

#medicalpro-booking-form textarea.form-control {
    height: 106px;
}

#medicalpro-booking-form .form-control::placeholder {
    color: #959595;
}

#medicalpro-booking-form .form-control:focus {
    box-shadow: 0 3px 5px 0 #dfdfdf;
    border-color: #C1C1C1;
    border-left: 3px solid #18DEC5;
}

#medicalpro-booking-form .cwp-from-submit {
    margin: 0px;
    background-color: #18DEC5;
    border-color: #18DEC5;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    padding: 10px 15px;
    transition: all 0.20s ease-in-out;
}

#medicalpro-booking-form .cwp-from-submit:hover {
    background-color: #465be0;
    border-color: #465be0;
}

#medicalpro-booking-form .cwp-required-field-notice+.form-control {
    border-color: #ff0000;
}

#medicalpro-booking-form .cwp-required-field-notice+.form-control::placeholder {
    color: #ff0000;
}

#medicalpro-booking-form .cwp-required-field-notice {
    display: none !important;
}

/* multi-color-rating */
.multi-color-rating .e-rating-wrapper {
    display: flex !important;
    flex-direction: row-reverse !important;
}

.multi-color-rating .e-rating-wrapper .e-icon:nth-child(1):hover svg,
.multi-color-rating .e-rating-wrapper .e-icon:nth-child(1):hover~.e-icon svg {
    fill: #de9147;
}

.multi-color-rating .e-rating-wrapper .e-icon:nth-child(2):hover svg,
.multi-color-rating .e-rating-wrapper .e-icon:nth-child(2):hover~.e-icon svg {
    fill: rgb(255, 193, 7);
}

.multi-color-rating .e-rating-wrapper .e-icon:nth-child(3):hover svg,
.multi-color-rating .e-rating-wrapper .e-icon:nth-child(3):hover~.e-icon svg {
    fill: rgb(199, 223, 55);
}

.multi-color-rating .e-rating-wrapper .e-icon:nth-child(4):hover svg,
.multi-color-rating .e-rating-wrapper .e-icon:nth-child(4):hover~.e-icon svg {
    fill: rgb(210, 244, 13);
}

.multi-color-rating .e-rating-wrapper .e-icon:nth-child(5):hover svg,
.multi-color-rating .e-rating-wrapper .e-icon:nth-child(5):hover~.e-icon svg {
    fill: rgb(115, 207, 66);
}




/* Report widget */
.cwp-report-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.cwp-report-modal-content {
    max-width: 520px;
    width: 92%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.cwp-report-reason {
    width: 100%;
    min-height: 120px;
    margin: 10px 0;
}

.cwp-report-modal-actions {
    display: flex;
    gap: 10px;
}

.cwp-report-submit,
.cwp-report-cancel {
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.2;
}

.cwp-report-submit {
    background: #2271b1;
    color: #fff;
    position: relative;
    min-width: 130px;
}

.cwp-report-cancel {
    background: #f0f0f1;
    color: #2c3338;
}

.cwp-report-msg {
    margin-top: 10px;
    font-size: 14px;
}

.cwp-report-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: none;
    background: #d63638;
    color: #fff;
    border-radius: 8px;
    padding: 12px 20px;
    transition: all 0.2s ease;
}

.cwp-report-btn:hover {
    opacity: 0.9;
}

.cwp-report-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cwp-report-submit.is-loading {
    color: transparent !important;
    pointer-events: none;
}

.cwp-report-submit.is-loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
    animation: cwp-report-spin 0.8s linear infinite;
}

@keyframes cwp-report-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Stars Color */
.cwp-review-rating-star.\31star-rating .cwp-rating-stars:first-child span {
    color: var(--cwp-star-1, #ff3b30);
}

/* 2 Stars - Orange */
.cwp-review-rating-star.\32star-rating .cwp-rating-stars:first-child span,
.cwp-review-rating-star.\32star-rating .cwp-rating-stars:nth-child(2) span {
    color: var(--cwp-star-2, #ff9500);
}

/* 3 Stars - Yellow */
.cwp-review-rating-star.\33star-rating .cwp-rating-stars:first-child span,
.cwp-review-rating-star.\33star-rating .cwp-rating-stars:nth-child(2) span,
.cwp-review-rating-star.\33star-rating .cwp-rating-stars:nth-child(3) span {
    color: var(--cwp-star-3, #ffe622);
}

/* 4 Stars - Light Green */
.cwp-review-rating-star.\34star-rating .cwp-rating-stars:first-child span,
.cwp-review-rating-star.\34star-rating .cwp-rating-stars:nth-child(2) span,
.cwp-review-rating-star.\34star-rating .cwp-rating-stars:nth-child(3) span,
.cwp-review-rating-star.\34star-rating .cwp-rating-stars:nth-child(4) span {
    color: var(--cwp-star-4, #7ed321);
}

/* 5 Stars - Green */
.cwp-review-rating-star.\35star-rating .cwp-rating-stars:first-child span,
.cwp-review-rating-star.\35star-rating .cwp-rating-stars:nth-child(2) span,
.cwp-review-rating-star.\35star-rating .cwp-rating-stars:nth-child(3) span,
.cwp-review-rating-star.\35star-rating .cwp-rating-stars:nth-child(4) span,
.cwp-review-rating-star.\35star-rating .cwp-rating-stars:nth-child(5) span {
    color: var(--cwp-star-5, #34c759);
}

/* Menuss Form */
.cwp-lp-menu-form-wrapper {
    margin: 0px !important;
    border: none !important;
    height: auto !important;
    overflow: unset !important;
}

.cwp-lp-menus-submit-form-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0px !important;
}

.cwp-lp-menu-form-wrapper .cwp-lp-menu-form-main-inner {
    width: calc(100% - 315px) !important;
    padding: 20px 15px !important;
}

.cwp-lp-menus-submit-title-section {
    flex-wrap: wrap;
    gap: 10px;
}

.cwp-lp-menus-submit-title-section .cwp-lp-menus-preview-link:hover {
    color: #2457FF !important;
}

.cwp-lp-menu-form-wrapper .cwp-menu-items-list {
    padding: 0px !important;

}

.cwp-lp-menu-form-main-inner .cwp-field-container.choose-listing-form label {
    margin-bottom: 15px !important;
    line-height: 16px;
}

.cwp-lp-menu-form-main-inner .cwp-field-container.choose-listing-form .cwp-required {
    color: #000000 !important;
}

.cwp-field-container.cwp-field-repeating_field.form-group.add-menus-container.cubewp-elementor-form-field {
    padding: 0 !important;
    margin: 0 !important;
}

.cwp-lp-menu-form-wrapper label[for*="add_menus"] {
    display: none !important;
}

.cwp-menu-type-content.header-tabber-content {
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 1px solid #ddd;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header {
    display: flex;
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header p.pull-left {
    margin: 0px 10px 10px 0px !important;
    font-weight: 400 !important;
    line-height: 26px !important;
    height: 26px;
    font-size: 15px !important;
    color: #7f7f7f !important;
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header .help-text {
    position: relative;
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header a.help {
    text-decoration: none !important;
    display: inline-block;
    border: 1px solid #a0a0a0;
    border-radius: 100%;
    height: 17px;
    width: 17px;
    text-align: center;
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header i {
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    color: #3f576e;
    transform: translateY(-6px);
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header .help-tooltip {
    display: none;
    background-color: #f0f0f0;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    bottom: 94%;
    left: -11px;
    margin-bottom: 5px;
    padding: 10px 12px;
    position: absolute;
    width: 270px;
    z-index: 99;
    pointer-events: none;
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header .help-tooltip:before {
    border-color: #d8d8d8 transparent;
    border-style: solid;
    border-width: 7px 7px 0;
    bottom: -7px;
    content: "";
    left: 11px;
    position: absolute;
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header .help-tooltip p {
    font-weight: 400;
    line-height: 18px;
    margin: 0;
    text-transform: capitalize;
    font-size: 12px;
    color: #7f7f7f;
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header a.help:hover .help-tooltip {
    display: block;
}

.cwp-lp-menu-form-wrapper .cwp-menu-items-list {
    column-gap: 30px !important;
    row-gap: 0px !important;
    border: none !important;
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
}

.cwp-lp-menu-form-wrapper .cwp-menu-items-list li {
    border: none !important;
    border-radius: 0px !important;
    color: #3f576e !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    padding: 0 15px 22px 15px !important;
    margin: 0 !important;
    border-bottom: 2px solid transparent;

}

.cwp-lp-menu-form-wrapper .cwp-menu-items-list li.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color) !important;
}

.cwp-repeating-single-field-actions {
    align-items: start !important;
}

.cwp-repeating-single-field-actions .menu-item-name.name,
.cwp-repeating-single-field-actions .menu-item-name.group,
.cwp-repeating-single-field-actions .menu-item-name.price {
    padding: 0 15px !important;
}

.cwp-repeating-single-field-actions .menu-item-name.name {
    width: 50%;
}

.cwp-repeating-single-field-actions .menu-item-name.group {
    width: 25%;
}

.cwp-repeating-single-field-actions .menu-item-name.price {
    width: 16.67%;
}



.cwp-repeating-single-field-actions .menu-item-name h2 {
    color: #8a8a8a;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    line-height: 24px !important;
    margin: 0px !important;
}

.cwp-repeating-single-field-actions .menu-item-name p {
    margin: 0px !important;
    color: #333 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    line-height: 24px !important;
    font-weight: 500 !important;
    line-break: anywhere;
}

.cwp-repeating-single-field-actions .cwp-repeating-single-field-remove {
    text-align: right !important;
    align-self: center !important;
}

.cwp-menu-group-content.cwp-field-container.form-group.cubewp-menus-groups-list {
    margin: 14px 0 0 !important;
}

.cwp-menu-group-content.cwp-field-container.form-group.cubewp-menus-groups-list label {
    line-height: 46px !important;
    color: #7f7f7f !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    margin-bottom: 5px !important;
}

.cwp-menu-group-content.cwp-field-container.form-group.cubewp-menus-groups-list .select2.select2-container {
    height: 42px;
}

.cwp-repeating-single-field-contents {
    margin: 14px 0px 14px !important;
    padding: 20px !important;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cwp-field-container.cwp-field-text.form-group[data-name="item_name"] {
    padding: 0 15px 0 0 !important;
    margin-bottom: 10px;
    width: 66.66% !important;
}

.cwp-field-container.cwp-field-text.form-group[data-name="reg_price"] {
    padding: 0 7.5px 0 0 !important;
    margin-bottom: 10px;
    width: 16.67% !important;

}

.cwp-field-container.cwp-field-text.form-group[data-name="sale_price"] {
    padding: 0 0 0 7.5px !important;
    margin-bottom: 10px;
    width: 16.67% !important;
}

.cwp-field-container.cwp-field-text.form-group[data-name="item_name"] label,
.cwp-field-container.cwp-field-text.form-group[data-name="reg_price"] label,
.cwp-field-container.cwp-field-text.form-group[data-name="sale_price"] label,
.cwp-field-container.cwp-field-textarea.form-group[data-name="menu_item_des"] label {
    text-transform: capitalize !important;
    color: #000000 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

input.form-control.menu-item-name:focus,
input.form-control.sale-price:focus,
input.form-control.reg-price:focus,
textarea.form-control.menu-item-description:focus,
select.spice-level:focus,
select.choose-listing-form-section:focus {
    border-color: #dedede !important;
    box-shadow: none !important;
}

.cwp-field-container.cwp-field-textarea.form-group[data-name="menu_item_des"] {
    padding: 0 !important;
    margin: 0 0 10px !important;
    width: 100%;
}

textarea.form-control.menu-item-description {
    border: 1px solid #dedede !important;
    color: #818181 !important;
    height: 57px !important;
    resize: vertical;
    font-size: 13px !important;
    padding: 6px 12px !important;
    line-height: 1.43em !important;

}

.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"],
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] {
    padding: 0 !important;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
}

.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] {
    width: fit-content;
    margin-top: 0;
    align-content: center;
}

.cwp-field-container.cwp-field-dropdown.form-group[data-name="spice_level"] {
    width: 200px;
}

.cwp-field-container.cwp-field-dropdown.form-group[data-name="spice_level"] label {
    display: none;
}

.cwp-field-container.cwp-field-dropdown.form-group[data-name="spice_level"] select {
    padding-bottom: 11.5px !important;
    padding-top: 11.5px !important;
    color: #555;
}

.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"] .cwp-switch-container,
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] .cwp-switch-container {
    display: flex !important;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"] .cwp-field-switch-container.cwp-switch,
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] .cwp-field-switch-container.cwp-switch {
    width: 40px;
    height: 18px;
    border-radius: 50px;
}

.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"] .cwp-field-switch-container.cwp-switch .cwp-switch-text-no,
.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"] .cwp-field-switch-container.cwp-switch .cwp-switch-text-yes,
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] .cwp-field-switch-container.cwp-switch .cwp-switch-text-no,
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] .cwp-field-switch-container.cwp-switch .cwp-switch-text-yes {
    font-size: 0px !important;
}

.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"] .cwp-field-switch-container.cwp-switch .cwp-switch-slider,
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] .cwp-field-switch-container.cwp-switch .cwp-switch-slider {
    background: #e7edf3;
    transition: 0.5s !important;
}

.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"] .cwp-switch .cwp-switch-field:checked~.cwp-switch-slider,
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] .cwp-switch .cwp-switch-field:checked~.cwp-switch-slider {
    background: #007cba;

}

.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"] .cwp-field-switch-container.cwp-switch .cwp-switch-slider:before,
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] .cwp-field-switch-container.cwp-switch .cwp-switch-slider:before {
    width: 13px;
    height: 13px;
    left: 3px;
    border-radius: 50%;
    transform: translate(0px) translateY(-50%);
    transition: 0.5s;
}

.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"] .cwp-switch .cwp-switch-field:checked~.cwp-switch-slider:before,
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] .cwp-switch .cwp-switch-field:checked~.cwp-switch-slider:before {
    transform: translate(21px) translateY(-50%);
    left: 3px;
}


.cwp-field-container.cwp-field-switch.form-group[data-name="external_menu"] .cwp-switch-container label,
.cwp-field-container.cwp-field-switch.form-group[data-name="popular"] .cwp-switch-container label {
    font-size: 14px !important;
    color: #333 !important;
    font-weight: 700 !important;
    line-height: 1.1em;
    margin: 0;
}

.cwp-field-container.cwp-field-text.form-group[data-name="menu_button_name"],
.cwp-field-container.cwp-field-text.form-group[data-name="menu_button_url"] {
    width: calc((100% - 30px) / 2) !important;
    padding: 0px !important;
    margin-bottom: 20px !important;
}

.cwp-field-container.cwp-field-text.form-group[data-name="menu_button_name"] label,
.cwp-field-container.cwp-field-text.form-group[data-name="menu_button_url"] label {
    margin-bottom: 10px !important;
    color: #000000 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.cwp-field-container.cwp-field-file.form-group.cubewp-have-image-field[data-name="upload_menu_image"] {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.cwp-field-container.cwp-field-file.form-group.cubewp-have-image-field[data-name="upload_menu_image"] label {
    text-transform: capitalize !important;
    color: #000000 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.cwp-field-container.cwp-field-file.form-group.cubewp-have-image-field[data-name="upload_menu_image"] .cwp-file-field {
    height: 200px;
    border: 3px dotted #dedede;
    display: block;
    padding: 60px 25px;
    color: #97A1A8;
    background: #F5F5F5;
    text-align: center;
    border-radius: 0px;
    position: relative;
}



.cwp-field-container.cwp-field-file.form-group.cubewp-have-image-field[data-name="upload_menu_image"] .cwp-file-field {
    margin: 0 !important;
}

.cwp-field-container.cwp-field-file.form-group.cubewp-have-image-field[data-name="upload_menu_image"] .cwp-file-field-preview {
    margin: 20px 0 0 !important;
}


.cwp-repeating-field-container.cwp-menu-repeater-container .cwp-repeating-field-wrapper .cwp-add-new-repeating-field {
    border: 1px solid #2458FF;
    color: #2458FF;
    background: transparent;
    box-shadow: none;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.43em;
    font-weight: 500;
    padding: 17px 25px;
    width: 100%;
    border-radius: 5px;
    margin-top: 30px !important;
    margin-bottom: 35px !important;
    transition: 0.3s ease;
}

.cwp-repeating-field-container.cwp-menu-repeater-container .cwp-repeating-field-wrapper .cwp-add-new-repeating-field:hover {
    color: #fff;
    background-color: #2458FF;
}

#cubewp-submit-form-3b0f38e5 .cubewp-elementor-form-section,
#cubewp-submit-form-3b0f38e5 .cubewp-elementor-form-section .cubewp-elementor-section-fields {
    margin: 0 !important;
}

#cubewp-submit-form-3b0f38e5 .cubewp-elementor-form-submit.cwp-from-submit {
    font-size: 12px;
    line-height: 1.43em;
    font-weight: 500;
    text-align: center;
    padding: 17px 25px;
    border-radius: 5px;
    width: 50%;
    display: block;
    margin: 0 auto;
    transition: 0.3s ease;
}

.elementor-ep-buttons path {
    transition: 0.3s !important;
}

.elementor-heading-title {
    white-space: break-spaces;
}

.cwp-menu-group-content.cwp-field-container.form-group.cubewp-menus-groups-list .select2.select2-container.select2-container--default.select2-container--disabled {
    display: none;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--primary-color);
}

body .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--primary-color) !important;
}

.select2-results ul.select2-results__options li {
    border-radius: 4px !important;
}

.select2-container--open .select2-dropdown.select2-dropdown--above {
    margin-top: 0px !important;
    border: unset;
    box-shadow: 1px 8px 11px 2px #bfbdbd66;
    border-radius: 8px;
    padding: 6px;
}

.cwp-gallery-field-container .cwp-gallery-field-preview span {
    background: #000000;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    padding: 1px 5px 5px 5px;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 0;
    transition: 300ms;
    z-index: 9;
}

.cwp-payment-balance-grids .cwp-payment-withdraw-button #payment {
    background: #fff !important;
}

.cwp-order-row.cwp-lp-order-load-hidden {
    display: none !important;
}

.select2-dropdown.select2-dropdown--above,
.select2-dropdown.select2-dropdown--below {
    min-width: 150px !important;
}

.cubewp-processing-ajax,
.cubewp-processing-ajax:hover,
.cwp-frontend-form-container [type=submit].cubewp-processing-ajax,
.cwp-frontend-form-container [type=submit].cubewp-processing-ajax:hover {
    border-color: var(--primaery-color) !important;
}


/* Container Reset & Minimal Shadow */
.ui-datepicker {
    width: 300px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: none;
    /* jQuery UI handles visibility */
}

/* Header Styling (Month/Year) */
.ui-datepicker-header {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

.ui-datepicker-title {
    text-align: center;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* Style the Dropdowns */
.ui-datepicker-title select {
    border: none !important;
    background: #f8f9fa;
    padding: 4px 5px !important;
    border-radius: 1px !important;
    font-size: 14px !important;
    height: 35px !important;
    cursor: pointer !important;
    border: 1px solid #ddd !important;
}

/* Navigation Arrows */
.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: 2px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s;
}

.ui-datepicker-prev {
    left: 0;
}

.ui-datepicker-next {
    right: 0;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    background: #f0f0f0;
}

/* Calendar Table */
.ui-datepicker-calendar {
    width: 100%;
    border-collapse: collapse;
}

.ui-datepicker-calendar th {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    padding: 0;
    font-weight: 500;
}

.ui-datepicker-calendar td {
    padding: 2px;
    text-align: center;
}

/* Day Numbers */
.ui-datepicker-calendar .ui-state-default {
    display: block;
    text-decoration: none;
    color: #444;
    padding: 8px;
    border-radius: 0;
    transition: all 0.2s;
}

.ui-datepicker-calendar .ui-state-default:hover {
    background: #e7e7e7;
}

/* Current Day Highlight */
.ui-datepicker-today .ui-state-highlight {
    background: var(--primary-color) !important;
    border: unset !important;
    color: #fff !important;
}

/* Selected Day */
.ui-datepicker-calendar .ui-state-active {
    background: #007bff !important;
    color: #fff !important;
}

/* Timepicker Section (Simple list) */
.ui-timepicker-div dl {
    margin-top: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.ui-timepicker-div dt {
    font-size: 13px;
    color: #666;
}

.ui-timepicker-div select {
    width: 100%;
    background: #f8f9fa;
    padding: 4px 5px !important;
    border-radius: 1px !important;
    font-size: 14px !important;
    height: 35px !important;
    cursor: pointer !important;
    border: 1px solid #ddd !important;
}

/* Hide Milliseconds and extra noise */
.ui_tpicker_unit_hide {
    display: none !important;
}

.ui-datepicker-calendar th span {
    display: inline-block;
    padding: 10px 7px;
    width: 100%;
    color: #000;
    text-align: center;
}

.ui-datepicker .ui-datepicker-header a span {
    color: var(--primary-color);
}

.ui-datepicker .ui-datepicker-header a {
    text-decoration: unset !important;
}

.cwp-ui-datepicker .ui-datepicker .ui-datepicker-buttonpane.ui-widget-content button {
    border: unset;
    padding: 9px 24px;
}

.cwp-menu-type-content.header-tabber-content .cwp-menu-type-content-header i {
    line-height: 0px;
    text-align: center;
    font-size: 10px;
    color: #3f576e;
    transform: translateY(-3px);
}

.cwp-lp-coupon-dashboard-container .cwp-switch .cwp-switch-field:checked~.cwp-switch-slider:before {
    left: calc(50% - -3px);
    width: calc(50% - 1px);
}

.cwp-booking-container-widget .cwp-booking-day-calendar-container .ui-datepicker-month,
.cwp-booking-container-widget .cwp-booking-day-calendar-container .ui-datepicker-year {
    border: unset !important;
    padding: 0 !important;
}

.cwp-booking-container-widget .cwp-booking-switch-view:hover,
.cwp-booking-container-widget .cwp-booking-switch-view.active {
    background: #fff0;
    border-color: #ccc;
    color: #222;
}

.cwp-booking-container-widget .cwp-booking-calendar-inline .ui-datepicker-prev span {
    margin-left: 7px !important;
}

.cwp-booking-container-widget .cwp-booking-calendar-inline .ui-datepicker-next span {
    margin-right: 7px !important;
}

.cwp-booking-container-widget .cwp-booking-calendar-inline .ui-datepicker-prev span,
.cwp-booking-container-widget .cwp-booking-calendar-inline .ui-datepicker-next span {
    background-size: cover;
    font-size: 0 !important;
    display: inline-block;
    height: 16px;
    width: 10px;
    transform: translateY(0px);
}

.cubewp-elementor-submit-form-wrapper .cwp-field-repeating_field .cwp-repeating-single-field-actions .cwp-repeating-single-field-collapse {
    position: absolute;
    right: 45px;
    z-index: 99999999;
}

.payment-table-details a {
    color: var(--secondary-color) !important;
}

.payment-table-details a:hover,
.cwp-lp-events-table td.cwp-event-title strong:hover {
    color: var(--primary-color) !important;
}

span.select2-selection__clear {
    display: none !important;
}


/* single lisitng pay and publish buttons  */
.cubewp-post-author-actions {
    padding: 8px 8px 6px 8px;
    display: flex;
    gap: 6px;
    right: unset;
    box-shadow: unset;
    left: 50%;
    z-index: 99999999999;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 29px 28px 0 0;
    background-color: #f7f9fa;
    border: 1px solid #ddd;
    border-bottom: unset;
}

.cubewp-post-author-actions a {
    color: unset;
}

.cubewp-post-author-actions button:hover,
.cubewp-post-author-actions .cube-post-edit-btn {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: #fff;
    text-decoration: unset;
}

.cubewp-post-author-actions a {
    text-decoration: unset !important;
}

.cubewp-post-author-actions .cube-post-edit-btn,
.cubewp-post-author-actions .cwp-pay-publish-btn {
    border-radius: 200px;
    margin: 0;
    font-size: 14px;
}

.cubewp-post-author-actions .cwp-publish-btn {
    color: #fff !important;
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color);
    text-decoration: unset;
    border-radius: 200px;
    margin: 0;
}


.cubewp-post-author-actions .cwp-publish-btn:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important;
}

.cubewp-post-author-actions .cwp-pay-publish-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: unset !important;
}

.cubewp-post-author-actions button:hover,
.cubewp-post-author-actions .cube-post-edit-btn {
    color: var(--primary-color) !important;
    text-decoration: unset !important;
    border-color: var(--primary-color) !important;
}

.cubewp-post-author-actions button:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.cubewp-post-author-actions .cube-post-edit-btn svg {
    display: none !important;
}

.cubewp-post-author-actions .cube-post-edit-btn {
    line-height: 1.4rem;
}

.cubewp-post-author-actions .cwp-pay-publish-btn:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important;
}

.cv-close {
    line-height: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
}

.claim-plan {
    position: relative;
}

.claim-plan .lp-hot {
    position: absolute;
    width: 27px;
    right: 20px;
    left: auto;
    z-index: 999;
    margin-top: -52px;
    margin-left: -60px;
}

.cwp-review-associated-post a {
    color: #1d1d1d;
}

.cwp-review-associated-post a:hover {
    color: var(--primary-color);
}

/* Google Reviews */
.cwp-gr-container {
    width: 100%;
}

/* Layouts */
.cwp-gr-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cwp-gr-grid {
    display: grid;
    gap: 20px;
}

.cwp-gr-carousel {
    overflow-x: auto;
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.cwp-gr-carousel .cwp-gr-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.cwp-gr-masonry {
    column-gap: 20px;
}

.cwp-gr-masonry .cwp-gr-card {
    break-inside: avoid;
    margin-bottom: 20px;
}

/* Card */
.cwp-gr-card {
    position: relative;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cwp-gr-card.is-hidden {
    display: none;
}

/* Required structure: left avatar, right content */
.cwp-gr-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cwp-gr-left {
    flex: 0 0 auto;
    margin-right: 0;
}

.cwp-gr-right {
    flex: 1 1 auto;
    min-width: 0;
}

/* Avatar */
.cwp-gr-avatar {
    position: relative;
    flex-shrink: 0;
}

.cwp-gr-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Style 3: badge overlaps avatar */
.cwp-gr-avatar--with-badge .cwp-gr-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: #fff;
    border-radius: 50%;
    padding: 1px;
    line-height: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Header / meta */
.cwp-gr-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.cwp-gr-header-content {
    flex: 1;
    min-width: 0;
}

.cwp-gr-header-rating {
    margin-left: auto;
}

.cwp-gr-header-badge {
    margin-left: auto;
}

.cwp-gr-author {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
    display: block;
}

.cwp-gr-date {
    font-size: 12px;
    color: #999;
    display: inline-block;
}

/* Stars */
.cwp-gr-stars {
    display: inline-flex;
    gap: 2px;
}

.cwp-gr-star-filled,
.cwp-gr-star-empty {
    font-size: 14px;
}

.cwp-gr-star-filled {
    color: #FFB300;
}

.cwp-gr-star-empty {
    color: #D3D3D3;
}

/* Body */
.cwp-gr-body {
    margin-top: 8px;
}

.cwp-gr-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.cwp-gr-footer {
    margin-top: 10px;
}

.cwp-gr-footer--right {
    display: flex;
    justify-content: flex-end;
}

/* Badge SVG wrapper */
.cwp-gr-badge svg {
    display: block;
}

/* Load more */
.cwp-gr-load-more {
    text-align: center;
    margin-top: 30px;
}

.cwp-gr-load-more-button {
    background: #4285F4;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cwp-gr-load-more-button:hover {
    background: #3b78e7;
}

.cwp-gr-load-more-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}