/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 @import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css);
 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;1,300;1,400;1,500;1,700&display=swap');
.wpfcfeaturesList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.wpfcContents{
    display: none;
    font-family: Open Sans,sans-serif;
}
.LoadingAnimation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
}
.wpfcfeaturesList .wpfcItem {
    width: 300px;
    aspect-ratio: 1;
    border: 1px solid #565656;
    border-style: dashed;
}
.wpfcfeaturesList .wpfcItem .itemData {
    padding: 12px;
}
.wpfcItem.addbtn .itemData {
    height: calc(100% - 50px);
}
.wpfcfeaturesList .wpfcItem.hasImage .itemData {
    background-color: rgba(0,0,0,0.5);
}
.wpfcfeaturesList .wpfcItem.hasImage {
    border: none !important;
    border-color: transparent !important;
    display: flex;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.wpfcfeaturesList .wpfcItem.hasImage .itemHead{
    border-color: #fff;
}
.wpfcfeaturesList .wpfcItem.hasImage .itemHead h3{
    color: #fff;
}
.wpfcfeaturesList .wpfcItem .itemHead {
    border-bottom: 1px solid #565656;
    padding: 10px 0 20px;
    text-align: center;
}
.wpfcfeaturesList .wpfcItem .itemHead h3 {
    margin: 0;
    line-height: 20px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 18px;
}
.wpfcItem.addbtn h3.featureTitle {
    color: #545454;
}
.itemData {
    flex: 1;
}
.actionButton {
    background-color: var(--primary_color);
    padding: 10px;
    height: 50px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.actionButton[disabled] {
    background-color: #bdbdbd;
    color: #818181;
    pointer-events: none;
}
.actionButton.remove{
    background-color: #e57373 !important;
}
.actionButton p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 18px;
    font-family: Open Sans,sans-serif;
}
.innerData {
    min-height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.wpfcItem.addbtn .innerData {
    height: 100%;
}
.innerData p {
    text-align: center;
    margin: 0;
    color: #fff;
    margin: 10px 0;
    font-size: 14px;
    height: 100px;
    overflow: hidden;
    font-weight: 300;
    line-height: 1.6rem;
    font-family: Open Sans,sans-serif;
}

.featurePrices {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.borderWpfcBtn {
    padding: 5px 10px;
    border: 1px solid white;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    flex: auto;
    text-align: center;
    user-select: none;
    transition: .3s ease-in;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    text-decoration: none !important;
}

.borderWpfcBtn.selected {
    background: #fff;
    border-color: var(--primary_color);
    color: var(--primary_color);
}
.borderWpfcBtn.selected:before {
    content: "\f14a";
    padding-right: 10px;
    font-family: 'Font Awesome 5 Free';
}
.addButton {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    height: 88px;
}
.addButton span.wpfcPlusIcon {
    font-size: 14px;
    font-weight: bold;
    color: var(--primary_color);
}
.addButton:hover span, .addButton:hover p {
    color: #545454 !important;
}
.addButton p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    color: var(--primary_color);
    overflow: hidden;
    font-family: Open Sans,sans-serif;
}
.wpfcItem.addbtn{
    cursor: pointer;
    user-select: none;
    background-color: #efefef;
}
.wpfcBtn[disabled], button.wpfcBtn.disabled {
    opacity: .5;
    background: #ddd !important;
    color: #333 !important;
    pointer-events: none;
    cursor: progress;
}

.formArea {
    margin-top: 100px;
    display: flex;
}
h3.formTitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #565656;
}
.formArea > div {
    flex: 1;
}
.formArea > div.wpfcSectionLeft {
    padding-right: 20px;
}
.formArea > div.wpfcSectionRight {
    padding-left: 20px;
}
.wpfcField {
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.wpfcField .wpfcInput {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.wpfcField.columnField .wpfcInput{
    width: 50%;
}
.wpfcInput label {
    font-size: 14px;
    font-weight: 500;
    color: #565656;
}
.wpfcField input, .wpfcField select, .wpfcField textarea {
    padding: 8px;
    margin: 0;
    border: 1px solid var(--primary_color);
    border-radius: 3px;
    font-size: 14px;
    margin-top: 3px;
    outline: none;
    box-shadow: none;
    width: 100%;
}
.wpfcField select {
    padding-right: 30px;
}
.wpfcField textarea{
    min-height: 80px;
    resize: vertical;
}
.submitBtnBox {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
#wpfc .wpfcBtn {
    background-color: var(--primary_color);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    border: none;
    box-shadow: none;
    color: #fff;
    transition: .3s ease-in;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    -o-transition: .3s ease-in;
}
#wpfc .wpfcBtn:hover{
   filter: brightness(0.8);
   -webkit-filter: brightness(0.8);
}

#wpfc .videoWrapper {
    margin-bottom: 25px;
}
.wpfcSectionRight p {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: #565656;
    margin: 0;
}
.dnone{
    display: none !important;
}
/* Popup */
body:has(div#featuresPopup){
    overflow-y: hidden;
}
div#featuresPopup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffff;
    overflow-y: auto;
    padding-bottom: 50px;
}

body:has(#wpadminbar) div#featuresPopup {
    top: 32px !important;
}
.stickySidebar {
    position: sticky;
    top: 260px;
}
.wpfcPopupHeader {
    background: var(--primary_color);
    padding: 40px 50px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 0 14px -5px;
}
span.closeWpfcPupup {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    flex-direction: column;
}
.wpfcPopupHeader h3.heading {
    font-family: TimesNewRoman,"Times New Roman",Times,Baskerville,Georgia,serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}
.wpfcPopupHeader p.subHeading {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}
.wpfcPopupHeader p.description {
    padding: 0 50px;
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    margin: 0;
    font-style: italic;
}

.wpfcPopUpContents {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}
.wpfcPopUpContents .featuresFilter {
    width: 400px;
    padding: 0 50px;
}
.wpfcPopUpContents .wpfcfeaturesList {
    width: calc(100% - 400px);
    height: fit-content;
}

.featuresFilter p {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 30px;
}
.featuresFilter ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.featuresFilter ul li {
    font-size: 16px;
    font-weight: bold;
    color: #565656;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
    font-family: Open Sans,sans-serif !important;
    transition: .1s ease-in;
    -webkit-transition: .1s ease-in;
    -moz-transition: .1s ease-in;
    -ms-transition: .1s ease-in;
    -o-transition: .1s ease-in;
}
.featuresFilter ul li:hover{
    color: var(--primary_color);
}
.featuresFilter ul li:before {
    content: "\f0c8";
    padding-right: 10px;
    font-family: "Font Awesome 5 Free";
    color: #e9e9e9;
}
.featuresFilter ul li.selected, .featuresFilter ul li.selected:before{
    color: var(--primary_color);
}
.featuresFilter ul li.selected:before {
    content: "\f00c";
}
.roughCosts{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary_color);
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999
}
.roughCosts a.borderWpfcBtn {
    padding: 13px 20px;
    box-shadow: none;
    color: #fff;
}

.borderWpfcBtn:hover{
    background: #fff;
    border-color: var(--primary_color);
    color: var(--primary_color) !important;
}
.roughCosts span{
    color: #fff;
}
.roughCosts .roughCost {
    font-size: 42px;
    font-weight: 300;
    line-height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 30px;
}
.roughCosts p {
    margin: 0;
    color: #ffffff;
    width: 60%;
    text-align: center;
    font-style: italic;
    font-weight: 300;
}
.filterTogglebtn {
    display: none;
    position: absolute;
    right: -44px;
    cursor: pointer;
    user-select: none;
    background: #ddd;
    padding: 5px 10px;
    border-radius: 3px;
    box-shadow: 0 0 4px -3px;
}
.nofeature{
    text-align: center;
    width: 100%;
    padding: 50px 0;
}
.successMsg {
    display: flex;
    background: #55b94809;
    padding: 10px;
    border-radius: 0 5px 5px 0;
    border-left: 3px solid var(--primary_color);
}
.successMsg p {
    margin: 0;
    color: var(--primary_color);
    font-size: 16px;
    font-weight: 400;
}
.successMsg span {
    font-size: 24px;
    color: var(--primary_color);
    width: 50px;
}

@media screen and (max-width: 768px) {
    body:has(#wpadminbar) div#featuresPopup {
        top: 45px !important;
    }
    .wpfcPopupHeader {
        padding: 27px 50px;
    }
    .wpfcPopupHeader p.description, .wpfcPopupHeader h3.heading, .wpfcPopupHeader p.subHeading {
        display: none;
    }
    .wpfcPopUpContents .featuresFilter {
        width: 70%;
        position: fixed;
        z-index: 9999;
        background: #fff;
        top: 0;
        bottom: 0;
        box-shadow: 0 0 10px -4px;
    }
    .wpfcPopUpContents .featuresFilter.active{
        left: -70% !important;
    }
    .filterTogglebtn{
        display: inline-block;
    }
    body:has(#wpadminbar) .filterTogglebtn {
        top: 55px !important;
    }
    body:has(#wpadminbar) .stickySidebar {
        top: 55px !important;
    }
    .wpfcfeaturesList {
        width: 100% !important;
        justify-content: center !important;
    }

    .formArea {
        flex-direction: column;
    }
    .wpfcSectionLeft {
        padding: 0 !important;
    }
    .wpfcSectionRight {
        padding: 0 !important;
        margin-top: 50px;
    }
    .videoWrapper iframe {
        width: 100%;
    }
    .roughCosts {
        margin-top: 50px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        box-sizing: border-box;
    }
    .roughCosts .roughCost {
        flex-direction: column;
        font-size: 34px;
    }
    .roughCosts a.borderWpfcBtn {
        padding: 8px 15px;
    }
    .roughCosts p {
        width: 90%;
        font-size: 14px;
    }

}