html,body {
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1;
    color: #121f48;
    background-color: #fff;
}

.wrapper {
    width: 1090px;
    max-width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
}

/*** BASE ******************************/

a, a:visited {
    text-decoration: none;
    color: #121f48;
}
a:hover {
    color: #121f48;
}

h1,h2,h3,h4,h5 {
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
    color: #121f48;
}

p {
    font-weight: 300;
    line-height: 1.4em;
    margin-bottom: 20px;
    font-size: 16.6px;
}
p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

.hidden {
    display: none;
}

/***** Messages / Alerts *****/

.message {
    color: #bbb;
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-size: 1.05em;
    line-height: 1;
    margin: 0;
    padding: 15px;
    color: #fff;
}

.message.danger {
    background-color: #963110;
}

/***** Popup Flash Notifications *****/

.message-popup {
    position: relative;
    background-color: #d8dfea;
    color: #121f48;
    padding: 20px;
    /*box-shadow: 1px 1px 4px rgba(0,0,0,0.4);*/
    /*max-width: 350px;*/
    line-height: 1.4;
    /*padding-top: 42px;*/
    cursor: pointer;
    width: 100%;
}

.message-popup:before {
    content: attr(data-title);
    display: block;
    text-align: left;
    font-weight: bold;
    padding: 5px 20px;
    background-color: #cad3e2;
    margin-bottom: 8px;
    width: 100%;
    display: none;
}

.message-popup .wrapper {
    position: relative;
}
.message-popup .wrapper:after {
    content: '\f00d';
    position: absolute;
    top: 3px;
    right: 0;
    /* font-family: 'FontAwesome'; */
    font-family: 'Kube' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e905";
}

.message-popup.danger {
    background-color: #ea363d;
    color: white;
}

.message-popup.danger:before {
    background-color: #822101;
}

.message-popup.success {
    background-color: #3cde7f;
    color: #94da84;
    color: #1f263a;
}

.message-popup.success:before {
    background-color: #87ca78;
}

/*** FORM ******************************/

form {
    margin-bottom: 0;
}

input, textarea, select {
    height: 51px;
    background-color: #fff;
    border-color: #bbbbbb;
    padding: 0 15px;
    border-radius: 6px;
}
textarea {
    height: 176px;
    padding: 15px 24px;
}

input[type='number'] {
    -moz-appearance:textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-item {
    margin-bottom: 25px;
}
.form-item label {
    color: #757575;
    /* font-weight: 600; */
}
.form-item input,
.form-item textarea,
.form-item select,
.form-item .button {
    margin-top: 11px;
}
.form-item .error > input,
.form-item.error input,
.form-item .error > textarea,
.form-item.error textarea,
.form-item .error > select,
.form-item.error select {
    border: 2px solid #d8dfea;
}
.form-item.error p.error {
    font-weight: 500;
    font-size: 14px;
    margin-top: 2px;
}

.form-item.error p.error a {
    color: #f00;
    text-decoration: underline;
}

.form-item.checkbox {
}
.form-item.checkbox label.check {
    padding-left: 36px;
    position: relative;
    display: inline-block;
    margin-right: 15px;
}
.form-item.checkbox.error label.check input+span {
    border-color: #ff0000;
}
.form-item.checkbox label.check input {
    position: absolute;
    top: 4px;
    left: 0;
    margin: 0;
    opacity: 0;
}
.form-item.checkbox label.check input+span {
    width: 27px;
    height: 27px;
    border: 1px solid #bbbbbb;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 4px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}
.form-item.checkbox label.check input+span:before {
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    display: inline-block;
    color: #122048;
    opacity: .08;
    transition: all linear .2s;
}
.form-item.checkbox label.check input:checked+span:before {
    opacity: 1;
}
.form-item.checkbox label.check p:not(.note):not(.error) {
    padding-top: 7px;
}
.form-item.checkbox.radio label.check input+span {
    border-radius: 50%;
}
.form-item.checkbox label.check p.error {
    margin-top: -11px;
}

.button, .button:visited, button {
    background-color: #cc4517;
    /* background-color: #e95625; */
    color: #fff;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 18px 35px;
    /* height: 60px; */
    /* line-height: 58px; */
    letter-spacing: 0.5px;
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-weight: 600;
}
.button:hover, button:hover {
    background-color: #e2440f;
}

.button.blue, button.blue:visited, button.blue {
    background-color: #d8dfea;
    color: #121f48;
}

.button.darkblue, button.darkblue:visited, button.darkblue {
    background-color: #121f48;
    color: #fff;
}

.button.ghost, button.ghost:visited, button.ghost {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    /* box-sizing: content-box; */
    /* height: 35px; */
    /* line-height: 35px; */
}

.button.ghost.dark, button.ghost.dark:visited, button.ghost.dark {
    color: #121f48;
    border-color: #121f48;
}

.form-item .button {
    height: 50px;
    line-height: 48px;
}

/*** AUTOCOMPLETE ******************************/

section .autocomplete {
    position: relative;
}
section .autocomplete .results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 35;
}
section .autocomplete .results .section {
    display: none;
}

.dropdownList {
    /* padding: 17px; */
    background-color: #fff;
    box-shadow: 0px 2px 9px #00000012;
}
.dropdownList .section {
    /* margin-bottom: 16px; */
    padding: 14px;
    border-bottom: 1px solid #eee;
}
.dropdownList .section:last-child {
    /* margin-bottom: 0; */
    border-bottom: none;
}
.dropdownList .section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}
.dropdownList .section .result {
    display: block;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f9f9f9;
    cursor: pointer;
}
.dropdownList .section .result span {
    font-size: 14px;
    color: #666;
    display: block;
}
.dropdownList .section .result span.title {
    color: #e95625;
}
.dropdownList .section .result span.extra {
    text-align: right;
}
.dropdownList .section .result:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}


/*** PROJECT STYLES ******************************/

p.note {
    color: #696969;
    font-size: 15px;
}
.form h3 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 400;
}
.modal .close {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #121f49;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    top: -20px;
    right: -5px;
    z-index: 201;
}

#alertModal {
    text-align: center;
    color: #000;
}
#alertModal p {
    font-weight: 400;
    color: #111f4c;
}
#alertModal .modal-header h3 {
    margin-bottom: 0;
}
#alertModal .modal {
    max-width: 92%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0 !important;
}
#alertModal .modal-body ul {
    text-align: left;
    line-height: 1.4;
}

.c2a_footer {
    display: none;
}

#cc_c2a.c2a_accent_default ul.c2a_results li:not(.deadend):hover, #cc_c2a.c2a_accent_default ul.c2a_results li.active {
    background-color: #121f48 !important;
}

/*** TOOLTIPS ******************************/
#tooltip {
    text-align: center;
    color: #fff;
    background: #121f48e0;
    position: absolute;
    z-index: 100;
    padding: 15px;
    border-radius: 2px;
}
#tooltip:after /* triangle decoration */ {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #121f48e0;
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
}
#tooltip.top:after {
    border-top-color: transparent;
    border-bottom: 10px solid #121f48e0;
    top: -20px;
    bottom: auto;
}
#tooltip.left:after {
    left: 10px;
    margin: 0;
}
#tooltip.right:after {
    right: 10px;
    left: auto;
    margin: 0;
}

/*** HEADER + NAV ******************************/

header {
    position: relative;
    z-index: 100;
}
header .top {
    background-color: #fff;
    padding: 15px 0;
}
header .top .links {
    text-align: right;
}
header .top .links a {
    display: inline-block;
    font-weight: 400;
    font-size: 14.4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
header .top .links a:not(:last-child):after {
    content: '|';
    margin: 0 5px 0 10px;
}

header .top a.logo {
    display: block;
    /*padding-top: 15px;*/
}

header .top a.logo > img {
    max-width: 240px;
}

header .top .links .phone {
    color: #fff;
    text-transform: uppercase;
    line-height: 19px;
    display: block;
    width: 100%;
    height: 45px;
}

header .top .links .phone a {
    font-size: 15px;
    margin-left: 5px;
    color: #fff;
    /* background-color: #e95626; */
    background-color: #cc4517;
    border-radius: 5px;
    font-weight: bold;
    padding: 5px 15px 6px;
    display: inline-block;
    height: 30px;
    line-height: 18px;
}

header .top .phone i {
    margin-right: 5px;
}

header .main {
    background-color: #122048;
    padding: 9px 0;
}
header .main .defaqto {
    height: 25px;
}
section.hero-with-ratings .defaqto img,
header .main .defaqto img {
    width: 160px;
    position: relative;
    top: -3px;
}
section.hero-with-ratings .defaqto {
    width: 100%;
    flex-grow: 1;
    /* padding-top: 8px; */
}
header .main .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}
header .main nav {
    width: 100%;
    text-align: right;
}
header .main nav ul li {
    display: inline-block;
}
header .main nav ul li.login a {
    border: 1px solid #fff;
    border-radius: 4px;
    margin-left: 19px;
}
header .main nav ul li a {
    display: block;
    padding: 8px 17px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .7px;
    font-weight: 400;
    font-size: 18px;
    background-color: #122048;
}
header .main nav ul li.active a {
    background-color: #122048;
    color: #f54d00;
    font-weight: bold;
}

header .main nav ul li a span.caret {
    display: none;
}
header .main.scrolling {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 15;
    padding: 14px 0;
    border-bottom: 2px solid #121f49;
    /*box-shadow: 0px 2px 14px 0px #00000018;*/
    display: none;
}
header .main.scrolling nav ul li a {
    padding: 13px 27px 14px 27px;
    border-radius: 2px;
    margin-left: 6px;
    font-size: 14px;
    font-weight: 600;
}
header .main.scrolling nav ul li a span.caret {
    display: inline-block;
    margin-left: 3px;
}
header .main.scrolling nav ul li:nth-child(1) a {
    background-color: #cc4517;
    color: #fff;
}
header .main.scrolling nav ul li:nth-child(2) a {
    background-color: #d8deea;
    color: #112047;
}
header .main.scrolling nav ul li.login {
    display: none;
}


header a.navlink {
    display: none;
    z-index: 10;
    float: right;
    position: relative;
    border: 1px solid #b8bfc9;
    border-radius: 3px;
    padding: 7px 10px;
    color: #fff;
}
header a.navlink i {font-size: 18px;display: inline-block;vertical-align: middle;}
header a.navlink span {
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}
.hasoffer header a.navlink span {
    display: none;
}

/***************/

.mm-menu {
    background-color: #ea5526;
}
.mm-panels {
    margin-top: 122px;
}
.mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {
    color: #fff;
}
.mm-listview>li.active {
    background-color: #0000002e;
}
.mm-listview>li>a,
.mm-listview>li>span {
    color: #ffffff;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2.4px;
    padding: 18px 10px 16px 20px;
}
.mm-listview>li>span.caret {
    display: none;
}
.mm-menu .mm-btn:after, .mm-menu .mm-btn:before,
.mm-menu .mm-listview>li .mm-next:after {
    border-color: #fff;
}
.mm-menu .icon-down-dir.arrow {
    display: none;
}
.pagination a.current {
    font-weight: 500;
}
.pagination a:hover {
    border-color: transparent;
}
.mm-menu .caret {
    display: none;
}
#mm-blocker {
    z-index: 102;
}


/*** SECTIONS ******************************/

section {
    padding: 50px 0;
}

section h1,
section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 25px;
}
section h1 {
    font-size: 30px;
}
section h1+p,
section h2+p {
    /* margin-top: -36px; */
    /* margin-bottom: 54px; */
    text-align: center;
}

body#page section.page h2,
body#page section.page h2 + p{
    text-align: left;
    margin-top: 0px;
    margin-bottom: 20px;
}

body#contact section.hero,
body#page section.hero {
    background-color: #fbfbfb;
    height: 210px;
    padding-bottom: 0;
    position: relative;
}

body#contact section.hero img,
body#page section.hero img {
    position: absolute;
    bottom: 0;
    max-height: 180px;
}

body#contact section.hero h1,
body#page section.hero h1 {
    font-size: 4em;
    font-weight: 100;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 15px;
}

body#contact section.hero h1 + p,
body#page section.hero h1 + p {
    text-align: left;
    font-size: 1.1em;
}

body#page img.family-with-dog-right {
    float: right;
    max-height: 700px;
}

body#page img.CustomerPromise {
    float: right;
    max-height: 770px;
}

/*** COMMON ******************************/

#dropdown-390 {
    margin: 0 auto;
    width: 100% !important;
}

section.title {
    background-color: #fbfbfb;
    padding: 40px 0 50px 0;
}
section.title h1,
section.title h2 {
    font-size: 39px;
}
section.title h1+p,
section.title h2+p {
    font-size: 22px;
}

section.page .content {
    text-align: left;
}
section.page h1 {
    margin-bottom: 30px;
}

section.points {
    padding: 14px 0;
    background-color: #d8dfea;
}
section.points .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.points .point {
    font-size: 14px;
    transition: opacity linear 1s;
    /*transition-delay: 1s;*/
}
section.points .point i.fa {
    color: #e95625;
    margin-right: 3px;
}
section.points .point.reviews {
    opacity: 0;
}

/*section.points .point.trustpilot {
    position: relative;
    bottom: -3px;
}
section.points .point.trustpilot .trustpilot-widget-cont {
    position: relative;
    width: 250px;
    left: -54px;
}
section.points .point.trustpilot .trustpilot-widget-cont:before {
    position: absolute;
    top: 0;
    left: 167px;
    background-color: #d8dfeb;
    content: 'Rated Great';
    padding-left: 10px;
    z-index: 20;
    display: flex;
    align-items: center;
    height: 25px;
    color: #0d1531;
    pointer-events: none;
    white-space: nowrap;
}
*/

section.points .point.trustpilot a.reviewscom img {
    display: block;
    /* height: 43px; */
    max-width: 250px;
}
section.points .point.trustpilot a {
    display: flex;
    align-items: center;
}
section.points .point.trustpilot .image {
    text-align: center;
}
section.points .point.trustpilot .image img {
    height: 11px;
    margin-bottom: 1px;
}
section.points .point.trustpilot .stars .star {
    border-left: 1px #d8dfeb solid;
    border-right: 1px #d8dfeb solid;
    border: none;
    width: 17px;
    height: 15px;
    font-size: 11px;
    margin-top: 4px;
}
section.points .point.trustpilot p {
    color: #0d1531;
    padding-left: 10px;
    font-weight: 500;
    font-size: 14px;
}

section.subscribe {
    text-align: center;
    padding: 50px 0 60px 0;
}
section.subscribe .wrapper {
    width: 740px;
}
section.subscribe p {
    font-size: 25px;
    margin-bottom: 40px;
}
section.subscribe input[type="email"] {
    height: 60px;
    background-color: #fafafa;
    border-color: #e0e0e0;
    padding: 0 26px;
}

section.reviews {
    text-align: center;
    /*    background-image: -webkit-linear-gradient(#FFFFFF 0%, #FBFBFB 99%);
    background-image: -o-linear-gradient(#FFFFFF 0%, #FBFBFB 99%);
    background-image: linear-gradient(#FFFFFF 0%, #FBFBFB 99%);*/
    background-color: #f2f4f5;
    padding: 50px 0;
    background-color: #d8dfea;
    overflow:  hidden;
}
section.reviews .wrapper {
    padding: 0;
    /* background: #fff; */
}
#home section.reviews h2,
section.reviews h2 {
    margin-bottom: 30px;
    font-size: 30px;
    margin-top: 6px;
}
section.reviews .sliderWrapper {
    width: 770px;
}
section.reviews .heading {
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #e2e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafafa;
    border-radius: 7px;
    margin-bottom: 25px;
}
section.reviews .heading h3 {
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
}
section.reviews .heading img {
    display: inline-block;
    margin-left: 6px;
    height: 32px;
    vertical-align: middle;
}
section.reviews .reviewsSlider {
    padding: 0 20px;
}
section.reviews .reviewsSlider .owl-stage {
    /* display: flex; */
    /* align-items: center; */
}
section.reviews .reviewsSlider .prev,
section.reviews .reviewsSlider .next {
    position: absolute;
    font-size: 40px;
    color: #ffffff;
    top: calc(50% - 20px);
}
section.reviews .reviewsSlider .prev {
    left: -50px;
}
section.reviews .reviewsSlider .next {
    right: -50px;
}
section.reviews .review {
    text-align: left;
    padding-bottom: 30px;
}
section.reviews .review .image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 30px auto;
}
section.reviews .review p.quote {
    font-weight: 400;
    color: #2f2f2f;
    font-size: 13.8px;
    margin-top: 11px;
}
section.reviews .review time {
    display: block;
    text-align: right;
    margin-top: 23px;
    font-size: 13.4px;
    color: #4a4a4a;
    position: absolute;
    bottom:  0;
    right: 0;
}
section.reviews .review .name {
    margin-bottom: 0;
    display: inline-block;
    /* line-height: 26px; */
    font-size: 17px;
    color: #4a4a4a;
    font-weight: 600;
    vertical-align:  middle;
}
section.reviews .review .stars {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
}
section.reviews .review .stars img {
    display: inline-block;
    height: 18px;
    width: auto;
}
section.reviews .trustpilot {
    margin-top: 90px;
    /* margin-bottom: 40px; */
}
section.reviews .trustpilot p {
    font-weight: 500;
    font-size: 14px;
    margin-top: 20px;
}

section.review {
    background-color: #f2f4f5;
}
section.review .wrapper {
    padding: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#reviews section.review {
    padding-top: 0;
}
#reviews section.review .wrapper {
    max-width: 100%;
}

section.review .block {
    display: flex;
    align-items: center;
    justify-content: center;
}
.stars .star {
    width: 44px;
    height: 40px;
    /* line-height: 40px; */
    text-align: center;
    border-radius: 3px;
    background-color: #d6d6d6;
    color: #fff;
    font-size: 27px;
    border-left: 2px white solid;
    border-right: 2px white solid;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.stars[data-rating="1"] .star.active {
    background-color: #e31b22;
}
.stars[data-rating="2"] .star.active {
    background-color: #f47420;
}
.stars[data-rating="3"] .star.active {
    background-color: #f8ce11;
}
.stars[data-rating="4"] .star.active {
    background-color: #73b241;
}
.stars[data-rating="5"] .star.active {
    background-color: #00804c;
}

section.review h3 {
    margin: 0;
}
section.review p {
    font-weight: 500;
    font-size: 16px;
    color: #222;
    margin-bottom: 0;
    line-height: 1.4;
    position: relative;
    top: -2px;
}

section.review > .wrapper > .message.success {
    width: 100%;
}

section.manufacturers {
    border-bottom: 1px solid #eee;
}
section.manufacturers p {
    font-size: 21px;
    margin-bottom: 50px;
    text-align: center;
    color: #444444;
    margin-top: 20px;
    width: 520px;
    font-weight: 500;
    margin: 0 auto 47px auto;
    max-width: 100%;
}
section.manufacturers .logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 10px;
}
section.manufacturers .logos .logo {
    padding: 10px;
    margin-bottom: 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.manufacturers .logos .logo img {
    max-height: 100%;
}

section.usps h2+p strong {
    color: #e95625;
}
section.usps span.icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
section.usps h3 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16.5px;
    letter-spacing: 0.2px;
}
section.usps p {
    text-align: center;
    padding: 0 10px;
    font-weight: 300;
}

#faq section.faqs .questions {
    padding-right: 0;
}
#faq section.faqs .questions .question {
    width: 100%;
}

#faq h2 {
    padding-top: 0px;
    margin-bottom: 0px;
}

#faq h1 + h2 {
    text-transform: uppercase;
}

#faq h1 + p {
    border-bottom: 1px solid #d8dfea;
    padding-bottom: 50px;
    margin-bottom: 40px;
}

#faq .questions .question:first-child {
    border-top: 0;
}

#faq h1 + p + h2 {
    border-top: 0;
    padding-top: 0;
}

#faq .toc a {
    display: block;
    text-align: left;
    text-transform: capitalize;
    padding: 10px 0;
}

#faq .toc {
    padding: 20px;
    border: 1px solid #d8dfea;
}

#faq section.faqs .top > a {
    display: block;
    width: 100%;
    opacity: 0;
    padding: 20px;
    text-align: center;
    border: 1px solid #d8dfea;
    margin-top: 30px;
    transition: all 0.2s linear;
}

#faq section.faqs .is-affixed .top > a {
    opacity: 1;
}

#faq section.faqs .col-4 {
    position: relative;
}

#faq h1:after {
    content: '';
    border-bottom: 1px solid #d8dfea;
    display: block;
    max-width: 160px;
    margin: 20px auto;
}

#faq section h1 + h2 + p {
    margin: 10px auto 50px;
    max-width: 700px;
}

#faq section h1 + h2 + p:after {
    content: '';
    border-bottom: 1px solid #d8dfea;
    display: block;
    max-width: 160px;
    margin: 35px auto 60px;
}

#faq hr + a > h2 {
    padding-top: 30px;
}

section.faqs {
    border-bottom: 1px solid #eeeeee;
}
section.faqs .questions {
    /* padding-right: 60px; */
    text-align: center;
}
section.faqs .questions h2 {
    text-align: left;
    margin-bottom: 25px;
}

section.faqs .questions h2 a {
    float: right;
    font-size: 14px;
    height: 35px;
    line-height: 55px;
}

section.faqs .questions h2 a:hover {
    text-decoration: underline;
}

section.faqs .questions .question {
    padding: 18px 0 20px 0;
    border-top: 1px solid #d8dfea;
    text-align: left;
}
section.faqs .questions .question:last-child {
    /*border-bottom: 1px solid #d8dfea;*/
}
section.faqs .questions .question h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    padding-right: 20px;
}
section.faqs .questions .question h3:after {
    position: absolute;
    right: 0;
    content: '+';
    top: 0px;
    font-size: 29px;
    font-weight: 600;
}
section.faqs .questions .question .answer {
    max-height: 0;
    overflow: hidden;
}
section.faqs .questions .question p,
section.faqs .questions .question li {
    color: #a1a1a1;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}
section.faqs .questions .question li {
    margin-bottom: 7px;
}
section.faqs .questions .question p:first-child {
    margin-top: 11px;
}
section.faqs .questions .question p:last-child {
    margin-bottom: 6px;
}
section.faqs .questions .question.active .answer {
    max-height: 1000px;
}
section.faqs .questions .question.active h3:after {
    content: '-';
}
section.faqs .questions .show-more-faqs {
    text-align: center;
    padding: 10px 0 4px 0;
    display: inline-block;
    border-bottom: 1px dashed #d8dfeb;
    cursor: pointer;
}
.questions .show-more-faqs > a {
     color: #13529c;
}

/*section.faqs .more {
    margin-top: 30px;
}*/

section.faqs .more > div {
    border: 2px solid #d8dfea;
    border-radius: 10px;
    padding: 26px 30px 33px 30px;
    margin-bottom: 25px;
}
section.faqs .more h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 22px;
}
section.faqs .more p {
    font-weight: 500;
    color: #333333;
    text-align: center;
    font-size: 18px;
}
section.faqs .more p strong,
section.faqs .more p strong a{
    /* color: #e95625; */
    color: #cc4517;
    white-space: pre;
}
section.faqs .more ul {
    list-style: none;
    margin: 0;
}
section.faqs .more ul li {
    margin: 0 0 9px 0;
    /*width: 32%;*/
    /*display: inline-block;*/
}
section.faqs .more ul li:last-child {
    margin-bottom: 0;
}
section.faqs .more ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #e95625;
    display: inline-block;
    margin-right: 6px;
}

section.asfeatured {
    text-align: center;
    padding-bottom: 70px;
}
section.asfeatured .wrapper {
    width: 900px;
}
section.asfeatured p {
    font-size: 21px;
    margin-bottom: 30px;
    text-align: center;
    color: #444444;
    /*margin-top: 20px;*/
    font-weight: 500;
}
section.asfeatured .logos .logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
    height: 110px;
}
section.asfeatured .logos .logo img {
    display: inline-block;
}


section.helpsupport {
    background-color: #d8dfea;
    text-align: center;
    padding: 50px 0;
}
section.helpsupport img.home-icon {
    opacity: .22;
    margin-bottom: 20px;
    display: inline-block;
}
section.helpsupport .posts {
    margin-bottom: 50px;
}
section.helpsupport .posts .post {
    background-color: #fff;
    /*border-right: #d8dfeb solid 10px;*/
    /*border-left: #d8dfeb solid 10px;*/
}
section.helpsupport .posts .post .image {
    height: 200px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
section.helpsupport .posts .post .image img {
    display: block;
    /* visibility: hidden; */
    width: 100%;
}
section.helpsupport .posts .post .content {
    padding: 15px;
    /* height: calc(100% - 210px); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
section.helpsupport .posts .post .content h4 {
    line-height: 1.3;
    margin-bottom: 26px;
    display: block;
}
section.helpsupport .posts .post .content .button {
    /* height: 45px; */
    line-height: 1.2;
    border-width: 1px;
    font-size: 13px;
    padding: 17px 45px;
    flex: none;
}

section.whatsincluded h2 {
    text-align: left;
    margin-bottom: 21px;
}
section.whatsincluded .item {
    margin-bottom: 45px;
    padding-left: 110px;
    position: relative;
    padding-right: 80px;
}
section.whatsincluded .item span.icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
display: block;
    text-align: center;
    align-items: center;
    justify-content: center;
}
section.whatsincluded .item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}
section.whatsincluded .item p {
    font-size: 15px;
    color: #333333;
}

section.notincluded {
    background-color: #fbfbfb;
    padding-bottom: 0;
}
section.notincluded h2 {
    text-align: left;
    margin-bottom: 40px;
}
section.notincluded p {
    color: #929292;
    font-weight: 600;
    padding: 3px 30px 3px 38px;
    background-image: url(../img/notincluded.png);
    background-repeat: no-repeat;
    background-position: top left;
    font-size: 15px;
    margin-bottom: 30px;
}
section.notincluded .downloads {
    margin-top: 30px;
    padding: 40px 0;
    border-top: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.notincluded .downloads a {
    margin: 0 20px;
}
section.notincluded .downloads a img {
    display: inline-block;
    margin-right: 10px;
}

section.dyno {
    padding: 50px 0 8px 0;
}
section.dyno .wrapper {
    width: 820px;
}
section.dyno .banner {
    padding: 20px 30px;
    border: 1px solid #000;
    text-align: left;
}
section.dyno .banner p {
    font-style: italic;
    font-weight: 500;
}
section.dyno .banner h3 {
    margin-bottom: 10px;
    line-height: 1.3;
}
section.dyno .banner h3 img {
    height: 20px;
    display: inline-block;
    vertical-align: baseline;
}
section.dyno .banner img.van {
    float: right;
    height: 100px;
    /* background: #fff; */
    margin-top: -8px;
    /* border-top: 9px solid #fff; */
}
section.dyno .banner img.van.van-sm {
    display: none;
}


section.promise {
    padding: 50px 0 40px 0;
}

section.promise .wrapper {
    background-image: -webkit-linear-gradient(#EBEFF4 0%, #D8DFEA 100%);
    background-image: -o-linear-gradient(#EBEFF4 0%, #D8DFEA 100%);
    background-image: linear-gradient(#EBEFF4 0%, #D8DFEA 100%);
    border-radius: 100px;
    position: relative;
    padding: 19px 45px;
}

section.promise .wrapper h3 {
    color: #e95625;
    font-size: 29px;
    margin-bottom: 8px;
}

section.promise .wrapper p {
    font-size: 23px;
}

section.promise .wrapper img {
    position: absolute;
    right: 90px;
    bottom: 0;
    max-width: 330px;
}


.respToggle:not(.respToggleUnstyled) {
    display: none;
    border-top: 2px solid #d8dfea;
    border-bottom: 2px solid #d8dfea;
    /*margin-bottom: 25px;*/
    padding: 25px 20px;
}
.respToggle:not(.respToggleUnstyled) strong {
    font-size: 18px;
}
.respToggle:not(.respToggleUnstyled) span {
    float: right;
    font-size: 36px;
    position: relative;
    top: -14px;
    right: -13px;
}
.respToggleContent+.respToggle {
    border-top: none;
}

/*** HOME **********************/

#home section h2 {
    font-size: 39px;
}
#home section h2+p {
    font-size: 24px;
}

#home section.points {
    padding: 14px 0;
    background-color: #d8dfea;
}
#home section.points .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#home section.points .point {
    font-size: 14px;
}
section.points .point > span {
    position: relative;
    display: inline-block;
    top: -6px;
    margin-right: 15px;
}
section.points .point .review-stars img {
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
    top: -2px;
}

section.points .point .review-stars {
    display: none;
    display: inline-block;
    /* line-height: 2; */
    padding-top: 2px;
}
#home section.points .point i.fa {
    color: #e95625;
    margin-right: 3px;
}

#home section.ctahero {
    background-color: #121f48;
    padding-bottom: 0;
}

#home section.ctahero .sofa {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#home section.ctahero .sofa img {
    margin-bottom: -16px;
    position: relative;
}

#home section.ctahero .ctas {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#home section.ctahero .ctas .inner {
    width: 100%;
    padding: 0 20px;
}

#home section.ctahero .ctas .inner h1 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 17px;
    line-height: 1;
    text-align: left;
}

#home section.ctahero .ctas .inner p {
    color: #fff;
    font-size: 24px;
    margin-bottom: 27px;
    font-weight: 400;
    text-align: left;
    margin-top: 0;
}

#home section.ctahero .ctas .inner p strong {
    font-weight: 400;
    color: #e95625;
}

#home section.ctahero .ctas .inner .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#home section.ctahero .ctas .inner .buttons .button {
    width: calc(50% - 7px);
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
    padding: 17px 0;
    display:  inline-block;
}

#home section.ctahero .ctas .inner .reviews {
    display: block;
}
#home section.ctahero .ctas .inner .reviews p {
    font-size: 17px;
    font-style:  italic;
    margin-bottom: 3px;
}
#home section.ctahero .ctas .inner .reviews img {
    height: 33px;
}

#home section.ctahero .ctas .inner .trustpilot {
    /* margin-top: 70px; */
    /* display: flex; */
    /*justify-content: flex-start;*/
    /* align-items: center; */
    text-align: center;
}
#home section.ctahero .ctas .inner .trustpilot #badge-140 {
    display: inline-block;
}
#home section.ctahero .ctas .inner .trustpilot img {
    display: inline-block;
    height: 19px;
}
#home section.ctahero .ctas .inner .trustpilot .trustpilot-widget-cont {
    width: 250px;
    position: relative;
    left: -31px;
    bottom: -3px;
}
#home section.ctahero .ctas .inner .trustpilot p {
    color: #fff;
    margin: 0;
    font-weight: 400;
    display: inline-block;
    font-size: 17px;
    position: relative;
    left: -65px;
    white-space: nowrap;
}

/*#home section.ctahero .ctas .inner .trustpilot p {
    font-size: 18px;
    margin-bottom: 0;
    display: inline-block;
    margin-left: 10px;
    font-weight: 400;
}*/

#home section.featured {
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #d9dbe2;
}

#home section.featured .wrapper h3 {
    font-weight: 500;
    margin: -1px 0 0 0;
    font-size: 19px;
}

#home section.featured .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#home section.switch h3 {
    text-align: center;
    font-size: 40px;
}

#home section.switch p {
    /* text-align: center; */
    /* font-size: 23px; */
}

#home section.switch .arrows {
    margin-top: 40px;
}

#home section.switch .arrows .wrapper {
    width: 860px;
}

#home section.switch .arrows .wrapper > .row {
    align-items: flex-end;
}

#home section.switch .arrows .arrow {
    display: flex;
    align-items: center;
    flex-flow: column;
}

#home section.switch .arrows .arrow img {
}

#home section.switch .arrows .arrow .stat {
    background-color: #121f48;
    margin-bottom: 18px;
    width: 144px;
}

#home section.switch .arrows .arrow .stat .percentage {
    font-size: 50px;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: 600;
    margin-bottom: 7px;
}

#home section.switch .arrows .arrow .stat .from {
    font-size: 15px;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: 600;
    margin-bottom: 18px;
    background-color: #121f48;
}

#home section.switch .arrows .arrow .company {
    font-size: 18px;
    color: #121f48;
}

#home section.switch .arrows .arrow.britishgas .stat {
    padding-top: 70px;
}

#home section.switch .arrows .arrow.homeserve img {
    opacity: .7;
}

#home section.switch .arrows .arrow.homeserve .stat {
    padding-top: 19px;
    opacity: .7;
}

#home section.switch .arrows .arrow.homeplan img {
    opacity: .55;
}

#home section.switch .arrows .arrow.homeplan .stat {
    padding-top: 0px;
    opacity: .55;
}

#home section.switch .buttons {
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
}
#home section.switch .buttons p {
    font-size: 18.5px;
}
#home section.switch .buttons .button {
    font-size: 18px;
    width: 440px;
    max-width: 100%;
}

#home section.claim {
    background-color: #121f48;
    text-align: center;
}
#home section.claim h2 {
    color: #fff;
}
#home section.claim p {
    color: #fff;
}

/*** PRICING ******************************/

#pricing section.scrollHeader .complete {
    background-color: #34495e;
    width: 31.5%;
}

#pricing section.scrollHeader .popular {
    background-color: #121f48;
    width: 37%;
}

#pricing section.scrollHeader .basic {
    background-color: #4d6c8b;
    width: 31.5%;
}

#pricing section.scrollHeader {
    padding: 0;
}

#pricing section.scrollHeader .col {
    /* min-height: 100px; */
    margin-bottom: 13px;
}

#pricing section.scrollHeader h3{
    color: #ca2323;
    font-size: 17px;
    margin-bottom: 0px;
    text-align: center;
    z-index: 100;
}

#pricing section.scrollHeader .price{
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 7px;
    text-align: center;
    /* display: inline-block; */
}

#pricing section.scrollHeader strong{
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

#pricing section.scrollHeader .top {
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
}

#pricing section.scrollHeader .permonth {
    font-size: 15px;
    display: inline-block;
    margin-left: 2px;
}

#pricing section.scrollHeader form {
    text-align: center;
}

#pricing section.scrollHeader.table {
    padding-bottom: 0;
}

#pricing section.scrollHeader button {
    /* height: 35px; */
    /* line-height: 35px; */
    margin-bottom: 10px;
    padding: 10px 20px;
}

#pricing section.scrollHeader a.button {
    /* height: 35px; */
    /* line-height: 35px; */
    margin-bottom: 10px;
    padding: 10px 20px;
}

#pricing section.scrollHeader {
    pointer-events: none;
}

#pricing section.scrollHeader.scrolling {
    pointer-events: all;
}

#pricing section.table h1 {
    font-size: 39px;
}
#pricing section.table h1+p {
    font-size: 24px;
}
#pricing section.table {
    border-bottom: 0px solid #b9bfc9;
    padding-bottom: 80px;
}
#pricing section.table .table .column .top a.button {
    padding: 18px 35px;
    line-height: 16px;
    margin-top: 30px;
}
#pricing section.table .toggles {
    text-align: center;
    margin-bottom: 35px;
}
#pricing section.table .toggles p:not(.note) {
    font-weight: 500;
    margin-bottom: 12px;
}
.toggleSwitch {
    width: 100%;
    cursor: pointer;
    margin: 0 auto 10px auto;
    background-color: #ffffff;
    border: 1px solid #b9bfc9;
    border-radius: 2px;
}
.toggleSwitch a {
    color: #121f48;
    text-align: center;
    padding: 15px 0;
    opacity: 0.8;
    font-size: 14.5px;
    font-weight: 600;
    border-right: 1px solid #b9bfc9;
}
.toggleSwitch a:last-child {
    border-right: none;
}
.toggleSwitch a.active {
    opacity: 1;
    background-color: #d8dfea;
}

#pricing section.table .table {
    margin-bottom: 52px;
}
#pricing section.table .table .column .top {
    padding: 35px 15px;
    text-align: center;
    background-color: #34495e;
    color: #fff;
    border-top: solid 30px #fff;
}
#pricing section.table .table .column .top h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 21px;
}
#pricing section.table .table .column .top .price {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 7px;
}
#pricing section.table .table .column .top .button {
    padding: 0 20px;
    height: 55px;
    line-height: 53px;
}
#pricing section.table .table .column .top .permonth {
    margin-bottom: 0px;
    font-size: 15px;
    display: inline-block;
    margin-left: 5px;
}
#pricing section.table .table .column .top strong {
    font-weight: 700;
    margin-bottom: 33px;
    display: inline-block;
}
#pricing section.table .table .column .list {
    padding: 40px 5px 0px 5px;
    background-color: #fbfbfb;
    border: 1px solid #b9bfc9;
}
#pricing section.table .table .column .list .details {
    text-align: center;
    padding: 36px 30px 36px 30px;
    border-top: 1px solid #b9bfc9;
}
#pricing section.table .table .column .list .details a {
    font-size: 14px;
    color: #121f48;
    display: inline-block;
    padding-bottom: 1px;
    border-bottom: 1px solid #121f4885;
}
#pricing section.table .table .column .list h2 {
    display: none;
}
#pricing section.table .table .column .list ul {
    list-style: none;
    margin: 0 0 38px 0;
    padding: 0 30px;
}
#pricing section.table .table .column .list ul li {
    position: relative;
    padding-left: 25px;
    margin: 0 0 10px 0;
    display: block;
}
#pricing section.table .table .column .list ul li span {
    display: inline-block;
    padding-bottom: 1px;
    border-bottom: 1px dotted #121f4885;
    font-size: 16.5px;
    cursor: pointer;
}
#pricing section.table .table .column .list ul li:hover span {
    color: #e95625;
}
#pricing section.table .table .column .list ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 14px;
}
#pricing section.table .table .column .list ul li.disabled:before {
    opacity: 0;
}
#pricing section.table .table .column .list ul li.disabled span {
    border-color: transparent;
    opacity: .4;
}

#pricing section.table .table .column.complete {
    border-right: none;
    width: 31.5%;
}

#pricing section.table .table .column.basic {
    border-left: none;
    width: 31.5%;
}
#pricing section.table .table .column.basic .top {
    background-color: #4d6c8b;
}
#pricing section.table .table .column.basic .top h3 {
    /*color: #121f48;*/
}

#pricing section.table .table .column.partial {
    border: 4px solid #121f48;
    border-radius: 5px;
    width: 37%;
}
#pricing section.table .table .column.partial .top {
    background-color: #121f48;
    border-top: solid #121f48 30px;
    position: relative;
}
#pricing section.table .table .column.partial .top:before {
    color: #e95625;
    position: absolute;
    content: 'Most Popular Plan';
    text-transform: uppercase;
    display: block;
    left: 0;
    right: 0;
    top: 5px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}
#pricing section.table .table .column.partial .list {
    background-color: #fff;
}
#pricing section.table .table .column.partial .list .details {
    padding-bottom: 48px;
}

#pricing section.table .links a {
    display: inline-block;
    padding-bottom: 1px;
    border-bottom: 1px solid #b9bfc9;
    color: #13529c;
}

#pricing section.usps h3 {
    text-transform: capitalize;
    font-size: 16px;
}
#pricing section.usps p {
    color: #333333;
}
#pricing section.usps span.icon {
    height: 70px;
    margin-bottom: 10px;
}

/*#pricing section.reviews {
    background: #fbfbfb;
}*/

#pricing section.manufacturers {
}
#pricing section.manufacturers .wrapper {
    width: 900px;
}

.summaryModal {
    background-color: rgba(18, 31, 73, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.summaryModal .close {
    cursor: pointer;
}

.summaryModal .modal {
    padding: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    max-height: 900px;
    max-width: 900px;
    /*width: 980px;*/
    /*position: absolute;*/
    /*left: 20px;*/
    /*top: 20px;*/
    scroll-behavior: smooth;
    margin: 0;
}
.summaryModal .modal .modal-header {
    background-color: #d8deea;
    margin: 0;
    padding: 25px 30px;
}
.summaryModal .modal .modal-header .row {
    align-items: center;
}
.summaryModal .modal .modal-header h3 {
    margin-bottom: 0;
    font-size: 30px;
}
.summaryModal .modal .modal-header .price {
    color: #122048;
    text-align: right;
}
.summaryModal .modal .modal-header .price .num {
    display: inline-block;
    font-weight: 600;
    font-size: 28px;
}
.summaryModal .modal .modal-header .price span {
    display: inline-block;
    font-size: 14px;
}
.summaryModal .modal .modal-body {
    overflow: auto;
    padding: 0;
    height: calc(100% - 191px);
}
.summaryModal .modal .modal-body section {
    padding: 30px;
}
.summaryModal .modal .modal-body section .wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
}
.summaryModal .modal .modal-body section h2 {
    font-size: 20px;
}
.summaryModal .modal .modal-body section.notincluded .downloads {
    padding-bottom: 10px;
}
.summaryModal .modal .modal-footer {
    background-color: #d8deea;
    padding: 25px 30px;
    text-align: center;
}

#reviewModal {
    display: none;
}
#reviewModal.open {
    display: flex;
}
#reviewModal .modal {
    max-height: calc(100% - 40px);
    max-width: calc(100% - 40px);
    width: 600px;
    height: auto;
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 5px;
}
#reviewModal .modal .close {
    background-color: #ea5526;
}
#reviewModal .modal .stars .star {
    border-color: #f2f2f2;
}
#reviewModal .error {
    font-size: 0.8em;
    float: right;
}
#reviewModal .error.general {
    height: 55px;
    line-height: 100px;
}

/*** PRODUCT ******************************/

#product.partner header .main,
#product.partner footer#mainFooter,
#product.partner .top {
    display: none;
}

#product.partner .header > .wrapper {
    position: relative;
}

#product.partner .phone a {
    font-size: 15px;
    margin-left: 5px;
    color: #fff;
    background-color: #e95626;
    border-radius: 5px;
    font-weight: bold;
    padding: 5px 15px 6px;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 23px;
}

#product section.header {
    text-align: center;
    padding: 15px 0;
}
#product section.header .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
#product section.header a.logo {
    display: inline-block;
    padding: 0 30px 0 0;
}
#product section.header .partnership {
    display: inline-block;
    padding: 0 0 0 30px;
    position: relative;
    text-align: left;
}
#product section.header .partnership:before {
    height: 120%;
    width: 1px;
    background-color: #bcbec0;
    position: absolute;
    left: 0;
    top: -10%;
    content: '';
    transform: rotate(13deg);
}
#product section.header .partnership span {
    text-align: left;
    color: #929292;
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 5px;
    display: block;
}

section.header .partnership .logo > img {
    max-height: 50px;
}

#product #tooltip {
    background: #000000;
}

#product #tooltip:after {
    border-top-color: #000;
    border-left-color: transparent;
    border-right-color: transparent;
}

#product #tooltip.top:after {
    background: #000000;
}

section.scrollHeader {
    padding: 15px 0;
    border-bottom: 2px solid #121f48;
    box-shadow: 0px 2px 14px 0px #00000038;
    position: fixed;
    width: 100%;
    background-color: #fff;
    top: 0;
    opacity: 0;
    transition: opacity .15s linear;
    z-index: 15;
    pointer-events: none;
}

section.scrollHeader.scrolling {
    opacity: 1;
    pointer-events: all;
}
section.scrollHeader .row .col {
    /*text-align: right;*/
}
#pricing section.scrollHeader .product {
    justify-content: flex-start;
    background-color: #122048;
    flex-grow: 1;
}
section.scrollHeader .product strong {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    padding-top: 9px;
}
section.scrollHeader .product span {
    display: block;
    font-weight: 500;
    margin-top: 4px;
    font-size: 20px;
}
section.scrollHeader .partnership {
    display: inline-block;
    padding: 0 0 0 30px;
    position: relative;
    text-align: left;
    justify-content: center;
}
section.scrollHeader .partnership span {
    text-align: left;
    color: #929292;
    font-size: 14px;
}
section.scrollHeader .partnership .logo img {
    height: 40px;
    margin-top: 15px;
}

section.scrollHeader .cta {
    justify-content: flex-end;
    text-align: right;
}
section.scrollHeader .cta .inner {
}
section.scrollHeader .cta .price {
    display: inline-block;
    text-align: right;
    margin-bottom: 6px;
}
section.scrollHeader .cta .price span.num {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
}
section.scrollHeader .cta .price span.permonth {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 2px;
    margin-left: 5px;
}
section.scrollHeader .cta button {
    display: inline-block;
    padding: 10px 16px;
    /*height: 25px;*/
    /*line-height: 36px;*/
    font-size: 15px;
    margin-left: 9px;
    border-radius: 2px;
    width: 100%;
    /* max-width: 100%; */
}

.voucherbanner {
	background:hsl(15.2, 79.7%, 60%);
	border-radius:15px;
	color:white;
	display:block;
	letter-spacing:.5px;
	margin-top:3em;
	padding:.5em 1em;
    text-align:center;
}

.voucherbanner p, .voucherbanner small {
    font-weight:bold;
}

@media only screen and (min-width: 768px) {
    .voucherbanner p {
        font-size:1.5rem;
    }
}
@media only screen and (min-width: 1085px) {
    .voucherbanner p {
        font-size:3rem;
    }
}


.voucherbanner a {
    color:white;
}

#product section.hero {
    padding-bottom: 0;
}
#product section.hero h1 {
    font-size: 38px;
    margin-bottom: 4px;
}
#product section.hero h1+h2 {
    margin-bottom: 30px;
    text-align: center;
}
#product section.hero .sections > .col {
    background-color: #121f48;
    border-top: 55px solid #fff;
    border-bottom: 55px solid #fff;
    padding: 32px;
}
#product section.hero .sections .col.family {
    background-color: #0c193e;
}
#product section.hero .sections .col.family {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}
#product section.hero .sections .col.family img {
    display: block;
}
#product section.hero .sections .col.customise {
    background-color: #121f48;
    border: none;
    /*border-right: 1px solid #fff;*/
    /*border-left: 1px solid #fff;*/
    text-align: center;
/*border-radius: 5px 5px 0 0;*/
    position: relative;
    left: 0px;
    /*left: 1px;*/
}
#product section.hero .sections .col.customise h3 {
    color: #fff;
    margin-bottom: 13px;
}
#product section.hero .sections .col.customise .toggle {
    margin-bottom: 13px;
}
#product section.hero .sections .col.customise .toggle h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 7px;
}
#product section.hero .sections .col.customise .toggle .toggleSwitch {
    width: 100%;
}
#product section.hero .sections .col.customise .price {
    color: #fff;
    font-weight: 700;
    font-size: 50px;
    margin-top: 19px;
}
#product section.hero .sections .col.customise .price span {
    font-size: 17px;
    /*margin-left: 2px;*/
}

#product section.hero .sections .col.customise .price span.was {
    font-size: 30px;
    position:relative;
}

#product section.hero .sections .col.customise .price span.was:before {
    position:absolute;content:"";left:0;top:calc(50% - 2px);right:0;border-top:4px solid;border-color:#e95626;-webkit-transform:rotate(-6deg);transform:rotate(-6deg);
}

#product section.hero .sections .col.customise .excess {
    color: #fff;
    font-weight: 700;
    margin: 3px 0 15px 0;
}
#product section.hero .sections .col.customise .button {
    font-size: 18px;
}

#product section.hero .sections .col.includes {
    background-color: #0c193e;
    display: flex;
    align-items: center;
    padding: 4%;
}
#product section.hero .sections .col.includes h3 {
    color: #fff;
}
#product section.hero .sections .col.includes ul {
    list-style: none;
    margin: 0;
}
#product section.hero .sections .col.includes ul li {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}

/*
#product section.hero {
    background-color: #121f48;
    padding-bottom: 0;
}
#product section.hero .main {
    padding-right: 40px;
}
#product section.hero h1 {
    font-weight: 300;
    color: #fff;
    font-size: 42px;
}
#product section.hero .family {
    text-align: center;
}
#product section.hero .family img {
    display: block;
    margin: 0 auto;
}
#product section.hero .cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#product section.hero .cta .price {
    font-weight: 700;
    font-size: 63px;
    color: #fff;
    margin-top: -60px;
    margin-bottom: 14px;
    text-align: center;
}
#product section.hero .cta .price span {
    font-size: 18.5px;
    font-weight: 400;
    display: inline-block;
    margin-left: -10px;
}
#product section.hero .cta .button {
    text-align: center;
    height: 68px;
    line-height: 66px;
    font-size: 18px;
}
#product section.hero .includes .inner {
    border: 2px solid #757f99;
    border-radius: 5px;
    padding: 18px 25px 25px 25px;
    position: relative;
}
#product section.hero .includes .inner:before {
    content: attr(data-excess);
    position: absolute;
    top: 20px;
    right: 20px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    text-align: center;
    background-color: #d8dfea;
    color: #121f48;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14.8px;
    line-height: 1.1;
}

#product section.hero .includes .inner h3 {
    color: #fff;
    font-size: 19px;
}
#product section.hero .includes .inner ul {
    list-style: none;
    margin: 0;
}
#product section.hero .includes .inner ul li {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16.6px;
}
#product section.hero .includes .inner p.reviews {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
    margin-top: 40px;
}
#product section.hero .includes .inner p.reviews img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    max-width: 185px;
    position: relative;
    top: -2px;
    }
*/
/*#product section.points .trustpilot {
    display: none;
}*/

#product section.reviews {
    background: #d8dfea;
}
#product section.reviews .trustpilot {
    display: none;
}

#product section.manufacturers {
}
#product section.manufacturers .wrapper {
    width: 900px;
}

#product section.summary {
    overflow: hidden;
    background-color: #d8dfea;
    padding-top: 80px;
}
#product section.summary .box {
    width: 690px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}
#product section.summary .box:before,
#product section.summary .box:after {
    position: absolute;
    content: '';
    width: 249px;
    height: 210px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/family-summary-1.png');
    bottom: 0;
}
#product section.summary .box:before {
    left: -155px;
}
#product section.summary .box:after {
    right: -70px;
}
#product section.summary .box .inner {
    background-color: #fff;
    border: 2px solid #121f48;
    border-radius: 10px;
    position: relative;
    padding: 80px 35px 35px 35px;
    z-index: 6;
}
#product section.summary .box .inner:before {
    content: attr(data-excess);
    position: absolute;
    top: -46.5px;
    right: calc(50% - 47.5px);
    width: 95px;
    height: 95px;
    border-radius: 50%;
    text-align: center;
    background-color: #121f48;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14.8px;
    line-height: 1.1;
}
#product section.summary .box .inner h2 {
    font-weight: 300;
    font-size: 35px;
    margin-bottom: 42px;
}
#product section.summary .box .inner .includes h3 {
    font-size: 19px;
    text-align: left;
    margin-bottom: 16px;
}
#product section.summary .box .inner .includes ul {
    margin: 0;
    list-style: none;
}
#product section.summary .box .inner .includes ul li {
    font-weight: 300;
    margin: 0 0 14px 0;
}
#product section.summary .box .inner .includes ul li:last-child {
    margin: 0;
}
#product section.summary .box .inner .cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

#product section.summary .box .inner .cta .price {
    font-weight: 700;
    font-size: 63px;
    color: #122048;
    /* margin-top: -60px; */
    margin-bottom: 14px;
    text-align: center;
    display: block;
    width: 100%;
}
#product section.summary .box .inner .cta .price span {
    font-size: 18.5px;
    font-weight: 400;
    display: inline-block;
    margin-left: 3px;
}
#product section.summary .box .inner .cta .button {
    text-align: center;
    height: 68px;
    line-height: 66px;
    font-size: 18px;
}

/*** PRODUCT NEW ******************************/

#product.product-new .wrapper .wrapper {
    max-width: 100%;
    width: 100%;
}
#product.product-new .wrapper section {
    padding-top: 0;
    padding-bottom: 0;
}
#product.product-new section.hero {
    border: 1px solid #0f1839;
    padding-top: 0;
    margin-top: 33px;
    margin-bottom: 28px;
    /*background-color: #0f1839;*/
}
#product.product-new section.hero .info {
    background-color: transparent;
    border: none;
    position: relative;
    padding: 30px 50px 30px 30px;
    background-position: left center;
    background-size: cover;
    background-position: left center;
    background-size: 1080px;
}
#product.product-new section.hero .info:before {
    position: absolute;
    width: 60px;
    height: 50%;
    top: 0;
    right: -35px;
    content: '';
    background-color: #122048;
    transform: skew(12deg);
}
#product.product-new section.hero .info:after {
    position: absolute;
    width: 60px;
    height: 50%;
    bottom: 0;
    right: -35px;
    content: '';
    background-color: #122048;
    transform: skew(-12deg);
}
#product.product-new section.hero .info h1 {
    text-align: left;
}
#product.product-new section.hero .info h2 {
    text-align: left;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 14px;
    font-size: 22px;
}
#product.product-new section.hero .info .includes .include {
    text-align: center;
}
#product.product-new section.hero .info .includes .include .icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#product.product-new section.hero .info .includes .include h4 {
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 13px;
}
#product.product-new section.hero .customise {
    background-color: #0f1839;
    padding: 17px 30px 22px 30px;
}
#product.product-new section.hero .sections .col.customise .toggle {
    margin-bottom: 10px;
}
#product.product-new section.hero .sections .col.customise .price {
    margin-top: 9px;
}
#product.product-new section.hero .sections .col.customise button {
    padding: 13px 35px;
}

#product.product-new section.whatsincluded .item {
    padding-right: 0;
}
#product.product-new section.whatsincluded .item h3 {
    line-height: 1.2;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

#product.product-new .easier {
    margin-bottom: 35px;
    text-align:  center;
}
#product.product-new .easier img {
    display: inline-block;
}

#product.product-new .loveus {
    background-color: #d8deea;
    padding: 25px;
    margin-bottom: 45px;
}
#product.product-new .loveus h3 {
    font-size: 22px;
}
#product.product-new .loveus ul li {
    margin-bottom: 13px;
    line-height: 1.4;
}

section.reviews.show-sm {
    padding-right: 20px;
    padding-left: 20px;
}
#product.product-new div.reviews {
    margin-bottom: 45px;
}
section.reviews.show-sm h3,
#product.product-new div.reviews h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    padding: 0 10px;
}
section.reviews.show-sm a,
#product.product-new div.reviews a {
    display: block;
}
section.reviews.show-sm a p,
#product.product-new div.reviews a p {
    text-align: center;
    font-style: italic;
    border-top: 1px solid #e9e9e9;
    padding-top: 10px;
    margin-top: 10px;
}

#product.product-new .moreinfo {
    background-color: #dc3e19;
    padding: 25px 25px 20px 25px;
    text-align: center;
    margin-bottom: 45px;
}
#product.product-new .moreinfo p {
    font-size: 23px;
    color: #fff;
    font-weight: 500;
    margin-top: 12px;
}

#product.product-new .manufacturers {
    margin-bottom: 45px;
    text-align: center;
}
#product.product-new .manufacturers h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    padding: 0 10px;
}
#product.product-new .manufacturers .logo {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#product.product-new section.notincluded {
    margin-bottom: 45px;
    position: relative;
    padding: 25px;
}
#product.product-new section.notincluded:before {
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    width: 2000px;
    content: '';
    background-color: #fbfbfb;
}
#product.product-new section.notincluded p {
    padding-top: 0;
    font-weight: 500;
    color: #121f48;
}
#product.product-new section.notincluded .downloads {
    display: block;
    padding: 30px 0px 0px 0px;
    margin-top: 3px;
}
#product.product-new section.notincluded .downloads a {
    display: block;
    margin-bottom: 16px;
}

#product.product-new section.faqs {
    margin-bottom: 45px;
    border-bottom:  none;
}
#product.product-new section.faqs .more {
    display: none;
}
#product.product-new section.faqs .col-8 {
    width: calc(100% - 3%);
}

#product.product-new section.reviews .wrapper {
    background: none;
}

#product.product-new .ctaButton button {
    display: none;
}


/*** CHECKOUT ******************************/

#checkout .wrapper {
    width: 850px;
}
#checkout header {
    display: none;
}
#checkout footer#mainFooter {
    display: none;
}

#checkout section.header {
    text-align: center;
    padding: 19px 0;
}
#checkout section.header .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
#checkout section.header a.logo {
    display: inline-block;
    padding: 0 30px 0 0;
}
#checkout section.header .partnership {
    display: inline-block;
    padding: 0 0 0 30px;
    position: relative;
    text-align: left;
}
#checkout section.header .partnership:before {
    height: 120%;
    width: 1px;
    background-color: #bcbec0;
    position: absolute;
    left: 0;
    top: -10%;
    content: '';
    transform: rotate(13deg);
}
#checkout section.header .partnership span {
    text-align: left;
    color: #929292;
    font-size: 14px;
}

#checkout section.bar {
    background-color: #fbfbfb;
    border-top: 1px solid #eaebeb;
    border-bottom: 1px solid #eaebeb;
    padding: 10px 0;
}
#checkout section.bar .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#checkout section.bar p {
    margin: 0;
    font-size: 15px;
}
#checkout section.bar .secure {

}

#checkout section.form {
    padding: 30px 0;
}
#checkout section.form > .wrapper > .row {
    margin-left: -8%;
}
#checkout section.form > .wrapper > .row > .col {
    margin-left: 8%;
    width: calc(50% - 8%);
}

#checkout section.form .address {
    margin-bottom: 25px;
}
#checkout section.form .manualAddressToggle {
    color: #13529c;
    /* margin-bottom: 21px; */
    display: inline-block;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted #13529c;
}
#checkout section.form .manualAddress {
    margin-top: 20px;
}
#checkout section.form .terms {
    background-color: #fbfbfb;
    border: 1px solid #b8babc;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
}
#checkout section.form .terms .inner {
    height: 240px;
    overflow: auto;
    padding: 14px;
}
#checkout section.form .terms p {
    color: #696969;
    font-size: 15px;
}
#checkout section.form button.submit {
    /* height: 70px; */
    /* line-height: 68px; */
    font-size: 23px;
    width: 100%;
    display: block;
    margin: 15px 0 20px 0;
    padding: 22px 10px  24px 10px;
}
#checkout section.form .ddebit img {
    opacity: .3;
}
#checkout section.form .directDebit {
    margin-top: 25px;
}
#checkout section.form .directDebit p {
    color: #696969;
    font-size: 15px;
}
#checkout section.form .summary .inner {
    border-radius: 9px;
    background-color: #fbfbfb;
    padding: 20px;
    border: 1px solid #b8babc;
}
#checkout section.form .summary .inner .plan {
    margin-bottom: 30px;
    align-items: flex-end;
    background-color: #eeeeee;
    padding: 20px;
    margin-right: -20px;
    margin-left: -20px;
}
#checkout section.form .summary .inner .plan .price {
    text-align: right;
    color: #e95625;
}
#checkout section.form .summary .inner .plan .price span {
    font-size: 22px;
    font-weight: 600;
}
#checkout section.form .summary .inner strong {
    font-size: 15px;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}
#checkout section.form .summary .inner p {
    font-size: 15px;
}
#checkout section.form .summary .inner ul {
    margin: 0;
    list-style: none;
}
#checkout section.form .summary .inner ul li {
    margin: 0 0 15px 0;
    font-size: 15px;
    font-weight: 300;
}
#checkout section.form .summary .inner ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #e95625;
    display: inline-block;
    margin-right: 14px;
}

#checkout section.form .summary .rating {
    text-align: center;
    position: relative;
    margin-top: 15px;
}

#checkout section.form .summary .rating .trustpilot {
    height: 88px;
}
#checkout section.form .summary .rating .trustpilot img {
    max-height: 29px;
    display: block;
    margin: 0 auto 9px auto;
}
#checkout section.form .summary .rating .trustpilot .trustpilot-widget-cont {
    width: 250px;
    display: inline-block;
}
#checkout section.form .summary .rating .trustpilot .trustpilot-widget {
    display: inline-block;
}
#checkout section.form .summary .rating .trustpilot p {
    margin-top: 1px;
    font-size: 14px;
    font-weight: 500;
}

#checkout section.form .summary .plan .options {
    margin-top: 15px;
    font-size: 0.85em;
}

#checkout section.form .summary .price {
    float: right;
    color: #e95625;
    text-transform: none;
    font-weight: bold;
}

#checkout section.form span.address {
    background-color: #fbfbfb;
    display: block;
    padding: 10px;
    border: 1px solid #b8babc;
    border-radius: 9px;
    margin-top: 20px;
    line-height: 1.4;
}

#checkout span.startDateBox {
    background-color: #fbfbfb;
    display: block;
    padding: 10px;
    border: 1px solid #b8babc;
    border-radius: 9px;
    margin-top: 20px;
    line-height: 1.4;
    color: #7d7d7d;
}

#checkout span.startDateBox:before {
    content: 'Your plan will start:';
    display: block;
    font-size: 0.85em;
    font-weight: bold;
    color: #4b5574;
}

#checkout section.form .form-item.hidden {
    position: relative;
}

#profile section.profile .form-item.date:after,
#checkout section.form .form-item.hidden > label.end:after {
    content: '\f073';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    text-align: center;
    line-height: 51px;
    /* background-color: #bbb; */
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    color: #fff;
    font-size: 22px;
    color: #e95625;
    pointer-events: none;
}

#profile section.account .wrapper {
    overflow: visible;
}

#profile section.profile .form-item.date {
    position: relative;
}

#profile section.account .address {
    margin: -25px 0 15px 0;
    padding: 20px 0px;
    color: #121f48;
    border-bottom: 1px solid #d8dfea;
}

#profile section.account .address > p {
    font-weight: normal;
    letter-spacing: 0.2px;
    font-size: 0.95em;
}

#profile section.profile .form-item.date:after {
    top: 26px;
    right: -5px;
    font-size: 18px;
}

#profile .date > input.datetimepicker {
    font-size: 0.8em;
}

#checkout section.form .form-item.hidden > label.end {
    position: relative;
}

#checkout section.form input.startDate {
    cursor: pointer;
    user-select: none;
}

#checkout p.note > a,
#checkout a.showStartDate,
#faq h2 + p > a {
    border-bottom: 1px dotted #13529c;
    color: #13529c !important;
    font-weight: normal;
}

#checkout .datepicker {
    background: #fff;
    position: absolute;
    top: 50%;
    width: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
}

#checkout .bootstrap-datetimepicker-widget.dropdown-menu.usetwentyfour {
    top: 0 !important;
    bottom: 0 !important;
    position: fixed;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0;
    background-color: rgba(0,0,0,0.3);
}

/***** Page *****/

body#page section.page ul, body#page section.page ol{
    font-weight: 300;
    line-height: 1.4em;
    margin-bottom: 20px;
    font-size: 16.6px;
}

body#page section.page p+ol.alpha {
    list-style-type: upper-alpha;
    margin-left: 50px;
}

body#page section.page p + ul,
body#page section.page p + ol{
    margin-top: -10px;
}

body#page section.page h3 {
    margin-bottom: 5px;
}

body#page section.page h4 {
    font-size: 18px;
    margin-bottom: 5px;
    margin-top: 0px;
}

body#page section.page a:not(.button)  {
    color: #13529c;
    border-bottom: 1px dotted #6890bf;
}

body#page .content + form {
    background-color: #d8dfea;
    padding: 20px;
    margin-top: 50px;
}

body#page .content + form .form-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

body#page .content + form .form-wrapper .form-item.error label {
    color: #f00;
}

body#page .content + form .form-wrapper .form-item.error input,
body#page .content + form .form-wrapper .form-item.error textarea,
body#page .content + form .form-wrapper .form-item.error select {
    border: 1px solid #f00;
}

/*** ACCOUNT  ******************************/

section.heading {
    padding-bottom: 0;
    padding-top: 40px;
    text-align: left;
    background-color: #d8dfea;
}
section.heading h1 {
    display: inline-block;
    margin-bottom: 17px;
    font-weight: 400;
    font-size: 31px;
    padding-left: 20px;
}
section.heading .wrapper {
    position: relative;
}
/* section.heading .wrapper:after {
    content: '';
    position: absolute;
    bottom: -51px;
    right: 44px;
    width: 180px;
    height: 160px;
    background-image: url('../img/family.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
} */

section.account {
    background-color: #d8dfea;
    position: relative;
}
section.account .wrapper {
    border-radius: 5px;
    overflow: hidden;
}
section.account nav {
    background-color: #f3f7fd;
    padding: 35px;
}
section.account nav ul li a {
    display: block;
    padding: 10px 0;
    font-size: 19px;
}
section.account nav ul li:first-child a {
    padding-top: 0;
}
section.account nav ul li:hover a {
    color: #e95625;
}
section.account nav ul li a:before {
    content: "\f101";
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    display: inline-block;
    font-size: 25px;
    color: #e95625;
    display: inline-block;
    margin-right: 8px;
}
section.account .whitebg {
    background-color: #fff;
    padding: 35px;
}
section.account h2 {
    text-align: left;
    margin: 0 0 10px 0;
}
section.account h2+p {
    text-align: left;
    margin: 0 0 20px 0;
}

section.account.login .wrapper {
    width: 700px;
}
section.account.login a.forgot {
    margin-right: 10px;
}
section.heading+section.account {
    padding-top: 0;
}

section.account .products .product {
    margin-bottom: 25px;
}
section.account .products .product h3 {
    font-size: 19px;
    margin: 0;
    padding: 9px 16px;
    padding-right: 43px;
    border: 1px solid #eee;
    position: relative;
    cursor: pointer;
}
section.account .products .product h3:after {
    position: absolute;
    right: 14px;
    content: '+';
    top: 8px;
    font-size: 29px;
    font-weight: 600;
    width: 16px;
    text-align: center;
    color: #ea5526;
}
section.account .products .product.active h3:after {
    content: '-';
}

section.account .products .product .address {
    background: #f3f7fd;
    border: 1px solid #eee;
    border-top: 0;
    padding: 10px 15px;
    font-size: 0.85em;
    margin-left: 0px;
}

section.account .products .product .address .col.col-9 {
    margin-left: 0;
}

section.account .products .product .address .col.col-3 {
    width: calc(25%);
}

section.account .products .product .details {
    margin: 0;
    padding-top: 20px;
    display: none;
}
section.account .products .product.active .details {
    display: block;
}
section.account .products .product .details .detail {
    padding: 16px 5px 14px 5px;
    background-color: #f3f7fd;
    border-radius: 4px;
    text-align: center;
}
section.account .products .product .details .detail strong {
    margin-bottom: 3px;
    display: block;
}
section.account .products .product .details .detail p {
    font-size: 15px;
}
section.account .products .product .details .detail.claim {
    padding: 0;
}
section.account .products .product .details .detail.claim.complete .button {
    background-color: #f3f7fd;
    color: red;
    color: #121f48;
}

section.account .products .product .details .detail .button {
    width: 100%;
    height: 100%;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 35px;
    font-size: 12px;
}
section.account .products .product .details .detail .button span.caret {
    position: relative;
    right: -8px;
}
section.account .products .product .details .downloads {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
section.account .products .product .details .downloads a img {
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -2px;
}
section.account .products .product .details .updateProfile {
    display: block;
    margin-top: 12px;
    /* margin-left: 2.4%; */
    color: #ea5526;
    text-align: right;
}

section.account .button .caret {
    margin-right: -8px;
}

section.defaultPassword,
section.completeProfile {
    background-color: #d8dfea;
    padding: 20px 0px 2px 0;
}
section.defaultPassword h2,
section.completeProfile h2 {
    text-align: left;
    margin-bottom: 7px;
}
section.defaultPassword h2+p,
section.completeProfile h2+p {
    margin: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
}
section.defaultPassword .wrapper,
section.completeProfile .wrapper {
    padding: 15px 15px 15px 18px;
    background-color: #fff;
    border-radius: 3px;
}
section.defaultPassword .button,
section.completeProfile .button {
    padding: 0 25px;
    height: 47px;
    line-height: 45px;
    margin-bottom: 6px;
}
section.defaultPassword .button+p,
section.completeProfile .button+p {
    font-weight: 400;
    font-size: 15px;
    padding-right: 23px;
}

section.defaultPassword .wrapper {
    background-color: #e95625;
}

section.defaultPassword .wrapper h2,
section.defaultPassword .wrapper p {
    color: white;
}

section.defaultPassword .wrapper .button {
    background-color: #fff;
    color: #e95625;
}

.landlord-only,
#profile form .row {
    border-bottom: 1px solid #d8dfea;
    margin-bottom: 25px;
    /*display: none; */
}

section.account.profile label.check p.note {
    line-height: 35px;
    height: 27px;
}

/*section.account.profile h2 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 14px;
}

section.account.profile .checkbox + h2 {
    border-top: 1px solid #d8dfea;
    padding-top: 25px;
}
*/

/*** CONFIRM ******************************/

#confirm {
    background-color: #fbfbfb;
}
#confirm .wrapper {
    width: 380px;
}
#confirm header,
#confirm footer#mainFooter {
    display: none;
}
#confirm section.confirm .inner {
    border: 1px solid #b8babc;
    border-radius: 12px;
    overflow: hidden;
}
#confirm section.confirm .inner h1 {
    padding: 19px 0;
    background-color: #fff;
    border-bottom: 1px solid #b8babc;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
}
#confirm section.confirm .inner .details {
    padding: 30px;
    background-color: #fff;
}
#confirm section.confirm .inner .details .form-item .text {
    color: #b5b5b5;
    margin-top: 6px;
    display: block;
    font-size: 17px;
}
#confirm section.confirm .inner .details p.change a {
    display: inline-block;
    color: #121f48;
    font-weight: 500;
    border-bottom: 1px solid #a6a8b2;
}
#confirm section.confirm .inner .details .buttons {
    text-align: center;
}
#confirm section.confirm .inner .details .buttons a {
    font-size: 19px;
    height: 50px;
    line-height: 46px;
    margin-top: 13px;
}
#confirm section.confirm .inner+p {
    color: #929292;
    text-align: center;
    font-weight: 500;
    padding: 10px 30px;
}
#confirm section.confirm .inner+p strong {
    color: #929292;
}

/*** CONTACT ******************************/

#contact section.contact .form {
    padding-right: 50px;
}
#contact section.contact .details .inner {
    border: 2px solid #d8dfea;
    border-radius: 10px;
    padding: 26px 30px 33px 30px;
    margin-bottom: 25px;
}
#contact section.contact .details h3 {
    font-size: 18px;
    margin-bottom: 11px;
}
#contact section.contact .details a {
    word-wrap: break-word;
}
#contact section.contact .details p {
    font-weight: 500;
    color: #333333;
    font-size: 18px;
}
#contact section.contact .details p strong,
#contact section.contact .details p strong a{
    color: #e95625;
}

#contact .valid:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    right: 5px;
    color: #38b138;
}

#contact .valid {
    position: relative;
}

#contact .valid input, .valid textarea {
    border-color: #38b138;
}

/*** SUPPORT ******************************/

#support section.helpsupport {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
#support section.helpsupport .posts {
    margin-bottom: 0;
}
#support section.helpsupport .posts .post {
    border-color: #fff;
    margin-bottom: 30px;
}
#support section.helpsupport .posts .post .content {
    /*border: 1px solid #eee;*/
    /*border-top: none;*/
    background-color: #f3f7fd;
}
#support section.helpsupport .posts .post .content .button {
    background-color: #e95625;
    border: 0;
    color: white;
    padding: 15px 30px;
}

#supportPost section.post {
    border-bottom: 1px solid #eee;
}
#supportPost section.post h1 {
    margin-bottom: 30px;
}

#support section.subscribe,
#supportPost section.subscribe {
    background-color: #d8dfeb;
}

#supportPost img.aligncenter {
    display: block;
    margin: 0 auto;
}

#supportPost .content a {
    color: #e95625;
    font-weight: 400;
    text-decoration: underline;
}

#supportPost .content {
    text-align: left;
}

#supportPost .content > p, #supportPost .content > h2 {
    text-align: left;
}

#supportPost .content p,
#supportPost .content ul li {
    font-weight: 400;
}

#supportPost .content h2,
#supportPost .content p,
#supportPost .content ul li {
    font-family: 'Muli', 'Lato', sans-serif;
}

#supportPost h3 + p,
#supportPost h2 + p {
    margin-top: 0;
    margin-bottom: 20px;
}

#supportPost h2 {
    margin-bottom: 0 !important;
}

#supportPost .content ol,
#supportPost .content ul {
    font-weight: 200;
    line-height: 1.6;
}

/***** Claims *****/

#claims table td:last-child > a.button {
    padding: 4px 8px;
    font-size: 13px;
    height: 30px;
    line-height: 20px;
    min-height: 30px;
}

/***** FAQ *****/
/*
#faq section.faqs .questions .question h3:after{
    display: none;
}

#faq section.faqs .questions .question h3{
    cursor: text;
}
*/

#faq h1 {
    text-align: center;
    margin-bottom: 0px;
    font-size: 25px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.2px;
    color: #121f48;
    line-height: 40px;
}

/***** Reviews *****/

#reviews section.reviews {
    padding-top: 30px;
    margin-bottom: 30px;
}

#reviews section.reviews .trustpilot {
    display: none;
}

#reviews h1 {
    margin-bottom: 30px;
}

#reviews section.testimonials {
    background-color: #f2f4f5;
}
#reviews section.testimonials .trustpilot-widget {
    background-color: #fff;
    padding: 20px;
}
#reviews section.testimonials .paging {
    padding-bottom: 0;
}

#reviews section.testimonials .testimonial h2,
#reviews section.testimonials .testimonial p {
    text-align: left;
    margin-bottom: 0px;
}

#reviews section.testimonials .testimonial h2 {
    margin-bottom: 0;
    display: block;
    line-height: 26px;
    font-size: 17px;
    color: #4a4a4a;
}

#reviews section.testimonials h2+p {
    margin-top: 0px;
}

#reviews section.testimonials .reviews .heading {
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #e2e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#reviews section.testimonials .reviews .heading h3 {
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 0;
    display: inline-block;
    vertical-align:  middle;
}
#reviews section.testimonials .reviews .heading img {
    display: inline-block;
    margin-left: 6px;
    height: 32px;
    vertical-align:  middle;
}
#reviews section.testimonials .reviews .inner {
    background-color: #fafafa;
    padding: 20px;
}
#reviews section.testimonials .testimonial {
    margin-bottom: 9px;
    /* border-bottom: 1px solid #d8dfea; */
    padding: 18px;
    background-color: white;
    border-radius: 5px;
    border-bottom: 1px solid #e2e0e0;
}

#reviews section.testimonials .testimonial strong {
    font-size: 17px;
    color: #121f48;
    display: inline-block;
    text-align: right;
    width: 50px;
    float: right;
    position: absolute;
    top: 0px;
    right: 0;
}

#reviews section.testimonials .testimonial div[itemprop="author"] {
    display: inline-block;
    vertical-align: middle;
}

#reviews section.testimonials .testimonial .stars {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
}
#reviews section.testimonials .testimonial .stars img {
    display: inline-block;
    height: 18px;
}
#reviews section.testimonials .testimonial .verified {
    padding: 5px 9px 5px 9px;
    background-color: #1bd172;
    margin-top: 0;
    border: medium none;
    box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
    background: linear-gradient(to right, #32c985 0, #3db992 100%) #1bd172;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    vertical-align: top;
    line-height: 14px;
    color: #ffffff;
    border-radius: 4px;
    margin-left: 5px;
}
#reviews section.testimonials .testimonial .verified i.fa {
    color: #1bd172;
    border-radius: 50%;
    background-color: #fff;
    font-size: 9px;
    height: 10px;
    width: 10px;
    display:  inline-block;
    vertical-align:  middle;
    padding: 0px 0 2px 1px;
    margin-right: 3px;
    position:  relative;
    top: -0.3px;
}
#reviews section.testimonials .testimonial time[itemprop="datePublished"] {
    display: block;
    text-align: right;
    margin-top: 3px;
    font-size: 13.4px;
    color: #6f6f6f;
}
#reviews section.testimonials .testimonial p[itemprop="description"] {
    /* width: calc(100% - 130px); */
    font-weight: 400;
    color: #2f2f2f;
    font-size: 13.8px;
}

#reviews section.testimonials .testimonial div[itemprop="reviewRating"] {
    position: relative;
    margin-top: 6px;
}

#reviews section.testimonials .testimonial div[itemprop="itemReviewed"],
#reviews section.testimonials .testimonial div[itemprop="reviewRating"] > strong {
    display: none;
}

/***** Notifications *****/

body#notifications .notification h2 {
    font-size: 1.2em;
    margin-bottom: 5px;
    line-height: 1.2em;
}

body#notifications .notification h2 > span {
    float: right;
    font-size: 0.7em;
    color: #364063;
    font-weight: 100;
}

body#notifications .notification {
    padding-bottom: 20px;
    border-bottom: 1px solid #d8dfea;
    margin-bottom: 20px;
}

body#notifications .notification p {
    margin-bottom: 0;
    font-size: 1em;
}

body#notifications .notification p a {
    border-bottom: 1px dashed #3794de;
    color: #3794de;
}

body#notifications section.paging {
    padding: 0;
}

body#notifications section.paging nav.pagination {
    background-color: white;
    padding: 0;
    margin-top: 50px;
    margin-bottom: 0;
}

body#notifications section.paging nav.pagination ul {
    text-align: right;
    display: block;
    width: 100%;
}

body#notifications section.paging nav.pagination ul > li {
    display: inline-block;
}

body#notifications section.paging nav.pagination ul > li a:before {
    content: unset;
}

body#notifications section.paging nav.pagination ul > li a {
    border-radius: 3px;
    display: inline-block;
    padding: 8px 12px;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid #0000;
    font-size: 14px;
    border: 1px solid #e0e1e1;
}

/* EMAILS */

body#emails section.paging nav.pagination {
    background-color: white;
    padding: 0;
    margin-top: 50px;
    margin-bottom: 0;
}

body#emails section.paging nav.pagination ul {
    text-align: right;
    display: block;
    width: 100%;
}

body#emails section.paging nav.pagination ul > li {
    display: inline-block;
}

body#emails section.paging nav.pagination ul > li a:before {
    content: unset;
}

body#emails section.paging nav.pagination ul > li a {
    border-radius: 3px;
    display: inline-block;
    padding: 8px 12px;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid #0000;
    font-size: 14px;
    border: 1px solid #e0e1e1;
}

#email-modal h2.title {
    font-size: 1.25em;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0dfdf;
}

#email-modal .modal-content {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 45px);
    margin: 0 -15px;
}

section#email-modal.overlay.black > .modal {
    max-width: 768px;
    width: 98%;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    top: 150px;
    max-height: calc(100% - 210px);
    height: 100%;
    left: 50%;
    transform: translate(-50%, 0);
}

#email-modal .modal-content a {border-bottom: 1px dashed #3794de;color: #3794de;}

section#email-modal .modal-content h2+p {
    margin-bottom: 20px;
    font-size: 16.6px;
    text-align: left;
}

section#email-modal .modal-content h2 {
    text-align: left;
    font-size: 1.1em;
    margin: 0 0 40px;
}

/* END EMAILS */

/*** SLIDEWINDOW ******************************/

#slideWindow {
    position: fixed;
    top: 0;
    height: 100%;
    right: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    pointer-events: none;
}
#slideWindow .inner {
    background-color: #fff;
    padding: 20px 22px;
    position: absolute;
    top: 0;
    width: 88%;
    height: 100%;
    bottom: 0;
    left: 100%;
    transition: left linear .14s;
    z-index: 10;
    overflow: auto;
}
#slideWindow .inner .closePanel {
    margin-bottom: 18px;
    cursor: pointer;
}
#slideWindow .inner .closePanel span.caret {
    font-size: 33px;
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 18px;
    position: relative;
    left: -13px;
    top: -11px;
    color: #e95625;
}
#slideWindow .inner .closePanel strong {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    color: #e95625;
}
#slideWindow .closeOverlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
    cursor: pointer;
}

#slideWindow .inner .content {
    /*overflow: auto;*/
}
#slideWindow .inner .content section {
    padding: 0;
}
#slideWindow .inner .content h2,
#slideWindow .inner .content section h2 {
    margin-bottom: 20px;
    text-align: left;
    font-size: 22px;
}
#slideWindow .inner .content ul li {
    margin-bottom: 10px;
}
#slideWindow .inner .content section .wrapper {
    max-width: 100%;
}
#slideWindow .inner .content section.notincluded {
    background: none;
}
#slideWindow .inner .content section.whatsincluded .item {
    padding: 0;
}
#slideWindow .inner .content section.whatsincluded .item span.icon {
    display: none;
}
#slideWindow .inner .content section.notincluded .downloads {
    margin-top: 10px;
    padding: 20px 0;
}
#slideWindow .inner .content section.reviews {
    background: none;
    text-align: left;
}
#slideWindow .inner .content section.reviews .review p.quote {
    padding: 0;
    text-align: left;
}
#slideWindow .inner .content section.reviews .review .image {
    display: none;
}
#slideWindow .inner .content section.reviews .disabled {
    display: none;
}
#slideWindow .inner .content .faqContainer h2 {
    display: block !important;
}
#slideWindow .inner .content .faqContainer h2 a {
    display: none !important;
}
#slideWindow .inner .content .faqContainer .question {
    margin-bottom: 16px;
    display: block !important;
}
#slideWindow .inner .content .faqContainer .question h3 {
    font-size: 19px;
    margin-bottom: 12px;
}
#slideWindow .inner .content .faqContainer .show-more-faqs {
    /*display: none;*/
}

body.slideWindow #slideWindow {
    pointer-events: initial;
}
body.slideWindow #slideWindow .inner {
    left: 12%;
}
body.slideWindow #slideWindow .closeOverlay {
    background-color: #121f49b3;
}

/***** Voucher Input *****/

label.voucher:after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 17px;
    font-family: 'FontAwesome';
}

label.voucher {
    position: relative;
}

label.voucher.invalid:after {
    color: red;
    content: '\f00d';
}

label.voucher.invalid input {
    border-color: red;
}

label.voucher.valid:after {
    content: '\f00c';
    color: #008a51;
}

label.voucher.valid input {
    border-color: #008a51;
}

label.voucher.wait:after {
    content: '\f110';
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

/***** END Voucher Input *****/

/***** Blog Category Sidebar *****/

section.helpsupport .col.col-3.categories,
section.helpsupportpost .col.col-3 > .categories {
    background-color: #f3f7fd;
    padding: 20px 10px;
    margin-bottom: 40px;
    display: inline-table;
}

section.helpsupportpost .col.col-3 > .categories {
    width: 100%;
}

section.helpsupport .col.col-3.categories ul,
section.helpsupportpost .col.col-3 > .categories ul {
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

section.helpsupport .col.col-3.categories ul li a,
section.helpsupportpost .col.col-3 > .categories ul li a {
    display: block;
    padding: 10px 0;
}

section.helpsupport .col.col-3.categories h2,
section.helpsupportpost .col.col-3 > .categories h2 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

section.helpsupport .col.col-3.categories ul li a:hover,
section.helpsupportpost .col.col-3 > .categories ul li a:hover {
    text-decoration: underline;
}

/***** END Blog Category Sidebar *****/

/*** FOOTER ******************************/

footer {
    background-color: #121f48;
    padding-top: 80px;
    text-align: center;
}

footer a.logo {
    height: 34px;
    display: block;
    /* margin-bottom: 67px; */
}

footer a.logo img {
    display: inline-block;
    max-height: 100%;
}

footer nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

footer .reviews {
    margin-bottom: 50px;
    margin-top: -15px;
}
footer .reviews img {
    display: inline-block;
}
footer .reviews strong {
    display: block;
    color: #fff;
    margin-top: 8px;
    font-size: 17px;
}
footer p {
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    margin-bottom: 9px;
}
footer p a,
footer p a:visited,
footer p a:hover {
    color: #fff;
    display: inline-block;
    border-bottom: 1px solid #ffffff80;
}

footer .social-icons a,
footer .social-icons a:hover {
    display: inline-block;
    width: 35px;
    font-size: 22px;
    border: none;
}

footer nav ul {
    text-align: left;
}
footer nav ul li {
    margin-bottom: 15px;
    display: block;
}
footer nav ul li strong {
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    display: block;
    letter-spacing: 0.9px;
}
footer nav ul li a, footer nav ul li a:visited, footer nav ul li:hover a {
    color: #fff;
    display: block;
}
footer .bottom {
    background-color: #0c1531;
    padding: 40px 20px;
    text-align: center;
    margin-top: 80px;
    font-size: 0.9em;
}
footer .bottom p {
    color: #fff;
    font-size: 16px;
}

.sub-form .error {
    display: block;
    font-size: 0.8em;
    margin-top: 5px;
}

.profile-error.error,
.appliance-cover.error {
    margin-top: -10px;
    padding: 8px 10px;
    background-color: #d8dfea;
    color: #121f48;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.profile-error.error a {
    text-decoration: underline;
}

.profile-error.error a:hover {
    color: #e95625;
}

#makeClaim form button.disabled,
#makeClaim form .button.save.disabled {
    background-color: #d3d3d3;
    color: #808080;
    cursor: not-allowed;
}

/***** Modals *****/

section.overlay.black {
    background: rgba(0, 0, 0, .6);
}

section.overlay.black > .modal {
    max-width: 768px;
    width: 98%;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
}

section.overlay.black > .modal > h2 {
    margin-bottom: 0px;
}

section.overlay.black > .modal > h2 + p {
    margin-top: 0;
    margin-bottom: 15px;
}

section.overlay.black > .modal button {
    margin-top: 28px;
    max-height: 49px;
    line-height: 1;
    width: 100%;
}

section.account.register .row+h3+p {
    margin-bottom: 20px;
    margin-top: -10px;
    font-size: 0.9em;
}

section.account.register .row+h3+p:before {
    content: '\f05a';
    font-family: 'FontAwesome';
    margin-right: 6px;
}

section form.form .terms {
    background-color: #fbfbfb;
    border: 1px solid #b8babc;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
}
section form.form .terms .inner {
    height: 240px;
    overflow: auto;
    padding: 14px;
}

section form.form .terms .inner p+ol.alpha {
    list-style-type: upper-alpha;
    margin-left: 50px;
}
section form.form .terms .inner p+ol, section form.form .terms .inner p+ul {
    margin-top: -10px;
}
section form.form .terms .inner ol, section form.form .terms .inner ul {
    font-weight: 300;
    line-height: 1.4em;
    margin-bottom: 20px;
    font-size: 16.6px;
}

label.file-input {
    width: 100%;
    background-color: #d8dfeb;
    color: #122048;
    border-radius: 10px;
    transition: all 0.2s linear;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 15px;
    padding: 7px 23px 7px 23px;
    white-space: nowrap;
    cursor: pointer;
    margin-top: 4px;
}

label.file-input:hover {
    background-color: #d0d7e4;
}

label.file-input:before {
    content: 'Choose a File...';
}

#calloutPolicy .content {
    margin: 20px 0 40px 0;
}

#calloutPolicy label {
    display: inline-block;
}

#calloutPolicy button.cancel {
    background-color: lightgrey;
    color: #fff;
    transition: all .2s linear;
}

#calloutPolicy button.cancel:hover {
    background-color: #cecece;
    /* color: #d3d3d3; */
}

#calloutPolicy ul li {
    line-height: 1.2;
    font-weight: 300;
    padding: 3px 0;
}

#calloutPolicy p.error {
    font-weight: 400;
    font-size: 0.9em;
    padding-left: 20px;
}

#calloutPolicy input[type="checkbox"] {
    position: relative;
    top: -2px;
}

#viewClaim .answer strong {
    display: block;
    color: #797979;
    margin-bottom: 5px;
}

#viewClaim .answer {
    margin-bottom: 20px;
}

#viewClaim .answer span {
    color: #797979;
    font-weight: 400;
}

#viewClaim .answer {
    padding: 8px 10px;
    border-left: 1px solid #e95625;
    background-color: #f3f7fd;
    background: #f3f7fd;
}

#viewClaim .answer + .form-item {
    margin-top: 30px;
}

#viewClaim .form-item + .answer {
    margin-top: 30px;
}

#viewClaim .uploaded-files {
    padding: 10px 20px 20px 20px;
    background-color: #f3f7fd;
    margin-bottom: 20px;
}

#viewClaim .uploaded-files h2 {
    font-size: 1.2em;
}

#viewClaim .uploaded-files .uploaded-file strong {
    display: block;
    margin-bottom: 5px;
}

#viewClaim .uploaded-files .uploaded-file {
    font-size: 0.8em;
}

#viewClaim .uploaded-files .uploaded-file + .uploaded-file {
    margin-top: 20px;
}

#viewClaim .uploaded-files .uploaded-file span.accepted {
    color: #079c00;
}

#viewClaim .uploaded-files .uploaded-file span.rejected {
    color: #c70000;
}

#viewClaim .status {
    position: relative;
    margin-bottom: 20px;
}

#viewClaim p.claimStatus {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0;
}

#viewClaim p.claimStatus span {
    font-weight: normal;
}

#viewClaim .status a.button.small {
    position: absolute;
    top: 0;
    right: 0;
    height: 33px;
    min-height: unset;
    line-height: 19px;
}

#viewClaim .info {
    padding: 10px;
    margin-top: 20px;
    border: 1px solid #d8dfea;
    background-color: #f3f7fd;
    margin-bottom: 30px;
    font-size: 0.9em;
    border-radius: 3px;
}

#viewClaim .info.warn {
    background-color: #d2a41f;
    color: white;
    border-color: #d2a41f;
}

#viewClaim .info.good {
    background-color: #699c1c;
    color: white;
    border-color: #699c1c;
}

#viewClaim .info.bad {
    background-color: #b13c3c;
    color: white;
    border-color: #b13c3c;
}

#viewClaim .info p {
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 0px;
}

#viewClaim .info h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 0;
}

/*.sub-form .form-item.upload {
    background-color:#f3f7fd;
    width: 50%;
    border-radius:6px;
    border: 1px solid #bbbbbb;
    padding:10px;

}*/

#claims .callout-policy-text {
    border-left: 3px solid #121f48;
    padding-left: 20px;
    margin-bottom: 30px;
}

#claims .callout-terms {
    font-size: 1.2em;
    font-weight: bold;
}

#claims input.error {
    box-shadow: 0px 1px 7px #f00;
}

#upload section.account {
    padding-top: 0;
}

#upload .form-item label:first-child {
    font-weight: bold;
    color: #121f48;
    margin-bottom: 10px;
}

#upload .form-item {
    margin: 40px 0;
}

.form-item label.file-upload {
    background-color: #d8dfea;
    color: #121f48;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.form-item label.file-upload input[type="file"] {
    display: none;
}

.form-item label.file-upload + span {
    color: #575858;
    height: 20px;
    font-size: 0.9em;
    padding-left: 10px;
}

.form-item label.error {
    color: #f00;
}

div.proof-info {
    border: 1px solid #d8dfea;
    background-color: #f3f7fd;
    padding: 10px;
    color: #121f48;
    font-weight: 400;
    font-size: 0.93em;
    line-height: 1.2em;
    margin-bottom: 15px;
}

div.proof-info:before {
    content: '\f05a';
    font-family: 'FontAwesome';
    margin-right: 7px;
}

div.proof-info p.title {
    display: inline-block;
    font-weight: bold;
    font-size: 0.99em;
}

div.proof-info p {
    font-size: 0.9em;
    margin-bottom: 9px;
}

div.proof-info p:last-child {
    margin-bottom: 0;
}

.dont-have input[type="checkbox"] {
    margin-top: 0;
}

.dont-have input[type="checkbox"] + label {
    top: 0 !important;
    font-weight: bold;
    color: #121f48;
    margin-left: 5px;
    display: inline-block;
}

.dont-have.padded {
    padding: 20px 0;
}

.form-item.upload {
    border-top: 1px solid #d8dfea;
    border-bottom: 1px solid #d8dfea;
    padding-top: 20px;
    padding-bottom: 20px;
}

.form-item.upload .proof-info {
    margin-top: 15px;
}

#claim-modal .modal .modal-content > p {
    text-align: left;
    margin-bottom: 5px;
}

#claim-modal .modal h2 {
    margin-bottom: 10px;
}

#claim-modal .modal .close {
    cursor: pointer;
}

/* Support Tickets */

.button.lightblue {
    background-color: #d8dfea;
    color: #121f48;
    padding: 10px 15px;
}

.button.lightblue > i {position: relative;top: -0.5px;left: -2px;}

p.ticket-title {
    font-size: 1.2em;
    margin: 20px 0;
}

.comments {
    max-height: 500px;
    overflow-y: scroll;
    padding: 20px;
}

.comment {
    padding: 20px;
    margin-top: 20px;
    background-color: #f3f7fd;
    color: #122048;
    max-width: 75%;
    position: relative;
    font-size: 1em;
    line-height: 1.45em;
    border-radius: 6px;
}

.comment.tick:before {
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    bottom: -20px;
}

.comment.user {
    background-color: #122048;
    color: #fff;
    margin-left: 25%;
}

.comment.user.tick {
    border-bottom-right-radius: 0;
}

.comment.staff.tick {
    border-bottom-left-radius: 0;
}

.comment.user.tick:before {
    right: 0;
    border-top: 20px solid #122048;
    border-left: 30px solid #0000;
}

.comment.staff.tick:before {
    left: 0;
    border-top: 20px solid #f3f7fd;
    border-right: 30px solid #0000;
}

.comment.user + .comment.user,
.comment.staff + .comment.staff {
    margin-top: 10px;
}

.comment > span {
    display: block;
    font-size: 0.75em;
    text-align: right;
    margin-top: 10px;
}

#editTicket .log {
    padding: 10px;
    margin: 30px 0;
    background-color: #d8dfea;
    color: #122048;
    width: 100%;
    position: relative;
    font-size: 1em;
    line-height: 1.45em;
    border-radius: 6px;
}

.log > span {
    float: right;
    font-size: 0.75em;
    text-align: right;
    margin-top: 4px;
}

/* END Support Tickets */

/* User Info Message */

section.user-info {
    padding: 20px 0px 2px 0;
    background-color: #d8dfea;
}

section.user-info .wrapper {
    background-color: #3e9c3e;
}

section.user-info.good .wrapper {
    padding: 15px 15px 15px 18px;
    background-color: #3e9c3e;
    border-radius: 3px;
    margin-bottom: 20px;
}

section.user-info.bad .wrapper {
    background-color: #9c3e53;
}

section.user-info h2, section.user-info p {
    color: white;
}

section.user-info h2+p {
    margin: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
}

section.user-info h2 {
    text-align: left;
    margin-bottom: 7px;
}

.button.red {
    background-color: #ce0f0f;
}

/* END User Info Message */

/* New Cancel Claim Model */

#cancel-claim-modal h2 {
    margin-bottom: 20px;
}

#cancel-claim-modal .button,
#cancel-claim-modal button {
    width: 49.7%;
    padding: 10px;
    height: 40px;
    line-height: 19px;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
}

#cancel-claim-modal button.red {
    background-color: #ce0f0f;
}

#cancel-claim-modal textarea {
    height: unset;
    margin-top: 5px;
}

#cancel-claim-modal label {
    font-weight: bold;
    color: #121f48;
    margin-bottom: 0;
}

#cancel-claim-modal .close {
    cursor: pointer;
}

.cancel-error {
    margin: -35px;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    background-color: #ce0f0f;
    color: white;
}

/* END New Cancel Claim Model */

#feedback {
    background-image: linear-gradient(to right top, #2872cf, #4b6fd4, #676cd6, #8066d6, #9860d4, #b75ac8, #cf56ba, #e255aa, #f26192, #f7757f, #f48a74, #ed9f72);
    background-attachment: fixed;
}
#feedback header {
    padding: 30px 30px 0 30px;
    text-align: center;
}
#feedback header .logo {
    height: 70px;
    display: block;
}
#feedback header .logo img {
    max-height: 100%;
}
#feedback p {
    font-weight: 400;
    font-size: 19px;
}
#feedback section {
    text-align: center;
}
#feedback section .wrapper {
    width: 800px;
}
#feedback section .rating-container {
    padding: 40px;
    margin-top: 40px;
    background-color: #f1f6fd;
    border-radius: 15px;
}
#feedback section .rating-container p {
}
#feedback section .rating-container .rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}
#feedback section .rating-container .rating a {
    display: inline-block;
    padding: 12px 19px;
    background-color: #2872cf;
    margin: 0 2px;
    color: white;
    border-radius: 2px;
    font-size: 22px;
}
#feedback section .rating-container .rating a:hover {
    background-color: #cf56ba;
}
#feedback button, .button {
    background-color: #2872cf;
}
#feedback button:hover, .button:hover {
    background-color: #2872cf;
}
#feedback section .rating-container .scale {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#feedback section.form {
    background-color: #f1f6fd;
    width: 800px;
    border-radius: 15px;
    margin: 0 auto;
}
#feedback section.direct .wrapper {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#feedback section.direct p {
    margin-bottom: 0;
}
#feedback section.direct .button {
    white-space: nowrap;
    margin-left: 20px;
}
#feedback section.links {
    background-color: #f1f6fd;
    width: 800px;
    border-radius: 15px;
    margin: 0 auto;
}
#feedback section.links a {
    display: block;
}
#feedback section.links a .image {
    height: 80px;
    display: block;
    margin-bottom: 20px;
}
#feedback section.links a .image img {
    max-height: 100%;
}
#feedback section.links a.trustpilot .image {
    position: relative;
    top: -9px;
}

/* Blog Article Changes */

.helpsupportpost .breadcrumbs {
    background-color: #f3f7fd;
    padding: 23px 20px;
    height: 58px;
    margin: 0px 0 15px 0;
}

.helpsupportpost .breadcrumbs ul {
    list-style: none;
    margin: 0;
}

 .helpsupportpost .breadcrumbs ul > li:last-child {
    padding-left:10px
}

.breadcrumbs li:last-child {
    overflow: hidden;
    color: #e95625;
}

.breadcrumbs li {
    white-space: nowrap;
    text-overflow: ellipsis;
}

#supportPost .content h1 {
    font-family: 'Muli', 'Lato', sans-serif;
    font-size: 30px;
    text-align: left;
    margin-bottom: 20px;
}

#supportPost .content h2 {
    font-family: 'Muli', 'Lato', sans-serif;
    padding: 10px;
    color: #fff !important;
    background-color: #e95625;
    font-size: 24px !important;
    margin-bottom: 15px !important;
}

#supportPost .content h3 {
    font-family: 'Muli', 'Lato', sans-serif;
    /*margin-top: 32px;*/
}

#supportPost .content h2, #supportPost .content p, #supportPost .content ul li {
    font-family: 'Muli', 'Lato', sans-serif;
    color: #000;
    line-height: 2em;
    font-size: 17px;
}

section.helpsupportpost {
    padding-top: 20px;
}

section.helpsupportpost .content img.main-image {
    width: 100%;
    margin-bottom: 15px;
}

section.helpsupportpost .col.col-3 > .categories {
    margin-bottom: 20px;
}

section.helpsupportpost .categories ul {
    margin-left: 0;
    padding: 10px;
}

section.helpsupportpost .col.col-3 > .categories h2 {
    text-align: left;
    padding-left: 10px;
}

section.helpsupportpost .categories.recent ul .image {
    margin-bottom: 5px;
}

section.helpsupportpost .cta .button {
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 15px;
}

#support section.helpsupport .posts .post h4 {
    margin: 0;
    padding: 10px;
    background-color: #121f48;
    color: white;
    font-size: 1em;
}

#support section.helpsupport h1 {
padding: 5px;
    background-color: #121f48;
    color: white;
    margin-top: 30px;
    margin-bottom: 0;
}

#support section.helpsupport h1 + p {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f3f7fd;
    color: #121f48;
}

#support section.helpsupport .categories ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
    padding: 30px 15px;
}

#support section.helpsupport .categories {
    padding: 0;
    background-color: #f3f7fd;
    margin-bottom: 40px;
}

#support section.helpsupport .categories ul li {
    display: inline-block;
    margin-right: 14px;
}

#support section.helpsupport .categories h2 {
    margin-bottom: 0;
    background-color: #121f48;
    color: white;
    font-size: 20px;
}

#support section.helpsupport .categories ul li a {
    background-color: #121f48;
    color: white;
    padding: 10px;
    border-radius: 4px;
}

#support section.helpsupport .categories ul li a.active {
    background-color: #e95625;
}
/* END Blog Article Changes */

/* New Hero */

section.hero-with-ratings {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 500px;
    padding-bottom: 108px;
    display: flex;
    align-items: center;
}

section.hero-with-ratings.offer {
    padding: 0;
}

section.hero-with-ratings span.terms {
    position: absolute;
    bottom: 150px;
    color: #ffffff;
    text-align: center;
    width: 100%;
    font-size: 14px;
    padding: 0 20px;
    line-height: 1.3;
    /* text-shadow: 1px 1px rgb(255,255,255,0.3); */
}
section.hero-with-ratings span.terms.hide-sm {
    bottom: 85px;
}

section.hero-with-ratings .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

section.hero-with-ratings > .wrapper {
    position: relative;
}

section.hero-with-ratings > .wrapper .google-badge {
    background-color: white;
    position: absolute;
    z-index: 1;
    top: 40px;
    padding: 20px 20px 14px 20px;
    border-radius: 12px;
    width: 190px;
}

section.hero-with-ratings > .wrapper .google-badge img {
    width: 60px;
    height: 60px;
    display: inline-block;
}

section.hero-with-ratings > .wrapper .google-badge p {
    display: inline-block;
    width: 75px;
    margin-left: 10px;
    font-weight: 500;
    font-size: 0.8em;
    position: relative;
    top: -10px;
}

section.hero-with-ratings > .wrapper .content {
    padding-top: 0;
    /* min-height: 510px; */
    /* max-width: 556px; */
    margin: 0 auto;
}

section.hero-with-ratings.offer > .wrapper .content {
    /* padding-top: 40px; */
}

section.hero-with-ratings > .wrapper .content h1 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 0px;
    line-height: 1.05;
    /* text-shadow: 0 0 30px rgba(0, 0, 0, 0.37); */
    width: 500px;
    margin: 0 auto 12px auto;
    max-width: 100%;
}

section.hero-with-ratings > .wrapper .content p {
    color: #fff;
    font-size: 28px;
    font-weight: normal;
    max-width: 615px;
    margin: 0px auto 20px auto;
    /* text-shadow: 0 0 30px rgba(0, 0, 0, 0.37); */
}

section.hero-with-ratings .buttons a {
    margin: 0 5px;
}

section.hero-with-ratings .inner {
    /* margin-bottom: 190px; */
}

section.hero-with-ratings .google-widget {
    position: absolute;
    bottom: 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, .7);
    z-index: 2;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

section.hero-with-ratings .google-widget > span {
    position: relative;
    /* display: inline-block; */
    /* vertical-align: middle; */
}

section.hero-with-ratings .google-widget > .google-logo img {
    max-height: 25px;
}

section.hero-with-ratings .google-widget > .google-logo {
    top: 2px;
    /* display: inline-block; */
    /* vertical-align: middle; */
}

section.hero-with-ratings .google-widget > .rating {
    font-size: 1.3em;
    font-weight: bold;
    /* top: -8px; */
    color: #e95626;
    margin: 0 20px;
    /* display: inline; */
    vertical-align: midle;
}

section.hero-with-ratings .google-widget > .stars {
    top: 0;
    margin-right: 20px;
    /* display: inline-block; */
}

section.hero-with-ratings .google-widget > .stars img {
    display: inline-block;
    width: 35px;
}

section.hero-with-ratings .google-widget > .review-count {
    font-size: 1.3em;
    font-weight: bold;
    /* top: -8px; */
}

/* Pricing Page Override */
#pricing section.hero-with-ratings > .wrapper .content h1{
    font-size: 50px;
    width: 510px;
    margin: 0 auto 5px auto;
    max-width: 100%;
}

#pricing section.hero-with-ratings.offer > .wrapper .content h1,
section.hero-with-ratings.offer .inner p {
    /* color: #ffffff; */
}

#pricing section.hero-with-ratings.offer > .wrapper .content h1 > span {
    /* color: #e95625; */
}

section.hero-with-ratings.offer .inner p > span {
    /* color: #e95625; */
}

/* END New Hero */

/* Pricing Table */

.pricing.table {
    width: 100%;
}

.pricing.table {
    table-layout: fixed;
}

.pricing.table thead tr th:first-child,
.pricing.table tbody tr td:first-child {
    width: 300px;
}

.pricing.table .picker.excess {
    margin-bottom: 10px;
}

.pricing.table thead tr:first-child {
    background-color: #122048;
    color: white;
}

.pricing.table thead tr:first-child th:first-child{
    background-color: #e1e1e1;
}

.pricing.table thead tr:nth-child(2) th:first-child {
    border-top: 1px solid #e1e1e1;
}

.pricing.table thead tr th, #pricing section.scrollHeader .product {
    border-right: 1px solid #e1f0f9;
    vertical-align: top;
}

.pricing.table tr td.icon {
    position: relative;
}

.pricing.table thead th[rowspan] {
    border-bottom-color: #d4d4d4;
    border-right-color: #d4d4d4;
}

.pricing.table tbody td.icon,
.plans-table .features .col-12 {
    border-color: #d4d4d4;
}
/*
.pricing.table tbody td.icon > a,
.plans-table .features .col-12 > a {

} */

.pricing.table tbody td.icon i,
.plans-table .features .col-12 i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    padding: 3px;
    color: #e95626;
    cursor: pointer;
}

.plans-table .features .col-12 {
    position: relative;
}

.pricing.table tr td.icon .icon-container {
    width: 40px;
    height: 60px;
    display: inline-block;
    text-align: center;
    position: absolute;
    left: 15px;
    top: 11px;
}

.pricing.table tr td.icon .icon-container img {
    max-width: 36px;
}

.pricing.table tr td.icon span {
    display: inline-block;
    line-height: 17px;
    font-size: 14px;
    position: absolute;
    left: 70px;
    right: 50px;
    top: 50%;
    transform: translate(0, -50%);
}

.pricing.table tr td:not(:first-child) img {
    margin: 5px 0;
}

.pricing.table thead th,
.pricing.table tbody td {
    padding: 10px;
    border: 1px solid #e0f0f9;
}

.pricing.table.landlord thead th,
.pricing.table.landlord tbody td {
    padding: 10px 11px;
}

.pricing.table tfoot th:first-child {
    border-left: 0;
    border-bottom: 0;
}

.pricing.table tfoot th {
    border: 1px solid #e1f0f9;
}

.pricing.table thead th:last-child,
.pricing.table tfoot th:last-child,
.pricing.table tbody td:last-child {
    padding-right: 10px;
}

.pricing.table thead .button, .pricing.table tfoot .button {
    white-space: nowrap;
    padding: 15px;
    width: 100%;
}

.pricing.table tbody tr:nth-child(even) {
    background-color: #eff8fc;
}

.pricing.table tbody tr:nth-child(even) td:first-child {
    background-color: #dddcdd;
}

.pricing.table tbody tr:nth-child(odd) td:first-child {
    background-color: #e1e1e1;
}

.pricing.table thead th > span {
    display: block;
}

.pricing.table thead th > span:first-child, #pricing section.scrollHeader h3 {
    font-size: 20px;
    height: 70px;
    color: white;
    line-height: 24px;
}

.pricing.table.landlord thead th > span:first-child, #pricing section.scrollHeader.landlord .products .product h3 {
    height: 90px;
}

#pricing section.scrollHeader.landlord h3 {
    /*font-size: 19px;*/
}

.pricing.table thead th > span:nth-child(2), #pricing section.scrollHeader .price {
    font-size: 20px;
    margin: 14px 0 0;
    color: #e95626;
    line-height: 24px;
    height: 24px;
}

.pricing.table thead th > span:last-child, #pricing .scrollHeader .products .product .month {
    font-size: 11px;
    line-height: 24px;
    font-weight: 700;
    height: 24px;
}

.pricing.table thead tr:first-child th.active,
#pricing .scrollHeader .products .product.active .top {
    position: relative;
}

.pricing.table thead tr:first-child th.active:after,
#pricing .scrollHeader .products .product.active .top:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 5px;
    left: 0;
    right: 0;
    background-color: #e95626;
}

.picker label {
    background-color: white;
    border: 1px solid #dddcdd;
    display: inline-block;
    margin: 0;
    text-align: center;
    padding: 14px 0;
    cursor: pointer;
}

.picker label input[type="radio"] {
    display: none;
}

.picker label:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.picker label:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.picker label.selected {
    background-color: #122048;
    /* color: #e95627; */
    color: #ffffff;
}

.picker.fixed-term {
    margin-top: -13px;
}
.picker.fixed-term label {
    width: 33.3%;
}

.picker.excess label {
    width: 50%;
}

.pricing.table tr:first-child th:first-child p {
    color: #122048;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    text-align: center;
    margin: 5px 0 12px;
}

.filter span,
.pricing.table tr:first-child th:first-child span {
    color: #122048;
    display: inline-block;
    text-align: center;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 600;
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

.pricing.table tr:first-child th:first-child span.orange {
    color: #e95626;
    text-align: center;
}

.plans-table {
    display: none;
}

.plans-table .plan .row:first-child {
    background-color: #122048;
    color: white;
    padding: 10px 20px;
}

.plans-table .plan .plan-title {
    font-size: 1.3em;
    margin-bottom: 0;
}

.plans-table .plan .plan-price {
    font-size: 2em;
    color: #e95626;
    margin-bottom: 0;
    display: inline-block;
    font-weight: bold;
}

.plans-table .plan .month {
    display: inline-block;
    margin-left: 2px;
}

.plans-table .plan .features img {
    width: 50px;
}

.plans-table .plan .features .col {
    padding: 10px;
    border: 1px solid #e1f0f9;
    border-top: 0;
}

.plans-table .plan .features span {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    vertical-align: top;
    margin-left: 10px;
}

.plans-table .plan {
    margin-bottom: 50px;
}

.plans-table .plan .buttons {
    text-align: center;
    padding: 20px 0;
    border: 1px solid #e1f0f9;
    border-top: 0;
}

.filter {
    display: none;
    background-color: #e1e2e1;
    padding: 20px 20px;
    margin-bottom: 30px;
}

.filter .excess-title {
    line-height: 1.4em;
    margin-bottom: 20px;
    color: #122048;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    text-align: center;
    margin: 5px 0 12px;
}

.filter .picker.fixed-term + span {
    color: #122048;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.1;
    font-weight: normal;
    width: 100%;
    margin-bottom: 10px;
}

.filter .picker.fixed-term {
    margin-bottom: 10px;
}

.filter .picker.excess {
    margin-bottom: 12px;
}

.filter .orange {
    display: block;
    font-size: .8em;
    color: #e95626;
    margin: 10px 0 20px 0;
}

.picker.fixed-term {
    margin-top: 0;
    position: relative;
}
.picker.fixed-term label {
    position: relative;
    z-index: 5;
}
.filter p.plus,
.pricing.table tr th:first-child p.plus {
    display: block;
    font-weight: 600;
    color: #bb3000;
    text-align: center;
    text-transform: none;
    font-size: 13px;
    margin-bottom: 10px;
}
#pricing .scrollHeader .filter .picker p.plus {
    margin-bottom: 0;
}

#pricing a.link {
    display: inline-block;
    padding-bottom: 1px;
    border-bottom: 1px solid #b9bfc9;
    color: #13529c;
}

.mm-panels>.mm-panel:not(.mm-hidden) {
    padding-top: 64px;
}

#pricing .scrollHeader .products {
    display: flex;
    padding-left: 300px;
}

#pricing .scrollHeader .products .product {
    flex: 1 1 0;
}

#pricing section.scrollHeader a.button {
    white-space: nowrap;
    padding: 15px 0;
    width: 100%;
}

#pricing section.scrollHeader .buttons {
    padding: 10px;
    background: white;
}

#pricing section.scrollHeader .buttons .button {
    margin: 0;
}

#pricing section.scrollHeader.scrolling .filter {
    display: block;
    position: absolute;
    width: 301px;
    height: 100%;
    padding: 10px;
    border-right: 1px solid #d4d4d4;
}

#pricing section.scrollHeader.scrolling .filter .col-6 {
    width: 100%;
}

#pricing .scrollHeader .filter .picker.excess {
    margin-bottom: 0;
}

#pricing .scrollHeader .filter .picker label{
    padding: 9px 0;
    line-height: 24px;
}

#pricing .scrollHeader .filter .picker + span {
    margin: 10px 0 0;
}

#pricing .scrollHeader .filter .picker.fixed-term {
    margin-bottom: 0;
    margin-top: 0;
}

header .main .responsive-phone {
    display: none;
    font-size: 18px;
    margin-left: 5px;
    color: #fff;
    background-color: #e95626;
    border-radius: 5px;
    font-weight: bold;
    padding: 0 15px;
    height: 35px;
    line-height: 33px;
}

header .main nav.menu li.extra {
    display: none;
}

#home header .main.scrolling {
    display: block;
    /*opacity: 0;*/
    /*transition: opacity 0.1s linear;*/
}

#home header .main.scrolling.show {
    /*opacity: 1;*/
}

#home header .main.scrolling li.login {
    display:inline-block;
    border: 1px solid #fff;
    border-radius: 4px;
    margin-left: 19px;
}

#home header .main.scrolling li.login a {
    margin-left:0;
}

#home header .main.scrolling li a {
    background-color: transparent;
    color: white;
    font-size: 17.5px;
    font-weight: normal;
    padding: 8px 17px;
}

#home header .main.scrolling li a .caret {
    display: none;
}

/* END Pricing Table */

section.offer {
    margin-bottom: 80px;
}

#pricing section.offer {
    margin-bottom: 0;
}

section.offer h2 {
    font-size: 42px;
    font-weight: 300;
    margin: 0 0px 10px 0;
    line-height: 1.2;
    padding: 95px 20px 0;
}

section.offer h2 > span {
    font-weight: 400;
    color: #e95625;
}

section.offer .wrapper {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: calc(100% - 100px);
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}

section.offer .defaqto {
/*    position: absolute;
    top: 20px;
    right: 20px;*/
}

section.offer p {
    font-size: 25px;
}

section.offer p.bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    transform: translate(0, 100%);
}

section.offer p.blue {
    background-color: #121f48;
    color: #fff;
    text-align: center;
}

section.offer p.blue > span {
    color: #e95625;
    font-weight: normal;
    display: inline-block;
}

section.offer.checkout {
    margin-bottom: 0;
    padding: 0;
    margin-top: 20px;
    /* border-radius: 3px; */
    /* overflow: hidden; */
}

section.offer.checkout .defaqto {
    position: absolute;
    top: initial;
    right: initial;
    bottom: 20px;
    left: 20px;
    max-width: 110px;
}

section.offer.checkout h2 {
    padding: 20px 20px 0;
    font-size: 36px;
    text-shadow: 1px 1px rgba(255, 255, 255, 0.52);
}

section.offer.checkout p {
    font-size: 20px;
}

section.offer.checkout .image {
    background-position: center -150px;
    min-height: 250px;
    background-size: 850px;
    position: relative;
}
section.offer.checkout .wrapper p{
    /* position: absolute; */
    /* bottom: -48px; */
    text-align: center;
    width: 100%;
    background-color: #e95625;
    color: #fff;
    padding: 10px;
    font-size: 23px;
}

div.offer {
    margin: 30px 0 0 15px;
}

div.offer p.text {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5px;
}

div.offer p.text > span {
    color: #e95626;
}

div.offer p.strap {
    font-size: 18px;
    font-weight: normal;
}

div.offer p.strap > strong {
    font-weight: 700;
}

section.hero-with-ratings.offer {
    /* height: 800px; */
}

section.hero-with-ratings.offer .inner {
    width: 100%;
    /* margin: 0 auto; */
    /* padding-left: 130px; */
}

section.hero-with-ratings.offer .inner h1 {
    text-align: center;
}

section.hero-with-ratings.offer .inner p {
    text-align: center;
}

section.hero-with-ratings.offer .hero-overlay {
    background-color: rgba(0, 0, 0, 0.32);
}
section.hero-with-ratings.offer .defaqto{
    width: 150px;
    top: 60px;
    right: 370px;
    transition: all 0.2s linear;
}

.blue-circle {
    background-color: #122048;
    position: absolute;
    bottom: 70px;
    left: 370px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    color: #fff;
    /* box-shadow: 3px 1px 10px 0px #0003; */
    transition: all 0.2s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-4deg);
}

.blue-circle p {
    /* height: 200px; */
    padding: 0px 17px 4px 17px;
    font-size: 19px !important;
    text-align: center;
}

.blue-circle p > strong {
    display: block;
}

.blue-circle p > span {
    display: block;
    color: #e95625;
    font-weight: bold;
}

.hero-offer h1 {
    margin-bottom:  44px;
}

.hero-offer .info .includes {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 62px);
}

.hero-offer .info .includes h4 {
    margin: 0 !important;
    font-size: 12px !important;
}

.hero-offer .info .includes .icon img {
    max-width: 100px;
    margin-bottom: -20px;
}

#product.product-new section.hero.hero-offer .info .includes .include .icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 30px;
    max-height: 30px;
}

#product.product-new section.hero.hero-offer .info .includes .include {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

#product.product-new section.hero.hero-offer .info .includes .include .icon {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    background-color: #e95625;
    width: 60px;
    height: 60px;
    margin-left: 20px;
    flex-direction: row;
}

#product.product-new section.hero.hero-offer .info .includes .include h4 {
    font-size: 16px !important;
    margin: 0px 0 0 10px !important;
}

#product.product-new section.hero.hero-offer .info .includes {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
    margin-left: 0;
    flex-direction: column;
}

p.offer-terms {
    margin: -20px 10px 30px;
    font-size: 14px;
    text-align: center;
}

#checkout p.offer-terms {
    margin-top: 10px;
}

p.offer-terms a {
    text-decoration: underline;
    color: #e95625;
}

.hero-offer p.strap {
    color: #fff;
    margin: 20px 0 0 0;
}

.offer .terms a {
    text-decoration: underline;
    color: #ffffff;
}

p.notice.offer-notice {
    padding: 10px;
    background-color: #e95625;
    color: white;
    font-size: 25px;
    text-align: center;
    margin: 30px 0 30px 0;
    font-weight: 400;
}

#addTicket label span.note {
    display: block;
    padding: 10px;
    background-color: #ed1d24;
    color: #fff;
    font-size: 0.9em;
    line-height: 1.5em;
    margin: 10px 0;
}

#product .items .item a.more-info {
    color: #e95626;
    font-size: 0.8em;
    display: block;
    margin-top: 5px;
}

span.offer-promo-code {
    background-color: #122048;
    position: relative;
    top: -7px;
    display: inline-block;
    padding: 0 10px;
    height: 30px;
    margin-right: -15px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-left: 4px;
}

span.offer-promo-code .offer-promo-code-inside{
    position: relative;
    top: 5px;
    font-size: 0.8em;
}

span.offer-promo-code  strong {
    color: #e95627;
}

.responsive-phone span.offer-promo-code {
    height: 35px;
    border: 1px solid #e95627;
    top: 0px;
    text-transform: uppercase;
    margin-right: 0;
    display: inline-flex;
    vertical-align: middle;
    line-height: 1.1;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.responsive-phone span.offer-promo-code .offer-promo-code-inside {
    top: 0;
}

img.defaqto.right {
    position: absolute;
    right: 0;
    top: 40px;
}

img.defaqto.checkout {
    margin-top: -40px;
}

#reviews .button.button-small {
    padding: 8px 25px;
    margin-top: 20px;
}

#reviews section.paging {
    padding-top: 0;
}

/* Terms Modal */

.terms-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 100;
}

.terms-overlay > .terms-modal {
    background-color: #fff;
    border-radius: 5px;
    max-width: 700px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
}

.terms-overlay > .terms-modal .modal-body .scroller {
    padding: 20px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    height: 300px;
}

.terms-overlay > .terms-modal .modal-body {
    padding: 0;
    border-bottom: 1px solid #f8f8f8;
    overflow: hidden;
    position: relative;
}

.terms-overlay > .terms-modal .modal-body h2 {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 5px;
}

.terms-overlay > .terms-modal .modal-header {
    padding: 20px;
    height: 58px;
}

.terms-overlay .row > .col {
    height: 62px;
}

.terms-overlay .terms-modal button {
    padding: 10px 15px;
    background-color: #1f8c21;
    margin: 10px;
}

/* END Terms Modal */

/* Invoices */

#invoices table td {
    font-size: 12px;
    padding: .25rem;
}

/* END Invoices */

/* UserPortal Pagination */

section.user-portal.paging {
	padding: 0;
    position: relative;
}

section.user-portal.paging nav.pagination {
	background: unset;
	margin: 0;
	padding: 0;
}

section.user-portal.paging nav.pagination > .wrapper {
	margin: 0;
	max-width: unset;
	width: 100%;
}

section.user-portal.paging nav.pagination > .wrapper ul {
    justify-content: flex-end;
}

section.user-portal.paging nav.pagination li > span, section.user-portal.paging nav.pagination li > a {
	font-size: 14px;
	padding: 8px 12px;
	border: 1px solid #d8dfea;
	margin-left: 5px;
	cursor: pointer;
	user-select: none;
}

section.user-portal.paging nav.pagination li.active > span {
	color: #e95625;
}

section.user-portal.paging nav.pagination li.disabled > span {
	opacity: 0.5;
	cursor: not-allowed;
}

section.user-portal.paging nav.pagination li > a:before {
	content: unset;
}

/* END UserPortal Pagination */

footer p.defaqto-info {
    font-size: 12px;
    margin: 30px 0 40px;
}

#checkout .offer-box {
    margin: -30px -21px 30px -21px;
    background: #e95625;
    color: white;
    padding: 10px 21px;
    font-weight: bold;
    font-family: sans-serif;
}

#checkout .miniSummary .offer-box {
    margin: 20px -21px -21px -21px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


/*
Tipr 4.1
Copyright (c) 2019 Tipue
Tipr is released under the MIT License
http://www.tipue.com/tipr
*/

.tipr_content
{
    color: #555;
    background-color: #fff;
    padding: 6px 13px 7px 13px;
    border-radius: 3px;
}
.tipr_container_below
{
     display: none;
     position: absolute;
     margin-top: 13px;
     z-index: 1000;
     box-shadow: 0 0 1px 1px #f9f9f9;
     margin-left: 0 !important;
}
.tipr_container_above
{
     display: none;
     position: absolute;
     margin-top: -77px;
     z-index: 1000;
     box-shadow: 0 0 1px 1px #f9f9f9;
}
.tipr_point_above, .tipr_point_below
{
     position: relative;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.tipr_point_above:after, .tipr_point_above:before
{
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    top: 100%;
    content: "";
    height: 0;
    width: 0;
}
.tipr_point_above:after
{
    border-top-color: #fff;
    border-width: 7px;
    left: 50%;
    margin-left: -7px;
}
.tipr_point_above:before
{
    border-top-color: #ccc;
    border-width: 8px;
    left: 50%;
    margin-left: -8px;
}
.tipr_point_below:after, .tipr_point_below:before
{
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    bottom: 100%;
    content: "";
    height: 0;
    width: 0;
}
.tipr_point_below:after
{
    border-bottom-color: #fff;
    border-width: 7px;
    left: 50%;
    margin-left: -7px;
}
.tipr_point_below:before
{
    border-bottom-color: #ccc;
    border-width: 8px;
    left: 50%;
    margin-left: -8px;
}


/* Alt mode */


.tipr_content_alt
{
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
     background-color: #f1f1f1;
     padding: 6px 13px 7px 13px;
     border-radius: 3px;
}

.tipr_container_above_alt, .tipr_container_below_alt
{
     display: none;
     position: absolute;
     z-index: 1000;
}
.tipr_point_above_alt, .tipr_point_below_alt
{
     position: relative;
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
}
.tipr_point_above_alt:after, .tipr_point_below_alt:after
{
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    border-width: 7px;
    left: 50%;
    margin-left: -7px;
}
.tipr_point_above_alt:after
{
    top: 100%;
    border-top-color: #f1f1f1;
}
.tipr_point_below_alt:after
{
    bottom: 100%;
    border-bottom-color: #f1f1f1;
}

table.pricing .icon i.fa:before {
    content: "\f059";
}

.pagination li.active a, .pagination span {
    color: #121f48;
    border-color: transparent;
}
