html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #0e3150
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}

body {
    color: rgba(0, 0, 0, 0.99);
    font-family: 'Poppins', sans-serif;
}

body * {
    box-sizing: border-box;
    font-style: normal
}

a,
a:active,
a:hover {
    text-decoration: none
}

/* base */
h1, h2, h3, h4 {
    color: #000;
    margin-bottom: 5px;
}

h1 span, h2 span, h3 span, h4 span {
    border-bottom: 5px solid #0089f2;
}

.button {
    background: rgb(195,7,63);
    background: -moz-linear-gradient(90deg, rgba(195,7,63,1) 0%, rgba(230,11,11,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(195,7,63,1) 0%, rgba(230,11,11,1) 100%);
    background: linear-gradient(90deg, rgba(195,7,63,1) 0%, rgba(230,11,11,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c3073f",endColorstr="#e60b0b",GradientType=1);
    box-shadow: 3px 3px 5px #eee;
    color:  #fff;
    padding:  10px 40px;
    font-weight: bold;
    font-size:  16px;
    border-radius: 10px;
    text-align: center;
    text-shadow: 0px 0px 1px #40850d;
}

.button .fas {
    margin-left: 15px;
    animation: arrowAn 2s infinite;
}

@keyframes arrowAn {
  0% { transform: translate3d(0px, 0px, 0px);}
  50% { transform: translate3d(3px, 0px, 0px);}
  100% { transform: translate3d(0px, 0px, 0px);}
}

.button:hover {
    background: rgb(253,47,115);
}

.button:hover .fas {
    animation: arrowAnHover 2s infinite;
}

@keyframes arrowAnHover {
  0% { transform: translate3d(0px, 0px, 0px);}
  50% { transform: translate3d(15px, 0px, 0px);}
  100% { transform: translate3d(0px, 0px, 0px);}
}

/* page header and navigation */
.header {
    padding: 10px 0px;
    width: 100%;
    max-height: 65px;
    position: relative;
    z-index: 999;
}
.header .logo {
    float:  left;
}
.header .logo img {
    max-height: 45px;
    float: left;
}
.header .row [class^="col"] {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* hero */
.hero {
    width: 100%;
    margin-top:  -65px;
    position: relative;
    z-index: 1;
    background: #FFEEF4;
    padding: 100px 0px 50px 0px;
    color: #000;
    margin-bottom: 0px;
    position: relative;
}
.hero h1 {
    margin:0px 0px 10px 0px;
}
.hero h1 span {
    border-bottom: 5px solid #000;
}
.hero .text {
    line-height: 32px;
}

.hero .image_bottom {
    position: absolute;
    bottom: -100px;
    max-height: 350px;
    margin-left: 100px;
}

.hero .image_center {
    width: 100%;
    text-align: center;
}

.hero .image_center img {
    position: absolute;
    top: 50%;
    max-height: 300px;
    text-align: center;
    transform: translate(0%, -60%);
}

/* landers */
.landers {
    width: 100%;
    padding: 50px 0px 100px 0px;
}

.landers .text {
    margin-bottom: 30px;
    padding: 0px 150px;
}

.landers .lander-items [class^="col"]{
    margin-top: 0px;
    margin-bottom: 5px;
}

.landers .lander-items a {
    background: #f7f7f7;
    display: block;
    padding: 10px 10px;
    font-size: 14px;
    color: #000;
}

.landers .lander-items a img {
    max-height: 20px;
    float: left;
    margin-right: 10px;
}

.landers .lander-items a:hover {
    background: #efeded;
}

/* categories */

.categories {
    background: #eaf0fb;
    width: 100%;
    padding: 50px 0px;
}

.categories .text {
    margin-bottom: 30px;
    padding: 0px 150px;
}
.categories .row {
    text-align: center;
}
.categories .col-4 {
    float: none;
    display: inline-block;
}
.categories .cat {
    float: left;
    background: #000;
    width: 100%;
    padding: 20px;
    color: #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.categories .image {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 10px;
}

.categories .cat h4 {
    color: #fff;
    margin: 0px 0px 5px 0px;
}
.categories .cat p {
    margin-top: 0px;
    font-size:  14px;
}
.categories .button {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

/* content image */
.content_image {
    width: 100%;
    padding: 75px 0px;
    background: #f9f9f9;
}
.content_image.purple {
    background: #eaf0fb;
}
.content_image .button {
    display: inline-block;
    margin-top: 20px;
}
.content_image .image-fit {
    text-align: center;
}
.content_image .image-cover {
    width: 100%;
    height: 475px;
    border-radius: 15px;
}
.content_image h3 {
    margin-top: 0px;
    font-size: 32px;
}

.content_image p {
    font-size:  16px;
    margin-bottom: 20px;
}

/* blogs */
.blogs {
    width: 100%;
    padding: 50px 0px 75px 0px;
}

.blogs.purple {
    background: #eaf0fb;
}

.blogs .text {
    margin: 20px 0px;
    padding: 0px 150px;
}
.blogs .row {
    text-align: center;
}

.blogs .article {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    float: left;
    width: 100%;
    background: #fff;
}

.blogs .article-content {
    width: 100%;
    padding: 20px;
    display: inline-block;
}

.blogs .article-image {
    width: 100%;
    height: 220px;
    float:  left;
}

.blogs .article-content h3 {
    margin: 0px;
}

.blogs .article-content p{
    font-size:  12px;
    color: rgba(0, 0, 0, 0.5);
}

.blogs .read-more {
    font-weight: bold;
    font-size:  14px;
    color: #0089f2;
}

/* footer */
.footer {
    width: 100%;
    float:  left;
    background: #FFEEF4;
    padding: 50px 0px 25px 0px;
    color: #000;
}
.footer .logo img {
    max-height: 45px;
    max-width: 90%;
}
.footer .motto {
    font-size:  14px;
}

.footer h4 {
    margin: 0px;
    color: #fff;
    padding: 10px 0px 0px 0px;
}

.footer ul {
    padding:  27px 0px;
    margin: 0px;
    list-style: none;
}
.footer ul a {
    color: #fff;
    font-size:  14px;
}

.footer ul a:hover {
    color: #0089f2;
}

/* top 5 */
.top5 {
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 75px 0px;
    background: #FFEEF4;
}

.top5.in-blog {
    padding-top: 10px;
}

.top5.first-item {
    padding-top: 0px;
}

.top5 .edited {
    color: #000;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    margin-top: -30px;
    margin-left: 10px;
}

.lander-items .col-12 {
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 5px;
}

.top5 .edited span {
    font-weight: 300;
}

.top5 .partner {
    display: block;
    border: 1px solid #eee;
    float: left;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    border-radius: 25px;
}

.top5 .partner:hover {
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.top5 .partner.first {
    border: 3px solid #FFC629;
    background: rgb(255 245 217);
}

.top5 .partner .num {
    width: 40px;
    float: left;
    min-height: 160px;
    height: 100%;
    position: relative;
    background: #eee;
    color: #000;
    border-radius: 21px 0px 0px 21px;
}

.top5 .partner.first .num {
    background: #FFC629;
    color: #000;
}

.top5 .partner .num span {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(0%, -50%);
    font-size: 21px;
    font-weight: bold;
}

.top5 .partner .brand_image {
    width: 25%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    height: 100%;
    float: left;
}

.top5 .partner .brand_image img {
    max-height: 100%;
    max-width: 220px;
}

.top5 .partner .content {
    width: 35%;
    float: left;
    padding: 30px 0px;
    color: rgba(0, 0, 0, 1);
    min-height: 150px;
}

.top5 .partner .content .text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    font-weight: bold;
}

.top5 .partner .content .usps {
    font-size: 14px;
    margin-bottom: 3px;
}
.top5 .partner .content .usps .usp {
    position: relative;
    padding-left: 18px;
    margin-bottom: 3px;
}
.top5 .partner .content .usps .fas {
    color: #4BBB8B;
    position: absolute;
    top: 3px;
    left: 0px;
}

.top5 .partner .content .usps.cons .fas {
    color: #F00;
    font-size: 16px;
    margin-left: 1px;
    margin-right: 2px;
    top: 1px;
    position: relative;
}

.top5 .partner .score {
    width: 12%;
    text-align: center;
    float: left;
    position: relative;
    min-height: 150px;
}

.top5 .partner .score .score_center {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(0%, -60%);
}

.top5 .partner .score .score_num {
    font-size: 42px;
    font-weight: bold;
    color: #000;
}

.top5 .partner .score .stars {
    color: #fdbb2f;
}

.top5 .partner .score .stars .fas {
    width: 24px;
    height: 24px;
    background: rgb(0, 182, 122);
    color: #fff;
    line-height: 24px;
    margin: 1px;
    border-radius: 4px;
    font-size: 16px;
}

.top5 .partner .cta {
    width: 20%;
    min-height: 150px;
    float: right;
    position: relative;
    box-sizing: border-box;
    margin-right: 20px;
}

.top5 .partner .cta .cta_center {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(0%, -60%);
}
.top5 .partner .cta .button {
    padding: 10px 20px;
}

.top5 .partner .label {
    position: absolute;
    top:  0px;
    left: 40px;
    background: #eee;
    color: #000;
    font-weight: bold;
    padding: 5px 10px 5px 0px;
    border-radius: 0px 0px 10px 0px;
    font-size: 14px;
}

.top5 .partner.first .label {
    background: #FFC629;
}

.top5 .label_extra {
    padding: 10px;
    border: 1px solid #f7e6db;
    background: rgba(212, 89, 0, 0.08);
    font-size: 13px;
    font-weight: bold;
    border-radius: 10px;
    color: #a84712;
    margin: 10px 0px;
}
.top5.purple {
    background: #eaf0fb;
}

.top5 .check {
    display: none;
}

.top5 .check span {
    font-weight: bold;
    width: 100%;
    float:  left;
    margin-bottom: 10px;
    color: #000;
}

.top5 .check .button {
    width: auto;
    position: relative;
    margin:  0px 3px;
    padding: 10px 25px;
    display: inline-block;
}

.top5 .check .button.btn-yes {
    background: #5db918!important;
}

.top5 .check .button.btn-no {
    background: #f00 !important;
}

.best-choice {
    padding-top: 0px;
}

.best-choice h3 {
    text-align: center;
    font-size: 2em;
    width: 100%;
    float: left;
    margin: 0px 0px 30px 0px;
}

.best-choice.top5 .partner.first .num {
    background: #FFC629;
}

.best-choice.top5 .partner.first {
    border: 3px solid #FFC629;
    background: rgb(255 245 217);
}

.best-choice.top5 .partner.first .label {
    background: #FFC629;
}


/* content */
.page-content {
    width: 100%;
    padding: 30px 0px 50px 0px;
}

.page-content.purple {
    background: #eaf0fb;
}

.page-content p {
    font-size: 14px;
    line-height: 32px;
}

.page-content ol {
    font-size: 14px;
    line-height: 32px;
}
.page-content ol li {
    margin-bottom: 10px;
}
.faq-item {
    width: 100%;
    background: #fff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.faq-item .faq-title {
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.faq-item .faq-title .fas {
    float: right;
    margin-top: 4px;
}

.faq-item .faq-content {
    display: none;
}

.faq-item.open .faq-content {
    display: block;
}

.faq-item.open .fas {
    transform: rotate(90deg);
}
.mobile, .tablet {
    display: none;
}

/* single */
.content-single .container, .hero-single .container {
    max-width: 750px;
}

.content-single .article-image {
    width: 100%;
    height: 400px;
    margin-top: -150px;
    z-index: 100;
    position: relative;
}

img[data-lazyloaded]{
    opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.5s;
    -moz-transition: opacity .5s linear 0.5s;
    transition: opacity .5s linear 0.5s;
    opacity: 1;
}

.signup-flow {
    width: 100%;
    height: 100%;
    position: fixed;
    top:  0px;
    left:  0px;
    z-index: 99999;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    display: none;
}

.signup-flow h2 {
    font-size:  28px;
    color: #fff;
}

.signup-flow h3 {
    font-size: 21px;
    color: #fff;
}

.signup-flow .overlay {
    min-height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10;
}

.signup-flow .inner {
    width: 500px;
    border-radius: 10px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    position: relative;
    z-index: 100;
    background: #000;
    text-align: center;
    padding: 20px 20px 40px 20px;
}

.signup-flow .close {
    position: absolute;
    right: 20px;
    top:  10px;
    cursor: pointer;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}
.signup-flow .close:hover {
    color: rgba(0, 0, 0, 0.9);
}
.signup-flow .button {
    cursor: pointer;
    width: auto;
    display: inline-block;
}
.signup-flow .options {
    width: 100%;
    margin: 20px 0px 30px 0px;
}
.signup-flow .option {
    padding: 20px;
    background: #fff;
    display: inline-block;
    border-radius: 10px;
    font-weight: bold;
    min-width: 100px;
    margin: 0px 5px;
    cursor: pointer;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
}
.signup-flow .option:hover {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
}

.signup-flow .option.selected {
    background: rgb(34,106,195);
    background: -moz-linear-gradient(52deg, rgba(34,106,195,1) 0%, rgba(45,177,253,1) 100%);
    background: -webkit-linear-gradient(52deg, rgba(34,106,195,1) 0%, rgba(45,177,253,1) 100%);
    background: linear-gradient(52deg, rgba(34,106,195,1) 0%, rgba(45,177,253,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#226ac3",endColorstr="#2db1fd",GradientType=1);
    color: #fff;
    box-shadow: 0px 4px 3px rgba(45,177,253, 0.4);
}

.signup-flow .quest {
    display: none;
}

.signup-flow .quest_1 {
    display: block;
}
.signup-flow .recommended {
    width: 100%;
    display: block;
}
.signup-flow .quest_finish img {
    max-width: 100%;
    max-height: 90px;
    margin: 20px 0px;
}

.signup-flow .quest_finish h3 {
    margin-top: 0px;
}

.hero-partner .brand {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 20px;
    margin-top: -50px;
}

.hero-partner .brand .top {
    padding: 0px 0px 10px 0px;
    float: left;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.hero-partner .brand .stars {
    float: left;
    margin-top: 5px;
}
.hero-partner .brand .stars .fas {
    margin-right: 2px;
}

.hero-partner .brand-image {    
    padding: 0px 0px;
    float: left;
    width: 100%;
    text-align: center;
}

.hero-partner .brand .button {
    text-align: center;
    display: inline-block;
    width: 100%;
}

.hero-partner .brand-image img {
    max-height: 80px;
    margin-bottom: 10px;
    max-width: 100%;
}

.hero-partner .score {
    background: #0089f2;
    color: #fff;
    float: right;
    border-radius: 3px;
    padding: 5px 10px;
    font-weight: bold;
}

.hero-partner .stars {
    color: #fdbb2f;
}

.hero-partner .kpi-bar {
    width: 98%;
    border-radius: 5px;
    background: #000;
    display: inline-block;
    margin-bottom: -175px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
    color: #fff;
    padding: 20px 0px;
}

.hero-partner .kpi-bar h3 {
    font-size: 18px;
    margin: 0px;
    color: #fff;
}

.hero-partner .kpi-bar span {
    font-size: 18px;
}

.content-partner {
    padding: 100px 0px;
}

.content-partner .box {
    width: 100%;
    display: bock;
    border-radius: 5px;
    padding: 20px;
}

.content-partner .box h4 {
    margin: 0px 0px 10px 0px;
}

.content-partner .box.pros {
    color: #09A789;
    border: 2px solid #09A789;
    background: #f8fcfc;
}

.content-partner .box.cons {
    color: #BC284B;
    border: 2px solid #BC284B;
    background: #fff;
}

.content-partner .box.cons h4 {
    color: #BC284B;
}

.content-partner .box.pros h4 {
    color: #09A789;
}

.content-partner .box .line {
    margin-bottom: 5px;
}

.content-partner .box .line .fas {
    margin-right: 5px;
}

.content-partner .pros-cons .row [class^="col"] {
    margin-left: 0px;
}

.content-partner .size-full {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar {
    background: rgba(0, 0, 0, 0.03);
    padding: 20px;
    width: 100%;
    float: left;
}

.sidebar h4 {
    margin: 0px 0px 20px 0px;
}
.sidebar ul {
    padding: 0px;
    margin: 0px;
}

.sidebar li {
    list-style: none;
    margin-bottom: 5px;
    width: 100%;
    background: #fff;
    display: block;
}

.sidebar li a {
    background: #fff;
    padding: 10px;
    width: 100%;
    display: block;
}

.sidebar li img {
    height: 25px;
}

.sidebar li .stars {
    float: right;
    color: #fdbb2f;
}

.sidebar li .score_num {
    float: right;
    margin-left: 5px;
    color: #000;
    font-weight: bold;
}

.content-partner .reviews-top {
    background: #eee;
    padding: 10px 20px;
    margin-top: 20px;
    font-weight: bold;
}

.content-partner .reviews {
    width: 100%;
    display: block;
    padding: 0px 20px 0px 20px;
    border: 1px solid #eee;
}

.content-partner .reviews .review {
    margin: 20px 0px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 26px;
}

.content-partner .reviews .review:last-child {
    border-bottom: 0px;
}

.content-partner .reviews .name {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    background: #1564BF;
}
.content-partner .reviews .top {
    margin-bottom: 10px;
}
.content-partner .reviews .stars {
    display: inline-block;
}

.content-partner .reviews .stars .fas {
    color: #fdbb2f;
    margin: 0px 1px 0px 1px;
}

.visit-site {
    width: 100%;
    position: fixed;
    bottom: 0px;
    background: #fff;
    z-index: 99999;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.visit-site .brand .stars {
    float: left;
    margin: 16px 10px 0px 15px;
}
.visit-site .brand .stars .fas {
    margin-right: 2px;
}

.visit-site .brand-image {    
    padding: 10px 0px;
    float: left;
    text-align: center;
}

.visit-site .brand .button {
    float: right;
}

.visit-site .brand-image img {
    max-height: 40px;
    max-width: 100%;
}

.visit-site .score {
    background: #0089f2;
    color: #fff;
    float: left;
    border-radius: 3px;
    padding: 5px 10px;
    font-weight: bold;
    margin-top: 12px;
}

.visit-site .brand .button {
    margin-top: 10px;
}

.visit-site .stars {
    color: #fdbb2f;
}

body.el .button {
    font-size: 15px;
}

body.el .button .fas {
    margin-left: 5px;
}

.exit-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99999;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    display: none;
}

.exit-popup .overlay {
    min-height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10;
}

.exit-popup .inner {
    width: 98%;
    text-align: center;
    max-width: 500px;
    padding: 30px;
    border: 3px solid #0089f2;
    background: #fff;
    z-index: 1000;
    position: relative;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

.exit-popup .close {
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #0089f2;
}

.exit-popup .inner h2 {
    margin-top: 0px;
    color: #0089f2;
}

.exit-popup .inner p {
    font-size: 16px;
    line-height: 26px;
}

.exit-popup h3 {
    font-size: 18px;
    margin-bottom: 0px;
}

.exit-popup .button {
    cursor: pointer;
}

.exit-popup img {
    max-width: 100%;
    max-height: 90px;
    margin: 20px 0px;
}
/* tablet */ 
@media only screen and (max-width: 1200px) {
    .top5 .partner .brand_image img {
        max-width: 80%;
    }

    .mobile, .desktop {
        display: none;
    }

    .tablet {
        display: block;
    }
}

@media only screen and (max-width: 990px) {
    .hero {
        padding-top: 70px;
        padding-bottom: 20px;
    }
    .hero .image_bottom {
        max-height: 190px;
        bottom: -20px;
        right:  15px;
    }

    .top5 .partner .brand_image {
        width: 100%;
        height: 100px !important;
        min-height: 100px;
        margin-top: 30px;
    }
    .top5 .partner .brand_image img {
        max-width: 80%;
        max-height: 100px;
    }
    .top5 .partner .score {
        width: 100%;
        height: auto !important;
        margin-top: 10px;
        min-height: 0px;
        position: relative;
        margin-bottom: 10px;
    }

    .top5 .partner .score .score_center {
        position: relative;
        top: 0px;
        width: 100%;
        transform: translate(0%, 0%);
    }

    .top5 .partner .score .score_num {
        display: inline-block;
        position: relative;
        top: 3px;
        color: rgb(0, 182, 122);
        font-size: 21px;
    }

    .top5 .partner .score .stars {
        display: inline-block;
    }

    .top5 .partner .content {
        width: 100%;
        min-height: 20px;
        padding: 0px 20px 0px 20px;
        height: auto !important;
    }

    .top5 .partner .num {
        display: none;
    }

    .top5 .partner .label {
        left: 0px;
        border-radius: 4px 0px 4px 0px;
        padding-left: 15px;
    }

    .top5 .partner .label span {
        display: inline-block;
        font-weight: bold;
        margin-right: 5px;
        font-size: 16px;
    }

    .top5 .partner .cta {
        width: calc(100% - 40px);
        margin: 5px 20px 20px 20px;
        float: left;
        min-height: 0px;
        height: auto !important;
    }

    .top5 .partner .cta .cta_center {
        position: relative;
        transform: translate(0%, 0%);
        top: 0px;
    }

    .landers .text, .categories .text, .blogs .text {
        padding:  0px;
    }

    .content-single .article-image {
        margin-top: -100px;
        height: 250px;
    }

    .hero-single .container .text {
        display: block;
    }

    .signup-flow .inner {
        margin: 20px 2%;
        width: 96%;
        min-height: auto;
    }

    .signup-flow .options {
        margin-bottom: 0px;
    }

    .signup-flow .option {
        margin-bottom: 20px;
    }

    .hero-partner .brand {
        margin-top: -10px;
    }

    .hero-partner .kpi-bar h3 {
        font-size: 14px;
    }
    .content-partner .box .line {
        font-size: 14px;
    }

    .top5 .partner .content .usps .usp {
        position: relative;
        padding-left: 25px;
    }

    .top5 .partner .content .usps .usp .fas {
        position: absolute;
        top: 4px;
        left: 0px;
        font-size: 18px;
    }
}

/* mobile */ 
@media only screen and (max-width: 700px) {
    .desktop, .tablet {
        display: none;
    }

    .hero .edited {
        font-size: 11px;
    }

    .mobile {
        display: block;
    }

    .hero .text {
        display: none;
    }

    .hero .col-7 {
        padding-right: 115px;
    }

    .hero.no-image .text {
        display: block;
        margin-bottom: -40px;
    }

    .hero.no-image img {
        display: none;
    }

    .hero.no-image .col-7 {
        padding-right: 0px;
    }

    .hero.hero-partner .text {
        display: block;
    }

    .hero-partner .brand {
        margin: 0px; 
    }

    .content_image, .top5, .blogs, .footer, .landers, .categories{
        padding: 25px 0px;
    }

    .page-content {
        padding: 5px 0px 20px 0px;
    }
    
    .top5 .partner .content .text {
        display: none;
    }

    .top5 .partner .content .usps {
        line-height: 26px;
    }

    .top5.mobile-small .content {
        display: none;
    }

    .hero h1 {
        font-size: 21px;
    }

    .hero .image_bottom {
        max-height: 140px;
        bottom: -20px;
        right: 7px;
    }

    .top5 .edited {
        margin-top: -20px;
        margin-left: 2px;
        font-size: 10px;
    }

    .header .logo img {
        max-height: 35px;
    }

    .top5 .edited {
        font-size: 10px;
    }

    .signup-flow h2 {
        font-size: 21px;
    }

    .signup-flow h3 {
        font-size: 16px;
    }

    .hero-partner .kpi-bar {
        width: 100%;
        margin-bottom: -115px;
    }

    .hero.hero-partner .col-7 {
        padding-right: 0px;
    }

    .hero-partner .kpi-bar span {
        font-size: 14px;
    }

    .top5 .partner {
        border-radius: 7px;
    }
}  

@media only screen and (max-width: 400px) {
    .top5 .container {
        width: 95%;
    }


    .hero .container, .header .container {
        width: 95%;
    }

    .top5 .row [class^="col"] {
        margin-right: 0px;
    }

    .top5 .row .col-12 {
        width: 98%;
    }

    .top5 .partner .content {
        padding: 0px 10px;
    }

    .top5 .partner .cta {
        margin: 5px 10px 10px 10px;
        width: calc(100% - 20px);
    }
}

@media only screen and (max-width: 600px) {
    .visit-site .brand-image, .visit-site .score, .visit-site .stars {
        display: none;
    }
    .visit-site .button {
        width: 100%;
        margin: 10px 0px;
    }
} 

@media only screen and (max-width: 370px) {
    .hero h1 {
        font-size: 16px;
    }
} 