*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
} 

.free-callback-popup input[type="text"].apbformweb {display:none;}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
blockquote {
    display: block;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input#website {display:none;}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.help-assistance {display:none;}

.form-group.sprev {display:none;}

@media screen and (min-width: 992px) {
    .container {
        max-width: 1000px;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/*-----------------------
    Typography
-----------------------*/

h1 {
    font-size: 2em;
    color: white;
    line-height: 1;
    letter-spacing: -1px;
    font-weight: 600;
    font-family: 'Open Sans';
    margin: 0 0 4px 0
}

.info ul {
    margin-left: 25px;
}

.info ul li {
    font-family: 'Open Sans';
    font-weight: 300;
    list-style: disc;
    list-style-position: outside;
}

.info h3 {
    color: #1a1c48;
}



@media screen and (min-width: 768px) {
    h1 {
        font-size: 2.5em;
        line-height: 0.9;
        letter-spacing: -1px;
        margin-bottom: 15px;
    }
}


/*-----------------------
    Header
-----------------------*/

header {
    position: relative;
}
h3.fast-call {font-weight:500; margin:20px 0 0 0; line-height:120%; text-align:right; font-size:32px; padding-right:10px;}
h3.fast-call br {display:none;}

header .covid-notification {
    background-color: #ff969d;
    padding: 4px 20px 4px;
    text-align: center;
}

header .covid-notification p {
    padding: 7px 0;
    width: 100%;
    color: white;
    font-size: 0.9375em;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    margin: 0;
}

.new-header {display:flex; justify-content:space-between; align-items:center; padding:25px;}
.new-header h3 br {display:none;}
.new-header h3 {font-size:28px; font-weight:500; text-align:right; margin:10px 0 0 0;}

header .company {
    padding: 10px 0;
    position: relative;
    border-bottom: 5px solid #1e9944;
}

header .logo {
    display: inline-block;
    width: 140px;
    min-height: 42px;
}

header .logo img {
    display: block;
    width: 100%;
    height: auto;
}

header .fast-call {
    display: none;
    position: absolute;
    right: 60px;
    top: 15px;
}

header .fast-call img {
    display: none;
}

header .fast-call h3 {
    font-size: 0.9375em;
    line-height: 1;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

header .fast-call .callback span {
    display: none;
}

header .fast-call p {
    font-size: 1.25em;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-decoration: underline;
    margin: 0;
}

header .toggle-navigation {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    width: 25px;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
}

header .toggle-navigation:active {
    padding: 0;
}

header .toggle-navigation .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1e9944;
    -webkit-transition: opacity 250ms linear, -webkit-transform 250ms linear;
    transition: opacity 250ms linear, -webkit-transform 250ms linear;
    -o-transition: opacity 250ms linear, transform 250ms linear;
    transition: opacity 250ms linear, transform 250ms linear;
    transition: opacity 250ms linear, transform 250ms linear, -webkit-transform 250ms linear;
}

header .toggle-navigation .line+.line {
    margin-top: 5px;
}

header .toggle-navigation .line:nth-child(4) {
    position: absolute;
    left: 0;
    top: 7px;
    margin: 0;
}

.navigation-open header .toggle-navigation .line:nth-child(1),
.navigation-open header .toggle-navigation .line:nth-child(3) {
    opacity: 0;
}

.navigation-open header .toggle-navigation .line:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navigation-open header .toggle-navigation .line:nth-child(4) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

header nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #81c040;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0fb724), to(#3bdb51));
    background-image: -o-linear-gradient(bottom, #0fb724 0, #3bdb51 100%);
    background-image: linear-gradient(to top, #0fb724 0, #3bdb51 100%);
    overflow-y: auto;
    opacity: 0;
    padding: 15px 0;
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    -o-transition: opacity 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 50;
}

.navigation-open nav {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

header nav a {
    display: block;
    padding: 15px 20px;
    font-size: 0.875em;
    color: white;
    line-height: 1;
    text-align: center;
}

header nav .active a {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #5e5e5e), to(#262626));
    background-image: -o-linear-gradient(bottom, #5e5e5e 0, #262626 100%);
    background-image: linear-gradient(to top, #5e5e5e 0, #262626 100%);
}

@media screen and (min-width: 375px) {
    header .fast-call {
        display: inline-block;
    }
}

@media screen and (min-width: 450px) {
    header .logo {
        width: 40%;
    }
    header .fast-call {
        padding-left: 45px;
    }
    header .fast-call img {
        display: inline-block;
        width: 35px;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
    }
}

@media screen and (min-width: 500px) {
    header .fast-call {
        top: 12px;
    }
    header .fast-call h3 {
        font-size: 1.125em;
    }
    header .fast-call p {
        font-size: 1.5em;
        line-height: 1;
    }
    header .fast-call .callback span {
        display: block;
        font-size: 0.8125em;
    }
    header .fast-call img {
        width: 40px;
        top: 5px;
    }
}

@media screen and (min-width: 550px) {
    header .fast-call h3 {
        font-size: 1.375em;
    }
    header .fast-call p {
        font-size: 1.675em;
        line-height: 1;
    }
    header .fast-call .callback span {
        display: block;
        font-size: 0.875em;
    }
}

@media screen and (min-width: 650px) {
    header .logo {
        width: 240px;
    }
    header .fast-call {
        padding-left: 70px;
        top: 17px;
    }
    header .fast-call img {
        width: 60px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 768px) {
    header .logo {
        width: 35%;
    }
    header .company {
        border-bottom: none;
        padding-bottom: 12px;
    }
    header .fast-call {
        padding-left: 70px;
        right: 15px;
        font-size:28px; font-weight:500;
    }
    
    header .fast-call .callback span {
        display: block;
        font-size: 0.9375em;
        font-family: 'Open Sans';
        font-weight: 300;
    }
    header .fast-call h3 {
        font-size: 1.4375em;
    }
    header .fast-call p {
        font-size: 1.725em;
        transform: translateY(-3px);
    }
    header .toggle-navigation {
        display: none;
    }
    header nav {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        overflow-y: visible;
        opacity: 1;
        padding: 0;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0fb724), to(#3bdb51));
        background-image: -o-linear-gradient(bottom, #0fb724 0, #3bdb51 100%);
        background-image: linear-gradient(to top, #0fb724 0, #3bdb51 100%);
        box-shadow: 0 8px 21px -1px rgba(0, 0, 0, .35);
        z-index: 50;
    }
    header .navbar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 0 30px;
    }
    header .navbar > li:first-child a {
        min-height: 100%;
        display: flex;
        align-items: center;
    }
    header nav a {
        position: relative;
        font-size: 1em;
        padding: 15px 16px;
        -webkit-transition: color 300ms ease;
        -o-transition: color 300ms ease;
        transition: color 300ms ease;
        font-family: 'Open Sans';
        font-weight: 500;
    }
    header nav a::after {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        height: 22px;
        content: '';
        width: 1px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: #83c143;
        box-shadow: 1px 0 0 0 rgba(0, 0, 0, .2);
    }
    header nav li:first-child a::after {
        display: none;
    }
    header nav li.active+li a::after {
        display: none;
    }
    header nav a:hover {
        color: #135608;
        text-decoration: underline;
    }
    header nav .active a::after {
        display: none;
    }
    header nav .active a:hover {
        color: white;
    }
}

@media screen and (min-width: 992px) {
    header .logo {
        width: 284px;
    }
    header .company .container {
        position: relative;
    }
    header .fast-call {
        padding-left: 80px;
        top: 20px;
        right: 43px;
    }
    header .fast-call img {
        width: 66px;
    }
    header h3.fast-call {
        font-size: 24px;
        font-weight:500;
    }
    header .fast-call .callback {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    header .fast-call .callback span {
        width: 110px;
        line-height: 1;
        transform: translateY(2px);
        margin-left: 5px;
    }
    header nav a {
        padding: 15px 12px;
        font-size: 1em;
    }
    header .fast-call p {
        transform: none;
    }
}

@media screen and (min-width: 1200px) {
    header nav a {
        padding: 15px 20px;
    }
}

/*-----------------------
    Promo
-----------------------*/

.promo {
    background: url('../images/promo-bg.jpg') no-repeat 70% 50%;
    background-size: cover;
    padding: 0;
    position: relative;
}

.promo.inquiry-promo {
    background-image: url('../images/promo-form-bg.jpg');
    padding-top: 0;
    background-position: 50% 50%;
}

.promo .info {
    position: relative;
    z-index: 10;
}

.promo .details {
    background-color: rgba(0, 0, 0, .6);
    padding: 20px 25px 15px 25px;
    margin-left: -15px;
    margin-right: -15px;
	border-radius:20px;
}

.promo .details p {
    color: white;
    margin: 0;
    line-height:100%;
}

.promo .headline {
    font-size: 1.125em;
    font-style: italic;
    letter-spacing: -1px;
    padding: 0;
    margin-bottom: 2px;
    overflow: hidden;
}

.promo .headline p {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial;
}

.promo .headline .hidden {
    display: none;
}

.promo .security {
    display: none;
} 

.promo .start-quote {
    padding: 15px 30px;
    background-color: rgba(255, 114, 0, .9);
	border-radius:20px;
    margin-left: -15px;
    margin-right: -15px;
}

.promo .compare-quotes {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 10px;
}

.promo .start-quote h2 {
    font-size: 1em;
    line-height: 1.15;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
    max-width: 380px;
    letter-spacing: -1px;
}

.promo .submit-wrapper {display:flex;}
.promo .start-quote .submit-wrapper button {width:50%;} 
.promo .start-quote .submit-wrapper div {width:50%; color:#ffffff; padding-top:15px; padding-left:15px; line-height:110%;} 

.promo .start-quote select {
    border: 1px solid #dadada;
    width: 100%;
    padding: 10px 50px 11px 15px;
    font-size: 1em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    cursor: pointer;
    background: url('../images/dropdown-arrow.jpg') 100% 50% no-repeat #fff;
    font-family: 'Open Sans';
    margin-bottom: 7px;
    font-weight: 500;
	color:#000000 !important;
}



.promo .start-quote select:focus {
    outline: none;
}

.promo .start-quote p {
    background-color: rgb(0 0 0 / 85%);
    font-family: 'Open Sans';
    font-weight: 300;
    display: inline-block;
    font-size: 1em;
    color: white;
    padding: 3px 3px 3px;
    margin: 0 0 5px;
	border-radius:6px;
}

.promo .start-quote button,
.quote-but {
    padding: 12px 5px 12px 10px;
    background-color: #67b223;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0fb724), to(#49eb66));
    background-image: -o-linear-gradient(bottom, #0fb724 0, #49eb66 100%);
    background-image: linear-gradient(to top, #0fb724 0, #49eb66 100%);
    border-radius: 5px;
    color: white;
    font-size: 1.25em;
    font-family: 'Open Sans';
    font-weight: 500;
    min-width: 165px;
    -webkit-transition: background-color 250ms ease, color 250ms ease;
    -o-transition: background-color 250ms ease, color 250ms ease;
    transition: background-color 250ms ease, color 250ms ease;
    border: none;
    cursor: pointer;
}

.promo .start-quote button:hover {
    /*background-color: #7700da;*/
}

.promo .start-quote i {
    margin-left: 1px;
    padding-left: 4px;
    font-size: 0.75em;
    border-left: 1px solid rgba(0, 0, 0, .2);
}

.rating {
    position: relative;
    background-color: rgba(0, 0, 0, .7);
    margin-left: -15px;
    margin-right: -15px;
    z-index: 10;
    padding: 10px 0;
}

.rating .awards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.rating .awards .protection-review {
    width: 35px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
    margin-right: 5px;
}

.rating .awards p {
    width: 115px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 115px;
    flex: 0 0 115px;
    font-size: 0.875em;
    font-family: 'Open Sans';
    font-weight: 300;
    line-height: 1.2;
    color: white;
    margin: 0;
}

.rating .awards .defaqto {
    width: 70px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
}

.rating .awards img {
    display: block;
    width: 100%;
    height: auto;
}

.rating .trustpilot img {
    display: block;
    max-width: 140px;
    height: auto;
    margin: 0 auto;
}

.promo .compare-quotes {
    padding: 8px 15px;
    background-color: rgba(0, 0, 0, .7);
}

.promo .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.promo .tabs li {
    width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    font-size: 1em;
    color: white;
    line-height: 1.15;
    padding: 8px 10px 4px 10px;
    font-family: 'Open Sans';
    font-weight: 300;
    opacity: 1;
    text-align: center;
    margin-bottom: 5px;
}

.promo .tabs li.active {
    opacity: 1;
    /*    border: 1px solid white;
        border-radius: 10px;*/
}

.promo .tabs li span {
    display: block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    line-height: 26px;
    border: 1px solid transparent;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    color: #000000;
    background-color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    text-align: center;
    font-weight: 700;
    margin: 0 auto 2px auto;
}

.promo .tabs li.active span {
    background-color: #67b223;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0fb724), to(#49eb66));
    background-image: -o-linear-gradient(bottom, #0fb724 0, #49eb66 100%);
    background-image: linear-gradient(to top, #0fb724 0, #49eb66 100%);
    color: white;
}

.promo .question-info {
    display: none;
    position: fixed;
    background-color: white;
    top: auto;
    left: 50%;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .8);
    padding: 10px;
    border-radius: 10px;
    transform: translate(-50%, -100%);
    z-index: 100;
}

.promo .question-info.reveal {
    display: block;
}

.promo .question-info::after {
    content: '';
    border-top: 15px solid white;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.promo .question-info h3 {
    font-size: 1.25em;
    line-height: 1.25;
    color: #67b223;
    margin: 0 0 15px 0;
}

.promo .question-info p {
    font-size: 1em;
    line-height: 1.4;
    font-family: 'Open Sans';
    font-weight: 300;
    margin: 0 0 15px 0;
}

.promo .question-info p strong {
    font-size: 1.125em;
    line-height: 1.25;
    color: #6ea6ff;
    font-family: 'Open Sans';
    font-weight: 600;
}

.promo .question-info ul {
    font-size: 1em;
    line-height: 1.4;
    font-family: 'Open Sans';
    font-weight: 300;
}

.promo .question-info li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
}

.promo .question-info li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: -1px;
    color: #67b223;
}

.promo label.question {
    display: block;
    font-size: 1.25em;
    color: white;
    text-align: center;
    font-family: 'Open Sans';
    font-weight: 600;
    margin-bottom: 10px;
}

.promo label.question i {
    cursor: pointer;
}

.promo .range-controls {
    padding: 14px 10px 10px 10px;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 0 0 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.promo .range-controls .range-decrease,
.promo .range-controls .range-increase {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background-color: white;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    cursor: pointer;
}

.promo .range-controls .range-decrease {
    margin-right: 15px;
}

.promo .range-controls .range-increase {
    margin-left: 15px;
}

.promo .range-controls .range-slider {
    width: calc(100% - 90px);
    max-width: calc(100% - 90px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 90px);
    flex: 0 0 calc(100% - 90px);
}

.promo .range-controls .irs--big {
    height: 30px;
}

.promo .irs--big .irs-handle {
    top: 0;
}

.promo .irs--big .irs-line {
    top: 9px;
}

.promo .range-controls .irs-min,
.promo .range-controls .irs-max {
    display: none;
}

.promo .irs--big .irs-single {
    font-size: 1.25rem;
    background-color: rgba(101, 176, 35, 0.75);
    background-image: none;
    top: -5px;
    display: none;
}

.promo .irs--big .irs-bar {
    background:none;
    border:none;
    background-color: #67b223;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0fb724), to(#49eb66));
    background-image: -o-linear-gradient(bottom, #0fb724 0, #49eb66 100%);
    background-image: linear-gradient(to top, #0fb724 0, #49eb66 100%);
    border-color: black;
    top: 9px;
}

.promo .range-data {
    margin-bottom: 15px;
}

.promo .range-data .selected-value {
    padding: 5px 10px;
    font-size: 1.25em;
    color: white;
    line-height: 1.15;
    background-color: #67b223;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0fb724), to(#49eb66));
    background-image: -o-linear-gradient(bottom, #0fb724 0, #49eb66 100%);
    background-image: linear-gradient(to top, #0fb724 0, #49eb66 100%);
    border-radius: 15px 15px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

.irs--big .irs-bar {

}

.promo .step-controls button {
    display: inline-block;
    padding: 15px;
    background-color: #67b223;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0fb724), to(#49eb66));
    background-image: -o-linear-gradient(bottom, #0fb724 0, #49eb66 100%);
    background-image: linear-gradient(to top, #0fb724 0, #49eb66 100%);
    border: none;
    color: white;
    font-size: 1.125em;
    cursor: pointer;
    -webkit-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.promo .step-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.promo .step-controls .go-next {
    margin-left: auto;
}



.promo .step-controls button:hover {
    background-color: #4d841b;
}

.promo .gdpr-safe .gdpr-general {
    position: relative;
    padding-left: 100px;
    margin-bottom: 20px;
}

.promo .gdpr-safe .gdpr-general img {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
}

.promo .gdpr-safe .gdpr-general p {
    font-size: 1em;
    color: white;
    margin: 0;
}

.promo .gdpr-safe h2 {
    font-size: 1em;
    font-family: 'Open Sans';
    line-height: 1.25;
    color: white;
    font-weight: 300;
    margin: 0 0 5px;
}

.promo .gdpr-safe li {
    font-size: 0.875em;
    line-height: 1.4;
    color: white;
    position: relative;
    padding-left: 35px;
    background-image: url('../images/tick.png');
    background-repeat: no-repeat;
    background-position: left 0 top 5px;
    background-size: 30px auto;
    min-height: 30px;
    margin-bottom: 15px;
}

.promo .gdpr-safe li span {
    display: inline-block;
    padding: 2px;
    background-color: #5a68d6;
}

.promo .about-data h3 {
    font-family: 'Open Sans';
    text-shadow: 0px 0px 12px #000000;
    font-weight: 600;
    color: white;
    text-align: center;
    font-size: 1.5em;
    margin: 0 0 15px 0;
}

.promo .about-data .honest-policy {
    background-color: rgba(0, 0, 0, 0);
    color: white;
    text-align: center;
    padding: 10px;
    border: 2px solid red;
    margin: 0 0 20px 0;
}

.promo .form-group {
    position: relative;
    margin-bottom: 15px;
}

.promo .get-started .form-group {
    margin-bottom: 0;
}

.promo .radio-selection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.promo .radio-selection .radio-element {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}
.promo .radio-selection .radio-element {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.promo .radio-selection.protection-level .radio-element {
    /* width: 33.333333333333333333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333333333333333333%;
    flex: 0 0 33.333333333333333333333%; */
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.promo .radio-selection.health-level .radio-element {
    width: 33.333333333333333333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333333333333333333%;
    flex: 0 0 33.333333333333333333333%;
}

.promo .radio-selection .radio-element:nth-child(2),.promo .radio-selection .radio-element:nth-child(3) {
    border-left: 1px solid black;
}

.promo .radio-selection input[type="radio"] {
    display: none;
}

.radio-selection label {
    display: block;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 8px 10px;
    font-size: 1em;
    text-align: center;
    cursor: pointer;
}
.radio-selection.protection-level label {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 8px 10px;
    font-size: 1em;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    align-items:center;
    justify-content:center;
}

.radio-selection label span {
    vertical-align: middle;
    text-align: center;
    font-size: 0.75em;
}

.promo .radio-selection input[type="radio"]:checked+label {
    background-color: #67b223;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0fb724), to(#49eb66));
    background-image: -o-linear-gradient(bottom, #0fb724 0, #49eb66 100%);
    background-image: linear-gradient(to top, #0fb724 0, #49eb66 100%);
    border-color: #67b223;
    color: white;
}

.promo .radio-selection .radio-element:nth-child(1) label {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.promo .radio-selection .radio-element:nth-last-child(1) label {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.promo .radio-selection.protection-level .radio-element:nth-child(3) input[type="radio"]:checked+label {
    background-color: #ff7200;
    background-image: none;
    border-color: #67b223;
    color: white;
}

.protection-level-alert {color:#ffffff; padding:10px; background-color:#ff7200; text-align: center; margin-top:10px; border-radius:10px;}
.protection-level-alert h3 {margin-top:0;}
.protection-level-alert p {margin-bottom:0;}

.promo .about-data .date-selection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.promo .personal-group input[type="text"] {
    display: block;
    padding: 12px 14px 12px 78px;
    width: 100%;
    background-color: white;
    border: 2px solid white;
    border-radius: 10px;
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 1em;
}

.promo .personal-group input[type="text"].error {
    background-color: #ff0000;
    border-color: #ff0000;
    color: white;
}

.promo .personal-group input[type="text"].error::-webkit-input-placeholder {
    color: white;
}

.promo .personal-group input[type="text"].error::-moz-placeholder {
    color: white;
}

.promo .personal-group input[type="text"].error:-ms-input-placeholder {
    color: white;
}

.promo .personal-group input[type="text"]:focus {
    outline: none;
    border-color: #67b223;
}

.promo .personal-group input[type="text"].error:focus {
    border-color: #ff0000;
}

.promo .personal-data {
    position: relative;
    margin-bottom: 10px;
}

.promo .personal-data .input-icon {
    width: 60px;
    position: absolute;
    left: 0;
    top: 14px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    text-align: center;
    border-right: 2px solid #bbbbbb;
    color: #bbbbbb;
}

.promo .personal-group input[type="text"].error+.input-icon {
    color: white;
    border-right-color: white;
}

.promo .personal-group input[type="text"].error:focus+.input-icon {
    color: white;
    border-right-color: white;
}

.promo .personal-group input[type="text"]:focus+.input-icon {
    border-right-color: #67b223;
}

.promo .validation-message {
    display: none;
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 20px 10px 20px;
    font-size: 1.125em;
    border-radius: 8px 8px 8px 8px;
    text-align: center;
    width: 100%;
    font-family: 'Open Sans';
    font-weight: 300;
    margin: 0 0 20px 0;
}

.promo .alert-danger {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% 0;
    flex: 0 0 100% 0;
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 20px 10px 20px;
    font-size: 1.125em;
    border-radius: 8px 8px 8px 8px;
    text-align: center;
    width: 100%;
    font-family: 'Open Sans';
    font-weight: 300;
    margin: 10px 0 10px 0;
}

.promo .loading {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .6);
}

.promo.generate-results .loading {
    display: block;
}

.promo .loading .indicator {
    font-size: 1.5em;
    color: black;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.promo .loading img {
    display: block;
    width: 64px;
    height: auto;
    margin: 0 auto 5px auto;
}

.promo .loading span {
    display: block;
}

.promo .start-quote p img,.promo .start-quote p {vertical-align: bottom;}

.promo .steps .step {
    display: none;
}

.promo .steps .step.active {
    display: block;
}

.about-data .form-group label {
    font-size: 1.125em;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 5px;
}

.about-data .form-group {
    margin-bottom: 20px;
}

.about-data .element-group {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 12px;
    border: 2px solid transparent;
}

.about-data .element-group .icon {
    width: 50px;
    flex: 1 0 50px;
    background-color: #67b223;
    background-image: linear-gradient(to top, #0fb724 0, #49eb66 100%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.about-data .element-group .icon img {
    display: block;
    max-width: 30px;
    max-height: 35px;
    width: auto;
    height: auto;
}

.about-data .element-group input {
    width: calc(100% - 50px);
    max-width: calc(100% - 50px);
    flex: 0 0 calc(100% - 50px);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.about-data input {
    margin: 0;
    border: 0;
}

.about-data input,
.about-data select {
    font-size: 1.125em;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    outline: none;
}

.about-data .date-group {
    display: flex;
    justify-content: space-between;
}

.about-data .date-group .date-unit {
    width: 32%;
    max-width: 32%;
    flex: 0 0 32%;
}

.about-data select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    background-image: url(../images/icon-arrow-down.svg), linear-gradient(to top, #0fb724 0, #49eb66 100%);
    background-size: 14px auto, 30px 100%;
    background-repeat: no-repeat, no-repeat;
    background-position: right 8px center, right center;
    border: 1px solid transparent;
    background-clip: padding-box;
	color:#000000 !important;
}

.about-data .element-group.error {
    border: 2px solid red;
}

.about-data select.error {
    border: 2px solid red;
}

.protection-level-alert h3 {
    margin-bottom: 5px;
}

.protection-level-alert h3:first-child {
    margin-bottom: 20px;
}

.protection-level-alert p {
    line-height: 1.55;
    margin: 0;
}

.protection-level-alert button {
    padding: 0 2px;
    background-color: #0fb724;
    background-image: linear-gradient(to top, #0fb724 0, #3bdb51 100%);
    border: none;
    font-weight: inherit;
    font-family: inherit;
    color: white;
    font-size: inherit;
    cursor: pointer;
}

.protection-level-alert .highlight {
    background-color: #5a68d6;
}

.about-data .searching-indicator {
    display: none;
    vertical-align: baseline;
    line-height: 1;
}

.about-data .searching-indicator .typing-dot {
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: white;
    margin-left: 3px;
    animation-name: search;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.about-data .searching-indicator .typing-dot.dot-01 {
    animation-delay: 0ms;
}

.about-data .searching-indicator .typing-dot.dot-02 {
    animation-delay: 700ms;
}

.about-data .searching-indicator .typing-dot.dot-03 {
    animation-delay: 1400ms;
}

.about-data .grouped-input.obscure {
    opacity: 0.75;
    pointer-events: none;
}


body button.go-next.loadinganim .fa-angle-double-right i {
display:none;
}
body button.go-next.loadinganim {display:flex; align-content: center; line-height:150%;}
body button.go-next.loadinganim img {margin-left:10px;}

@keyframes search {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    90% {
        transform: translateY(0px);
    }
}

@media screen and (min-width: 375px) {
    .rating .awards p {
        width: 140px;
        flex: 0 0 140px;
        font-size: 1.125em;
    }

    .rating .awards .protection-review {
        width: 42px;
        flex: 0 0 42px;
    }

    .rating .awards .defaqto {
        width: 90px;
        flex: 0 0 90px;
    }

    .rating .trustpilot img {
        max-width: 200px;
    }
}

@media screen and (min-width: 380px) {
    .promo .headline {
        font-size: 1.625em;
    }
}

@media screen and (min-width: 400px) {
    .promo .tabs li {
        font-size: 0.9375em;
        padding: 10px 4px;
        text-align: left;
    }
    .promo .tabs li span {
        display: inline-block;
        margin: 0 2px 0 0;
    }
}

@media screen and (min-width: 481px) {
    .promo h1 {
        margin-bottom: 15px;
    }

    .promo .headline {
        font-size: 1.7em;
    }

    .promo .start-quote h2 {
        line-height: 0.95;
        font-size: 1.625em;
    }
}

@media screen and (min-width: 500px) {
    .rating .awards p {
        width: 200px;
        max-width: 200px;
        flex: 0 0 200px;
        text-align: right;
        margin-right: 5px;
        line-height: 1;
    }
}

@media screen and (min-width: 601px) {
    .promo {
        background-position: 42% 50%;
    }
    .promo .info {
        padding: 78px 0 110px 0;
    }

    .promo h1 {
        font-size: 2.5em;
    }

    .promo .headline {
        font-size: 2.125em;
        width: 90%;
        margin-bottom: 15px;
    }

    .promo .security {
        display: block;
        font-size: 1.375em;
        line-height: 1.1;
        font-family: 'Open Sans';
        font-weight: 300;
    }

    .promo .start-quote {
        padding: 20px 30px;
    }

    .promo .start-quote h2 {
        max-width: 100%;
        margin-bottom: 13px;
    }
}

    .promo .compare-quotes {
        padding: 20px 20px 0 20px;
		
}

@media screen and (min-width: 768px) {
    .promo {
        min-height: 460px;
        padding: 50px 0 50px 0;
        background-image: url('../images/promo-bg.jpg');
        background-position: 50% 50%;
    }
    .promo.inquiry-promo {
        padding: 50px 0 180px;
    }
    .promo .info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        padding: 54px 0 120px 0;
    }
    .promo .info .details {
        background-color: rgba(0, 0, 0, .6);
        width: 58.4%;
        max-width: 58.4%;
        flex: 0 0 58.4%;
        margin: 0;
        padding: 25px;
    }
    .promo .info .start-quote {
        width: 41.6%;
        max-width: 41.6%;
        flex: 0 0 41.6%;
        margin: 0;
    }
    .promo .security {
        display: block;
        font-size: 1.125em;
    }
    .promo .start-quote h2 {
       /* font-size: 1.5em;*/
    }
    .rating {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        margin: 0;
    }
    .rating .awards .protection-review {
        width: 42px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 42px;
        flex: 0 0 42px;
        margin-right: 5px;
    }
    .rating .awards p {
        width: 140px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
        flex: 0 0 140px;
        font-size: 1.125em;
    }
    .rating .awards .defaqto {
        width: 85px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 85px;
        flex: 0 0 85px;
    }
    .rating .trustpilot img {
        display: block;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }
    .promo .tabs {
        margin-bottom: 20px;
    }
    .promo .tabs li {
        width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        font-size: 1.5em;
        text-align: center;
    }
    .promo .range-data {
        margin-bottom: 20px;
    }
    .promo label.question {
        font-size: 1.25em;
    }
    .promo .compare-quotes {
        padding: 30px 30px 0 30px;
        margin: 0;
    }
    .promo .step-controls button.go-back {
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    .promo .step-controls button.go-next {
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }
    .promo .gdpr-safe .gdpr-general {
        padding-left: 160px;
        min-height: 110px;
    }
    .promo .gdpr-safe .gdpr-general img {
        width: 150px;
    }
    .promo .gdpr-safe .gdpr-general p {
        font-size: 2em;
    }
    .promo .gdpr-safe h2 {
        font-size: 2.25em;
        margin-bottom: 15px;
    }
    .promo .gdpr-safe li {
        font-size: 1em;
        background-position: left 50%;
        padding-left: 45px;
        background-size: 36px auto;
    }
    .promo .about-data h3 {
        font-size: 2em;
    }
    .promo .personal-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .promo .personal-group .personal-data {
        width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
    .promo .about-data .date-selection {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .promo .range-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .promo .range-wrapper .range-controls {
        width: calc(100% - 200px);
        max-width: calc(100% - 200px);
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 200px);
        flex: 0 0 calc(100% - 200px);
        border-radius: 15px 0 0 15px;
        padding: 10px;
    }
    .promo .range-wrapper .selected-value {
        width: 200px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        border-radius: 0 15px 15px 0;
        font-size: 1.5em;
        line-height: 1.55;
        padding: 8px 10px 8px 10px;
    }
    .promo .tabs li span {
        width: 34px;
        height: 34px;
        line-height: 30px;
        margin-right: 4px
    }
    .radio-selection label {
        font-size: 1.25em;
    }
    .promo h1 {
        font-size: 1.75em;
    }
    .promo .headline {
        font-size: 1.55em;
    }
    .promo .security {
        font-size: 1.375em;
    }
    .rating {
        text-align: center;
        padding: 14px;
    }
    .rating .awards p {
        width: 224px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 224x;
        flex: 0 0 224px;
        font-size: 1.3125em;
        line-height: 1;
    }
    .rating .trustpilot img {
        display: block;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }
    .rating .awards {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        vertical-align: middle;
        margin: 0 20px 0 0;
    }
    .rating .trustpilot {
        display: inline-block;
        vertical-align: middle;
        width: 250px;
    }
    .rating .trustpilot img {
        width: 250px;
        margin: 0;
    }
    
    .about-data .form-group label {
        font-size: 1.625em;
    }

    .about-data input,
    .about-data select {
        padding: 15px;
    }

    .about-data .element-group .icon img {
        max-width: 35px;
        max-height: 42px;
    }

    .about-data select {
        padding: 15px;
        background-size: 17px auto, 50px 100%;
        background-position: right 17px center, right center;
    }

    .about-data .grouped-input {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .about-data .grouped-input .form-group {
        width: 48%;
        flex: 0 0 48%;
    }
}

@media screen and (min-width: 992px) {
    .promo .headline {
        width: 100%;
        font-size: 1.6em;
    }
    .promo .info { 
        padding: 54px 0 54px 0;
    }
    .promo .info .details {
        padding: 40px 25px 20px 25px;
    }
    .promo .info .start-quote {
        padding: 20px 30px;
    }
    .promo .start-quote h2 {
        font-size: 1.75em;
        line-height: 0.95;
        margin-bottom: 13px;
    }
    .promo .start-quote p {
        font-size: 1.07em;
        line-height: 1;
        margin-bottom: 7px;
		border-radius:6px;
    }
    .promo .start-quote button {
        font-size: 1.5em;
        padding: 13px 15px 14px 21px;
    }
}

@media screen and (min-width: 993px) {
    .promo h1 {
        font-size: 2.375em;
    }
    .promo .start-quote h2 {
        font-size: 2.2em;
    }
    .promo .details .headline {
        font-size: 2em;
        line-height: 1;
        letter-spacing: -1px;
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 1025px) {
    .promo {
        background-position: 50% 50%;
        background-size: cover;
    }
    .promo.inquiry-promo {
        min-height: 550px;
        padding: 20px 0 20px;
    }
    .promo .details .headline p {
        max-width: 525px;
    }
    .promo .security {
        font-size: 1.5em;
        font-family: 'Open Sans';
        line-height: 1.1;
        letter-spacing: -1px;
    }
    .promo .step-controls button {
        font-size: 1.5em;
    }
    .promo label.question span {
        display: inline-block;
        position: relative;
        padding: 0 10px;
    }
    .promo label.question span::before,
    .promo label.question span::after {
        content: '';
        display: none;
        width: 700px;
        height: 2px;
        background-color: white;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .promo label.question span::before {
        right: 100%;
    }
    .promo label.question span::after {
        left: 100%;
    }
    .promo .range-data,
    .promo .form-group {
        overflow: hidden;
    }
}

@media screen and (min-width: 1200px) {
    .promo .info .details {
        padding: 35px 15px 25px 50px;
    }
    .promo .info .start-quote {
        padding: 20px 30px 11px 30px;
    }

    .rating .awards p {
        font-size: 1.8125em;
        width: 215px;
        max-width: 215px;
        flex: 0 0 215px;
        margin-right: 15px;
    }
}

.contact-form.success-message {
    padding: 10px;
    color: #ffffff;
    font-weight: bold;
    background-color: #0178d4;
}


/*-----------------------
    Compare Protection
-----------------------*/

.compare-protection {
    padding: 15px 0;
}

.compare-protection h2 {
    font-size: 0.75em;
    text-align: center;
    font-family: 'Open Sans';
    font-weight: 300;
    color: #585f63;
    text-align: center;
    margin: 0 0 5px 0;
}

.compare-protection h2 strong {
    font-family: 'Open Sans';
    font-weight: 600;
    letter-spacing:-1px;
}

.compare-protection .mobile-brands img {
    display: block;
    width: 100%;
    height: auto;
}

.compare-protection .brands-wrapper {
    position: relative;
    overflow: hidden;
}

.compare-protection .brands-slider {
    display: inline-block;
    white-space: nowrap;
    min-height: 94px;
    -webkit-animation-name: continuous-slide-left;
    animation-name: continuous-slide-left;
    -webkit-animation-duration: 50s;
    animation-duration: 50s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.compare-protection .brands-slider {
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
}

.compare-protection .brands-unit {
    display: inline-block;
    white-space: nowrap;
    font-size: 0;
}

.compare-protection .brand {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 1em;
    font-size: 1rem;
}

.compare-protection .brand-image {
    display: inline-block;
    width: 100px;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.promo .start-quote p strong {display:none;}


@media screen and (min-width: 375px) {
    .compare-protection h2 {
        font-size: 0.8125em;
    }
}

@media screen and (min-width: 400px) {
    .compare-protection h2 {
        font-size: 1em;
    }
}

@media screen and (min-width: 480px) {
    .compare-protection h2 {
        font-size: 1.25em;
    }
    .compare-protection .brand-image {
        width: 150px;
    }
}

@media screen and (min-width: 600px) {
    .compare-protection h2 {
        font-size: 1.375em;
    }
}


@media screen and (min-width: 768px) {
    .compare-protection .brand-image {
        width: 170px;
    }

    .compare-protection .mobile-brands {
        display: none;
    }

    .compare-protection .brands {
        display: block;
    }

    .compare-protection h2 {
        font-size: 1.75em;
    }
}

@media screen and (min-width: 1025px) {
    .compare-protection {
        padding: 30px 0 20px 0;
    }
    .compare-protection .brand-image {
        width: 200px;
    }
    .compare-protection h2 {
        font-size: 1.75em;
        margin-bottom: 0px;
    }
}

@-webkit-keyframes continuous-slide-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes continuous-slide-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 550px) {
    .promo .radio-selection.protection-level,
    .promo .radio-selection.health-level {display:block;}
    .promo .radio-selection.protection-level .radio-element,
    .promo .radio-selection.health-level .radio-element {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .promo .radio-selection .radio-element:nth-last-child(1) label {
        border-top-right-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .promo .radio-selection.protection-level .radio-element:nth-child(1) label,
    .promo .radio-selection.health-level .radio-element:nth-child(1) label {border-radius:10px 10px 0 0;}

    .promo .radio-selection.protection-level .radio-element:nth-child(3) label,
    .promo .radio-selection.health-level .radio-element:nth-child(3) label {border-radius:0 0 10px 10px;}

    .promo .radio-selection.protection-level .radio-element:nth-child(2), .promo .radio-selection.protection-level .radio-element:nth-child(3),
    .promo .radio-selection.health-level .radio-element:nth-child(2), .promo .radio-selection.health-level .radio-element:nth-child(3) {border-left:none; border-top:1px solid #000000;}
    .protection-level-alert h3 {font-size:14px;}
    .protection-level-alert p {font-size:12px;}
}

@media screen and (max-width: 550px) {.promo .start-quote p span {display:none;} .promo .start-quote p strong {display:inline; font-weight:300;}}

@media screen and (max-width: 1024px) {
	.info {padding:0 15px 0 15px;}
}

@media screen and (max-width: 599px) {
	.promo .start-quote button, .quote-but {padding:7px 5px 7px 10px;}
}

@media screen and (max-width: 600px) {
	.promo .details,.promo .start-quote {border-radius:0 !important;}
	
}


@media screen and (max-width: 400px) {.promo .start-quote h2 {font-size:1.3em; max-width:245px;}}

.promo .info {align-items: center; align-items: stretch; }
.start-quote {justify-content: center;}
.promo .info .details {      
/*padding: 35px 250px 25px 50px;*/ background-image:url("../images/ip-number-1.png"); background-size:150px; background-repeat:no-repeat; background-position:100% 50%;}
.promo h1 {max-width:500px; font-size:34px;}
.promo .details .headline p {max-width:500px; font-size:30px;}
.promo .security {max-width:500px;}


@media screen and (max-width: 1199px) {
.promo .submit-wrapper {}
	.promo .start-quote .submit-wrapper button {width:65%;} 
.promo .start-quote .submit-wrapper div {font-size:12px; padding-top:5px;} 

.promo h1 {max-width:410px; font-size:34px;}
.promo .details .headline p {max-width:410px; font-size:30px;}

.promo .info .details {      
background-size:150px; background-position:100% 0%;}

 .promo .security {max-width:none; font-size:22px;}
 
  .promo .start-quote h2 {font-size:34px;}


}

@media screen and (min-width:600px) and (max-width: 767px) {
.promo .start-quote .submit-wrapper div {font-size:16px; } 
}

@media screen and (max-width: 991px) {
.new-header {padding:25px;}
.new-header h3 br {display:block;}
.new-header h3 {font-size:24px; line-height:120%; }
}

@media screen and (max-width: 899px) {
.promo .details .headline p {max-width:330px;}
.promo .security {font-size:17px;}
}

@media screen and (max-width: 849px) {
.promo .info .details {background-size:140px;}
.promo .start-quote h2 {font-size:30px;}
    .promo .details .headline p { font-size: 27px; max-width:285px;}
}

@media screen and (max-width: 767px) {
.new-header img {max-width:200px;}

.promo .info .details {padding-right:160px; background-size:contain; background-position: 97% 50%;}
.promo h1,.promo .details .headline p {max-width: none;}
.promo .details .headline p {font-size:22px;}






}

@media screen and (max-width: 649px) {
.new-header {padding:25px;}
.new-header h3 {font-size:18px; }
}
@media screen and (max-width: 549px) {
.new-header {padding:15px;}
.new-header h3 {font-size:16px; }
}

@media screen and (max-width: 484px) {
.promo .info .details {padding-right:120px; background-size:contain; background-position: 98% 50%;}
}
.promo h1 {font-size:30px;}



@media screen and (max-width: 449px) {
    .new-header img {max-width:175px;}
.new-header {padding:15px;}
.new-header h3 {font-size:15px; }
.promo .start-quote h2 {max-width:none; font-size:24px;}



}
@media screen and (max-width: 399px) {
    .new-header img {max-width:150px;}
.new-header {padding:10px;}
.new-header h3 {font-size:14px; }
.promo .details .headline p { font-size: 20px;  }
.promo h1 { font-size: 24px;}

}
@media screen and (max-width: 349px) {
    .new-header img {max-width:140px;}
.new-header {padding:10px;}
.new-header h3 {font-size:12px; }
.promo .details .headline p { font-size: 17px;  }
.promo h1 { font-size: 21px;}
.promo .start-quote h2 {font-size:22px;}

}

