:root {
    --primary-color-rgb: rgb(212, 189, 120);
    --premier-color-rgb: rgb(212, 189, 120);
    --premier-plus-color-rgb: #6F83C7;
    --starter-color-rgb: #7890D5; /*rgb(36, 124, 210);*/ /*rgb(23, 79, 134);*/
    --advantage-color-rgb: rgb(98, 216, 54);
    --new-year-color: #00A1FF;
    --heading-color: #08386c;
    --lightgray-color: #eeeeee;
    /*--foundation-color-rgb: rgb(119, 63, 155);*/
    /*--foundation-color-rgb: #D58F78;*/
    --foundation-color-rgb: #BD78D5;
    --sp-blue: #005b8b;
    --sp-red: #952E40;
    --sp-white: #FFFFFF;
    --sp-lightblue: #69AAD0;
    --sp-orange: #F75C03;
    --border-radius: 6px;
}

.primary-color {
    color: var(--primary-color-rgb) !important;
}

.bg-primary-color {
    background-color: var(--primary-color-rgb) !important;
}

.text-premier-color {
    color: var(--premier-color-rgb) !important;
}

.bg-premier-color {
    background-color: var(--premier-color-rgb) !important;
}

.text-premier-plus-color {
    color: var(--premier-plus-color-rgb) !important;
}

.bg-premier-plus-color {
    background-color: var(--premier-plus-color-rgb) !important;
}

.text-foundation-color {
    color: var(--foundation-color-rgb) !important;
}

.bg-foundation-color {
    background-color: var(--foundation-color-rgb) !important;
}

.text-starter-color {
    color: var(--starter-color-rgb) !important;
}

.bg-starter-color {
    background-color: var(--starter-color-rgb) !important;
}

.text-advantage-color {
    color: var(--advantage-color-rgb) !important;
}

.bg-advantage-color {
    background-color: var(--advantage-color-rgb) !important;
}

.text-new-year-color {
    color: var(--new-year-color) !important;
}

.bg-new-year-color {
    background-color: var(--new-year-color) !important;
}

.text-heading-color {
    color: #08386c;
}

.bg-secondary-section-color {
    background-color: var(--lightgray-color);
}

.border-radius-4 {
    border-radius: 4px;
}

.border-radius-6 {
    border-radius: var(--border-radius);
}

body {
    /*background: #fff;*/
    /*font-family: 'Open Sans', sans-serif;*/
    /*font-weight: 400;*/
    font-size: 20px;
}

.container {
    max-width: 1140px;
}

p {
/*    color: #333;
    font-size: 20px;*/
}

    p:last-child {
        margin-bottom: 0;
    }
a {
    color: #ED9A25;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

strong,
b {
    font-weight: 700;
}

img.mobile-img {
    display: none;
}

/*ul.checklist {
    margin-left: 0 !important;
    display: inline-block;
    padding-left: 35px;
    text-align: left;
}

    ul.checklist li {
        list-style-type: none !important;
        position: relative;
        font-size: 20px;
        color: #333;
        letter-spacing: -0.54px;
        line-height: 28px;
        margin-bottom: 15px;
    }

        ul.checklist li:before {
            content: '';
            background-image: url(../images/check-icon.png);
            width: 29px;
            height: 33px;
            background-size: cover;
            position: absolute;
            top: -8px;
            left: -40px;
        }*/

.checkbox-lg .custom-control-label::before, .checkbox-lg .custom-control-label::after {
    top: .8rem;
    width: 1.55rem;
    height: 1.55rem
}

.display-center {
    font-size: 0;
    display: inline-block;
}

.align-middle {
    display: inline-block;
    width: 50%;
}


/*.click-btn {
	background: var(--starter-color-rgb);
	color: #fff;
	display: inline-block;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	padding: 20px 80px;
	height: auto;
	box-shadow: none;
	width: auto;
	min-width: auto;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;*/ /* border radius */
/*-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;*/ /* prevents bg color from leaking outside the border */
/*background-color: #3177c9;*/ /* layer fill content */
/*-moz-box-shadow: 0 0 8px rgba(0,0,0,.5);*/ /* drop shadow */
/*-webkit-box-shadow: 0 0 8px rgba(0,0,0,.5);*/ /* drop shadow */
/*box-shadow: 0 0 8px rgba(0,0,0,.5);*/ /* drop shadow */
/*letter-spacing: -1px;
}

	.click-btn:hover {
		text-decoration: none;
		color: #fff;
	}*/

.click-btn {
    background: var(--starter-color-rgb);
    color: #fff;
    display: inline-block;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    padding: 20px 80px;
    height: auto;
    box-shadow: none;
    width: auto;
    min-width: auto;
/*    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px; 
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;*/
    background-color: #3177c9;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
    background-color: #00cc33;
}

    .click-btn:hover, .click-btn:focus, .click-btn:active {
        box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
        -webkit-transform: scale(1.06);
        transform: scale(1.06);
        color: #fff;
    }

.click-link {
    color: #2f313b; /* text color */
    font-size: 21px;
    font-weight: bold;
}

.wrapper {
    max-width: 1500px;
    margin: 15px auto 0;
}


/* # Title Section
---------------------------------------------------------------------------------------------------- */

.title-section {
    /*padding: 20px 0;*/
    background-color: var(--starter-color-rgb);
    background-image: url("../img/Abstract-blue-3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;

}

/*    .title-section h2 {
        font-size: 50px;
        color: #ffffff;
        letter-spacing: -1px;
        margin-bottom: 0;
    }*/

    /*.title-section:after {
	z-index: -1;
	position: absolute;
	top: 100%;
	left: 71%;
	margin-left: -25%;
	content: '';
	width: 0;
	height: 0;
	border-top: solid 32px var(--starter-color-rgb);
	border-left: solid 60px transparent;
	border-right: solid 60px transparent;
	z-index: 99;
}
*/
/*    .title-section:after {
        content: '';
        position: absolute;
        border-top: solid 32px var(--starter-color-rgb);
        border-left: solid 60px transparent;
        border-right: solid 60px transparent;
        top: 100%;
        left: 50%;
        margin-left: -50px;
        width: 0;
        height: 0;
    }*/

    .title-section.premium {
        background-color: var(--foundation-color-rgb);
    }

        .title-section.premium:after {
            border-top-color: var(--foundation-color-rgb);
        }

    .title-section.elite {
        background-color: var(--premier-color-rgb);
    }

        .title-section.elite:after {
            border-top-color: var(--premier-color-rgb);
        }

    .title-section.testimonials {
        background-color: var(--starter-color-rgb);
    }

        .title-section.testimonials:after {
            border-top-color: var(--starter-color-rgb);
        }

/* # Testimonials
---------------------------------------------------------------------------------------------------- */
.testimonials {
}

    .testimonials p.disclaimer {
        line-height: 1.3;
        font-size: 60%;
        color: gray;
    }

/* # Home Section 1
---------------------------------------------------------------------------------------------------- */

.home-section1 {
    background-color: #000;
    padding: 10px 0;
}

    .home-section1 h3 {
        font-size: 28px;
        color: #fff;
        margin-bottom: 0;
        font-weight: 400;
    }

        .home-section1 h3 strong {
            color: #d98e27;
        }


/* # Home Section 2
---------------------------------------------------------------------------------------------------- */

.home-section2 {
    background-image: url("../img/Abstract-blue-3.jpg");
    /*background-image: url(https://dummyimage.com/1200x500/d6d6d6/aac4fa.png);*/
    /*background-image: url(https://cdn-static.azureedge.net/charlesevent/ny2022-background.png);*/
    background-color: grey;
    background-position: center;
    background-size: cover;
    padding: 20px 0 0;
}

    .home-section2 h2 {
        font-family: Montserrat;
        font-size: 54px;
        color: #D5BD78;
        font-weight: 400;
    }

    .home-section2 h3 {
        font-family: Montserrat;
        color: #D5BD78;
        font-weight: 400;
    }

    .home-section2 p {
        font-size: 16px;
        font-weight: 300;
        text-align: left;
        color: #fff;
        margin-top: 20px;
        line-height: 1.25;
    }

        .home-section2 p strong {
            font-size: 18px;
        }


/* # Home Section 3
---------------------------------------------------------------------------------------------------- */

.home-section3 {
    padding: 40px 0 60px;
}

    .home-section3 h2 {
        font-size: 42px;
        color: #333333;
        letter-spacing: -1px;
    }

.package-table.table-bordered {
    /*border: 0 !important;*/
}

table.package-table tr:nth-child(odd) {
    background-color: #f1f1f1;
}

table.package-table th.title {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    font-size: 28px;
    font-weight: 400;
}

th {
    position: sticky;
    top: 0; /* Don't forget this, required for the stickiness */
}

table.package-table th.package {
    font-size: 21px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
/*    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;*/
}

table.package-table th.package,
table.package-table td.package {
    width: 160px;
    text-align: center;
    vertical-align: middle !important;
}

    table.package-table th.package.essential {
        background-color: var(--starter-color-rgb);
    }

    table.package-table th.package.premium {
        background-color: var(--foundation-color-rgb);
    }

    table.package-table th.package.elite {
        background-color: var(--premier-color-rgb);
    }

table.package-table td.content {
    padding: 25px !important;
}

table.package-table td {
    vertical-align: middle !important;
}

table.package-table h4,
td.package {
    font-size: 24px;
}

table.package-table ul {
    padding-left: 20px;
}

table.package-table p,
table.package-table li {
    font-size: 16px;
    font-weight: 300;
}

table.package-table h5 {
    font-size: 21px;
}

table.package-table p strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--starter-color-rgb);
}

table.package-table p em {
    font-weight: 700;
}

a.details-btn {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: var(--starter-color-rgb);
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    text-decoration: none;
}

tr.premium p strong {
    color: var(--foundation-color-rgb);
}

tr.premium a.details-btn,
td.premium button.buy-btn {
    background-color: var(--foundation-color-rgb);
}

tr.elite p strong {
    color: var(--premier-color-rgb);
}

tr.elite a.details-btn,
td.elite button.buy-btn {
    background-color: var(--premier-color-rgb);
}

/*button.buy-btn {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 700;
	background-color: var(--starter-color-rgb);
	color: #fff;
	padding: 15px 10px;
	display: inline-block;
	line-height: 28px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;*/ /* border radius */
/*-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;*/ /* prevents bg color from leaking outside the border */
/*text-decoration: none;
}*/


button.buy-btn {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    padding: 15px 20px;
    display: inline-block;
    line-height: 28px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

    button.buy-btn:hover, button.buy-btn:focus, button.buy-btn:active {
        box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
        -webkit-transform: scale(1.06);
        transform: scale(1.06);
        /*color: #fff;*/
    }


/* # Home Section 4
---------------------------------------------------------------------------------------------------- */

.home-section4 {
    padding: 60px 0;
    /*background-color: #f4f4f4;*/
}

    .home-section4 h3 {
        font-size: 34px;
        color: #333333;
        font-weight: 300;
    }

    .home-section4 em {
        font-weight: 700;
    }

.quote-box {
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    width: 100%;
    margin-bottom: 0;
    padding: 30px 20px;
    background-color: var(--starter-color-rgb);
    line-height: 35px;
}

.home-section4 h6 {
    font-size: 24px;
    color: #333333;
}

.border-box {
    background-color: #fff;
    padding: 20px;
    border: 3px dashed #333;
}

    .border-box h4 {
        color: var(--starter-color-rgb);
        font-size: 30px;
        letter-spacing: -1px;
    }

    .border-box p {
        font-size: 22px;
        color: #333333;
        font-weight: 300;
        letter-spacing: -.5px;
    }

    .border-box h5 {
        font-size: 24px;
        color: #333333;
        font-weight: 300;
        line-height: 32px;
    }

        .border-box h5 span {
            color: #ed1c24;
            font-weight: 700;
        }

.home-section4.premium {
    background-color: #fff;
}

    .home-section4.premium .quote-box {
        background-color: var(--foundation-color-rgb);
    }

    .home-section4.premium .border-box {
        background-color: #f4f4f4;
    }

        .home-section4.premium .border-box h4 {
            color: var(--foundation-color-rgb);
        }

    .home-section4.premium .click-btn {
        background-color: var(--foundation-color-rgb);
    }


.home-section4.elite h3 span {
    color: var(--premier-color-rgb);
}

.home-section4.elite .quote-box {
    background-color: var(--premier-color-rgb);
}

.home-section4.elite .border-box h4 {
    color: var(--premier-color-rgb);
}

.home-section4.elite .click-btn {
    background-color: var(--premier-color-rgb);
}

.home-section4.elite ul.checklist li {
    /*width: 40%;*/
    display: inline-block;
}

.home-section4.elite h4 {
    font-size: 36px;
    color: #333333;
    letter-spacing: -1px;
}

    .home-section4.elite h4.normal {
        font-weight: 400;
    }

        .home-section4.elite h4.normal span {
            color: #ed1c24;
            font-weight: 700;
        }

.home-section4.elite h5 {
    font-size: 28px;
    color: #333333;
    font-weight: 300;
    letter-spacing: -1px;
}


/* # Home Section 5
---------------------------------------------------------------------------------------------------- */

.home-section5 {
    padding: 60px 0;
    /*background-color: #363636;*/
    background-color: #8b96a3;
}

    .home-section5 h3 {
        font-size: 32px;
        color: #ffffff;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .home-section5 p {
        color: #ffffff;
        /*font-size: 18px;*/
        font-weight: 300;
    }


/* # Home Section 6
---------------------------------------------------------------------------------------------------- */

.home-section6 {
    padding: 40px 0;
}

    .home-section6 h2 {
        font-size: 39px;
        margin-bottom: 10px;
        color: #333333;
    }

    .home-section6 p {
        font-size: 24px;
        font-weight: 300;
    }

        .home-section6 p a {
            color: #d18927;
            /*color: #00a1ff;*/
            text-decoration: none;
        }


/* # Footer
---------------------------------------------------------------------------------------------------- */

.footer {
    padding: 30px 0;
    background-color: #111111;
}

    .footer ul {
        padding-left: 0;
    }

        .footer ul li {
            display: inline-block;
            list-style-type: none;
            border-right: 1px solid #fff;
            padding-right: 10px;
        }

            .footer ul li:last-child {
                padding-right: 0;
                border-right: 0;
            }

    .footer p {
        font-size: 14px !important;
        font-weight: 300;
        color: white; /*#868484*/
    }

        .footer p.copyright,
        .footer li a {
            font-size: 18px;
        }

    .footer li a {
        color: #d18927;
        /*color: #00a1ff;*/
    }


.plan-table {
    width: 100%;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px; /* border radius */
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; /* prevents bg color from leaking outside the border */
    background-color: #f1f1f1; /* layer fill content */
}

    .plan-table th {
        background-color: var(--starter-color-rgb);
        color: #fff;
        font-size: 38px;
        text-transform: uppercase;
        font-weight: 700;
        -moz-border-radius: 10px 10px 0 0;
        -webkit-border-radius: 10px 10px 0 0;
        border-radius: 10px 10px 0 0; /* border radius */
    }

    .plan-table td {
        font-size: 22px;
        font-weight: 700;
        color: #000;
        border-bottom: 1px solid #c3c3c3;
        padding: 10px 15px;
    }

    .plan-table tr.cross td {
        color: var(--premier-color-rgb);
    }

    .plan-table tr:last-child td {
        border-bottom: 0;
    }

    .plan-table td img {
        max-width: 50px;
        margin-top: 10px;
    }

    .plan-table h4 {
        font-size: 28px;
        font-weight: 300;
    }

        .plan-table h4 strong {
            font-size: 30px;
            font-weight: 700;
        }

    .plan-table h3 {
        font-size: 50px;
        color: #333333;
        font-weight: 700;
    }

    .plan-table button.buy-btn {
        width: 100%;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px; /* border radius */
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box; /* prevents bg color from leaking outside the border */
        background-color: #3177c9; /* layer fill content */
        font-size: 35px;
        line-height: 32px;
    }

    .plan-table.premium th,
    .plan-table.premium a.details-btn,
    .plan-table.premium button.buy-btn {
        background-color: var(--foundation-color-rgb);
    }

    .plan-table.elite th,
    .plan-table.elite a.details-btn,
    .plan-table.elite button.buy-btn {
        background-color: var(--premier-color-rgb);
    }


/* # Checkout
---------------------------------------------------------------------------------------------------- */

.checkout {
    color: #333333;
}

    .checkout p, .checkout li {
        font-size: 16px;
        	/*font-weight: 300;*/
        /*line-height: 1.25;*/
    }

    .checkout .cart-product p {
        margin-bottom: .4rem;
    }

    .checkout .cart-product .fas {
        color: #31C122;
    }

    .checkout card-header {
        background-color: #ffffff;
    }

    .checkout card-body {
        background-color: #fffafa;
    }

.form-control {
    color: #000000;
    height: calc(1.5em + 1rem + 2px);
}

.custom-select {
    height: calc(1.5em + 1rem + 2px);
}

.checkbox-lg .custom-control-label::before,
.checkbox-lg .custom-control-label::after {
    top: .8rem;
    width: 1.55rem;
    height: 1.55rem;
}

.checkbox-lg .custom-control-label {
    padding-top: 8px;
    padding-left: 6px;
}
/*.form-control::placeholder {
    color: red;
    opacity: 1;
}*/


/* # Media Queries
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width:1366px) {
    .title-section h2, .home-section2 h2 {
        font-size: 45px;
    }

    .home-section4.elite h4 {
        font-size: 32px;
    }

    .home-section4 h6 {
        font-size: 22px;
    }

    .quote-box {
        font-size: 24px;
    }

    .home-section6 h2 {
        font-size: 35px;
    }

    .home-section6 p,
    table.package-table h4, td.package {
        font-size: 22px;
    }

    .border-box h4,
    .home-section4.elite h5 {
        font-size: 25px;
    }

    .home-section5 h3 {
        font-size: 28px;
    }
}

@media only screen and (max-width:1200px) {
    .mt-5 {
        margin-top: 3rem !important;
    }

    .mt-4 {
        margin-top: 2.7rem !important;
    }

    .mt-3 {
        margin-top: 2.5rem !important;
    }

    .title-section h2,
    .home-section2 h2 {
        font-size: 40px;
    }

    .home-section3 h2 {
        font-size: 35px;
    }

    .home-section4 h3 {
        font-size: 30px;
    }

    .click-btn,
    .home-section5 h3 {
        font-size: 25px;
    }

    .home-section4.elite h4 {
        font-size: 28px;
    }

    .home-section4 h6,
    .home-section6 p,
    .quote-box,
    table.package-table h4, td.package {
        font-size: 20px;
    }

    .home-section6 h2 {
        font-size: 32px;
    }

    .border-box h4,
    .home-section4.elite h5 {
        font-size: 22px;
    }
}

@media only screen and (max-width:991px) {
    .mt-5 {
        margin-top: 2rem !important;
    }

    .mt-4 {
        margin-top: 1.8rem !important;
    }

    .mt-3 {
        margin-top: 1.6rem !important;
    }

    p,
    ul.checklist li {
        font-size: 18px;
    }

    .home-section2 {
        /*padding: 20px 0;*/
    }

        .home-section2 p {
            text-align: center;
        }

        .title-section h2,
        .home-section2 h2 {
            font-size: 35px;
        }

    .home-section3 h2 {
        font-size: 30px;
    }

    .home-section4 h3 {
        font-size: 25px;
    }

    .click-btn {
        font-size: 22px;
    }

    .home-section4.elite h4 {
        font-size: 25px;
    }

    table.package-table th.package {
        font-size: 18px;
    }

    table.package-table th.package, table.package-table td.package {
        width: 130px;
    }

    button.buy-btn {
        font-size: 20px;
        line-height: 20px;
    }

    .border-box h5,
    .home-section4.elite h4 {
        font-size: 22px;
    }

    .home-section6 h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width:860px) {
}

@media only screen and (max-width:768px) {
    li, p,
    .table td, .table th {
        font-size: 16px !important;
    }

    .testimonials p.disclaimer {
        font-size: 50% !important;
    }

    .mt-5 {
        margin-top: 1.5rem !important;
    }

    .mt-4 {
        margin-top: 1.3rem !important;
    }

    .mt-3 {
        margin-top: 1.1rem !important;
    }

    img.mobile-img {
        display: block !important;
        margin: 0 auto;
    }

    .title-section h2, .home-section2 h2 {
        font-size: 32px;
    }

    /*table.package-table th.package, table.package-table td.package {
		width: 100px;
	}*/

    .click-btn {
        padding: 20px 30px;
    }

    .quote-box {
        padding: 15px 20px;
        line-height: 28px;
    }

    .home-section4 h3 {
        font-size: 22px;
    }

    .border-box h5 {
        font-size: 20px;
    }

    .home-section4.elite ul.checklist li {
        width: 48%;
    }

    /*table.package-table td.content {
		min-width: 350px!important;
	}*/

    .footer li a {
        font-size: 16px;
    }

    .plan-table th {
        font-size: 32px;
    }

    .plan-table h3 {
        font-size: 35px;
    }

    .plan-table h4 {
        font-size: 24px;
    }

        .plan-table h4 strong {
            font-size: 25px;
        }

    .plan-table button.buy-btn {
        font-size: 30px;
        line-height: 30px;
    }

    .offer-expired h4 {
        font-size: 16px;
    }
}

@media only screen and (max-width:640px) {
    .home-section4.elite ul.checklist li {
        width: 100%;
        margin-bottom: 5px;
    }

    .title-section h2, .home-section2 h2 {
        font-size: 30px;
    }

    .plan-table td {
        font-size: 20px;
    }

    .plan-table th {
        font-size: 30px;
    }

    .plan-table h3 {
        font-size: 32px;
    }

    .plan-table h4 {
        font-size: 20px;
    }

        .plan-table h4 strong {
            font-size: 22px;
        }

    .plan-table button.buy-btn {
        font-size: 28px;
        line-height: 28px;
    }
}

@media only screen and (max-width:560px) {
}

@media only screen and (max-width:480px) {
    .home-section5 h3 {
        text-align: center;
    }

    .home-section5 img.img-fluid.float-right {
        display: block !important;
        margin: 0 auto 20px !important;
        float: none !important;
    }

    .footer ul li {
        width: 100%;
        border-right: 0;
    }
}

@media only screen and (max-width:360px) {
}


.hidden-md-down,
.hidden-lg-down {
    display: none;
}

.hidden-md-up,
.hidden-lg-up {
    display: block;
}

@media only screen and (min-width: 992px) {
    .hidden-lg-down {
        display: block;
    }

    .hidden-lg-up {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .hidden-md-down {
        display: block;
    }

    .hidden-md-up {
        display: none;
    }
}


/*--------------------------------------------------------------
 Floating countdown timer bar
 -------------------------------------------------------------*/


.df-floating-bar {
    /*            position: absolute;*/
    left: 3vw;
    right: 3vw;
    margin: auto;
    height: 72px;
    border-radius: 8px;
    max-width: 1300px;
    min-width: 340px;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    padding: 10px 25px 10px 53px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: sticky;
    color: #E8E2D0;
    background-color: #E44E3F;
}

.bar__text-inner {
    display: inline;
}

.bar--without-action-button {
    max-width: 1100px;
    width: calc(100% - 200px);
}

.bar--without-powered-by {
    padding-left: 29px;
}

    .bar--without-powered-by .bar__powered-by {
        display: none;
    }

.bar--place-bottom {
    bottom: 14px;
}

.bar--place-top {
    top: 14px;
}


.bar__expand-button {
    border-radius: 50%;
    cursor: pointer;
}

.bar__elements {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bar__text {
    line-height: 1;
}

.bar__message {
    font-family: 'Proxima Nova Rg', sans-serif;
    font-size: 11px;
    margin-top: 10px;
    letter-spacing: -0.21px;
}


.bar__expand-button-container {
    margin-left: -10px;
}

.bar--flat {
    left: 0;
    right: 0;
    border-radius: 0 !important;
    max-width: none;
    width: 100%;
}

/* ---------------- Option 4 ---------------- */
.bar--option-4 {
    /*            font-family: 'BentonSans-Medium', sans-serif;*/
    font-family: 'Varela Round', sans-serif;
}

    .bar--option-4 .bar__text {
        font-size: 24px;
        font-weight: 500;
        /*		padding-right: 70px;*/
        line-height: 25px;
        letter-spacing: 0.25px;
        /*		padding-top: 5px;*/
    }

/*        .bar--option-4 .bar__confirm-button {
            font-family: 'BentonSans-Bold', sans-serif;
            font-weight: bold;
            letter-spacing: 0.93px;
        }*/

@media screen and (min-width: 1200px) {
    .bar--align-left {
        min-width: 1150px;
    }

    .bar--align-right {
        min-width: 1150px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
    .bar--align-left {
        min-width: 900px;
    }

    .bar--align-right {
        min-width: 900px;
    }
}

@media screen and (min-width: 992px) {
    .bar--without-action-button {
        width: calc(100% - 14%);
    }

        .bar--without-action-button.bar--flat {
            width: 100%;
        }

    .bar__confirm-button {
        margin-right: 10%;
    }

    .bar__confirm-button--round {
        margin-right: 0;
    }

    .bar__confirm-button--with-close-button {
        margin-right: 13%;
    }

    .bar__confirm-button--round.bar__confirm-button--with-close-button {
        margin-right: 12px;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .df-floating-bar {
        min-height: 72px;
        padding-left: 40px;
        padding-right: 30px;
    }

    .bar--with-avatar {
        padding-left: 53px;
    }

    .bar--align-left {
        min-width: 680px;
    }

    .bar--align-right {
        min-width: 680px;
    }

    .bar__confirm-button {
        max-width: 120px;
        min-width: 120px;
    }

    .bar__confirm-button--with-close-button {
        margin-left: -12px;
    }

    .bar__text {
        line-height: 1.2;
    }

    .bar--without-powered-by {
        padding-left: 16px;
    }
    /* ---------------- Option 4 ---------------- */
    .bar--option-4 .bar__text {
        font-size: 18px;
        line-height: 20px;
        /*		padding-right: 70px;*/
    }
}

@media screen and (max-width: 768px) and (min-width: 576px) {
    .bar--without-action-button.bar--not-full-width {
        width: 350px;
    }

    .bar--not-full-width {
        width: 480px;
    }

    .bar--flat.bar--not-full-width {
        width: auto;
    }
}

@media screen and (max-width: 576px) {
    .bar--not-full-width {
        width: 350px;
    }

    .bar--flat.bar--not-full-width {
        width: auto;
    }

    .bar__confirm-button {
        height: 46px;
    }

    .bar--without-action-button {
        width: 94%;
    }
}

@media screen and (max-width: 768px) {
    .bar--without-action-button {
        width: 94%;
    }

    .df-floating-bar {
        padding-left: 50px;
        padding-right: 5px;
    }

    .bar--with-avatar {
        padding-left: 74px;
    }

    .bar--without-powered-by {
        padding-left: 15px;
    }

    .bar--maximized {
        padding-left: 5px;
        height: auto;
    }

    .bar--place-bottom {
        bottom: 10px;
    }

    .bar--place-top {
        top: 10px;
    }

    .bar__text {
        line-height: 1.3;
    }

    .bar__confirm-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: none;
        font-weight: 800;
        border-radius: 27px;
        margin-bottom: 25px;
    }

    .bar__confirm-button--not-full-width {
        margin-bottom: 0;
        margin-left: -20px;
    }

    .bar--maximized .bar__confirm-button--not-full-width {
        margin-bottom: 25px;
        margin-left: inherit;
    }

    .bar--maximized.bar--without-powered-by .bar__confirm-button,
    .bar--maximized.bar--with-avatar .bar__confirm-button {
        margin-bottom: 12px;
    }

    .bar--maximized .bar__powered-by {
        right: 0;
        margin: auto;
        top: auto;
        bottom: 0;
        width: 30px;
        height: 30px;
        border-right: none !important;
    }

    .bar__confirm-button--round {
        border-radius: 3px;
    }

    .bar__powered-by--maximized {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .bar__elements--maximized {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .bar--maximized-round {
        border-radius: 8px;
    }

    .bar--minimized-round {
        border-radius: 36px;
    }

    .bar__tooltip--maximized {
        -webkit-transform: translate(85px, -8px);
        -ms-transform: translate(85px, -8px);
        transform: translate(85px, -8px);
    }

    .bar__tooltip.bar__tooltip--maximized:before {
        left: -5px;
        right: auto;
        top: auto;
        bottom: 15px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .bar--maximized .bar__close-container {
        display: none;
    }

    .bar__close-container {
        font-size: 9px;
    }
    /* ---------------- Option 4 ---------------- */
    .bar--option-4 .bar__text {
        font-size: 18px;
        /*		padding-right: 0;*/
        font-weight: 500;
        line-height: 20px;
        /*		padding-top: 0;*/
        letter-spacing: 0.25px;
        /*		width: 110%;*/
    }

    .bar--with-avatar.bar--option-4 .bar__text {
        padding-left: 50px;
        font-size: 14px;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .df-floating-bar {
        width: 1300px;
    }

        .df-floating-bar.bar--flat {
            width: 100%;
        }
}

@media screen and (-ms-high-contrast: none) and (max-width: 1500px), (-ms-high-contrast: active) and (max-width: 1500px) {
    .df-floating-bar {
        width: inherit;
    }
}

.timer {
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.timer__ceil {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.timer__digit {
    font-size: 44px;
    font-weight: bold;
    letter-spacing: 1.66px;
}

.timer__name {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.26px;
    text-transform: uppercase;
}

.df_bar_separator {
    display: none;
    height: 47px;
    width: 0;
    border-right: 1px solid white;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    margin: 3px 19px 3px 11px;
}

/* ---------------- Option 4 ---------------- */
.timer--option-4 {
    max-width: 155px;
    /*        font-family: 'BentonSans-Medium', sans-serif;*/
    font-family: 'Varela Round', sans-serif;
    margin-left: -70px;
}

    .timer--option-4.timer--without-action-button {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        max-width: none;
        margin: 0 -5%;
    }

        .timer--option-4.timer--without-action-button.timer--with-close-button {
            margin: 0;
        }

        .timer--option-4.timer--without-action-button .timer__ceil {
            min-width: 57px;
        }

    .timer--option-4 .timer__ceil {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .timer--option-4 .timer__name {
        /*            font-family: 'BentonSans-Regular', sans-serif;*/
        font-family: 'PT Sans', sans-serif;
        font-weight: 400;
        font-size: 11px;
        letter-spacing: 1.89px;
        text-transform: none;
    }

    .timer--option-4 .timer__digit {
        /*            font-family: 'BentonSans-Medium', sans-serif;*/
        font-family: 'Varela Round', sans-serif;
        font-weight: 500;
        height: 30px;
        font-size: 35px;
        letter-spacing: 1.97px;
        margin-bottom: 3px;
    }

    .timer--option-4 .df_bar_separator {
        display: block;
    }

@media screen and (min-width: 768px) and (max-width: 992px) {
    /* No CTA */
    .bar--without-action-button .timer--option-1 .timer__ceil,
    .bar--without-action-button .timer--option-2 .timer__ceil,
    .bar--without-action-button .timer--option-3 .timer__ceil,
    .bar--without-action-button .timer--option-4 .timer__ceil {
        margin-right: 0;
    }
    /* ---------------- Option 4 ---------------- */
    .timer--option-4 {
        line-height: 1.2;
        margin-left: -75px;
    }

        .timer--option-4 .timer__digit {
            font-size: 25px;
            height: 24px;
            margin-bottom: 1px;
        }

        .timer--option-4 .timer__name {
            font-size: 9px;
            letter-spacing: 1.47px;
        }

        .timer--option-4 .df_bar_separator {
            height: 38px;
            margin-left: 13px;
            margin-right: 13px;
        }

        .timer--option-4.timer--without-action-button .timer__ceil {
            min-width: 42px;
        }

        .timer--option-4.timer--without-action-button {
            margin-right: 0.5%;
        }
}

@media screen and (max-width: 768px) {
    .timer {
        max-width: none;
        margin: 12px 0 15px 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer;
    }

        .timer.timer--without-action-button {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .timer.timer--minimized {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .timer.timer--without-action-button {
            margin: 10px 6% 30px 6% !important;
        }

        .timer.timer--without-powered-by.timer--without-action-button {
            margin-bottom: 15px;
        }
    /* ---------------- Option 4 ---------------- */
    .timer--option-4 .timer__digit {
        /*            font-family: 'BentonSans', sans-serif;*/
        font-family: 'Varela Round', sans-serif;
    }

    .timer--option-4 .timer__ceil {
        min-width: 42px;
        line-height: 1.2;
    }

    .timer--option-4.timer--without-action-button .timer__ceil {
        min-width: 42px;
    }

    .bar--with-avatar .timer--option-4 .timer__ceil {
        min-width: 40px;
    }

    .timer--option-4 .timer__digit {
        font-size: 25px;
        height: 25px;
        letter-spacing: 2.77px;
        margin-bottom: 1px;
    }

    .bar--with-avatar .timer--option-4.timer--minimized .timer__digit {
        font-size: 21px;
    }

    .timer--option-4 .timer__name {
        font-size: 9px;
        letter-spacing: 1.47px;
    }

    .timer--option-4.timer--minimized {
        max-width: 100%;
        margin: 1px 0 1px 0 !important;
    }

    .timer--option-4 .df_bar_separator {
        height: 35px;
        margin: -3px 12px 0 6px;
    }

    .timer--option-4.timer--minimized .df_bar_separator {
        height: 38px;
    }
}

@media screen and (-ms-high-contrast: none) and (min-width: 768px) and (max-width: 992px), (-ms-high-contrast: active) and (min-width: 768px) and (max-width: 992px) {
    .timer--option-4.timer--minimized {
        height: 50px;
    }
}

@media screen and (-ms-high-contrast: none) and (max-width: 768px), (-ms-high-contrast: active) and (max-width: 768px) {
    .timer--option-4.timer--minimized {
        height: 50px;
    }
}

/*Star Ratings*/
.star-checked {
    color: orange;
}