﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* COLOURS */
/* Examples on how to use: 

    color: var(--dark);
    backgound: var(--blue);

*/
:root {
    --blue: #7ED6FE;
    --lightBlue: #C4EFFF;
    --green: #7ED321;
    --dark: #2e404f;
    --red: #C72E67;
    --white: #ffffff;
    --light: #f8f9fa;
    --grey: #9B9B9B;
    --greyLight: #ced4da;
}

/******************************************************************************
FONTS
******************************************************************************/
/*@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/proxima/proxima_nova_bold-webfont.woff2') format('woff2'), url('../fonts/proxima/proxima_nova_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_nova_thextrabold';
    src: url('../fonts/proxima/proxima_nova_extrabold-webfont.woff2') format('woff2'), url('../fonts/proxima/proxima_nova_extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/proxima/proxima_nova_semibold-webfont.woff2') format('woff2'), url('../fonts/proxima/proxima_nova_semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novathin';
    src: url('../fonts/proxima/proxima_nova_thin-webfont.woff2') format('woff2'), url('../fonts/proxima/proxima_nova_thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('../fonts/proxima/proximanova-regular-webfont.woff2') format('woff2'), url('../fonts/proxima/proximanova-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}*/

html,
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    z-index: 10;
    color: var(--dark);
    line-height: 1.5;
}
html {
    position: relative;
    min-height: 100%;
}

.wrapper {
    margin-bottom: 30px;
}


img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Serif', serif;
}

h5 {
    font-weight: bold;
}

label {
    font-family: 'Open Sans';
}
.main-title h1 {
    font-size: 60px;
}

p, li, strong {
    color: var(--dark);
}

.text-blue {
    color: var(--blue);
}
.text-grey {
    color: var(--grey);
}

.text-danger {
    color: var(--red) !important;
    font-size: 13px;
    font-weight: bold;
}

/* MODAL */
.modal-header {
    background: #eeeeee;
    text-align: center !important;
    font-family: 'Open Sans';
}
.modal-body {
    background: #f9f9f9 !important;
}
.modal-footer {
    border-top: none !important;
    background: #f9f9f9;
}

.stepProcess {
    text-align: center;
    font-family: 'Open Sans';
}

.open-bubble {
    display: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    top: 30px;
    background: url("../images/info-bubble.svg") no-repeat;
    background-size: cover;
    filter: invert(79%) sepia(9%) saturate(6842%) hue-rotate(166deg) brightness(104%) contrast(101%);
}

.bubble {
    font-family: 'Open Sans';
    background: var(--lightBlue);
    border-radius: 5px;
    padding: 10px;
    border: 1px solid var(--blue);
    max-width: 350px;
    position: absolute;
    right: -370px;
    top: 0;
}

/*BUTTONS*/

.loginEmail {
    margin: auto;
    margin-top: 15px;
    width: 320px;
    height: 40px;
    text-align: center;
    padding-top: 5px;
    display: inline-block;
    background: white;
    color: #444;
    border-radius: 5px;
    border: thin solid #888;
    box-shadow: 1px 1px 1px grey;
    white-space: nowrap;
    cursor: pointer;
}
.loginEmail i {
    position : relative;
    top: calc(50% - 10px);
    left: -70px;
}

.form-check {
    padding: 0;
}

select.title {
    width: 100px;
}

.choose-horizontal {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.choose-horizontal .form-check {
    display: flex;
    flex: 1;
    padding: 0 5px;
}

.bluecurve {
    background-color: var(--blue);
    background-image: url(../images/bluecurve.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 200px;
}

/* DOTTED BG */
.dotted-container {
    background: url("/images/dots-blue-bg.svg") repeat;
    background-size: 9px;
    padding: 20px;
}
.dotted-info {
    background: var(--white);
    padding: 20px;
}

/* HOME STEPS */

.whitebox {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 0.25rem 1rem rgba(46,74,69,.25);
}

.home-info {
    background-color: var(--blue);
    background-size: 9px;
    padding: 50px;
    /*margin-bottom: 70px;*/

}
    .home-info .content {
        background: var(--white);
        padding: 50px;
        margin: 50px 0 80px 0;
        position: relative;
    }
        .home-info .content .stamp {
            content: "";
            background: url("/images/stamp-lpa.svg") no-repeat;
            background-size: cover;
            width: 50px;
            height: 50px;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        .inner-info {
            padding: 20px;
        }

.steps {
    margin: 30px 0;
}
    .steps .step {
        margin-bottom: 50px;
        display: flex;
        align-items: center;
    }
        .steps .step div {
            padding: 0 50px;
        }

    .steps h2 {
        position: relative;
    }
    .steps .number {
        position: absolute;
        left: 0px;
        top: -75px;
        font-size: 60px;
        color: rgba(83,213,255,0.3);
        font-weight: bold;
        z-index: -1;
    }
    .steps .step img {
        border-radius: 10px;
        width: 70%;
    }

/* RADIO/CHECK BUTTONS */
.radio input[type="radio"] {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.radio label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
    border-radius: 100%;
    vertical-align: -3px;
    border: 1px solid var(--blue);
    padding: 3px;
    background-color: transparent;
    background-clip: content-box;
    transition: 0.3s;
}

.radio label {
    border: 1px solid var(--blue);
    border-radius: 5px;
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin: 0 0 10px 0;
    transition: 0.3s;
    cursor: pointer;
}

.radio input:checked + label:before {
    background-color: var(--blue);
}

.radio input[type="radio"]:checked + label {
    background: var(--lightBlue);
}

.checkbox {
    width: auto;
    padding: 0;
}

    .checkbox .form-check-input {
        height: 20px;
        width: 20px;
        outline: 2px solid var(--blue);
        outline-offset: -2px;
        top: 8px;
        left: 30px;
    }

    .checkbox .form-check-label {
        padding-left: 10px;
        width: 100%;
        max-width: 350px;
        border: 1px solid var(--blue);
        border-radius: 5px;
        padding: 10px 10px 10px 35px;
        margin-bottom: 10px;
        cursor: pointer;
    }

    .checkbox .form-check-input:checked + label {
        background: var(--lightBlue);
    }

.agreement .checkbox .form-check-label {
    max-width: 100%;
}

.DOB select {
    background: var(--light);
}

/***********************************
NAV/HEADER
************************************/



.navbar-light .navbar-nav .nav-link {
    color: #444;
    font-family: 'Open Sans';
    font-weight: bold;
    font-size:0.85em;
}


.white-txt {
    color: #fff !important;
    font-family: 'Open Sans';
}

@media(min-width:1200px) {
    .white-txt {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {

    #header-img .navbar-light .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

header .navbar-light .navbar-nav .phone {
    margin-top: -25px;
    margin-bottom: 8px;
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #FF5C5D;
}

header .navbar-light .navbar-nav .phone.black-txt {
    color: #444
}


/* PROMO OFFER */



#promo-offer {
    background: #FF5C5D;
    opacity: 0.9;
}

    #promo-offer h6 a:hover {
        color: rgba(0,0,0,0.50) !important;
        text-decoration:none !important;
    }



@media(min-width:992px) {
    #promo-offer {
        /*position: fixed;
        z-index: 1;*/
        width: 100%;
    }
}


/*Saved entites loading spinner*/
#loadingEntitesContainer {
    vertical-align: middle;
    width: 100%;
    text-align: center;
    color: #53D5FF;
}

.noEntitiesSavedMessage {
    color: #53D5FF;
}

/* savedAttorneys */
.savedAttorneys {
    border: 1px solid var(--blue);
    border-radius: 3px;
    margin-bottom: 20px;
}
.savedAttorneysHeader {
    font-size: 13px;
    padding: 3px;   
    font-weight: bold;
}
.attorneyContent {
    border-top: 1px solid var(--blue);
    padding: 5px 10px;
    font-size: 13px;
    font-family: 'Open Sans';
}
.suggestedAttorneyContent {
    color: #53D5FF;
}
.suggestedAttorneyContent .savedAttorneysCta a {
    background: #53D5FF;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 4px;
}
.suggestedPersonToNotifyContent {
    color: #53D5FF;
}
.suggestedPersonToNotifyContent .savedPeopleToNotifyCta a {
    background: #53D5FF;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 4px;
}
.savedAttorneysCta a {
    color: #2e404f;
    padding-left: 5px;
}
#editAttorneyModalContainer .modal {
    z-index: 9999;
}

/* savedPeopleToNotify */
.savedPeopleToNotify {
    border: 1px solid var(--blue);
    border-radius: 5px;
    margin-bottom: 20px;
}

.savedPeopleToNotifyHeader {
    font-size: 13px;
    padding: 3px;
    font-weight: bold;
}

.savedPeopleToNotifyContent {
    border-top: 1px solid var(--blue);
    padding: 5px 10px;
    font-size: 13px;
}

.savedPeopleToNotifyCta a {
    color: var(--dark);
    padding-left: 5px;
}

#editAttorneyModalContainer .modal {
    z-index: 9999;
}

/* Preferences and Instructions */
.preferencesTab {
    background: var(--light);
    padding: 15px;
}
.preferencesTab .nav-tabs {
    border: none !important;
    margin-bottom: 20px;
}
.preferencesTab li {
    width: 50%;
    text-align: center;
}
    .preferencesTab li a {
        font-family: 'Open Sans';
        color: var(--dark);
        font-weight: bold;
        text-decoration: none;
        padding: 10px 20px;
        font-size: 20px;
    }
    .preferencesTab a.active {
        border-bottom: 2px solid var(--blue);
    }

#whoToSendToAttorneysContainer,
#applicantAttorneysContainer {
    width: 95%;
    margin: 0 auto;
}
    #whoToSendToAttorneysContainer label,
    #applicantAttorneysContainer label {
        background: var(--light);
    }


.cta {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0;
}

.cta .btn {
    width: 165px;
}

.cta-no-flex {
    margin: 20px 0 0 0;
}

.cta-no-flex .btn {
    width: 165px;
}


/* Application Fee*/
#congratulations {
    border-bottom: 1px dashed var(--greyLight);
    margin-bottom: 20px;
}
#congratulations img {
    width: 50px;
    margin-bottom: 10px;
}

/* Payment */
.amountDue {
    background: var(--light);
    padding: 15px;
}
    .amountDue .amount {
        font-weight: bold;
        margin-bottom: 5px;
    }
    .amountDue label {
        margin: 0;
    }
    .amountDue label#total {
        font-size: 1.5rem;
    }
#paymentOptions .fieldset {
    margin-bottom: 1rem;
}

/* faqs */
.heroFaqs {
    background: var(--blue);
    padding-top: 30px;
    padding-bottom: 0px;
}
.heroFaqs img {
    max-width: 400px;
}
.faqsContainer {
    position: relative;
    top: -170px;
}
.homeFaqs {
    background: var(--light);
    padding: 50px 0;
}
.homeFaqs .faqsContainer {
    position: relative;
    top: 0;
}
.faqs .card {
    border: 1px solid var(--blue);
    margin-bottom: 10px;
    border-radius: 5px;
}
    .faqs .card .card-header {
        background: var(--white);
        border: none;
        padding: 20px;
        border-radius: 5px;
    }
        .faqs .card .card-body {
            padding: 0 20px 20px 20px;
        }
        .faqs .card .card-header .btn-link {
            color: var(--dark);
            padding: 0 30px 0 0;
        }
            .faqs .card .card-header .btn-link i {
                position: absolute;
                right: 20px;
                top: 27px;
            }

/* SUMMARY */
.projectTabs {
    border: none !important;
    margin-bottom: 20px;
}

    .projectTabs li {
        width: 50%;
        text-align: center;
    }

    .projectTabs a.active {
        background: var(--lightBlue) !important;
        border-radius: 50px !important;
    }

    .projectTabs li a {
        font-family: 'Open Sans';
        font-size: 16px;
        color: var(--dark) !important;
        font-weight: bold;
        text-decoration: none;
        padding: 10px 0 !important;
        background: none !important;
        border-radius: 0 !important;
    }
        .projectTabs li a span {
            color: var(--grey);
            font-size: 13px;
        }

.adminTabs {
    border: none !important;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--greyLight) !important;
}
    .adminTabs li {
        width: 50%;
        text-align: center;
    }
    .adminTabs a.active {
        border-bottom: 2px solid var(--blue) !important;
    }

    .adminTabs li a {
        font-family: 'Open Sans';
        font-size: 16px;
        color: var(--dark) !important;
        font-weight: bold;
        text-decoration: none;
        padding: 10px 0 !important;
        background: none !important;
        border-radius: 0 !important;
    }
        .adminTabs li a span {
            color: var(--grey);
            font-size: 13px;
        }
.adminTabs-content {
    
}
    .adminTabs-content .summaryStep {
        padding: 20px;
        border: 1px solid var(--greyLight);
        margin-bottom: 10px;
        position: relative;
        background: var(--white);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
        .adminTabs-content .summaryStep .summaryStepOrder {
            position: absolute;
            top: -5px;
            left: -5px;
            font-family: 'Open Sans';
            width: 25px;
            height: 25px;
            color: #fff;
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .adminTabs-content .summaryStep .summaryStepName {
            font-family: 'Open Sans';
            font-size: 20px;
        }
        .adminTabs-content .summaryStep .summaryStepStatusCompleted {
            font-family: 'Open Sans';
            color: var(--green);
        }
        .adminTabs-content .summaryStep .summaryStepStatusNotCompleted {
            font-family: 'Open Sans';
            color: var(--red);
        }
        .adminTabs-content .summaryStep .summaryStepStatusNotRequired {
            font-family: 'Open Sans';
            color: var(--grey);
        }
        .adminTabs-content .summaryStep .editStep {
            background: var(--light);
            padding: 5px 10px;
            color: var(--dark);
            border-radius: 5px;
            font-size: 13px;
            font-family: 'Open Sans';
        }
        .adminTabs-content .summaryStep .continueStep {
            background: var(--red);
            padding: 5px 10px;
            color: var(--white);
            border-radius: 5px;
            font-size: 13px;
            font-family: 'Open Sans';
        }


/* ~Introduction */
.introFeather {
    /*margin: 100px 0;*/
}
    .introFeather .container {
        position: relative;
        z-index: 100;
    }
    /*.introFeather > .container::after {
        content: "";
        background: url("/images/featherBG.svg") no-repeat;
        width: 100%;
        height: 682px;
        background-size: contain;
        position: absolute;
        left: 0;
        top: -10px;
        z-index: -9999;
    }*/
.introTypes {
    z-index: 99999;
}

/* THANKS YOU */
img.thankYouImg {
    width: 50px;
}
.cardThankYou {
    background: var(--light);
    border-radius: 8px;
    padding: 20px;
}
.cardThankYou img {
    width: 70px;
}

/**** RESPONSIVE ****/
@media only screen and (max-width: 1024px) {
    .navbar .btn {
        padding: 7px 8px !important;
    }
}
@media only screen and (max-width: 991px) {
    .navbar ul li{
        display: inline;
    }
    .open-bubble {
        display: block;
    }
    .bubble {
        position: static;
        max-width: 100%;
        display: none;
    }
    .summaryNav .nav-item {
        width: 100%;
    }

    .summaryNav .nav-item .btn-lpa {
        margin-bottom: 5px;
    }

    footer .footer-head {
        height: 80px;
    }
}
@media only screen and (max-width: 812px) {
    .main-title h1, h1 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 768px) {
    
}

@media only screen and (max-width: 575px) {
    .stepProcess {
        font-size: 11px;
    }
    .btn {
        width: 100%;
    }
    .steps {
        margin: 0;
    }
    .open-bubble {
        top: 5px;
        right: 15px;
    }
    .home-info {
        padding: 20px;
    }
        .home-info .content {
            padding: 20px;
        }
            .home-info .content::before {
                width: 30px;
                height: 30px;
                top: 10px;
                right: 10px;
            }
            .home-info .content .stamp {
                display: none;
            }
    .introFeather {
        margin: 0; 
    }
    .steps .step div {
        padding: 0 15px;
    }
    .cta {
        background: var(--dark);
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 15px;
        align-items: center;
        width: 100%;
        z-index: 9999;
        margin: 0;
    }
        .cta .btn {
            width: 165px;
            padding: 12px 0px;
        }
        .cta .btn-outlined {
            border: 1px solid var(--white);
            color: #fff;
            font-weight: bold;
        }

    .dotted-container {
        background: none;
        background-size: 0;
        padding: 0 15px;
    }

    .dotted-info {
        background: var(--white);
        padding: 0;
    }
    .adminTabs li a {
        font-size: 13px;
    }
        .adminTabs li a span {
            font-size: 11px;
        }
    .faqs .card .card-header .btn-link {
        text-align: left;
    }

    footer .footer-head {
        height: 60px;
    }
    .footer-body {
        padding-bottom: 100px !important;
    }
}
@media only screen and (max-width: 360px) {
    .cta .btn {
        width: 140px;
        padding: 12px 0px;
    }

    footer .footer-head {
        height: 50px;
    }
    img.thankYouImg {
        width: 40px;
    }
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */

.border-top {
    border-top: 1px solid var(--greyLight);
}

.border-bottom {
    border-bottom: 1px solid var(--greyLight);
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */

.footer-head {
    background-color: #2E404F;
    background-image: url("../images/darkcurve-kev.svg");
    background-repeat: no-repeat;
    background-position: top center;
    height: 200px;
}

.footer-body {
    background-color: #2E404F;
    color: #fff;
    padding-bottom: 30px;
    font-size: 0.85em;
}

.footer-logo-image {
    width: auto;
}

footer .navbar {
    background: #2E404F;
}

footer hr {
    border-color: #cccccc;
}

footer p {
    color: #ffffff;
}

footer .fab {
    color: #ffffff;
}

footer a {
    text-decoration: none;
    color: #fff;
}

footer a:hover {
    text-decoration: none;
    color: #fff;
}

/*Global validations*/
.globalValidation ul {
    padding: 0;
    list-style-type: none;
}

.globalValidation ul li {
    color: red;
}

/*Loaging spinner*/
#waiting {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

#waitingcontent {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#waitingspinner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    font-size: larger;
    padding-top: 80px;
    color: #000000;
    font-weight: bold;
}

#waitingP {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

#waitingcontentP {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#waitingspinnerP {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    font-size: larger;
    padding-top: 80px;
    color: #000000;
    font-weight: bold;
}

/***********************************
SIGNUP
************************************/
#signup-body header {
    background: #fff;
    box-shadow: 0 2px 15px 3px rgba(234,234,234,0.50);
}

#signup #pre-bg {
    /*background: #fff;*/
    margin: 35px auto;
    padding: 35px 80px 70px;
}

#signup select {
    min-height: 42px;
}

#signup li.button {
    width: 100%;
    margin: 5px 0px;
}

@media(max-width:768px) {
    #signup li.button {
        /*width: 48%;*/
    }
}

#signup .card-body {
    padding: 0rem;
    color: #5b5b5b;
    font-size: 1.1rem;
}

    #signup .card-body span.step {
        font-family: 'proxima_novathin';
        letter-spacing: 1px;
        font-size: 1.2rem;
        color: #A2A2A2;
    }

#signup #upload.card {
    background: #f5f5f5;
    border: 1px #ACACAC dashed;
    border-radius: 0.35rem;
}

#signup #upload .card-body {
    padding: 1.25rem;
}

#signup card-header {
    background: transparent;
    border: transparent;
}

#signup .card-body td {
    padding: 0.4rem 0.75rem;
    border: transparent;
}


@media(min-width:768px) {
    #signup li.button {
        width: 48%;
    }
}

#signup button.signup {
    height: 100px;
    background: var(--blue);
    border: 2px solid var(--blue);
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
}

#signup button.signup.small {
        height: 70px;
    }

#signup .btn.btn-link {
    color: var(--grey);
    font-family: 'proxima_novathin';
    font-weight: 800;
    letter-spacing: 1px;
}

#signup .help-text, #accordionHelp h5 {
    padding: 0rem 0.75rem;
}

#signup .help-text {
    font-style: italic;
}

@media(max-width:992px) {
    #signup button.signup {
        font-size: 1rem;
    }
}

.progress {
    height: 0.85rem;
    background: #ddd;
    width: 80%;
}

.progress-bar {
    background: #58BDEA;
}

#signup .badge {
    font-size: 100%;
}


#signup .btn.btn-link.delete-button {
    color: #D0021B;
    font-weight: 400;
}

#signup .btn.btn-link.edit-button {
    color: #7ed321;
    font-weight: 400;

}




.whitebg {
    background-color: #fff;
    padding-bottom: 20px;
    padding-top: 20px;
}


hr {
    border: solid 1px #cccccc;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* BLOG STYLES */
.blog-cell h2 {
    font-size: 1.2em;
}

.blog-cell h2, a {
    color: #444;
}

.padbot20 { padding-bottom: 20px;}
.padtop20 { padding-top:20px;}



.painttop {
    background-color: #fff;
    background-image: url("../images/paint-edge-top.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100px;
}

.paintbottom {
    background-color: #fff;
    background-image: url("../images/paint-edge-bottom.svg");
    background-repeat: no-repeat;
    background-position: top;
    height: 100px;
}


ul.nobullet {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin: 0;
}

li.bullet {
    background: url('../images/bullet.png') no-repeat left top;
    padding-left: 34px;
    padding-top: 0px;
}
li.check {
    background: url(../images/kwil-tick.png) no-repeat left top;
    padding-left: 44px;
    padding-top: 2px;
    border-bottom: solid 1px #53D5FF;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.grecaptcha-badge {
   display: none;
}


/*added 26-02-21*/

.greybg {
    background-color: #efefef;
    background-image: url("../images/grey-swirls-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.greybgcontent {
    padding: 40px 20px 50px;
    text-align: center;
}

    .greybgcontent img {
        height: auto;
        width: 75%;
        margin-bottom: 20px;
    }

@media only screen and (max-width: 700px) {

    .greybgcontent img {
        width: 50%;
        height: auto;
    }
}
    
.kwilpanel {
    background-color: #D7F5FF;
    background-image: url("../images/kwil-panel.png");
    background-repeat: no-repeat;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0.25rem 1rem rgba(64,64,64,.25);
}


.lineright {
    border-right: solid 1px #333;
}

@media only screen and (max-width: 700px) {

    .lineright {
        border-right: none;
        padding-bottom: 20px;
    }
}

.btn-kwil {
    color: #fff;
    background-color: #53D5FF;
    border-color: #53D5FF;
    padding: 16px 24px;
}

    .btn-kwil h2 {
        margin: 0;
    }

.bg-kwil-sub {
    background-color: #ffffff;
    border-bottom: solid 2px #cccccc;
}

.bg-kwil-sub .active {
        border-bottom: solid 4px #cccccc;
    }

.featurebox {
    background-color: #C4EFFF;
    background-image: url("../images/kwil-panel.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 20px 10px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.lightpainttop {
    background-color: #fff;
    background-image: url("../images/paint-edge-top-light.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100px;
}

.lightpaintbottom {
    background-color: #fff;
    background-image: url("../images/paint-edge-bottom-light.svg");
    background-repeat: no-repeat;
    background-position: top;
    height: 100px;
}

.light-home-info .content {
    background: var(--white);
    padding: 50px;
    margin: 50px 0 80px 0;
    position: relative;
}

.light-home-info {
    background-color: var(--lightBlue);
    background-size: 9px;
    padding: 30px;
}

.pricebox {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: solid 1px #ccc;
    box-shadow: 0 0.25rem 1rem rgb(64 64 64 / 25%);
}

.padtop20 {
    padding-top: 20px;
}

.padtop30 {
    padding-top: 30px;
}

.padbot20 {
    padding-bottom: 20px;
}

.padbot30 {
    padding-bottom: 30px;
}

.panel-heading {
    padding: 20px 20px 10px 20px;
    border-bottom: 1px solid #e0e0e0;
    margin: 4px 0px;
}

.btn-lpa {
    font-family: 'Open Sans';
    background: var(--blue);
    border: 1px solid var(--blue);
    color: #fff;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 5px;
}

.btn-outlined {
    font-family: 'Open Sans';
    background: none;
    border: 1px solid var(--dark);
    color: #2e404f;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 5px;
}

.btn-outlined:hover {
    font-family: 'Open Sans';
    background: #efefef;
    border: 1px solid var(--greyLight);
    color: #2e404f;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 5px;
}

.btn-green {
    font-family: 'Open Sans';
    background: var(--green);
    border: 1px solid var(--green);
    color: #fff;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 5px;
}

.numberCircle {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 8px;
    background-color: #53D5FF;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-top: -2em;
    font-size: 1.8em;
    box-shadow: 0 0.25rem 1rem rgb(64 64 64 / 25%);
}


@media only screen and (max-width: 700px) {

    .navbar .btn-primary {
        margin-bottom: 10px;
    }

    .navbar .btn-secondary {
        margin-bottom: 10px;
    }

    .navbar .btn {
        width: 100%;
    }
}

#packages {
    background: #53D5FF;
}
.price {
    border-radius: 200px;
    color: #53D5FF;
    font-size: 2.2rem;
    font-family: 'proxima_novasemibold';
    padding: 42px 12px 13px 26px;
}

#singles .card, #couples .card {
    min-height: 381px;
}

#singles .price {
    padding: 42px 12px 13px 29px;
}