.tooltipster-base {
    display: -webkit-box;
    display: flex;
    pointer-events: none;
    position: absolute
}

.tooltipster-box {
    -webkit-box-flex: 1;
    flex: 1 1 auto
}

.tooltipster-content {
    box-sizing: border-box;
    max-height: 100%;
    max-width: 100%;
    overflow: auto
}

.tooltipster-ruler {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden
}

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity
}

.tooltipster-fade.tooltipster-show {
    opacity: 1
}

.tooltipster-grow {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-backface-visibility: hidden
}

.tooltipster-grow.tooltipster-show {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.tooltipster-swing.tooltipster-show {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition-timing-function: cubic-bezier(.23, .635, .495, 1);
    -webkit-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
    transition-timing-function: cubic-bezier(.23, .635, .495, 2.4)
}

.tooltipster-fall {
    -webkit-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-fall.tooltipster-initial {
    top: 0 !important
}

.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    transition-property: all;
    top: 0 !important;
    opacity: 0
}

.tooltipster-slide {
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-slide.tooltipster-initial {
    left: -40px !important
}

.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    transition-property: all;
    left: 0 !important;
    opacity: 0
}

@-webkit-keyframes tooltipster-fading {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes tooltipster-fading {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.tooltipster-update-fade {
    -webkit-animation: tooltipster-fading .4s;
    animation: tooltipster-fading .4s
}

@-webkit-keyframes tooltipster-rotating {
    25% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg)
    }
    75% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg)
    }
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes tooltipster-rotating {
    25% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg)
    }
    75% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg)
    }
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

.tooltipster-update-rotate {
    -webkit-animation: tooltipster-rotating .6s;
    animation: tooltipster-rotating .6s
}

@-webkit-keyframes tooltipster-scaling {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes tooltipster-scaling {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.tooltipster-update-scale {
    -webkit-animation: tooltipster-scaling .6s;
    animation: tooltipster-scaling .6s
}

.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid #000;
    border-radius: 4px
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px
}

.tooltipster-sidetip .tooltipster-content {
    color: #fff;
    line-height: 18px;
    padding: 6px 14px
}

.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 10px;
    margin-left: -10px;
    top: 0;
    width: 20px
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    right: 0;
    top: 0;
    width: 10px
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 0;
    width: 10px
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: 0;
    height: 10px;
    margin-left: -10px;
    width: 20px
}

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0
}

.tooltipster-sidetip .tooltipster-arrow-background {
    border: 10px solid transparent
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #565656;
    left: 0;
    top: 3px
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #565656;
    left: -3px;
    top: 0
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #565656;
    left: 3px;
    top: 0
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #565656;
    left: 0;
    top: -3px
}

.tooltipster-sidetip .tooltipster-arrow-border {
    border: 10px solid transparent;
    left: 0;
    top: 0
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #000
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #000
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #000
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #000
}

.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -10px
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -10px
}

.mfp-bg {
    z-index: 1042;
    overflow: hidden;
    background: #0b0b0b;
    opacity: .8
}

.mfp-bg, .mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed
}

.mfp-wrap {
    z-index: 1043;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-ajax-holder .mfp-content, .mfp-inline-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-arrow, .mfp-close, .mfp-counter, .mfp-preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #ccc
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-error .mfp-content, .mfp-s-ready .mfp-preloader {
    display: none
}

button.mfp-arrow, button.mfp-close {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation
}

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:focus, .mfp-close:hover {
    opacity: 1
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    top: 50%;
    margin: -55px 0 0;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:focus, .mfp-arrow:hover {
    opacity: 1
}

.mfp-arrow:after, .mfp-arrow:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: inset transparent
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: .7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px
}

.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
    padding: 40px 0;
    margin: 0 auto
}

.mfp-figure, img.mfp-img {
    line-height: 0
}

.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #444
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-height: 300px), screen and (max-width: 800px) and (orientation: landscape) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(.75);
        transform: scale(.75)
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.slick-slider {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list, .slick-slider {
    position: relative;
    display: block
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list, .slick-slider .slick-track {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after, .slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, footer, header, nav, section {
    display: block
}

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

figcaption, figure {
    display: block
}

figure {
    margin: 1em 40px
}

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

main {
    display: block
}

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

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b, strong {
    font-weight: inherit;
    font-weight: bolder
}

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

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

audio, video {
    display: inline-block
}

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

img {
    border-style: none
}

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

button, input, optgroup, select, textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
    outline: 1px dotted ButtonText
}

input {
    overflow: visible
}

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

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

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    display: table;
    max-width: 100%;
    padding: 0;
    color: inherit;
    white-space: normal
}

progress {
    display: inline-block;
    vertical-align: baseline
}

textarea {
    overflow: auto
}

details {
    display: block
}

summary {
    display: list-item
}

menu {
    display: block
}

canvas {
    display: inline-block
}

[hidden], template {
    display: none
}

@font-face {
    font-family: Roboto Bold;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(roboto-bold-webfont.woff2) format("woff2"), url(roboto-bold-webfont.woff) format("woff")
}

@font-face {
    font-family: Roboto Light;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(roboto-light-webfont.woff2) format("woff2"), url(roboto-light-webfont.woff) format("woff")
}

@font-face {
    font-family: Roboto Regular;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(roboto-regular-webfont.woff2) format("woff2"), url(roboto-regular-webfont.woff) format("woff")
}

@font-face {
    font-family: Roboto Medium;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(roboto-medium.eot);
    src: url(roboto-medium.eot?#iefix) format("embedded-opentype"), url(roboto-medium.woff) format("woff"), url(roboto-medium.ttf) format("truetype"), url(roboto-medium.svg#Roboto\ Medium) format("svg")
}

@font-face {
    font-family: Roboto Condenced Bold;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(robotocondensed-bold-webfont.woff2) format("woff2"), url(robotocondensed-bold-webfont.woff) format("woff")
}

@font-face {
    font-family: Roboto Condenced Light;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(robotocondensed-light-webfont.woff2) format("woff2"), url(robotocondensed-light-webfont.woff) format("woff")
}

@font-face {
    font-family: Roboto Condenced Regular;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(robotocondensed-regular-webfont.woff2) format("woff2"), url(robotocondensed-regular-webfont.woff) format("woff")
}

@font-face {
    font-family: Poppins Regular;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(Poppins-Regular.eot);
    src: url(Poppins-Regular.eot?#iefix) format("embedded-opentype"), url(Poppins-Regular.woff) format("woff"), url(Poppins-Regular.ttf) format("truetype"), url(Poppins-Regular.svg#Poppins\ Regular) format("svg")
}

@font-face {
    font-family: Poppins Light;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(Poppins-Light.eot);
    src: url(Poppins-Light.eot?#iefix) format("embedded-opentype"), url(Poppins-Light.woff) format("woff"), url(Poppins-Light.ttf) format("truetype"), url(Poppins-Light.svg#Poppins\ Light) format("svg")
}

@font-face {
    font-family: Poppins Medium;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(Poppins-Medium.eot);
    src: url(Poppins-Medium.eot?#iefix) format("embedded-opentype"), url(Poppins-Medium.woff) format("woff"), url(Poppins-Medium.ttf) format("truetype"), url(Poppins-Medium.svg#Poppins\ Medium) format("svg")
}

@font-face {
    font-family: Poppins Semibold;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(Poppins-SemiBold.eot);
    src: url(Poppins-SemiBold.eot?#iefix) format("embedded-opentype"), url(Poppins-SemiBold.woff) format("woff"), url(Poppins-SemiBold.ttf) format("truetype"), url(Poppins-SemiBold.svg#Poppins\ Semibold) format("svg")
}

body, button, input, select, textarea {
    color: #36393b;
    font-family: Roboto Regular, Arial, sans-serif;
    font-size: 100%;
    line-height: 1.5
}

body.font-poppins, body.font-poppins .breadcrumb_last, body.font-poppins .post__content strong, body.font-poppins .title, body.font-poppins .widget__author-name, body.font-poppins .widget__authors .widget__title, body.font-poppins button, body.font-poppins input, body.font-poppins select, body.font-poppins textarea {
    font-family: Poppins Regular, Arial, sans-serif
}

p {
    margin-bottom: 1.5em
}

cite, dfn, em, i {
    font-style: italic
}

blockquote {
    margin: 0 1.5em
}

address {
    margin: 0 0 1.5em
}

pre {
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em
}

code, kbd, pre, tt, var {
    font-size: .9375rem
}

abbr, acronym {
    cursor: help
}

ins, mark {
    text-decoration: none
}

big {
    font-size: 125%
}

h1, h2, h3, h4, h5, h6 {
    clear: both
}

a {
    color: #4169e1
}

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

input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=range], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px
}

select {
    border: 1px solid #ccc
}

textarea {
    width: 100%
}

button, input[type=button], input[type=reset], input[type=submit] {
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    color: rgba(0, 0, 0, .8);
    font-size: .75em;
    line-height: 1;
    padding: .6em 1em .4em
}

.whats-is .image {
    display: block;
    margin: 3.75em auto
}

.post__content table {
    width: 100%;
    border: 1px solid;
    border-collapse: collapse
}

@media screen and (max-width: 419px) {
    .post__content table {
        font-size: .875em
    }

    .post__content table [href*=http] {
        display: inline-block;
        overflow: hidden;
        max-width: 100%
    }
}

.post__content table thead {
    text-align: left
}

.post__content table td, .post__content table th {
    padding: .3125em .625em;
    border: 1px solid
}

.post__content table td a:hover, .post__content table th a:hover {
    text-decoration: none
}

.post__content table tbody {
    font-size: .875em
}

#tinymce {
    height: auto;
    min-height: inherit
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%
}

.wp-caption .wp-caption-text {
    margin: .8075em 0
}

.wp-caption-text {
    text-align: center
}

.gallery {
    margin-bottom: 1.5em
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%
}

.gallery-columns-2 .gallery-item {
    max-width: 50%
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%
}

.gallery-columns-4 .gallery-item {
    max-width: 25%
}

.gallery-columns-5 .gallery-item {
    max-width: 20%
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%
}

.gallery-caption {
    display: block
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}

html {
    box-sizing: border-box;
    font-size: 16px;
    overflow-x: hidden
}

*, :after, :before {
    box-sizing: inherit;
    font-weight: 400
}

body {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    align-items: stretch;
    min-height: 100vh;
    font-size: 100%;
    min-width: 20em
}

.content {
    min-height: calc(100vh - 22.6875em);
    background-repeat: no-repeat;
    background-position: top
}

.header-menu-disabled .header__inner, .header-menu-disabled .header__right {
    display: none !important
}

.footer {
    height: 18.9375em
}

@media screen and (min-width: 768px) {
    .mobileonly {
        display: none !important
    }
}

@media screen and (max-width: 767px) {
    .desktoponly {
        display: none !important
    }
}

img {
    max-width: 100%
}

.hidden__object {
    display: none !important
}

@media screen and (max-width: 889px) {
    .mobilehidden.mobilehidden.mobilehidden.mobilehidden {
        display: block;
        visibility: hidden;
        height: 0;
        width: 0;
        padding: 0;
        margin: 0;
        min-height: 0;
        overflow: auto
    }
}

@media screen and (min-width: 768px) {
    .desktophidden.desktophidden.desktophidden.desktophidden {
        visibility: hidden;
        height: 0;
        padding: 0;
        margin: 0;
        min-height: 0;
        overflow: auto
    }
}

.hidden_iframe {
    height: 1px;
    width: 1px;
    margin-bottom: -1px;
    border: none
}

.advertising-disclosure .post__content, .contact, .footer__cookie-decline-text, .footer__disclaimer-text, .how-we-rate-websites .post__content, .post__content--no-select, .privacy-policy .post__content, .terms-and-conditions .post__content, .terms-of-service .post__content {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fix-message {
    display: none !important
}

.mfp-btn-link {
    display: block;
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #fff;
    padding: 1rem;
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
}

.code-block.code-block-2 {
    margin: 0 !important
}

.attachment img[src$=".svg"], .widget_media_image img[src$=".svg"] {
    width: 100%
}

.attachment svg, .widget_media_image svg {
    max-width: 100%;
    height: auto
}

.hamburger {
    position: relative;
    display: none;
    margin-right: .1875em;
    cursor: pointer
}

@media screen and (max-width: 1024px) {
    .hamburger {
        display: block
    }
}

.hamburger__btn {
    position: relative;
    margin-top: .625em;
    margin-bottom: .625em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.hamburger__btn, .hamburger__btn:after, .hamburger__btn:before {
    display: block;
    width: 1.875em;
    height: .3125em;
    background-color: #fff;
    border-radius: 1px;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.hamburger__btn:after, .hamburger__btn:before {
    position: absolute;
    content: ""
}

.hamburger__btn:before {
    top: -.625em
}

.hamburger__btn:after {
    top: .625em
}

.header_light .hamburger__btn {
    position: relative;
    margin-top: .625em;
    margin-bottom: .625em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.header_light .hamburger__btn, .header_light .hamburger__btn:after, .header_light .hamburger__btn:before {
    display: block;
    width: 1.875em;
    height: .1875em;
    background-color: #fff;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.header_light .hamburger__btn:after, .header_light .hamburger__btn:before {
    position: absolute;
    content: ""
}

.header_light .hamburger__btn:before {
    top: -.625em
}

.header_light .hamburger__btn:after {
    top: .625em
}

.header_light .hamburger__btn, .header_light .hamburger__btn:after, .header_light .hamburger__btn:before {
    border-radius: 0
}

.hamburger_opened .hamburger__btn {
    background-color: transparent
}

.hamburger_opened .hamburger__btn:before {
    -webkit-transform: translateY(.625em) rotate(225deg);
    transform: translateY(.625em) rotate(225deg)
}

.hamburger_opened .hamburger__btn:after {
    -webkit-transform: translateY(-.625em) rotate(-225deg);
    transform: translateY(-.625em) rotate(-225deg)
}

.header-bonus {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    z-index: 1
}

.header-menu-disabled .header-bonus {
    -webkit-box-ordinal-group: 2;
    order: 1
}

@media screen and (min-width: 1025px) {
    .header-bonus {
        -webkit-box-ordinal-group: 2;
        order: 1
    }
}

@media screen and (max-width: 1023px) {
    .header-bonus {
        margin-right: 1rem
    }

    .header-bonus:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, .5);
        -webkit-transition: opacity .3s;
        transition: opacity .3s
    }

    .header-bonus.is-open:after {
        opacity: 1;
        visibility: visible
    }
}

.header-bonus__btn {
    position: relative;
    max-width: 2.625rem;
    padding-left: 1.25em;
    cursor: pointer
}

.header-bonus__btn svg {
    display: block;
    max-width: 1.4375rem;
    height: auto
}

.header-bonus__btn-count {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: absolute;
    top: -.375rem;
    left: .625rem;
    width: .9375rem;
    height: .9375rem;
    font-size: .625rem;
    border-radius: 50%;
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in
}

.header-bonus.is-shown .header-bonus__btn-count {
    opacity: 0;
    visibility: hidden
}

.headr-bonus__notice {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    max-width: 17rem;
    background-color: #f9f9f9;
    border: 2px solid #1651bd
}

.headr-bonus__notice-title {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: .4375rem 1.875rem;
    font-weight: 600;
    font-size: 1.0625rem;
    color: inherit
}

.headr-bonus__notice-title span {
    display: inline-block;
    margin-right: .3125rem;
    color: #1651bd
}

.headr-bonus__notice-title b, .headr-bonus__notice-title strong {
    font-family: Roboto Bold, Arial, sans-serif
}

.headr-bonus__notice-title h2, .headr-bonus__notice-title h3, .headr-bonus__notice-title h4, .headr-bonus__notice-title h5, .headr-bonus__notice-title h6, .headr-bonus__notice-title ol, .headr-bonus__notice-title p, .headr-bonus__notice-title ul {
    margin: 0;
    padding: 0;
    font-size: 1.0625rem
}

.header-bonus-list {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.header-bonus-item {
    margin: 0 .1875rem .25rem;
    border: 1px solid #1651bd;
    text-align: center
}

body:not(.desktop-bingo-style) .header-bonus-item span.rate {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
}

body:not(.desktop-bingo-style) .header-bonus-item span.rate, body:not(.desktop-bingo-style) .header-bonus-item span.rate span {
    background-image: url(star-sprite.svg)
}

.header-bonus-item .offered-item__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: .4375rem 1.25rem 1.1875rem;
    border: 0;
    box-shadow: none
}

.header-bonus-item .offered-item__link .offered-item__col {
    width: 100%;
    padding: 0;
    text-align: center
}

.header-bonus-item .offered-item__link .offered-item__image {
    max-width: 5.625rem
}

.header-bonus-item .offered-item__link .offered-item__deal {
    min-height: unset;
    margin-bottom: .25rem;
    font-family: Roboto Regular, Arial, sans-serif
}

.header-bonus-item .offered-item__link .rate {
    margin: .4375rem auto 0
}

.header-bonus-item .offered-item__link .offered-irem-price {
    margin-top: 0
}

.header-bonus-item .offered-item__link .offered-item-old-price {
    font-size: 1.125rem
}

.header-bonus-item .offered-item__link .offered-item-new-price {
    font-size: 1.5rem;
    font-family: Roboto Bold, Arial, sans-serif
}

.header-bonus-item .offered-item__link .offered-item-special-info {
    font-size: .75rem
}

.header-bonus-item .offered-item__link .btn--offered {
    width: 100%;
    max-width: 13.4375rem;
    margin: 0 auto;
    background-color: #1651bd
}

.headr-bonus__notice-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    padding: .4375rem;
    border: 0;
    background-color: transparent;
    color: #1651bd;
    font-size: 1.1875rem;
    font-family: Roboto Bold, Arial, sans-serif;
    line-height: .8;
    cursor: pointer;
    outline: none;
    -webkit-transition: opacity .2s;
    transition: opacity .2s
}

.headr-bonus__notice-close:hover {
    opacity: .8
}

.header-bonus__overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5)
}

@media screen and (min-width: 768px) {
    .headr-bonus__notice--mobile {
        display: none !important
    }
}

@media screen and (max-width: 767px) {
    .headr-bonus__notice--mobile + .headr-bonus__notice--desktop {
        display: none !important
    }
}

.nav {
    -webkit-box-flex: 1;
    flex: 1;
    font-size: 1rem;
    font-family: Roboto Condenced Bold, Arial, sans-serif;
    letter-spacing: .05em;
    margin-left: 10%;
    margin-right: 3%;
    height: 100%
}

@media screen and (max-width: 1024px) {
    .nav {
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width: 599px) {
    .nav {
        height: auto;
        width: 100%
    }
}

.nav__menu {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    height: 100%
}

.nav__menu .sub-menu {
    padding: 0
}

.nav__menu .sub-menu li {
    list-style-type: none
}

.nav__menu .sub-menu li a {
    text-transform: none
}

@media screen and (max-width: 1024px) {
    .nav__menu {
        -webkit-box-pack: center;
        justify-content: center
    }

    .nav__menu .menu-item-has-children {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap
    }

    .nav__menu .menu-item-has-children a {
        padding-bottom: .3125em
    }

    .nav__menu .sub-menu {
        width: 100%;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        padding-bottom: .625em
    }

    .nav__menu .sub-menu li {
        width: 100%;
        background-color: transparent !important;
        padding: .1875em 1.25em
    }

    .nav__menu .sub-menu li a {
        padding: 0;
        border-bottom: 0
    }
}

@media screen and (max-width: 599px) {
    .nav__menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

@media screen and (min-width: 1025px) {
    .nav__menu .sub-menu {
        position: absolute;
        top: 100%;
        left: -1.25em;
        min-width: 12.5rem;
        z-index: 2;
        opacity: 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        pointer-events: none;
        visibility: visible;
        overflow: visible;
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
        background-color: #fff
    }

    .header_fixed .nav__menu .sub-menu {
        background-color: transparent
    }

    .nav__menu .sub-menu li {
        padding: .25em 1.25em
    }

    .nav__menu .sub-menu li:last-child {
        padding-bottom: .5625em
    }

    .nav__menu .sub-menu li a {
        text-transform: none;
        line-height: 1.2;
        font-family: Roboto Regular, Arial, sans-serif
    }

    .nav__menu .sub-menu li.current-menu-item a, .nav__menu .sub-menu li a:hover {
        opacity: .6
    }

    .nav__menu > li:hover .sub-menu {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        pointer-events: auto
    }
}

.nav__menu > li {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    height: 100%;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center
}

@media screen and (max-width: 1024px) {
    .nav__menu > li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #fff
    }

    .nav__menu > li.current-menu-item {
        background-color: #fff;
        color: #2a64b6
    }
}

.nav__menu > li:not(:last-child):after {
    flex-shrink: 0;
    content: "";
    position: relative;
    top: -.0625em;
    display: inline-block;
    width: 1px;
    height: 1.125em;
    background-color: #cadbf5;
    margin: 0 .5625em
}

@media screen and (max-width: 1024px) {
    .nav__menu > li:not(:last-child):after {
        display: none
    }
}

.nav__menu > li .sub-menu a {
    padding-left: .3125rem;
    padding-right: .3125rem
}

.nav__menu a {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    color: inherit;
    text-decoration: none;
    -webkit-transition: .25s;
    transition: .25s
}

@media screen and (max-width: 1024px) {
    .nav__menu a {
        padding: .625em
    }
}

.header_light .nav {
    font-family: Poppins Regular, Arial, sans-serif;
    letter-spacing: 0
}

.header_light .nav__menu li {
    text-transform: none
}

.header_light .nav__menu li.current-menu-item {
    color: #fbd07d
}

@media screen and (min-width: 1024px) {
    .header_light .nav__menu li {
        margin-left: 1.25em
    }
}

.header_light .nav__menu li:after {
    display: none
}

.header_light .nav__menu li a:hover {
    opacity: .8
}

.jumbotron {
    padding-top: 6vw;
    padding-bottom: 6vw
}

@media screen and (min-width: 1366px) {
    .jumbotron {
        padding-top: 5.5625em;
        padding-bottom: 5.6875em
    }
}

@media screen and (max-width: 767px) {
    .jumbotron {
        padding-left: .625em;
        padding-right: .625em
    }
}

@media screen and (max-width: 419px) {
    .jumbotron {
        padding-top: 2.1875em;
        padding-bottom: 2.1875em
    }
}

.jumbotron__inner {
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    max-width: 86.625em;
    margin: 0 auto
}

@media screen and (max-width: 767px) {
    .jumbotron__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

@media screen and (max-width: 419px) {
    .jumbotron__inner {
        font-size: .82em
    }
}

.jumbotron__image {
    width: 35.3%;
    min-width: 18.75em;
    margin-right: 1.9375em;
    margin-left: 1.9375em
}

@media screen and (max-width: 1023px) {
    .jumbotron__image {
        width: 46.3%;
        margin-left: 0
    }
}

@media screen and (max-width: 767px) {
    .jumbotron__image {
        margin-bottom: 1.25em;
        margin-left: 0;
        margin-right: 0
    }
}

.jumbotron__content {
    margin-top: -1.3125em
}

@media screen and (max-width: 767px) {
    .jumbotron__content {
        margin-top: 0;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center
    }
}

.jumbotron__content .title {
    position: relative;
    left: -2px;
    margin-bottom: 1.625rem
}

@media screen and (max-width: 767px) {
    .jumbotron__content .title {
        margin-bottom: .625rem
    }
}

@media screen and (max-width: 1023px) {
    .hero__container.hero__container {
        width: 100%;
        padding: 0
    }
}

.hero {
    overflow: auto;
    padding: 0 .3125em;
    margin-bottom: .3125em;
    -webkit-transition: .3s;
    transition: .3s
}

@media screen and (max-width: 1099px) {
    .hero {
        font-size: .9em
    }
}

@media screen and (max-width: 969px) {
    .hero {
        font-size: .8em
    }
}

@media screen and (min-width: 374px) and (max-width: 589px) {
    .hero {
        font-size: 2.14vw
    }
}

@media screen and (max-width: 1023px) {
    .hero {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        align-items: center;
        overflow: initial
    }
}

@media screen and (max-width: 373px) {
    .hero {
        padding: 0
    }
}

.hero_nomargin {
    position: relative;
    margin-bottom: 0;
    overflow: initial;
    min-height: 11.125em;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center
}

.hero_nomargin:after {
    content: "";
    display: table;
    clear: both
}

.hero_nomargin .hero__subtitle:last-child {
    margin-bottom: 1em
}

.hero_nomargin .hero__title {
    margin-top: .3125em
}

@media screen and (max-width: 1023px) {
    .hero_nomargin .hero__title {
        width: 100%
    }
}

.hero_nomargin .hero__image, .hero_nomargin .hero__video {
    position: absolute;
    right: 0;
    height: calc(100% + 3.75rem);
    top: -3.75rem;
    margin-top: 0;
    margin-right: 0
}

.hero_nomargin .hero__image:after, .hero_nomargin .hero__image:before, .hero_nomargin .hero__video:after, .hero_nomargin .hero__video:before {
    content: "";
    display: block;
    width: 10%;
    height: 100%;
    position: absolute;
    left: -.0625rem;
    top: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
    background-image: linear-gradient(90deg, #fff 0, transparent)
}

.hero_nomargin .hero__image:after, .hero_nomargin .hero__video:after {
    content: "";
    right: 0;
    left: auto;
    background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(transparent));
    background-image: linear-gradient(270deg, #fff 0, transparent)
}

.hero_nomargin .hero__image img, .hero_nomargin .hero__video img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center";
    height: 100%;
    display: block
}

.hero_nomargin .hero__video {
    top: 0;
    height: 100%
}

@media screen and (max-width: 1023px) {
    .hero_nomargin .hero__image, .hero_nomargin .hero__video {
        position: relative;
        margin-bottom: -3.75rem;
        height: auto
    }

    .hero_nomargin .hero__image img, .hero_nomargin .hero__video img {
        height: auto
    }
}

.hero_nomargin .hero__list {
    margin-top: .3125em;
    margin-bottom: 1.5625em
}

@media screen and (max-width: 1023px) {
    .hero_nomargin .hero__image, .hero_nomargin .hero__video {
        -webkit-box-ordinal-group: 2;
        order: 1
    }

    .hero_nomargin .hero__list {
        margin-bottom: .625em
    }
}

@media screen and (max-width: 767px) {
    .hero_nomargin .hero__image, .hero_nomargin .hero__video {
        margin-bottom: 0
    }
}

.hero_noimage, .page-background .hero__container {
    margin-bottom: 1.25em
}

.hero_noimage + .container .grid, .hero_noimage + .footer__cookie-decline-text .grid, .hero_noimage + .footer__disclaimer-text .grid, .page-background .hero__container + .container .grid, .page-background .hero__container + .footer__cookie-decline-text .grid, .page-background .hero__container + .footer__disclaimer-text .grid {
    margin-top: 0 !important
}

.hero_noimage .hero, .page-background .hero__container .hero {
    min-height: unset
}

.hero_noimage .hero .hero__subtitle, .hero_noimage .hero .hero__title, .page-background .hero__container .hero .hero__subtitle, .page-background .hero__container .hero .hero__title {
    float: none;
    max-width: 100%
}

.hero_noimage .hero .hero__subtitle:last-child, .page-background .hero__container .hero .hero__subtitle:last-child {
    margin-bottom: 0
}

.hero_noimage_mob .hero__text {
    position: static
}

@media screen and (max-width: 1023px) {
    .hero_noimage_mob .hero__text {
        padding-top: 1.875em
    }
}

@media screen and (max-width: 1023px) {
    .hero__text {
        margin-bottom: 1.25em;
        background-color: hsla(0, 0%, 100%, .75);
        bottom: 0;
        left: 0;
        position: absolute;
        width: 100%
    }
}

.hero__title {
    font-size: 2.625em;
    margin: .7142857143em 0 0;
    line-height: 1.2;
    color: #2a64b6;
    float: left;
    clear: left;
    max-width: 60%;
    -webkit-transition: .15s;
    transition: .15s
}

.service-ipinfo .hero__title {
    opacity: 0
}

@media (-ms-high-contrast: active),(-ms-high-contrast: none) {
    .service-ipinfo .hero__title {
        opacity: 1
    }
}

@supports (-ms-accelerator:true) {
    .service-ipinfo .hero__title {
        opacity: 1
    }
}

@media screen and (max-width: 1023px) {
    .hero__title {
        max-width: 100%;
        text-align: center;
        -webkit-box-ordinal-group: 2;
        order: 1;
        margin-bottom: .0833333333em;
        font-size: 3.0625em
    }
}

@media screen and (max-width: 599px) {
    .hero__title {
        float: none;
        font-size: 1.5rem;
        margin-bottom: .1944444444em;
        line-height: 1
    }
}

.hero__title--lg {
    font-size: 3.125em
}

.hero__title--sm {
    font-size: 2.25em
}

.hero__title--xs {
    font-size: 1.875em
}

@media screen and (max-width: 767px) {
    .hero__title--xs {
        font-size: 2.25em
    }
}

.hero__subtitle {
    font-size: 1.25em;
    margin: 0;
    float: left;
    clear: left;
    max-width: 60%;
    font-family: Roboto Light, Arial, sans-serif;
    opacity: 0;
    -webkit-transition: .15s;
    transition: .15s
}

@media (-ms-high-contrast: active),(-ms-high-contrast: none) {
    .hero__subtitle {
        opacity: 1
    }
}

@supports (-ms-accelerator:true) {
    .hero__subtitle {
        opacity: 1
    }
}

.hero__subtitle span {
    vertical-align: middle
}

@media screen and (max-width: 1023px) {
    .hero__subtitle {
        float: none;
        max-width: 100%;
        text-align: center;
        -webkit-box-ordinal-group: 2;
        order: 1;
        font-size: 1.6875em
    }
}

@media screen and (max-width: 767px) {
    .hero__subtitle {
        font-size: 1.625em;
        margin-bottom: .3125rem
    }
}

@media screen and (max-width: 599px) {
    .hero__subtitle {
        font-size: 1rem;
        line-height: 1.3
    }
}

.hero__subtitle--lg {
    font-size: 1.875em
}

.hero__subtitle--sm {
    font-size: 1.125em
}

.hero__subtitle--xs {
    font-size: 1em
}

.hero__subtitle_big {
    font-family: Roboto Regular, Arial, sans-serif;
    font-size: 1.1875rem;
    line-height: 1.2
}

@media screen and (max-width: 599px) {
    .hero__subtitle_big {
        font-size: .9375rem
    }
}

.hero__list {
    list-style-type: none;
    margin: .9375em 0;
    padding-left: .4375em;
    float: left;
    clear: left;
    max-width: 60%
}

@media screen and (max-width: 1023px) {
    .hero__list {
        float: none;
        font-size: 1.5625em;
        line-height: 1.55;
        margin-top: .76em;
        margin-bottom: .6em;
        max-width: 100%;
        -webkit-box-ordinal-group: 2;
        order: 1;
        padding-left: .9375em
    }

    .hero__list svg {
        width: .8em;
        height: .8em
    }
}

@media screen and (max-width: 419px) {
    .hero__list {
        margin-bottom: .5em;
        font-size: .75rem;
        line-height: 1.6
    }

    .hero__list, .hero_nomargin .hero__list {
        margin-top: .5em
    }
}

.hero__list--lg {
    font-size: 1.125em
}

.hero__list--sm {
    font-size: .9375em
}

.hero__list--sm svg {
    width: .9333333333em
}

.hero__list--xs {
    font-size: .875em
}

.hero__list--xs svg {
    width: .8571428571em
}

.hero__item i {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 1.4375em;
    height: 1.4375em;
    border-radius: 50%;
    margin-right: .3125em
}

.hero__item i img, .hero__item i svg {
    display: block;
    width: 60%;
    height: 60%;
    margin: 0
}

@media screen and (max-width: 599px) {
    .hero__item i {
        width: 1.4375em;
        height: 1.4375em
    }
}

.hero__image, .hero__video {
    float: right;
    margin: 2.4375em 0 0;
    max-width: 40%
}

@media screen and (min-width: 374px) and (max-width: 767px) {
    .hero__image, .hero__video {
        max-height: none
    }
}

@media screen and (max-width: 1023px) {
    .hero__image, .hero__video {
        float: none;
        max-width: 100%;
        text-align: center;
        -webkit-box-ordinal-group: 11;
        order: 10;
        margin-top: .5625em;
        display: none
    }
}

@media screen and (max-width: 373px) {
    .hero__image, .hero__video {
        padding-left: .625em;
        padding-right: .625em
    }
}

.hero__image-mobile.hero__image-mobile, .hero__video {
    display: none
}

@media screen and (max-width: 1023px) {
    .hero__image-mobile.hero__image-mobile, .hero__video {
        display: block;
        min-height: 17.5rem
    }

    .hero__image-mobile.hero__image-mobile img, .hero__video img {
        min-height: 17.5rem
    }
}

.flag {
    width: 1.875rem;
    height: 1.25rem;
    margin: 0 .125rem;
    vertical-align: middle
}

.service-ipinfo .flag {
    box-shadow: 0 0 2px rgba(0, 0, 0, .2)
}

.hero__badge {
    display: none
}

@media screen and (max-width: 767px) {
    .hero .hero__badge--in-table-mob {
        display: none !important
    }
}

.device-image {
    vertical-align: middle;
    width: 1.5625em;
    height: 1.5625em
}

@media screen and (min-width: 1024px) {
    .hero__text_withbadge {
        position: relative
    }

    .hero__text_withbadge .hero__title {
        margin-top: 1.5625rem
    }

    .hero__text_withbadge .hero__subtitle, .hero__text_withbadge .hero__title {
        width: calc(60% - 8.8125rem)
    }

    .hero__badge {
        display: block;
        width: 8.8125em;
        height: 8.625em;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: cover; object-position: center"
    }

    .hero__badge + .hero__list {
        float: none;
        margin-top: -3.625rem
    }
}

.hero_has-color .hero__list, .hero_has-color .hero__subtitle, .hero_has-color .hero__title {
    color: inherit
}

.hero__video {
    position: relative;
    display: block;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%
}

@media screen and (max-width: 1023px) {
    .hero__video {
        position: relative !important
    }
}

.hero__video video {
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.hero__video:after, .hero__video:before {
    z-index: 1
}

.hero.hero_video_enable {
    min-height: 16.5em
}

@media screen and (max-width: 1023px) {
    .hero.hero_video_enable {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse
    }

    .hero.hero_video_enable .hero__video {
        height: 62vw;
        min-height: unset
    }

    .hero.hero_video_enable .hero__text {
        position: static
    }
}

.hero__video-loader {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    width: 1.75em;
    height: 1.75em;
    opacity: .5
}

@media screen and (max-width: 1023px) {
    .hero__video-loader {
        display: none !important
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.hero__video-loader svg {
    width: 100%;
    height: 100%;
    -webkit-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite
}

.hero__video-nav {
    position: absolute;
    right: .625em;
    bottom: .625em;
    z-index: 2
}

.hero__video-nav, .hero__video-nav-btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.hero__video-nav-btn {
    position: relative;
    -webkit-box-pack: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    padding: 0;
    margin-left: .375em;
    border-radius: 50%;
    border: 0;
    background-color: hsla(0, 0%, 100%, .8);
    outline: none;
    cursor: pointer
}

.hero__video-nav-btn--mute:after {
    content: "";
    opacity: 0;
    position: absolute;
    top: 53%;
    right: 43%;
    -webkit-transform: translate(50%, -47%) rotate(45deg);
    transform: translate(50%, -47%) rotate(45deg);
    width: 1px;
    height: 70%;
    background-color: red
}

.hero__video-nav-btn--mute.is-active:after {
    opacity: 1
}

.hero__video-nav-btn--mute svg {
    width: 50%;
    height: 50%
}

.hero__video-nav-btn--play:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
}

.hero__video-nav-btn--play.is-active:before {
    width: .375rem;
    height: .6875rem;
    border-left: 2px solid #43c55f;
    border-right: 2px solid #43c55f
}

.hero__video-nav-btn--play:not(.is-active):before {
    display: inline-block;
    height: 0;
    width: 0;
    -webkit-transform: rotate(1turn);
    border-color: transparent transparent transparent #43c55f;
    border-style: solid;
    border-width: .375rem 0 .375rem .6875rem;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
}

@media screen and (max-width: 1023px) {
    .hero__video-nav-btn--play {
        display: none
    }
}

.hero__video-play {
    display: none;
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in
}

.hero__video-play svg {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 1023px) {
    .hero__video-play {
        display: block
    }

    .hero__video-play.is-hidden {
        opacity: 0
    }
}

@media screen and (max-width: 767px) {
    .hero__video-play {
        width: 2.875rem;
        height: 2.875rem
    }
}

.hero__gallery {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 46%;
    padding: .5em 0
}

.hero__gallery .slick-list, .hero__gallery .slick-track {
    height: 100%
}

@media screen and (max-width: 889px) {
    .hero__gallery {
        display: none
    }
}

.hero__gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center"
}

.page-background .hero__container {
    margin-bottom: 0;
    padding-left: .625em;
    padding-right: .625em
}

.page-background .hero {
    display: block;
    height: 15.625rem;
    margin-bottom: 0;
    padding: 0
}

.page-background .hero.hero_gallery_enable {
    height: 12.625rem
}

@media screen and (min-width: 970px) and (max-width: 1365px) {
    .page-background .hero {
        font-size: .9em
    }
}

@media screen and (max-width: 889px) {
    .page-background .hero {
        height: 16.25rem
    }

    .page-background .hero.hero_without-points {
        height: auto
    }

    .page-background .hero.hero_without-points .hero__text {
        padding-bottom: 1.1875rem
    }

    .page-background .hero .hero__title--lg {
        font-size: 3.375em
    }

    .page-background .hero .hero__title--sm {
        font-size: 2.625em
    }

    .page-background .hero .hero__title--xs {
        font-size: 2em
    }

    .page-background .hero .hero__subtitle {
        font-family: Roboto Regular, Arial, sans-serif
    }
}

@media screen and (max-width: 599px) {
    .page-background .hero {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -webkit-box-align: end;
        align-items: flex-end;
        height: 14.0625rem
    }
}

@media screen and (max-width: 379px) {
    .page-background .hero {
        font-size: .55em
    }
}

.page-background .hero__badge {
    display: none
}

.page-background .hero__image, .page-background .hero__video {
    display: none;
    position: static;
    margin: 0;
    width: 40%;
    height: 100%
}

@media screen and (max-width: 599px) {
    .page-background .hero__image.hero__image-mobile.hero__image-mobile, .page-background .hero__video {
        position: absolute;
        top: 0;
        right: 0;
        flex-shrink: 0;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        padding: 0;
        height: 100%;
        width: auto;
        min-height: unset
    }

    .page-background .hero__image.hero__image-mobile.hero__image-mobile img, .page-background .hero__video img {
        min-height: unset;
        width: 7.75rem;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: bottom;
        object-position: bottom;
        font-family: "object-fit: contain; object-position: bottom"
    }
}

@media screen and (max-width: 599px) and (max-width: 359px) {
    .page-background .hero__image.hero__image-mobile.hero__image-mobile img, .page-background .hero__video img {
        width: 6.875rem
    }
}

@media screen and (max-width: 599px) {
    .page-background .hero__image.hero__image-mobile.hero__image-mobile + .hero__text, .page-background .hero__video + .hero__text {
        display: block;
        padding-bottom: .875rem;
        padding-right: 7.75rem
    }
}

@media screen and (max-width: 599px) and (max-width: 359px) {
    .page-background .hero__image.hero__image-mobile.hero__image-mobile + .hero__text, .page-background .hero__video + .hero__text {
        padding-right: 6.25rem
    }
}

.page-background .hero__image img, .page-background .hero__video img {
    width: 100%
}

.page-background .hero__image:after, .page-background .hero__image:before, .page-background .hero__video:after, .page-background .hero__video:before {
    display: none
}

.page-background .hero__text {
    position: static;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background-color: transparent;
    margin-bottom: 0
}

@media screen and (max-width: 889px) {
    .page-background .hero__text {
        height: 100%;
        max-width: 36rem;
        margin: 0 auto;
        padding-top: .375em
    }
}

@media screen and (max-width: 599px) {
    .page-background .hero__text {
        padding-top: .9375rem
    }
}

.page-background .hero__title {
    margin-bottom: 0
}

.page-background .hero__list, .page-background .hero__subtitle, .page-background .hero__title {
    width: 100%;
    text-align: center
}

.page-background .hero__subtitle, .page-background .hero__title {
    line-height: 1.1;
    font-size: 2.625em
}

@media screen and (max-width: 889px) {
    .page-background .hero__subtitle, .page-background .hero__title {
        text-align: left
    }
}

.page-background .hero__title--lg, .page-background .hero__title--lg + .hero__subtitle {
    font-size: 3em
}

.page-background .hero__title--sm, .page-background .hero__title--sm + .hero__subtitle {
    font-size: 2.25em
}

.page-background .hero__title--xs, .page-background .hero__title--xs + .hero__subtitle {
    font-size: 2em
}

.page-background .hero__subtitle.hero__subtitle--lg {
    font-size: 2em;
    margin-top: .25em
}

.page-background .hero__subtitle.hero__subtitle--sm {
    font-size: 1.625em;
    margin-top: .3076923077em
}

.page-background .hero__subtitle.hero__subtitle--xs {
    font-size: 1.375em;
    margin-top: .2727272727em
}

@media screen and (max-width: 599px) {
    .page-background .hero__subtitle.hero__subtitle.hero__subtitle {
        margin-top: 0
    }

    .page-background .hero__subtitle.hero__subtitle.hero__subtitle br {
        display: none
    }
}

@media screen and (max-width: 419px) {
    .page-background .hero__title--lg + .hero__subtitle {
        font-size: 2.5em
    }

    .page-background .hero__title--sm + .hero__subtitle {
        font-size: 1.875em
    }

    .page-background .hero__title--xs + .hero__subtitle {
        font-size: 1.5em
    }
}

@media screen and (max-width: 599px) {
    .page-background .hero__title {
        margin: 0 0 .3125rem
    }
}

.page-background .hero__subtitle {
    margin-bottom: 0;
    font-family: Roboto Light, Arial, sans-serif
}

.page-background .hero__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    max-width: 100%;
    padding: 0;
    margin: 2.5rem 0 .625rem
}

@media screen and (max-width: 1365px) {
    .page-background .hero__list {
        margin-top: 1.125rem
    }
}

@media screen and (max-width: 889px) {
    .page-background .hero__list {
        -webkit-box-pack: end;
        justify-content: flex-end;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        height: 100%;
        max-width: 50%;
        margin: 0 0 .3125em
    }
}

.page-background .hero__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0 .875rem .5em 0;
    font-size: 1rem
}

.page-background .hero__item.hero__list--lg {
    font-size: 1.125rem
}

.page-background .hero__item.hero__list--sm {
    font-size: .875rem
}

.page-background .hero__item.hero__list--xs {
    font-size: .75rem
}

.page-background .hero__item svg {
    width: 1.25em;
    height: 1.25em;
    margin-right: .3125em
}

.page-background .hero__item i {
    width: 1.6875em;
    height: 1.6875em
}

.page-background .hero__item i svg {
    width: 60%;
    height: 60%;
    margin: 0
}

@media screen and (max-width: 1365px) {
    .page-background .hero__item:first-child {
        width: 100%
    }
}

@media screen and (max-width: 889px) {
    .page-background .hero__item {
        margin: 0 .5rem .5em;
        font-size: .8125rem
    }
}

@media screen and (max-width: 599px) {
    .page-background .hero__item {
        margin-bottom: .3125em;
        font-size: .75rem;
        font-family: Roboto Light, Arial, sans-serif
    }

    .page-background .hero__item i {
        width: 1.4375em;
        height: 1.4375em
    }
}

@media screen and (min-width: 890px) {
    .page-background .hero__text {
        -webkit-box-pack: end;
        justify-content: flex-end;
        float: left;
        height: 100%;
        width: 60%;
        padding-right: .625em;
        text-align: left
    }

    .page-background .hero_gallery_enable .hero__text {
        width: 54%
    }

    .page-background .hero__list, .page-background .hero__subtitle, .page-background .hero__title {
        text-align: left
    }

    .page-background .hero__list {
        -webkit-box-pack: start;
        justify-content: flex-start
    }
}

@media screen and (max-width: 1023px) {
    .hero_mobile-column .hero__text {
        position: relative
    }

    .hero_mobile-column .hero__image, .hero_mobile-column .hero__video {
        position: static;
        -webkit-box-ordinal-group: unset;
        order: unset;
        min-height: unset;
        padding: 0
    }

    .hero_mobile-column .hero__image:after, .hero_mobile-column .hero__image:before, .hero_mobile-column .hero__video:after, .hero_mobile-column .hero__video:before {
        display: none
    }

    .hero_mobile-column .hero__image img, .hero_mobile-column .hero__video img {
        min-height: unset;
        width: 100%;
        max-height: 200px
    }

    .hero_mobile-column .hero__video {
        top: 0;
        min-height: 21.875em
    }

    .hero_mobile-column.hero_mobile-column--dating {
        border-bottom: 1px solid #e0e0e0
    }

    .hero_mobile-column.hero_mobile-column--dating .hero__text {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
        min-height: 8.125rem;
        padding-left: .3125rem;
        padding-right: 40%;
        background-color: transparent
    }

    .hero_mobile-column.hero_mobile-column--dating .hero__title {
        font-size: 1.375rem;
        text-align: left
    }

    .hero_mobile-column.hero_mobile-column--dating .hero__subtitle {
        font-size: 1rem;
        text-align: left
    }

    .hero_mobile-column.hero_mobile-column--dating .hero__image-mobile, .hero_mobile-column.hero_mobile-column--dating .hero__video {
        position: absolute;
        right: 0;
        top: 0;
        width: 45%;
        height: 100%
    }

    .hero_mobile-column.hero_mobile-column--dating .hero__image-mobile:after, .hero_mobile-column.hero_mobile-column--dating .hero__image-mobile:before, .hero_mobile-column.hero_mobile-column--dating .hero__video:after, .hero_mobile-column.hero_mobile-column--dating .hero__video:before {
        display: block;
        width: 20%
    }

    .hero_mobile-column.hero_mobile-column--dating .hero__image-mobile img, .hero_mobile-column.hero_mobile-column--dating .hero__video img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: cover; object-position: center";
        max-height: unset
    }
}

@media screen and (max-width: 767px) {
    .hero_mobile-column .hero__video {
        min-height: 18.75em
    }
}

@media screen and (max-width: 419px) {
    .hero_mobile-column {
        display: block
    }
}

.hero__container .hero .hero__text.hero__text--center {
    width: 100%;
    -webkit-box-pack: center;
    justify-content: center;
    padding: .625em 0
}

@media screen and (max-width: 889px) {
    .hero__container .hero .hero__text.hero__text--center {
        padding: 1.5625em 0
    }
}

.hero__container .hero .hero__text.hero__text--center .hero__subtitle, .hero__container .hero .hero__text.hero__text--center .hero__title {
    margin: 0;
    padding-bottom: .5rem;
    text-align: center
}

@media screen and (max-width: 599px) {
    .hero__container .hero .hero__text.hero__text--center .hero__subtitle, .hero__container .hero .hero__text.hero__text--center .hero__title {
        max-width: 70%;
        margin: 0 auto
    }
}

@media screen and (max-width: 599px) {
    .hero__container .hero .hero__text.hero__text--center .hero__title {
        padding-top: .625rem
    }
}

.hero__container .hero .hero__text.hero__text--center .hero__subtitle {
    padding-bottom: .75rem
}

.hero__container .hero .hero__text.hero__text--center .hero__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    align-items: flex-end;
    align-content: flex-end;
    max-width: 100%
}

.hero__container .hero .hero__text.hero__text--center .hero__list .hero__item {
    width: auto
}

.hero.hero--light {
    font-family: Poppins Regular, Arial, sans-serif
}

.hero.hero--light .hero__title {
    margin-top: 0;
    padding-right: 1.5625em
}

.hero.hero--light .hero__image, .hero.hero--light .hero__video {
    top: 0;
    height: 100%
}

.hero.hero--light .hero__image:after, .hero.hero--light .hero__image:before, .hero.hero--light .hero__video:after, .hero.hero--light .hero__video:before {
    display: none
}

.hero.hero--light .hero__badge {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: contain; object-position: center"
}

@media screen and (min-width: 1024px) {
    .hero.hero--light .hero__image, .hero.hero--light .hero__video {
        top: 0;
        max-width: 56%
    }

    .hero.hero--light .hero__image img, .hero.hero--light .hero__video img {
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: right;
        object-position: right;
        font-family: "object-fit: contain; object-position: right"
    }
}

@media screen and (max-width: 1023px) {
    .hero.hero--light {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse
    }

    .hero.hero--light .hero__image, .hero.hero--light .hero__video {
        position: static;
        height: 8.75rem;
        min-height: unset;
        margin: 0;
        padding: 0
    }

    .hero.hero--light .hero__image img, .hero.hero--light .hero__video img {
        min-height: unset;
        height: 100%
    }

    .hero.hero--light .hero__badge {
        top: 1.6875rem;
        left: 1.125rem;
        -webkit-transform: none;
        transform: none;
        width: 5.375rem;
        height: 5.375rem;
        display: block
    }

    .hero.hero--light .hero__text {
        background-color: transparent;
        position: static;
        margin-bottom: 0;
        padding: 1.25em 0
    }

    .hero.hero--light .hero__text .hero__title {
        padding: 0;
        margin: 0
    }

    .hero.hero--light .hero__text .hero__title--sm {
        font-size: 2rem
    }
}

@media screen and (max-width: 1023px) and (max-width: 889px) {
    .hero.hero--light .hero__text {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: 2.5rem;
        padding: .25rem .625rem;
        background-color: hsla(0, 0%, 100%, .8)
    }

    .hero.hero--light .hero__text .hero__title--lg, .hero.hero--light .hero__text .hero__title--sm, .hero.hero--light .hero__text .hero__title--xs {
        padding: 0 .25rem;
        line-height: 1.2
    }
}

@media screen and (max-width: 1023px) and (max-width: 889px) and (max-width: 359px) {
    .hero.hero--light .hero__text .hero__title--lg, .hero.hero--light .hero__text .hero__title--sm, .hero.hero--light .hero__text .hero__title--xs {
        font-size: 1.875rem
    }
}

@media screen and (max-width: 1023px) and (max-width: 889px) {
    .hero.hero--light .hero__text .hero__badge {
        flex-shrink: 0;
        position: static
    }
}

.service-no .hero__subtitle, .service-no .hero__title {
    opacity: 1 !important
}

@media screen and (min-width: 1024px) {
    .hero .hero__text_withbadge.badge-position--left .hero__badge {
        right: 60%
    }

    .hero .hero__text_withbadge.badge-position--left .hero__subtitle, .hero .hero__text_withbadge.badge-position--left .hero__title {
        width: calc(51% - 8.8125rem)
    }
}

.hero__subtitle--bold, .hero__title--bold {
    font-family: Roboto Medium, Arial, sans-serif
}

.hero-tooltip {
    position: absolute;
    top: 0;
    right: 0
}

@media screen and (max-width: 1023px) {
    .hero-tooltip {
        display: none
    }
}

.hero-tooltip .tooltip {
    font-size: .875rem;
    text-decoration: underline;
    color: #fff;
    cursor: pointer
}

.hero--article-style.hero {
    padding: 0
}

.hero--article-style.hero:not(.hero_nomargin) {
    margin-bottom: 1.5rem
}

.hero--article-style.hero .hero__image, .hero--article-style.hero .hero__video {
    position: static;
    height: auto;
    width: 100%;
    min-height: unset;
    max-width: unset
}

.hero--article-style.hero .hero__image img, .hero--article-style.hero .hero__video img {
    min-height: unset
}

.hero--article-style.hero .hero__image:after, .hero--article-style.hero .hero__image:before, .hero--article-style.hero .hero__video:after, .hero--article-style.hero .hero__video:before {
    display: none
}

.hero--article-style.hero .hero__text {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .875rem .625rem;
    margin: 0;
    background-color: rgba(0, 0, 0, .7)
}

@media screen and (max-width: 767px) {
    .hero--article-style.hero .hero__text {
        font-size: .625rem
    }
}

.hero--article-style.hero .hero__subtitle, .hero--article-style.hero .hero__title {
    float: none;
    max-width: unset;
    text-align: center;
    line-height: 1.2
}

.hero--article-style.hero .hero__title {
    margin: 0 0 .1875rem;
    line-height: 1.2
}

.hero--article-style.hero .hero__subtitle {
    margin: 0
}

.hero--psm-additional-style {
    font-family: Roboto Medium, Arial, sans-serif;
    color: #333
}

.hero--psm-additional-style .hero__subtitle, .hero--psm-additional-style .hero__title {
    color: inherit;
    font-family: inherit
}

.hero--psm-additional-style .hero__title {
    font-size: 2.0625rem;
    letter-spacing: 1px
}

.hero--psm-additional-style .hero__subtitle {
    font-size: 1.375rem;
    line-height: 1.2;
    letter-spacing: .5px
}

.hero--psm-additional-style .hero__image, .hero--psm-additional-style .hero__video {
    top: 0;
    height: 100%
}

.hero--psm-additional-style .hero__image img, .hero--psm-additional-style .hero__video img {
    height: auto
}

.hero--psm-additional-style .hero__image:after, .hero--psm-additional-style .hero__image:before, .hero--psm-additional-style .hero__video:after, .hero--psm-additional-style .hero__video:before {
    display: none
}

.hero--psm-additional-style .hero__list {
    padding: 0;
    margin-top: 2.5rem
}

.hero--psm-additional-style .hero__item {
    margin-bottom: .25rem;
    line-height: 1.2;
    letter-spacing: .35px
}

.hero--psm-additional-style .hero__item i {
    width: auto;
    height: auto;
    margin-right: 0;
    background-color: transparent
}

.hero--psm-additional-style .hero__item i img {
    display: block;
    width: 1.125rem;
    height: .9375rem
}

.hero__update {
    line-height: 1.1;
    font-size: .8125rem
}

.hero__update-option {
    font-family: Roboto Bold, Arial, sans-serif
}

.hero__bottom-line {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    float: left;
    width: 100%;
    margin-bottom: .9375rem
}

@media screen and (max-width: 889px) {
    .hero__bottom-line {
        margin-top: .625rem;
        margin-bottom: .3125rem;
        -webkit-box-pack: center;
        justify-content: center
    }
}

.hero__bottom-line span {
    margin-right: .625rem;
    font-size: .9375rem;
    letter-spacing: .35px
}

@media screen and (max-width: 767px) {
    .hero__bottom-line {
        float: none
    }

    .hero__bottom-line img {
        max-width: 70%;
        margin: 0 auto .375rem
    }
}

.hero__image--overlay-hide.hero__video:after, .hero__image--overlay-hide.hero__video:before, .hero__image.hero__image--overlay-hide:after, .hero__image.hero__image--overlay-hide:before {
    display: none
}

.hero-fullwidth {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    margin-bottom: 1.875rem
}

.hero-fullwidth__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    min-height: 21.25rem;
    padding: 6.25em 0 3.125em;
    text-align: center
}

@media screen and (max-width: 767px) {
    .hero-fullwidth__inner {
        min-height: 17.5rem
    }
}

.contact .hero-fullwidth-btn.wpcf7-submit, .hero-fullwidth-btn.btn, .popup__form .wpcf7-form input.hero-fullwidth-btn[type=submit] {
    margin-top: 3.125rem;
    font-family: Roboto Regular, Arial, sans-serif;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, hsla(0, 0%, 100%, .2)), to(hsla(0, 0%, 100%, .01)));
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .2) 0, hsla(0, 0%, 100%, .01));
    border-radius: 0
}

.hero-fullwidth__title {
    margin: 0 0 1.25rem;
    font-size: 2.875rem;
    font-family: Roboto Bold, Arial, sans-serif
}

.hero__form {
    position: relative;
    z-index: 1;
    float: left;
    width: 100%;
    margin: .625rem 0 3.125rem;
    font-size: 1rem
}

@media screen and (max-width: 1023px) {
    .hero__form {
        padding: 0 .625rem
    }
}

@media screen and (max-width: 767px) {
    .hero__form {
        margin: .625rem 0 1.5rem
    }
}

@media screen and (min-width: 768px) {
    .hero__list + .hero__form {
        margin-top: 0;
        margin-bottom: 1.875rem
    }
}

.hero__form-title {
    margin: 0 0 1rem;
    font-size: 1.375rem;
    line-height: 1.2;
    color: #000
}

@media screen and (max-width: 767px) {
    .hero__form-title {
        font-size: .875rem;
        font-family: Roboto Light, Arial, sans-serif;
        max-width: 70%
    }
}

.hero__form-inner {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    max-width: 53.375rem
}

.contact .hero__form-inner .wpcf7-submit, .hero__form-inner .btn, .hero__form-inner .contact .wpcf7-submit, .hero__form-inner .popup__form .wpcf7-form input[type=submit], .hero__form-inner input, .hero__form-inner select, .popup__form .wpcf7-form .hero__form-inner input[type=submit] {
    width: calc(25% - 9px);
    border-radius: 0;
    height: 3.125rem;
    padding: .3125rem .9375rem
}

@media screen and (max-width: 767px) {
    .contact .hero__form-inner .wpcf7-submit, .hero__form-inner .btn, .hero__form-inner .contact .wpcf7-submit, .hero__form-inner .popup__form .wpcf7-form input[type=submit], .hero__form-inner input, .hero__form-inner select, .popup__form .wpcf7-form .hero__form-inner input[type=submit] {
        width: 100%;
        margin-bottom: .625rem
    }
}

.hero__form-inner input, .hero__form-inner select {
    border: 1px solid #283d4c;
    color: #36393b;
    font-family: Roboto Light, Arial, sans-serif;
    font-size: 1rem
}

.hero__form-inner input::-webkit-input-placeholder, .hero__form-inner select::-webkit-input-placeholder {
    color: #36393b;
    font-family: Roboto Light, Arial, sans-serif
}

.hero__form-inner input::-moz-placeholder, .hero__form-inner select::-moz-placeholder {
    color: #36393b;
    font-family: Roboto Light, Arial, sans-serif
}

.hero__form-inner input:-ms-input-placeholder, .hero__form-inner select:-ms-input-placeholder {
    color: #36393b;
    font-family: Roboto Light, Arial, sans-serif
}

.hero__form-inner input::-ms-input-placeholder, .hero__form-inner select::-ms-input-placeholder {
    color: #36393b;
    font-family: Roboto Light, Arial, sans-serif
}

.hero__form-inner input::placeholder, .hero__form-inner select::placeholder {
    color: #36393b;
    font-family: Roboto Light, Arial, sans-serif
}

.hero__form-inner select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.hero__form-inner select::-ms-expand {
    display: none
}

.contact .hero__form-inner .wpcf7-submit, .hero__form-inner .btn, .hero__form-inner .contact .wpcf7-submit, .hero__form-inner .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .hero__form-inner input[type=submit] {
    box-shadow: none;
    border: 0
}

.contact .hero__form-inner .wpcf7-submit:hover, .hero__form-inner .btn:hover, .hero__form-inner .contact .wpcf7-submit:hover, .hero__form-inner .popup__form .wpcf7-form input[type=submit]:hover, .popup__form .wpcf7-form .hero__form-inner input[type=submit]:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.hero-form-enabled.hero__container {
    padding-left: .3125rem;
    padding-right: .3125rem
}

@media screen and (max-width: 767px) {
    .hero-form-enabled.hero__container .hero__text {
        position: static
    }
}

.page-background .hero-form-enabled.hero__container .hero {
    height: auto
}

.branding {
    display: inline-block;
    max-width: 21.875em;
    text-decoration: none
}

@media screen and (min-width: 1024px) {
    .branding {
        max-width: 16.875em
    }
}

@media screen and (min-width: 1100px) {
    .branding {
        max-width: 20em
    }
}

@media screen and (max-width: 1024px) {
    .branding {
        margin: 0 .625em
    }
}

.branding img, .branding svg {
    flex-shrink: 0;
    max-width: 100%;
    display: block
}

.branding__text {
    display: block;
    margin-top: .25rem;
    font-size: .8125rem;
    letter-spacing: .3px;
    font-family: Roboto Light, Arial, sans-serif;
    text-decoration: none;
    line-height: 1
}

@media screen and (max-width: 419px) {
    .branding__text {
        font-size: .75rem
    }
}

.header_light .branding__text {
    font-family: Poppins Light, Arial, sans-serif
}

.branding__logo--additional {
    display: none
}

.icon:before {
    content: "\EA01"
}

.banner-bottom {
    opacity: 0;
    -webkit-transition: opacity, visibility, .4s;
    transition: opacity, visibility, .4s;
    visibility: hidden;
    z-index: 999;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .625rem 0
}

.onscroll .banner-bottom {
    opacity: 1;
    visibility: visible
}

.font-poppins .banner-bottom * {
    font-family: Poppins Regular, Arial, sans-serif
}

.banner-bottom--left {
    border-top: 1px solid #ddd
}

.banner-bottom--left a, .banner-bottom--left img {
    display: block
}

@media screen and (min-width: 600px) {
    .banner-bottom--left {
        right: auto;
        border-right: 1px solid #ddd
    }
}

.banner-bottom--left .banner-bottom__item--desc {
    margin-left: 0
}

.banner-bottom--always-visible {
    visibility: visible;
    opacity: 1
}

.banner-bottom--close {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    z-index: 99999;
    padding: 0
}

.onbottom .banner-bottom--close {
    opacity: 0;
    visibility: hidden
}

.banner-bottom--close .banner-bottom__close-btn {
    z-index: 1;
    position: absolute;
    top: 50%;
    right: .625rem;
    width: 1.4375rem;
    height: 1.4375rem;
    padding: 0;
    background-color: transparent;
    border: 0
}

@media screen and (max-width: 767px) {
    .banner-bottom--close .banner-bottom__close-btn {
        width: 1rem;
        height: 1rem;
        -webkit-transform: none;
        transform: none;
        top: 0;
        right: auto;
        left: 0
    }
}

.banner-bottom--close .banner-bottom__close-btn:after, .banner-bottom--close .banner-bottom__close-btn:before {
    width: 100%;
    height: 2px
}

.banner-bottom--close .banner-bottom__main {
    position: relative;
    width: 100%
}

.banner-bottom--close .banner-bottom__items {
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: .3125rem 13.125rem .3125rem 0;
    min-height: 6.25rem
}

@media screen and (max-width: 767px) {
    .banner-bottom--close .banner-bottom__items {
        padding-right: 0;
        min-height: 3.75rem
    }
}

.banner-bottom--close .banner-bottom__item--desc {
    line-height: 1.2
}

@media screen and (min-width: 768px) {
    .banner-bottom--close .banner-bottom__item--desc {
        margin-left: 0
    }
}

.banner-bottom--close .banner-bottom__item--logo {
    position: absolute;
    right: 3.75rem;
    bottom: .5rem;
    margin: 0
}

.banner-bottom--close .banner-bottom__item--logo img {
    width: 8.4375rem;
    height: 10rem;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom;
    object-position: bottom;
    font-family: "object-fit: contain; object-position: bottom"
}

@media screen and (max-width: 767px) {
    .banner-bottom--close .banner-bottom__item--logo {
        display: none
    }
}

.banner-bottom--close .banner-bottom__item.btn, .banner-bottom--close .contact .banner-bottom__item.wpcf7-submit, .banner-bottom--close .popup__form .wpcf7-form input.banner-bottom__item[type=submit], .contact .banner-bottom--close .banner-bottom__item.wpcf7-submit, .popup__form .wpcf7-form .banner-bottom--close input.banner-bottom__item[type=submit] {
    height: 3.125rem;
    min-width: 12rem;
    background-color: transparent;
    box-shadow: none
}

@media screen and (max-width: 767px) {
    .banner-bottom--close .banner-bottom__item.btn, .banner-bottom--close .contact .banner-bottom__item.wpcf7-submit, .banner-bottom--close .popup__form .wpcf7-form input.banner-bottom__item[type=submit], .contact .banner-bottom--close .banner-bottom__item.wpcf7-submit, .popup__form .wpcf7-form .banner-bottom--close input.banner-bottom__item[type=submit] {
        height: 2.25rem;
        min-width: unset
    }
}

.banner-bottom--close .banner-bottom__item.btn:hover, .banner-bottom--close .contact .banner-bottom__item.wpcf7-submit:hover, .banner-bottom--close .popup__form .wpcf7-form input.banner-bottom__item[type=submit]:hover, .contact .banner-bottom--close .banner-bottom__item.wpcf7-submit:hover, .popup__form .wpcf7-form .banner-bottom--close input.banner-bottom__item[type=submit]:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.banner-bottom--close .banner-bottom__item.btn .btn-text, .banner-bottom--close .contact .banner-bottom__item.wpcf7-submit .btn-text, .banner-bottom--close .popup__form .wpcf7-form input.banner-bottom__item[type=submit] .btn-text, .contact .banner-bottom--close .banner-bottom__item.wpcf7-submit .btn-text, .popup__form .wpcf7-form .banner-bottom--close input.banner-bottom__item[type=submit] .btn-text {
    margin: 0 .625rem
}

.banner-bottom__items {
    align-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: nowrap;
    font-family: Roboto Regular, Arial, sans-serif;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0
}

.banner-bottom__item {
    align-self: auto;
    flex-basis: auto;
    font-size: 1.3125rem;
    letter-spacing: .04375rem;
    list-style: none;
    margin: 0 .9375rem
}

.banner-bottom--left .banner-bottom__item:first-of-type {
    display: none
}

@media screen and (max-width: 479px) {
    .banner-bottom__item {
        font-size: 1.0625rem;
        margin: 0 .625rem
    }
}

@media screen and (max-width: 379px) {
    .banner-bottom__item {
        font-size: 1rem;
        line-height: 1.3;
        margin: 0 .4375rem
    }
}

@media screen and (max-width: 364px) {
    .banner-bottom__item {
        font-size: .8125rem;
        line-height: 1.3
    }
}

.banner-bottom__item img {
    display: block;
    height: auto
}

@media screen and (max-width: 479px) {
    .banner-bottom__item img {
        max-width: 4.375rem
    }
}

@media screen and (max-width: 379px) {
    .banner-bottom__item img {
        max-width: 3.75rem
    }
}

@media screen and (max-width: 364px) {
    .banner-bottom__item img {
        max-width: 2.8125rem
    }
}

.banner-bottom__item a {
    text-decoration: none;
    line-height: 1.2
}

.banner-bottom__item a:hover {
    text-decoration: underline
}

.banner-bottom__item.btn, .contact .banner-bottom__item.wpcf7-submit, .popup__form .wpcf7-form input.banner-bottom__item[type=submit] {
    margin: 0;
    padding: 0;
    min-width: 2.8125rem
}

.banner-bottom__item.btn a:hover, .contact .banner-bottom__item.wpcf7-submit a:hover, .popup__form .wpcf7-form input.banner-bottom__item[type=submit] a:hover {
    text-decoration: none
}

.banner-bottom__item .icons {
    margin: 0 .3125rem
}

.banner-bottom__item .icons, .banner-bottom__item .icons:after, .banner-bottom__item .icons svg {
    display: inline-block;
    vertical-align: middle
}

.banner-bottom__item .icons:after {
    content: "";
    height: 100%
}

.banner-bottom__item .btn-text {
    display: inline-block;
    margin: 0 1.5625rem;
    vertical-align: middle
}

@media screen and (max-width: 364px) {
    .banner-bottom__item .btn-text {
        font-size: .75rem;
        line-height: 1
    }
}

.banner-bottom__item .btn-text + .icons {
    margin: 0 1.5625rem 0 -1.25rem
}

@media screen and (max-width: 750px) {
    .banner-bottom__item .desktoponly + .icons {
        margin: 0 1.5625rem
    }
}

@media screen and (max-width: 750px) {
    .banner-bottom__item.btn--non-text {
        max-width: 2.8125rem
    }
}

.banner-bottom__image {
    display: block;
    margin: 0 auto;
    text-align: center
}

.footer__cookie.footer__cookie--sticky {
    z-index: 1000001;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .375em 0
}

.footer__cookie.footer__cookie--sticky .footer__cookie-decline-text, .footer__cookie.footer__cookie--sticky .footer__disclaimer-text {
    text-align: justify
}

@media screen and (max-width: 599px) {
    .footer__cookie.footer__cookie--sticky .footer__cookie-decline-text, .footer__cookie.footer__cookie--sticky .footer__disclaimer-text {
        text-align: left;
        -webkit-box-pack: center;
        justify-content: center
    }
}

.footer__cookie.footer__cookie--sticky .popup__close, .footer__cookie.footer__cookie--sticky .popup__decline {
    display: inline-block;
    cursor: pointer
}

@media screen and (max-width: 599px) {
    .footer__cookie.footer__cookie--sticky .popup__close, .footer__cookie.footer__cookie--sticky .popup__decline {
        -webkit-box-ordinal-group: 5;
        order: 4;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        padding: .4375em .3125em;
        margin-left: .3125em;
        margin-bottom: .3125em;
        color: #fff
    }
}

@media screen and (max-width: 599px) {
    .footer__cookie.footer__cookie--sticky .popup__decline {
        -webkit-box-ordinal-group: 4;
        order: 3;
        margin-left: 0;
        margin-right: .3125em
    }
}

.footer__cookie[data-eu=true] {
    opacity: 0
}

@media screen and (max-width: 599px) {
    .footer__cookie.footer__disclaimer {
        padding: .25em 0
    }
}

@media screen and (max-width: 767px) {
    .footer__cookie .footer__cookie-decline-text, .footer__cookie .footer__disclaimer-text {
        padding-left: 1.25em;
        padding-right: 1.25em;
        font-size: .75rem
    }
}

@media screen and (max-width: 599px) {
    .footer__cookie .footer__cookie-decline-text, .footer__cookie .footer__disclaimer-text {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-align: center;
        align-items: center;
        padding-left: .625em;
        padding-right: .625em
    }
}

.footer__cookie .footer__disclaimer-text--mobile {
    -webkit-box-ordinal-group: 3;
    order: 2;
    margin-bottom: .3125rem;
    font-size: .625rem;
    text-align: center
}

@media screen and (min-width: 600px) {
    .footer__cookie .footer__disclaimer-text--mobile {
        display: none
    }
}

.footer__cookie .footer__disclaimer-text--desktop a {
    text-decoration: none;
    font-family: Roboto Bold, Arial, sans-serif
}

.footer__cookie .footer__disclaimer-text--desktop a:hover {
    text-decoration: underline
}

@media screen and (max-width: 599px) {
    .footer__cookie .footer__disclaimer-text--desktop {
        display: none
    }
}

.footer__cookie .footer__cookie-decline-text {
    display: none
}

.footer__cookie .popup__close, .footer__cookie .popup__decline {
    display: none;
    position: static;
    width: auto;
    height: auto;
    padding: .1875em 1.25em;
    font-size: 1em;
    text-align: center;
    border-radius: .1875rem;
    line-height: 1;
    text-indent: 0;
    background-color: #fff
}

.footer__cookie .popup__close:after, .footer__cookie .popup__close:before, .footer__cookie .popup__decline:after, .footer__cookie .popup__decline:before {
    display: none
}

.footer__cookie.footer__cookie--sticky .footer__cookie-decline-text {
    text-align: center
}

@media screen and (min-width: 600px) {
    .footer__cookie.footer__cookie--centered .footer__disclaimer-text--desktop {
        display: block;
        margin-bottom: .3125em
    }

    .footer__cookie.footer__cookie--centered .footer__cookie-decline-text, .footer__cookie.footer__cookie--centered .footer__disclaimer-text {
        text-align: center
    }
}

.button {
    font-size: .875rem;
    background-color: #c92030;
    color: #fff;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 2.7857142857em;
    padding: 0 1.5em;
    border-radius: 1.5714285714em;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .25s;
    transition: .25s
}

.button:active, .button:hover {
    background-color: #fff;
    color: #c92030
}

.btn, .contact .wpcf7-submit, .popup__form .wpcf7-form input[type=submit] {
    font-size: 1em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    border-radius: 3px;
    background-color: #43c55f;
    color: #fff;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 2.8125em;
    padding: 0 2.1875em;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .25s;
    transition: .25s;
    font-family: Roboto Bold, Arial, sans-serif;
    white-space: nowrap;
    outline: none;
    cursor: pointer
}

.btn:hover, .contact .wpcf7-submit:hover, .popup__form .wpcf7-form input[type=submit]:hover {
    background-color: #32a34a;
    color: #fff
}

.btn:active, .contact .wpcf7-submit:active, .popup__form .wpcf7-form input[type=submit]:active {
    background-color: #2c8f42;
    color: #fff
}

.btn_large {
    height: 3.1818181818em;
    font-size: 1.375em;
    letter-spacing: .03em
}

@media screen and (max-width: 1023px) {
    .btn_large {
        font-size: 1.1875em
    }
}

.btn_small {
    height: 2.4166666667em;
    line-height: 2.4166666667em;
    font-size: .75em;
    padding: 0 1.9166666667em
}

.btn_amazon.btn_amazon.btn_amazon.btn_amazon {
    position: relative;
    text-transform: none;
    font-family: Roboto Light, Arial, sans-serif;
    font-size: .9375em;
    height: 2.4em;
    margin: 1.1333333333em 0 0;
    border-radius: 1.6em;
    background-color: #2a64b6;
    padding-left: 1.2em
}

.btn_amazon.btn_amazon.btn_amazon.btn_amazon svg {
    min-width: 1.3333333333em;
    height: 1.3333333333em;
    margin-right: .4666666667em
}

.btn_amazon.btn_amazon.btn_amazon.btn_amazon svg path {
    fill: #fff
}

.btn_amazon.btn_amazon.btn_amazon.btn_amazon:after {
    content: "";
    display: block;
    width: .7333333333em;
    height: .7333333333em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: .7333333333em;
    top: calc(50% - .36667em)
}

.btn--offered {
    min-width: 8.75rem;
    padding: 0 .9375em
}

.btn--offered:hover {
    opacity: .9
}

.btn--arrow {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center
}

.btn--arrow:after {
    content: "";
    display: inline-block;
    width: 2rem;
    height: .8125rem;
    margin-left: .5rem;
    background: url(icon-arrow-btn.svg) no-repeat 50%/contain;
    -webkit-transition: -webkit-transform .2s ease-in;
    transition: -webkit-transform .2s ease-in;
    transition: transform .2s ease-in;
    transition: transform .2s ease-in, -webkit-transform .2s ease-in
}

.btn--arrow:hover:after {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem)
}

.title {
    position: relative;
    color: #36393b;
    font-size: 2.25rem;
    font-family: Roboto Bold, Arial, sans-serif;
    line-height: 1.2;
    margin: 0;
    text-decoration: none
}

@media screen and (max-width: 1023px) {
    .title {
        font-size: 1.75em
    }
}

.title_with-link {
    width: 100%;
    margin-right: .3125rem
}

@media screen and (max-width: 359px) {
    .title_with-link {
        font-size: 1.5rem
    }
}

.title_large {
    font-size: 3.75rem
}

@media screen and (max-width: 1023px) {
    .title_large {
        font-size: 2.8125em
    }
}

.title_middle {
    font-size: 1.75rem
}

.title_small {
    font-size: 1.125rem
}

.title_tiny {
    font-size: 1.0625rem
}

.title_tinyest {
    font-size: .9375rem
}

.title_main {
    color: #2a64b6
}

.title_center, .title_centered {
    text-align: center
}

.title_underline.title_underline.title_underline.title_underline.title_underline {
    border-bottom: 1px solid #efefef;
    padding-bottom: .0555555556em;
    margin-bottom: 1em
}

@media screen and (max-width: 1023px) {
    .title_underline.title_underline.title_underline.title_underline.title_underline {
        padding-bottom: .5rem
    }
}

.content .container > .title:first-child, .content .footer__cookie-decline-text > .title:first-child, .content .footer__disclaimer-text > .title:first-child {
    padding-top: 2.1875rem;
    padding-bottom: 2rem
}

@media screen and (max-width: 767px) {
    .template-article .content .container > .title:first-child, .template-article .content .footer__cookie-decline-text > .title:first-child, .template-article .content .footer__disclaimer-text > .title:first-child {
        padding-top: 0
    }
}

.home .content .container > .title:first-child, .home .content .footer__cookie-decline-text > .title:first-child, .home .content .footer__disclaimer-text > .title:first-child {
    padding-top: 3.4375rem
}

@media screen and (max-width: 767px) {
    .home .content .container > .title:first-child, .home .content .footer__cookie-decline-text > .title:first-child, .home .content .footer__disclaimer-text > .title:first-child {
        padding-top: 2.1875rem
    }
}

.title__link {
    position: absolute;
    right: 0;
    top: 91%;
    background-color: #fff;
    font-family: Roboto Light, Arial, sans-serif;
    font-size: .8125rem;
    color: inherit;
    text-transform: none;
    padding: 0 .8461538462em
}

.single-title-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between
}

.single-title-wrap-link {
    flex-shrink: 0
}

.title__btn-wrap {
    min-width: 7.8125em;
    font-size: 1rem
}

@media screen and (max-width: 1023px) {
    .title__btn-wrap {
        min-width: 6.4375em
    }
}

.title_ribbon {
    position: relative
}

.title_ribbon .title_ribbon--main {
    display: block;
    position: relative;
    z-index: 1;
    padding: .3181818182em 1em;
    font-size: 1.375rem;
    line-height: 1.2;
    color: #fff
}

@media screen and (max-width: 599px) {
    .title_ribbon .title_ribbon--main {
        padding: .3181818182em .4545454545em;
        letter-spacing: -.3px
    }
}

.title_ribbon .title_ribbon--left, .title_ribbon .title_ribbon--right {
    display: inline-block;
    overflow: hidden;
    position: absolute;
    top: 20%;
    width: 13%;
    height: 90%;
    min-width: 2.5rem;
    background-color: transparent !important
}

.title_ribbon .title_ribbon--left svg, .title_ribbon .title_ribbon--right svg {
    width: 100%;
    height: 100%
}

.title_ribbon .title_ribbon--left {
    left: 0;
    -webkit-transform: translateX(-60%);
    transform: translateX(-60%)
}

.title_ribbon .title_ribbon--left svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.title_ribbon .title_ribbon--right {
    right: 0;
    -webkit-transform: translateX(60%);
    transform: translateX(60%)
}

body.highlight-style .container.container_mb .title, body.highlight-style .container_mb.footer__cookie-decline-text .title, body.highlight-style .container_mb.footer__disclaimer-text .title, body.highlight-style .title_bordered, body.highlight-style .widget__title {
    margin-top: 0;
    padding-bottom: .3125rem;
    font-size: 1.5em;
    font-family: Roboto Regular, Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    border-bottom-width: 5px;
    border-bottom-style: solid
}

body.highlight-style .container.container_mb .title:after, body.highlight-style .container_mb.footer__cookie-decline-text .title:after, body.highlight-style .container_mb.footer__disclaimer-text .title:after, body.highlight-style .title_bordered:after, body.highlight-style .widget__title:after {
    display: none
}

body.highlight-style .container.container_mb .title, body.highlight-style .container_mb.footer__cookie-decline-text .title, body.highlight-style .container_mb.footer__disclaimer-text .title, body.highlight-style .title_mb, body.highlight-style .widget__title {
    margin: 0 0 1.875rem
}

body.highlight-style .title_big {
    font-size: 3.125em;
    font-family: Roboto Regular, Arial, sans-serif;
    font-weight: 600;
    line-height: 1
}

@media screen and (max-width: 767px) {
    body.highlight-style .title_big {
        font-size: 2.5em
    }
}

.subtitle {
    font-size: 1.125em;
    color: #36393b;
    line-height: 1.3888888889;
    margin-bottom: 1.1111111111em
}

@media screen and (max-width: 767px) {
    .subtitle {
        font-size: 1rem
    }
}

.title + .subtitle {
    margin-top: -.4444444444em
}

.tag__list {
    margin: .625em .0625em
}

:not(body).tag {
    font-size: .875em;
    height: 2.1428571429em;
    line-height: 2.1428571429em;
    margin: 0 .1428571429em .1428571429em 0;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background-color: #fff;
    color: #36393b;
    border: 1px solid #dedede
}

:not(body).tag a {
    color: inherit;
    display: block;
    padding: 0 .7142857143em;
    width: 100%;
    height: 100%;
    -webkit-transition: .25s;
    transition: .25s
}

:not(body).tag a:hover {
    background-color: #36393b;
    color: #fff
}

.featured__container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
    margin: 0 -1% 1.3125em
}

@media screen and (max-width: 1199px) {
    .featured__container {
        margin: 0 0 1.3125em;
        -webkit-box-pack: center;
        justify-content: center
    }
}

.featured {
    position: relative;
    width: 18%;
    -webkit-box-flex: 1;
    flex: 1 1 18%;
    margin: 0 1% 1.875em
}

@media screen and (max-width: 1199px) {
    .featured {
        -webkit-box-flex: 0;
        flex: 0 1 13.5625em;
        margin: 0 4.5% 1.875em
    }
}

@media screen and (max-width: 1023px) {
    .featured {
        margin-left: 1.5vw;
        margin-right: 1.5vw
    }
}

.featured:hover .featured__image {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .5)
}

.featured__image {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border: 1px solid #e1e1e1;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
    -webkit-transition: .25s;
    transition: .25s;
    height: 9.6875em;
    overflow: hidden;
    padding: 1.5625em;
    margin-bottom: .6875em
}

.featured__image img {
    display: block;
    width: 100%
}

.featured__link {
    display: block;
    text-decoration: none
}

.featured__name {
    display: block;
    text-align: center;
    font-family: Roboto Light, Arial, sans-serif;
    color: #36393b
}

.featured_large__container {
    margin: 0 -1.5% -.3125em
}

@media screen and (max-width: 1023px) {
    .featured_large__container {
        margin-top: 2.1875em;
        margin-bottom: -.3125em
    }
}

.featured_large__container .featured {
    width: 22%;
    -webkit-box-flex: 0;
    flex: 0 1 22%;
    margin: 0 1.5% 1.875em
}

@media screen and (max-width: 1023px) {
    .featured_large__container .featured {
        min-width: 14.375em;
        margin-left: 6%;
        margin-right: 6%
    }
}

@media screen and (max-width: 599px) {
    .featured_large__container .featured {
        margin-left: 2%;
        margin-right: 2%
    }
}

.featured_large__container .featured__image {
    padding: .625em;
    height: 11.25em
}

.featured_large__container .featured__image img {
    height: 100%
}

.featured_small__container {
    margin: 0 -1% 3.8125em
}

@media screen and (max-width: 1023px) {
    .featured_small__container {
        margin-top: 2.1875em
    }
}

.featured_small__container .featured {
    width: 14.66%;
    -webkit-box-flex: 1;
    flex: 1 1 14.66%;
    margin: 0 1% 1.875em
}

@media screen and (max-width: 1023px) {
    .featured_small__container .featured {
        min-width: 11.25em;
        -webkit-box-flex: 0;
        flex: 0 1 18%;
        margin-left: 5%;
        margin-right: 5%
    }
}

@media screen and (max-width: 599px) {
    .featured_small__container .featured {
        margin-left: 2%;
        margin-right: 2%
    }
}

.featured_small__container .featured__image {
    height: 7.9375em
}

.title_underline + .featured_small__container {
    margin-top: 2.125em
}

.offered-title {
    text-align: center;
    padding: 0 5rem
}

.offered-title .title_ribbon {
    display: inline-block;
    margin: -.7272727273em 0 1.5em
}

@media screen and (max-width: 599px) {
    .offered-title {
        padding: 0 1.5625rem
    }

    .offered-title .title_ribbon {
        margin-top: 0
    }
}

.offered-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.75em 1.625em
}

@media screen and (max-width: 1023px) {
    .offered-list {
        -webkit-box-pack: center;
        justify-content: center;
        max-width: 37.5rem;
        margin: 0 auto 1.625em
    }
}

@media screen and (max-width: 599px) {
    .offered-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center
    }
}

.offered-list--center {
    -webkit-box-pack: center;
    justify-content: center
}

.offered-item {
    flex-shrink: 0;
    width: 25%;
    padding: 0 .75em;
    margin-bottom: 1.5em
}

@media screen and (max-width: 1023px) {
    .offered-item {
        max-width: 17rem;
        width: 100%
    }
}

@media screen and (max-width: 599px) {
    .offered-item {
        margin-bottom: .625rem
    }
}

@media screen and (max-width: 419px) {
    .offered-item {
        max-width: unset;
        padding: 0;
        margin-bottom: .5rem
    }
}

.offered-item__link {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: 100%;
    padding: 1.125em 1.5625em 1.3125em;
    text-decoration: none;
    background-color: #fff;
    border-radius: .1875rem;
    color: inherit;
    border: 2px solid transparent;
    box-shadow: 0 0 7px rgba(0, 0, 0, .15)
}

@media screen and (max-width: 419px) {
    .offered-item__link {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        flex-wrap: wrap;
        min-height: 8.4375em;
        padding: .75em .5em .9375em
    }

    .offered-item__link .btn--offered {
        width: 100%;
        max-width: 9rem;
        min-width: unset;
        height: 2.125rem;
        font-size: .75em
    }
}

.offered-item__link:hover .btn--offered {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    will-change: transform
}

.offered-item__col {
    display: block;
    text-align: center
}

@media screen and (max-width: 419px) {
    .offered-item__col {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
        flex-shrink: 0;
        width: 50%
    }

    .offered-item__col:last-of-type, .offered-item__col:nth-child(2) {
        text-align: left;
        padding-left: .5em
    }
}

.offered-item__col .rate {
    margin: .8125em auto;
    -webkit-transform: scale(1.17);
    transform: scale(1.17)
}

@media screen and (max-width: 419px) {
    .offered-item__col .rate {
        margin-bottom: 0;
        margin-top: 0
    }
}

@media screen and (min-width: 420px) {
    .offered-item__col .rate + .offered-item__deal-disclaimer {
        margin-top: -.625em
    }
}

@media screen and (min-width: 420px) {
    .offered-item__col .offered--mobile {
        display: none
    }
}

@media screen and (max-width: 419px) {
    .offered-item__col .offered--desktop {
        display: none
    }
}

.offered-item__col + .offered-item__deal-disclaimer {
    margin-top: .875rem;
    margin-bottom: 0
}

@media screen and (min-width: 420px) {
    .offered-item__col + .offered-item__deal-disclaimer {
        display: none
    }
}

.offered-item__image {
    display: block;
    margin: 0 auto .75em;
    max-width: 15.625em
}

.offered-item__image img {
    display: block
}

@media screen and (max-width: 419px) {
    .offered-item__image {
        height: auto;
        max-width: 9.375em;
        margin-bottom: .875em
    }
}

.offered-item__deal {
    display: block;
    margin-bottom: .8125em;
    font-family: Roboto Light, Arial, sans-serif;
    line-height: 1.3
}

@media screen and (max-width: 419px) {
    .offered-item__deal {
        font-size: .875em;
        line-height: 1.4;
        letter-spacing: -.2px
    }
}

.offered-item__deal-disclaimer {
    display: block;
    margin-bottom: 1.125em;
    font-size: .75rem;
    font-family: Roboto Light, Arial, sans-serif;
    line-height: 1.35;
    color: #919699
}

@media screen and (max-width: 419px) {
    .offered-item__deal-disclaimer {
        margin-top: 1em;
        font-size: .625rem
    }
}

.offered-item__deal-disclaimer .tooltip {
    display: inline-block;
    vertical-align: bottom;
    padding: .0625rem;
    width: .875rem;
    height: .875rem;
    border-radius: 50%;
    border: 1px solid;
    cursor: pointer
}

@media screen and (max-width: 1023px) {
    .offered-item__deal-disclaimer .tooltip {
        display: none
    }
}

.offered-item__deal-disclaimer svg {
    display: block;
    width: 100%;
    height: 100%
}

.offered-irem-price, .offered-item-new-price, .offered-item-old-price, .offered-item-special-info {
    display: block
}

@media screen and (min-width: 420px) {
    .offered-item-old-price {
        margin-bottom: .1875rem
    }
}

.offered-item-new-price {
    font-size: 1.875em;
    font-weight: 800;
    line-height: 1
}

@media screen and (min-width: 420px) {
    .offered-item-new-price {
        margin-bottom: .3125rem
    }
}

.offered-item-special-info {
    font-size: .875em;
    margin-bottom: .625em
}

.badge__horziontal {
    font-size: .875em;
    box-shadow: 0 3px 10px -5px #000;
    text-transform: none;
    position: absolute;
    top: .5714285714em;
    left: -.6428571429em;
    background-color: #43c55f;
    color: #fff;
    font-family: Roboto Light, Arial, sans-serif;
    padding: .125em .9375em;
    letter-spacing: .03em
}

.badge__horziontal:after, .badge__horziontal:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-color: #43c55f transparent transparent;
    border-style: solid;
    border-width: 14px 15px 0 0;
    right: -15px;
    top: 0
}

.badge__horziontal:after {
    top: auto;
    bottom: 0;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.badge__diagonal {
    font-size: .6875em;
    position: absolute;
    top: -.4545454545em;
    left: -.4545454545em;
    width: 9.0909090909em;
    height: 9.0909090909em;
    overflow: hidden
}

.badge__diagonal span {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #916dde;
    color: #fff;
    font-family: Roboto Bold, Arial, sans-serif;
    display: block;
    position: absolute;
    top: 2.0909090909em;
    left: -3.1818181818em;
    height: 2.5454545455em;
    line-height: 2.5454545455em;
    width: 12.7272727273em;
    padding-left: .6363636364em;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 3px 10px -5px #000
}

.badge__diagonal span:after, .badge__diagonal span:before {
    content: "";
    position: absolute;
    left: .7272727273em;
    top: 100%;
    z-index: -1;
    border-color: #582abb transparent transparent #582abb;
    border-style: solid;
    border-width: .2727272727em
}

.badge__diagonal span:after {
    top: 2.5454545455em;
    left: auto;
    right: .3636363636em;
    border-color: #582abb #582abb transparent transparent;
    border-style: solid;
    border-width: .2727272727em
}

.badge__regular {
    display: -webkit-inline-box;
    display: inline-flex;
    font-size: .9375rem;
    text-transform: uppercase;
    font-family: Roboto Bold, Arial, sans-serif;
    padding: 0 1.0666666667em;
    height: 1.8666666667em;
    background-color: #fca92a;
    color: #fff;
    border-radius: .9333333333em;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    vertical-align: middle;
    margin: -.125em .3125em 0
}

.point {
    padding-top: 1em;
    padding-bottom: 3.5em
}

.point__list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start
}

@media screen and (max-width: 767px) {
    .point__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center
    }
}

.point__item {
    -webkit-box-flex: 1;
    flex: 1 0 calc(33.3% - 0.4375em);
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding-right: 1.25em
}

.point__item:not(:last-child) {
    margin-right: .625em
}

@media screen and (max-width: 767px) {
    .point__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.875em
    }
}

@media screen and (max-width: 1365px) {
    .point__item {
        flex-basis: auto;
        padding-right: 0
    }
}

@media screen and (min-width: 768px) and (max-width: 1149px) {
    .point__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        margin-right: 0
    }
}

@media screen and (max-width: 767px) {
    .point__item {
        width: 50%;
        min-width: 21.875em
    }
}

@media screen and (max-width: 599px) {
    .point__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        width: 100%;
        min-width: 0
    }
}

.point__image {
    float: left;
    border-radius: 50%;
    width: 9.375em;
    min-width: 9.375em;
    height: 9.375em;
    overflow: hidden;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-right: .875em
}

@media screen and (min-width: 768px) and (max-width: 1149px) {
    .point__image {
        margin-right: 0;
        margin-bottom: .875em
    }
}

@media screen and (max-width: 599px) {
    .point__image {
        margin-right: 0;
        margin-bottom: .875em
    }
}

.point__image img {
    max-width: 100%;
    height: auto
}

.point__desc {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    flex: 1
}

@media screen and (min-width: 768px) and (max-width: 1149px) {
    .point__desc {
        text-align: center;
        -webkit-box-align: center;
        align-items: center
    }
}

@media screen and (max-width: 599px) {
    .point__desc {
        text-align: center;
        -webkit-box-align: center;
        align-items: center
    }
}

.point__title {
    clear: none;
    margin-bottom: .3125rem
}

.point__text {
    margin: 0;
    line-height: 1.2
}

.point-vertical.bgc {
    background-color: transparent
}

.point-vertical.bgc .point__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    flex: 1 1
}

.point-vertical.bgc .point__desc {
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center
}

.point-vertical.bgc .point__image {
    height: auto;
    width: auto;
    margin: 0 0 .625rem
}

.links {
    position: relative;
    margin-bottom: 4.9375em
}

.links:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 1
}

.links__list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-fill: auto;
    -moz-column-fill: auto;
    column-fill: auto;
    -webkit-column-gap: 1.875em;
    -moz-column-gap: 1.875em;
    column-gap: 1.875em;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid
}

@media screen and (max-width: 1023px) {
    .links__list {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        padding: 0 3.8125em
    }
}

@media screen and (max-width: 767px) {
    .links__list {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }
}

@media screen and (max-width: 419px) {
    .links__list {
        padding: 0
    }
}

.links__item {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    font-size: .9375em
}

.links__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-decoration: none;
    color: #2a64b6;
    padding-bottom: .6em;
    padding-top: .6em;
    border-bottom: 1px solid #e7e7e7;
    text-align: left
}

.links__icon, .links__link {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.links__icon {
    width: 1.3333333333em;
    height: 1.3333333333em;
    margin-right: .3333333333em;
    -webkit-box-pack: center;
    justify-content: center
}

.links__icon img {
    width: 100%;
    height: auto
}

.ipinfo {
    font-size: 1rem;
    color: #cadbf5;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row
}

.header_light .ipinfo {
    padding-top: 1.375em
}

@media screen and (max-width: 1023px) {
    .ipinfo {
        -webkit-box-flex: 1;
        flex: 1;
        -webkit-box-pack: end;
        justify-content: flex-end;
        margin-right: 1.125em
    }
}

@media screen and (max-width: 599px) {
    .ipinfo {
        display: none
    }
}

.ipinfo.ipinfo_mobile {
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin: 1.25em .625em 0;
    overflow: hidden
}

@media screen and (min-width: 768px) {
    .ipinfo.ipinfo_mobile {
        display: none !important
    }
}

.ipinfo.ipinfo_mobile .ipinfo__content {
    min-width: unset;
    margin: 0 .3125rem 0 0
}

.ipinfo.ipinfo_mobile .button {
    flex-shrink: 0;
    min-width: 7.1875rem;
    padding-left: 10px;
    padding-right: 10px
}

@media screen and (max-width: 599px) {
    .ipinfo.ipinfo_mobile {
        display: -webkit-box;
        display: flex
    }
}

.ipinfo__content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    font-size: .875em;
    margin-left: 1.2142857143em;
    margin-right: 1.2142857143em;
    line-height: 1.2857142857;
    opacity: 0;
    -webkit-transition: .25s;
    transition: .25s;
    min-width: 11.4285714286em
}

.ipinfo__content_visible {
    opacity: 1
}

.ipinfo__title {
    margin: 0;
    font-family: Roboto Condenced Bold, Arial, sans-serif;
    text-transform: uppercase
}

.ipinfo__text {
    margin: 0;
    font-family: Roboto Light, Arial, sans-serif
}

.lang-switcher {
    height: 100%;
    color: #36393b;
    font-size: .9375em
}

@media screen and (max-width: 599px) {
    .lang-switcher {
        height: auto
    }
}

.lang-switcher__list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    color: inherit;
    flex-wrap: wrap
}

.lang-switcher__item {
    position: relative;
    top: -2px;
    color: inherit
}

@media screen and (max-width: 599px) {
    .lang-switcher__item {
        height: 2.3125em;
        width: 50%;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        top: 0
    }

    .lang-switcher__item .icl_lang_sel_translated {
        display: none
    }
}

.lang-switcher__item:not(:last-child) {
    margin-right: 1.3333333333em
}

@media screen and (max-width: 599px) {
    .lang-switcher__item:not(:last-child) {
        margin-right: 0
    }
}

.lang-switcher__item a, .lang-switcher__item span {
    color: inherit;
    text-decoration: none
}

.lang-switcher__item a:hover {
    text-decoration: underline
}

.lang-switcher__item img {
    margin-right: .2666666667em
}

.grid {
    overflow: auto;
    margin: -.15625rem -.15625rem .75rem
}

@media screen and (max-width: 1023px) {
    .grid {
        max-width: 37.0625rem;
        width: 100%;
        margin: 0 auto
    }
}

.grid_reverse .grid__item {
    float: right
}

.grid__item {
    float: left;
    padding: .15625rem;
    width: 25%;
    height: 13.8125rem
}

@media screen and (max-width: 1189px) {
    .grid__item {
        height: 18.6vw
    }
}

@media screen and (max-width: 1023px) {
    .grid__item {
        width: 50%;
        height: 37.2vw;
        max-height: 13.625rem
    }
}

@media screen and (max-width: 449px) {
    .grid__item {
        width: 100%;
        height: 76.4vw;
        max-height: 27.25rem
    }
}

.grid__item_large {
    width: 50%;
    height: 27.625rem
}

@media screen and (max-width: 1189px) {
    .grid__item_large {
        height: 37.2vw
    }
}

@media screen and (max-width: 1023px) {
    .grid__item_large {
        width: 100%;
        height: 76.4vw;
        max-height: 27.25rem
    }
}

@media screen and (min-width: 600px) {
    .grid__item_large .grid__desc {
        font-size: 1.5625rem
    }
}

.grid__link {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%
}

.grid__link:before {
    bottom: 0;
    content: "";
    display: block;
    height: 80%;
    width: 100%;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .6)));
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .6));
    -webkit-transition: .3s;
    transition: .3s
}

.grid__link:hover:before {
    opacity: .8
}

.grid__link:hover .grid__desc {
    -webkit-transform: translateY(-.7em);
    transform: translateY(-.7em)
}

.grid__desc {
    position: absolute;
    bottom: 1.3125rem;
    left: 1.25rem;
    right: 1.25rem;
    font-size: 1.1875rem;
    color: #fff;
    line-height: 1.36;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 1
}

.grid.grid_three {
    margin-top: 2.8125em;
    margin-bottom: 2.375em
}

@media screen and (min-width: 1024px) {
    .grid.grid_three .grid__item {
        width: 28.5%;
        padding: .1875em
    }

    .grid.grid_three .grid__item_large {
        width: 71.5%
    }

    .grid.grid_three .grid__item_large .grid__desc {
        font-size: 1.375em
    }

    .grid.grid_three .grid__desc {
        font-size: 1.125em;
        bottom: 1.0625rem;
        line-height: 1.35
    }
}

.grid-wrap {
    overflow: hidden
}

@media screen and (min-width: 1024px) {
    .grid.grid_three_row {
        margin: 0 -1rem;
        overflow: hidden
    }

    .grid.grid_three_row .grid__item {
        width: 33.33%;
        height: 13.8125rem;
        padding-left: 1rem;
        padding-right: 1rem
    }
}

@media screen and (max-width: 419px) {
    .grid.grid_three_row .grid__item {
        height: 16.25rem;
        margin-bottom: .625rem
    }
}

.grid.grid_three_row .grid__desc {
    color: #fff
}

@media screen and (min-width: 600px) {
    .grid.grid_three_row .grid__desc {
        font-size: 1.1875rem
    }
}

.breadcrumbs {
    color: #36393b;
    font-size: .6875em;
    margin: 1.6875em 0 .5em
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.breadcrumb_last {
    font-family: Roboto Bold, Arial, sans-serif
}

.post {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start
}

@media screen and (max-width: 1023px) {
    .post {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

.post__main {
    -webkit-box-flex: 0;
    flex: 0 1 67.2%;
    max-width: 67.2%;
    margin-right: 2.8%;
    margin-bottom: 3.125em
}

@media screen and (max-width: 1023px) {
    .post__main {
        width: 100%;
        flex-basis: 100%;
        max-width: 43.75em;
        margin: 0 auto
    }
}

.post__main.post__main--no-sidebar {
    flex-basis: 100%;
    max-width: unset;
    margin-right: 0
}

.post__content, .post__contents {
    overflow: auto
}

.post__content img, .post__contents img {
    display: block;
    margin: 0 auto;
    height: auto
}

.post__content p, .post__contents p {
    margin: 1.5625em 0;
    color: #36393b
}

.post__contents strong, .post__content strong {
    font-family: Roboto Bold, Arial, sans-serif
}

.post__content h1, .post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6, .post__contents h1, .post__contents h2, .post__contents h3, .post__contents h4, .post__contents h5, .post__contents h6 {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    font-size: 1.5625rem
}

@media screen and (max-width: 767px) {
    .post__content h1, .post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6, .post__contents h1, .post__contents h2, .post__contents h3, .post__contents h4, .post__contents h5, .post__contents h6 {
        font-size: 1.25em
    }
}

.post__menu {
    list-style-type: none;
    padding-left: 0;
    margin: 2.1875em 0;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px #e0e0e0;
    border-radius: 1px
}

.post__menu ~ .post__content {
    counter-increment: post__content
}

.post__menu ~ .post__content h1:before, .post__menu ~ .post__content h2:before, .post__menu ~ .post__content h3:before, .post__menu ~ .post__content h4:before, .post__menu ~ .post__content h5:before, .post__menu ~ .post__content h6:before {
    content: counter(post__content);
    border-radius: 50%;
    border: 2px solid;
    text-align: center;
    width: 1.625em;
    min-width: 1.625em;
    height: 1.625em;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-weight: 700;
    margin-right: 1rem
}

.post__menu-item {
    counter-increment: post__menu-item
}

.post__menu-item:hover {
    background-color: #f2f2f2
}

.post__menu-item:nth-child(2n) {
    background-color: #f9f9f9
}

.post__menu-item:nth-child(2n):hover {
    background-color: #ececec
}

.post__menu-link {
    color: #36393b;
    display: -webkit-inline-box;
    display: inline-flex;
    width: 100%;
    height: 100%;
    padding: .8125em 1.25em 1.125em;
    text-decoration: none
}

.post__menu-link span {
    pointer-events: none
}

.post__menu-link:before {
    content: counter(post__menu-item);
    border-radius: 50%;
    color: #fff;
    background-color: #2a64b6;
    text-align: center;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-weight: 700;
    margin-right: 1.125em;
    text-decoration: none
}

.post__link-anchor {
    color: #36393b;
    float: right;
    margin-bottom: .625em;
    text-decoration: none
}

.post__aside {
    -webkit-box-flex: 1;
    flex: 1 0 30%;
    margin-bottom: 3.75em;
    min-width: 18.75em;
    max-width: 21.0625em
}

@media screen and (max-width: 1023px) {
    .post__aside {
        flex-basis: 100%;
        max-width: 45em;
        margin: 0 auto 2.5em;
        display: block;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: wrap
    }
}

@media screen and (max-width: 767px) {
    .post__aside {
        flex-wrap: nowrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

@media screen and (max-width: 1023px) {
    .post__aside .theiaStickySidebar {
        flex-basis: 100%;
        max-width: 45em;
        margin: 0 auto 2.5em;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: wrap
    }
}

@media screen and (max-width: 767px) {
    .post__aside .theiaStickySidebar {
        flex-wrap: nowrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

.post__aside-tooltip {
    display: none
}

.widget .post__aside-tooltip {
    display: block;
    margin-top: -.9375rem;
    padding-top: .1875rem;
    text-align: left;
    border-top: 1px solid #dedede
}

.post__aside-tooltip .tooltip {
    position: static !important;
    font-size: .875rem;
    text-decoration: underline;
    cursor: pointer
}

.post__menu-vpn-style .post__menu-link:before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: .875rem;
    border-radius: 0;
    background-color: #1651bd;
    color: #fcd303
}

.post__menu-vpn-style .post__menu ~ .post__content h2:before, .post__menu-vpn-style .post__menu ~ .post__content h3:before, .post__menu-vpn-style .post__menu ~ .post__content h4:before {
    border-radius: 0;
    border-color: #1651bd;
    color: #1651bd
}

.contact .post__menu-vpn-style .post__content .wpcf7-submit, .popup__form .wpcf7-form .post__menu-vpn-style .post__content input[type=submit], .post__menu-vpn-style .post__content .btn, .post__menu-vpn-style .post__content .contact .wpcf7-submit, .post__menu-vpn-style .post__content .popup__form .wpcf7-form input[type=submit] {
    height: auto;
    min-width: 10.875rem;
    padding: .375em .625em;
    font-family: Roboto Regular, Arial, sans-serif;
    font-size: 1.3125rem;
    line-height: 1.1;
    text-transform: none;
    border: 1px solid #1651bd;
    background-color: #1651bd;
    color: #fff;
    border-radius: 8px;
    box-shadow: none
}

.contact .post__menu-vpn-style .post__content .wpcf7-submit:hover, .popup__form .wpcf7-form .post__menu-vpn-style .post__content input[type=submit]:hover, .post__menu-vpn-style .post__content .btn:hover, .post__menu-vpn-style .post__content .contact .wpcf7-submit:hover, .post__menu-vpn-style .post__content .popup__form .wpcf7-form input[type=submit]:hover {
    background-color: #fff;
    color: #1651bd
}

@media screen and (max-width: 767px) {
    .contact .post__menu-vpn-style .post__content .wpcf7-submit, .popup__form .wpcf7-form .post__menu-vpn-style .post__content input[type=submit], .post__menu-vpn-style .post__content .btn, .post__menu-vpn-style .post__content .contact .wpcf7-submit, .post__menu-vpn-style .post__content .popup__form .wpcf7-form input[type=submit] {
        padding: .3125rem .625rem;
        font-size: .875rem;
        min-width: 6.25rem
    }
}

.rate {
    overflow: hidden;
    position: relative;
    height: .75rem;
    width: 3.75rem;
    background-position: 0 0;
    text-indent: -99999px
}

.rate, .rate span {
    display: block;
    background-color: transparent;
    background-repeat: repeat-x;
    background-size: 12px 24px;
    background-image: url(stars.png);
    background-image: url(stars.svg)
}

.rate span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: 0 -12px
}

.widget {
    margin-bottom: 2.25em
}

@media screen and (max-width: 1023px) {
    .widget {
        max-width: 18.75em;
        margin: .625em
    }
}

@media screen and (max-width: 767px) {
    .widget {
        max-width: 25em
    }
}

.widget__title {
    position: relative;
    font-size: 1.25em;
    margin: -.2em 0 1.9em;
    border-bottom: 1px solid #dedede;
    padding-bottom: .55em
}

.widget__title:after {
    content: "";
    width: 75px;
    height: 3px;
    background-color: #2a64b6;
    position: absolute;
    left: 0;
    bottom: -.05em
}

.widget__table-item {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin: .9375em 0;
    padding-bottom: .1875em
}

.widget__table-item:not(:last-child) {
    border-bottom: 1px solid #dedede
}

.widget__table-image {
    -webkit-box-flex: 0;
    flex: 0 1 31%;
    margin-right: 4%
}

.widget__table-content {
    -webkit-box-flex: 1;
    flex: 1 0 65%
}

.widget__table-content > * {
    margin-bottom: .8125em
}

.widget__text {
    margin-top: -.9375em
}

.widget__text p {
    margin-top: 0;
    margin-bottom: .9166666667em;
    font-size: .75em
}

.widget__strong {
    font-family: Roboto Condenced Bold, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 2.375em;
    margin: .8157894737em 0 0;
    line-height: 1;
    text-align: center
}

.widget__image {
    display: block;
    width: 100%;
    margin: 0 auto 2.625em
}

.widget .tag__list {
    margin: -.75em 0 0
}

.widget__table-link {
    font-size: .9375em;
    color: #36393b;
    text-decoration: none
}

.widget__authors {
    border: 1px solid #ddd;
    padding: 1.25em
}

.widget__authors .widget__title {
    font-size: 1.5625em;
    font-family: Roboto Bold, Arial, sans-serif;
    border-bottom: none;
    margin-bottom: .2em
}

.widget__authors .widget__title:after {
    display: none
}

.widget__authors .widget__text p {
    font-size: .875em
}

.widget__author {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: .9375em
}

.widget__author, .widget__author-img {
    -webkit-box-align: center;
    align-items: center
}

.widget__author-img {
    height: 4.6875em;
    width: 4.6875em;
    border-radius: 50%;
    overflow: hidden;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center
}

.widget__author-img img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center"
}

.widget__author-text {
    min-width: calc(100% - 6em);
    max-width: calc(100% - 6em);
    font-size: .9375em
}

.widget__author-name {
    margin: 0;
    font-family: Roboto Bold, Arial, sans-serif
}

.widget__author-occ {
    margin: 0;
    font-size: .8em
}

.widget__author-contact {
    margin: 0;
    font-size: .8em;
    text-decoration: none
}

.contact body.highlight-style .widget__table .wpcf7-submit:not(:hover), .popup__form .wpcf7-form body.highlight-style .widget__table input[type=submit]:not(:hover), body.highlight-style .widget__table .btn:not(:hover), body.highlight-style .widget__table .contact .wpcf7-submit:not(:hover), body.highlight-style .widget__table .popup__form .wpcf7-form input[type=submit]:not(:hover) {
    background-color: #ff4e0c
}

@media screen and (max-width: 767px) {
    .widget-desktop, .widget-desktop + .post__aside-tooltip {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .widget-mobile {
        display: none
    }
}

.popup__wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center
}

.popup_wrapper {
    z-index: 10000000001 !important
}

.popup {
    display: none;
    background-color: #fafafa;
    border: 5px solid #2a64b6;
    padding: 1.375em 1.9375em;
    text-align: center
}

.popup_nopadding {
    padding: 0
}

.popup_nopadding img {
    width: 100%;
    margin: 0 auto;
    display: block
}

.popup_noborder {
    border: 0
}

.popup-html-used {
    border: 0;
    padding: 0
}

.popup-html-used .popup__close {
    width: 2.1875rem;
    height: 2.1875rem;
    margin: 0
}

@media screen and (max-width: 767px) {
    .popup-html-used .popup__close {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

.popup__link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer
}

.popup__iframe {
    display: block;
    margin: 20px auto
}

.popup__video {
    overflow: hidden;
    border: 2px solid #2a64b6;
    max-width: 80vw;
    margin: 0 auto
}

.popup__content {
    margin-bottom: 0
}

.popup__content a {
    color: #2a64b6
}

.popup__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 3.0625rem;
    height: 3.0625rem;
    padding: 0;
    border: 0;
    background-color: #fff;
    outline: none;
    text-indent: -9999px;
    cursor: pointer;
    border-radius: 0
}

.popup__close:after, .popup__close:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    width: 2.375rem;
    height: .1875rem;
    background-color: #36393b;
    -webkit-transform: translate(50%, -50%) rotate(45deg);
    transform: translate(50%, -50%) rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

.popup__close:before {
    -webkit-transform: translate(50%, -50%) rotate(-45deg);
    transform: translate(50%, -50%) rotate(-45deg)
}

.popup__close-wrapper.popup__close-wrapper {
    width: 100%;
    margin: 0;
    padding: .625em;
    text-align: center;
    background-color: #fff
}

.popup__close.popup__close--text {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    text-indent: 0;
    font-weight: 600;
    background-color: transparent;
    color: #919699
}

.popup__close.popup__close--text:after, .popup__close.popup__close--text:before {
    display: none
}

.popup__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center
}

.popup__inner > * {
    margin-bottom: .625em
}

.popup__inner > .popup__banner, .popup__inner > a {
    margin-bottom: 0
}

.popup__form {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center
}

@media screen and (max-width: 549px) {
    .popup__form {
        font-size: .8em
    }
}

.popup__form img {
    margin-bottom: .625em
}

.popup__form .title {
    margin-bottom: .2777777778em
}

@media screen and (max-width: 549px) {
    .popup__form .wpcf7-form {
        font-size: .9em
    }
}

.popup__form .wpcf7-form p {
    margin: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch
}

.popup__form .wpcf7-form input:not([type=submit]) {
    width: 24.8888888889em;
    height: 3.3888888889em;
    line-height: 3.3888888889em;
    font-size: 1.125em;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #36393b;
    margin-bottom: .5em;
    padding: 0 .9444444444em;
    font-family: Roboto Light, Arial, sans-serif
}

.popup__form .wpcf7-form input:not([type=submit])::-webkit-input-placeholder {
    color: #969798
}

.popup__form .wpcf7-form input:not([type=submit])::-moz-placeholder {
    color: #969798
}

.popup__form .wpcf7-form input:not([type=submit]):-ms-input-placeholder {
    color: #969798
}

.popup__form .wpcf7-form input:not([type=submit])::-ms-input-placeholder {
    color: #969798
}

.popup__form .wpcf7-form input:not([type=submit])::placeholder {
    color: #969798
}

.popup__form .wpcf7-form input:not([type=submit]).wpcf7-not-valid {
    border-color: red
}

.popup__form .wpcf7-form input[type=submit] {
    width: 20.3636363636em;
    height: 3.5454545455em;
    margin-top: .5454545455em;
    font-size: 1.375em
}

.popup__form .wpcf7-form .ajax-loader, .popup__form .wpcf7-form .wpcf7-not-valid-tip, .popup__form .wpcf7-form .wpcf7-response-output:not(.wpcf7-mail-sent-ok) {
    display: none !important
}

.popup__form .wpcf7-form .wpcf7-mail-sent-ok {
    border: none;
    margin: 0;
    text-align: center
}

.popup-video.popup {
    border: 0;
    padding: 0
}

.popup-video.popup .popup__iframe {
    margin: 0
}

.popup-video.popup .popup__video {
    display: block;
    border: 0;
    max-width: 90vw
}

@media screen and (max-width: 767px) {
    .popup-video.popup .popup__video {
        height: auto
    }
}

.popup-video.popup .popup__content-link {
    padding: 1rem;
    text-align: center
}

.contact .popup-video.popup .wpcf7-submit, .popup-video.popup .btn, .popup-video.popup .contact .wpcf7-submit, .popup-video.popup .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .popup-video.popup input[type=submit] {
    color: #fff
}

.popup-video.popup .popup__close {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 1.875rem;
    height: 1.875rem;
    background-color: transparent
}

@media screen and (max-width: 799px) {
    .popup_visible, .popup_visible body {
        width: 100%
    }
}

.popup-html {
    position: absolute;
    right: 50%;
    bottom: 5.9375rem;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    padding: .25rem 1.25rem .375rem
}

.popup-html--meal_one, .popup-html--pass_one {
    width: 100%;
    color: #f2d32b;
    text-align: center;
    font-size: 1.625em;
    font-family: Roboto Light, Arial, sans-serif;
    line-height: 1.3
}

@media screen and (max-width: 599px) {
    .popup-html--meal_one, .popup-html--pass_one {
        bottom: 16%;
        font-size: 1.3125em
    }
}

.popup-html--meal_one br, .popup-html--pass_one br {
    display: none
}

.popup-html--meal_one span, .popup-html--pass_one span {
    display: inline-block
}

.popup-html--meal_one .popup-code, .popup-html--pass_one .popup-code {
    text-align: center;
    vertical-align: bottom
}

.popup-html--meal_one {
    bottom: 26%;
    padding-left: 39%;
    text-align: left;
    font-family: Roboto Regular, Arial, sans-serif;
    line-height: 1.2;
    color: #14b24a
}

.popup-html--meal_one .popup-code {
    text-align: inherit;
    vertical-align: bottom
}

@media screen and (max-width: 599px) {
    .popup-html--meal_one {
        bottom: 25%
    }

    .popup-html--meal_one .popup-code {
        line-height: 1.1
    }

    .popup-html--meal_one .popup-code span {
        display: block
    }
}

@media screen and (max-width: 359px) {
    .popup-html--meal_one {
        font-size: 1.125em
    }
}

.popup-html--just {
    position: static;
    width: 100%;
    -webkit-transform: none;
    transform: none;
    padding: 0;
    margin: 0
}

.popup-html--just .popup-meal3-wrapper, .popup-html--just .popup-stretch-wrapper {
    display: -webkit-box;
    display: flex
}

.popup-html--just .popup-meal3-wrapper a, .popup-html--just .popup-stretch-wrapper a {
    -webkit-box-flex: 1;
    flex: 1 1 auto
}

.popup-html--just .popup-meal3-wrapper a, .popup-html--just .popup-meal3-wrapper img, .popup-html--just .popup-stretch-wrapper a, .popup-html--just .popup-stretch-wrapper img {
    display: block
}

.popup-html--just .popup-meal3-wrapper img, .popup-html--just .popup-stretch-wrapper img {
    height: auto
}

[data-clipboard-text] {
    cursor: pointer
}

[data-clipboard-text]:hover {
    text-decoration: underline
}

.contact {
    color: #36393b
}

.contact input:not([type=submit]), .contact textarea {
    width: 100%;
    height: 2.375em;
    border: 1px solid #cdcdcd;
    border-radius: 0;
    padding: 0 .625em
}

.contact input:not([type=submit]):focus, .contact textarea:focus {
    outline: none;
    border: 1px solid #2a64b6
}

.contact textarea {
    padding-top: .625em;
    padding-bottom: .625em;
    height: 12.5em;
    resize: vertical
}

.contact label {
    font-family: Roboto Bold, Arial, sans-serif
}

.contact label > span:not(.wpcf7-form-control-wrap) {
    font-size: .8em;
    color: #e61e26;
    position: relative;
    top: -3px;
    right: -1px
}

.contact label .wpcf7-form-control-wrap {
    display: block;
    margin-top: .8125em
}

.contact .wpcf7-checkbox .wpcf7-list-item {
    display: block;
    margin-bottom: .625rem;
    line-height: 1.2
}

.contact input[type=checkbox] {
    position: relative;
    top: -1px;
    height: auto;
    width: auto;
    margin-right: .375rem
}

@media screen and (max-width: 599px) {
    .contact input[type=checkbox] {
        top: 1px
    }
}

.contact input[type=file] {
    height: auto;
    width: auto;
    border: 0;
    padding: 0
}

.contact .wpcf7 p {
    margin-bottom: 1.25em
}

.contact .wpcf7 p a {
    color: inherit
}

.contact .wpcf7 p a:hover {
    text-decoration: none
}

.contact .ajax-loader, .contact .wpcf7-not-valid-tip, .contact .wpcf7-validation-errors {
    display: none !important
}

.contact .wpcf7-not-valid.wpcf7-not-valid {
    border-color: #e61e26
}

.contact .wpcf7-response-output {
    border: none;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    padding-left: 0;
    padding-right: 0
}

.contact__text {
    margin-top: 0;
    line-height: 1.65;
    margin-bottom: 1.25em
}

.contact__text span {
    font-size: .8em;
    color: #e61e26;
    position: relative;
    top: -3px
}

.wpcf7 .screen-reader-response, .wpcf7 br {
    display: none
}

.wpcf7 mark {
    display: block;
    max-width: 22.5em;
    margin: .3125em 0 .625em;
    padding: .625em 1.25em;
    background-color: transparent;
    border: 1px solid #000
}

.template-table {
    background-color: #fafafa
}

@media screen and (max-width: 358px) {
    .template-table .content .container, .template-table .content .footer__cookie-decline-text, .template-table .content .footer__disclaimer-text {
        width: 100%;
        padding-left: 0;
        padding-right: 0
    }
}

.table {
    position: relative;
    z-index: 3;
    border-collapse: collapse;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 0 5px #ccc;
    table-layout: fixed;
    color: #36393b;
    margin-bottom: 3.5em
}

@media screen and (max-width: 1099px) {
    .table {
        font-size: .9em
    }
}

@media screen and (max-width: 969px) {
    .table {
        font-size: .8em
    }
}

@media screen and (min-width: 400px) and (max-width: 589px) {
    .table {
        font-size: 2.14vw
    }
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table {
        display: block;
        max-width: 45em;
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width: 889px) {
    .table {
        margin-bottom: .9375rem
    }
}

@media screen and (max-width: 399px) {
    .table {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        align-items: center;
        width: 100%
    }
}

.table * {
    outline: none
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table thead {
        display: none
    }
}

@media screen and (max-width: 399px) {
    .table thead {
        display: none
    }
}

@media screen and (max-width: 889px) {
    .table thead.table__head--mob, .table thead.table__head--mob tr {
        display: -webkit-box;
        display: flex;
        width: 100%
    }

    .table thead.table__head--mob tr {
        height: auto
    }

    .table thead.table__head--mob tr th {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        width: 50%;
        padding: .3125rem .625rem;
        font-size: .8125rem;
        text-indent: 0
    }

    .table thead.table__head--mob .table__head-links, .table thead.table__head--mob .table__head-rank, .table thead.table__head--mob .table__head-score {
        display: none
    }
}

.table thead tr {
    height: 2.75em;
    background-color: #fafafa;
    border-bottom: 1px solid #e0e0e0
}

.table thead tr .tooltip {
    text-decoration: underline;
    cursor: pointer
}

.table thead td, .table thead th {
    padding: 0 .625em;
    text-align: left
}

.table thead td.table__head-center, .table thead th.table__head-center {
    text-align: center
}

.table tbody {
    -webkit-transition: .3s;
    transition: .3s
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table tbody {
        display: block
    }
}

@media screen and (max-width: 399px) {
    .table tbody {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        align-items: center;
        width: 100%
    }
}

.table tbody tr {
    position: relative;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 0 1px #e0e0e0;
    background-color: #fff
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table tbody tr {
        display: block
    }
}

@media screen and (max-width: 399px) {
    .table tbody tr {
        width: 100%;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start
    }
}

.table tbody tr:first-child, .table tbody tr:hover {
    background-color: #fffbee
}

.table tbody tr:first-child .table__item-logo-wrap, .table tbody tr:first-child .table__item-title, .table tbody tr:hover .table__item-logo-wrap, .table tbody tr:hover .table__item-title {
    border-color: #43c55f
}

.table tbody tr:first-child .table__item-num, .table tbody tr:hover .table__item-num {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#078d10), to(#46e33a));
    background-image: linear-gradient(0deg, #078d10 0, #46e33a)
}

.table tbody td, .table tbody th {
    padding: 1.25em 0
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table tbody td, .table tbody th {
        display: block
    }
}

@media screen and (max-width: 399px) {
    .table tbody td, .table tbody th {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        align-items: center;
        padding: 0 1.25em;
        width: 100%
    }
}

.table tbody td:last-child, .table tbody th:last-child {
    padding-left: 3.625em;
    padding-right: 1.375em
}

@media screen and (min-width: 768px) and (max-width: 1099px) {
    .table tbody td:last-child, .table tbody th:last-child {
        padding-left: 1.375em
    }
}

.contact .table tbody td:last-child .wpcf7-submit, .contact .table tbody th:last-child .wpcf7-submit, .popup__form .wpcf7-form .table tbody td:last-child input[type=submit], .popup__form .wpcf7-form .table tbody th:last-child input[type=submit], .table tbody td:last-child .btn, .table tbody td:last-child .contact .wpcf7-submit, .table tbody td:last-child .popup__form .wpcf7-form input[type=submit], .table tbody th:last-child .btn, .table tbody th:last-child .contact .wpcf7-submit, .table tbody th:last-child .popup__form .wpcf7-form input[type=submit] {
    width: 100%;
    height: 3.1875rem
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .contact .table tbody td:last-child .wpcf7-submit, .contact .table tbody th:last-child .wpcf7-submit, .popup__form .wpcf7-form .table tbody td:last-child input[type=submit], .popup__form .wpcf7-form .table tbody th:last-child input[type=submit], .table tbody td:last-child .btn, .table tbody td:last-child .contact .wpcf7-submit, .table tbody td:last-child .popup__form .wpcf7-form input[type=submit], .table tbody th:last-child .btn, .table tbody th:last-child .contact .wpcf7-submit, .table tbody th:last-child .popup__form .wpcf7-form input[type=submit] {
        font-size: 1.8125em;
        height: 2.7586206897em
    }
}

@media screen and (max-width: 399px) {
    .contact .table tbody td:last-child .wpcf7-submit, .contact .table tbody th:last-child .wpcf7-submit, .popup__form .wpcf7-form .table tbody td:last-child input[type=submit], .popup__form .wpcf7-form .table tbody th:last-child input[type=submit], .table tbody td:last-child .btn, .table tbody td:last-child .contact .wpcf7-submit, .table tbody td:last-child .popup__form .wpcf7-form input[type=submit], .table tbody th:last-child .btn, .table tbody th:last-child .contact .wpcf7-submit, .table tbody th:last-child .popup__form .wpcf7-form input[type=submit] {
        font-size: 1.5em;
        height: 3.3333333333em
    }
}

.contact .table tbody .wpcf7-submit, .popup__form .wpcf7-form .table tbody input[type=submit], .table tbody .btn, .table tbody .contact .wpcf7-submit, .table tbody .popup__form .wpcf7-form input[type=submit] {
    position: relative;
    -webkit-transition: .25s;
    transition: .25s;
    margin-top: 10px
}

.contact .table tbody .wpcf7-submit:hover, .popup__form .wpcf7-form .table tbody input[type=submit]:hover, .table tbody .btn:hover, .table tbody .contact .wpcf7-submit:hover, .table tbody .popup__form .wpcf7-form input[type=submit]:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.contact .table tbody tr:hover .wpcf7-submit .table__dynamic-tooltip, .popup__form .wpcf7-form .table tbody tr:hover input[type=submit] .table__dynamic-tooltip, .table tbody tr:hover .btn .table__dynamic-tooltip, .table tbody tr:hover .contact .wpcf7-submit .table__dynamic-tooltip, .table tbody tr:hover .popup__form .wpcf7-form input[type=submit] .table__dynamic-tooltip {
    -webkit-transform: scale(.95);
    transform: scale(.95)
}

.table.table--first-row-default tbody tr:first-child {
    border: 0
}

.table.table--first-row-default tbody tr:first-child:not(:hover) {
    background-color: transparent
}

.table__head-rank {
    width: 7%
}

.table__head-image {
    width: 25.5%
}

@media screen and (max-width: 1149px) {
    .table__head-image {
        width: 28%
    }
}

.table__col-title.table__col-title {
    position: relative;
    width: 32.5%
}

@media screen and (max-width: 1149px) {
    .table__col-title.table__col-title {
        width: 35%
    }
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__col-title.table__col-title {
        float: left;
        width: 56%;
        padding-top: 1.0625em;
        padding-bottom: 1em
    }
}

@media screen and (max-width: 399px) {
    .table__col-title.table__col-title {
        display: -webkit-box;
        display: flex;
        width: 100%;
        padding-top: .75em;
        padding-bottom: 0;
        -webkit-box-ordinal-group: 2;
        order: 1
    }
}

.table__col-features.table__col-features, .table__head-features {
    width: 29%
}

@media screen and (max-width: 1149px) {
    .table__col-features.table__col-features, .table__head-features {
        width: 27%
    }
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__col-features.table__col-features, .table__head-features {
        float: left;
        width: 63%;
        clear: left;
        margin: 0;
        padding: 0;
        font-size: 1.8125em
    }
}

@media screen and (max-width: 399px) {
    .table__col-features.table__col-features, .table__head-features {
        display: -webkit-box;
        display: flex;
        width: 96%;
        -webkit-box-ordinal-group: 101;
        order: 100;
        padding-top: 0
    }
}

@media screen and (max-width: 399px) {
    .table__col-features.table__col-features {
        padding-bottom: .3125rem
    }
}

.table__col-score, .table__head-score.table__head-score {
    width: 17%;
    text-align: center
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__col-score, .table__head-score.table__head-score {
        float: right;
        margin-top: -8.5625em;
        width: 27%
    }
}

@media screen and (max-width: 399px) {
    .table__col-score, .table__head-score.table__head-score {
        display: -webkit-box;
        display: flex;
        width: 100%;
        -webkit-box-ordinal-group: 11;
        order: 10;
        padding-top: .6875em
    }
}

.table__col-score {
    opacity: 0;
    -webkit-transition: .15s;
    transition: .15s
}

.table_loaded .table__col-score {
    opacity: 1
}

@media screen and (max-width: 889px) {
    .table__col-score.table__col-score.table__col-score {
        padding-right: 1.5em;
        margin-right: 2em
    }
}

@media screen and (max-width: 399px) {
    .table__col-score.table__col-score.table__col-score {
        padding-right: 0;
        margin-right: 0;
        padding-left: 0;
        margin-top: .625em
    }
}

.table__col-links.table__col-links.table__col-links, .table__head-links.table__head-links {
    padding-right: 1.5625em;
    text-align: right
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__col-links.table__col-links.table__col-links, .table__head-links.table__head-links {
        clear: both;
        padding-left: 1.5em;
        padding-right: 1.5em;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        align-items: center;
        padding-top: 0
    }
}

@media screen and (max-width: 399px) {
    .table__col-links.table__col-links.table__col-links, .table__head-links.table__head-links {
        display: -webkit-box;
        display: flex;
        width: 100%;
        -webkit-box-ordinal-group: 100;
        order: 99;
        padding: 0 1em;
        margin-bottom: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        align-items: center
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .table__col-links.table__col-links.table__col-links, .table__head-links.table__head-links {
        padding-left: .625rem
    }
}

@media screen and (max-width: 889px) {
    .table__col-links.table__col-links.table__col-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

@media screen and (max-width: 399px) {
    .table__col-links.table__col-links.table__col-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse
    }
}

.table__badge {
    position: relative;
    width: 15.0625em;
    padding-right: 2.5625em;
    margin: 0 auto .5em;
    display: block;
    text-align: right
}

.table__badge svg {
    display: block;
    width: 100%
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__badge {
        width: 15.0625em;
        height: 3em;
        min-width: 167px;
        min-height: 33px
    }
}

@media screen and (max-width: 399px) {
    .table__badge {
        padding-right: 0;
        margin-bottom: 1em
    }
}

.table__badge-custom {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-right: 2.5625em;
    color: #fff;
    white-space: nowrap;
    font-size: .875rem
}

@media screen and (max-width: 399px) {
    .table__badge-custom {
        padding-right: 0
    }
}

.table__badge-custom span {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%;
    font-size: inherit
}

@media screen and (max-width: 419px) {
    .table__badge-custom span {
        font-size: .75em
    }
}

.table__badge--type1 .table__badge-custom span {
    padding: 0 2.125rem .3125rem .625rem
}

@media screen and (max-width: 1365px) {
    .table__badge--type1 .table__badge-custom span {
        font-size: .75rem
    }
}

@media screen and (max-width: 1023px) {
    .table__badge--type1 .table__badge-custom span {
        font-size: .625rem
    }
}

@media screen and (max-width: 419px) {
    .table__badge--type1 .table__badge-custom span {
        padding-top: .125rem
    }
}

@media screen and (max-width: 399px) {
    .table__badge--type1 .table__badge-custom span {
        padding-left: 5%;
        padding-right: 19%
    }
}

@media screen and (max-width: 359px) {
    .table__badge--type1 .table__badge-custom span {
        padding-bottom: .25rem
    }
}

.table__badge--type2 .table__badge-custom span {
    padding: 0 .8125rem .875rem 1.25rem;
    font-weight: 600
}

@media screen and (max-width: 767px) {
    .table__badge--type2 .table__badge-custom span {
        padding: 0 .5rem .4375rem .6875rem
    }
}

.table__badge-extra {
    position: absolute;
    top: .625em;
    left: 0
}

@media screen and (min-width: 1366px) {
    .table__badge-extra {
        top: .625em;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

@media screen and (max-width: 1365px) {
    .table__badge-extra {
        width: 3.125rem;
        height: 3.125rem
    }

    .table__badge-extra img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center"
    }
}

@media screen and (max-width: 889px) {
    .table__badge-extra {
        width: 2.5rem;
        height: 2.5rem;
        left: -.75rem;
        top: -.75rem
    }

    .table__badge-extra + .table__badge {
        text-align: center
    }
}

.table__badge--type1 img {
    display: block;
    width: 100%
}

.table__badge--type2 {
    z-index: 1;
    position: absolute;
    top: 1rem;
    left: -2rem;
    margin: 0
}

@media screen and (max-width: 767px) {
    .table__badge--type2 {
        position: static;
        -webkit-transform: translateX(-1.5625rem);
        transform: translateX(-1.5625rem);
        min-width: unset;
        width: 9.375rem !important;
        margin: 0 !important
    }
}

.table__badge--type3 {
    z-index: 1;
    position: absolute;
    top: -.0625rem;
    left: -2.75rem;
    width: auto;
    padding: 0;
    margin: 0
}

.table__badge--type3 img {
    display: block
}

.table__badge--type3 .table__badge-custom {
    padding: 3px 23px 11px 42px;
    font-size: .8125rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
    line-height: 1.35
}

@media screen and (max-width: 767px) {
    .table__badge--type3 {
        max-width: 9.6875rem;
        top: .125rem;
        left: -2.5rem
    }

    .table__badge--type3 .table__badge-custom {
        padding: 3px 22px 10px 50px !important
    }
}

.table__badge--type4 {
    position: absolute;
    top: -1px;
    right: 0;
    left: -1px;
    width: auto !important;
    max-width: unset !important;
    margin: 0 !important
}

.table__badge--type4 img {
    position: absolute;
    top: 50%;
    left: .3125rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.table__badge--type4 .table__badge-custom {
    position: static;
    padding: .1875rem .3125rem .1875rem 3.4375rem
}

.table__badge--type4 .table__badge-custom span {
    -webkit-box-pack: start;
    justify-content: flex-start;
    font-size: .875rem;
    font-weight: 800
}

.table__badge--type5 {
    width: 18.75rem
}

.table__badge--type6 {
    position: absolute;
    top: -.625rem;
    left: -.625rem;
    z-index: 1;
    width: auto;
    height: auto;
    min-width: unset;
    min-height: unset;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0
}

.table__item-title {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    overflow: hidden;
    height: 5.75em;
    width: 20em;
    border-radius: 2.875em;
    background-color: #fff;
    border: 1px solid #2a64b6;
    margin-left: .6875em
}

.triangle-style .table__item-title {
    overflow: visible
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__item-title {
        margin: 1.0625em 1.1875em .3125em
    }
}

@media screen and (max-width: 399px) {
    .table__item-title {
        position: relative;
        width: 96%;
        margin: 0 auto
    }

    .table__item-title:first-child {
        margin-top: .5625em
    }
}

.table__item-num {
    flex-shrink: 0;
    font-size: 3.125em;
    width: 1.44em;
    height: 1.44em;
    border-radius: 50%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#2a62b7), to(#3d7ee0));
    background-image: linear-gradient(0deg, #2a62b7 0, #3d7ee0);
    display: -webkit-inline-box;
    display: inline-flex;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .65);
    color: #fff;
    font-family: Roboto Bold, Arial, sans-serif;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin: .2em
}

@media screen and (max-width: 767px) {
    .table__item-num.table__item-num--show-mob.table__item-num--show-mob {
        display: -webkit-box;
        display: flex
    }

    .table__item-num.table__item-num--hide-mob {
        display: none !important
    }

    .table__item-num.table__item-num--hide-mob + .table__item-logo {
        margin-left: auto;
        margin-right: auto
    }

    .table__item-num.table__item-num--badge-inside {
        background: transparent !important
    }

    .table__item-num .hero__badge {
        display: block;
        width: 100%;
        height: 100%
    }
}

@media screen and (max-width: 399px) {
    .table__item-num {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-top: 0;
        margin-bottom: 0
    }
}

.table__item-logo {
    display: block;
    height: 100%;
    margin: 0 3.125em 0 1.5em
}

@media screen and (max-width: 399px) {
    .table__item-logo {
        margin: 0 auto
    }
}

.table__features {
    padding-left: 1.9375em
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__features {
        padding-left: 2.6551724138em;
        margin-bottom: .5172413793em
    }
}

@media screen and (max-width: 399px) {
    .table__features {
        padding-left: 0;
        text-align: center
    }
}

.table__features-deal-main {
    margin-bottom: .5rem;
    font-size: 1.5rem
}

.table__features-deal-main--size--extra_small {
    font-size: .875rem !important
}

.table__features-deal-main--size--small {
    font-size: 1rem !important
}

.table__features-deal-main--size--large {
    font-size: 1.75rem !important
}

.table__features-deal-disclaimer {
    font-size: .75rem;
    max-width: 18.75rem;
    margin: 0 auto;
    font-family: Roboto Light, Arial, sans-serif;
    line-height: 1.35;
    color: #919699
}

.table__features-deal-disclaimer a {
    text-decoration: none;
    color: inherit
}

.table__features-deal-disclaimer a:hover {
    text-decoration: underline
}

.table__features-deal-disclaimer .tooltip, .table__features-deal-disclaimer .tooltip-blank {
    display: inline-block;
    vertical-align: bottom;
    padding: .0625rem;
    width: .875rem;
    height: .875rem;
    border-radius: 50%;
    border: 1px solid;
    cursor: pointer
}

.table__features-deal-disclaimer svg {
    display: block;
    width: 100%;
    height: 100%
}

.table__features-deal {
    margin-left: -1.9375em;
    padding: 0 .625rem;
    text-align: center;
    line-height: 1.2
}

@media screen and (max-width: 399px) {
    .table__features-deal {
        margin: .625em 0 0
    }

    .table__features-deal .table__features-deal-main {
        margin-bottom: .125rem
    }

    .table__features-deal .table__features-deal-disclaimer {
        pointer-events: none
    }
}

.table__features-deal + div {
    text-align: center
}

@media screen and (min-width: 400px) {
    .table__features-deal + div {
        margin-left: -1.9375em
    }
}

.table__col--wrap + .table__features-deal-disclaimer {
    max-width: unset;
    width: 100%;
    padding: .3125rem;
    text-align: center;
    background-color: #fff
}

.table__features-list {
    list-style-type: none;
    padding-left: 0;
    margin: .2142857143em 0 0 -1.5em;
    font-size: .875em
}

@media screen and (max-width: 889px) {
    .table__features-list.mobilehidden-icon svg {
        display: none
    }
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__features-list {
        line-height: 1.35;
        margin-top: 0
    }
}

@media screen and (max-width: 399px) {
    .table__features-list {
        margin: .3125rem 0 0;
        font-size: 1.25em;
        line-height: 1.35
    }
}

.table__features-item {
    margin-bottom: .0714285714em
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__features-item {
        margin-bottom: 0
    }
}

@media screen and (max-width: 399px) {
    .table__features-item {
        text-align: left
    }
}

.table__features-item_bold {
    font-family: Roboto Bold, Arial, sans-serif
}

.table__features-links {
    font-size: .875em;
    margin-top: .5em
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__features-links {
        margin-top: 0;
        margin-left: -.875em
    }
}

@media screen and (max-width: 399px) {
    .table__features-links {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        font-size: 1.1875em;
        margin-left: -.5789473684em;
        margin-top: .2631578947em
    }
}

.table__video-link {
    position: relative;
    padding-left: 1.5em;
    color: #2a64b6
}

.table__video-link:before {
    content: "";
    width: 1.4285714286em;
    height: 1.4285714286em;
    display: block;
    border-radius: 50%;
    border: 2px solid #2a64b6;
    position: absolute;
    left: -.1428571429em;
    top: 0
}

.table__video-link:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: .5em solid #2a64b6;
    border-top: .2857142857em solid transparent;
    border-bottom: .2857142857em solid transparent;
    top: calc(50% - .28571em);
    left: .3571428571em
}

.table__video-link:hover {
    color: #2a64b6;
    text-decoration: none
}

.table__link {
    color: #919699
}

.table__link:hover {
    text-decoration: none
}

.table__score {
    text-align: center
}

.table__score .rate {
    margin: 0 auto;
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
}

.table__score-desc {
    position: relative;
    display: block;
    font-size: .875em;
    color: #919699;
    margin: .3125em 0
}

.table__score-title {
    font-size: 2.9375em;
    margin: 0 0 .2127659574em;
    line-height: 1
}

.table__popup {
    position: absolute;
    display: block;
    visibility: hidden;
    opacity: 0;
    top: 50%;
    right: calc(100% + 10px);
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
    background-color: #fff;
    box-shadow: 0 0 5px #ccc;
    -webkit-transition: .3s;
    transition: .3s
}

@media screen and (max-width: 889px) {
    .table__popup {
        position: static;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        max-height: 0;
        display: block;
        width: 100%;
        background-color: transparent;
        box-shadow: none
    }
}

.table__popup.table__popup_visible {
    opacity: 1;
    visibility: visible
}

@media screen and (max-width: 889px) {
    .table__popup.table__popup_visible {
        max-height: 25em
    }
}

.table__popup:after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-left: 25px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    position: absolute;
    top: calc(50% - 14px);
    right: -25px
}

@media screen and (max-width: 889px) {
    .table__popup:after {
        display: none
    }
}

.table__popup:before {
    content: "";
    display: block;
    width: 27px;
    height: 27px;
    border-left: 26px solid #ccc;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: calc(50% - 15px);
    right: -27px
}

@media screen and (max-width: 889px) {
    .table__popup:before {
        display: none
    }
}

.table__popup .rate {
    -webkit-transform: none;
    transform: none;
    margin: 15px 20px;
    display: block
}

.table__popup .table__score-btns {
    padding: 5px 20px
}

.table__score-btns {
    cursor: pointer;
    padding: .9375em 0 0
}

.table__score-btns .rate {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transition: .15s;
    transition: .15s;
    margin: 15px 10px
}

.table__popup_close {
    display: block;
    width: 100%;
    height: 2rem;
    position: relative;
    background-color: #fafafa
}

@media screen and (max-width: 889px) {
    .table__popup_close {
        display: none
    }
}

.table__popup_close:after, .table__popup_close:before {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: #36393b;
    position: absolute;
    right: 5px;
    top: 16px
}

.table__popup_close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.table__popup_close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.table__score-desc {
    font-size: .8125em;
    margin: .4615384615em 0
}

.table__score-desc i {
    font-style: normal
}

.table__score-btns {
    display: block
}

@media screen and (max-width: 889px) {
    .table__popup-wrap .table__popup-opener.table__popup-opener {
        margin-top: 0;
        margin-bottom: 1.1em
    }
}

.table__popup-opener {
    color: inherit
}

.table__popup-opener:hover {
    text-decoration: none
}

.table__info {
    margin-top: .3846153846em;
    display: -webkit-inline-box;
    display: inline-flex;
    font-size: .8125rem;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    color: #43c55f;
    background-color: #fff;
    text-transform: uppercase;
    font-family: Roboto Bold, Arial, sans-serif;
    padding: .3846153846em .9230769231em;
    border: 1px solid #43c55f;
    border-radius: 2px
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__info {
        font-size: 1.3em;
        margin-top: 1.2019230769em
    }
}

@media screen and (max-width: 399px) {
    .table__info {
        font-size: 1.3125em
    }
}

.table__links {
    text-align: center;
    margin-top: .625em;
    margin-bottom: -.3125em
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__links {
        font-size: 1.9em;
        margin-top: .0986842105em;
        margin-bottom: .2960526316em
    }
}

@media screen and (max-width: 399px) {
    .table__links {
        font-size: 1.9375em;
        margin-top: 0;
        margin-bottom: .2258064516em
    }
}

.table__links a {
    margin: 0 3px;
    text-decoration: none
}

@media screen and (max-width: 889px) {
    .table__links a {
        margin: 0 .2em
    }

    .table__links a, .table__links a svg {
        width: 1em;
        height: 1em
    }
}

.table__link-android svg path {
    fill: #a7c851
}

.table__link-windows svg path {
    fill: #1d7dd4
}

.table__link-apple svg path, .table__link-ios svg path {
    fill: #000
}

.tooltipster-box.tooltipster-box.tooltipster-box.tooltipster-box.tooltipster-box {
    background: rgba(0, 0, 0, .8);
    border-radius: 3px
}

.tooltipster-content.tooltipster-content.tooltipster-content.tooltipster-content.tooltipster-content {
    color: #fff;
    font-size: .75em;
    padding: 4px
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: rgba(0, 0, 0, .8)
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: rgba(0, 0, 0, .8)
}

.pretable__tooltip-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center
}

.pretable__tooltip {
    position: static !important;
    display: none;
    margin: 0 auto 1.8636363636em;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1.0625em;
    text-align: center
}

@media screen and (max-width: 889px) {
    .pretable__tooltip {
        display: block
    }
}

@media screen and (max-width: 399px) {
    .pretable__tooltip {
        font-size: .875em;
        margin: .7142857143em 0 1.1428571429em
    }
}

@media screen and (min-width: 890px) {
    .table_five .table__head-image {
        width: 23.5%
    }

    .table_five .table__col-features.table__col-features, .table_five .table__head-features {
        width: 25%
    }

    .table_five .table__col-deal, .table_five .table__head-deal {
        width: 12%;
        text-align: center
    }

    .table_five .table__col-score, .table_five .table__head-score.table__head-score {
        width: 13%
    }
}

@media screen and (min-width: 890px) and (max-width: 1149px) {
    .table_five .table__col-score, .table_five .table__head-score.table__head-score {
        width: 11%
    }
}

@media screen and (min-width: 890px) {
    .table_five .table__badge {
        padding-right: 1.0625em
    }
}

@media screen and (min-width: 890px) {
    .table_five .table__col-links.table__col-links.table__col-links, .table_five .table__head-links.table__head-links {
        padding-left: 2.125em
    }
}

@media screen and (min-width: 890px) and (max-width: 1149px) {
    .table_five .table__col-links.table__col-links.table__col-links, .table_five .table__head-links.table__head-links {
        width: 18%
    }
}

.table__deal-price-old {
    color: #9fa3a3;
    font-size: .875em;
    text-decoration: line-through;
    display: block;
    text-align: center
}

@media screen and (max-width: 889px) {
    .table__deal-price-old {
        font-size: 1.125em;
        line-height: 1
    }
}

@media screen and (max-width: 399px) {
    .table__deal-price-old {
        font-size: .875em
    }
}

.table__deal-price {
    font-family: Roboto Bold, Arial, sans-serif;
    font-size: 2em;
    text-align: center;
    line-height: 1.2;
    padding-top: 0
}

.table__deal-price span {
    display: block;
    font-size: .4375em;
    font-family: Roboto Regular, Arial, sans-serif
}

@media screen and (max-width: 889px) {
    .table__deal-price span {
        font-size: .5625em;
        margin-top: .1666666667em;
        margin-bottom: -.5em
    }
}

@media screen and (max-width: 399px) {
    .table__deal-price span {
        font-size: .4375em
    }
}

@media screen and (max-width: 889px) {
    .table__col-deal.table__col-deal {
        position: absolute;
        top: 12.1875em;
        right: 1.4375em;
        width: 20%;
        text-align: center;
        min-width: 70px
    }
}

@media screen and (max-width: 399px) {
    .table__col-deal.table__col-deal {
        position: static;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        justify-content: space-around;
        -webkit-box-align: center;
        align-items: center;
        width: 100%;
        -webkit-box-ordinal-group: 51;
        order: 50;
        margin-top: -1.25em;
        margin-bottom: 1.25em;
        padding: 0 .625em 0 .3125em
    }
}

.table__item-title_large.table__item-title_large.table__item-title_large {
    position: relative;
    width: 20.0625em;
    margin-top: 2.1875em;
    margin-bottom: 2.1875em
}

@media screen and (max-width: 399px) {
    .table__item-title_large.table__item-title_large.table__item-title_large {
        font-size: 4.8vw
    }
}

.table__item-title_large.table__item-title_large.table__item-title_large:after {
    content: "";
    display: block;
    height: calc(5.75em - 1px);
    width: 3px;
    position: absolute;
    right: 13.625em;
    top: 0;
    z-index: 123;
    background-color: #fff
}

.table__item-logo-wrap {
    position: absolute;
    width: 13.875em;
    height: 10.5625em;
    right: -1px;
    background-color: #fff;
    top: calc(50% - 5.28125em);
    border: 1px solid #2a64b6;
    border-radius: .25em;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center
}

.table__item-logo-wrap img {
    margin: 0;
    width: 95%;
    height: auto;
    max-height: 100%
}

.table_altimgs .table__badge {
    margin: -.9375em auto 2.5em;
    display: block;
    padding-right: 0;
    padding-left: 2.5625em
}

@media screen and (max-width: 889px) {
    .table_altimgs .table__badge {
        margin: 0 auto 3.5em
    }
}

@media screen and (max-width: 374px) {
    .table_altimgs .table__badge {
        margin-bottom: 1.2em
    }
}

.table_altimgs .table__item-title {
    overflow: visible
}

.table__col-links .table__popup-opener {
    position: relative;
    color: #919699;
    text-align: center;
    display: block;
    font-size: .875em;
    margin-top: .5em
}

.contact .table__col-links .wpcf7-submit, .popup__form .wpcf7-form .table__col-links input[type=submit], .table__col-links .btn, .table__col-links .contact .wpcf7-submit, .table__col-links .popup__form .wpcf7-form input[type=submit] {
    padding-left: .125em;
    padding-right: .125em
}

.table__popup-wrap {
    display: block;
    position: relative;
    z-index: 123
}

@media screen and (max-width: 889px) {
    .table__popup-wrap {
        -webkit-box-ordinal-group: 3;
        order: 2;
        width: 100%;
        font-size: 1.4em
    }
}

@media screen and (max-width: 374px) {
    .table__popup-wrap {
        font-size: .9em
    }
}

.table__shops-list {
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: .3125em 1.125em
}

@media screen and (max-width: 889px) {
    .table__shops-list {
        padding-left: 0;
        padding-right: 0
    }
}

.table__shops-link {
    height: 3.4375em
}

@media screen and (max-width: 889px) {
    .table__shops-link {
        border-bottom: 1px solid #e0e0e0
    }

    .table__shops-link:first-child {
        border-top: 1px solid #e0e0e0
    }
}

@media screen and (max-width: 377px) {
    .table__shops-link {
        height: 4.0277777778em
    }
}

.table__shops-link:not(:last-child) {
    border-bottom: 1px solid #e0e0e0
}

.table__shops-link a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    min-width: 17.25em;
    text-decoration: none
}

.table__shops-link a svg {
    display: block;
    height: 70%;
    width: auto
}

.table__shops-link a span {
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    border-radius: 3px;
    background-color: #f1f1f1;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1em;
    color: #2a64b6;
    font-family: Roboto Bold, Arial, sans-serif;
    height: 2.125em;
    padding: 0 1.4375em
}

.table__shops-link a:hover span {
    background-color: #e4e4e4
}

.table__shop-amazon.table__shop-amazon svg {
    width: 6.25em;
    height: 2.0625em
}

.table__shop-ebay.table__shop-ebay svg {
    width: 4.875em;
    height: 2em
}

.table__shop-jet.table__shop-jet svg {
    width: 6.1875em;
    height: 2.75em
}

.table__shop-walmart.table__shop-walmart svg {
    width: 6.375em;
    height: 1.75em
}

.table__shop-target.table__shop-target svg {
    width: 6.3125em;
    height: 2.1875em
}

.table__btns-wrap {
    width: 100%
}

@media screen and (max-width: 889px) {
    .table__btns-wrap {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        align-items: stretch;
        margin: 1.25em 0;
        -webkit-box-ordinal-group: 4;
        order: 3
    }

    .contact .contact .table__btns-wrap .wpcf7-submit, .contact .popup__form .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit], .popup__form .contact .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit], .popup__form .wpcf7-form .contact .table__btns-wrap input[type=submit].wpcf7-submit, .popup__form .wpcf7-form .wpcf7-form .table__btns-wrap input[type=submit], .table__btns-wrap .btn.btn.btn, .table__btns-wrap .contact .contact .wpcf7-submit, .table__btns-wrap .contact .popup__form .wpcf7-form input.wpcf7-submit[type=submit], .table__btns-wrap .popup__form .contact .wpcf7-form input.wpcf7-submit[type=submit], .table__btns-wrap .popup__form .wpcf7-form .contact input[type=submit].wpcf7-submit, .table__btns-wrap .popup__form .wpcf7-form .wpcf7-form input[type=submit] {
        -webkit-box-flex: 0;
        flex: 0 1 48%;
        max-width: 48%;
        height: 2.8571428571em;
        font-size: 1.75em;
        margin: 0;
        border-radius: 3px;
        text-transform: uppercase;
        font-family: Roboto Bold, Arial, sans-serif;
        padding-left: .625em;
        padding-right: .625em
    }

    .contact .contact .table__btns-wrap .wpcf7-submit:after, .contact .popup__form .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit]:after, .popup__form .contact .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit]:after, .popup__form .wpcf7-form .contact .table__btns-wrap input[type=submit].wpcf7-submit:after, .popup__form .wpcf7-form .wpcf7-form .table__btns-wrap input[type=submit]:after, .table__btns-wrap .btn.btn.btn:after, .table__btns-wrap .contact .contact .wpcf7-submit:after, .table__btns-wrap .contact .popup__form .wpcf7-form input.wpcf7-submit[type=submit]:after, .table__btns-wrap .popup__form .contact .wpcf7-form input.wpcf7-submit[type=submit]:after, .table__btns-wrap .popup__form .wpcf7-form .contact input[type=submit].wpcf7-submit:after, .table__btns-wrap .popup__form .wpcf7-form .wpcf7-form input[type=submit]:after {
        display: none
    }

    .contact .contact .table__btns-wrap .wpcf7-submit svg, .contact .popup__form .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit] svg, .popup__form .contact .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit] svg, .popup__form .wpcf7-form .contact .table__btns-wrap input[type=submit].wpcf7-submit svg, .popup__form .wpcf7-form .wpcf7-form .table__btns-wrap input[type=submit] svg, .table__btns-wrap .btn.btn.btn svg, .table__btns-wrap .contact .contact .wpcf7-submit svg, .table__btns-wrap .contact .popup__form .wpcf7-form input.wpcf7-submit[type=submit] svg, .table__btns-wrap .popup__form .contact .wpcf7-form input.wpcf7-submit[type=submit] svg, .table__btns-wrap .popup__form .wpcf7-form .contact input[type=submit].wpcf7-submit svg, .table__btns-wrap .popup__form .wpcf7-form .wpcf7-form input[type=submit] svg {
        width: 1.1em;
        height: 1.1em;
        margin-right: .375em
    }
}

@media screen and (max-width: 374px) {
    .table__btns-wrap {
        margin-bottom: .6875em
    }

    .contact .contact .table__btns-wrap .wpcf7-submit, .contact .popup__form .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit], .popup__form .contact .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit], .popup__form .wpcf7-form .contact .table__btns-wrap input[type=submit].wpcf7-submit, .popup__form .wpcf7-form .wpcf7-form .table__btns-wrap input[type=submit], .table__btns-wrap .btn.btn.btn, .table__btns-wrap .contact .contact .wpcf7-submit, .table__btns-wrap .contact .popup__form .wpcf7-form input.wpcf7-submit[type=submit], .table__btns-wrap .popup__form .contact .wpcf7-form input.wpcf7-submit[type=submit], .table__btns-wrap .popup__form .wpcf7-form .contact input[type=submit].wpcf7-submit, .table__btns-wrap .popup__form .wpcf7-form .wpcf7-form input[type=submit] {
        font-size: 1.0625em;
        height: 4.7058823529em;
        white-space: normal;
        text-align: left;
        line-height: 1.25;
        padding-left: .875em;
        -webkit-box-flex: 0;
        flex: 0 1 48%;
        max-width: 49%
    }

    .contact .contact .table__btns-wrap .wpcf7-submit svg, .contact .popup__form .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit] svg, .popup__form .contact .wpcf7-form .table__btns-wrap input.wpcf7-submit[type=submit] svg, .popup__form .wpcf7-form .contact .table__btns-wrap input[type=submit].wpcf7-submit svg, .popup__form .wpcf7-form .wpcf7-form .table__btns-wrap input[type=submit] svg, .table__btns-wrap .btn.btn.btn svg, .table__btns-wrap .contact .contact .wpcf7-submit svg, .table__btns-wrap .contact .popup__form .wpcf7-form input.wpcf7-submit[type=submit] svg, .table__btns-wrap .popup__form .contact .wpcf7-form input.wpcf7-submit[type=submit] svg, .table__btns-wrap .popup__form .wpcf7-form .contact input[type=submit].wpcf7-submit svg, .table__btns-wrap .popup__form .wpcf7-form .wpcf7-form input[type=submit] svg {
        width: 1.4em;
        height: 1.4em;
        margin-right: .625em
    }
}

.table__dynamic-tooltip {
    display: block;
    position: absolute;
    width: 100%;
    border-radius: 3px;
    font-size: .75em;
    color: #fff;
    padding: .4166666667em;
    line-height: 1.2;
    bottom: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0 auto;
    font-family: Roboto Regular, Arial, sans-serif;
    white-space: normal;
    text-align: center;
    text-transform: none;
    max-width: 12.5rem;
    opacity: 1
}

@-webkit-keyframes tooltipFade {
    0% {
        opacity: 0
    }
    10% {
        opacity: 1
    }
    80% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes tooltipFade {
    0% {
        opacity: 0
    }
    10% {
        opacity: 1
    }
    80% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

.table__dynamic-tooltip:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 4px);
    bottom: -4px;
    border-radius: 2px
}

@media screen and (max-width: 399px) {
    .table__dynamic-tooltip {
        -webkit-animation: tooltipFade 5s ease-in 3s both;
        animation: tooltipFade 5s ease-in 3s both
    }

    .tooltip-hidden-mob .table__dynamic-tooltip {
        display: none
    }
}

.table__dynamic-tooltip_hidden {
    -webkit-transition: 2.5s;
    transition: 2.5s
}

@media screen and (min-width: 400px) {
    .table__dynamic-tooltip_hidden {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@media screen and (max-width: 399px) {
    .table__dynamic-tooltip_hidden {
        opacity: 0;
        visibility: hidden
    }
}

.table_loaded tbody {
    opacity: 1
}

.table__underbtntext {
    margin: .375em 0 0;
    font-size: .75rem;
    line-height: 1.3;
    display: block;
    text-align: center;
    -webkit-box-ordinal-group: 4;
    order: 3
}

.page-background .table__underbtntext {
    padding: .25rem;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    font-size: .6875rem
}

@media screen and (min-width: 768px) {
    .page-background .table__underbtntext {
        display: none
    }

    .page-background .table__underbtntext.show_desktop_under_btn_text {
        display: block
    }
}

@media screen and (max-width: 767px) {
    .page-background .table__underbtntext {
        -webkit-transform: none;
        transform: none;
        width: 100%;
        margin: 0;
        padding: .375rem;
        font-size: .75rem
    }
}

@media screen and (max-width: 767px) {
    .table__underbtntext {
        font-size: 1.125rem;
        font-family: Roboto Bold, Arial, sans-serif
    }
}

.table__underbtntext-link {
    margin-top: .375rem;
    text-decoration: none;
    color: inherit
}

.table__underbtntext-link[href*=tel] {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1.5em;
    font-family: Roboto Bold, Arial, sans-serif;
    letter-spacing: -.0375rem;
    -webkit-transition: all .2s;
    transition: all .2s
}

.table__underbtntext-link[href*=tel]:before {
    content: "";
    flex-shrink: 0;
    margin-right: .0625rem;
    width: 1rem;
    height: 1rem;
    background: url(icon-tel.svg) no-repeat 50%/cover;
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg)
}

.table__tags-links {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: .5625rem -.1875rem 0;
    padding: 0
}

.table__tags-links li:last-of-type {
    width: 100%
}

.table__tags-links li, .table__tags-links li:nth-child(2n) {
    width: 50%;
    margin-bottom: .1875rem;
    padding: 0 .1875rem
}

@media screen and (min-width: 890px) and (max-width: 1199px) {
    .table__tags-links li, .table__tags-links li:nth-child(2n) {
        width: 100%
    }
}

@media screen and (max-width: 889px) {
    .table__tags-links li, .table__tags-links li:nth-child(2n) {
        width: 33.33%
    }
}

.table__tags-links a {
    display: block;
    padding: .1875rem;
    font-size: .8125rem;
    letter-spacing: -.01em;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    color: #43c55f;
    border: 1px solid #43c55f
}

.table-blank-first-col .table__head-image {
    text-indent: -7%;
    text-align: center
}

.table-blank-first-col tbody .table__item-num {
    display: none
}

.table-blank-first-col tbody .table__item-title {
    padding: 0 .625em
}

.table-blank-first-col tbody .table__item-logo {
    margin: 0 auto;
    height: 140%
}

.table-blank-first-col .table_altimgs .table__badge {
    padding-left: 0;
    max-width: 12.5rem
}

.table-blank-first-col .table_altimgs .table__item-title {
    width: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    border: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent
}

.table-blank-first-col .table_altimgs .table__item-title:after {
    display: none
}

.table-blank-first-col .table_altimgs .table__item-title .table__item-logo-wrap {
    position: static
}

.table-blank-first-col .table_altimgs .table__item-title .table__item-logo-wrap img {
    width: auto
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table-blank-first-col .table_altimgs .table__col-title {
        width: 66%
    }
}

@media screen and (min-width: 1024px) {
    .page-background .table {
        font-size: .875em
    }

    .contact .page-background .table .wpcf7-submit, .page-background .table .btn, .page-background .table .contact .wpcf7-submit, .page-background .table .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background .table input[type=submit] {
        font-size: 1.125rem;
        -webkit-transform: scale(1.03);
        transform: scale(1.03)
    }

    .contact .page-background .table tr:hover .wpcf7-submit, .page-background .table tr:hover .btn, .page-background .table tr:hover .contact .wpcf7-submit, .page-background .table tr:hover .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background .table tr:hover input[type=submit] {
        -webkit-transform: scale(1.08);
        transform: scale(1.08)
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view .table .table__item-num--show-mob, .table.table--alternative-mob-view .table__item-num--show-mob {
        position: absolute;
        width: 1.875rem;
        height: 1.875rem;
        font-size: 1.25rem;
        margin: 0;
        left: 0
    }
}

@media screen and (max-width: 767px) and (max-width: 399px) {
    .mobile-alternative-view .table .table__item-num--show-mob, .table.table--alternative-mob-view .table__item-num--show-mob {
        left: -.75rem
    }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
    .mobile-alternative-view .table .table__item-num--show-mob, .table.table--alternative-mob-view .table__item-num--show-mob {
        left: -.875rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view .table tr, .table.table--alternative-mob-view tr {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -webkit-box-align: stretch;
        align-items: stretch;
        opacity: 0;
        -webkit-transition: opacity .3s ease-in;
        transition: opacity .3s ease-in
    }

    .mobile-alternative-view .table tr, .mobile-alternative-view .table tr:first-child, .table.table--alternative-mob-view tr, .table.table--alternative-mob-view tr:first-child {
        border: 0;
        border-bottom: 7px solid #000
    }

    .mobile-alternative-view .table tr:last-child, .table.table--alternative-mob-view tr:last-child {
        border-bottom: 0
    }

    .mobile-alternative-view .table tr .table__col--wrap, .table.table--alternative-mob-view tr .table__col--wrap {
        width: 50%;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center
    }

    .mobile-alternative-view .table tr .table__col--wrap:first-of-type, .table.table--alternative-mob-view tr .table__col--wrap:first-of-type {
        background-color: #efefef
    }

    .mobile-alternative-view .table tr .table__col--wrap:last-of-type, .table.table--alternative-mob-view tr .table__col--wrap:last-of-type {
        background-color: #fff
    }

    .mobile-alternative-view .table tr td, .table.table--alternative-mob-view tr td {
        width: 100%;
        float: none;
        clear: none
    }

    .mobile-alternative-view .table tr td.table__col-title, .table.table--alternative-mob-view tr td.table__col-title {
        padding-top: .3125em;
        padding-bottom: 0
    }

    .mobile-alternative-view .table tr td.table__col-title .table__badge, .table.table--alternative-mob-view tr td.table__col-title .table__badge {
        width: 100%;
        max-width: 10rem;
        height: auto;
        padding-right: 0;
        margin-bottom: 0;
        text-align: center
    }

    .mobile-alternative-view .table tr td.table__col-title .table__badge .table__badge-custom, .table.table--alternative-mob-view tr td.table__col-title .table__badge .table__badge-custom {
        padding-right: 0
    }

    .mobile-alternative-view .table tr td.table__col-title .table__badge.mobilehidden, .table.table--alternative-mob-view tr td.table__col-title .table__badge.mobilehidden {
        display: none
    }

    .mobile-alternative-view .table tr td.table__col-title .table__badge img, .table.table--alternative-mob-view tr td.table__col-title .table__badge img {
        display: block;
        height: auto
    }

    .mobile-alternative-view .table tr td.table__col-title .table__item-title, .table.table--alternative-mob-view tr td.table__col-title .table__item-title {
        overflow: visible;
        margin-top: .3125em;
        height: 3.125rem
    }
}

@media screen and (max-width: 767px) and (max-width: 599px) {
    .mobile-alternative-view .table tr td.table__col-title .table__item-logo, .table.table--alternative-mob-view tr td.table__col-title .table__item-logo {
        margin-left: auto;
        margin-right: auto;
        height: 100%
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view .table tr td.table__col-score, .mobile-alternative-view .table tr td.table__col-title, .table.table--alternative-mob-view tr td.table__col-score, .table.table--alternative-mob-view tr td.table__col-title {
        float: left;
        margin: 0
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view .table tr td.table__col-features, .mobile-alternative-view .table tr td.table__col-links, .table.table--alternative-mob-view tr td.table__col-features, .table.table--alternative-mob-view tr td.table__col-links {
        float: right;
        clear: none;
        margin: 0
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view .table tr td.table__col-score, .table.table--alternative-mob-view tr td.table__col-score {
        padding: .75em .625em
    }
}

@media screen and (max-width: 767px) and (max-width: 419px) {
    .mobile-alternative-view .table tr td.table__col-score, .table.table--alternative-mob-view tr td.table__col-score {
        margin-top: .375rem;
        font-size: .625rem
    }

    .mobile-alternative-view .table tr td.table__col-score .table__score, .table.table--alternative-mob-view tr td.table__col-score .table__score {
        width: 100%;
        max-width: 6.875rem;
        margin: 0 auto .3125rem;
        text-align: left
    }

    .mobile-alternative-view .table tr td.table__col-score .table__score:after, .table.table--alternative-mob-view tr td.table__col-score .table__score:after {
        content: "";
        display: table;
        clear: both
    }

    .mobile-alternative-view .table tr td.table__col-score .table__score-title, .table.table--alternative-mob-view tr td.table__col-score .table__score-title {
        float: right;
        font-size: 2.375em;
        font-family: Roboto Light, Arial, sans-serif;
        letter-spacing: -.5px
    }

    .mobile-alternative-view .table tr td.table__col-score .table__score-desc, .table.table--alternative-mob-view tr td.table__col-score .table__score-desc {
        font-size: .5625rem
    }

    .mobile-alternative-view .table tr td.table__col-score .rate, .table.table--alternative-mob-view tr td.table__col-score .rate {
        margin: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .mobile-alternative-view .table tr td.table__col-score .table__popup-opener, .table.table--alternative-mob-view tr td.table__col-score .table__popup-opener {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view .table tr td.table__col-features, .table.table--alternative-mob-view tr td.table__col-features {
        padding: .3125em;
        margin-bottom: 0;
        text-align: center
    }

    .mobile-alternative-view .table tr td.table__col-features .table__features-item, .table.table--alternative-mob-view tr td.table__col-features .table__features-item {
        font-size: .625rem;
        text-align: center
    }

    .mobile-alternative-view .table tr td.table__col-features .table__features-item svg, .table.table--alternative-mob-view tr td.table__col-features .table__features-item svg {
        width: .625rem;
        height: .625rem
    }

    .mobile-alternative-view .table tr td.table__col-features .table__features, .table.table--alternative-mob-view tr td.table__col-features .table__features {
        padding: 0;
        margin-bottom: 0
    }

    .mobile-alternative-view .table tr td.table__col-features .table__features > div, .table.table--alternative-mob-view tr td.table__col-features .table__features > div {
        margin: 0;
        padding: 0
    }

    .mobile-alternative-view .table tr td.table__col-features .table__info, .table.table--alternative-mob-view tr td.table__col-features .table__info {
        margin: 0;
        font-size: .875rem;
        font-family: Roboto Regular, Arial, sans-serif;
        line-height: 1.2;
        text-transform: none;
        border: 0;
        background-color: transparent;
        color: #36393b
    }
}

@media screen and (max-width: 767px) and (max-width: 599px) {
    .mobile-alternative-view .table tr td.table__col-features .table__features-deal-main, .table.table--alternative-mob-view tr td.table__col-features .table__features-deal-main {
        font-size: 1.25rem
    }

    .mobile-alternative-view .table tr td.table__col-features .table__link, .table.table--alternative-mob-view tr td.table__col-features .table__link {
        font-size: .875rem
    }

    .mobile-alternative-view .table tr td.table__col-features .table__info, .table.table--alternative-mob-view tr td.table__col-features .table__info {
        font-size: .75rem
    }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
    .mobile-alternative-view .table tr td.table__col-features .table__features-deal-main, .table.table--alternative-mob-view tr td.table__col-features .table__features-deal-main {
        font-size: 1.125rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view .table tr td .table__features-links, .table.table--alternative-mob-view tr td .table__features-links {
        margin-left: 0;
        font-size: .75rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view .table tr td.table__col-links, .table.table--alternative-mob-view tr td.table__col-links {
        padding-bottom: .75em
    }

    .contact .mobile-alternative-view .table tr td.table__col-links .wpcf7-submit, .contact .table.table--alternative-mob-view tr td.table__col-links .wpcf7-submit, .mobile-alternative-view .table tr td.table__col-links .btn, .mobile-alternative-view .table tr td.table__col-links .contact .wpcf7-submit, .mobile-alternative-view .table tr td.table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-alternative-view .table tr td.table__col-links input[type=submit], .popup__form .wpcf7-form .table.table--alternative-mob-view tr td.table__col-links input[type=submit], .table.table--alternative-mob-view tr td.table__col-links .btn, .table.table--alternative-mob-view tr td.table__col-links .contact .wpcf7-submit, .table.table--alternative-mob-view tr td.table__col-links .popup__form .wpcf7-form input[type=submit] {
        height: 3.125rem;
        margin-top: 0
    }
}

@media screen and (max-width: 767px) and (max-width: 419px) {
    .mobile-alternative-view .table tr td.table__col-links, .table.table--alternative-mob-view tr td.table__col-links {
        padding: 0 .3125em .75em
    }

    .contact .mobile-alternative-view .table tr td.table__col-links .wpcf7-submit, .contact .table.table--alternative-mob-view tr td.table__col-links .wpcf7-submit, .mobile-alternative-view .table tr td.table__col-links .btn, .mobile-alternative-view .table tr td.table__col-links .contact .wpcf7-submit, .mobile-alternative-view .table tr td.table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-alternative-view .table tr td.table__col-links input[type=submit], .popup__form .wpcf7-form .table.table--alternative-mob-view tr td.table__col-links input[type=submit], .table.table--alternative-mob-view tr td.table__col-links .btn, .table.table--alternative-mob-view tr td.table__col-links .contact .wpcf7-submit, .table.table--alternative-mob-view tr td.table__col-links .popup__form .wpcf7-form input[type=submit] {
        font-size: 1.125rem;
        height: 2.5rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view .table tr td .table__features-deal-disclaimer, .table.table--alternative-mob-view tr td .table__features-deal-disclaimer {
        font-size: .625rem;
        margin: .625em auto 0;
        font-family: Roboto Light, Arial, sans-serif;
        color: #919699;
        line-height: 1.2;
        text-align: center
    }

    .mobile-alternative-view .table tr td .table__features-deal-disclaimer a, .table.table--alternative-mob-view tr td .table__features-deal-disclaimer a {
        color: inherit
    }
}

@media screen and (max-width: 1023px) {
    .mobile-alternative-view--dating .table, .table.table--alternative-mob-view.table--alternative-mob-view--dating {
        margin-top: .625rem;
        box-shadow: none
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view--dating .table .table__underbtntext, .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__underbtntext {
        display: none
    }

    .mobile-alternative-view--dating .table .table__item-title, .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__item-title {
        overflow: visible;
        border-color: #e0e0e0
    }

    .mobile-alternative-view--dating .table .table__item-title .table__item-logo, .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__item-title .table__item-logo {
        height: 150%
    }

    .mobile-alternative-view--dating .table .table__item-num, .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__item-num {
        width: 1.875rem;
        height: 1.875rem;
        font-size: 1.25rem;
        left: -1rem
    }

    .mobile-alternative-view--dating .table .table__col-links, .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__col-links {
        padding-left: .75rem !important;
        padding-right: .75rem !important
    }

    .contact .mobile-alternative-view--dating .table .table__col-links .wpcf7-submit, .contact .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__col-links .wpcf7-submit, .mobile-alternative-view--dating .table .table__col-links .btn, .mobile-alternative-view--dating .table .table__col-links .contact .wpcf7-submit, .mobile-alternative-view--dating .table .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-alternative-view--dating .table .table__col-links input[type=submit], .popup__form .wpcf7-form .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__col-links input[type=submit], .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__col-links .btn, .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__col-links .contact .wpcf7-submit, .table.table--alternative-mob-view.table--alternative-mob-view--dating .table__col-links .popup__form .wpcf7-form input[type=submit] {
        width: 100%;
        font-size: .9375rem !important
    }

    .mobile-alternative-view--dating .table tr, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr {
        margin-bottom: .625rem
    }

    .mobile-alternative-view--dating .table tr, .mobile-alternative-view--dating .table tr:first-child, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr:first-child {
        border-bottom: 0
    }

    .mobile-alternative-view--dating .table tr .table__col--wrap:first-of-type, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr .table__col--wrap:first-of-type {
        background-color: #f3f3f3
    }

    .mobile-alternative-view--dating .table tr td.table__col-score, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr td.table__col-score {
        margin-top: 0
    }

    .mobile-alternative-view--dating .table tr td.table__col-score .table__score, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr td.table__col-score .table__score {
        display: -webkit-inline-box;
        display: inline-flex;
        flex-wrap: wrap;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        max-width: 7.5rem;
        margin-bottom: .375rem
    }

    .mobile-alternative-view--dating .table tr td.table__col-score .table__score .table__score-title, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr td.table__col-score .table__score .table__score-title {
        margin-right: .375rem;
        margin-bottom: 0;
        font-family: Roboto Regular, Arial, sans-serif;
        font-size: 1.375rem
    }

    .mobile-alternative-view--dating .table tr td.table__col-score .table__score .table__score-desc, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr td.table__col-score .table__score .table__score-desc {
        width: 100%;
        margin: .125rem 0 0;
        font-size: .625rem;
        text-align: center
    }

    .mobile-alternative-view--dating .table tr td.table__col-score .table__score .table__popup-opener, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr td.table__col-score .table__score .table__popup-opener {
        display: inline
    }

    .mobile-alternative-view--dating .table tr td.table__col-features .table__info, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr td.table__col-features .table__info {
        font-size: .875rem;
        font-family: Roboto Bold, Arial, sans-serif;
        margin-bottom: .375rem;
        text-transform: uppercase
    }

    .mobile-alternative-view--dating .table tr .table__col-features-small, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr .table__col-features-small {
        padding-bottom: .1875rem;
        -webkit-box-ordinal-group: 1002;
        order: 1001;
        text-align: center;
        font-size: .75rem;
        line-height: 1.1;
        letter-spacing: -.2px
    }

    .mobile-alternative-view--dating .table tr .table__col-features-small svg, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr .table__col-features-small svg {
        display: none
    }

    .mobile-alternative-view--dating .table tr .table__features-links, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr .table__features-links {
        margin-top: 0;
        margin-bottom: .3125rem
    }

    .mobile-alternative-view--dating .table tr .table__features-links .table__link, .table.table--alternative-mob-view.table--alternative-mob-view--dating tr .table__features-links .table__link {
        color: #36393b
    }
}

.table__item-logo--additional {
    display: none
}

.table-heading-title {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: .75rem .625rem;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    color: #36393b
}

.tooltipster-show a {
    text-decoration: underline;
    color: inherit
}

.tooltipster-show a:hover {
    text-decoration: none
}

.table__disclosure-bottom {
    width: 100%;
    font-size: .625rem;
    text-align: left;
    margin-top: -.625em;
    margin-bottom: .625em
}

@media screen and (min-width: 890px) {
    .table__disclosure-bottom {
        margin-top: -4.125em;
        margin-bottom: 4.125em
    }
}

@media screen and (max-width: 767px) {
    .table__disclosure-bottom {
        padding: 0 .3125em
    }
}

@media screen and (max-width: 969px) {
    .table__disclosure-bottom {
        font-size: .8em
    }
}

@media screen and (min-width: 400px) and (max-width: 889px) {
    .table__disclosure-bottom {
        max-width: 45em;
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width: 419px) {
    .table__disclosure-bottom {
        font-size: .625rem
    }
}

.table-clear-style .table__dynamic-tooltip, .table-clear-style thead {
    display: none
}

.table-additional-title {
    padding: .375rem .375rem .4375rem;
    text-align: center;
    border: 1px solid #fff
}

.table-additional-title h2, .table-additional-title h3, .table-additional-title h4, .table-additional-title h5, .table-additional-title h6 {
    margin: 0;
    font-family: Roboto Bold, Arial, sans-serif;
    font-size: 1.875rem;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased
}

.table-additional-link {
    text-align: center
}

.table-additional-link a {
    color: inherit;
    font-size: .875rem
}

.table-additional-link a:hover {
    text-decoration: none
}

.page-background.mobile-light-style .table-carousel {
    max-width: unset;
    padding-top: .625rem;
    padding-bottom: 1.25rem
}

.page-background.mobile-light-style .table-carousel .table-additional-title {
    border: 0
}

.page-background.mobile-light-style .table-carousel .table-additional-title b, .page-background.mobile-light-style .table-carousel .table-additional-title strong {
    font-family: Roboto Bold, Arial, sans-serif
}

.page-background.mobile-light-style .table-carousel .table-additional-title span {
    font-family: Roboto Light, Arial, sans-serif
}

.page-background.mobile-light-style .table-carousel .table {
    margin: 0 auto;
    max-width: 71.25rem;
    background-color: transparent
}

.page-background.mobile-light-style .table-carousel .table .table__underbtntext {
    display: none
}

.page-background.mobile-light-style .table-carousel .table .table__col-links {
    color: #636363
}

.contact .page-background.mobile-light-style .table-carousel .table .table__col-links .wpcf7-submit, .page-background.mobile-light-style .table-carousel .table .table__col-links .btn, .page-background.mobile-light-style .table-carousel .table .table__col-links .contact .wpcf7-submit, .page-background.mobile-light-style .table-carousel .table .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.mobile-light-style .table-carousel .table .table__col-links input[type=submit] {
    height: 2.375rem;
    font-family: Roboto Regular, Arial, sans-serif;
    border-radius: .1875rem;
    box-shadow: none;
    color: #fff
}

.page-background.mobile-light-style .table-carousel .table .table__col-score {
    -webkit-box-ordinal-group: 1;
    order: 0;
    margin: 0;
    padding-top: .625rem;
    padding-bottom: .25rem
}

.page-background.mobile-light-style .table-carousel .table .table__score-desc {
    text-align: left
}

.page-background.mobile-light-style .table-carousel .table tr td.table__col-features .table__features-deal-main {
    font-size: .875rem;
    line-height: 1.25
}

.page-background.mobile-light-style .table-carousel .table tr td.table__col-features .table__features-deal-main i {
    display: block;
    font-style: normal;
    margin-bottom: .375rem
}

.page-background.mobile-light-style .table-carousel .table tr td.table__col-features .table__features-deal-main b {
    display: block;
    margin-top: .1875rem;
    font-size: .8125rem;
    font-family: Roboto Light, Arial, sans-serif;
    font-weight: 400;
    color: #9f9f9f
}

.page-background.mobile-light-style .table-carousel .table tr td.table__col-title {
    -webkit-box-ordinal-group: 1;
    order: 0
}

.page-background.mobile-light-style .table-carousel .table tr td.table__col-title .table__badge {
    margin-top: .3125rem;
    margin-bottom: -.9375rem
}

.page-background.mobile-light-style .table-carousel .table .table__item-num, .page-background.mobile-light-style .table-carousel .table .table__popup, .page-background.mobile-light-style .table-carousel .table .table__popup-opener {
    display: none
}

.page-background.mobile-light-style .table-carousel tbody {
    padding: 0 2.5rem
}

.page-background.mobile-light-style .table-carousel thead {
    display: block;
    width: 100%;
    margin: 0 !important
}

@media screen and (min-width: 768px) {
    .page-background.mobile-light-style .table-carousel thead {
        padding: 0 2.8125rem
    }
}

.page-background.mobile-light-style .table-carousel thead tr {
    margin: 0 !important;
    box-shadow: none !important;
    height: auto;
    border: 0 !important;
    background-color: transparent
}

.page-background.mobile-light-style .table-carousel thead tr th {
    padding: 0
}

.page-background.mobile-light-style .table-carousel thead .table__head-links {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: end;
    justify-content: flex-end;
    width: 100%;
    padding: 0;
    margin: 0 0 .3125rem
}

@media screen and (max-width: 767px) {
    .page-background.mobile-light-style .table-carousel thead .table__head-links {
        margin: 0
    }
}

.page-background.mobile-light-style .table-carousel thead .tooltip {
    position: static;
    white-space: nowrap;
    font-size: .875rem
}

@media screen and (max-width: 767px) {
    .page-background.mobile-light-style .table-carousel thead .tooltip {
        font-size: .625rem
    }
}

.page-background.mobile-light-style .table-carousel .table tbody tr:first-child, .page-background.mobile-light-style .table-carousel .table tbody tr:hover {
    background-color: #fff
}

.page-background.mobile-light-style .table-carousel .table tr .table__col--wrap:first-of-type {
    background-color: #f9f9f9
}

.page-background.mobile-light-style .table-carousel table tr td .table__features-deal-disclaimer {
    margin-top: .625rem
}

.page-background.mobile-light-style .table-carousel table tr td.table__col-features .table__info {
    visibility: visible;
    height: auto;
    margin: .25rem auto .3125rem;
    font-family: Roboto Light, Arial, sans-serif;
    color: #909598
}

.page-background.mobile-light-style .table-carousel table tr td.table__col-features .table__features-deal-main {
    font-size: 1rem;
    color: #0a1d27
}

.page-background.mobile-light-style .table-carousel table tr td.table__col-features .table__underbtntext {
    -webkit-box-ordinal-group: 1;
    order: 0;
    margin: .3125rem 0 0;
    font-size: .875rem;
    background-color: transparent !important
}

.page-background.mobile-light-style .table-carousel .table__col--wrap {
    width: 50%;
    padding: .625rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

@media screen and (max-width: 359px) {
    .page-background.mobile-light-style .table-carousel .table__col--wrap {
        padding: .5rem .125rem
    }
}

.page-background.mobile-light-style .table-carousel .table__col--wrap:last-child {
    background-color: #fff
}

.page-background.mobile-light-style .table-carousel .table__col-features, .page-background.mobile-light-style .table-carousel .table__col-links, .page-background.mobile-light-style .table-carousel .table__col-score, .page-background.mobile-light-style .table-carousel .table__col-title {
    width: 100%;
    padding: 0
}

.page-background.mobile-light-style .table-carousel table tbody tr td.table__col-title {
    padding: 0
}

.page-background.mobile-light-style .table-carousel table tbody tr td.table__col-title .table__item-title {
    margin: 0 auto;
    padding: 0;
    height: 3.25rem;
    max-width: 8.375rem;
    background-color: transparent !important;
    border: 0
}

.page-background.mobile-light-style .table-carousel table tbody tr td.table__col-title .table__item-title img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: contain; object-position: center"
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__score, .page-background.mobile-light-style .table-carousel table tbody tr .table__score-title {
    border: 0;
    margin: 0
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__score {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__score .rate {
    -webkit-transform: scale(1);
    transform: scale(1);
    margin: 0
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__score-common {
    padding: 0
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__score-title {
    padding: 0;
    margin-right: .375rem
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__score-title:after {
    display: none
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__col-score {
    padding-top: 1rem;
    padding-bottom: .875rem
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__col-score .table__score {
    margin: 0
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__col-score .table__score-title {
    float: left;
    margin-top: -.25rem;
    font-size: 2rem
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__score-desc {
    margin: .125rem 0 0;
    font-family: Roboto Light, Arial, sans-serif;
    font-size: .6875rem;
    color: #9f9f9f
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__col-links {
    padding: 0;
    text-align: center
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__link {
    font-size: .75rem
}

.page-background.mobile-light-style .table-carousel table tbody tr .table__col-features {
    margin-bottom: .625rem
}

.page-background.mobile-light-style .table-carousel .table {
    box-shadow: none
}

.page-background.mobile-light-style .table-carousel .table tr, .page-background.mobile-light-style .table-carousel .table tr:first-child {
    margin: .5rem;
    display: -webkit-box;
    display: flex;
    border: 1px solid #f5f5f5;
    box-shadow: 0 3px 7px rgba(0, 0, 0, .3)
}

.page-background.mobile-light-style .table-carousel .slick-track {
    display: -webkit-box;
    display: flex
}

.page-background.mobile-light-style .table-carousel .slick-slide {
    display: -webkit-box;
    display: flex;
    height: auto
}

.page-background.mobile-light-style .table-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    border: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-indent: -9999px;
    cursor: pointer;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
    outline: none
}

.page-background.mobile-light-style .table-carousel .slick-arrow:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, .25)
}

.page-background.mobile-light-style .table-carousel .slick-arrow:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 36%;
    height: 36%;
    border-top: 2px solid #9f9f9f;
    border-right: 2px solid #9f9f9f
}

.page-background.mobile-light-style .table-carousel .slick-arrow.slick-next {
    right: 0
}

.page-background.mobile-light-style .table-carousel .slick-arrow.slick-next:after {
    -webkit-transform: translate(30%, -50%) rotate(45deg);
    transform: translate(30%, -50%) rotate(45deg)
}

.page-background.mobile-light-style .table-carousel .slick-arrow.slick-prev {
    left: 0
}

.page-background.mobile-light-style .table-carousel .slick-arrow.slick-prev:after {
    -webkit-transform: translate(70%, -50%) rotate(-135deg);
    transform: translate(70%, -50%) rotate(-135deg)
}

@media screen and (max-width: 767px) {
    .page-background.mobile-light-style .table-carousel {
        overflow: hidden;
        padding: .3125rem 0
    }

    .page-background.mobile-light-style .table-carousel .table {
        margin: 0 auto;
        max-width: unset;
        width: 90%
    }

    .contact .page-background.mobile-light-style .table-carousel .table .table__col-links .wpcf7-submit, .page-background.mobile-light-style .table-carousel .table .table__col-links .btn, .page-background.mobile-light-style .table-carousel .table .table__col-links .contact .wpcf7-submit, .page-background.mobile-light-style .table-carousel .table .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.mobile-light-style .table-carousel .table .table__col-links input[type=submit] {
        width: calc(100% - 10px)
    }

    .page-background.mobile-light-style .table-carousel .table .table__col-score {
        padding: 1.25rem 0 1rem
    }

    .page-background.mobile-light-style .table-carousel .table tbody {
        display: block;
        padding: 0
    }

    .page-background.mobile-light-style .table-carousel .table .slick-list {
        overflow: visible
    }

    .page-background.mobile-light-style .table-carousel .table tr {
        margin: .5rem
    }

    .page-background.mobile-light-style .table-carousel .table .table__features-deal-disclaimer.is-longer span {
        padding-top: .0625rem
    }
}

.tooltip-content {
    display: none
}

.table-vpn {
    margin: .3125rem 0 2.5rem
}

@media screen and (max-width: 767px) {
    .table-vpn {
        margin-top: -1.8125rem
    }
}

.table-vpn .tooltip-advertiser {
    position: absolute;
    right: 0;
    bottom: .375rem;
    font-size: .875rem;
    color: rgba(0, 0, 0, .5);
    text-decoration: underline;
    cursor: pointer
}

@media screen and (max-width: 767px) {
    .table-vpn .tooltip-advertiser {
        font-family: Roboto Medium, Arial, sans-serif;
        color: #000
    }
}

.table-vpn .tooltip-advertiser:hover {
    text-decoration: none
}

.table-vpn .table__features-list {
    padding: 0;
    margin: 0;
    font-size: .9375em;
    font-family: Roboto Regular, Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

.table-vpn .table__features-list li {
    position: relative;
    margin-bottom: .375rem;
    padding-left: .5rem;
    line-height: 1.2
}

.table-vpn .table__features-list li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "-"
}

.table-vpn .table__features-list li img, .table-vpn .table__features-list li svg {
    display: none
}

.table-vpn .table__features-list li:last-child {
    margin-bottom: 0
}

.table-vpn .table__features-list li:first-child {
    color: #1651bd;
    font-family: Roboto Medium, Arial, sans-serif;
    padding-left: 0
}

.table-vpn .table__features-list li:first-child:before {
    display: none
}

.table-vpn .table__features-list .is-accent {
    font-weight: 500;
    color: #1651bd
}

@media screen and (max-width: 767px) {
    .table-vpn .table__features-list {
        margin: 0 auto
    }

    .table-vpn .table__features-list li {
        display: block;
        margin-bottom: .25rem;
        padding-left: 0;
        font-size: .875rem;
        line-height: 1.2;
        text-align: center
    }

    .table-vpn .table__features-list li:before {
        display: inline-block;
        position: static
    }
}

@media screen and (min-width: 768px) {
    .table-vpn .table__features-links {
        padding-left: .5rem;
        margin-top: .5rem
    }
}

.table-vpn .table__link {
    padding-left: 0;
    font-size: .75rem;
    font-family: Roboto Medium, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.2;
    color: inherit
}

@media screen and (min-width: 1024px) {
    .table-vpn .table__link {
        font-size: .9375rem;
        font-weight: 400
    }
}

.table-vpn .table__link:hover {
    text-decoration: none
}

.table-vpn .table__features-links .table__video-link {
    margin-right: .25rem;
    font-family: Roboto Medium, Arial, sans-serif;
    text-decoration: none;
    -webkit-font-smoothing: antialiased
}

.table-vpn .table__features-links .table__video-link:before {
    top: -.0625rem;
    width: 1.125rem;
    height: 1.125rem
}

.table-vpn .table__features-links .table__video-link:after {
    top: .25rem
}

.contact .table-vpn .wpcf7-submit, .popup__form .wpcf7-form .table-vpn input[type=submit], .table-vpn .btn, .table-vpn .contact .wpcf7-submit, .table-vpn .popup__form .wpcf7-form input[type=submit] {
    width: 100%;
    height: auto;
    padding: .625em 2.5em;
    margin-bottom: .375rem;
    max-width: 14.375rem;
    color: #1651bd;
    font-size: 1em;
    font-family: Roboto Regular, Arial, sans-serif;
    line-height: 1.1;
    border-radius: .625rem;
    overflow: hidden;
    box-shadow: none;
    background-color: transparent;
    border: 2px solid #1651bd
}

@media screen and (max-width: 767px) {
    .contact .table-vpn .wpcf7-submit:hover, .popup__form .wpcf7-form .table-vpn input[type=submit]:hover, .table-vpn .btn:hover, .table-vpn .contact .wpcf7-submit:hover, .table-vpn .popup__form .wpcf7-form input[type=submit]:hover {
        color: #1651bd;
        background-color: transparent;
        border: 2px solid #1651bd
    }
}

@media screen and (min-width: 768px) {
    .contact .table-vpn .wpcf7-submit, .popup__form .wpcf7-form .table-vpn input[type=submit], .table-vpn .btn, .table-vpn .contact .wpcf7-submit, .table-vpn .popup__form .wpcf7-form input[type=submit] {
        max-width: 10.875rem;
        margin-bottom: .875rem;
        padding: .4761904762em .1904761905em;
        font-family: Roboto Medium, Arial, sans-serif;
        font-size: 1.3125em;
        border-radius: .5rem
    }

    .contact .table-vpn .wpcf7-submit:hover, .popup__form .wpcf7-form .table-vpn input[type=submit]:hover, .table-vpn .btn:hover, .table-vpn .contact .wpcf7-submit:hover, .table-vpn .popup__form .wpcf7-form input[type=submit]:hover {
        background-color: #1651bd
    }
}

.contact .table-vpn .table-vpn-item:first-child .wpcf7-submit, .popup__form .wpcf7-form .table-vpn .table-vpn-item:first-child input[type=submit], .table-vpn .table-vpn-item:first-child .btn, .table-vpn .table-vpn-item:first-child .contact .wpcf7-submit, .table-vpn .table-vpn-item:first-child .popup__form .wpcf7-form input[type=submit] {
    background-color: #1651bd;
    color: #fff
}

.table-vpn .rate {
    overflow: hidden;
    position: relative;
    height: 1.5rem;
    width: 7.5rem;
    background-position: 0 0;
    text-indent: -99999px
}

.table-vpn .rate, .table-vpn .rate span {
    display: block;
    background-color: transparent;
    background-repeat: repeat-x;
    background-size: 1.5rem 3rem;
    background-image: url(star-sprite.svg)
}

.table-vpn .rate span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-position: 0 -1.5rem
}

.table-vpn__head {
    position: relative
}

@media screen and (max-width: 767px) {
    .table-vpn__head {
        text-align: right
    }

    .table-vpn__head .tooltip {
        position: relative;
        top: 0;
        bottom: 0;
        display: inline-block;
        margin-bottom: .25rem;
        font-size: .75rem
    }
}

@media screen and (max-width: 359px) {
    .table-vpn__head .tooltip {
        font-size: .625rem
    }
}

.table-vpn-item {
    position: relative;
    margin-bottom: .75rem;
    padding: 1.875em 1.25em .75em;
    border: 2px solid #1651bd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    cursor: pointer
}

.table-vpn-item:first-child {
    background-color: #fef8da
}

@media screen and (max-width: 767px) {
    .table-vpn-item:first-child .table-vpn-ratings {
        display: none
    }

    .table-vpn-item:first-child .table__features-list {
        display: block
    }

    .table-vpn-item:first-child .table__features-item:nth-child(n+6) {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .table-vpn-item:not(:first-child) .table__features-item {
        text-align: center
    }

    .table-vpn-item:not(:first-child) .table-vpn-ratings, .table-vpn-item:not(:first-child) .table__features-item:before, .table-vpn-item:not(:first-child) .table__features-item:nth-child(n+3) {
        display: none
    }

    .contact .table-vpn-item:not(:first-child) .wpcf7-submit, .popup__form .wpcf7-form .table-vpn-item:not(:first-child) input[type=submit], .table-vpn-item:not(:first-child) .btn, .table-vpn-item:not(:first-child) .contact .wpcf7-submit, .table-vpn-item:not(:first-child) .popup__form .wpcf7-form input[type=submit] {
        margin: 1.25rem 0
    }
}

@media screen and (min-width: 768px) {
    .table-vpn-item {
        display: -webkit-box;
        display: flex;
        padding: 0;
        border-width: 3px
    }
}

.table-vpn-badge {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: absolute;
    top: -.0625rem;
    left: -.0625rem;
    padding: .125rem .3125rem .25rem;
    font-family: Roboto Medium, Arial, sans-serif;
    line-height: 1;
    text-transform: uppercase;
    background-color: #1651bd;
    color: #fcd303
}

.table-vpn-badge span {
    margin: .3125rem 0 .25rem .375rem;
    font-size: .875rem;
    font-family: Roboto Regular, Arial, sans-serif
}

.table-vpn-badge:before {
    content: attr(data-num);
    font-size: .875rem
}

@media screen and (min-width: 768px) {
    .table-vpn-badge span {
        font-size: .9375rem;
        padding-right: .3125rem
    }

    .table-vpn-badge:before {
        font-size: 1.125rem
    }
}

@media screen and (min-width: 768px) {
    .table-vpn__inner {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center
    }
}

.table-vpn__inner .main-list {
    font-size: .9375em
}

.table-vpn__inner .main-list .is-accent {
    font-weight: 500;
    color: #1651bd
}

.table-vpn__inner .main-list .is-accent svg {
    fill: #1651bd
}

@media screen and (min-width: 768px) {
    .table-vpn__inner--01 {
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
        width: 24%;
        padding: 3.375rem 1.875rem 1.75rem .625rem
    }
}

@media screen and (min-width: 768px) {
    .table-vpn__inner--02 {
        padding: 1.25rem 0 .625rem .125rem;
        width: 28%
    }
}

@media screen and (min-width: 768px) {
    .table-vpn__inner--03 {
        width: 25%;
        padding: 0 .625rem .75rem
    }
}

.table-vpn__inner--04 {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center
}

@media screen and (min-width: 768px) {
    .table-vpn__inner--04 {
        width: 20%;
        padding: 0 .625rem .625rem
    }

    .contact .table-vpn__inner--04 .wpcf7-submit, .popup__form .wpcf7-form .table-vpn__inner--04 input[type=submit], .table-vpn__inner--04 .btn, .table-vpn__inner--04 .contact .wpcf7-submit, .table-vpn__inner--04 .popup__form .wpcf7-form input[type=submit] {
        width: auto;
        min-width: 100%;
        max-width: none
    }
}

@media screen and (min-width: 768px) {
    .multi-table .table-vpn__inner--01 {
        width: 32.5%
    }

    .multi-table .table-vpn__inner--02 {
        width: 29%
    }

    .multi-table .table-vpn__inner--03 {
        width: 17%
    }

    .multi-table .table-vpn__inner--04 {
        padding-left: 3.625em;
        padding-right: 1.375em;
        width: 21.5%
    }
}

@media screen and (max-width: 767px) {
    .multi-table .table-vpn .tooltip-advertiser {
        visibility: hidden
    }
}

.table-vpn-logo {
    margin-bottom: .625rem
}

.table-vpn-logo img {
    display: block;
    max-height: 5.5rem;
    height: 100%;
    width: auto;
    margin: 0 auto
}

@media screen and (min-width: 768px) {
    .table-vpn-logo img {
        max-height: unset;
        height: auto;
        max-width: 9.625rem
    }
}

.table-vpn-features {
    max-width: 13.75rem;
    padding: 0;
    margin: 0 auto;
    list-style-type: none;
    text-align: center
}

.table-vpn-features li {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .25rem;
    font-size: .875rem
}

.table-vpn-features li:first-child {
    color: #1651bd
}

.table-vpn-visit-badge {
    position: relative;
    display: inline-block;
    margin: 1.75rem auto 1.125rem;
    padding: .125em .875em 0;
    font-size: .875em;
    font-weight: 800;
    line-height: .9;
    background-color: #0ba72a;
    color: #fff;
    -webkit-transition: -webkit-transform .2s ease-in;
    transition: -webkit-transform .2s ease-in;
    transition: transform .2s ease-in;
    transition: transform .2s ease-in, -webkit-transform .2s ease-in;
    -webkit-animation: badgeMoving .8s ease-in 1s;
    animation: badgeMoving .8s ease-in 1s
}

.table-vpn-visit-badge span {
    display: block;
    position: relative;
    z-index: 1;
    top: 4px
}

.table-vpn-visit-badge:after {
    content: "";
    position: absolute;
    top: 97%;
    right: 50%;
    margin-right: -2.5rem;
    display: inline-block;
    height: 0;
    width: 0;
    -webkit-transform: rotate(1turn);
    border-color: #0ba72a transparent transparent;
    border-style: solid;
    border-width: .875rem 2.5rem 0
}

@media screen and (min-width: 768px) {
    .table-vpn-visit-badge {
        margin-bottom: 2.375rem;
        padding: .25em .9375em .125em;
        font-size: 1.125em
    }

    .table-vpn-item:hover .table-vpn-visit-badge {
        -webkit-transform: translateY(40%);
        transform: translateY(40%)
    }

    .table-vpn-visit-badge:after {
        border-top-width: 1.5rem;
        border-right-width: 3.4375rem;
        border-left-width: 3.4375rem;
        margin-right: -3.4375rem
    }
}

@-webkit-keyframes badgeMoving {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes badgeMoving {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.table-vpn-visit-feature {
    margin-bottom: .5em;
    font-size: 1em;
    font-family: Roboto Medium, Arial, sans-serif;
    color: #1651bd
}

@media screen and (min-width: 768px) {
    .table-vpn-visit-feature {
        margin-bottom: .25em;
        font-size: 1.375em;
        text-align: center
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .table-vpn-visit-feature {
        font-size: 1.125rem;
        line-height: 1.1
    }
}

.table-vpn-icons {
    margin-top: .625rem;
    font-family: Roboto Regular, Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

.table-vpn-icons img {
    display: block;
    margin-top: .3125rem;
    max-width: 17.8125rem
}

@media screen and (max-width: 1023px) {
    .table-vpn-icons img {
        max-width: 100%
    }
}

@media screen and (max-width: 767px) {
    .table-vpn-icons {
        text-align: center
    }

    .table-vpn-icons span {
        font-size: 1rem;
        -webkit-font-smoothing: antialiased
    }
}

.table-vpn-review {
    color: inherit;
    line-height: 1.1;
    font-size: .75rem
}

@media screen and (max-width: 767px) {
    .table-vpn-review {
        font-family: Roboto Medium, Arial, sans-serif
    }
}

.table-vpn-device {
    width: auto;
    margin: .3125rem auto 0
}

.table-vpn-ratings {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 1.4375rem 0 .9375rem
}

@media screen and (min-width: 768px) {
    .table-vpn-ratings {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        width: 100%;
        max-width: 9.875rem;
        margin: 0 auto
    }
}

.table-vpn-rating {
    position: relative;
    width: 33%;
    padding: 0 1.25em;
    font-size: 75%
}

.table-vpn-rating-value {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    line-height: 1;
    font-weight: 600;
    text-align: center
}

.table-vpn-rating-value strong {
    font-size: 2em;
    font-family: Roboto Bold, Arial, sans-serif;
    letter-spacing: -.3px
}

@media screen and (max-width: 767px) {
    .table-vpn-rating-value strong {
        background: transparent !important
    }
}

.table-vpn-rating-value span {
    position: absolute;
    top: 100%;
    right: 50%;
    -webkit-transform: translate(50%, 70%);
    transform: translate(50%, 70%);
    font-size: .625em;
    font-family: Roboto Bold, Arial, sans-serif;
    text-transform: uppercase
}

@media screen and (max-width: 767px) {
    .table-vpn-rating--additional {
        display: none
    }

    .table-vpn-rating--additional .table-vpn-rating-value span {
        font-size: .5625em
    }

    .table-vpn-rating--additional .table-vpn-rating-value strong {
        width: 100% !important;
        font-size: 1.625em
    }

    .table-vpn-rating--additional .table-vpn-rating-value i {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .table-vpn-rating--additional {
        -webkit-box-ordinal-group: 3;
        order: 2;
        width: 100%;
        padding: 0;
        margin-bottom: .625rem
    }

    .table-vpn-rating--additional svg {
        display: none
    }

    .table-vpn-rating--additional .table-vpn-rating-value {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        position: relative;
        height: 1.125rem;
        width: 100%;
        padding: .125rem .625rem;
        background: #eee;
        border-radius: 3.125rem;
        color: #fff !important;
        overflow: hidden
    }

    .table-vpn-rating--additional .table-vpn-rating-value span {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        font-size: .5625rem;
        font-family: Roboto Regular, Arial, sans-serif;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in
    }

    .table-vpn-rating--additional .table-vpn-rating-value strong {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        align-items: center;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        padding: .125rem .625rem;
        font-size: .875rem;
        font-family: Roboto Regular, Arial, sans-serif;
        border-radius: 3.125rem;
        background-color: #0ff;
        color: transparent;
        width: 0;
        min-width: 2.5rem;
        -webkit-transition: width .2s ease-out;
        transition: width .2s ease-out
    }

    .table-vpn-rating--additional .table-vpn-rating-value strong i {
        color: #fff;
        font-style: normal
    }

    .table-vpn-rating--additional.is-animated .table-vpn-rating-value span {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

.table-vpn-rating--main {
    padding: 0;
    font-size: 100%
}

@media screen and (min-width: 768px) {
    .table-vpn-rating--main {
        width: 6.25rem;
        -webkit-box-ordinal-group: 2;
        order: 1;
        margin-bottom: .625rem
    }
}

.table-vpn-rating--main .table-vpn-rating-value {
    line-height: 1.2
}

.table-vpn-rating--main .table-vpn-rating-value strong {
    width: 100% !important;
    font-size: 2rem
}

.table-vpn-rating--main .table-vpn-rating-value span {
    position: static;
    -webkit-transform: none;
    transform: none
}

.circular-chart {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: .1875rem;
    border-radius: 50%;
    box-shadow: inset 0 0 5px #c5c5c5;
    border: 1px solid #d1d1d1
}

@media screen and (max-width: 419px) {
    .circular-chart {
        padding: .0625rem
    }
}

.circular-chart .circle {
    fill: none;
    stroke-width: 2;
    stroke-dasharray: 0 100
}

.circular-chart .circle-round {
    -webkit-transition: stroke-dasharray .2s ease-out;
    transition: stroke-dasharray .2s ease-out
}

.circular-chart .circle-dot {
    stroke-width: 4;
    stroke-linecap: round;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out
}

.preview {
    background-color: #eee;
    padding-top: 1.9375em;
    padding-bottom: 2.25em
}

.preview .container.container, .preview .footer__cookie-decline-text, .preview .footer__disclaimer-text {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start
}

@media screen and (max-width: 889px) {
    .preview .container.container, .preview .footer__cookie-decline-text, .preview .footer__disclaimer-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        max-width: 37.25em;
        margin: 0 auto;
        padding: 0 10px
    }
}

@media screen and (min-width: 890px) and (max-width: 1023px) {
    .preview {
        font-size: .875em
    }
}

.preview .widget__authors {
    -webkit-box-flex: 1;
    flex: 1 0 18.75em;
    margin-left: 2.4%
}

@media screen and (max-width: 889px) {
    .preview .widget__authors {
        -webkit-box-flex: 1;
        flex: auto;
        margin-left: 0;
        margin-top: 1.25em;
        width: 100%
    }
}

.preview__image {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    flex: 1 0 36.6%;
    margin-right: 2.4%;
    width: 100%
}

.preview__image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center"
}

@media screen and (max-width: 889px) {
    .preview__image {
        -webkit-box-flex: 1;
        flex: 1 0 auto;
        margin-right: 0
    }

    .preview__image img {
        width: 100%
    }
}

.preview__content {
    color: #36393b
}

@media screen and (max-width: 889px) {
    .preview__content {
        margin-top: .9375em
    }
}

@media screen and (max-width: 767px) {
    .preview__content {
        font-size: 1em
    }
}

.preview__content > :first-child {
    margin-top: 0
}

.preview__content > :last-child {
    margin-bottom: 0
}

.preview__content h1, .preview__content h2, .preview__content h3, .preview__content h4, .preview__content h5, .preview__content h6 {
    font-size: 1.75em;
    margin-bottom: .3571428571em;
    font-family: Roboto Bold, Arial, sans-serif
}

@media screen and (max-width: 767px) {
    .preview__content h1, .preview__content h2, .preview__content h3, .preview__content h4, .preview__content h5, .preview__content h6 {
        line-height: 1.2
    }
}

.preview__content h1:not(:first-child), .preview__content h2:not(:first-child), .preview__content h3:not(:first-child), .preview__content h4:not(:first-child), .preview__content h5:not(:first-child), .preview__content h6:not(:first-child) {
    font-size: 1em;
    margin-bottom: 0
}

.preview__content h1:not(:first-child) + p, .preview__content h2:not(:first-child) + p, .preview__content h3:not(:first-child) + p, .preview__content h4:not(:first-child) + p, .preview__content h5:not(:first-child) + p, .preview__content h6:not(:first-child) + p {
    margin-top: 0
}

.preview__content h1.text-center, .preview__content h2.text-center, .preview__content h3.text-center, .preview__content h4.text-center, .preview__content h5.text-center, .preview__content h6.text-center {
    text-align: center
}

.preview__content p {
    margin-top: .8125em;
    margin-bottom: 1.375em;
    line-height: 1.4
}

@media screen and (max-width: 1023px) {
    .preview__content p {
        margin-bottom: .5263157895em;
        line-height: 1.3
    }
}

.preview__content a {
    color: #919699
}

@media screen and (min-width: 890px) {
    .page-background .preview {
        padding-top: 0;
        padding-bottom: 3.4375em;
        background-color: transparent
    }

    .page-background .preview .container.container, .page-background .preview .footer__cookie-decline-text, .page-background .preview .footer__disclaimer-text {
        margin-left: auto;
        margin-right: auto;
        max-width: 66.375em;
        padding: 1.875em 1.4375em;
        background-color: #eee
    }
}

.author {
    border: 1px solid #ddd;
    padding: .9375em;
    margin: 2.5em auto;
    position: relative;
    min-height: 5.625em;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    align-items: flex-start;
    text-decoration: none;
    color: #36393b;
    max-width: 73.125em
}

@media screen and (max-width: 419px) {
    .author {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center
    }
}

.author__photo {
    width: 4.4375em;
    margin-left: .3125em;
    border-radius: 50%
}

@media screen and (max-width: 419px) {
    .author__photo {
        margin-bottom: .9375em
    }
}

.author__desc {
    margin-left: 1.25em
}

@media screen and (max-width: 419px) {
    .author__desc {
        margin-left: 0
    }
}

.author__name {
    font-size: 1.125em;
    line-height: 1.1666666667;
    border-bottom: 1px solid #ececec;
    padding-bottom: .4444444444em;
    margin-top: 0;
    margin-bottom: .4444444444em;
    font-weight: 700
}

.author__text {
    font-size: .875em;
    line-height: 1.1428571429;
    margin-top: 0;
    margin-bottom: .5555555556em
}

.score {
    padding: 1.5em 1.875em 1.875em;
    margin: .625em auto 1.25em;
    border: 1px dashed #aaa;
    box-shadow: 0 0 20px #f0f0f0
}

.score > :not(:last-child) {
    padding-bottom: 1.25em;
    border-bottom: 1px dashed #d2d2d2
}

@media screen and (max-width: 419px) {
    .score {
        padding-left: .9375em;
        padding-right: .9375em
    }
}

.score__score {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    align-items: stretch;
    width: 6.25em;
    margin: .375em 1.25em .625em 0;
    float: left
}

@media screen and (max-width: 419px) {
    .score__score {
        float: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.25em
    }
}

.score__score-top {
    background-color: #e43917;
    font-size: 3.25em;
    line-height: 1;
    height: 1.3076923077em
}

.score__score-bot, .score__score-top {
    color: #fff;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center
}

.score__score-bot {
    background: #000;
    padding: 6px 0;
    text-transform: uppercase;
    font-size: .6875em
}

.score__score-bot, .score__title {
    font-family: Roboto Bold, Arial, sans-serif
}

.score__title {
    clear: none;
    margin: 0 0 .28125em;
    font-size: 2em;
    line-height: 1
}

.score__desc {
    line-height: 1.3333;
    margin: 0
}

.score__lines {
    padding-top: .625em
}

.score__line {
    margin: .3125em 0 .625em
}

.score__line-title {
    float: left;
    font-size: .875em
}

.score__line-num {
    float: right;
    font-size: .875em;
    font-family: Roboto Bold, Arial, sans-serif
}

.score__line-graph {
    clear: both;
    width: 100%;
    height: .875em;
    background-color: #ddd
}

.score__line-graph span {
    display: block;
    background-color: #e43917;
    height: 100%
}

.score__lists {
    overflow: auto
}

.score__pros {
    float: left;
    width: 48%
}

@media screen and (max-width: 599px) {
    .score__pros {
        float: none;
        width: 100%;
        margin-bottom: 1.25em
    }
}

.score__pros .score__item strong {
    font-family: Roboto Bold, Arial, sans-serif
}

.score__pros .score__item a {
    color: inherit
}

.score__pros .score__item:before {
    content: "\2713";
    color: #8bb900;
    font-family: Roboto Regular, Arial, sans-serif;
    margin-right: 5px
}

.score__cons {
    float: right;
    width: 48%
}

@media screen and (max-width: 599px) {
    .score__cons {
        float: none;
        width: 100%
    }
}

.score__cons .score__item strong {
    font-family: Roboto Bold, Arial, sans-serif
}

.score__cons .score__item a {
    color: inherit
}

.score__cons .score__item:before {
    content: "";
    width: 12px;
    height: 3px;
    display: inline-block;
    background-color: #e43917;
    font-family: Roboto Regular, Arial, sans-serif;
    margin-right: 5px;
    position: relative;
    top: -4px
}

.score__pros-title {
    color: #8bb900
}

.score__cons-title, .score__pros-title {
    text-transform: uppercase;
    font-style: italic;
    font-size: 1rem;
    font-family: Roboto Bold, Arial, sans-serif;
    margin-bottom: .3125em
}

.score__cons-title {
    color: #e43917
}

.score__list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-size: .875em
}

.score__links {
    padding-top: .625em;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap
}

.score__link {
    color: inherit
}

.sscore {
    overflow: auto;
    border: 3px solid #e43917
}

.sscore__rate {
    overflow: auto;
    float: left;
    width: 65%
}

@media screen and (max-width: 767px) {
    .sscore__rate {
        float: none;
        width: 100%
    }
}

.sscore__title {
    margin: 0;
    padding: .75em;
    font-size: 1.25em;
    background-color: #ecf2f7
}

.sscore__line {
    width: 50%;
    float: left;
    border-bottom: 1px solid #ecf2f7;
    border-right: 1px solid #ecf2f7;
    padding: .625em .9375em
}

@media screen and (max-width: 419px) {
    .sscore__line {
        width: 100%;
        float: none;
        overflow: auto
    }
}

.sscore__line-title {
    float: left
}

.sscore__line-graph {
    position: relative;
    clear: left;
    float: right;
    width: 6.5625em;
    height: 1.25em;
    background-color: #e43917;
    border: 1px solid #e43917
}

.sscore__line-graph:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(hsla(0, 0%, 100%, .8)), to(transparent));
    background-image: linear-gradient(90deg, hsla(0, 0%, 100%, .8) 0, transparent)
}

.sscore__line-graph span {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: block;
    background-color: #fff
}

.sscore__users {
    float: right;
    width: 35%;
    text-align: center
}

@media screen and (max-width: 767px) {
    .sscore__users {
        float: none;
        width: 100%
    }
}

.sscore__users .sscore__title {
    text-align: right
}

@media screen and (max-width: 767px) {
    .sscore__users .sscore__title {
        text-align: left
    }
}

.sscore__user-list {
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    padding: .625em 0
}

.sscore__user {
    width: 5.6875em;
    height: 5.6875em;
    overflow: hidden;
    border-radius: 50%;
    margin: .3125em
}

.sscore__link-wrap {
    padding: .625em
}

.sscore__link {
    background-color: #8bb900;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.0625em;
    padding: .1764705882em .5882352941em;
    text-align: center;
    display: inline-block;
    text-decoration: none
}

.notify {
    background-color: #fff;
    position: fixed;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    justify-content: space-around;
    -webkit-box-align: center;
    align-items: center;
    bottom: 0;
    left: 0;
    border: 1px solid #cecece;
    box-shadow: 0 0 20px #f0f0f0;
    padding: 0 1.25em;
    text-decoration: none;
    z-index: 123
}

@media screen and (max-width: 767px) {
    .notify {
        font-size: .8125em
    }
}

@media screen and (max-width: 419px) {
    .notify {
        font-size: .6875em
    }
}

.contact .notify .wpcf7-submit, .notify .btn, .notify .contact .wpcf7-submit, .notify .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .notify input[type=submit] {
    font-size: .875em;
    margin-left: 1.4285714286em
}

.notify__img {
    max-width: 7.5em
}

.notify__img img {
    width: 100%
}

.notify--scroll {
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
    opacity: 0;
    visibility: hidden
}

.onscroll .notify--scroll {
    opacity: 1;
    visibility: visible
}

.contact body.highlight-style .notify .wpcf7-submit:not(:hover), .popup__form .wpcf7-form body.highlight-style .notify input[type=submit]:not(:hover), body.highlight-style .notify .btn:not(:hover), body.highlight-style .notify .contact .wpcf7-submit:not(:hover), body.highlight-style .notify .popup__form .wpcf7-form input[type=submit]:not(:hover) {
    background-color: #ff4e0c
}

.newtable__item {
    border: 1px solid #dfdfdf;
    margin-bottom: .9375em;
    padding-top: .9375em;
    padding-bottom: .9375em;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
    width: 100%;
    color: #36393b;
    cursor: pointer
}

@media screen and (max-width: 767px) {
    .newtable__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -webkit-box-align: stretch;
        align-items: stretch
    }
}

.newtable__item .title {
    font-size: 1.5625em;
    line-height: 1.42;
    color: inherit
}

.contact .newtable__item .wpcf7-submit, .newtable__item .btn, .newtable__item .contact .wpcf7-submit, .newtable__item .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .newtable__item input[type=submit] {
    margin-bottom: .9375em
}

.newtable__item:hover .newtable__link {
    text-decoration: underline
}

.newtable__left {
    -webkit-box-flex: 1;
    flex: 1 0 12.25em;
    padding-right: .9375em;
    padding-left: .9375em;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    align-items: stretch
}

@media screen and (max-width: 767px) {
    .newtable__left {
        -webkit-box-flex: initial;
        flex: initial
    }
}

.newtable__img {
    margin-bottom: .9375em;
    width: 100%
}

.newtable__img img {
    display: block;
    width: 50%;
    height: auto;
    margin: 0 auto;
    max-height: 11.25em;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: contain; object-position: center"
}

@media screen and (max-width: 767px) {
    .newtable__img img {
        max-height: 7.5em;
        margin: 0 auto
    }
}

.newtable__right {
    -webkit-box-flex: 0;
    flex: 0 1 75%;
    padding-right: .9375em;
    padding-left: .9375em
}

@media screen and (max-width: 767px) {
    .newtable__right {
        -webkit-box-flex: initial;
        flex: initial
    }
}

.newtable__text {
    font-size: .875em;
    margin: 0 0 .7142857143em;
    color: inherit
}

.newtable__link {
    font-size: .875em;
    text-decoration: none;
    font-family: Roboto Bold, Arial, sans-serif
}

.contact .triangle-style table tbody .wpcf7-submit, .popup__form .wpcf7-form .triangle-style table tbody input[type=submit], .triangle-style table tbody .btn, .triangle-style table tbody .contact .wpcf7-submit, .triangle-style table tbody .popup__form .wpcf7-form input[type=submit] {
    border-radius: 3.125rem
}

.contact .triangle-style table tbody .wpcf7-submit:after, .popup__form .wpcf7-form .triangle-style table tbody input[type=submit]:after, .triangle-style table tbody .btn:after, .triangle-style table tbody .contact .wpcf7-submit:after, .triangle-style table tbody .popup__form .wpcf7-form input[type=submit]:after {
    content: "";
    width: 1.375rem;
    height: 1.125rem;
    background: url(icon-next.svg) no-repeat 50%/cover
}

@media screen and (max-width: 889px) {
    .contact .triangle-style table tbody .wpcf7-submit:after, .popup__form .wpcf7-form .triangle-style table tbody input[type=submit]:after, .triangle-style table tbody .btn:after, .triangle-style table tbody .contact .wpcf7-submit:after, .triangle-style table tbody .popup__form .wpcf7-form input[type=submit]:after {
        display: inline-block;
        margin-left: .4375rem
    }
}

@media screen and (min-width: 890px) {
    .contact .triangle-style table tbody .wpcf7-submit:after, .popup__form .wpcf7-form .triangle-style table tbody input[type=submit]:after, .triangle-style table tbody .btn:after, .triangle-style table tbody .contact .wpcf7-submit:after, .triangle-style table tbody .popup__form .wpcf7-form input[type=submit]:after {
        position: absolute;
        top: 50%;
        right: 1rem;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.triangle-style .table__features-item svg {
    margin-right: .125rem
}

@media screen and (min-width: 890px) {
    .triangle-style .table tbody td, .triangle-style .table tbody th {
        padding: 1.125rem 0
    }
}

.triangle-style .table tbody tr .table__item-title, .triangle-style .table tbody tr:first-child .table__item-title, .triangle-style .table tbody tr:hover .table__item-title {
    position: relative;
    border-radius: 0;
    border-color: #cdcdcd
}

.triangle-style .table tbody tr .table__item-title:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1px;
    display: inline-block;
    height: 0;
    width: 0;
    -webkit-transform: rotate(1turn);
    border-color: transparent transparent transparent #5e5e5e;
    border-style: solid;
    border-width: 3.40625rem 0 3.40625rem 5.5rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: border-color .25s;
    transition: border-color .25s
}

@media screen and (max-width: 1023px) {
    .triangle-style .table tbody tr .table__item-title:before {
        border-width: 2.5rem 4.2rem
    }
}

@media screen and (min-width: 400px) and (max-width: 499px) {
    .triangle-style .table tbody tr .table__item-title:before {
        border-width: 2rem 3.2rem
    }
}

.triangle-style .table__item-num, .triangle-style .table tbody tr:first-child .table__item-num, .triangle-style .table tbody tr:hover .table__item-num {
    display: inline-block;
    z-index: 1;
    background: transparent
}

.triangle-style .table_loaded tbody tr:first-child {
    border: 1px solid #e0e0e0
}

.triangle-style .table__badge {
    text-align: left
}

.triangle-style .table__info {
    display: inline-block;
    border: 0;
    line-height: .95;
    padding: .375rem;
    border-radius: .3125rem;
    font-family: Roboto Regular, Arial, sans-serif
}

.triangle-style .table__info strong {
    display: block;
    font-family: Roboto Bold, Arial, sans-serif;
    font-size: 1.25rem
}

.article-video {
    margin: 0 0 2.1875em
}

.article-video__title {
    margin: 0 0 .125em
}

.article-video__descr {
    margin: 0
}

.article-video__link {
    position: relative;
    display: block;
    outline: none !important;
    margin-top: 1em
}

@media screen and (max-width: 599px) {
    .article-video__link {
        font-size: 12px
    }
}

.article-video__link:before {
    z-index: 1;
    display: inline-block;
    height: 0;
    width: 0;
    -webkit-transform: rotate(1turn);
    border-color: transparent transparent transparent #2a64b6;
    border-style: solid;
    border-width: 1.5625em 0 1.5625em 2.5em;
    -webkit-transform: translate(60%, -50%);
    transform: translate(60%, -50%);
    -webkit-transition: border-color .2s;
    transition: border-color .2s
}

.article-video__link:after {
    content: "";
    width: 5.625em;
    height: 5.625em;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    background-color: hsla(0, 0%, 100%, .4);
    border-radius: 50%
}

.article-video__link:after, .article-video__link:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%
}

.article-video__link img {
    display: block
}

.article-image__img {
    display: block;
    margin-bottom: 1.5625em
}

.article-image__title {
    margin: 0 0 .96em;
    font-size: 1.5625em;
    line-height: 1.1
}

.article-button {
    display: inline-block;
    margin: 0 0 2.8125em;
    text-decoration: none
}

.article-button__text {
    text-decoration: underline;
    font-size: 1.125em;
    -webkit-transition: .25s;
    transition: .25s
}

.article-button__link {
    height: auto;
    margin: 0 .25em;
    padding: .1875em .625em
}

.article-button-new-vpn {
    text-align: center
}

.article-button-new-vpn .article-button__link {
    padding: .375em .625em;
    font-family: Roboto Regular, Arial, sans-serif;
    font-size: 1.3125rem;
    line-height: 1.1;
    text-transform: none;
    border: 1px solid #1651bd;
    background-color: #1651bd;
    border-radius: 8px;
    min-width: 10.875rem;
    box-shadow: none
}

@media screen and (max-width: 767px) {
    .article-button-new-vpn .article-button__link {
        padding: .3125rem .625rem;
        font-size: .875rem;
        min-width: 6.25rem
    }
}

.article-button-new-vpn .article-button__text {
    color: #1651bd
}

.article-button-new-vpn .article-button:hover .article-button__link {
    background-color: #fff;
    color: #1651bd
}

.article-button-new-vpn .article-button:hover .article-button__text {
    text-decoration: none;
    color: #1651bd
}

.article-product {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: .9375rem
}

@media screen and (min-width: 1024px) {
    .article-product {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        flex-wrap: wrap
    }
}

.article-product .btn, .article-product .contact .wpcf7-submit, .article-product .popup__form .wpcf7-form input[type=submit], .contact .article-product .wpcf7-submit, .popup__form .wpcf7-form .article-product input[type=submit] {
    display: -webkit-box;
    display: flex;
    width: 100%;
    height: 2.8125rem;
    max-width: 25rem;
    margin: 0 auto 1.25rem;
    font-size: 1.125em;
    font-family: Roboto Regular, Arial, sans-serif;
    text-transform: none
}

@media screen and (min-width: 1024px) {
    .article-product .btn, .article-product .contact .wpcf7-submit, .article-product .popup__form .wpcf7-form input[type=submit], .contact .article-product .wpcf7-submit, .popup__form .wpcf7-form .article-product input[type=submit] {
        width: auto;
        margin: 0 0 .5625rem
    }
}

.article-product__badge {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.article-product__badge img {
    max-height: 2.25rem;
    width: auto
}

.article-product__image {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: .625rem
}

@media screen and (max-width: 767px) {
    .article-product__image {
        margin-bottom: 0
    }
}

.article-product__image img {
    max-height: 6.25rem;
    width: auto
}

@media screen and (min-width: 420px) {
    .article-product__image img {
        max-height: 12.5rem
    }
}

@media screen and (min-width: 1024px) {
    .article-product__image img {
        max-height: unset;
        width: 100%;
        height: auto
    }
}

.article-product__description {
    margin-bottom: 1.875rem
}

.article-product-info {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    max-width: 25rem;
    margin: 1rem auto 1.25rem;
    padding: .375rem .625rem
}

.article-product-info .btn, .article-product-info .contact .wpcf7-submit, .article-product-info .popup__form .wpcf7-form input[type=submit], .contact .article-product-info .wpcf7-submit, .popup__form .wpcf7-form .article-product-info input[type=submit] {
    margin-bottom: 1em
}

.article-product-info .article-product__score {
    margin-bottom: .25em
}

@media screen and (min-width: 1024px) {
    .article-product-info {
        max-width: unset;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse
    }

    .article-product-info .article-product__image-add {
        display: none
    }
}

.article-product__image-add {
    max-width: 5.625rem
}

@media screen and (min-width: 360px) {
    .article-product__image-add {
        max-width: 6.875rem
    }
}

@media screen and (min-width: 1024px) {
    .article-product__image-add {
        max-width: unset;
        text-align: center
    }
}

.article-product__score {
    flex-shrink: 0;
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 11.25rem;
    margin-right: .625rem
}

.article-product__score:after {
    content: "";
    display: table;
    clear: both
}

@media screen and (min-width: 1024px) {
    .article-product__score {
        max-width: 14.375rem
    }
}

.article-product__score .table__popup {
    right: calc(100% + 30px)
}

.article-product__score .table__score-title {
    float: left;
    margin-right: .625rem;
    line-height: .6
}

.article-product__score .rate {
    -webkit-transform: scale(1.3) translateX(.4375rem);
    transform: scale(1.3) translateX(.4375rem);
    margin: 0 0 .3125rem
}

@media screen and (max-width: 1023px) {
    .article-product__score .table__popup-opener {
        display: none
    }
}

.article-product__score .table__score-desc {
    text-align: left;
    font-size: .875em
}

.article-product__table {
    position: relative;
    margin-bottom: 2.5rem
}

.article-product__table-row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: .3125rem .9375rem;
    border-bottom: 1px solid #ddd
}

@media screen and (min-width: 1024px) {
    .article-product__table-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row
    }
}

.article-product__table-row:last-of-type {
    border-bottom: 0
}

@media screen and (min-width: 1024px) {
    .article-product__table-col {
        width: 50%
    }
}

.article-product__table-col:first-of-type {
    font-weight: 800
}

.article-product__badge-extra {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.article-product__features {
    position: relative;
    margin-top: 2.5em
}

.article-product__features .table__features-list {
    margin: 0;
    padding: 0 .3125rem
}

@media screen and (max-width: 889px) {
    .article-product__features .table__features-list.mobilehidden.mobilehidden.mobilehidden.mobilehidden {
        height: auto;
        visibility: visible
    }
}

.article-product__features .table__features-list li {
    margin-bottom: .75rem;
    font-size: .9375rem
}

.article-product__features-title {
    margin: 0 0 .625rem;
    padding-right: 4.375em;
    font-size: 1.125rem;
    font-weight: 800
}

.article-product-visit {
    width: 100%;
    margin-top: 1.25rem
}

.article-product-visit .btn, .article-product-visit .contact .wpcf7-submit, .article-product-visit .popup__form .wpcf7-form input[type=submit], .contact .article-product-visit .wpcf7-submit, .popup__form .wpcf7-form .article-product-visit input[type=submit] {
    display: -webkit-inline-box;
    display: inline-flex;
    width: auto;
    margin: 0
}

@media screen and (min-width: 1024px) {
    .article-product-left {
        width: 33.33%;
        padding-right: 1.875rem
    }

    .article-product-right {
        width: 66.66%;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .article-product-right > * {
        -webkit-box-ordinal-group: 3;
        order: 2;
        width: 100%
    }

    .article-product-right .article-product__description {
        -webkit-box-ordinal-group: 2;
        order: 1;
        margin-bottom: .875rem
    }

    .article-product__badge {
        margin-bottom: 2.5rem
    }

    .article-product__badge img {
        max-height: 3rem
    }

    .article-product__image-add {
        margin-top: 2.5rem
    }
}

@media screen and (max-width: 1023px) {
    .article-product-left .article-product__image-add {
        display: none
    }

    .article-product-left__images {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        justify-content: space-between;
        max-width: 31.25rem;
        margin-top: -.625em;
        margin-bottom: 0
    }

    .article-product-left__images img {
        max-height: unset;
        width: 11.25rem;
        margin-right: 1.875rem;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: cover; object-position: center"
    }
}

.article-vpn-style .btn, .article-vpn-style .contact .wpcf7-submit, .article-vpn-style .popup__form .wpcf7-form input[type=submit], .contact .article-vpn-style .wpcf7-submit, .popup__form .wpcf7-form .article-vpn-style input[type=submit] {
    background-color: #ff4e0c
}

@media screen and (max-width: 1023px) {
    .article-vpn-style .article-product-left__images {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        margin: 0 auto .625rem
    }

    .article-vpn-style .article-product-left__images .article-product__badge img {
        margin: 0
    }

    .article-vpn-style .article-product-left__images .article-product__image {
        margin-bottom: 0
    }

    .article-vpn-style .article-product-left__images .article-product__image img {
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center";
        max-height: 6.25rem;
        margin: 0
    }
}

.article-full-width-style .article-product-left, .article-full-width-style .article-product-right {
    width: 100%
}

.article-full-width-style .article-product-left {
    padding: 0
}

.article-full-width-style .article-product__image {
    max-width: 14.5rem;
    margin: 0 auto
}

@media screen and (min-width: 768px) {
    .article-full-width-style .article-product__image {
        margin-bottom: .9375rem
    }
}

.article-full-width-style .article-product__image img {
    margin: 0
}

.article-full-width-style .article-product__table-col {
    width: auto;
    padding-right: .25rem
}

.article-full-width-style .article-product__image-add {
    max-width: unset
}

@media screen and (min-width: 768px) {
    .article-full-width-style .article-product__image-add {
        -webkit-box-ordinal-group: 3;
        order: 2;
        margin-top: 0
    }
}

@media screen and (max-width: 767px) {
    .article-full-width-style .article-product__image-add {
        margin-bottom: 1.5625rem
    }
}

.posts-grid {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1em 2em
}

@media screen and (max-width: 599px) {
    .posts-grid {
        -webkit-box-pack: center;
        justify-content: center
    }
}

.posts-grid-item {
    width: 50%;
    padding: 0 1em;
    margin-bottom: 1.75em
}

@media screen and (max-width: 599px) {
    .posts-grid-item {
        width: 100%;
        max-width: 23.75em
    }
}

.posts-grid-item__inner {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: .75em 1.25em;
    height: 15.3125em;
    overflow: hidden
}

@media screen and (max-width: 767px) {
    .posts-grid-item__inner {
        height: 12.5em;
        padding: .625em
    }
}

@media screen and (max-width: 599px) {
    .posts-grid-item__inner {
        height: 14.375em
    }
}

.posts-grid-item__inner a:not(.posts-grid-heading__label), .posts-grid-item__inner img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.posts-grid-item__inner a:not(.posts-grid-heading__label) {
    z-index: 2
}

.posts-grid-item__inner .posts-grid-heading__label {
    position: relative;
    z-index: 3
}

.posts-grid-item__inner img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center"
}

.posts-grid-item__inner:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40%;
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, rgba(0, 0, 0, .2)), color-stop(60%, rgba(0, 0, 0, .7)), to(rgba(0, 0, 0, .8)));
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .2) 30%, rgba(0, 0, 0, .7) 60%, rgba(0, 0, 0, .8));
    -webkit-transition: .3s;
    transition: .3s
}

.posts-grid-item__inner:hover:before {
    opacity: .8
}

.posts-grid-heading {
    font-weight: 600;
    color: #fff
}

.posts-grid-heading__title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.125em;
    line-height: 1.35
}

@media screen and (min-width: 1366px) {
    .posts-grid-heading__title {
        max-width: 90%
    }
}

@media screen and (max-width: 767px) {
    .posts-grid-heading__title {
        font-size: 1em
    }
}

.posts-grid-heading__label {
    background-color: #2a64b6;
    color: #fff;
    display: inline-block;
    font-size: .875em;
    line-height: 1.2;
    margin-bottom: .5em;
    padding: .3571428571em .7142857143em;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: background-color .2s ease-in;
    transition: background-color .2s ease-in;
    will-change: background-color
}

.read-more {
    padding-top: 1.25em;
    border-top: 1px solid #ddd
}

.read-more-tags {
    flex-wrap: wrap;
    margin-bottom: 1.5625em
}

.read-more-tags, .read-more-tags__list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.read-more-tags__list {
    padding: 0;
    margin: 0;
    list-style: none;
    letter-spacing: -.5px
}

.read-more-tags__list li {
    padding: 0 .5em;
    border-right: 1px solid #36393b;
    line-height: 1
}

.read-more-tags__list li:last-of-type {
    border-right: 0
}

.read-more-tags__list a {
    color: inherit
}

.read-more-next, .read-more-tags__list a:hover {
    text-decoration: none
}

.read-more-next {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 1.25em;
    line-height: 1.35;
    background-color: #f5f5f5;
    -webkit-transition: background-color .2s ease-in;
    transition: background-color .2s ease-in;
    color: inherit
}

.read-more-next:hover {
    background-color: #f0f0f0
}

.read-more-next span:not(.read-more-next__accent) {
    padding: .3125em .3125em .3125em 0
}

.read-more-next__accent {
    flex-shrink: 0
}

.read-more-next__accent strong {
    position: relative;
    display: block;
    height: 2.1875em;
    margin-right: 1.25em;
    padding: 0 .5em 0 .75em;
    font-family: Roboto Bold, Arial, sans-serif;
    line-height: 2.1875em;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: .6px;
    color: #fff;
    background-color: #2a64b6;
    -webkit-transition: background-color .2s ease-in;
    transition: background-color .2s ease-in
}

.read-more-next__accent strong:after {
    content: "";
    position: absolute;
    top: 0;
    right: -.8125em;
    bottom: 0;
    display: inline-block;
    height: 0;
    width: 0;
    -webkit-transform: rotate(1turn);
    border-color: transparent transparent transparent #2a64b6;
    border-style: solid;
    border-width: 1.09375em 0 1.09375em .8125em;
    -webkit-transition: border-color .2s ease-in;
    transition: border-color .2s ease-in
}

.read-more-grid__title, .read-more-tags__title {
    font-family: Roboto Bold, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .3px
}

.read-more-grid__items {
    margin: .3125em -.6875em 1.875em
}

.read-more-grid__items .posts-grid-item {
    width: 33.33%;
    padding: 0 .6875em
}

@media screen and (max-width: 767px) {
    .read-more-grid__items .posts-grid-item {
        width: 50%
    }
}

@media screen and (max-width: 419px) {
    .read-more-grid__items .posts-grid-item {
        width: 100%
    }
}

.read-more-grid__items .posts-grid-item__inner {
    height: 10.125em;
    padding: .625em .8125em
}

.read-more-grid__items .posts-grid-heading__title {
    max-width: 100%;
    font-size: .875em;
    font-family: Roboto Light, Arial, sans-serif
}

.back-to-top {
    position: fixed;
    right: 1.875rem;
    bottom: 1.25rem;
    z-index: 9999999;
    opacity: 0;
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
    visibility: hidden
}

@media screen and (max-width: 1023px) {
    .back-to-top {
        right: .9375em;
        bottom: 3.75em
    }

    .back-to-top span {
        display: none
    }
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible
}

.back-to-top__btn {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 2rem;
    color: #fff;
    border-radius: 0;
    box-shadow: 0 0 7px rgba(0, 0, 0, .15);
    cursor: pointer;
    outline: none;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in
}

.back-to-top__btn span {
    font-weight: 600;
    font-size: .875rem;
    margin-right: .625rem
}

.back-to-top__btn:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, .3)
}

.back-to-top__btn:after {
    content: "";
    display: block;
    width: .625rem;
    height: .625rem;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: translateY(30%) rotate(45deg);
    transform: translateY(30%) rotate(45deg)
}

@media screen and (max-width: 1023px) {
    .back-to-top__btn.back-to-top__btn {
        border-radius: 50%;
        width: 3.125rem;
        height: 3.125rem;
        padding: 0;
        border: 0
    }

    .back-to-top__btn.back-to-top__btn:after {
        width: .75rem;
        height: .75rem;
        border-left-width: 3px;
        border-top-width: 3px
    }
}

section.best-offers {
    margin: 1.25rem 0 5rem
}

section.best-offers .container, section.best-offers .footer__cookie-decline-text, section.best-offers .footer__disclaimer-text {
    max-width: 75rem
}

.best-offers-list {
    display: -webkit-box;
    display: flex
}

@media screen and (max-width: 767px) {
    .best-offers-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        max-width: 25rem;
        margin: 0 auto
    }
}

.best-offers-list-wrap {
    padding: .1875rem .375rem 1.125rem;
    overflow: hidden
}

@media screen and (max-width: 1365px) {
    .best-offers-list-wrap {
        margin: 0
    }
}

@media screen and (max-width: 767px) {
    .best-offers-list-wrap {
        margin-bottom: .9375rem
    }
}

.best-offers-item {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    position: relative;
    padding: 2rem 1.375rem;
    background-color: #fff;
    border: 5px solid #9b9b9b;
    box-shadow: 0 4px 5px hsla(0, 0%, 60.8%, .33);
    cursor: pointer
}

.best-offers-item .table__features-list {
    margin: 0
}

.best-offers-item .table__features-list li.table__features-item {
    position: relative;
    margin-bottom: 1.125rem;
    padding-left: 1.875rem;
    font-family: Roboto Regular, Arial, sans-serif;
    font-size: .875rem;
    color: #585859
}

.best-offers-item .table__features-list li.table__features-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5625rem;
    height: 1.3125rem;
    background: url(icon-check-pass.svg) no-repeat 50%/cover
}

.best-offers-item .table__badge-extra, .best-offers-item .table__features-list li.table__features-item svg, .best-offers-item .table__item-num {
    display: none
}

.best-offers-item .table__badge {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    z-index: 1;
    padding: 0 0 1.25rem;
    margin: 0;
    width: 14.375rem;
    height: 14.375rem;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg)
}

.best-offers-item .table__badge:after {
    content: "";
    position: absolute;
    bottom: 13px;
    left: 6px;
    display: inline-block;
    height: 0;
    width: 0;
    -webkit-transform: rotate(1turn);
    border-color: #ae0d06 transparent transparent #ae0d06;
    border-style: solid;
    border-width: .21875rem .1875rem
}

.best-offers-item .table__badge img {
    display: none
}

.best-offers-item .table__badge .table__badge-custom {
    position: static;
    margin: 0 auto;
    padding: .375rem 2.1875rem .25rem;
    width: 100%;
    font-family: Roboto Bold, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    background: -webkit-gradient(linear, left top, left bottom, from(#fe4408), to(#fa6327));
    background: linear-gradient(180deg, #fe4408, #fa6327)
}

.best-offers-item .table__badge .badge_custom_color {
    display: block
}

.best-offers-item .table__item-title {
    width: auto;
    height: 3.375rem;
    margin: 0;
    border: 0;
    background: transparent
}

.best-offers-item .table__item-logo {
    margin: 0 auto;
    height: 200%
}

.best-offers-item .table__score {
    margin-bottom: 0
}

.best-offers-item .best-offers-info {
    margin-bottom: 1.5rem;
    text-align: center
}

.best-offers-item .best-offers-button {
    width: 80%;
    margin: 0 auto
}

@media screen and (max-width: 1023px) {
    .best-offers-item .best-offers-button {
        width: 100%
    }
}

.best-offers-item .best-offers-button .btn, .best-offers-item .best-offers-button .contact .wpcf7-submit, .best-offers-item .best-offers-button .popup__form .wpcf7-form input[type=submit], .contact .best-offers-item .best-offers-button .wpcf7-submit, .popup__form .wpcf7-form .best-offers-item .best-offers-button input[type=submit] {
    height: 3.25rem;
    width: 100%;
    padding: .125rem .625rem;
    font-size: 1.375rem;
    font-family: Roboto Regular, Arial, sans-serif;
    line-height: 1;
    text-transform: none;
    border-radius: 0;
    background-color: #9b9b9b
}

@media screen and (max-width: 1023px) {
    .best-offers-item .best-offers-button .btn, .best-offers-item .best-offers-button .contact .wpcf7-submit, .best-offers-item .best-offers-button .popup__form .wpcf7-form input[type=submit], .contact .best-offers-item .best-offers-button .wpcf7-submit, .popup__form .wpcf7-form .best-offers-item .best-offers-button input[type=submit] {
        font-size: 1.125rem
    }
}

.best-offers-item .best-offers-button .btn:hover, .best-offers-item .best-offers-button .contact .wpcf7-submit:hover, .best-offers-item .best-offers-button .popup__form .wpcf7-form input[type=submit]:hover, .contact .best-offers-item .best-offers-button .wpcf7-submit:hover, .popup__form .wpcf7-form .best-offers-item .best-offers-button input[type=submit]:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.best-offers-item .table__links {
    margin-top: 1.125rem
}

.best-offers-item .table__info {
    min-width: 7.9375rem;
    padding: .125rem .6875rem;
    font-size: 1.125rem
}

.best-offers-rate {
    margin-bottom: .6875rem
}

.best-offers-rate .table__score-desc {
    display: inline-block
}

.best-offers-rate .table__popup_visible {
    z-index: 1;
    right: 100%
}

.best-offers-list-wrap:nth-child(2) {
    margin-top: -1.875rem;
    margin-bottom: -.9375rem
}

@media screen and (max-width: 767px) {
    .best-offers-list-wrap:nth-child(2) {
        margin-top: 0;
        margin-bottom: .9375rem
    }
}

.best-offers-list-wrap:nth-child(2) .best-offers-item {
    padding-bottom: 1rem;
    border-color: #ff6e1f
}

.best-offers-list-wrap:nth-child(2) .best-offers-item > * {
    -webkit-box-ordinal-group: 4;
    order: 3
}

.best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-rate, .best-offers-list-wrap:nth-child(2) .best-offers-item .table__item-title {
    -webkit-box-ordinal-group: 3;
    order: 2
}

.best-offers-list-wrap:nth-child(2) .best-offers-item .table__item-title {
    margin-bottom: 1.875rem;
    -webkit-transform: scale(1.5);
    transform: scale(1.5)
}

.best-offers-list-wrap:nth-child(2) .best-offers-item .table__score-title {
    color: #ff6e1f
}

.best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-info {
    margin-bottom: 0
}

.best-offers-list-wrap:nth-child(2) .best-offers-item .table__links {
    margin-top: .75rem
}

.best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button {
    -webkit-box-ordinal-group: 3;
    order: 2;
    margin-bottom: 1.5625rem
}

.best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .btn, .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .contact .wpcf7-submit, .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .popup__form .wpcf7-form input[type=submit], .contact .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .wpcf7-submit, .popup__form .wpcf7-form .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button input[type=submit] {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .btn:not(:hover), .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .contact .wpcf7-submit:not(:hover), .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .popup__form .wpcf7-form input[type=submit]:not(:hover), .contact .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .wpcf7-submit:not(:hover), .popup__form .wpcf7-form .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button input[type=submit]:not(:hover) {
    background-color: #1cb432
}

.best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .btn:after, .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .contact .wpcf7-submit:after, .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .popup__form .wpcf7-form input[type=submit]:after, .contact .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button .wpcf7-submit:after, .popup__form .wpcf7-form .best-offers-list-wrap:nth-child(2) .best-offers-item .best-offers-button input[type=submit]:after {
    content: "";
    margin-left: .4375rem;
    width: .625rem;
    height: .875rem;
    background: url(icon-download.svg) no-repeat 50%/cover
}

.score-box {
    display: -webkit-box;
    display: flex;
    padding: .625rem 0;
    border-top: 1px solid #ddd
}

.score-box .table__features-list {
    margin: 0
}

.score-box .table__features-item {
    position: relative;
    padding-left: 1.25rem;
    font-size: 1rem
}

@media screen and (max-width: 767px) {
    .score-box .table__features-item {
        font-size: .8125rem
    }
}

.score-box .table__features-item svg {
    position: absolute;
    top: .125rem;
    left: 0
}

.score-box .table__link {
    display: block;
    margin: 0 0 1.875rem 1.25rem;
    font-family: Roboto Bold, Arial, sans-serif
}

@media screen and (max-width: 767px) {
    .score-box .table__link {
        margin-bottom: .3125rem;
        font-size: .75rem
    }
}

.contact .score-box .wpcf7-submit, .popup__form .wpcf7-form .score-box input[type=submit], .score-box .btn, .score-box .contact .wpcf7-submit, .score-box .popup__form .wpcf7-form input[type=submit] {
    height: 3.125rem;
    font-size: 1.25rem;
    font-family: Roboto Regular, Arial, sans-serif;
    text-transform: none;
    border-radius: .75rem
}

@media screen and (max-width: 767px) {
    .contact .score-box .wpcf7-submit, .popup__form .wpcf7-form .score-box input[type=submit], .score-box .btn, .score-box .contact .wpcf7-submit, .score-box .popup__form .wpcf7-form input[type=submit] {
        height: 2.5rem;
        padding: .1875rem 1.875rem;
        font-size: 1.125rem
    }
}

.score-box .table__score-title {
    font-size: 2.25rem;
    font-family: Roboto Bold, Arial, sans-serif;
    color: #919699
}

.score-box .table__score-desc {
    font-size: .6875rem
}

.score-box-left {
    flex-shrink: 0;
    padding-bottom: .625rem
}

.score-box-right {
    padding: 1.25rem 0 0 2.5rem
}

@media screen and (max-width: 767px) {
    .score-box-right {
        padding-left: .625rem
    }
}

.score-box-image {
    max-width: 8.75rem;
    margin: 0 auto
}

@media screen and (max-width: 767px) {
    .score-box-image {
        max-width: 6.875rem
    }
}

@media screen and (min-width: 768px) {
    .hero-sponsored-enabled.hero {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        padding-top: .25rem
    }

    .hero-sponsored-enabled.hero .hero__text {
        width: 50%
    }
}

@media screen and (max-width: 767px) {
    .hero-sponsored-enabled.hero {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }
}

.hero-sponsored-icons {
    margin: 1.25rem 0 .625rem;
    font-size: 1rem;
    text-align: center
}

@media screen and (min-width: 768px) {
    .hero-sponsored-icons {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .hero-sponsored-icons {
        margin: .875rem 0 .9375rem
    }
}

.hero-sponsored-icons img {
    display: block;
    margin: .625rem auto;
    max-width: 17.8125rem
}

.hero-sponsored-widget {
    width: 50%;
    padding: 2.125rem 0 1.625rem .9375rem
}

@media screen and (max-width: 767px) {
    .hero-sponsored-widget {
        display: none
    }
}

.hero-sponsored {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: .8125rem 2.5rem 1.25rem 1.875rem;
    border: 2px solid #95b4eb;
    text-decoration: none;
    color: #000
}

@media screen and (max-width: 889px) {
    .hero-sponsored {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start;
        align-items: flex-start
    }
}

.hero-sponsored:after {
    content: attr(data-badge);
    position: absolute;
    top: 0;
    right: 0;
    padding: .125rem .5rem .25rem .625rem;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1;
    background-color: #95b4eb;
    color: #fff
}

.hero-sponsored__right {
    flex-shrink: 0;
    max-width: 11.875rem
}

@media screen and (min-width: 890px) {
    .hero-sponsored__left {
        max-width: 11.5625rem
    }
}

.hero-sponsored-title {
    margin-top: 0;
    margin-bottom: .1875rem;
    font-size: 1.25rem;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased
}

.hero-sponsored-deal {
    margin-top: 0;
    margin-bottom: .6875rem;
    font-size: 1.5rem;
    font-family: Roboto Regular, Arial, sans-serif;
    color: #2fa6f8;
    line-height: 1
}

.hero-sponsored-btn {
    display: block;
    width: 100%;
    max-width: 11rem;
    padding: .5625rem .625rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-color: #2fa6f8;
    border: 0;
    border-radius: 3.125rem;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
    cursor: pointer
}

.hero-sponsored-btn:hover {
    background-color: #1651bd
}

.container, .footer__cookie-decline-text, .footer__disclaimer-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 74.375em;
    padding: 0 .625em;
    clear: both
}

.container.container_center, .container_center.footer__cookie-decline-text, .container_center.footer__disclaimer-text {
    text-align: center
}

.container.container_mb, .container_mb.footer__cookie-decline-text, .container_mb.footer__disclaimer-text {
    padding-bottom: 3.125em
}

.container.container_bb, .container_bb.footer__cookie-decline-text, .container_bb.footer__disclaimer-text {
    position: relative
}

.container.container_bb:after, .container_bb.footer__cookie-decline-text:after, .container_bb.footer__disclaimer-text:after {
    content: "";
    display: block;
    width: 300vw;
    height: 1px;
    position: absolute;
    left: -100vw;
    bottom: 0;
    background-color: #e0e0e0
}

.page-background .container, .page-background .footer__cookie-decline-text, .page-background .footer__disclaimer-text {
    max-width: 67.5em
}

.page-background.page-background-top .content.content {
    background-position: top
}

.page-background.page-background-right .content.content {
    background-position: 100% 0
}

.container .container, .container .footer__cookie-decline-text, .container .footer__disclaimer-text, .footer__cookie-decline-text .container, .footer__cookie-decline-text .footer__cookie-decline-text, .footer__cookie-decline-text .footer__disclaimer-text, .footer__disclaimer-text .container, .footer__disclaimer-text .footer__cookie-decline-text, .footer__disclaimer-text .footer__disclaimer-text {
    padding-left: 0;
    padding-right: 0
}

.template-table .container, .template-table .footer__cookie-decline-text, .template-table .footer__disclaimer-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 76.0625em
}

.bgc {
    background-color: #f5f5f5
}

.bgc .title_centered.title_centered.title_centered.title_centered {
    text-align: center;
    border: none
}

@media screen and (min-width: 768px) {
    .bgc .title_centered.title_centered.title_centered.title_centered {
        margin-bottom: 4.5625rem
    }
}

.footer {
    height: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    align-items: stretch;
    font-size: 1rem
}

.footer.footer_light {
    overflow: hidden;
    font-family: Poppins Regular, Arial, sans-serif
}

.footer.footer_light .title {
    font-family: Poppins Light, Arial, sans-serif
}

@media screen and (max-width: 599px) {
    .footer {
        height: auto
    }
}

.footer_witout-flags {
    height: auto
}

.footer_witout-flags .footer__top {
    height: 100%
}

@media screen and (max-width: 1023px) {
    .footer_witout-flags .footer__top {
        height: auto
    }
}

.footer__top {
    background-color: #f5f5f5;
    min-height: calc(100% - 2.9375em)
}

@media screen and (max-width: 1023px) {
    .footer__top {
        min-height: auto
    }
}

.footer__top .hero-h4 br {
    display: none
}

.footer_light .footer__top-geo h3 {
    margin: .9375rem 0 .75rem;
    font-family: Poppins Light, Arial, sans-serif
}

.footer_light .footer__top-geo h3 + h4 {
    margin-top: -.5rem
}

.footer_light .footer__top-geo h4 {
    font-size: .9375em;
    margin: 0 0 .625rem
}

.footer__inner {
    border-bottom: 1px solid #ddd;
    border-color: #ddd currentcolor;
    border-top: 1px solid #ddd
}

.footer__container.footer__container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-top: 1.75em;
    padding-bottom: .9375em;
    min-height: 11.25em
}

@media screen and (max-width: 1023px) {
    .footer__container.footer__container {
        flex-wrap: wrap;
        padding: 2.25em 4.4375em
    }
}

@media screen and (max-width: 419px) {
    .footer__container.footer__container {
        padding-left: .625em;
        padding-right: .625em
    }
}

.footer__content {
    -webkit-box-flex: 1;
    flex: 1 0 32%
}

@media screen and (max-width: 1023px) {
    .footer__content {
        -webkit-box-flex: 1;
        flex: 1 0 50%;
        margin-bottom: 2.125em
    }

    .footer__content:nth-child(2) {
        -webkit-box-flex: 0;
        flex: 0 1 33%
    }

    .footer__content:last-child {
        margin-bottom: 0
    }
}

@media screen and (max-width: 599px) {
    .footer__content:nth-child(2) {
        -webkit-box-flex: 1;
        flex: 1 0 100%
    }
}

.footer__content:not(:last-child) {
    margin-right: 2%
}

@media screen and (max-width: 1023px) {
    .footer__content:not(:last-child) {
        margin-right: 0
    }
}

.footer__content > * {
    max-width: 20.625em
}

.footer__content .widget p {
    margin: 0
}

@media screen and (max-width: 599px) {
    .footer__content .widget {
        margin: 0;
        max-width: 100%
    }

    .footer__content .widget p img {
        float: left;
        margin-left: 0;
        margin-right: 1.5625rem
    }
}

.footer__socials {
    display: -webkit-box;
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none
}

.footer__socials-item {
    width: 1.5em;
    height: 1.5em;
    margin-right: .75em
}

.footer__socials-item a, .footer__socials-item svg {
    display: block;
    width: 100%;
    height: 100%
}

.footer__socials-item svg path {
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.footer__socials-item a:hover svg path {
    opacity: .8
}

.footer__copyright {
    padding: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    color: #909598;
    font-size: .875em;
    min-height: 3em;
    margin: 0
}

@media screen and (max-width: 1023px) {
    .footer__copyright {
        padding: 0 4.4375em
    }
}

@media screen and (max-width: 599px) {
    .footer__copyright {
        padding: 1.25em
    }
}

.footer__bottom {
    z-index: 99999;
    padding: .625em 0 .1875em;
    background-color: #fff
}

@media screen and (max-width: 599px) {
    .footer__bottom {
        height: auto
    }
}

.footer__bottom .lang-switcher__list {
    flex-wrap: wrap
}

.footer__bottom .lang-switcher__item {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    width: auto;
    height: auto;
    margin: 0 .625em .3125em
}

.footer__menu, .footer__text {
    color: #000;
    font-size: .875em;
    margin-top: .7857142857em;
    line-height: 1.45
}

.footer__menu:last-child, .footer__text:last-child {
    margin-bottom: 0
}

.footer__menu a, .footer__text a {
    color: inherit;
    text-decoration: none
}

.footer__menu a:hover, .footer__text a:hover {
    text-decoration: underline
}

.footer_light .footer__menu, .footer_light .footer__text {
    font-family: Poppins Light, Arial, sans-serif
}

.footer__text-img {
    display: block
}

.footer__menu {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0
}

.footer__menu li {
    margin: .7142857143em 0
}

.footer__menu li:last-child {
    margin-bottom: 0
}

.footer_light .footer__menu a {
    font-family: Poppins Light, Arial, sans-serif
}

.footer__botmenu-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 1023px) {
    .footer__botmenu-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        margin-bottom: .3333333333em
    }
}

.footer__botmenu {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    font-size: .9375em;
    min-height: 2.8em;
    flex-wrap: wrap
}

.footer_light .footer__botmenu {
    font-size: .875em;
    margin: 0 -.5em -.2142857143em;
    min-height: unset
}

@media screen and (max-width: 1023px) {
    .footer__botmenu {
        -webkit-box-pack: center;
        justify-content: center
    }
}

.footer__botmenu li {
    margin-bottom: .3333333333em
}

.footer_light .footer__botmenu li {
    margin-left: .5em;
    margin-right: .5em;
    font-family: Poppins Light, Arial, sans-serif
}

.footer_light .footer__botmenu li:after {
    display: none
}

.footer__botmenu li:not(:last-child):after {
    content: "|";
    margin: 0 .3333333333em
}

.footer__botmenu a {
    color: #2a64b6;
    text-decoration: none
}

.footer__botmenu a:hover {
    text-decoration: underline;
    color: #36393b
}

.footer__disclaimer {
    margin: 0;
    padding: 1em 0;
    position: relative;
    z-index: 9999
}

.footer_light .footer__disclaimer {
    font-size: .875em;
    padding: .7142857143em 0;
    font-family: Poppins Light, Arial, sans-serif
}

.footer__cookie-decline-text, .footer__disclaimer-text {
    text-align: center;
    margin: 0 auto;
    font-size: .875em;
    line-height: 1.45;
    max-width: 74.375rem
}

.footer__content--logo {
    display: inline-block;
    vertical-align: middle;
    width: 1.875rem;
    margin-left: .3125rem;
    margin-right: .3125rem
}

.footer__privacy {
    padding: 2.5em 0
}

.footer__privacy .container, .footer__privacy .footer__cookie-decline-text, .footer__privacy .footer__disclaimer-text {
    display: -webkit-box;
    display: flex
}

@media screen and (max-width: 767px) {
    .footer__privacy .container, .footer__privacy .footer__cookie-decline-text, .footer__privacy .footer__disclaimer-text {
        flex-wrap: wrap
    }
}

.footer__privacy-item {
    width: 33.33%;
    margin: 0 .9375em
}

.footer__privacy-item img {
    height: 3.75em;
    width: auto;
    margin-bottom: .625em
}

@media screen and (max-width: 767px) {
    .footer__privacy-item {
        width: 100%;
        margin: 0 0 1.875em
    }

    .footer__privacy-item img {
        height: 2.5em;
        width: 2.5em;
        margin-right: .625em
    }

    .footer__privacy-item:last-of-type {
        margin-bottom: 0
    }
}

@media screen and (max-width: 767px) {
    .footer__privacy-item__top {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center
    }
}

.footer__privacy-item__title {
    margin-bottom: .4545454545em;
    font-size: 1.375em;
    line-height: 1.1
}

.footer__privacy-item__descr {
    font-size: .875em
}

.list__row {
    list-style-type: none;
    padding-left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-wrap: wrap
}

.header {
    position: relative;
    box-shadow: 0 3px 5px hsla(0, 0%, 39.2%, .49);
    z-index: 123
}

.header .header__main {
    height: 3.75em
}

.header.header_light .header__main {
    height: 4.375em
}

.header_fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0
}

.admin-bar .header_fixed {
    top: 32px
}

@media screen and (max-width: 781px) {
    .admin-bar .header_fixed {
        top: 46px
    }
}

.header_fixed + * {
    padding-top: 3.75em
}

.header_fixed.header_topline + * {
    padding-top: 5.4375em
}

.header_fixed.header_light + * {
    padding-top: 4.375em
}

.header_fixed.header_light.header_topline + * {
    padding-top: 6.0625em
}

.header_fixed ~ #wpadminbar {
    position: fixed
}

.header_ipinfo-hidden .nav {
    margin-right: 0
}

@media screen and (max-width: 1023px) {
    .header_ipinfo-hidden .nav {
        margin-left: auto;
        margin-right: auto
    }
}

.header_ipinfo-hidden .nav__menu {
    -webkit-box-pack: end;
    justify-content: flex-end
}

@media screen and (max-width: 1023px) {
    .header_ipinfo-hidden .nav__menu {
        -webkit-box-pack: center;
        justify-content: center
    }
}

.header__container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    height: 100%
}

.header__topline {
    position: relative;
    padding: 0 1.25em
}

.banner-bottom__close-btn, .header__topline-close {
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 1;
    width: 1.375em;
    height: 1.375em;
    padding: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    border: 0;
    cursor: pointer;
    outline: none
}

.banner-bottom__close-btn:after, .banner-bottom__close-btn:before, .header__topline-close:after, .header__topline-close:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    bottom: 0;
    left: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    width: 60%;
    height: 1px;
    -webkit-transition: all .2s;
    transition: all .2s
}

.banner-bottom__close-btn:after, .header__topline-close:after {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg)
}

.banner-bottom__close-btn:before, .header__topline-close:before {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg)
}

.banner-bottom__close-btn:hover:after, .banner-bottom__close-btn:hover:before, .header__topline-close:hover:after, .header__topline-close:hover:before {
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0)
}

.header__topline-text {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    min-height: 1.9285714286em;
    width: 100%;
    padding: .125em 0;
    font-size: .875em;
    text-align: center;
    line-height: 1.3
}

.header_light .header__topline-text {
    font-family: Poppins Regular, Arial, sans-serif
}

.header__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    height: 100%;
    -webkit-box-flex: 1;
    flex: 1
}

@media screen and (max-width: 1024px) {
    .header__inner {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
        height: auto;
        background-color: #2a64b6;
        box-shadow: 0 3px 5px hsla(0, 0%, 39.2%, .49);
        padding: 1.25em 0
    }
}

@media screen and (max-width: 599px) {
    .header__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: stretch;
        align-items: stretch
    }
}

.header__right {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 100%
}

@media screen and (max-width: 767px) {
    .page-background.mobile-light-style:not(.mobile-light-style--pet) .header .header__main {
        background-color: #fff
    }

    .page-background.mobile-light-style:not(.mobile-light-style--pet) .branding__logo--additional {
        display: block
    }

    .page-background.mobile-light-style:not(.mobile-light-style--pet) .branding__logo--additional + .branding__logo--main {
        display: none
    }

    .page-background.mobile-light-style:not(.mobile-light-style--pet) .hero__container {
        padding: 0
    }

    .page-background.mobile-light-style:not(.mobile-light-style--pet) .hero .hero__text {
        margin-bottom: .75rem;
        padding: 1.5rem .625rem 1.625rem .9375rem;
        font-size: .875em;
        color: #fff;
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover
    }

    .page-background.mobile-light-style:not(.mobile-light-style--pet) .hero .hero__title {
        line-height: 1.4;
        font-family: Roboto Bold, Arial, sans-serif;
        margin-bottom: .3125rem
    }

    .page-background.mobile-light-style:not(.mobile-light-style--pet) .hero .hero__subtitle {
        font-family: Roboto Light, Arial, sans-serif
    }

    .page-background.mobile-light-style:not(.mobile-light-style--pet) .hamburger:not(.hamburger_opened) .hamburger__btn, .page-background.mobile-light-style:not(.mobile-light-style--pet) .hamburger__btn:after, .page-background.mobile-light-style:not(.mobile-light-style--pet) .hamburger__btn:before {
        background-color: #000
    }

    .page-background.mobile-light-style:not(.mobile-light-style--pet) .table__features-deal .table__features-deal-main {
        margin-bottom: 1.25rem
    }

    .page-background.mobile-light-style .table, body.mobile-clean-style--meal .table {
        box-shadow: none
    }

    .page-background.mobile-light-style .table tr, .page-background.mobile-light-style .table tr:first-child, body.mobile-clean-style--meal .table tr, body.mobile-clean-style--meal .table tr:first-child {
        margin-bottom: .875rem;
        border: 1px solid #f5f5f5;
        box-shadow: 0 3px 7px rgba(0, 0, 0, .3)
    }

    .page-background.mobile-light-style .table__item-num, body.mobile-clean-style--meal .table__item-num {
        display: none
    }

    .page-background.mobile-light-style .table tr td.table__col-title .table__badge, body.mobile-clean-style--meal .table tr td.table__col-title .table__badge {
        margin-top: .3125rem;
        margin-bottom: -.9375rem
    }

    .page-background.mobile-light-style .table tbody tr:first-child, .page-background.mobile-light-style .table tbody tr:hover, body.mobile-clean-style--meal .table tbody tr:first-child, body.mobile-clean-style--meal .table tbody tr:hover {
        background-color: #fff
    }

    .page-background.mobile-light-style .table tr .table__col--wrap:first-of-type, body.mobile-clean-style--meal .table tr .table__col--wrap:first-of-type {
        background-color: #f9f9f9
    }

    .page-background.mobile-light-style .table tr td.table__col-title .table__item-title, body.mobile-clean-style--meal .table tr td.table__col-title .table__item-title {
        height: 3.25rem;
        max-width: 8.375rem;
        margin: 1rem auto .875rem;
        background-color: transparent !important;
        border: 0
    }

    .page-background.mobile-light-style .table tr td.table__col-title .table__item-title img, body.mobile-clean-style--meal .table tr td.table__col-title .table__item-title img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center"
    }

    .page-background.mobile-light-style .table tr td.table__col-title .table__item-title .table__item-logo--additional, body.mobile-clean-style--meal .table tr td.table__col-title .table__item-title .table__item-logo--additional {
        display: block
    }

    .page-background.mobile-light-style .table tr td.table__col-title .table__item-title .table__item-logo--additional + .table__item-logo, .page-background.mobile-light-style .table tr td.table__col-title .table__item-title .table__item-logo--additional + noscript + .table__item-logo, body.mobile-clean-style--meal .table tr td.table__col-title .table__item-title .table__item-logo--additional + .table__item-logo, body.mobile-clean-style--meal .table tr td.table__col-title .table__item-title .table__item-logo--additional + noscript + .table__item-logo {
        display: none
    }

    .page-background.mobile-light-style table tr td .table__features-deal-disclaimer, body.mobile-clean-style--meal table tr td .table__features-deal-disclaimer {
        margin-top: .625rem
    }

    .page-background.mobile-light-style table tr td.table__col-score, body.mobile-clean-style--meal table tr td.table__col-score {
        padding-bottom: 1rem
    }

    .page-background.mobile-light-style table tr td.table__col-score .table__score-title, body.mobile-clean-style--meal table tr td.table__col-score .table__score-title {
        float: left;
        margin-top: -.25rem;
        margin-right: .5rem;
        font-size: 2rem
    }

    .page-background.mobile-light-style table tr td.table__col-features .table__info, body.mobile-clean-style--meal table tr td.table__col-features .table__info {
        visibility: visible;
        height: auto;
        margin: .25rem auto .3125rem;
        font-family: Roboto Light, Arial, sans-serif;
        color: #909598
    }

    .page-background.mobile-light-style table tr td.table__col-features .table__features-deal-main, body.mobile-clean-style--meal table tr td.table__col-features .table__features-deal-main {
        font-size: 1rem;
        color: #0a1d27
    }

    .page-background.mobile-light-style table tr td.table__col-features .table__underbtntext, body.mobile-clean-style--meal table tr td.table__col-features .table__underbtntext {
        -webkit-box-ordinal-group: 1;
        order: 0;
        margin: .3125rem 0 0;
        font-size: .875rem;
        background-color: transparent !important
    }

    .page-background.mobile-light-style .banner-bottom--left, body.mobile-clean-style--meal .banner-bottom--left {
        right: auto;
        padding: 0;
        font-size: .75rem;
        border-right: 1px solid #ddd
    }

    .page-background.mobile-light-style .banner-bottom--left .banner-bottom__items, body.mobile-clean-style--meal .banner-bottom--left .banner-bottom__items {
        padding-top: .625rem;
        padding-bottom: .625rem
    }

    .contact .page-background.mobile-light-style .banner-bottom--left .wpcf7-submit, .contact body.mobile-clean-style--meal .banner-bottom--left .wpcf7-submit, .page-background.mobile-light-style .banner-bottom--left .btn, .page-background.mobile-light-style .banner-bottom--left .contact .wpcf7-submit, .page-background.mobile-light-style .banner-bottom--left .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.mobile-light-style .banner-bottom--left input[type=submit], .popup__form .wpcf7-form body.mobile-clean-style--meal .banner-bottom--left input[type=submit], body.mobile-clean-style--meal .banner-bottom--left .btn, body.mobile-clean-style--meal .banner-bottom--left .contact .wpcf7-submit, body.mobile-clean-style--meal .banner-bottom--left .popup__form .wpcf7-form input[type=submit] {
        height: 2.5em;
        min-width: unset;
        padding: 0 .625rem;
        letter-spacing: 0
    }

    .contact .page-background.mobile-light-style .banner-bottom--left .wpcf7-submit a, .contact body.mobile-clean-style--meal .banner-bottom--left .wpcf7-submit a, .page-background.mobile-light-style .banner-bottom--left .btn a, .page-background.mobile-light-style .banner-bottom--left .contact .wpcf7-submit a, .page-background.mobile-light-style .banner-bottom--left .popup__form .wpcf7-form input[type=submit] a, .popup__form .wpcf7-form .page-background.mobile-light-style .banner-bottom--left input[type=submit] a, .popup__form .wpcf7-form body.mobile-clean-style--meal .banner-bottom--left input[type=submit] a, body.mobile-clean-style--meal .banner-bottom--left .btn a, body.mobile-clean-style--meal .banner-bottom--left .contact .wpcf7-submit a, body.mobile-clean-style--meal .banner-bottom--left .popup__form .wpcf7-form input[type=submit] a {
        display: block;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center
    }

    .page-background.mobile-light-style .banner-bottom--left .btn-text, body.mobile-clean-style--meal .banner-bottom--left .btn-text {
        display: block;
        margin: 0
    }

    .page-background.mobile-light-style .banner-bottom__item--logo, body.mobile-clean-style--meal .banner-bottom__item--logo {
        display: block !important;
        max-width: 7.5rem
    }

    .page-background.mobile-light-style--meal .table tr td.table__col-title .table__item-title, .page-background.mobile-light-style--pet .table tr td.table__col-title .table__item-title {
        height: 4.6875rem;
        max-width: unset;
        margin-bottom: .25em
    }

    .page-background.mobile-light-style--meal .table tr td.table__col-score, .page-background.mobile-light-style--pet .table tr td.table__col-score {
        margin-top: .1875rem
    }

    .page-background.mobile-light-style--meal .table tr td.table__col-score .table__score, .page-background.mobile-light-style--pet .table tr td.table__col-score .table__score {
        margin-bottom: 0
    }

    .page-background.mobile-light-style--meal .table tr td.table__col-score .table__score-title, .page-background.mobile-light-style--pet .table tr td.table__col-score .table__score-title {
        font-size: 1.625rem;
        margin-top: .0625rem;
        margin-bottom: 0
    }

    .page-background.mobile-light-style--meal .table tr td.table__col-score .table__score-desc, .page-background.mobile-light-style--pet .table tr td.table__col-score .table__score-desc {
        margin: .125rem 0
    }

    .page-background.mobile-light-style--meal .table tr td.table__col-score .table__features-links, .page-background.mobile-light-style--pet .table tr td.table__col-score .table__features-links {
        margin-top: 0
    }

    .page-background.mobile-light-style--meal .table__features-list, .page-background.mobile-light-style--pet .table__features-list {
        margin: 0
    }

    .page-background.mobile-light-style--meal .table__features-item, .page-background.mobile-light-style--pet .table__features-item {
        display: none
    }

    .page-background.mobile-light-style--meal .table__features-item:first-of-type, .page-background.mobile-light-style--pet .table__features-item:first-of-type {
        display: block
    }

    .page-background.mobile-light-style--meal .table__col-links .table__info, .page-background.mobile-light-style--pet .table__col-links .table__info {
        display: inline-block;
        text-align: center;
        font-size: .75rem;
        margin-top: .375rem
    }

    .page-background.mobile-light-style--meal .hero__subtitle, .page-background.mobile-light-style--meal .hero__title {
        line-height: 1.2 !important
    }

    .page-background.mobile-light-style--meal .hero__subtitle br, .page-background.mobile-light-style--meal .hero__title br {
        display: block !important
    }

    .page-background.mobile-light-style--meal .table__badge-extra {
        top: -1.875rem
    }

    .page-background.mobile-light-style--meal tr td.table__col-features .table__features-item {
        font-size: .75rem
    }

    .page-background.mobile-light-style--meal td.table__col-score .rate {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .page-background.mobile-light-style--meal td.table__col-score .table__score {
        max-width: 6.875rem;
        margin: 0 auto
    }

    .page-background.mobile-light-style--meal td.table__col-score .table__score-title {
        font-family: Roboto Light, Arial, sans-serif;
        letter-spacing: -.5px
    }

    .page-background.mobile-light-style--meal td.table__col-score .table__score-desc {
        font-size: .5625rem
    }

    .page-background.mobile-light-style--meal td.table__col-score .table__popup-opener {
        display: none
    }

    .page-background.mobile-light-style--meal .table__col-links.table__col-links.table__col-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-ordinal-group: 102;
        order: 101
    }

    .page-background.mobile-light-style--pet .hero {
        display: block
    }

    .page-background.mobile-light-style--pet .hero .hero__image-mobile, .page-background.mobile-light-style--pet .hero .hero__video {
        position: relative
    }

    .page-background.mobile-light-style--pet .hero .hero__image-mobile img, .page-background.mobile-light-style--pet .hero .hero__video img {
        width: 100%;
        height: auto
    }

    .page-background.mobile-light-style--pet .hero .hero__image-mobile:after, .page-background.mobile-light-style--pet .hero .hero__image-mobile:before, .page-background.mobile-light-style--pet .hero .hero__video:after, .page-background.mobile-light-style--pet .hero .hero__video:before {
        content: "";
        display: block;
        width: 10%;
        height: 100%;
        position: absolute;
        left: -.0625rem;
        top: 0;
        background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
        background-image: linear-gradient(90deg, #fff 0, transparent)
    }

    .page-background.mobile-light-style--pet .hero .hero__image-mobile:after, .page-background.mobile-light-style--pet .hero .hero__video:after {
        content: "";
        right: 0;
        left: auto;
        background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(transparent));
        background-image: linear-gradient(270deg, #fff 0, transparent)
    }

    .page-background.mobile-light-style--pet .hero .hero__text {
        max-width: unset;
        width: 100%;
        padding: .3125rem .625rem .625rem !important
    }

    .page-background.mobile-light-style--pet .hero .hero__text .hero__title {
        font-size: 1.125rem;
        text-align: center
    }

    .page-background.mobile-light-style--pet .table__info {
        border: 0
    }

    .page-background.mobile-light-style--pet .table__features-list {
        display: none
    }

    body.mobile-clean-style--meal.mobile-light-style .header__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr {
        padding: 1rem 0;
        margin: 0;
        box-shadow: none;
        border: none;
        border-bottom: 1px solid #cdcdcd
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .rate, body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__col-features, body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__features-links, body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__score-title {
        display: none !important
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__col--wrap:first-of-type {
        background-color: transparent
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__col--wrap:last-of-type {
        position: relative;
        padding: 0 1.875rem
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__col--wrap:last-of-type:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 70%;
        width: 1px;
        background-color: #cdcdcd
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__col-score {
        display: block
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table-title-additional {
        display: block;
        margin-bottom: .125rem;
        text-align: left;
        font-size: .875rem;
        font-family: Roboto Bold, Arial, sans-serif;
        line-height: 1
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__col-links, body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__col-title, body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__item-title, body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__score {
        margin: 0;
        padding: 0
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__item-title {
        -webkit-box-align: center;
        align-items: center;
        max-width: 100%;
        padding-right: 1.25rem
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__item-title img {
        max-height: 2.5rem
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__item-num {
        position: static;
        display: -webkit-box;
        display: flex;
        flex-shrink: 0;
        -webkit-transform: none;
        transform: none;
        margin-right: .9375rem;
        font-family: Roboto Light, Arial, sans-serif;
        font-size: .875rem;
        text-shadow: none
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr:not(:first-child) .table__item-num {
        background: transparent;
        border-width: 1px;
        border-style: solid
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__score-desc {
        font-size: .625rem;
        margin: 0
    }

    body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .table__col-score {
        padding: 0;
        margin: 0 0 .375rem
    }

    .contact body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .wpcf7-submit, .popup__form .wpcf7-form body.mobile-clean-style--meal.mobile-light-style table.table tbody tr input[type=submit], body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .btn, body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .contact .wpcf7-submit, body.mobile-clean-style--meal.mobile-light-style table.table tbody tr .popup__form .wpcf7-form input[type=submit] {
        height: 2.375rem;
        font-size: 1rem;
        font-family: Roboto Bold, Arial, sans-serif;
        border-radius: .375rem;
        background-color: grey
    }

    body.mobile-clean-style--meal.mobile-light-style .preview {
        background-color: #fff
    }

    body.mobile-clean-style--meal.mobile-light-style .preview .widget__authors {
        margin-top: 0
    }

    body.mobile-clean-style--meal.mobile-light-style .post__content {
        padding: 0 1.5625rem;
        line-height: 1.7
    }

    body.mobile-clean-style--meal.mobile-light-style .post__content p {
        margin-top: 0;
        font-size: .875rem;
        line-height: 1.8;
        text-align: justify
    }

    body.mobile-clean-style--meal.mobile-light-style .post__content h3 {
        margin: 1.25rem 0 .3125rem;
        font-size: 1.125rem;
        font-family: Roboto Medium, Arial, sans-serif;
        line-height: 1.4
    }

    body.mobile-clean-style--meal.mobile-light-style .post__content h2, body.mobile-clean-style--meal.mobile-light-style .post__content h3, body.mobile-clean-style--meal.mobile-light-style .post__content h4, body.mobile-clean-style--meal.mobile-light-style .post__content h5, body.mobile-clean-style--meal.mobile-light-style .post__content h6 {
        display: block
    }

    body.mobile-clean-style--meal.mobile-light-style .footer__top {
        background-color: #fff
    }

    body.mobile-clean-style--meal.mobile-light-style .banner-bottom__item--desc, body.mobile-clean-style--meal.mobile-light-style .footer__top-geo {
        display: none
    }

    body.mobile-clean-style--meal.mobile-light-style .banner-bottom__main {
        width: 100%;
        max-width: unset
    }

    body.mobile-clean-style--meal.mobile-light-style .banner-bottom__items {
        padding: .75rem 0
    }

    body.mobile-clean-style--meal.mobile-light-style .banner-bottom__item {
        margin: 0 .625rem
    }

    body.mobile-clean-style--meal.mobile-light-style .banner-bottom__item img {
        max-width: 4.375rem
    }

    .contact body.mobile-clean-style--meal.mobile-light-style .banner-bottom--left .wpcf7-submit, .popup__form .wpcf7-form body.mobile-clean-style--meal.mobile-light-style .banner-bottom--left input[type=submit], body.mobile-clean-style--meal.mobile-light-style .banner-bottom--left .btn, body.mobile-clean-style--meal.mobile-light-style .banner-bottom--left .contact .wpcf7-submit, body.mobile-clean-style--meal.mobile-light-style .banner-bottom--left .popup__form .wpcf7-form input[type=submit] {
        height: 2.5rem;
        padding: .3125rem 1.875rem;
        font-size: 1.125rem;
        font-family: Roboto Regular, Arial, sans-serif;
        text-transform: none;
        border-radius: .75rem
    }

    .page-background.mobile-light-style--horse .content {
        background-size: contain
    }

    .page-background.mobile-light-style--horse .hero .hero__text {
        min-height: 11.125rem;
        margin-bottom: 0;
        color: #000
    }

    .page-background.mobile-light-style--horse .hero .hero__image-mobile, .page-background.mobile-light-style--horse .hero .hero__video {
        padding: .75rem .5rem 0;
        max-width: 7.75rem
    }

    .page-background.mobile-light-style--horse .hero .hero__image-mobile img, .page-background.mobile-light-style--horse .hero .hero__video img {
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: top;
        object-position: top;
        font-family: "object-fit: contain; object-position: top"
    }

    .page-background.mobile-light-style--horse .table {
        background-color: transparent
    }
}

@media screen and (min-width: 768px) {
    body.mobile-clean-style--meal.mobile-light-style .banner-bottom--left .banner-bottom__item:first-of-type {
        display: block
    }

    body.mobile-clean-style--meal.mobile-light-style .banner-bottom--left .banner-bottom__item:first-of-type img {
        max-width: 6.25rem
    }

    body.mobile-light-style--meal .hero__image, body.mobile-light-style--meal .hero__video {
        display: block
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    body.mobile-light-style--meal .hero__title .hero__subtitle {
        font-size: 1.125rem
    }

    body.mobile-light-style--meal .table__info {
        flex-wrap: wrap;
        font-size: .75rem
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .content, .page-background.desktop-light-style-horse .content, .page-background.desktop-light-style .content {
        background-position: bottom;
        background-attachment: fixed;
        background-size: cover
    }

    .page-background.desktop-bingo-style .header .sub-menu li, .page-background.desktop-light-style-horse .header .sub-menu li, .page-background.desktop-light-style .header .sub-menu li {
        color: #36393b;
        background-color: #fff
    }

    .page-background.desktop-bingo-style .hero, .page-background.desktop-light-style-horse .hero, .page-background.desktop-light-style .hero {
        height: auto
    }

    .page-background.desktop-bingo-style .header, .page-background.desktop-bingo-style .header .header__main, .page-background.desktop-light-style-horse .header, .page-background.desktop-light-style-horse .header .header__main, .page-background.desktop-light-style .header, .page-background.desktop-light-style .header .header__main {
        background-color: #fff
    }

    .page-background.desktop-bingo-style .branding__logo--additional, .page-background.desktop-light-style-horse .branding__logo--additional, .page-background.desktop-light-style .branding__logo--additional {
        display: block
    }

    .page-background.desktop-bingo-style .branding__logo--additional + .branding__logo--main, .page-background.desktop-light-style-horse .branding__logo--additional + .branding__logo--main, .page-background.desktop-light-style .branding__logo--additional + .branding__logo--main {
        display: none
    }

    .page-background.desktop-bingo-style .nav__menu li, .page-background.desktop-light-style-horse .nav__menu li, .page-background.desktop-light-style .nav__menu li {
        color: #36393b
    }

    .page-background.desktop-bingo-style .hero__text, .page-background.desktop-light-style-horse .hero__text, .page-background.desktop-light-style .hero__text {
        width: 100%;
        padding: .9375em 0 0
    }
}

@media screen and (min-width: 768px) and (min-width: 890px) {
    .page-background.desktop-bingo-style .hero__text, .page-background.desktop-light-style-horse .hero__text, .page-background.desktop-light-style .hero__text {
        min-height: 11.4375em
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .hero__list, .page-background.desktop-bingo-style .hero__subtitle, .page-background.desktop-bingo-style .hero__title, .page-background.desktop-light-style-horse .hero__list, .page-background.desktop-light-style-horse .hero__subtitle, .page-background.desktop-light-style-horse .hero__title, .page-background.desktop-light-style .hero__list, .page-background.desktop-light-style .hero__subtitle, .page-background.desktop-light-style .hero__title {
        text-align: center
    }

    .page-background.desktop-bingo-style .hero__list br, .page-background.desktop-bingo-style .hero__subtitle br, .page-background.desktop-bingo-style .hero__title br, .page-background.desktop-light-style-horse .hero__list br, .page-background.desktop-light-style-horse .hero__subtitle br, .page-background.desktop-light-style-horse .hero__title br, .page-background.desktop-light-style .hero__list br, .page-background.desktop-light-style .hero__subtitle br, .page-background.desktop-light-style .hero__title br {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .hero__list, .page-background.desktop-light-style-horse .hero__list, .page-background.desktop-light-style .hero__list {
        -webkit-box-pack: center;
        justify-content: center;
        margin-top: 1.375em
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .hero__item:first-child, .page-background.desktop-light-style-horse .hero__item:first-child, .page-background.desktop-light-style .hero__item:first-child {
        width: auto
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table, .page-background.desktop-light-style-horse .table, .page-background.desktop-light-style .table {
        background-color: transparent;
        border-collapse: separate;
        border-spacing: 0 12px;
        box-shadow: none;
        max-width: unset
    }

    .page-background.desktop-bingo-style .table thead, .page-background.desktop-light-style-horse .table thead, .page-background.desktop-light-style .table thead {
        margin-bottom: .625em
    }

    .page-background.desktop-bingo-style .table thead tr, .page-background.desktop-light-style-horse .table thead tr, .page-background.desktop-light-style .table thead tr {
        border: 0;
        box-shadow: 0 0 0 1px #e0e0e0
    }

    .page-background.desktop-bingo-style .table tbody td, .page-background.desktop-light-style-horse .table tbody td, .page-background.desktop-light-style .table tbody td {
        display: table-cell;
        padding: .625rem;
        float: none
    }

    .page-background.desktop-bingo-style .table tbody td.table__col-features, .page-background.desktop-light-style-horse .table tbody td.table__col-features, .page-background.desktop-light-style .table tbody td.table__col-features {
        padding-right: 0
    }

    .page-background.desktop-bingo-style .table tbody td.table__col-score, .page-background.desktop-light-style-horse .table tbody td.table__col-score, .page-background.desktop-light-style .table tbody td.table__col-score {
        padding-top: 1.25em;
        padding-bottom: 1.25em
    }

    .page-background.desktop-bingo-style .table tbody td.table__col-links, .page-background.desktop-light-style-horse .table tbody td.table__col-links, .page-background.desktop-light-style .table tbody td.table__col-links {
        padding-right: 1.25em
    }

    .page-background.desktop-bingo-style .table tbody tr, .page-background.desktop-light-style-horse .table tbody tr, .page-background.desktop-light-style .table tbody tr {
        display: table-row;
        box-shadow: 0 3px 7px rgba(0, 0, 0, .35)
    }

    .page-background.desktop-bingo-style .table tbody tr:first-child, .page-background.desktop-light-style-horse .table tbody tr:first-child, .page-background.desktop-light-style .table tbody tr:first-child {
        background-color: #fff
    }

    .page-background.desktop-bingo-style .table tbody tr:first-child:hover, .page-background.desktop-light-style-horse .table tbody tr:first-child:hover, .page-background.desktop-light-style .table tbody tr:first-child:hover {
        background-color: #fffbee
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__item-num, .page-background.desktop-bingo-style .table__popup-opener, .page-background.desktop-light-style-horse .table__item-num, .page-background.desktop-light-style-horse .table__popup-opener, .page-background.desktop-light-style .table__item-num, .page-background.desktop-light-style .table__popup-opener {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__badge, .page-background.desktop-light-style-horse .table__badge, .page-background.desktop-light-style .table__badge {
        width: 100%;
        padding: 0
    }

    .page-background.desktop-bingo-style .table__badge img, .page-background.desktop-light-style-horse .table__badge img, .page-background.desktop-light-style .table__badge img {
        display: block
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__badge--type1 .table__badge-custom, .page-background.desktop-light-style-horse .table__badge--type1 .table__badge-custom, .page-background.desktop-light-style .table__badge--type1 .table__badge-custom {
        padding-right: 0
    }

    .page-background.desktop-bingo-style .table__badge--type1 .table__badge-custom span, .page-background.desktop-light-style-horse .table__badge--type1 .table__badge-custom span, .page-background.desktop-light-style .table__badge--type1 .table__badge-custom span {
        padding-right: 2.5rem
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__item-title, .page-background.desktop-light-style-horse .table__item-title, .page-background.desktop-light-style .table__item-title {
        width: 100%;
        height: 6.5625rem;
        margin: 0;
        border-radius: 0;
        border: 0
    }
}

@media screen and (min-width: 768px) and (max-width: 889px) {
    .page-background.desktop-bingo-style .table__item-title, .page-background.desktop-light-style-horse .table__item-title, .page-background.desktop-light-style .table__item-title {
        height: 5rem
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__head-image, .page-background.desktop-light-style-horse .table__head-image, .page-background.desktop-light-style .table__head-image {
        width: 14%
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__col-title, .page-background.desktop-light-style-horse .table__col-title, .page-background.desktop-light-style .table__col-title {
        width: 20%
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__col-features, .page-background.desktop-bingo-style .table__head-features, .page-background.desktop-light-style-horse .table__col-features, .page-background.desktop-light-style-horse .table__head-features, .page-background.desktop-light-style .table__col-features, .page-background.desktop-light-style .table__head-features {
        width: 26%
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__col-score, .page-background.desktop-bingo-style .table__head-score, .page-background.desktop-light-style-horse .table__col-score, .page-background.desktop-light-style-horse .table__head-score, .page-background.desktop-light-style .table__col-score, .page-background.desktop-light-style .table__head-score {
        width: 34%
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__col-links, .page-background.desktop-bingo-style .table__head-links, .page-background.desktop-light-style-horse .table__col-links, .page-background.desktop-light-style-horse .table__head-links, .page-background.desktop-light-style .table__col-links, .page-background.desktop-light-style .table__head-links {
        width: 20%
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__item-logo, .page-background.desktop-light-style-horse .table__item-logo, .page-background.desktop-light-style .table__item-logo {
        margin: 0 auto
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__features, .page-background.desktop-light-style-horse .table__features, .page-background.desktop-light-style .table__features {
        padding: 0;
        text-align: left
    }

    .page-background.desktop-bingo-style .table__features .table__link, .page-background.desktop-light-style-horse .table__features .table__link, .page-background.desktop-light-style .table__features .table__link {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__features-deal, .page-background.desktop-light-style-horse .table__features-deal, .page-background.desktop-light-style .table__features-deal {
        margin: 0;
        padding: 0;
        text-align: inherit
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__features-deal-main, .page-background.desktop-light-style-horse .table__features-deal-main, .page-background.desktop-light-style .table__features-deal-main {
        margin-bottom: .25em;
        line-height: 1
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__features-deal-disclaimer, .page-background.desktop-light-style-horse .table__features-deal-disclaimer, .page-background.desktop-light-style .table__features-deal-disclaimer {
        font-size: .625rem;
        padding-left: .375em
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__score, .page-background.desktop-light-style-horse .table__score, .page-background.desktop-light-style .table__score {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        align-items: center;
        border-right: 1px solid #e0e0e0;
        border-left: 1px solid #e0e0e0
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__score-title, .page-background.desktop-light-style-horse .table__score-title, .page-background.desktop-light-style .table__score-title {
        position: relative;
        min-height: 5rem;
        margin-bottom: 0;
        padding: .2916666667em .5em 0;
        font-size: 3em;
        line-height: 1.2;
        border-left: 1px solid #e0e0e0
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style tr:first-of-type .table__score-title:after, .page-background.desktop-light-style-horse tr:first-of-type .table__score-title:after, .page-background.desktop-light-style tr:first-of-type .table__score-title:after {
        content: "";
        position: absolute;
        right: .4166666667em;
        bottom: .4166666667em;
        left: .4166666667em;
        height: .125rem;
        background-color: #36393b
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__score-desc, .page-background.desktop-light-style-horse .table__score-desc, .page-background.desktop-light-style .table__score-desc {
        flex-shrink: 0
    }

    .page-background.desktop-bingo-style .table__score-desc .table__link, .page-background.desktop-light-style-horse .table__score-desc .table__link, .page-background.desktop-light-style .table__score-desc .table__link {
        display: inline-block;
        padding-left: .625em;
        margin-left: .375em;
        line-height: 1;
        border-left: 1px solid #919699
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__score-common, .page-background.desktop-light-style-horse .table__score-common, .page-background.desktop-light-style .table__score-common {
        width: 100%;
        padding: 0 1.25em
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-bingo-style .table__col-links .table__underbtntext, .page-background.desktop-light-style-horse .table__col-links .table__underbtntext, .page-background.desktop-light-style .table__col-links .table__underbtntext {
        padding: 0;
        background-color: transparent !important
    }

    .contact .page-background.desktop-bingo-style .table__col-links .wpcf7-submit, .contact .page-background.desktop-light-style-horse .table__col-links .wpcf7-submit, .contact .page-background.desktop-light-style .table__col-links .wpcf7-submit, .page-background.desktop-bingo-style .table__col-links .btn, .page-background.desktop-bingo-style .table__col-links .contact .wpcf7-submit, .page-background.desktop-bingo-style .table__col-links .popup__form .wpcf7-form input[type=submit], .page-background.desktop-light-style-horse .table__col-links .btn, .page-background.desktop-light-style-horse .table__col-links .contact .wpcf7-submit, .page-background.desktop-light-style-horse .table__col-links .popup__form .wpcf7-form input[type=submit], .page-background.desktop-light-style .table__col-links .btn, .page-background.desktop-light-style .table__col-links .contact .wpcf7-submit, .page-background.desktop-light-style .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.desktop-bingo-style .table__col-links input[type=submit], .popup__form .wpcf7-form .page-background.desktop-light-style-horse .table__col-links input[type=submit], .popup__form .wpcf7-form .page-background.desktop-light-style .table__col-links input[type=submit] {
        margin-top: 0;
        font-size: 1.125rem;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-light-style-horse .content {
        background-size: auto
    }

    .page-background.desktop-light-style-horse .hero {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        align-items: center
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .page-background.desktop-light-style-horse .hero {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-light-style-horse .hero__image:not(.hero__image-mobile):not(.hero__video), .page-background.desktop-light-style-horse .hero__video:not(.hero__image-mobile):not(.hero__video) {
        flex-shrink: 0;
        display: block;
        width: auto;
        max-width: 18.75rem
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-light-style-horse .hero__text {
        min-height: unset;
        padding-right: 2.1875rem;
        padding-top: 0
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .page-background.desktop-light-style-horse .hero__text {
        padding-bottom: 0 !important
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-light-style-horse .hero__text .hero__subtitle, .page-background.desktop-light-style-horse .hero__text .hero__title {
        text-align: left
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-light-style-horse .hero__text .hero__list {
        -webkit-box-pack: start;
        justify-content: flex-start;
        margin: 1.75rem 0 .375rem
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .page-background.desktop-light-style-horse .hero__text .hero__list.mobilehidden {
        margin: 0
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .header, .page-background.desktop-casino-02-style .header, .page-background.desktop-casino-03-style .header {
        position: absolute;
        right: 0;
        left: 0
    }

    .page-background.desktop-casino-01-style .header .header__main, .page-background.desktop-casino-02-style .header .header__main, .page-background.desktop-casino-03-style .header .header__main {
        background-color: transparent
    }
}

@media screen and (min-width: 768px) and (min-width: 890px) {
    .page-background.desktop-casino-01-style .hero, .page-background.desktop-casino-02-style .hero, .page-background.desktop-casino-03-style .hero {
        height: 19.0625rem
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .hero__text, .page-background.desktop-casino-02-style .hero__text, .page-background.desktop-casino-03-style .hero__text {
        padding-top: 3.75em
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .footer__disclaimer, .page-background.desktop-casino-01-style .footer__top, .page-background.desktop-casino-01-style .preview .container, .page-background.desktop-casino-01-style .preview .footer__cookie-decline-text, .page-background.desktop-casino-01-style .preview .footer__disclaimer-text, .page-background.desktop-casino-02-style .footer__disclaimer, .page-background.desktop-casino-02-style .footer__top, .page-background.desktop-casino-02-style .preview .container, .page-background.desktop-casino-02-style .preview .footer__cookie-decline-text, .page-background.desktop-casino-02-style .preview .footer__disclaimer-text, .page-background.desktop-casino-03-style .footer__disclaimer, .page-background.desktop-casino-03-style .footer__top, .page-background.desktop-casino-03-style .preview .container, .page-background.desktop-casino-03-style .preview .footer__cookie-decline-text, .page-background.desktop-casino-03-style .preview .footer__disclaimer-text {
        background-color: #fff
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .table__head-links, .page-background.desktop-casino-02-style .table__head-links, .page-background.desktop-casino-03-style .table__head-links {
        color: #bababa
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .table tbody tr, .page-background.desktop-casino-02-style .table tbody tr, .page-background.desktop-casino-03-style .table tbody tr {
        background-color: #fff
    }

    .page-background.desktop-casino-01-style .table tbody tr .table__item-title, .page-background.desktop-casino-02-style .table tbody tr .table__item-title, .page-background.desktop-casino-03-style .table tbody tr .table__item-title {
        background-color: transparent !important;
        border-color: #36393b
    }

    .page-background.desktop-casino-01-style .table tbody tr .table__item-num, .page-background.desktop-casino-02-style .table tbody tr .table__item-num, .page-background.desktop-casino-03-style .table tbody tr .table__item-num {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #151515), to(#4b4b4b));
        background-image: linear-gradient(0deg, #151515 0, #4b4b4b)
    }

    .page-background.desktop-casino-01-style .table tbody tr:first-child, .page-background.desktop-casino-02-style .table tbody tr:first-child, .page-background.desktop-casino-03-style .table tbody tr:first-child {
        border: none;
        box-shadow: inset 0 0 0 1px #e0e0e0, inset 0 0 0 4px #cfffcf
    }

    .page-background.desktop-casino-01-style .table tbody tr:first-child .table__item-title, .page-background.desktop-casino-02-style .table tbody tr:first-child .table__item-title, .page-background.desktop-casino-03-style .table tbody tr:first-child .table__item-title {
        border-color: #dd180a
    }

    .page-background.desktop-casino-01-style .table tbody tr:first-child .table__item-num, .page-background.desktop-casino-02-style .table tbody tr:first-child .table__item-num, .page-background.desktop-casino-03-style .table tbody tr:first-child .table__item-num {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #a50d02), to(#dd180a));
        background-image: linear-gradient(0deg, #a50d02 0, #dd180a)
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .table__item-logo, .page-background.desktop-casino-02-style .table__item-logo, .page-background.desktop-casino-03-style .table__item-logo {
        margin: 0
    }
}

@media screen and (min-width: 768px) {
    .contact .page-background.desktop-casino-01-style .table__col-links .wpcf7-submit, .contact .page-background.desktop-casino-02-style .table__col-links .wpcf7-submit, .contact .page-background.desktop-casino-03-style .table__col-links .wpcf7-submit, .page-background.desktop-casino-01-style .table__col-links .btn, .page-background.desktop-casino-01-style .table__col-links .contact .wpcf7-submit, .page-background.desktop-casino-01-style .table__col-links .popup__form .wpcf7-form input[type=submit], .page-background.desktop-casino-02-style .table__col-links .btn, .page-background.desktop-casino-02-style .table__col-links .contact .wpcf7-submit, .page-background.desktop-casino-02-style .table__col-links .popup__form .wpcf7-form input[type=submit], .page-background.desktop-casino-03-style .table__col-links .btn, .page-background.desktop-casino-03-style .table__col-links .contact .wpcf7-submit, .page-background.desktop-casino-03-style .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.desktop-casino-01-style .table__col-links input[type=submit], .popup__form .wpcf7-form .page-background.desktop-casino-02-style .table__col-links input[type=submit], .popup__form .wpcf7-form .page-background.desktop-casino-03-style .table__col-links input[type=submit] {
        height: 3.25em;
        font-size: 1em
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .table__features-deal-disclaimer, .page-background.desktop-casino-01-style .table__features-deal-main, .page-background.desktop-casino-02-style .table__features-deal-disclaimer, .page-background.desktop-casino-02-style .table__features-deal-main, .page-background.desktop-casino-03-style .table__features-deal-disclaimer, .page-background.desktop-casino-03-style .table__features-deal-main {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .table__features-list, .page-background.desktop-casino-02-style .table__features-list, .page-background.desktop-casino-03-style .table__features-list {
        font-size: .875rem
    }

    .page-background.desktop-casino-01-style .table__features-list svg path, .page-background.desktop-casino-02-style .table__features-list svg path, .page-background.desktop-casino-03-style .table__features-list svg path {
        fill: #dd180a
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .table__features-links, .page-background.desktop-casino-02-style .table__features-links, .page-background.desktop-casino-03-style .table__features-links {
        margin: .625em 0 0;
        text-align: left
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .table__link, .page-background.desktop-casino-02-style .table__link, .page-background.desktop-casino-03-style .table__link {
        font-size: .875rem
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .table__video-link, .page-background.desktop-casino-02-style .table__video-link, .page-background.desktop-casino-03-style .table__video-link {
        margin-right: .3125rem;
        font-size: .875rem;
        color: #dd180a
    }

    .page-background.desktop-casino-01-style .table__video-link:before, .page-background.desktop-casino-02-style .table__video-link:before, .page-background.desktop-casino-03-style .table__video-link:before {
        border-color: #dd180a
    }

    .page-background.desktop-casino-01-style .table__video-link:after, .page-background.desktop-casino-02-style .table__video-link:after, .page-background.desktop-casino-03-style .table__video-link:after {
        top: 50%;
        -webkit-transform: translateY(-40%);
        transform: translateY(-40%);
        border-left-color: #dd180a
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .footer__inner .title_main, .page-background.desktop-casino-01-style .preview__content h2, .page-background.desktop-casino-02-style .footer__inner .title_main, .page-background.desktop-casino-02-style .preview__content h2, .page-background.desktop-casino-03-style .footer__inner .title_main, .page-background.desktop-casino-03-style .preview__content h2 {
        color: #dd180a
    }

    .page-background.desktop-casino-01-style .footer__inner .title_main svg path, .page-background.desktop-casino-01-style .footer__inner .title_main svg polygon, .page-background.desktop-casino-02-style .footer__inner .title_main svg path, .page-background.desktop-casino-02-style .footer__inner .title_main svg polygon, .page-background.desktop-casino-03-style .footer__inner .title_main svg path, .page-background.desktop-casino-03-style .footer__inner .title_main svg polygon {
        fill: #dd180a
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-01-style .header {
        background-color: rgba(25, 25, 25, .62);
        box-shadow: none
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-casino-02-style .header {
        box-shadow: 0 5px 5px rgba(0, 0, 0, .1)
    }

    .page-background.desktop-casino-02-style .header, .page-background.desktop-casino-02-style .table thead tr {
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #011722), to(#32393d));
        background-image: linear-gradient(90deg, #011722 0, #32393d)
    }
}

@media screen and (max-width: 767px) {
    .page-background.mobile-dark-style--casino .header, .page-background.mobile-light-style--casino .header {
        position: absolute;
        right: 0;
        left: 0
    }

    .page-background.mobile-dark-style--casino .hero .hero__text, .page-background.mobile-light-style--casino .hero .hero__text {
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        min-height: 11.875rem;
        padding: 4.375rem 12% 1.25rem;
        font-size: .625rem
    }

    .page-background.mobile-dark-style--casino .hero .hero__text .hero__subtitle, .page-background.mobile-dark-style--casino .hero .hero__text .hero__title, .page-background.mobile-light-style--casino .hero .hero__text .hero__subtitle, .page-background.mobile-light-style--casino .hero .hero__text .hero__title {
        text-align: center
    }

    .page-background.mobile-dark-style--casino .hero .hero__text .hero__title, .page-background.mobile-light-style--casino .hero .hero__text .hero__title {
        line-height: 1.2
    }

    .page-background.mobile-dark-style--casino .table__badge, .page-background.mobile-dark-style--casino .table__video-link, .page-background.mobile-light-style--casino .table__badge, .page-background.mobile-light-style--casino .table__video-link {
        display: none
    }

    .contact .page-background.mobile-dark-style--casino .table__col-links .wpcf7-submit, .contact .page-background.mobile-light-style--casino .table__col-links .wpcf7-submit, .page-background.mobile-dark-style--casino .table__col-links .btn, .page-background.mobile-dark-style--casino .table__col-links .contact .wpcf7-submit, .page-background.mobile-dark-style--casino .table__col-links .popup__form .wpcf7-form input[type=submit], .page-background.mobile-light-style--casino .table__col-links .btn, .page-background.mobile-light-style--casino .table__col-links .contact .wpcf7-submit, .page-background.mobile-light-style--casino .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.mobile-dark-style--casino .table__col-links input[type=submit], .popup__form .wpcf7-form .page-background.mobile-light-style--casino .table__col-links input[type=submit] {
        max-width: 90%
    }

    .page-background.mobile-dark-style--casino .branding, .page-background.mobile-light-style--casino .branding {
        margin: 0
    }

    .page-background.mobile-dark-style--casino .table__info, .page-background.mobile-light-style--casino .table__info {
        font-weight: 600;
        padding: 0
    }

    .page-background.mobile-dark-style--casino .table__underbtntext, .page-background.mobile-light-style--casino .table__underbtntext {
        color: #edb137 !important
    }

    .page-background.mobile-dark-style--casino .table__dynamic-tooltip, .page-background.mobile-dark-style--casino .table__dynamic-tooltip:after, .page-background.mobile-light-style--casino .table__dynamic-tooltip, .page-background.mobile-light-style--casino .table__dynamic-tooltip:after {
        background-color: #edb137
    }

    .page-background.mobile-dark-style--casino .footer__inner .title_main, .page-background.mobile-dark-style--casino .preview__content h2, .page-background.mobile-light-style--casino .footer__inner .title_main, .page-background.mobile-light-style--casino .preview__content h2 {
        color: #dd180a
    }

    .page-background.mobile-dark-style--casino .footer__inner .title_main svg path, .page-background.mobile-dark-style--casino .footer__inner .title_main svg polygon, .page-background.mobile-light-style--casino .footer__inner .title_main svg path, .page-background.mobile-light-style--casino .footer__inner .title_main svg polygon {
        fill: #dd180a
    }

    .page-background.mobile-light-style--casino .footer__disclaimer, .page-background.mobile-light-style--casino .footer__top, .page-background.mobile-light-style--casino .header .header__main, .page-background.mobile-light-style--casino .preview, .page-background.mobile-light-style--casino .preview .container, .page-background.mobile-light-style--casino .preview .footer__cookie-decline-text, .page-background.mobile-light-style--casino .preview .footer__disclaimer-text {
        background-color: #fff
    }

    .contact .page-background.mobile-light-style--casino .table__col-links .wpcf7-submit, .page-background.mobile-light-style--casino .table__col-links .btn, .page-background.mobile-light-style--casino .table__col-links .contact .wpcf7-submit, .page-background.mobile-light-style--casino .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.mobile-light-style--casino .table__col-links input[type=submit] {
        background-color: #1fb71d
    }

    .page-background.mobile-dark-style--casino .header {
        background-color: rgba(25, 25, 25, .62);
        box-shadow: none
    }

    .page-background.mobile-dark-style--casino .header .header__main {
        background-color: transparent
    }

    .page-background.mobile-dark-style--casino .footer__disclaimer, .page-background.mobile-dark-style--casino .footer__top, .page-background.mobile-dark-style--casino .header .hamburger__btn, .page-background.mobile-dark-style--casino .header .hamburger__btn:after, .page-background.mobile-dark-style--casino .header .hamburger__btn:before, .page-background.mobile-dark-style--casino .preview, .page-background.mobile-dark-style--casino .preview .container, .page-background.mobile-dark-style--casino .preview .footer__cookie-decline-text, .page-background.mobile-dark-style--casino .preview .footer__disclaimer-text, .page-background.mobile-dark-style--casino .preview__content {
        background-color: #fff
    }

    .page-background.mobile-dark-style--casino .hero .hero__text {
        margin-bottom: 0
    }

    .page-background.mobile-dark-style--casino .table {
        background-color: #000
    }

    .page-background.mobile-dark-style--casino .table tr, .page-background.mobile-dark-style--casino .table tr:first-child {
        border-color: #333
    }

    .page-background.mobile-dark-style--casino .table tr .table__col--wrap:first-of-type, .page-background.mobile-dark-style--casino .table tr:first-child .table__col--wrap:first-of-type {
        background-color: #5a5a5a
    }

    .page-background.mobile-dark-style--casino .table tr .table__col--wrap:first-of-type .table__score-title, .page-background.mobile-dark-style--casino .table tr:first-child .table__col--wrap:first-of-type .table__score-title {
        color: #fff
    }

    .page-background.mobile-dark-style--casino .table tr .table__col--wrap:last-of-type, .page-background.mobile-dark-style--casino .table tr:first-child .table__col--wrap:last-of-type {
        background-color: #000
    }

    .page-background.mobile-dark-style--casino .table tr .table__col--wrap:last-of-type .table__features-deal-main, .page-background.mobile-dark-style--casino .table tr:first-child .table__col--wrap:last-of-type .table__features-deal-main {
        color: #fff
    }

    .contact .page-background.mobile-dark-style--casino .table__col-links .wpcf7-submit, .page-background.mobile-dark-style--casino .table__col-links .btn, .page-background.mobile-dark-style--casino .table__col-links .contact .wpcf7-submit, .page-background.mobile-dark-style--casino .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.mobile-dark-style--casino .table__col-links input[type=submit] {
        background-image: -webkit-gradient(linear, right top, left top, from(#fc0), to(#ff9c00));
        background-image: linear-gradient(270deg, #fc0 0, #ff9c00);
        color: #000
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .container, .page-background.desktop-meal-fb-style .footer__cookie-decline-text, .page-background.desktop-meal-fb-style .footer__disclaimer-text, .page-background.desktop-meal-fb-style .preview .container {
        max-width: 74.375em
    }

    .page-background.desktop-meal-fb-style .hero {
        height: auto;
        min-height: 11.125em;
        padding: 0 .3125em
    }

    .page-background.desktop-meal-fb-style .hero__image, .page-background.desktop-meal-fb-style .hero__video {
        position: absolute;
        right: 0;
        height: calc(100% + 3.75rem);
        top: -3.75rem;
        margin-top: 0;
        width: auto;
        max-width: 40%
    }
}

@media screen and (min-width: 768px) and (min-width: 1024px) {
    .page-background.desktop-meal-fb-style .hero__image, .page-background.desktop-meal-fb-style .hero__video {
        display: block
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .hero__image img, .page-background.desktop-meal-fb-style .hero__video img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: cover; object-position: center"
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .hero__text {
        padding: .625em 0
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .page-background.desktop-meal-fb-style .hero__text {
        width: 100%;
        padding: 1.875em 0
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .hero__title {
        margin: 0;
        padding-bottom: .5rem;
        font-size: 2.625rem;
        line-height: 1.2
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .page-background.desktop-meal-fb-style .hero__title {
        text-align: center
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .hero__subtitle {
        padding-bottom: .75rem;
        font-size: 1.125rem;
        font-family: Roboto Light, Arial, sans-serif;
        font-weight: 300;
        line-height: 1.5
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .page-background.desktop-meal-fb-style .hero__subtitle {
        text-align: center
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .hero-h4 span, .page-background.desktop-meal-fb-style .hero-h4 strong, .page-background.desktop-meal-fb-style .hero__subtitle span, .page-background.desktop-meal-fb-style .hero__subtitle strong {
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .hero__list {
        display: block;
        margin-top: .3125em;
        margin-bottom: 1.5625em;
        padding-left: .4375em
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .hero__item {
        margin: 0;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center
    }

    .page-background.desktop-meal-fb-style .hero__item svg {
        height: auto
    }

    .page-background.desktop-meal-fb-style .hero__item.hero__list--sm {
        font-size: .9375em
    }

    .page-background.desktop-meal-fb-style .hero__item.hero__list--sm svg {
        width: .9333333333em
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .table {
        font-size: 1rem
    }

    .contact .page-background.desktop-meal-fb-style .table tr .wpcf7-submit, .page-background.desktop-meal-fb-style .table tr .btn, .page-background.desktop-meal-fb-style .table tr .contact .wpcf7-submit, .page-background.desktop-meal-fb-style .table tr .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.desktop-meal-fb-style .table tr input[type=submit] {
        -webkit-transform: none;
        transform: none;
        font-size: 1em
    }

    .contact .page-background.desktop-meal-fb-style .table tr:hover .wpcf7-submit, .page-background.desktop-meal-fb-style .table tr:hover .btn, .page-background.desktop-meal-fb-style .table tr:hover .contact .wpcf7-submit, .page-background.desktop-meal-fb-style .table tr:hover .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .page-background.desktop-meal-fb-style .table tr:hover input[type=submit] {
        -webkit-transform: scale(1.08);
        transform: scale(1.08)
    }
}

@media screen and (min-width: 768px) {
    .page-background.desktop-meal-fb-style .preview {
        padding-top: 1.9375em;
        background-color: #eee
    }

    .page-background.desktop-meal-fb-style .preview .container, .page-background.desktop-meal-fb-style .preview .footer__cookie-decline-text, .page-background.desktop-meal-fb-style .preview .footer__disclaimer-text {
        padding: 0 .625em
    }
}

@media screen and (min-width: 768px) {
    .desktop-meal-fb-style-new .hero__container {
        margin-bottom: 5rem
    }

    .desktop-meal-fb-style-new .hero__container .hero .hero__text.hero__text--center .hero__title, .desktop-meal-fb-style-new .hero__container .hero__title {
        padding: 1rem 0 0;
        font-size: 2.5rem;
        letter-spacing: -.2px
    }

    .desktop-meal-fb-style-new .hero__container .hero .hero__text.hero__text--center .hero__subtitle, .desktop-meal-fb-style-new .hero__container .hero__subtitle {
        padding: 0;
        font-size: 1.375rem;
        line-height: 1.4
    }

    .desktop-meal-fb-style-new .hero__container .hero .hero__text.hero__text--center .hero__list, .desktop-meal-fb-style-new .hero__container .hero__list {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: start;
        justify-content: flex-start;
        width: 60%;
        margin: 1.75rem 0 1.875rem;
        padding: 0
    }

    .desktop-meal-fb-style-new .hero__image:after, .desktop-meal-fb-style-new .hero__image:before, .desktop-meal-fb-style-new .hero__video:after, .desktop-meal-fb-style-new .hero__video:before {
        display: none
    }

    .desktop-meal-fb-style-new .hero__item {
        flex-basis: 47%;
        margin-bottom: .5rem;
        padding-right: .625rem;
        font-size: 1rem;
        font-family: Roboto Light, Arial, sans-serif
    }

    .desktop-meal-fb-style-new .hero__item i img {
        max-width: 60%
    }

    .desktop-meal-fb-style-new .best-offers {
        margin-bottom: 5.875rem
    }

    .desktop-meal-fb-style-new .best-offers .container, .desktop-meal-fb-style-new .best-offers .footer__cookie-decline-text, .desktop-meal-fb-style-new .best-offers .footer__disclaimer-text {
        max-width: 1188px
    }

    .desktop-meal-fb-style-new .best-offers-list-wrap {
        width: 32.8%;
        padding: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
        border-radius: 12px
    }

    .desktop-meal-fb-style-new .best-offers-list-wrap:first-child {
        padding-right: .25rem;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .desktop-meal-fb-style-new .best-offers-list-wrap:nth-child(3) {
        padding-left: .25rem;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .desktop-meal-fb-style-new .best-offers-list-wrap:nth-child(2) {
        z-index: 1;
        width: 34.4%;
        margin: -2.5rem 0 -2.25rem
    }

    .desktop-meal-fb-style-new .best-offers-list-wrap:nth-child(2) .best-offers-item {
        padding-left: 1.875rem;
        padding-right: 1.875rem
    }

    .desktop-meal-fb-style-new .best-offers-list-wrap:nth-child(2) .table__item-title {
        height: 5.9375rem;
        margin-bottom: 1.125rem
    }

    .desktop-meal-fb-style-new .best-offers-list-wrap:nth-child(2) .table__item-logo {
        height: 100%
    }

    .desktop-meal-fb-style-new .best-offers-list-wrap:nth-child(2) .best-offers-button {
        -webkit-box-ordinal-group: 5;
        order: 4
    }

    .desktop-meal-fb-style-new .best-offers-list-wrap:nth-child(2) .table__link {
        margin-bottom: 1.625rem
    }

    .desktop-meal-fb-style-new .best-offers-item {
        padding-top: 1.625rem;
        border: 0;
        box-shadow: none
    }

    .desktop-meal-fb-style-new .best-offers-item .table__item-title {
        width: 15.125rem;
        margin: 0 auto 1.25rem;
        border-radius: 0
    }

    .desktop-meal-fb-style-new .best-offers-item .table__item-logo {
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center"
    }

    .desktop-meal-fb-style-new .best-offers-item .table__badge {
        width: 9.875rem;
        height: 9.875rem;
        left: auto;
        right: 0;
        -webkit-transform: translate(50%, -50%) rotate(45deg);
        transform: translate(50%, -50%) rotate(45deg);
        background: #d70038;
        padding-bottom: 0
    }

    .desktop-meal-fb-style-new .best-offers-item .table__badge .table__badge-custom {
        padding-left: .625rem;
        padding-right: .625rem;
        font-size: .875rem;
        background: transparent
    }

    .desktop-meal-fb-style-new .best-offers-item .table__badge .table__badge-custom b {
        display: block;
        font-family: Roboto Light, Arial, sans-serif;
        font-size: 1.25rem
    }

    .desktop-meal-fb-style-new .best-offers-item .table__score {
        position: relative;
        z-index: 1;
        max-width: 13.75rem;
        margin: 0 auto
    }

    .desktop-meal-fb-style-new .best-offers-item .table__score:after {
        content: "";
        z-index: -1;
        position: absolute;
        top: 1.625rem;
        right: 0;
        left: 0;
        height: 1.875rem;
        background-color: #b3ffcd
    }

    .desktop-meal-fb-style-new .best-offers-item .table__score-title {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        width: 4.875rem;
        height: 4.875rem;
        margin: 0 auto .5rem;
        font-size: 2rem;
        font-family: Roboto Regular, Arial, sans-serif;
        background-color: #11b148;
        border-radius: 50%;
        color: #fff !important;
        -webkit-font-smoothing: antialiased;
        box-shadow: inset 0 0 0 5px #11b148, inset 0 0 0 6px hsla(0, 0%, 100%, .49)
    }

    .desktop-meal-fb-style-new .best-offers-item .table__score-title:after, .desktop-meal-fb-style-new .best-offers-item .table__score-title:before {
        content: "";
        position: absolute;
        top: 1.625rem
    }

    .desktop-meal-fb-style-new .best-offers-item .table__score-title:after {
        right: 0;
        display: inline-block;
        height: 0;
        width: 0;
        -webkit-transform: rotate(1turn);
        border-color: transparent #fff transparent transparent;
        border-style: solid;
        border-width: .9375rem .75rem .9375rem 0
    }

    .desktop-meal-fb-style-new .best-offers-item .table__score-title:before {
        left: 0;
        display: inline-block;
        height: 0;
        width: 0;
        -webkit-transform: rotate(1turn);
        border-color: transparent transparent transparent #fff;
        border-style: solid;
        border-width: .9375rem 0 .9375rem .75rem
    }

    .desktop-meal-fb-style-new .best-offers-item .best-offers-rate {
        margin-bottom: .0625rem
    }

    .desktop-meal-fb-style-new .best-offers-item .table__features-list .table__features-item {
        padding-left: 1.375rem;
        margin-bottom: .3125rem;
        color: #202527
    }

    .desktop-meal-fb-style-new .best-offers-item .table__features-list .table__features-item:first-child {
        padding-left: 0;
        margin-bottom: .625rem;
        font-size: 1rem;
        font-family: Roboto Medium, Arial, sans-serif
    }

    .desktop-meal-fb-style-new .best-offers-item .table__features-list .table__features-item:first-child:before {
        display: none
    }

    .desktop-meal-fb-style-new .best-offers-item .table__features-list .table__features-item:before {
        top: .3125rem;
        width: .9375rem;
        height: .6875rem;
        background-image: url(icon-check-meal-au.svg)
    }

    .desktop-meal-fb-style-new .best-offers-item .best-offers-info {
        margin: 0
    }

    .desktop-meal-fb-style-new .best-offers-item .table__link {
        margin: .25rem 0 .625rem;
        font-size: .8125rem;
        font-family: Roboto Light, Arial, sans-serif
    }

    .desktop-meal-fb-style-new .best-offers-item .table__info {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 1rem;
        font-family: Roboto Medium, Arial, sans-serif;
        line-height: 1.2;
        text-transform: none;
        color: #11b148
    }

    .desktop-meal-fb-style-new .best-offers-item .best-offers-button {
        width: 100%;
        margin-top: .875rem
    }

    .contact .desktop-meal-fb-style-new .best-offers-item .best-offers-button .wpcf7-submit, .desktop-meal-fb-style-new .best-offers-item .best-offers-button .btn, .desktop-meal-fb-style-new .best-offers-item .best-offers-button .contact .wpcf7-submit, .desktop-meal-fb-style-new .best-offers-item .best-offers-button .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-meal-fb-style-new .best-offers-item .best-offers-button input[type=submit] {
        font-size: 1.125rem;
        font-family: Roboto Bold, Arial, sans-serif;
        text-transform: uppercase;
        border-radius: 3px;
        background: #11b148
    }

    .contact .desktop-meal-fb-style-new .best-offers-item .best-offers-button .wpcf7-submit:after, .desktop-meal-fb-style-new .best-offers-item .best-offers-button .btn:after, .desktop-meal-fb-style-new .best-offers-item .best-offers-button .contact .wpcf7-submit:after, .desktop-meal-fb-style-new .best-offers-item .best-offers-button .popup__form .wpcf7-form input[type=submit]:after, .popup__form .wpcf7-form .desktop-meal-fb-style-new .best-offers-item .best-offers-button input[type=submit]:after {
        display: none
    }

    .desktop-meal-fb-style-new .best-offers-item .rate, .desktop-meal-fb-style-new .best-offers-item .rate span {
        background-image: url(stars-sharp-orange.svg)
    }
}

.desktop-meal-v2 {
    font-family: Poppins Regular, Arial, sans-serif
}

.desktop-meal-v2 .footer__top {
    border-top: 1px solid #ddd;
    background-color: transparent
}

.desktop-meal-v2 .container, .desktop-meal-v2 .footer__cookie-decline-text, .desktop-meal-v2 .footer__disclaimer-text {
    max-width: 76rem !important;
    background-color: transparent !important
}

.desktop-meal-v2 .content {
    background-position: 100% 0
}

.desktop-meal-v2 .header {
    background-color: #fff
}

.desktop-meal-v2 .header .nav {
    font-family: Poppins Regular, Arial, sans-serif
}

.desktop-meal-v2 .header .nav .menu-item {
    padding-left: 1.875rem;
    color: #36393b
}

@media screen and (max-width: 1023px) {
    .desktop-meal-v2 .header .nav .menu-item {
        padding-left: .625rem
    }
}

.desktop-meal-v2 .header .nav .menu-item:after {
    display: none
}

.desktop-meal-v2 .header__inner {
    background-color: #fff;
    padding-bottom: 0
}

.desktop-meal-v2 .hero__text {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    max-width: unset;
    padding: 1.875rem 0 0
}

.desktop-meal-v2 .hero__title {
    margin: 0;
    font-size: 2.25rem;
    font-family: Poppins Medium, Arial, sans-serif
}

.desktop-meal-v2 .hero__subtitle {
    margin: 0;
    font-size: 1.5rem;
    font-family: Poppins Light, Arial, sans-serif
}

.desktop-meal-v2 .hero__menu .menu {
    list-style-type: none;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
    overflow-y: auto
}

.desktop-meal-v2 .hero__menu .menu .menu-item {
    margin-right: .25rem
}

.desktop-meal-v2 .hero__menu .menu .menu-item a {
    display: block;
    padding: .3125rem 1.0625rem;
    font-size: .875rem;
    line-height: 1.15;
    color: #f57714;
    background-color: #fff;
    border: 1px solid #e2e0e8;
    border-radius: 1.875rem;
    text-decoration: none;
    white-space: nowrap
}

.desktop-meal-v2 .hero__menu .menu .menu-item.current-menu-item a, .desktop-meal-v2 .hero__menu .menu .menu-item a:hover {
    color: #fff;
    background-color: #f57714;
    border-color: #f57714
}

.desktop-meal-v2 .hero__update {
    font-size: .875rem;
    font-family: Poppins Light, Arial, sans-serif
}

.desktop-meal-v2 .hero__update-option {
    font-family: inherit
}

.desktop-meal-v2 .table {
    display: table;
    width: 100%;
    max-width: unset;
    background: transparent;
    box-shadow: none
}

.desktop-meal-v2 .table thead {
    display: table-header-group
}

.desktop-meal-v2 .table thead tr {
    height: auto;
    padding: 0;
    border: 0;
    background-color: transparent
}

.desktop-meal-v2 .table .table__score-desc, .desktop-meal-v2 .table thead th:not(.table__head-links) {
    display: none
}

.desktop-meal-v2 .table__head-links {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    align-items: flex-end;
    padding: 0
}

.desktop-meal-v2 .table__head-links .tooltip {
    margin-bottom: 1.25rem;
    font-size: .875rem;
    font-family: Poppins Regular, Arial, sans-serif;
    text-decoration: underline;
    color: #fff;
    cursor: pointer
}

.desktop-meal-v2 .table_loaded tbody tr:first-child, .desktop-meal-v2 .table tbody tr {
    border: none;
    background-color: #fff;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, .16)
}

.desktop-meal-v2 .table tbody tr {
    display: -webkit-box;
    display: flex;
    position: relative;
    min-height: 12.25rem;
    margin-bottom: 1.25rem
}

.desktop-meal-v2 .table tbody tr:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 0;
    width: 0;
    -webkit-transform: rotate(1turn);
    border-color: #f57714 transparent transparent #f57714;
    border-style: solid;
    border-width: 2.0625rem
}

.desktop-meal-v2 .table tbody tr td {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center
}

.desktop-meal-v2 .table__item-num, .desktop-meal-v2 .table tbody tr:first-child .table__item-num, .desktop-meal-v2 .table tbody tr:hover .table__item-num {
    background: transparent
}

.desktop-meal-v2 .table__item-num {
    position: absolute;
    top: 0;
    left: 0;
    padding: .125rem 1rem;
    font-size: 1.375rem;
    font-family: Poppins Regular, Arial, sans-serif;
    text-shadow: none
}

.desktop-meal-v2 .table__item-title {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    height: auto;
    width: auto;
    max-width: 12.5rem;
    margin: 0 auto;
    border: 0;
    border-radius: 0
}

.desktop-meal-v2 .table__item-logo {
    margin: 0;
    height: auto;
    width: 100%;
    max-width: 100%
}

.contact .desktop-meal-v2 .table__col-links .wpcf7-submit, .desktop-meal-v2 .table__col-links .btn, .desktop-meal-v2 .table__col-links .contact .wpcf7-submit, .desktop-meal-v2 .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-meal-v2 .table__col-links input[type=submit] {
    max-width: 17.875rem;
    font-size: 1rem;
    font-family: Poppins Medium, Arial, sans-serif
}

.desktop-meal-v2 .table__features-list {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.desktop-meal-v2 .table__features-item {
    position: relative;
    padding-left: 1.4375rem;
    margin-bottom: .4375rem;
    font-size: .875rem;
    line-height: 1.3
}

.desktop-meal-v2 .table__features-item img, .desktop-meal-v2 .table__features-item svg {
    position: absolute;
    top: .1875rem;
    left: 0
}

.desktop-meal-v2 .table__features-item img path, .desktop-meal-v2 .table__features-item svg path {
    fill: #11b148
}

.desktop-meal-v2 .table__features-item:first-child {
    font-family: Poppins Semibold, Arial, sans-serif;
    padding-left: 0
}

@media screen and (min-width: 1024px) {
    .desktop-meal-v2 .table__features-item:first-child {
        margin-bottom: .625rem;
        font-size: 1rem
    }
}

.desktop-meal-v2 .table__features-item:first-child img, .desktop-meal-v2 .table__features-item:first-child svg {
    display: none
}

.desktop-meal-v2 .table__link {
    font-size: .875rem;
    color: #acacac
}

.desktop-meal-v2 .table__score {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    text-align: center
}

.desktop-meal-v2 .table__score-title {
    margin: 0 0 .625rem;
    font-size: 3rem;
    font-family: Poppins Light, Arial, sans-serif;
    line-height: 1
}

.desktop-meal-v2 .table__info {
    padding: 0;
    font-size: .875rem;
    font-family: Poppins Regular, Arial, sans-serif;
    border: 0;
    text-transform: none;
    background-color: transparent
}

.desktop-meal-v2 .rate, .desktop-meal-v2 .rate span {
    background-image: url(stars-sharp-orange.svg)
}

.desktop-meal-v2 .table__score-desc {
    font-size: .875rem
}

.desktop-meal-v2 .tooltipster-content {
    font-size: .75rem
}

.desktop-meal-v2 .pretable__tooltip-wrap {
    display: none
}

.desktop-meal-v2 .preview__content h1, .desktop-meal-v2 .preview__content h2, .desktop-meal-v2 .preview__content h3, .desktop-meal-v2 .preview__content h4, .desktop-meal-v2 .preview__content h5, .desktop-meal-v2 .preview__content h6, .desktop-meal-v2 .title, .desktop-meal-v2 .widget__author-name, .desktop-meal-v2 .widget__title {
    font-family: Poppins Medium, Arial, sans-serif
}

.desktop-meal-v2 .title {
    font-family: Poppins Semibold, Arial, sans-serif
}

@media screen and (min-width: 768px) {
    .desktop-meal-v2 .hero__container .hero {
        height: 12.5rem
    }

    .desktop-meal-v2 .hero__text {
        -webkit-box-pack: center;
        justify-content: center
    }

    .desktop-meal-v2 .hero__update {
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0 0 1.25rem
    }

    .desktop-meal-v2 .table__col-title {
        width: 24.5%;
        padding: 0 .625rem 0 3.4375rem
    }

    .desktop-meal-v2 .table__col-features {
        width: 32.5%;
        padding: 1.6875rem 0 1.25rem
    }

    .desktop-meal-v2 .table__features {
        padding: 0 0 0 1.6875rem;
        margin: 0
    }

    .desktop-meal-v2 .table__features-links {
        margin-left: 0
    }

    .desktop-meal-v2 .table__col-score {
        width: 24%;
        padding: 1.25rem 0 .625rem 4%;
        margin: 0 !important
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .desktop-meal-v2 .table__col-score {
        padding: .625rem !important
    }
}

@media screen and (min-width: 768px) {
    .desktop-meal-v2 .table tbody tr .table__col-links {
        width: 19%;
        padding: 1.4375rem
    }

    .contact .desktop-meal-v2 .table tbody tr .table__col-links .wpcf7-submit, .desktop-meal-v2 .table tbody tr .table__col-links .btn, .desktop-meal-v2 .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-meal-v2 .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-meal-v2 .table tbody tr .table__col-links input[type=submit] {
        height: 3.125rem;
        margin: 0;
        padding: 0 .3125rem;
        font-size: 1.125rem
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .desktop-meal-v2 .table tbody tr .table__col-links {
        padding: .625rem
    }
}

@media screen and (min-width: 768px) {
    .desktop-meal-v2 .rate {
        margin-bottom: .9375rem;
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}

@media screen and (max-width: 1023px) {
    .desktop-meal-v2 .hero__menu {
        padding-right: 0
    }

    .desktop-meal-v2 .hamburger:not(.hamburger_opened) .hamburger__btn, .desktop-meal-v2 .hamburger__btn:after, .desktop-meal-v2 .hamburger__btn:before {
        background-color: #000
    }
}

@media screen and (max-width: 767px) {
    .desktop-meal-v2 .container, .desktop-meal-v2 .footer__cookie-decline-text, .desktop-meal-v2 .footer__disclaimer-text {
        padding-left: .375rem;
        padding-right: .375rem
    }

    .desktop-meal-v2 .content {
        background-size: auto
    }

    .desktop-meal-v2 .header .header__main {
        height: 2.875rem
    }

    .desktop-meal-v2 .branding {
        max-width: 13.75rem;
        margin-left: 0
    }

    .desktop-meal-v2 .hamburger {
        margin-right: 0
    }

    .desktop-meal-v2 .hero__container .hero .hero__text {
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        min-height: 7.6875rem;
        padding-top: .625rem;
        padding-bottom: .875rem
    }

    .desktop-meal-v2 .hero__container {
        padding: 0 .625rem
    }

    .desktop-meal-v2 .hero__container + .container, .desktop-meal-v2 .hero__container + .footer__cookie-decline-text, .desktop-meal-v2 .hero__container + .footer__disclaimer-text {
        padding: 0
    }

    .desktop-meal-v2 .hero__title {
        max-width: 16.25rem;
        margin-bottom: .3125rem;
        font-family: Poppins Regular, Arial, sans-serif;
        font-size: 1.25rem;
        text-align: center
    }

    .desktop-meal-v2 .hero__subtitle {
        max-width: 12.5rem;
        font-size: .875rem;
        text-align: center
    }

    .desktop-meal-v2 .hero__update {
        -webkit-box-ordinal-group: 4;
        order: 3;
        margin: 1.5rem 0 0;
        font-size: .75rem;
        text-align: center
    }

    .desktop-meal-v2 .table__head-links {
        display: block;
        margin: 0
    }

    .desktop-meal-v2 .table__head-links .tooltip {
        margin: 0;
        font-size: .75rem;
        color: #000
    }

    .desktop-meal-v2 .table {
        display: block;
        padding: 0 .5rem;
        background-color: #fff
    }

    .desktop-meal-v2 .table thead {
        display: block
    }

    .desktop-meal-v2 .table thead tr {
        opacity: 1;
        display: block;
        padding: .5rem 0
    }

    .desktop-meal-v2 .table tbody tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        margin-bottom: .875rem;
        padding: .75rem .6875rem .875rem
    }

    .desktop-meal-v2 .table tbody tr:before {
        display: inline-block;
        height: 0;
        width: 0;
        -webkit-transform: rotate(1turn);
        border-color: #f57714 transparent transparent #f57714;
        border-style: solid;
        border-width: 1.1875rem
    }

    .desktop-meal-v2 .table tbody tr td {
        width: auto !important
    }

    .desktop-meal-v2 .table tbody tr .table__col--wrap {
        display: -webkit-box;
        display: flex;
        width: 100%;
        max-width: 18.75rem;
        margin: 0 auto
    }

    .desktop-meal-v2 .table tbody tr .table__col--wrap:first-of-type {
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        padding: 0 1.25rem;
        margin-bottom: .8125rem;
        background-color: transparent
    }

    .desktop-meal-v2 .table tbody tr .table__col--wrap:last-of-type {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .desktop-meal-v2 .table__item-num {
        left: 0 !important;
        -webkit-transform: none;
        transform: none;
        width: 1.5625rem !important;
        height: auto !important;
        padding: .125rem .0625rem;
        font-size: .875rem !important
    }

    .desktop-meal-v2 .table__item-title {
        -webkit-box-pack: start;
        justify-content: flex-start;
        position: static;
        margin: 0 !important;
        height: auto !important;
        max-width: 7.75rem
    }

    .desktop-meal-v2 .table__item-logo {
        max-width: 8.75rem;
        width: 100%
    }

    .desktop-meal-v2 .table__features-item, .desktop-meal-v2 .table__features-links {
        display: none
    }

    .desktop-meal-v2 .table__features-item:first-child {
        display: block;
        margin: 0 auto .75rem;
        max-width: 17.8125rem;
        font-family: Poppins Regular, Arial, sans-serif;
        font-size: .8125rem !important;
        text-align: center
    }

    .desktop-meal-v2 .table__score-title {
        margin-bottom: .25rem;
        font-size: 2rem !important;
        font-family: Poppins Light, Arial, sans-serif
    }

    .desktop-meal-v2 .table__col-title {
        position: static;
        padding: 0 !important
    }

    .desktop-meal-v2 .table__col-score, .desktop-meal-v2 .table__score {
        padding: 0 !important;
        margin: 0 !important
    }

    .contact .desktop-meal-v2 .table__col-links .wpcf7-submit, .desktop-meal-v2 .table__col-links .btn, .desktop-meal-v2 .table__col-links .contact .wpcf7-submit, .desktop-meal-v2 .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-meal-v2 .table__col-links input[type=submit] {
        height: 2.625rem;
        margin-bottom: .625rem
    }

    .desktop-meal-v2 .table__info {
        font-size: .75rem;
        text-align: center
    }
}

@media screen and (max-width: 767px) {
    .hero--meal-keto-additional-mobile .hero__text {
        padding-top: .625rem !important;
        padding-bottom: .8125rem !important
    }

    .hero--meal-keto-additional-mobile .hero__text .hero__title {
        max-width: 11.25rem !important
    }

    .hero--meal-keto-additional-mobile .hero__text .hero__subtitle {
        max-width: 17.5rem !important;
        font-size: .9375rem !important
    }

    .table-meal-keto-additional-mobile .table__badge, .table-meal-keto-additional-mobile .table__features {
        display: none
    }

    .table-meal-keto-additional-mobile .table__col-links.table__col-links.table__col-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
        padding-bottom: 0
    }

    .table-meal-keto-additional-mobile .table__col-links.table__col-links.table__col-links .table__info {
        display: -webkit-inline-box;
        display: inline-flex;
        flex-wrap: wrap;
        margin: 0 0 1rem;
        padding: 0;
        border: 0;
        font-size: 1rem;
        text-transform: lowercase;
        font-family: Roboto Regular, Arial, sans-serif;
        color: #6d6d6d
    }

    .table-meal-keto-additional-mobile .table__col-links.table__col-links.table__col-links .table__info span {
        width: 100%;
        font-size: 1.25rem;
        font-family: Roboto Medium, Arial, sans-serif
    }

    .table-meal-keto-additional-mobile .table__col-links.table__col-links.table__col-links .table__info span:first-letter {
        text-transform: capitalize
    }
}

@media screen and (min-width: 768px) {
    .desktop-car-site .hero__image:after, .desktop-car-site .hero__image:before, .desktop-car-site .hero__video:after, .desktop-car-site .hero__video:before {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .contact .mobile-car-site .table tbody td:last-child .wpcf7-submit, .mobile-car-site .table tbody td:last-child .btn, .mobile-car-site .table tbody td:last-child .contact .wpcf7-submit, .mobile-car-site .table tbody td:last-child .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-car-site .table tbody td:last-child input[type=submit] {
        width: auto;
        padding: .3125rem 1.875rem;
        height: 2.625rem
    }

    .mobile-car-site .table__badge-custom span {
        font-size: .9375em
    }

    .mobile-car-site .hero__image-mobile:after, .mobile-car-site .hero__image-mobile:before, .mobile-car-site .hero__video:after, .mobile-car-site .hero__video:before {
        display: none
    }

    .mobile-car-site .table__underbtntext-link {
        font-size: 1.5rem
    }

    .mobile-car-site .table__features-item {
        text-align: center
    }
}

@media screen and (min-width: 768px) {
    .desktop-pass-site .header {
        box-shadow: none
    }

    .desktop-pass-site .footer__top-geo {
        display: none
    }

    .desktop-pass-site .footer__top {
        background-color: #fff
    }

    .desktop-pass-site .footer__copyright {
        margin: 0 auto
    }

    .desktop-pass-site .footer__content .title {
        font-family: Roboto Regular, Arial, sans-serif;
        font-weight: 800;
        color: #3567ce
    }

    .desktop-pass-site .hero {
        height: auto
    }

    .desktop-pass-site .hero__text {
        width: 100%;
        padding: .5rem 0 0
    }

    .desktop-pass-site .hero__subtitle, .desktop-pass-site .hero__title {
        text-align: center
    }

    .desktop-pass-site .hero__list {
        max-width: 56.875rem;
        margin: 1.75rem auto
    }

    .desktop-pass-site .hero__list .hero__item {
        width: 50%;
        margin-right: 0
    }

    .desktop-pass-site .hero__list .hero__item i {
        background-color: transparent;
        width: auto;
        height: auto;
        margin-right: .5625rem
    }

    .desktop-pass-site .hero__list .hero__item:last-child {
        width: 100%;
        -webkit-box-pack: center;
        justify-content: center
    }

    .desktop-pass-site .table__score-title {
        font-size: 3.75rem;
        color: #9b9b9b
    }

    .desktop-pass-site .preview .container, .desktop-pass-site .preview .footer__cookie-decline-text, .desktop-pass-site .preview .footer__disclaimer-text {
        max-width: 75rem !important;
        background-color: transparent !important
    }

    .desktop-pass-site .preview .container .widget__authors, .desktop-pass-site .preview .footer__cookie-decline-text .widget__authors, .desktop-pass-site .preview .footer__disclaimer-text .widget__authors {
        border: 0
    }

    .desktop-pass-site .point-vertical.bgc .point {
        padding-top: 0
    }

    .desktop-pass-site .point-vertical.bgc .point__image {
        margin-bottom: 1.125rem;
        border-radius: 0
    }

    .desktop-pass-site .point-vertical.bgc .point__title {
        font-family: Roboto Regular, Arial, sans-serif;
        font-size: .875rem;
        font-weight: 800
    }

    .desktop-pass-site .point-vertical.bgc .point__text {
        font-family: Roboto Light, Arial, sans-serif;
        font-size: .875rem
    }

    .mobile-pass-site .table__badge-extra {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .hero.hero--mobile-title-bottom {
        min-height: unset;
        padding: 0;
        margin-bottom: .75rem
    }

    .hero.hero--mobile-title-bottom .hero__text.hero__text.hero__text.hero__text.hero__text {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: .3125em .25em .875em;
        margin: 0;
        background-color: rgba(33, 39, 63, .6);
        background-image: none;
        color: #fff
    }

    .hero__container .hero.hero--mobile-title-bottom .hero__image.hero__image-mobile, .hero__container .hero.hero--mobile-title-bottom .hero__video, .mobile-pass-site .hero__image.hero__image-mobile, .mobile-pass-site .hero__video {
        position: static;
        min-height: unset;
        padding: 0
    }

    .hero__container .hero.hero--mobile-title-bottom .hero__image.hero__image-mobile img, .hero__container .hero.hero--mobile-title-bottom .hero__video img, .mobile-pass-site .hero__image.hero__image-mobile img, .mobile-pass-site .hero__video img {
        min-height: unset;
        width: 100%
    }

    .hero__container .hero.hero--mobile-title-bottom .hero__image.hero__image-mobile:after, .hero__container .hero.hero--mobile-title-bottom .hero__image.hero__image-mobile:before, .hero__container .hero.hero--mobile-title-bottom .hero__video:after, .hero__container .hero.hero--mobile-title-bottom .hero__video:before, .mobile-pass-site .hero__image.hero__image-mobile:after, .mobile-pass-site .hero__image.hero__image-mobile:before, .mobile-pass-site .hero__video:after, .mobile-pass-site .hero__video:before {
        display: none
    }

    .hero__container .hero.hero--mobile-title-bottom .hero__text .hero__title, .mobile-pass-site .hero__text .hero__title {
        margin-top: .3125em;
        font-size: 1.5rem;
        font-family: Roboto Light, Arial, sans-serif;
        text-align: center;
        line-height: 1 !important;
        color: inherit
    }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
    .hero__container .hero.hero--mobile-title-bottom .hero__text .hero__title, .mobile-pass-site .hero__text .hero__title {
        font-size: 1.3125rem
    }
}

@media screen and (max-width: 767px) {
    .hero__container .hero.hero--mobile-title-bottom .hero__subtitle, .mobile-pass-site .hero__subtitle {
        font-size: .9375rem;
        letter-spacing: .1px;
        text-align: center
    }
}

@media screen and (max-width: 767px) and (max-width: 359px) {
    .hero__container .hero.hero--mobile-title-bottom .hero__subtitle, .mobile-pass-site .hero__subtitle {
        font-size: .75rem;
        letter-spacing: 0
    }
}

@media screen and (max-width: 767px) {
    .mobile-pass-site .branding__logo--additional {
        display: block
    }

    .mobile-pass-site .branding__logo--main {
        display: none
    }

    .mobile-pass-site .hero {
        min-height: unset;
        padding: 0
    }

    .mobile-pass-site .hero__text {
        margin: 0;
        padding: .3125em .25em .875em;
        background-color: rgba(33, 39, 63, .6);
        color: #fff
    }

    .mobile-pass-site .table {
        padding-top: 1.875rem;
        box-shadow: none
    }

    .mobile-pass-site .table__badge-extra {
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 1;
        width: auto;
        height: auto
    }

    .mobile-pass-site .table__col-title, .mobile-pass-site .table__item-title {
        position: static
    }

    .mobile-pass-site .table__item-num {
        position: absolute;
        top: .3125rem;
        left: .3125rem;
        -webkit-transform: none;
        transform: none;
        margin: 0;
        padding-top: 2px;
        font-size: 1rem;
        width: 2.25rem;
        height: 2.25rem;
        text-shadow: none;
        font-family: Arial, sans-serif;
        background: #fff;
        border: 1px solid #e1e1e1;
        color: #919699
    }

    .mobile-pass-site .table tbody tr:hover .table__item-num {
        background: #fff
    }

    .mobile-pass-site .table tbody tr:first-child {
        border: 2px solid #355d94
    }

    .mobile-pass-site .table tbody tr:first-child .table__item-num {
        color: #fff;
        background: #265399;
        border-color: #265399
    }

    .mobile-pass-site .table.table--alternative-mob-view tr {
        margin-bottom: 1rem;
        box-shadow: 0 2px .625rem rgba(0, 0, 0, .15);
        border: 1px solid #e1e1e1
    }

    .mobile-pass-site .table.table--alternative-mob-view tr .table__col--wrap:first-child {
        position: relative;
        background-color: #fff
    }

    .mobile-pass-site .table.table--alternative-mob-view tr .table__col--wrap:first-child:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: .0625rem;
        height: 5.625rem;
        background-color: #e1e1e1
    }

    .mobile-pass-site .table.table--alternative-mob-view tr .table__col--wrap:last-child {
        padding: .625rem 1.25rem
    }

    .mobile-pass-site .table.table--alternative-mob-view tr .table__info {
        display: none
    }

    .mobile-pass-site .table.table--alternative-mob-view tr .table__col-features {
        padding: 0
    }

    .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-score .table__score {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        text-align: center
    }

    .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-score .table__score .table__score-title {
        font-family: Roboto Bold, Arial, sans-serif;
        font-size: 2.25rem;
        letter-spacing: .5px;
        margin-bottom: 0;
        -webkit-box-ordinal-group: 2;
        order: 1;
        float: none
    }

    .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-score .table__score .table__score-desc {
        -webkit-box-ordinal-group: 3;
        order: 2;
        margin-bottom: .5rem;
        color: #36393b;
        font-size: .75rem;
        line-height: 1.35
    }

    .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-score .table__score .table__popup-opener {
        display: block
    }

    .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-score .table__score .rate {
        -webkit-box-ordinal-group: 4;
        order: 3;
        margin: 0 auto;
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-score .table__link {
        font-size: .625rem;
        color: #36393b
    }

    .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-links {
        display: block;
        padding: 0
    }

    .contact .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-links .wpcf7-submit, .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-links .btn, .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-links .contact .wpcf7-submit, .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-pass-site .table.table--alternative-mob-view tr td.table__col-links input[type=submit] {
        border-radius: .9375rem;
        font-family: Roboto Light, Arial, sans-serif;
        font-size: 1rem;
        box-shadow: none
    }

    .mobile-pass-site .table.table--alternative-mob-view tr .table__col-title {
        float: none;
        padding: 0;
        width: 100%
    }

    .mobile-pass-site .table.table--alternative-mob-view tr .table__col-title .table__item-title {
        width: 90%;
        margin: 0 0 .3125rem;
        border: 0
    }

    .mobile-pass-site .table.table--alternative-mob-view tr .table__col-title .table__item-logo {
        width: auto;
        height: auto;
        max-width: 100%;
        margin: 0 auto
    }

    .contact .mobile-pass-site .table.table--alternative-mob-view tr:first-child td.table__col-links .wpcf7-submit, .mobile-pass-site .table.table--alternative-mob-view tr:first-child td.table__col-links .btn, .mobile-pass-site .table.table--alternative-mob-view tr:first-child td.table__col-links .contact .wpcf7-submit, .mobile-pass-site .table.table--alternative-mob-view tr:first-child td.table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-pass-site .table.table--alternative-mob-view tr:first-child td.table__col-links input[type=submit] {
        background-color: #5eae33
    }

    .mobile-pass-site .table__features {
        float: none
    }

    .mobile-pass-site .table__features-list {
        font-size: .75rem;
        margin-bottom: .625rem;
        margin-top: 0
    }

    .mobile-pass-site .table__features-list .table__features-item {
        position: relative;
        margin-bottom: .3125rem;
        padding-left: 0;
        text-align: center
    }

    .mobile-pass-site .table__features-list .table__features-item svg {
        display: none
    }
}

.global-passwords .hero .hero__image:after, .global-passwords .hero .hero__image:before, .global-passwords .hero .hero__video:after, .global-passwords .hero .hero__video:before {
    display: none
}

@media screen and (min-width: 1024px) {
    .global-passwords .table-heading-title {
        padding: 1.5rem
    }
}

@media screen and (max-width: 599px) {
    .global-passwords .table-heading-title {
        font-size: 1.0625rem
    }
}

.desktop-vpn-new .hero__title, .mobile-vpn-site .hero__title {
    font-family: Roboto Medium, Arial, sans-serif
}

.desktop-vpn-new .hero__title strong, .mobile-vpn-site .hero__title strong {
    font-weight: inherit
}

.desktop-vpn-new .table_loaded tbody tr:first-child, .mobile-vpn-site .table_loaded tbody tr:first-child {
    border-color: #f8b64c
}

.desktop-vpn-new .table__dynamic-tooltip, .desktop-vpn-new .table__dynamic-tooltip:after, .mobile-vpn-site .table__dynamic-tooltip, .mobile-vpn-site .table__dynamic-tooltip:after {
    background-color: #2a62b7
}

.desktop-vpn-new .badge_custom_color, .mobile-vpn-site .badge_custom_color {
    font-family: Roboto Bold, Arial, sans-serif
}

.desktop-vpn-new .table__features-item, .mobile-vpn-site .table__features-item {
    font-family: Roboto Medium, Arial, sans-serif;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row
}

.desktop-vpn-new .table__features-item .table__features-item-icon, .mobile-vpn-site .table__features-item .table__features-item-icon {
    padding-right: 5px
}

.desktop-vpn-new .table__features-item_bold, .mobile-vpn-site .table__features-item_bold {
    font-family: Roboto Bold, Arial, sans-serif
}

.contact .desktop-vpn-new .table__col-links .wpcf7-submit, .contact .mobile-vpn-site .table__col-links .wpcf7-submit, .desktop-vpn-new .table__col-links .btn, .desktop-vpn-new .table__col-links .contact .wpcf7-submit, .desktop-vpn-new .table__col-links .popup__form .wpcf7-form input[type=submit], .desktop-vpn-new .table__features-links, .desktop-vpn-new .table__info, .desktop-vpn-new .table__score-desc, .desktop-vpn-new .table__score-title, .mobile-vpn-site .table__col-links .btn, .mobile-vpn-site .table__col-links .contact .wpcf7-submit, .mobile-vpn-site .table__col-links .popup__form .wpcf7-form input[type=submit], .mobile-vpn-site .table__features-links, .mobile-vpn-site .table__info, .mobile-vpn-site .table__score-desc, .mobile-vpn-site .table__score-title, .popup__form .wpcf7-form .desktop-vpn-new .table__col-links input[type=submit], .popup__form .wpcf7-form .mobile-vpn-site .table__col-links input[type=submit] {
    font-family: Roboto Medium, Arial, sans-serif
}

.contact .desktop-vpn-new .table__col-links .wpcf7-submit, .contact .mobile-vpn-site .table__col-links .wpcf7-submit, .desktop-vpn-new .table__col-links .btn, .desktop-vpn-new .table__col-links .contact .wpcf7-submit, .desktop-vpn-new .table__col-links .popup__form .wpcf7-form input[type=submit], .mobile-vpn-site .table__col-links .btn, .mobile-vpn-site .table__col-links .contact .wpcf7-submit, .mobile-vpn-site .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-vpn-new .table__col-links input[type=submit], .popup__form .wpcf7-form .mobile-vpn-site .table__col-links input[type=submit] {
    padding-top: .125rem;
    -webkit-transform: none !important;
    transform: none !important
}

.desktop-vpn-new .table__link, .desktop-vpn-new .table__video-link, .mobile-vpn-site .table__link, .mobile-vpn-site .table__video-link {
    font-size: .875rem
}

.desktop-vpn-new .table__video-link:before, .mobile-vpn-site .table__video-link:before {
    top: -.125rem
}

.desktop-vpn-new .table__video-link:after, .mobile-vpn-site .table__video-link:after {
    top: .25rem
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .header {
        box-shadow: none
    }

    .mobile-vpn-site .hero {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse
    }

    .mobile-vpn-site .hero:not(.hero_noimage_mob) .hero__text {
        margin: 1.25rem 0 0
    }

    .mobile-vpn-site .hero__title {
        font-size: 1.5625rem;
        margin: .4375rem 0
    }

    .mobile-vpn-site .hero__subtitle {
        font-size: 1rem;
        font-family: Roboto Medium, Arial, sans-serif
    }

    .mobile-vpn-site .hero__subtitle, .mobile-vpn-site .hero__subtitle span, .mobile-vpn-site .hero__subtitle strong {
        font-weight: inherit
    }

    .mobile-vpn-site .hero__subtitle .flag {
        width: 20px;
        height: 15px;
        margin-bottom: 0
    }

    .mobile-vpn-site .hero__subtitle .date, .mobile-vpn-site .hero__subtitle .date-month {
        white-space: nowrap
    }

    .mobile-vpn-site .hero__list {
        margin-top: .375rem;
        margin-bottom: .625rem;
        padding: 0 .3125rem
    }

    .mobile-vpn-site .hero__item {
        font-weight: 400;
        font-family: Roboto Medium, Arial, sans-serif;
        font-size: .75rem;
        line-height: 1.35
    }

    .mobile-vpn-site .hero__item svg {
        height: auto;
        width: .8125rem;
        margin-right: .375rem;
        vertical-align: middle
    }

    .mobile-vpn-site .hero__image-mobile, .mobile-vpn-site .hero__video {
        margin-bottom: .625rem
    }

    .mobile-vpn-site .hero__image-mobile img, .mobile-vpn-site .hero__video img {
        max-height: unset;
        height: auto;
        width: 70%;
        max-width: unset;
        margin: 0 auto
    }

    .mobile-vpn-site .table__badge-extra {
        left: auto;
        right: .625rem;
        top: -1.5rem
    }

    .mobile-vpn-site .table thead {
        display: block;
        width: 100%
    }

    .mobile-vpn-site .table thead tr {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        height: auto
    }

    .mobile-vpn-site .table thead th {
        display: none
    }

    .mobile-vpn-site .table thead th.table__head-links {
        display: block;
        padding: .375rem .9375rem;
        font-size: .875rem;
        margin-bottom: 0;
        text-align: left;
        color: #8c9194
    }

    .mobile-vpn-site .table tbody tr {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        flex-wrap: wrap
    }

    .mobile-vpn-site .table tbody tr .table__col-title {
        position: static;
        width: 60%
    }

    .mobile-vpn-site .table tbody tr .table__col-score {
        width: 40%;
        float: none;
        margin: 0
    }

    .mobile-vpn-site .table tbody tr .table__col-features {
        width: 100%;
        -webkit-box-ordinal-group: 101;
        order: 100;
        padding: 0 1rem
    }

    .mobile-vpn-site .table tbody tr .table__col-links {
        width: 100%;
        -webkit-box-ordinal-group: 1001;
        order: 1000;
        margin-bottom: 1.125rem
    }

    .mobile-vpn-site .table tbody tr .table__item-title {
        display: block;
        position: relative;
        height: 4.375rem;
        padding-left: 4.375rem;
        padding-right: .25rem;
        border-radius: 2.25rem
    }
}

@media screen and (max-width: 767px) and (max-width: 360px) {
    .mobile-vpn-site .table tbody tr .table__item-title {
        height: 3.375rem;
        padding-left: 3.375rem;
        margin-top: 0
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__item-num {
        position: absolute;
        top: 50%;
        left: 0;
        font-size: 2.5rem;
        margin: 0 .375rem;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

@media screen and (max-width: 767px) and (max-width: 360px) {
    .mobile-vpn-site .table tbody tr .table__item-num {
        font-size: 1.875rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__item-logo {
        margin: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center"
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__badge {
        width: 7.5rem;
        min-width: unset;
        height: auto;
        min-height: unset;
        margin-bottom: .625rem;
        padding: 0
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__badge-custom {
        padding-right: .875rem;
        text-align: center
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .badge_custom_color {
        padding: 0 0 .25rem;
        font-size: .5rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__score {
        font-size: .8rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__score-title {
        margin-bottom: .1875rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__info {
        margin-top: 0;
        font-size: .625rem;
        color: #909598
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__features {
        width: 100%;
        padding: 0
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__features-list {
        margin: .625rem 0 0;
        font-size: .875rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__features-links {
        display: block;
        float: none;
        width: 100%;
        margin: .625rem 0 0;
        font-size: .875rem;
        text-align: left
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr:first-child .table__features-item:nth-child(n+6) {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__video-link {
        margin: 0 1rem 0 .5rem
    }

    .mobile-vpn-site .table tbody tr .table__video-link:before {
        top: -.0625rem;
        width: 1.125rem;
        height: 1.125rem
    }

    .mobile-vpn-site .table tbody tr .table__video-link:after {
        top: .25rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__col-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse
    }

    .contact .mobile-vpn-site .table tbody tr .table__col-links .wpcf7-submit, .mobile-vpn-site .table tbody tr .table__col-links .btn, .mobile-vpn-site .table tbody tr .table__col-links .contact .wpcf7-submit, .mobile-vpn-site .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-vpn-site .table tbody tr .table__col-links input[type=submit] {
        height: 3rem;
        margin-top: 0;
        font-size: 1rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-vpn-site .table tbody tr .table__links img {
        display: block
    }
}

@media screen and (max-width: 767px) {
    .hero.hero--vpn-mobile-style {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse
    }

    .hero.hero--vpn-mobile-style .hero__image.hero__image-mobile, .hero.hero--vpn-mobile-style .hero__video {
        position: static
    }

    .hero.hero--vpn-mobile-style .hero__image.hero__image-mobile img, .hero.hero--vpn-mobile-style .hero__video img {
        width: 100%
    }

    .hero.hero--vpn-mobile-style .hero__text {
        padding: 0 .625rem .9375rem !important
    }

    .hero.hero--vpn-mobile-style .hero__text .hero__title {
        margin-bottom: .125rem !important;
        text-align: center;
        font-size: 1.5625rem !important
    }

    .hero.hero--vpn-mobile-style .hero__text .hero__title strong {
        font-family: Roboto Light, Arial, sans-serif
    }

    .hero.hero--vpn-mobile-style .hero__text .hero__subtitle {
        text-align: center;
        color: #000
    }

    .hero.hero--vpn-mobile-style .hero__text .hero__subtitle .flag {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: cover; object-position: center";
        display: inline-block;
        width: 1.875rem;
        height: 1.125rem
    }
}

@media screen and (min-width: 1024px) {
    .desktop-vpn-new .header {
        box-shadow: none
    }

    .desktop-vpn-new .hero__title {
        margin-top: 1.875rem
    }

    .desktop-vpn-new .hero__image:not(.hero__image-mobile):not(.hero__video), .desktop-vpn-new .hero__video:not(.hero__image-mobile):not(.hero__video) {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        height: 100%;
        top: 0
    }

    .desktop-vpn-new .hero__image:not(.hero__image-mobile):not(.hero__video) img, .desktop-vpn-new .hero__video:not(.hero__image-mobile):not(.hero__video) img {
        height: auto;
        width: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center"
    }

    .desktop-vpn-new .hero__image:not(.hero__image-mobile):not(.hero__video):after, .desktop-vpn-new .hero__image:not(.hero__image-mobile):not(.hero__video):before, .desktop-vpn-new .hero__video:not(.hero__image-mobile):not(.hero__video):after, .desktop-vpn-new .hero__video:not(.hero__image-mobile):not(.hero__video):before {
        display: none
    }

    .desktop-vpn-new .hero__list {
        padding-left: 0;
        margin-bottom: 1.5rem
    }

    .desktop-vpn-new .hero__subtitle {
        margin-bottom: .3125rem;
        font-family: Roboto Regular, Arial, sans-serif
    }

    .desktop-vpn-new .hero__subtitle span, .desktop-vpn-new .hero__subtitle strong {
        font-weight: inherit
    }

    .desktop-vpn-new .table__head-links {
        font-size: .875rem;
        font-family: Roboto Medium, Arial, sans-serif;
        color: #8c9194
    }

    .desktop-vpn-new thead th {
        font-family: Roboto Bold, Arial, sans-serif
    }

    .desktop-vpn-new .table__col-title {
        padding-bottom: 4%
    }

    .desktop-vpn-new .table__col-title .table__badge {
        margin-bottom: 14%
    }

    [lang=es] .desktop-vpn-new .table__col-title .table__badge, [lang=it-IT] .desktop-vpn-new .table__col-title .table__badge, [lang=pt-BR] .desktop-vpn-new .table__col-title .table__badge {
        width: 17.5rem
    }

    .desktop-vpn-new .table__badge-custom {
        padding-right: 2.625rem;
        font-size: .875rem
    }

    .desktop-vpn-new .table__badge-custom span {
        padding-bottom: .375rem
    }

    .desktop-vpn-new .table__info {
        font-size: .875rem;
        padding: .375rem .75rem .3125rem;
        border-radius: 4px
    }
}

.desktop-vpn-alternative .container, .desktop-vpn-alternative .footer__cookie-decline-text, .desktop-vpn-alternative .footer__disclaimer-text {
    max-width: 67.5rem
}

.desktop-vpn-alternative .hamburger {
    -webkit-transform: scale(.8);
    transform: scale(.8)
}

.desktop-vpn-alternative .header {
    box-shadow: none;
    background-color: #1651bd
}

.desktop-vpn-alternative .header__inner {
    z-index: 1;
    background-color: #1651bd
}

.desktop-vpn-alternative .header__main {
    position: relative;
    background-color: transparent
}

.desktop-vpn-alternative .branding__logo img {
    max-height: 2.125rem
}

.desktop-vpn-alternative .ipinfo {
    position: absolute;
    top: 100%;
    right: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
    padding: .1875rem .625rem;
    line-height: 1.2;
    color: red
}

.desktop-vpn-alternative .ipinfo .ipinfo__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    margin: 0;
    font-size: .8125rem;
    line-height: 1;
    text-transform: uppercase
}

.desktop-vpn-alternative .ipinfo .ipinfo__content p {
    margin-right: .25rem;
    font-family: Roboto Regular, Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

.desktop-vpn-alternative .ipinfo .button {
    height: auto;
    padding: 0;
    background-color: transparent;
    color: inherit;
    font-family: Roboto Bold, Arial, sans-serif;
    text-decoration: underline;
    font-size: .8125rem
}

.desktop-vpn-alternative .nav {
    margin-right: 0;
    font-family: Roboto Bold, Arial, sans-serif;
    font-size: .875rem
}

.desktop-vpn-alternative .nav__menu {
    -webkit-box-pack: end;
    justify-content: flex-end
}

.desktop-vpn-alternative .nav__menu > .menu-item {
    padding: 0 .75rem
}

.desktop-vpn-alternative .nav__menu > .menu-item:last-child {
    padding-right: 0
}

.desktop-vpn-alternative .nav__menu > .menu-item:after {
    display: none
}

.desktop-vpn-alternative .nav__menu .sub-menu li {
    background-color: #1651bd
}

.desktop-vpn-alternative .hero {
    padding-left: 0;
    padding-right: 0
}

.desktop-vpn-alternative .hero__container {
    margin-bottom: .75rem
}

.desktop-vpn-alternative .hero__image:after, .desktop-vpn-alternative .hero__image:before, .desktop-vpn-alternative .hero__video:after, .desktop-vpn-alternative .hero__video:before {
    display: none
}

.desktop-vpn-alternative .hero__title {
    margin-bottom: .0625rem;
    font-family: Roboto Medium, Arial, sans-serif;
    font-size: 2.125rem;
    color: #1651bd;
    letter-spacing: .1px;
    -webkit-font-smoothing: antialiased
}

.desktop-vpn-alternative .hero__subtitle {
    margin-bottom: .625rem;
    font-size: 1.375rem;
    font-family: Roboto Regular, Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

.desktop-vpn-alternative .hero__list {
    float: none;
    padding-left: 0
}

.desktop-vpn-alternative .hero__item {
    margin-bottom: .3125rem;
    font-size: .9375rem;
    font-family: Roboto Medium, Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

.desktop-vpn-alternative .hero__item i {
    position: relative;
    top: .1875rem;
    background-color: transparent;
    width: auto;
    height: auto
}

.desktop-vpn-alternative .hero__item i svg {
    width: 1.125rem;
    height: 1.125rem
}

.desktop-vpn-alternative .hero__update {
    margin-top: 1.875rem;
    font-size: .875rem
}

.desktop-vpn-alternative .hero__update-option {
    font-size: .8125rem;
    font-family: Roboto Medium, Arial, sans-serif
}

.desktop-vpn-alternative .header-bonus__btn svg {
    fill: #fff
}

@media screen and (min-width: 768px) {
    .desktop-vpn-alternative .hero__image, .desktop-vpn-alternative .hero__video {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: stretch;
        align-items: stretch;
        top: 0;
        height: 100%;
        max-width: 44%;
        padding-top: .625rem
    }

    .desktop-vpn-alternative .hero__image img, .desktop-vpn-alternative .hero__video img {
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center";
        height: auto
    }

    .desktop-vpn-alternative .hero__bottom-line, .desktop-vpn-alternative .hero__image-mobile, .desktop-vpn-alternative .hero__video {
        display: none
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .desktop-vpn-alternative .hero {
        padding: 0 .625rem
    }

    .desktop-vpn-alternative .hero__text {
        padding: 0;
        margin-bottom: 0
    }

    .desktop-vpn-alternative .hero__subtitle, .desktop-vpn-alternative .hero__title {
        text-align: left
    }
}

@media screen and (max-width: 767px) {
    .desktop-vpn-alternative .ipinfo {
        display: none;
        font-size: .875rem
    }

    .desktop-vpn-alternative .hero__container {
        margin-bottom: .4375rem
    }

    .desktop-vpn-alternative .hero {
        padding: 0 .625rem .9375rem
    }

    .desktop-vpn-alternative .hero__image:not(.hero__image-mobile):not(.hero__video), .desktop-vpn-alternative .hero__video:not(.hero__image-mobile):not(.hero__video) {
        display: none
    }

    .desktop-vpn-alternative .hero__text {
        position: static;
        padding-top: .4375rem;
        margin-bottom: 0
    }

    .desktop-vpn-alternative .hero__title {
        margin-top: 0;
        margin-bottom: .375rem;
        font-size: 1.875rem;
        letter-spacing: -.5px
    }

    .desktop-vpn-alternative .hero__subtitle {
        font-size: 1rem;
        font-family: Roboto Medium, Arial, sans-serif;
        color: #1651bd
    }

    .desktop-vpn-alternative .hero__subtitle .flag {
        margin-bottom: 0;
        width: 18px;
        height: 12px
    }

    .desktop-vpn-alternative .hero__item {
        margin-bottom: .0625rem;
        font-size: .875rem;
        font-weight: 400
    }

    .desktop-vpn-alternative .hero__update {
        position: absolute;
        bottom: .0625rem;
        left: .625rem;
        margin-top: .3125rem;
        font-size: .8125rem;
        font-family: Roboto Medium, Arial, sans-serif
    }
}

.desktop-pet-new .header {
    box-shadow: none
}

.desktop-pet-new .nav__menu {
    font-family: Roboto Regular, Arial, sans-serif
}

.desktop-pet-new .preview {
    background-color: transparent
}

.desktop-pet-new .widget__authors {
    background-color: #eee;
    border: 0
}

.desktop-pet-new .footer__top-geo i, .desktop-pet-new .hero__title i {
    font-style: normal
}

.desktop-pet-new .table {
    -webkit-font-smoothing: antialiased;
    background-color: #fff
}

.desktop-pet-new .table .table__head-rank {
    text-indent: -9999px
}

.desktop-pet-new .table tbody tr .table__features-item {
    position: relative;
    padding-left: 1.4375em
}

.desktop-pet-new .table tbody tr .table__features-item svg {
    position: absolute;
    top: .375em;
    left: 0
}

.desktop-pet-new .table tbody tr .table__features-item svg path {
    fill: #69c424
}

.desktop-pet-new .table tbody tr .rate, .desktop-pet-new .table tbody tr .rate span {
    background-image: url(star-sprite.svg)
}

.desktop-pet-new .table tbody tr td.table__col-score .table__score-title {
    font-family: Roboto Regular, Arial, sans-serif;
    color: #646262
}

.contact .desktop-pet-new .table tbody tr .table__col-links .wpcf7-submit, .desktop-pet-new .table tbody tr .table__col-links .btn, .desktop-pet-new .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-pet-new .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-pet-new .table tbody tr .table__col-links input[type=submit] {
    padding: 0 1.5625rem;
    font-family: Roboto Medium, Arial, sans-serif;
    background-color: #69c424;
    border-radius: 3.125rem
}

@media screen and (min-width: 768px) {
    .desktop-pet-new .branding {
        max-width: 25rem
    }

    .desktop-pet-new .hero {
        min-height: 15.125rem
    }

    .desktop-pet-new .hero__image, .desktop-pet-new .hero__video {
        height: 100%;
        top: 0
    }

    .desktop-pet-new .hero__text {
        z-index: 1
    }

    .desktop-pet-new .hero__title {
        max-width: 48.75rem;
        margin-bottom: 1rem;
        margin-top: 0
    }

    .desktop-pet-new .hero__subtitle {
        max-width: 46.25rem
    }

    .desktop-pet-new .hero__subtitle.hero__subtitle--sm {
        font-size: 1.375em;
        line-height: 1.3
    }

    .desktop-pet-new .hero__image:after, .desktop-pet-new .hero__image:before, .desktop-pet-new .hero__video:after, .desktop-pet-new .hero__video:before {
        display: none
    }

    .desktop-pet-new .table {
        background-color: #fff;
        border: 1px solid #b8b7b7
    }

    .desktop-pet-new .table .table__head-rank {
        text-indent: -9999px
    }

    .desktop-pet-new .table thead tr {
        border-bottom-color: #b8b7b7
    }

    .desktop-pet-new .table tbody tr, .desktop-pet-new .table tbody tr:first-child {
        border: 0;
        background-color: transparent;
        box-shadow: 0 1px 0 0 #b8b7b7
    }

    .desktop-pet-new .table tbody tr .table__item-title {
        border: 0
    }

    .desktop-pet-new .table tbody tr .table__info, .desktop-pet-new .table tbody tr .table__item-num {
        display: none
    }

    .desktop-pet-new .table tbody tr .table__item-logo {
        height: 8.125rem;
        margin: 0 auto
    }

    .contact .desktop-pet-new .table tbody tr .table__col-links .wpcf7-submit, .desktop-pet-new .table tbody tr .table__col-links .btn, .desktop-pet-new .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-pet-new .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-pet-new .table tbody tr .table__col-links input[type=submit] {
        font-size: 1.375rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-light-style--pet-alternative .hero__subtitle {
        display: none
    }

    .mobile-light-style--pet-alternative .hero.hero--mobile-title-bottom {
        margin-bottom: .4375rem
    }

    .mobile-light-style--pet-alternative .hero.hero--mobile-title-bottom .hero__text {
        background-color: rgba(70, 70, 70, .7) !important;
        padding: .1875rem 0 .4375rem !important
    }

    .mobile-light-style--pet-alternative .hero__title i {
        display: block;
        margin-bottom: .625rem;
        color: #c0f997
    }

    .mobile-light-style--pet-alternative table.table {
        box-shadow: none;
        font-size: .75rem
    }

    .mobile-light-style--pet-alternative table.table tr {
        overflow: hidden;
        -webkit-font-smoothing: antialiased
    }

    .mobile-light-style--pet-alternative table.table tr .table__col--wrap:first-child {
        width: 40%
    }

    .mobile-light-style--pet-alternative table.table tr .table__col--wrap:last-child {
        width: 60%
    }

    .mobile-light-style--pet-alternative table.table tr, .mobile-light-style--pet-alternative table.table tr:first-child {
        margin-bottom: .75rem;
        border: 1px solid #d6d6d6;
        box-shadow: 0 14px 32px rgba(47, 46, 46, .16)
    }

    .mobile-light-style--pet-alternative table.table tr .table__col--wrap:first-of-type, .mobile-light-style--pet-alternative table.table tr:first-child .table__col--wrap:first-of-type {
        -webkit-box-pack: start;
        justify-content: flex-start;
        padding-top: 1.5625rem;
        background-color: #fff
    }

    .mobile-light-style--pet-alternative table.table tr .table__col--wrap:last-of-type, .mobile-light-style--pet-alternative table.table tr:first-child .table__col--wrap:last-of-type {
        padding: .625rem 0
    }

    .mobile-light-style--pet-alternative table.table tr .table__col-title, .mobile-light-style--pet-alternative table.table tr:first-child .table__col-title {
        position: static;
        padding: .1875rem .25rem 0
    }

    .mobile-light-style--pet-alternative table.table tr .table__item-title, .mobile-light-style--pet-alternative table.table tr:first-child .table__item-title {
        width: 100%;
        margin: 0;
        border: 0
    }

    .mobile-light-style--pet-alternative table.table tr .table__item-logo, .mobile-light-style--pet-alternative table.table tr:first-child .table__item-logo {
        height: 140%;
        width: auto;
        margin: 0 auto;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center"
    }

    .mobile-light-style--pet-alternative table.table tr .table__info, .mobile-light-style--pet-alternative table.table tr:first-child .table__info {
        display: none
    }

    .mobile-light-style--pet-alternative table.table tr:first-child td.table__col-score .table__score, .mobile-light-style--pet-alternative table.table tr td.table__col-score .table__score {
        max-width: unset
    }

    .mobile-light-style--pet-alternative table.table tr:first-child td.table__col-score .table__score-title, .mobile-light-style--pet-alternative table.table tr td.table__col-score .table__score-title {
        float: none;
        font-size: 1.875rem;
        text-align: center
    }

    .mobile-light-style--pet-alternative table.table tr:first-child td.table__col-score .rate, .mobile-light-style--pet-alternative table.table tr td.table__col-score .rate {
        margin: 0 auto;
        -webkit-transform: scale(1.33);
        transform: scale(1.33)
    }

    .mobile-light-style--pet-alternative table.table tr:first-child td.table__col-score .table__score-desc, .mobile-light-style--pet-alternative table.table tr td.table__col-score .table__score-desc {
        color: #61504a;
        text-align: center
    }
}

@media screen and (max-width: 767px) and (min-width: 360px) {
    .mobile-light-style--pet-alternative table.table tr:first-child td.table__col-score .table__score-desc, .mobile-light-style--pet-alternative table.table tr td.table__col-score .table__score-desc {
        font-size: .75rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-light-style--pet-alternative table.table tr:first-child td.table__col-score .table__popup-opener, .mobile-light-style--pet-alternative table.table tr td.table__col-score .table__popup-opener {
        display: inline-block
    }
}

@media screen and (max-width: 767px) {
    .mobile-light-style--pet-alternative table.table tr .table__col-features .table__features-list, .mobile-light-style--pet-alternative table.table tr:first-child .table__col-features .table__features-list {
        margin: 0;
        padding-top: .25rem
    }

    .mobile-light-style--pet-alternative table.table tr .table__col-features .table__features-item, .mobile-light-style--pet-alternative table.table tr:first-child .table__col-features .table__features-item {
        padding-left: 1.25em;
        text-align: left;
        font-family: Roboto Regular, Arial, sans-serif;
        font-size: .875rem
    }

    .mobile-light-style--pet-alternative table.table tr .table__col-features .table__features-item svg, .mobile-light-style--pet-alternative table.table tr:first-child .table__col-features .table__features-item svg {
        top: .25em
    }

    .mobile-light-style--pet-alternative table.table tr .table__col-features .table__features-links, .mobile-light-style--pet-alternative table.table tr:first-child .table__col-features .table__features-links {
        text-align: left
    }

    .mobile-light-style--pet-alternative table.table tr .table__col-features .table__features-links .table__link, .mobile-light-style--pet-alternative table.table tr:first-child .table__col-features .table__features-links .table__link {
        display: block;
        padding: .625rem 0 .625rem 1rem;
        font-size: .8125rem;
        color: #5c4e4a
    }
}

@media screen and (max-width: 767px) {
    .mobile-light-style--pet-alternative table.table tr .table__col-links, .mobile-light-style--pet-alternative table.table tr:first-child .table__col-links {
        -webkit-box-align: start;
        align-items: flex-start;
        float: none;
        padding-left: 1rem
    }

    .contact .mobile-light-style--pet-alternative table.table tr .table__col-links .wpcf7-submit, .mobile-light-style--pet-alternative table.table tr .table__col-links .btn, .mobile-light-style--pet-alternative table.table tr .table__col-links .contact .wpcf7-submit, .mobile-light-style--pet-alternative table.table tr .table__col-links .popup__form .wpcf7-form input[type=submit], .mobile-light-style--pet-alternative table.table tr:first-child .table__col-links .btn, .popup__form .wpcf7-form .mobile-light-style--pet-alternative table.table tr .table__col-links input[type=submit] {
        width: auto
    }
}

@media screen and (max-width: 767px) {
    .mobile-light-style--pet-alternative table.table tr:first-child .table__col--wrap:first-of-type {
        padding-top: 3.4375rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-light-style--pet-alternative table.table tr .table__badge--type3 .table__badge-custom {
        -webkit-font-smoothing: auto;
        font-weight: 800
    }
}

@media screen and (max-width: 767px) {
    .mobile-light-style--pet-alternative .pretable__tooltip {
        margin: 0;
        text-decoration: none;
        font-size: .875rem;
        color: #36393b
    }
}

.desktop-webcams-dark, .desktop-webcams-dark .content, .desktop-webcams-dark .preview {
    background-color: #202020
}

.desktop-webcams-dark .header, .desktop-webcams-dark .header__main {
    background-color: #000;
    box-shadow: none
}

.desktop-webcams-dark .nav__menu li {
    color: #dc1b24;
    font-family: Roboto Regular, Arial, sans-serif;
    font-size: 1rem
}

.desktop-webcams-dark .hero__image:after, .desktop-webcams-dark .hero__image:before, .desktop-webcams-dark .hero__video:after, .desktop-webcams-dark .hero__video:before, .desktop-webcams-dark .nav__menu li:after {
    display: none
}

.desktop-webcams-dark .hero__title {
    color: #fff
}

.desktop-webcams-dark .table__item-title {
    border: 0;
    background-color: transparent
}

.desktop-webcams-dark .table__head-links {
    font-size: .875rem;
    color: #bebdbd
}

.desktop-webcams-dark .table tbody tr .table__item-num {
    background: -webkit-gradient(linear, left bottom, left top, from(#d4d2d4), to(#646464));
    background: linear-gradient(0deg, #d4d2d4, #646464)
}

.desktop-webcams-dark .table tbody tr:first-child .table__item-num, .desktop-webcams-dark .table tbody tr:hover .table__item-num {
    background: -webkit-gradient(linear, left bottom, left top, from(#df656b), to(#dc1b24));
    background: linear-gradient(0deg, #df656b, #dc1b24)
}

.contact .desktop-webcams-dark .table__col-links .wpcf7-submit, .desktop-webcams-dark .table__col-links .btn, .desktop-webcams-dark .table__col-links .contact .wpcf7-submit, .desktop-webcams-dark .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-webcams-dark .table__col-links input[type=submit] {
    background-color: #dc1b24;
    border-radius: 3.125rem
}

.desktop-webcams-dark .table__score-desc {
    color: #fff
}

.desktop-webcams-dark .table__score .rate, .desktop-webcams-dark .table__score .rate span {
    background-image: url(stars.svg) !important
}

.desktop-webcams-dark .table__video-link, .desktop-webcams-dark .table__video-link:hover {
    color: #dc1b24
}

.desktop-webcams-dark .table__video-link:before {
    border-color: #dc1b24
}

.desktop-webcams-dark .table__video-link:after {
    border-left-color: #dc1b24
}

.desktop-webcams-dark .popup, .desktop-webcams-dark .popup__video {
    border-color: #dc1b24
}

.desktop-webcams-dark .preview {
    background-color: #333
}

.desktop-webcams-dark .preview__content, .desktop-webcams-dark .preview__content a, .desktop-webcams-dark .widget__authors, .desktop-webcams-dark .widget__authors a {
    color: #fff
}

.desktop-webcams-dark .preview__content .widget__title, .desktop-webcams-dark .preview__content h2, .desktop-webcams-dark .widget__authors .widget__title, .desktop-webcams-dark .widget__authors h2 {
    color: #dc1b24
}

.desktop-webcams-dark .footer {
    margin-top: 1.875rem
}

.desktop-webcams-dark .footer__disclaimer, .desktop-webcams-dark .footer__top {
    background-color: #333;
    color: #fff
}

.desktop-webcams-dark .footer__copyright, .desktop-webcams-dark .footer__disclaimer, .desktop-webcams-dark .footer__inner .title_main, .desktop-webcams-dark .footer__menu, .desktop-webcams-dark .footer__text {
    color: inherit
}

.desktop-webcams-dark .footer__inner .footer__content--logo svg path, .desktop-webcams-dark .footer__inner .footer__content--logo svg polygon {
    fill: #fff
}

.desktop-webcams-dark .footer__top-geo {
    display: none
}

.desktop-webcams-dark .footer__inner {
    border-top: 0
}

.desktop-webcams-dark .hamburger__btn, .desktop-webcams-dark .hamburger__btn:after, .desktop-webcams-dark .hamburger__btn:before {
    background-color: #fff
}

.desktop-webcams-dark .hamburger_opened .hamburger__btn {
    background-color: transparent
}

@media screen and (min-width: 768px) {
    .desktop-webcams-dark .nav__menu li {
        margin-left: 1.25rem
    }

    .desktop-webcams-dark .nav__menu li a:hover {
        color: #fff
    }

    .desktop-webcams-dark .table {
        box-shadow: none;
        border-radius: 5px;
        background-color: #333;
        color: #fff
    }

    .desktop-webcams-dark .table thead tr {
        background-color: transparent
    }

    .desktop-webcams-dark .table tbody tr, .desktop-webcams-dark .table tbody tr:first-child {
        background-color: transparent;
        border: 0;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: none
    }

    .desktop-webcams-dark .table tbody tr:last-child {
        border-bottom: 0
    }

    .desktop-webcams-dark .table__col-score .table__info {
        display: none
    }

    .desktop-webcams-dark .table__col-links .table__underbtntext {
        font-size: 1.125rem;
        font-family: Roboto Bold, Arial, sans-serif;
        color: #dc1b24
    }

    .desktop-webcams-dark .table__col-links .table__info {
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        background-color: transparent;
        color: #fff;
        text-transform: none;
        font-family: Roboto Regular, Arial, sans-serif;
        text-align: center
    }
}

@media screen and (max-width: 767px) {
    .desktop-webcams-dark .nav__menu li.current-menu-item a {
        background-color: #dc1b24;
        color: #fff
    }

    .desktop-webcams-dark .hero {
        -webkit-box-pack: start;
        justify-content: flex-start;
        min-height: 10.625rem;
        font-size: 1rem
    }

    .desktop-webcams-dark .hero__text {
        position: static;
        margin: 0;
        padding: .625rem;
        background-color: transparent
    }

    .desktop-webcams-dark .hero__subtitle, .desktop-webcams-dark .hero__title {
        position: relative;
        z-index: 1;
        text-align: left
    }

    .desktop-webcams-dark .hero__title {
        padding-right: 50%;
        font-size: 1.375rem;
        line-height: 1.3
    }

    .desktop-webcams-dark .hero__subtitle {
        padding-right: 40%;
        font-size: .875rem;
        line-height: 1.4
    }

    .desktop-webcams-dark .hero__image-mobile, .desktop-webcams-dark .hero__video {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: unset
    }

    .desktop-webcams-dark .hero__image-mobile img, .desktop-webcams-dark .hero__video img {
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: right;
        object-position: right;
        font-family: "object-fit: contain; object-position: right";
        width: 100%;
        height: 100%;
        min-height: unset
    }

    .desktop-webcams-dark .header__container {
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse
    }

    .desktop-webcams-dark .branding {
        max-width: 15.3125rem
    }

    .desktop-webcams-dark .table {
        margin: 0;
        padding-left: .9375rem;
        padding-right: .9375rem;
        background-color: transparent
    }

    .desktop-webcams-dark .table .table__item-num {
        display: none
    }

    .desktop-webcams-dark .table tr {
        margin-bottom: .75rem;
        box-shadow: 0 0 0 2px #333;
        color: #fff
    }

    .desktop-webcams-dark .table tr .table__features-links .table__link, .desktop-webcams-dark .table tr .table__score-title {
        color: inherit
    }

    .desktop-webcams-dark .table tr .table__popup-opener, .desktop-webcams-dark .table tr .table__video-link {
        display: none !important
    }

    .desktop-webcams-dark .table tr .table__col--wrap:first-child {
        background-color: #333
    }

    .desktop-webcams-dark .table tr .table__col--wrap:last-of-type {
        background-color: #111 !important
    }

    .desktop-webcams-dark .table tr .table__col-features, .desktop-webcams-dark .table tr .table__col-links {
        -webkit-box-ordinal-group: 3;
        order: 2
    }

    .desktop-webcams-dark .table tr .table__col-features-small {
        -webkit-box-ordinal-group: 2;
        order: 1;
        padding: 0;
        font-family: Roboto Bold, Arial, sans-serif;
        font-size: 1.125rem;
        color: #dc1b24
    }

    .desktop-webcams-dark .table tr td.table__col-title .table__item-title img {
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center";
        height: 180%
    }

    .desktop-webcams-dark .table tr td.table__col-features .table__info {
        padding: 0 .625rem;
        margin-bottom: .9375rem;
        color: inherit;
        text-transform: none;
        font-family: Roboto Regular, Arial, sans-serif
    }

    .desktop-webcams-dark .table tr td.table__col-score .table__score {
        position: relative;
        margin: .375rem 0 .875rem;
        padding-left: 2.25rem
    }

    .desktop-webcams-dark .table tr td.table__col-score .table__score .table__score-title {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 1.6875rem;
        letter-spacing: -1px
    }
}

@media screen and (max-width: 767px) {
    .mobile-light-background-b.page-background .hamburger, .mobile-light-background.page-background .hamburger {
        margin: 0
    }

    .mobile-light-background-b.page-background .container:not(.header__container):not(.hero__container), .mobile-light-background-b.page-background .footer__cookie-decline-text:not(.header__container):not(.hero__container), .mobile-light-background-b.page-background .footer__disclaimer-text:not(.header__container):not(.hero__container), .mobile-light-background.page-background .container:not(.header__container):not(.hero__container), .mobile-light-background.page-background .footer__cookie-decline-text:not(.header__container):not(.hero__container), .mobile-light-background.page-background .footer__disclaimer-text:not(.header__container):not(.hero__container) {
        padding-left: .25rem;
        padding-right: .25rem
    }

    .mobile-light-background-b.page-background .header__right, .mobile-light-background.page-background .header__right {
        -webkit-transform: scale(.8);
        transform: scale(.8)
    }

    .mobile-light-background-b.page-background .header__main, .mobile-light-background.page-background .header__main {
        background-color: #283d4c !important
    }

    .mobile-light-background-b.page-background .hamburger:not(.hamburger_opened) .hamburger__btn, .mobile-light-background-b.page-background .hamburger__btn:after, .mobile-light-background-b.page-background .hamburger__btn:before, .mobile-light-background.page-background .hamburger:not(.hamburger_opened) .hamburger__btn, .mobile-light-background.page-background .hamburger__btn:after, .mobile-light-background.page-background .hamburger__btn:before {
        background-color: #fff !important
    }

    .mobile-light-background-b.page-background .branding, .mobile-light-background.page-background .branding {
        margin-left: 0
    }

    .mobile-light-background-b.page-background .hero, .mobile-light-background.page-background .hero {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
        margin-bottom: .5625rem
    }

    .mobile-light-background-b.page-background .hero__text, .mobile-light-background.page-background .hero__text {
        position: static !important;
        padding: .25rem 0 .0625rem !important;
        background-color: #fff !important;
        color: #283d4c !important
    }

    .mobile-light-background-b.page-background .hero__text .hero__title, .mobile-light-background.page-background .hero__text .hero__title {
        margin-bottom: 0 !important;
        margin-top: .375rem !important;
        font-family: Roboto Medium, Arial, sans-serif !important;
        font-size: 1.25rem !important;
        font-weight: 400;
        -webkit-font-smoothing: antialiased
    }

    .mobile-light-background-b.page-background .hero__text .hero__title strong, .mobile-light-background.page-background .hero__text .hero__title strong {
        font-weight: inherit
    }

    .mobile-light-background-b.page-background .table tr, .mobile-light-background-b.page-background .table tr:first-child, .mobile-light-background.page-background .table tr, .mobile-light-background.page-background .table tr:first-child {
        box-shadow: 0 14px 32px rgba(47, 46, 46, .16)
    }

    .mobile-light-background-b.page-background .table tr td.table__col-score, .mobile-light-background.page-background .table tr td.table__col-score {
        margin-top: 0;
        padding-top: 0
    }

    .mobile-light-background-b.page-background .table tr td.table__col-score .rate, .mobile-light-background-b.page-background .table tr td.table__col-score .table__score-desc, .mobile-light-background.page-background .table tr td.table__col-score .rate, .mobile-light-background.page-background .table tr td.table__col-score .table__score-desc {
        display: none
    }

    .mobile-light-background-b.page-background .table tr td.table__col-score .table__score-title, .mobile-light-background.page-background .table tr td.table__col-score .table__score-title {
        float: none;
        margin: 0;
        font-size: 2.25rem;
        font-family: Roboto Regular, Arial, sans-serif;
        text-align: center;
        color: #283d4c
    }

    .mobile-light-background-b.page-background .table tr td.table__col-score .table__score-title:after, .mobile-light-background.page-background .table tr td.table__col-score .table__score-title:after {
        content: "/10";
        font-size: 1.125rem;
        font-family: Roboto Light, Arial, sans-serif;
        color: #283d4c
    }

    .mobile-light-background-b.page-background .table tr td.table__col-features, .mobile-light-background.page-background .table tr td.table__col-features {
        padding: 0 .5625rem
    }

    .mobile-light-background-b.page-background .table tr td.table__col-features .table__features-deal-main, .mobile-light-background.page-background .table tr td.table__col-features .table__features-deal-main {
        margin-bottom: .25rem;
        font-family: Roboto Light, Arial, sans-serif;
        font-weight: 800;
        line-height: 1.3;
        color: #283d4c
    }

    .mobile-light-background-b.page-background .table tr td.table__col-features .table__info, .mobile-light-background.page-background .table tr td.table__col-features .table__info {
        padding: 0;
        font-size: .875rem;
        text-transform: uppercase;
        font-family: Roboto Medium, Arial, sans-serif;
        font-weight: 400;
        -webkit-font-smoothing: antialiased;
        color: #2eb727
    }

    .contact .mobile-light-background-b.page-background .table tr td.table__col-links .wpcf7-submit, .contact .mobile-light-background.page-background .table tr td.table__col-links .wpcf7-submit, .mobile-light-background-b.page-background .table tr td.table__col-links .btn, .mobile-light-background-b.page-background .table tr td.table__col-links .contact .wpcf7-submit, .mobile-light-background-b.page-background .table tr td.table__col-links .popup__form .wpcf7-form input[type=submit], .mobile-light-background.page-background .table tr td.table__col-links .btn, .mobile-light-background.page-background .table tr td.table__col-links .contact .wpcf7-submit, .mobile-light-background.page-background .table tr td.table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-light-background-b.page-background .table tr td.table__col-links input[type=submit], .popup__form .wpcf7-form .mobile-light-background.page-background .table tr td.table__col-links input[type=submit] {
        font-family: Roboto Medium, Arial, sans-serif;
        font-size: 1.0625rem;
        background-color: #ffb400;
        color: #283d4c;
        -webkit-font-smoothing: antialiased
    }

    .contact .mobile-light-background-b.page-background .table tr td.table__col-links .wpcf7-submit span, .contact .mobile-light-background.page-background .table tr td.table__col-links .wpcf7-submit span, .mobile-light-background-b.page-background .table tr td.table__col-links .btn span, .mobile-light-background-b.page-background .table tr td.table__col-links .contact .wpcf7-submit span, .mobile-light-background-b.page-background .table tr td.table__col-links .popup__form .wpcf7-form input[type=submit] span, .mobile-light-background.page-background .table tr td.table__col-links .btn span, .mobile-light-background.page-background .table tr td.table__col-links .contact .wpcf7-submit span, .mobile-light-background.page-background .table tr td.table__col-links .popup__form .wpcf7-form input[type=submit] span, .popup__form .wpcf7-form .mobile-light-background-b.page-background .table tr td.table__col-links input[type=submit] span, .popup__form .wpcf7-form .mobile-light-background.page-background .table tr td.table__col-links input[type=submit] span {
        display: inline-block;
        padding-top: .125rem
    }

    .mobile-light-background.page-background .table tr, .mobile-light-background.page-background .table tr:first-child {
        margin-bottom: .5625rem;
        border-color: #d6d6d6
    }

    .mobile-light-background.page-background .table tr .table__col--wrap:first-child {
        background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(70%, #fff), to(#ebebeb));
        background: linear-gradient(90deg, #fff 0, #fff 70%, #ebebeb)
    }

    .mobile-light-background.page-background .table tr .table__col--wrap:last-child {
        padding: .9375rem 0
    }

    .mobile-light-background.page-background .table tr td.table__col-title {
        padding: 2.5rem .75rem 0
    }

    .mobile-light-background.page-background .table tr td.table__col-title .table__item-title {
        width: 100%;
        margin: 0;
        max-width: unset
    }

    .mobile-light-background.page-background .table tr td.table__col-title .table__item-title img {
        height: 180%
    }

    .mobile-light-background.page-background .table tr td.table__col-features {
        padding: 0 .5625rem
    }

    .mobile-light-background.page-background .table tr td.table__col-features .table__features-list {
        display: none
    }

    .mobile-light-background.page-background .table tr td.table__col-features .table__features-deal-main {
        font-family: Roboto Light, Arial, sans-serif;
        font-weight: 800;
        line-height: 1.3;
        color: #283d4c
    }

    .mobile-light-background.page-background .table tr td.table__col-features .table__info {
        margin: .75rem 0 0
    }

    .mobile-light-background.page-background .table tr td.table__col-links {
        padding: .375rem .5625rem 0
    }

    .mobile-light-background.page-background .table tr .table__link {
        color: #5a7d94;
        -webkit-font-smoothing: antialiased
    }

    .mobile-light-background-b.page-background .table tr, .mobile-light-background-b.page-background .table tr:first-child {
        margin-bottom: .75rem;
        border-color: #d7d7d7
    }

    .mobile-light-background-b.page-background .table tr .table__dynamic-tooltip {
        z-index: 1;
        top: calc(100% + 10px);
        bottom: auto
    }

    .mobile-light-background-b.page-background .table tr .table__dynamic-tooltip:after {
        top: -4px;
        bottom: auto
    }

    .mobile-light-background-b.page-background .table tr .table__col--wrap:first-child, .mobile-light-background-b.page-background .table tr .table__col--wrap:last-child {
        width: 100%;
        background-color: #fff
    }

    .mobile-light-background-b.page-background .table tr td.table__col-title .table__item-title {
        height: 6.25rem;
        margin: 0 auto
    }

    .mobile-light-background-b.page-background .table tr td.table__col-score {
        margin-top: -1.1875rem;
        margin-bottom: 1.25rem;
        padding: 0
    }

    .mobile-light-background-b.page-background .table tr td.table__col-score .table__score, .mobile-light-background-b.page-background .table tr td.table__col-score .table__score-title {
        margin-bottom: 0
    }

    .mobile-light-background-b.page-background .table tr td.table__col-score .table__score-title {
        font-size: 2.5rem;
        font-family: Roboto Medium, Arial, sans-serif;
        -webkit-font-smoothing: antialiased
    }

    .mobile-light-background-b.page-background .table tr td.table__col-score .table__features-links {
        margin: 0
    }

    .mobile-light-background-b.page-background .table tr td.table__col-score .table__link {
        font-size: .625rem;
        color: #5a7d94;
        -webkit-font-smoothing: antialiased
    }

    .mobile-light-background-b.page-background .table tr .table__features-deal {
        display: none
    }

    .mobile-light-background-b.page-background .table tr td.table__col-features .table__features-list {
        max-width: 17.8125rem;
        margin: 0 auto .625rem
    }

    .mobile-light-background-b.page-background .table tr td.table__col-features .table__features-item {
        min-height: 1.25rem;
        margin-bottom: .4375rem;
        padding-left: 1.875rem;
        font-size: .875rem;
        text-align: left;
        color: #283d4c;
        -webkit-font-smoothing: antialiased;
        background: url(icon-check-square.svg) no-repeat 0 0
    }

    .mobile-light-background-b.page-background .table tr td.table__col-features .table__features-item svg {
        display: none
    }

    .mobile-light-background-b.page-background .table tr td.table__col-links {
        padding-bottom: .75rem
    }

    .contact .mobile-light-background-b.page-background .table tr td.table__col-links .wpcf7-submit, .mobile-light-background-b.page-background .table tr td.table__col-links .btn, .mobile-light-background-b.page-background .table tr td.table__col-links .contact .wpcf7-submit, .mobile-light-background-b.page-background .table tr td.table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-light-background-b.page-background .table tr td.table__col-links input[type=submit] {
        max-width: 13.625rem;
        font-size: 1.125rem
    }
}

.desktop-dating-alternative .hero .hero__image:after, .desktop-dating-alternative .hero .hero__image:before, .desktop-dating-alternative .hero .hero__video:after, .desktop-dating-alternative .hero .hero__video:before, .desktop-dating-romantic .hero .hero__image:after, .desktop-dating-romantic .hero .hero__image:before, .desktop-dating-romantic .hero .hero__video:after, .desktop-dating-romantic .hero .hero__video:before {
    display: none
}

.desktop-dating-alternative .table .table__head-links, .desktop-dating-romantic .table .table__head-links {
    text-align: center;
    padding-left: 3.625rem
}

.desktop-dating-alternative .table .table__head-links .tooltip, .desktop-dating-romantic .table .table__head-links .tooltip {
    position: relative;
    top: -2px;
    font-size: .875rem
}

.desktop-dating-alternative .table tbody tr, .desktop-dating-alternative .table tbody tr:first-child, .desktop-dating-romantic .table tbody tr, .desktop-dating-romantic .table tbody tr:first-child {
    background-color: #fff;
    box-shadow: 0 0 0 1px #d7d7d7, 0 14px 32px rgba(47, 46, 46, .16)
}

.desktop-dating-alternative .table .table__item-title, .desktop-dating-romantic .table .table__item-title {
    border: 0;
    background-color: transparent
}

.contact .desktop-dating-alternative .table .table__col-links .wpcf7-submit, .contact .desktop-dating-romantic .table .table__col-links .wpcf7-submit, .desktop-dating-alternative .table .table__col-links .btn, .desktop-dating-alternative .table .table__col-links .contact .wpcf7-submit, .desktop-dating-alternative .table .table__col-links .popup__form .wpcf7-form input[type=submit], .desktop-dating-romantic .table .table__col-links .btn, .desktop-dating-romantic .table .table__col-links .contact .wpcf7-submit, .desktop-dating-romantic .table .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-dating-alternative .table .table__col-links input[type=submit], .popup__form .wpcf7-form .desktop-dating-romantic .table .table__col-links input[type=submit] {
    height: 3.125em;
    border-radius: 3.125em;
    font-size: 1rem;
    padding: 0 .9375rem
}

.desktop-dating-alternative .table .table__underbtntext, .desktop-dating-romantic .table .table__underbtntext {
    font-size: 1.125rem;
    font-family: Roboto Medium, Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

.desktop-dating-alternative .table .table__info, .desktop-dating-romantic .table .table__info {
    display: none
}

.desktop-dating-alternative .table {
    color: #6b6464
}

.desktop-dating-alternative .table .table__link {
    color: #6b6464;
    -webkit-font-smoothing: antialiased
}

.desktop-dating-alternative .table .table__item-num {
    display: none
}

.desktop-dating-alternative .table .rate, .desktop-dating-alternative .table .rate span {
    background-image: url(stars-sharp.svg)
}

.desktop-dating-romantic .post__aside, .global-dating-romantic-style .post__aside {
    margin-bottom: 0
}

.desktop-dating-romantic .nav__menu li a, .global-dating-romantic-style .nav__menu li a {
    font-family: Roboto Medium, Arial, sans-serif
}

.desktop-dating-romantic .table__features-item svg path, .global-dating-romantic-style .table__features-item svg path {
    fill: #be224e !important
}

.contact .desktop-dating-romantic .wpcf7-submit, .contact .global-dating-romantic-style .wpcf7-submit, .desktop-dating-romantic .btn, .desktop-dating-romantic .contact .wpcf7-submit, .desktop-dating-romantic .hamburger:not(.hamburger_opened) .hamburger__btn, .desktop-dating-romantic .hamburger__btn:after, .desktop-dating-romantic .hamburger__btn:before, .desktop-dating-romantic .popup__form .wpcf7-form input[type=submit], .global-dating-romantic-style .btn, .global-dating-romantic-style .contact .wpcf7-submit, .global-dating-romantic-style .hamburger:not(.hamburger_opened) .hamburger__btn, .global-dating-romantic-style .hamburger__btn:after, .global-dating-romantic-style .hamburger__btn:before, .global-dating-romantic-style .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-dating-romantic input[type=submit], .popup__form .wpcf7-form .global-dating-romantic-style input[type=submit] {
    background-color: #ff008a !important
}

.desktop-dating-romantic .table, .global-dating-romantic-style .table {
    color: #3b3b3b
}

.desktop-dating-romantic .table tbody tr, .desktop-dating-romantic .table tbody tr:first-child, .global-dating-romantic-style .table tbody tr, .global-dating-romantic-style .table tbody tr:first-child {
    box-shadow: 0 0 0 1px #d7d7d7, 0 14px 32px rgba(47, 46, 46, .16)
}

.desktop-dating-romantic .table tbody tr .table__item-title, .desktop-dating-romantic .table tbody tr:first-child .table__item-title, .global-dating-romantic-style .table tbody tr .table__item-title, .global-dating-romantic-style .table tbody tr:first-child .table__item-title {
    position: static
}

.desktop-dating-romantic .table tbody tr .table__item-title:after, .desktop-dating-romantic .table tbody tr:first-child .table__item-title:after, .global-dating-romantic-style .table tbody tr .table__item-title:after, .global-dating-romantic-style .table tbody tr:first-child .table__item-title:after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    display: inline-block;
    height: 0;
    width: 0;
    -webkit-transform: rotate(1turn);
    border-color: #ff008a transparent transparent #ff008a;
    border-style: solid;
    border-width: 1.375rem
}

.desktop-dating-romantic .table tbody tr .table__item-num, .desktop-dating-romantic .table tbody tr:first-child .table__item-num, .global-dating-romantic-style .table tbody tr .table__item-num, .global-dating-romantic-style .table tbody tr:first-child .table__item-num {
    display: block;
    padding: .1875rem 0 0 .4375rem;
    position: absolute;
    top: -1px;
    left: 0;
    width: 2.75rem;
    height: 2.75rem;
    z-index: 1;
    margin: 0;
    border-radius: 0;
    background: transparent !important;
    font-size: 1.25rem;
    font-family: Roboto Medium, Arial, sans-serif;
    line-height: 1;
    text-shadow: none;
    -webkit-transform: none;
    transform: none;
    text-align: left
}

.desktop-dating-romantic .table tbody tr .table__link, .global-dating-romantic-style .table tbody tr .table__link {
    color: inherit
}

.desktop-dating-romantic .table tbody tr .table__score-desc span, .global-dating-romantic-style .table tbody tr .table__score-desc span {
    color: #be2277
}

.contact .desktop-dating-romantic .table tbody tr .table__col-links .wpcf7-submit, .contact .global-dating-romantic-style .table tbody tr .table__col-links .wpcf7-submit, .desktop-dating-romantic .table tbody tr .table__col-links .btn, .desktop-dating-romantic .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-dating-romantic .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .global-dating-romantic-style .table tbody tr .table__col-links .btn, .global-dating-romantic-style .table tbody tr .table__col-links .contact .wpcf7-submit, .global-dating-romantic-style .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-dating-romantic .table tbody tr .table__col-links input[type=submit], .popup__form .wpcf7-form .global-dating-romantic-style .table tbody tr .table__col-links input[type=submit] {
    background: -webkit-gradient(linear, left bottom, left top, from(#f48400), color-stop(76%, #ff008a));
    background: linear-gradient(0deg, #f48400, #ff008a 76%)
}

.desktop-dating-romantic .table tbody tr .rate, .desktop-dating-romantic .table tbody tr .rate span, .global-dating-romantic-style .table tbody tr .rate, .global-dating-romantic-style .table tbody tr .rate span {
    background-image: url(icon-hearts-score.svg)
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .nav__menu li, .desktop-dating-romantic .nav__menu li, .global-dating-romantic-style .nav__menu li {
        margin: 0 .5625rem;
        font-family: Roboto Regular, Arial, sans-serif;
        font-size: 1rem
    }

    .desktop-dating-alternative .nav__menu li:after, .desktop-dating-romantic .nav__menu li:after, .global-dating-romantic-style .nav__menu li:after {
        display: none
    }

    .desktop-dating-alternative .nav__menu li a, .desktop-dating-romantic .nav__menu li a, .global-dating-romantic-style .nav__menu li a {
        letter-spacing: 0
    }

    .desktop-dating-alternative .hero__container, .desktop-dating-romantic .hero__container, .global-dating-romantic-style .hero__container {
        position: relative;
        z-index: 4;
        padding: 0 .625rem
    }

    .desktop-dating-alternative .hero, .desktop-dating-romantic .hero, .global-dating-romantic-style .hero {
        min-height: 15rem
    }
}

@media screen and (min-width: 768px) and (max-width: 889px) {
    .desktop-dating-alternative .hero, .desktop-dating-romantic .hero, .global-dating-romantic-style .hero {
        margin-bottom: .0625rem
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .hero .hero__badge, .desktop-dating-romantic .hero .hero__badge, .global-dating-romantic-style .hero .hero__badge {
        display: block
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .hero .hero__image, .desktop-dating-alternative .hero .hero__video, .desktop-dating-romantic .hero .hero__image, .desktop-dating-romantic .hero .hero__video, .global-dating-romantic-style .hero .hero__image, .global-dating-romantic-style .hero .hero__video {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        margin: 0;
        max-width: none
    }
}

@media screen and (min-width: 768px) and (max-width: 889px) {
    .desktop-dating-alternative .hero .hero__image, .desktop-dating-alternative .hero .hero__video, .desktop-dating-romantic .hero .hero__image, .desktop-dating-romantic .hero .hero__video, .global-dating-romantic-style .hero .hero__image, .global-dating-romantic-style .hero .hero__video {
        right: -1px
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .hero .hero__image img, .desktop-dating-alternative .hero .hero__video img, .desktop-dating-romantic .hero .hero__image img, .desktop-dating-romantic .hero .hero__video img, .global-dating-romantic-style .hero .hero__image img, .global-dating-romantic-style .hero .hero__video img {
        height: 100%
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .hero .hero__image-mobile, .desktop-dating-alternative .hero .hero__image:after, .desktop-dating-alternative .hero .hero__image:before, .desktop-dating-alternative .hero .hero__video, .desktop-dating-alternative .hero .hero__video:after, .desktop-dating-alternative .hero .hero__video:before, .desktop-dating-romantic .hero .hero__image-mobile, .desktop-dating-romantic .hero .hero__image:after, .desktop-dating-romantic .hero .hero__image:before, .desktop-dating-romantic .hero .hero__video, .desktop-dating-romantic .hero .hero__video:after, .desktop-dating-romantic .hero .hero__video:before, .global-dating-romantic-style .hero .hero__image-mobile, .global-dating-romantic-style .hero .hero__image:after, .global-dating-romantic-style .hero .hero__image:before, .global-dating-romantic-style .hero .hero__video, .global-dating-romantic-style .hero .hero__video:after, .global-dating-romantic-style .hero .hero__video:before {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .hero .hero__badge, .desktop-dating-romantic .hero .hero__badge, .global-dating-romantic-style .hero .hero__badge {
        position: absolute;
        top: .25rem;
        right: 1.125rem;
        width: auto;
        height: auto
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .hero .hero__text, .desktop-dating-romantic .hero .hero__text, .global-dating-romantic-style .hero .hero__text {
        position: static;
        width: 100%;
        margin-bottom: 1.875rem
    }

    .desktop-dating-alternative .hero .hero__text .hero__subtitle, .desktop-dating-alternative .hero .hero__text .hero__title, .desktop-dating-romantic .hero .hero__text .hero__subtitle, .desktop-dating-romantic .hero .hero__text .hero__title, .global-dating-romantic-style .hero .hero__text .hero__subtitle, .global-dating-romantic-style .hero .hero__text .hero__title {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 70%;
        text-align: left
    }

    .desktop-dating-alternative .hero .hero__text .hero__title, .desktop-dating-romantic .hero .hero__text .hero__title, .global-dating-romantic-style .hero .hero__text .hero__title {
        margin-bottom: .8125rem;
        margin-top: 0;
        font-family: Roboto Medium, Arial, sans-serif;
        font-size: 2.5rem;
        color: #303030
    }

    .desktop-dating-alternative .hero .hero__text .hero__title--lg, .desktop-dating-romantic .hero .hero__text .hero__title--lg, .global-dating-romantic-style .hero .hero__text .hero__title--lg {
        font-size: 3.125em
    }

    .desktop-dating-alternative .hero .hero__text .hero__title--sm, .desktop-dating-romantic .hero .hero__text .hero__title--sm, .global-dating-romantic-style .hero .hero__text .hero__title--sm {
        font-size: 2.25em
    }

    .desktop-dating-alternative .hero .hero__text .hero__title--xs, .desktop-dating-romantic .hero .hero__text .hero__title--xs, .global-dating-romantic-style .hero .hero__text .hero__title--xs {
        font-size: 1.875em
    }

    .desktop-dating-alternative .hero .hero__text .hero__subtitle, .desktop-dating-romantic .hero .hero__text .hero__subtitle, .global-dating-romantic-style .hero .hero__text .hero__subtitle {
        font-family: Roboto Light, Arial, sans-serif;
        font-size: 1.5625rem;
        color: #202020
    }

    .desktop-dating-alternative .hero .hero__text .hero__subtitle--lg, .desktop-dating-romantic .hero .hero__text .hero__subtitle--lg, .global-dating-romantic-style .hero .hero__text .hero__subtitle--lg {
        font-size: 1.875em
    }

    .desktop-dating-alternative .hero .hero__text .hero__subtitle--sm, .desktop-dating-romantic .hero .hero__text .hero__subtitle--sm, .global-dating-romantic-style .hero .hero__text .hero__subtitle--sm {
        font-size: 1.125em
    }

    .desktop-dating-alternative .hero .hero__text .hero__subtitle--xs, .desktop-dating-romantic .hero .hero__text .hero__subtitle--xs, .global-dating-romantic-style .hero .hero__text .hero__subtitle--xs {
        font-size: 1em
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table, .desktop-dating-romantic .table, .global-dating-romantic-style .table {
        position: relative;
        z-index: 4;
        max-width: unset;
        box-shadow: none
    }

    .desktop-dating-alternative .table tr, .desktop-dating-romantic .table tr, .global-dating-romantic-style .table tr {
        display: -webkit-box;
        display: flex;
        width: 100%
    }

    .desktop-dating-alternative .table tr td, .desktop-dating-alternative .table tr th, .desktop-dating-romantic .table tr td, .desktop-dating-romantic .table tr th, .global-dating-romantic-style .table tr td, .global-dating-romantic-style .table tr th {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center
    }

    .desktop-dating-alternative .table tr td:last-child, .desktop-dating-alternative .table tr th:last-child, .desktop-dating-romantic .table tr td:last-child, .desktop-dating-romantic .table tr th:last-child, .global-dating-romantic-style .table tr td:last-child, .global-dating-romantic-style .table tr th:last-child {
        width: 21.5%
    }

    .desktop-dating-alternative .table tr td.table__col-links, .desktop-dating-alternative .table tr th.table__col-links, .desktop-dating-romantic .table tr td.table__col-links, .desktop-dating-romantic .table tr th.table__col-links, .global-dating-romantic-style .table tr td.table__col-links, .global-dating-romantic-style .table tr th.table__col-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse
    }

    .desktop-dating-alternative .table thead tr, .desktop-dating-romantic .table thead tr, .global-dating-romantic-style .table thead tr {
        background-color: #1b1b1b;
        color: #fff;
        font-family: Roboto Regular, Arial, sans-serif;
        font-size: 1rem
    }

    .desktop-dating-alternative .table thead tr th:last-of-type, .desktop-dating-romantic .table thead tr th:last-of-type, .global-dating-romantic-style .table thead tr th:last-of-type {
        -webkit-box-align: center;
        align-items: center
    }

    .desktop-dating-alternative .table tbody tr, .desktop-dating-romantic .table tbody tr, .global-dating-romantic-style .table tbody tr {
        margin-bottom: 14px
    }

    .desktop-dating-alternative .table tbody tr td, .desktop-dating-romantic .table tbody tr td, .global-dating-romantic-style .table tbody tr td {
        float: none;
        margin: 0;
        font-size: 1em
    }

    .desktop-dating-alternative .table tbody tr, .desktop-dating-alternative .table tbody tr:first-child, .desktop-dating-romantic .table tbody tr, .desktop-dating-romantic .table tbody tr:first-child, .global-dating-romantic-style .table tbody tr, .global-dating-romantic-style .table tbody tr:first-child {
        border: 0
    }

    .desktop-dating-alternative .table tbody tr:last-child, .desktop-dating-romantic .table tbody tr:last-child, .global-dating-romantic-style .table tbody tr:last-child {
        margin-bottom: 0
    }

    .desktop-dating-alternative .table tbody tr .table__item-title, .desktop-dating-romantic .table tbody tr .table__item-title, .global-dating-romantic-style .table tbody tr .table__item-title {
        height: 8.75em
    }

    .desktop-dating-alternative .table tbody tr .table__item-logo, .desktop-dating-romantic .table tbody tr .table__item-logo, .global-dating-romantic-style .table tbody tr .table__item-logo {
        margin: 0 auto
    }

    .desktop-dating-alternative .table tbody tr .table__col-title, .desktop-dating-romantic .table tbody tr .table__col-title, .global-dating-romantic-style .table tbody tr .table__col-title {
        width: 32.5%;
        padding-left: 1.5rem
    }

    .desktop-dating-alternative .table tbody tr .table__col-features, .desktop-dating-romantic .table tbody tr .table__col-features, .global-dating-romantic-style .table tbody tr .table__col-features {
        width: 29%;
        padding-top: 1.125rem;
        padding-bottom: 2.5rem
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .desktop-dating-alternative .table tbody tr .table__col-features, .desktop-dating-romantic .table tbody tr .table__col-features, .global-dating-romantic-style .table tbody tr .table__col-features {
        padding-bottom: 1.125rem
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__col-score, .desktop-dating-romantic .table tbody tr .table__col-score, .global-dating-romantic-style .table tbody tr .table__col-score {
        width: 17%;
        padding-right: 0;
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__col-links, .desktop-dating-romantic .table tbody tr .table__col-links, .global-dating-romantic-style .table tbody tr .table__col-links {
        width: 21.5%
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .desktop-dating-alternative .table tbody tr .table__col-links, .desktop-dating-romantic .table tbody tr .table__col-links, .global-dating-romantic-style .table tbody tr .table__col-links {
        padding: .625rem .625rem .625rem .3125rem
    }

    .contact .desktop-dating-alternative .table tbody tr .table__col-links .wpcf7-submit, .contact .desktop-dating-romantic .table tbody tr .table__col-links .wpcf7-submit, .contact .global-dating-romantic-style .table tbody tr .table__col-links .wpcf7-submit, .desktop-dating-alternative .table tbody tr .table__col-links .btn, .desktop-dating-alternative .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-dating-alternative .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .desktop-dating-romantic .table tbody tr .table__col-links .btn, .desktop-dating-romantic .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-dating-romantic .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .global-dating-romantic-style .table tbody tr .table__col-links .btn, .global-dating-romantic-style .table tbody tr .table__col-links .contact .wpcf7-submit, .global-dating-romantic-style .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-dating-alternative .table tbody tr .table__col-links input[type=submit], .popup__form .wpcf7-form .desktop-dating-romantic .table tbody tr .table__col-links input[type=submit], .popup__form .wpcf7-form .global-dating-romantic-style .table tbody tr .table__col-links input[type=submit] {
        font-size: .8125rem
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__features-top, .desktop-dating-romantic .table tbody tr .table__features-top, .global-dating-romantic-style .table tbody tr .table__features-top {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        margin-bottom: .875rem;
        padding-left: .5625rem
    }

    .desktop-dating-alternative .table tbody tr .table__features-top .rate, .desktop-dating-romantic .table tbody tr .table__features-top .rate, .global-dating-romantic-style .table tbody tr .table__features-top .rate {
        margin-top: -.125rem;
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
}

@media screen and (min-width: 768px) and (max-width: 889px) {
    .desktop-dating-alternative .table tbody tr .table__features-top, .desktop-dating-romantic .table tbody tr .table__features-top, .global-dating-romantic-style .table tbody tr .table__features-top {
        padding-left: 0
    }

    .desktop-dating-alternative .table tbody tr .table__features-top .rate, .desktop-dating-romantic .table tbody tr .table__features-top .rate, .global-dating-romantic-style .table tbody tr .table__features-top .rate {
        -webkit-transform: none;
        transform: none
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__features-title, .desktop-dating-romantic .table tbody tr .table__features-title, .global-dating-romantic-style .table tbody tr .table__features-title {
        margin-right: .75em;
        font-size: 1.5em;
        font-family: Roboto Medium, Arial, sans-serif;
        line-height: .9
    }
}

@media screen and (min-width: 768px) and (max-width: 889px) {
    .desktop-dating-alternative .table tbody tr .table__features-title, .desktop-dating-romantic .table tbody tr .table__features-title, .global-dating-romantic-style .table tbody tr .table__features-title {
        font-size: 1.25em
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__features-list, .desktop-dating-romantic .table tbody tr .table__features-list, .global-dating-romantic-style .table tbody tr .table__features-list {
        visibility: visible !important;
        height: auto !important;
        width: auto !important;
        margin-top: 0;
        padding-right: 22%;
        -webkit-font-smoothing: antialiased
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__score-title, .desktop-dating-romantic .table tbody tr .table__score-title, .global-dating-romantic-style .table tbody tr .table__score-title {
        font-size: 3.75em
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__score-desc, .desktop-dating-romantic .table tbody tr .table__score-desc, .global-dating-romantic-style .table tbody tr .table__score-desc {
        color: #6b6464
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__features, .desktop-dating-romantic .table tbody tr .table__features, .global-dating-romantic-style .table tbody tr .table__features {
        margin: 0
    }
}

@media screen and (min-width: 768px) and (max-width: 889px) {
    .desktop-dating-alternative .table tbody tr .table__features, .desktop-dating-romantic .table tbody tr .table__features, .global-dating-romantic-style .table tbody tr .table__features {
        padding: 0
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__features-links, .desktop-dating-romantic .table tbody tr .table__features-links, .global-dating-romantic-style .table tbody tr .table__features-links {
        margin: 0
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-alternative .table tbody tr .table__features-item, .desktop-dating-romantic .table tbody tr .table__features-item, .global-dating-romantic-style .table tbody tr .table__features-item {
        position: relative;
        padding-left: 1.25rem
    }

    .desktop-dating-alternative .table tbody tr .table__features-item img, .desktop-dating-alternative .table tbody tr .table__features-item svg, .desktop-dating-romantic .table tbody tr .table__features-item img, .desktop-dating-romantic .table tbody tr .table__features-item svg, .global-dating-romantic-style .table tbody tr .table__features-item img, .global-dating-romantic-style .table tbody tr .table__features-item svg {
        position: absolute;
        top: .375rem;
        left: 0;
        width: .9375rem
    }
}

@media screen and (min-width: 768px) and (max-width: 1099px) {
    .desktop-dating-alternative .table tbody tr .table__features-item img, .desktop-dating-alternative .table tbody tr .table__features-item svg, .desktop-dating-romantic .table tbody tr .table__features-item img, .desktop-dating-romantic .table tbody tr .table__features-item svg, .global-dating-romantic-style .table tbody tr .table__features-item img, .global-dating-romantic-style .table tbody tr .table__features-item svg {
        top: .0625rem
    }
}

@media screen and (min-width: 768px) {
    .desktop-dating-romantic {
        -webkit-font-smoothing: antialiased
    }

    .desktop-dating-romantic .hero .hero__text {
        margin-bottom: 0;
        -webkit-font-smoothing: antialiased;
        color: #3b3b3b
    }

    .desktop-dating-romantic .hero .hero__text .hero__title {
        color: inherit
    }

    .desktop-dating-romantic .hero .hero__text .hero__subtitle {
        max-width: 48.4375rem;
        margin-bottom: 0;
        font-size: 1.25rem;
        color: inherit
    }

    .desktop-dating-romantic .hero .hero__text .hero__subtitle--lg {
        font-size: 1.875em
    }

    .desktop-dating-romantic .hero .hero__text .hero__subtitle--sm {
        font-size: 1.125em
    }

    .desktop-dating-romantic .hero .hero__text .hero__subtitle--xs {
        font-size: 1em
    }

    .desktop-dating-romantic .table tbody tr .table__popup-opener {
        display: block
    }

    .desktop-dating-romantic .table tbody tr .table__score-desc i {
        display: none
    }
}

@media screen and (min-width: 768px) and (max-width: 889px) {
    .desktop-dating-romantic .hero__subtitle {
        padding-right: 25%
    }

    .desktop-dating-romantic .hero__image.hero__image.hero__image, .desktop-dating-romantic .hero__video, .desktop-dating-romantic .table__features-list.table__features-list.table__features-list {
        height: auto;
        width: auto;
        visibility: visible;
        margin: .21428571em 0 0 -1.5em
    }

    .desktop-dating-romantic .table tbody tr .table__col-links, .desktop-dating-romantic .table tbody tr .table__col-title {
        padding-left: 0
    }

    .contact .desktop-dating-romantic .table tbody tr .table__col-links .wpcf7-submit, .contact .desktop-dating-romantic .table tbody tr .table__col-title .wpcf7-submit, .desktop-dating-romantic .table tbody tr .table__col-links .btn, .desktop-dating-romantic .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-dating-romantic .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .desktop-dating-romantic .table tbody tr .table__col-title .btn, .desktop-dating-romantic .table tbody tr .table__col-title .contact .wpcf7-submit, .desktop-dating-romantic .table tbody tr .table__col-title .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-dating-romantic .table tbody tr .table__col-links input[type=submit], .popup__form .wpcf7-form .desktop-dating-romantic .table tbody tr .table__col-title input[type=submit] {
        font-size: .875rem
    }

    .desktop-dating-romantic .table__col-features {
        padding: 1.25em 0
    }

    .desktop-dating-romantic .table__item-title {
        margin: 0;
        width: auto
    }
}

@media screen and (min-width: 768px) {
    .global-5mejorespaginas-paraligar-es .table tbody tr .table__item-title:after, .global-5mejorespaginas-paraligar-es .table tbody tr:first-child .table__item-title:after {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px
    }

    .global-5mejorespaginas-paraligar-es .table thead {
        border-left: 2px solid #1b1b1b;
        border-right: 2px solid #1b1b1b
    }

    .contact .global-5mejorespaginas-paraligar-es .table__col-links a.wpcf7-submit, .global-5mejorespaginas-paraligar-es .table__col-links .contact a.wpcf7-submit, .global-5mejorespaginas-paraligar-es .table__col-links a.btn {
        -webkit-box-ordinal-group: 3;
        order: 2
    }

    .global-5mejorespaginas-paraligar-es .table__col-links span.below_visit_site {
        -webkit-box-ordinal-group: 2;
        order: 1;
        text-align: center;
        text-transform: uppercase;
        font-weight: 700;
        padding-top: 10px
    }
}

@media screen and (max-width: 1023px) {
    .desktop-dating-alternative .header__container, .desktop-dating-romantic .header__container, .global-dating-romantic-style .header__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse
    }
}

@media screen and (max-width: 767px) {
    .desktop-dating-alternative .header, .desktop-dating-romantic .header, .global-dating-romantic-style .header {
        box-shadow: none
    }

    .desktop-dating-alternative .hero, .desktop-dating-romantic .hero, .global-dating-romantic-style .hero {
        -webkit-box-pack: end;
        justify-content: flex-end;
        margin-bottom: .3125rem;
        padding: 4.6875rem 0 0;
        min-height: 7.5rem;
        font-size: inherit
    }

    .desktop-dating-alternative .hero__image-mobile, .desktop-dating-alternative .hero__video, .desktop-dating-romantic .hero__image-mobile, .desktop-dating-romantic .hero__video, .global-dating-romantic-style .hero__image-mobile, .global-dating-romantic-style .hero__video {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: unset;
        padding: 0
    }

    .desktop-dating-alternative .hero__image-mobile img, .desktop-dating-alternative .hero__video img, .desktop-dating-romantic .hero__image-mobile img, .desktop-dating-romantic .hero__video img, .global-dating-romantic-style .hero__image-mobile img, .global-dating-romantic-style .hero__video img {
        width: 100%;
        height: 100%;
        min-height: unset;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: cover; object-position: center"
    }

    .desktop-dating-alternative .hero__image:not(.hero__image-mobile):not(.hero__video), .desktop-dating-alternative .hero__video:not(.hero__image-mobile):not(.hero__video), .desktop-dating-romantic .hero__image:not(.hero__image-mobile):not(.hero__video), .desktop-dating-romantic .hero__video:not(.hero__image-mobile):not(.hero__video), .global-dating-romantic-style .hero__image:not(.hero__image-mobile):not(.hero__video), .global-dating-romantic-style .hero__video:not(.hero__image-mobile):not(.hero__video) {
        display: none
    }

    .desktop-dating-alternative .hero__text, .desktop-dating-romantic .hero__text, .global-dating-romantic-style .hero__text {
        position: relative;
        margin: 0;
        padding: .4375rem .3125rem .3125rem;
        background-color: rgba(27, 27, 27, .6)
    }

    .desktop-dating-alternative .hero__title, .desktop-dating-romantic .hero__title, .global-dating-romantic-style .hero__title {
        margin: 0 0 .125rem;
        font-size: 1.0625rem;
        font-family: Roboto Medium, Arial, sans-serif
    }

    .desktop-dating-alternative .hero__title--lg, .desktop-dating-romantic .hero__title--lg, .global-dating-romantic-style .hero__title--lg {
        font-size: 1.1875em
    }

    .desktop-dating-alternative .hero__title--sm, .desktop-dating-romantic .hero__title--sm, .global-dating-romantic-style .hero__title--sm {
        font-size: .9375em
    }

    .desktop-dating-alternative .hero__title--xs, .desktop-dating-romantic .hero__title--xs, .global-dating-romantic-style .hero__title--xs {
        font-size: .8125em
    }

    .desktop-dating-alternative .hero__subtitle, .desktop-dating-romantic .hero__subtitle, .global-dating-romantic-style .hero__subtitle {
        margin: 0;
        font-size: .75rem;
        font-family: Roboto Medium, Arial, sans-serif
    }

    .desktop-dating-alternative .hero__subtitle--lg, .desktop-dating-romantic .hero__subtitle--lg, .global-dating-romantic-style .hero__subtitle--lg {
        font-size: .875em
    }

    .desktop-dating-alternative .hero__subtitle--sm, .desktop-dating-romantic .hero__subtitle--sm, .global-dating-romantic-style .hero__subtitle--sm {
        font-size: .625em
    }

    .desktop-dating-alternative .hero__subtitle--xs, .desktop-dating-romantic .hero__subtitle--xs, .global-dating-romantic-style .hero__subtitle--xs {
        font-size: .5em
    }

    .desktop-dating-alternative .hero__badge, .desktop-dating-romantic .hero__badge, .global-dating-romantic-style .hero__badge {
        position: absolute;
        bottom: calc(100% + 9px);
        left: .3125rem;
        display: block;
        max-width: 3.625rem
    }

    .desktop-dating-alternative .branding, .desktop-dating-romantic .branding, .global-dating-romantic-style .branding {
        margin-left: .875rem
    }

    .desktop-dating-alternative .table, .desktop-dating-romantic .table, .global-dating-romantic-style .table {
        font-size: 1rem;
        box-shadow: none
    }

    .desktop-dating-alternative .table tbody tr, .desktop-dating-romantic .table tbody tr, .global-dating-romantic-style .table tbody tr {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        margin-bottom: .5625rem;
        padding-bottom: .75rem;
        border-width: 0
    }

    .desktop-dating-alternative .table tbody tr:first-child, .desktop-dating-romantic .table tbody tr:first-child, .global-dating-romantic-style .table tbody tr:first-child {
        box-shadow: 0 14px 32px rgba(47, 46, 46, .16);
        border-width: 2px;
        border-style: solid
    }

    .desktop-dating-alternative .table tbody tr td, .desktop-dating-romantic .table tbody tr td, .global-dating-romantic-style .table tbody tr td {
        -webkit-box-ordinal-group: 2;
        order: 1;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center
    }

    .desktop-dating-alternative .table tbody tr .table__col-links, .desktop-dating-romantic .table tbody tr .table__col-links, .global-dating-romantic-style .table tbody tr .table__col-links {
        -webkit-box-ordinal-group: 2 !important;
        order: 1 !important
    }

    .contact .desktop-dating-alternative .table tbody tr .table__col-links .wpcf7-submit, .contact .desktop-dating-romantic .table tbody tr .table__col-links .wpcf7-submit, .contact .global-dating-romantic-style .table tbody tr .table__col-links .wpcf7-submit, .desktop-dating-alternative .table tbody tr .table__col-links .btn, .desktop-dating-alternative .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-dating-alternative .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .desktop-dating-romantic .table tbody tr .table__col-links .btn, .desktop-dating-romantic .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-dating-romantic .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .global-dating-romantic-style .table tbody tr .table__col-links .btn, .global-dating-romantic-style .table tbody tr .table__col-links .contact .wpcf7-submit, .global-dating-romantic-style .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-dating-alternative .table tbody tr .table__col-links input[type=submit], .popup__form .wpcf7-form .desktop-dating-romantic .table tbody tr .table__col-links input[type=submit], .popup__form .wpcf7-form .global-dating-romantic-style .table tbody tr .table__col-links input[type=submit] {
        -webkit-box-ordinal-group: 5;
        order: 4;
        height: 3.125rem;
        max-width: 13.75rem;
        font-size: 1.125rem;
        font-family: Roboto Medium, Arial, sans-serif;
        padding: 0 .625rem;
        margin-bottom: .625rem
    }

    .desktop-dating-alternative .table tbody tr .table__col-features, .desktop-dating-romantic .table tbody tr .table__col-features, .global-dating-romantic-style .table tbody tr .table__col-features {
        -webkit-box-ordinal-group: 3;
        order: 2
    }

    .desktop-dating-alternative .table tbody tr .table__features, .desktop-dating-romantic .table tbody tr .table__features, .global-dating-romantic-style .table tbody tr .table__features {
        padding: 0;
        margin: 0
    }

    .desktop-dating-alternative .table tbody tr .table__features-links, .desktop-dating-romantic .table tbody tr .table__features-links, .global-dating-romantic-style .table tbody tr .table__features-links {
        margin: 0;
        font-size: .8125rem
    }

    .desktop-dating-alternative .table tbody tr .table__item-title, .desktop-dating-romantic .table tbody tr .table__item-title, .global-dating-romantic-style .table tbody tr .table__item-title {
        margin: 0 auto;
        background-color: transparent;
        height: 5.625rem
    }

    .desktop-dating-alternative .table tbody tr .table__item-title img, .desktop-dating-romantic .table tbody tr .table__item-title img, .global-dating-romantic-style .table tbody tr .table__item-title img {
        height: 100%;
        margin: 0 auto
    }

    .desktop-dating-alternative .table tbody tr .table__score, .desktop-dating-romantic .table tbody tr .table__score, .global-dating-romantic-style .table tbody tr .table__score {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        margin-bottom: .625rem
    }

    .desktop-dating-alternative .table tbody tr .table__score-title, .desktop-dating-romantic .table tbody tr .table__score-title, .global-dating-romantic-style .table tbody tr .table__score-title {
        margin-bottom: 0;
        font-size: 2.375rem;
        -webkit-font-smoothing: antialiased
    }

    .desktop-dating-alternative .table tbody tr .table__score-desc, .desktop-dating-romantic .table tbody tr .table__score-desc, .global-dating-romantic-style .table tbody tr .table__score-desc {
        font-size: .6875rem
    }

    .desktop-dating-alternative .table tbody tr .table__score-desc span, .desktop-dating-romantic .table tbody tr .table__score-desc span, .global-dating-romantic-style .table tbody tr .table__score-desc span {
        color: #be2277
    }

    .desktop-dating-alternative .table tbody tr .rate, .desktop-dating-romantic .table tbody tr .rate, .global-dating-romantic-style .table tbody tr .rate {
        -webkit-box-ordinal-group: 4;
        order: 3
    }

    .desktop-dating-alternative .table tbody tr .table__popup-opener, .desktop-dating-romantic .table tbody tr .table__popup-opener, .global-dating-romantic-style .table tbody tr .table__popup-opener {
        display: none
    }

    .desktop-dating-alternative .table tbody tr .table__dynamic-tooltip, .desktop-dating-romantic .table tbody tr .table__dynamic-tooltip, .global-dating-romantic-style .table tbody tr .table__dynamic-tooltip {
        z-index: 1;
        top: calc(100% + 10px);
        bottom: auto
    }

    .desktop-dating-alternative .table tbody tr .table__dynamic-tooltip:after, .desktop-dating-romantic .table tbody tr .table__dynamic-tooltip:after, .global-dating-romantic-style .table tbody tr .table__dynamic-tooltip:after {
        top: -4px;
        bottom: auto
    }

    .desktop-dating-alternative .table tbody tr .table__underbtntext, .desktop-dating-romantic .table tbody tr .table__underbtntext, .global-dating-romantic-style .table tbody tr .table__underbtntext {
        -webkit-box-ordinal-group: 6;
        order: 5
    }

    .desktop-dating-romantic .hero {
        margin-bottom: 0
    }

    .desktop-dating-romantic .hero__text {
        margin-bottom: .625rem
    }

    .desktop-dating-romantic .hero__text .hero__subtitle {
        margin-bottom: 0
    }

    .desktop-dating-romantic .table tbody tr:first-child {
        border-width: 0;
        box-shadow: 0 0 0 1px #d7d7d7, 0 14px 32px rgba(47, 46, 46, .16)
    }

    .mobile-alternative-view--dating-spain .hero {
        padding-bottom: .3125rem
    }
}

@media screen and (max-width: 767px) and (min-width: 360px) {
    .mobile-alternative-view--dating-spain .hero {
        margin: 0 .5625rem
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view--dating-spain .hero__subtitle .date {
        white-space: nowrap
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view--dating-spain .hero__image, .mobile-alternative-view--dating-spain .hero__video {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: end;
        justify-content: flex-end
    }

    .mobile-alternative-view--dating-spain .hero__image img, .mobile-alternative-view--dating-spain .hero__video img {
        width: auto
    }
}

@media screen and (max-width: 767px) {
    .mobile-alternative-view--dating-spain .table tbody tr {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        flex-wrap: nowrap;
        padding-bottom: 0
    }

    .mobile-alternative-view--dating-spain .table tbody tr:first-child {
        border: 0;
        box-shadow: 0 0 0 1px #d7d7d7, 0 14px 32px rgba(47, 46, 46, .16)
    }

    .mobile-alternative-view--dating-spain .table tbody tr .table__col--wrap {
        min-height: 11.875rem
    }

    .mobile-alternative-view--dating-spain .table tbody tr .table__col--wrap:first-of-type {
        background: -webkit-gradient(linear, right top, left top, from(#ededed), color-stop(32%, #fff));
        background: linear-gradient(270deg, #ededed 0, #fff 32%)
    }

    .mobile-alternative-view--dating-spain .table tbody tr .table__col--wrap:last-of-type {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
        padding: .5rem
    }

    .mobile-alternative-view--dating-spain .table tbody tr td.table__col-title {
        position: static
    }

    .mobile-alternative-view--dating-spain .table tbody tr td.table__col-title .table__badge {
        max-width: 7.375rem;
        top: -8px;
        left: -8px
    }

    .mobile-alternative-view--dating-spain .table tbody tr td.table__col-title .table__item-title {
        width: 100%;
        height: 5rem;
        margin-top: 1.25rem
    }

    .mobile-alternative-view--dating-spain .table tbody tr td.table__col-score .table__score {
        -webkit-box-align: center;
        align-items: center
    }

    .mobile-alternative-view--dating-spain .table tbody tr td.table__col-score .table__score .rate {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    .mobile-alternative-view--dating-spain .table tbody tr .table__score-title {
        font-size: 3rem
    }

    .mobile-alternative-view--dating-spain .table tbody tr .table__score-desc {
        margin: 0 0 .875rem
    }

    .mobile-alternative-view--dating-spain .table tbody tr .table__underbtntext {
        margin: 0 0 .4375rem;
        font-size: 1rem
    }

    .contact .mobile-alternative-view--dating-spain .table tbody tr .table__col-links .wpcf7-submit, .mobile-alternative-view--dating-spain .table tbody tr .table__col-links .btn, .mobile-alternative-view--dating-spain .table tbody tr .table__col-links .contact .wpcf7-submit, .mobile-alternative-view--dating-spain .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .mobile-alternative-view--dating-spain .table tbody tr .table__col-links input[type=submit] {
        height: 2.5rem;
        padding: 0 .1875rem;
        font-size: 1rem
    }

    .mobile-alternative-view--dating-spain .table tbody tr .table__link {
        margin-top: .3125rem
    }
}

@media screen and (max-width: 767px) {
    .global-dating-romantic-style .table {
        margin-top: 2px
    }
}

@media screen and (min-width: 420px) and (max-width: 889px) {
    .desktop-dating-alternative .table tbody tr .table__item-logo {
        margin: 0
    }

    .desktop-dating-alternative .table tbody tr .table__col-title {
        padding-left: 10px
    }

    .desktop-dating-alternative .hero__image.mobilehidden.mobilehidden.mobilehidden.mobilehidden, .desktop-dating-alternative .mobilehidden.mobilehidden.mobilehidden.mobilehidden.hero__video {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        margin: 0;
        visibility: visible;
        width: unset;
        min-height: unset;
        max-width: unset
    }

    .desktop-dating-alternative .table__col-title .mobilehidden.mobilehidden.mobilehidden.mobilehidden {
        display: block;
        visibility: visible
    }
}

@-moz-document url-prefix() {
    .desktop-dating-romantic .table_loaded:not(.table--first-row-default) tbody tr:first-child, .global-5mejorespaginas-paraligar-es .table_loaded:not(.table--first-row-default) tbody tr:first-child, .global-dating-romantic-style .table_loaded:not(.table--first-row-default) tbody tr:first-child {
        border: 0;
        box-shadow: 0 0 0 1px #d7d7d7, 0 14px 32px rgba(47, 46, 46, .16)
    }
    .desktop-dating-romantic .hero__image img, .desktop-dating-romantic .hero__video img, .global-5mejorespaginas-paraligar-es .hero__image img, .global-5mejorespaginas-paraligar-es .hero__video img, .global-dating-romantic-style .hero__image img, .global-dating-romantic-style .hero__video img {
        width: -moz-max-content
    }
}

.desktop-mortgage-new b, .desktop-mortgage-new strong, .global-mortgage-style b, .global-mortgage-style strong {
    font-weight: 400
}

.desktop-mortgage-new .post__content--brand img, .global-mortgage-style .post__content--brand img {
    max-width: 13.75rem
}

.desktop-mortgage-new .container, .desktop-mortgage-new .footer__cookie-decline-text, .desktop-mortgage-new .footer__disclaimer-text, .global-mortgage-style .container, .global-mortgage-style .footer__cookie-decline-text, .global-mortgage-style .footer__disclaimer-text {
    max-width: 76rem
}

.desktop-mortgage-new .header, .global-mortgage-style .header {
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1)
}

.desktop-mortgage-new .nav__menu li:after, .global-mortgage-style .nav__menu li:after {
    display: none
}

.desktop-mortgage-new .nav__menu a, .global-mortgage-style .nav__menu a {
    font-family: Roboto Regular, Arial, sans-serif;
    font-size: 1rem
}

.desktop-mortgage-new .hero__text, .global-mortgage-style .hero__text {
    margin: 0
}

.desktop-mortgage-new .hero__image, .desktop-mortgage-new .hero__video, .global-mortgage-style .hero__image, .global-mortgage-style .hero__video {
    height: 100%;
    width: 100%;
    max-width: unset;
    min-height: unset;
    top: 0;
    margin: 0;
    z-index: -1
}

.desktop-mortgage-new .hero__image:after, .desktop-mortgage-new .hero__image:before, .desktop-mortgage-new .hero__video:after, .desktop-mortgage-new .hero__video:before, .global-mortgage-style .hero__image:after, .global-mortgage-style .hero__image:before, .global-mortgage-style .hero__video:after, .global-mortgage-style .hero__video:before {
    display: none
}

.desktop-mortgage-new .hero__image img, .desktop-mortgage-new .hero__video img, .global-mortgage-style .hero__image img, .global-mortgage-style .hero__video img {
    width: 100%;
    min-height: unset
}

.desktop-mortgage-new .table__badge, .global-mortgage-style .table__badge {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    padding: 0;
    margin: 0;
    font-size: 1.125rem;
    font-family: Roboto Medium, Arial, sans-serif;
    line-height: 1
}

.desktop-mortgage-new .table__badge img, .global-mortgage-style .table__badge img {
    display: none !important
}

.desktop-mortgage-new .table__badge .table__badge-custom, .global-mortgage-style .table__badge .table__badge-custom {
    position: relative;
    height: 2.125rem;
    padding: 0;
    margin-left: 2.5rem;
    font-size: inherit;
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
    overflow: hidden
}

.desktop-mortgage-new .table__badge .table__badge-custom span, .global-mortgage-style .table__badge .table__badge-custom span {
    position: relative;
    z-index: 1;
    padding: 0 1.25rem 0 2rem
}

.desktop-mortgage-new .table__badge .table__badge-custom:before, .global-mortgage-style .table__badge .table__badge-custom:before {
    content: "";
    background: #00b222;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: skew(-18deg) translateX(6px);
    transform: skew(-18deg) translateX(6px)
}

.desktop-mortgage-new .table, .global-mortgage-style .table {
    max-width: unset;
    box-shadow: none
}

.desktop-mortgage-new .table thead, .global-mortgage-style .table thead {
    display: -webkit-box;
    display: flex
}

.desktop-mortgage-new .table thead tr, .global-mortgage-style .table thead tr {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    height: auto;
    width: 100%;
    background-color: transparent;
    border: 0;
    line-height: 1.15
}

.desktop-mortgage-new .table thead th, .global-mortgage-style .table thead th {
    padding: 0
}

.desktop-mortgage-new .table thead th:not(.table__head-links), .global-mortgage-style .table thead th:not(.table__head-links) {
    text-indent: -9999px
}

.desktop-mortgage-new .table thead .table__head-links, .global-mortgage-style .table thead .table__head-links {
    -webkit-box-pack: center;
    justify-content: center;
    padding: .125rem 0 .25rem;
    font-size: .75rem;
    color: #616161;
    white-space: nowrap
}

.desktop-mortgage-new .table tbody, .global-mortgage-style .table tbody {
    counter-reset: row
}

.desktop-mortgage-new .table tbody tr, .desktop-mortgage-new .table tbody tr:first-child, .global-mortgage-style .table tbody tr, .global-mortgage-style .table tbody tr:first-child {
    margin-bottom: .6875rem;
    font-family: Roboto Regular, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    box-shadow: -5px 5px 32px rgba(47, 46, 46, .16);
    border: 1px solid #d7d7d7;
    color: #6b6464;
    overflow: hidden
}

.desktop-mortgage-new .table tbody tr:before, .desktop-mortgage-new .table tbody tr:first-child:before, .global-mortgage-style .table tbody tr:before, .global-mortgage-style .table tbody tr:first-child:before {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    content: counter(row);
    counter-increment: row;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 34px;
    height: 34px;
    font-size: 1.125rem;
    font-family: Roboto Medium, Arial, sans-serif;
    color: #fff
}

.desktop-mortgage-new .table tbody tr:after, .desktop-mortgage-new .table tbody tr:first-child:after, .global-mortgage-style .table tbody tr:after, .global-mortgage-style .table tbody tr:first-child:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 34px;
    width: 44px;
    -webkit-transform: skew(-18deg) translateX(-5px);
    transform: skew(-18deg) translateX(-5px);
    background-color: #0058ab
}

.desktop-mortgage-new .table tbody tr:first-child, .global-mortgage-style .table tbody tr:first-child {
    z-index: 1
}

.desktop-mortgage-new .table tbody tr .table__item-num, .desktop-mortgage-new .table tbody tr .table__score, .global-mortgage-style .table tbody tr .table__item-num, .global-mortgage-style .table tbody tr .table__score {
    display: none
}

.desktop-mortgage-new .table tbody tr .table__item-title, .global-mortgage-style .table tbody tr .table__item-title {
    margin: 0;
    border: 0;
    width: auto;
    background: transparent
}

.contact .desktop-mortgage-new .table tbody tr .wpcf7-submit, .contact .global-mortgage-style .table tbody tr .wpcf7-submit, .desktop-mortgage-new .table tbody tr .btn, .desktop-mortgage-new .table tbody tr .contact .wpcf7-submit, .desktop-mortgage-new .table tbody tr .popup__form .wpcf7-form input[type=submit], .global-mortgage-style .table tbody tr .btn, .global-mortgage-style .table tbody tr .contact .wpcf7-submit, .global-mortgage-style .table tbody tr .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-mortgage-new .table tbody tr input[type=submit], .popup__form .wpcf7-form .global-mortgage-style .table tbody tr input[type=submit] {
    font-size: 1.25rem;
    font-family: Roboto Medium, Arial, sans-serif;
    background-color: #00b222
}

.desktop-mortgage-new .table tbody tr .table__dynamic-tooltip, .desktop-mortgage-new .table tbody tr .table__dynamic-tooltip:after, .global-mortgage-style .table tbody tr .table__dynamic-tooltip, .global-mortgage-style .table tbody tr .table__dynamic-tooltip:after {
    background-color: #00b222
}

.desktop-mortgage-new .table tbody tr .table__features, .global-mortgage-style .table tbody tr .table__features {
    padding: 0;
    font-size: .875rem
}

.desktop-mortgage-new .table tbody tr .table__features-list, .global-mortgage-style .table tbody tr .table__features-list {
    margin: 0;
    font-size: inherit
}

.desktop-mortgage-new .table tbody tr .table__features-item, .global-mortgage-style .table tbody tr .table__features-item {
    position: relative;
    margin-bottom: .125rem;
    padding-left: 1.25rem;
    font-family: inherit
}

.desktop-mortgage-new .table tbody tr .table__features-item svg, .global-mortgage-style .table tbody tr .table__features-item svg {
    position: absolute;
    top: .3125rem;
    left: 0
}

.desktop-mortgage-new .table tbody tr .table__link, .global-mortgage-style .table tbody tr .table__link {
    color: inherit
}

.desktop-mortgage-new .table tbody .table__features-list, .global-mortgage-style .table tbody .table__features-list {
    visibility: visible !important;
    width: auto !important;
    height: auto !important
}

.desktop-mortgage-new .preview, .global-mortgage-style .preview {
    background-color: transparent
}

.desktop-mortgage-new .widget__authors, .global-mortgage-style .widget__authors {
    border: 0;
    padding-top: 0
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .nav__menu li, .global-mortgage-style .nav__menu li {
        margin-left: 1.5625rem
    }

    .desktop-mortgage-new .hero, .global-mortgage-style .hero {
        min-height: 15.125rem
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .desktop-mortgage-new .hero__text, .global-mortgage-style .hero__text {
        padding-right: 30%
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__subtitle, .desktop-mortgage-new .hero__title, .global-mortgage-style .hero__subtitle, .global-mortgage-style .hero__title {
        font-family: Roboto Regular, Arial, sans-serif;
        font-weight: 500;
        line-height: 1.1;
        color: #0058ab;
        text-align: left
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__title, .global-mortgage-style .hero__title {
        margin-bottom: 1.75rem;
        font-size: 2.25rem;
        font-family: Roboto Medium, Arial, sans-serif;
        line-height: 1.3;
        -webkit-font-smoothing: antialiased
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__title--lg, .global-mortgage-style .hero__title--lg {
        font-size: 2.5em
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__title--sm, .global-mortgage-style .hero__title--sm {
        font-size: 2em
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__title--xs, .global-mortgage-style .hero__title--xs {
        font-size: 1.75em
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__subtitle, .global-mortgage-style .hero__subtitle {
        font-size: 1.5625rem;
        max-width: 60%;
        line-height: 1.8
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .desktop-mortgage-new .hero__subtitle, .global-mortgage-style .hero__subtitle {
        max-width: 75%
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__subtitle--lg, .global-mortgage-style .hero__subtitle--lg {
        font-size: 1.8125em
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__subtitle--sm, .global-mortgage-style .hero__subtitle--sm {
        font-size: 1.3125em
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__subtitle--xs, .global-mortgage-style .hero__subtitle--xs {
        font-size: 1.0625em
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__image, .desktop-mortgage-new .hero__video, .global-mortgage-style .hero__image, .global-mortgage-style .hero__video {
        position: absolute
    }

    .desktop-mortgage-new .hero__image:not(.hero__image-mobile):not(.hero__video), .desktop-mortgage-new .hero__video:not(.hero__image-mobile):not(.hero__video), .global-mortgage-style .hero__image:not(.hero__image-mobile):not(.hero__video), .global-mortgage-style .hero__video:not(.hero__image-mobile):not(.hero__video) {
        display: block
    }

    .desktop-mortgage-new .hero__image img, .desktop-mortgage-new .hero__video img, .global-mortgage-style .hero__image img, .global-mortgage-style .hero__video img {
        height: 100%
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__image-mobile, .desktop-mortgage-new .hero__video, .global-mortgage-style .hero__image-mobile, .global-mortgage-style .hero__video {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .hero__text, .global-mortgage-style .hero__text {
        position: static;
        background: transparent
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .table, .desktop-mortgage-new .table tbody, .global-mortgage-style .table, .global-mortgage-style .table tbody {
        display: block
    }

    .desktop-mortgage-new .table tbody tr, .desktop-mortgage-new .table tbody tr:first-child, .global-mortgage-style .table tbody tr, .global-mortgage-style .table tbody tr:first-child {
        display: -webkit-box;
        display: flex;
        width: 100%
    }

    .desktop-mortgage-new .table tbody tr td, .global-mortgage-style .table tbody tr td {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center
    }

    .desktop-mortgage-new .table tbody tr .table__col-title, .global-mortgage-style .table tbody tr .table__col-title {
        -webkit-box-align: center;
        align-items: center;
        width: 38%
    }
}

@media screen and (min-width: 768px) and (min-width: 1024px) {
    .desktop-mortgage-new .table tbody tr .table__col-title, .global-mortgage-style .table tbody tr .table__col-title {
        padding-right: 2.625rem
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .table tbody tr .table__col-features, .global-mortgage-style .table tbody tr .table__col-features {
        padding: 1rem 0 1.375rem;
        width: 30%
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .table tbody tr .table__col-links, .global-mortgage-style .table tbody tr .table__col-links {
        -webkit-box-align: center;
        align-items: center;
        width: 32%;
        padding: 0 1.875rem 0 0
    }
}

@media screen and (min-width: 768px) {
    .contact .desktop-mortgage-new .table tbody tr .wpcf7-submit, .contact .global-mortgage-style .table tbody tr .wpcf7-submit, .desktop-mortgage-new .table tbody tr .btn, .desktop-mortgage-new .table tbody tr .contact .wpcf7-submit, .desktop-mortgage-new .table tbody tr .popup__form .wpcf7-form input[type=submit], .global-mortgage-style .table tbody tr .btn, .global-mortgage-style .table tbody tr .contact .wpcf7-submit, .global-mortgage-style .table tbody tr .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-mortgage-new .table tbody tr input[type=submit], .popup__form .wpcf7-form .global-mortgage-style .table tbody tr input[type=submit] {
        width: auto;
        min-width: 11.25rem;
        margin: 0;
        border-radius: 10px
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .table tbody tr .table__col-score, .global-mortgage-style .table tbody tr .table__col-score {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .table tbody .table__item-logo, .global-mortgage-style .table tbody .table__item-logo {
        height: 120%;
        margin: 0 auto
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .table tbody .table__features-top, .global-mortgage-style .table tbody .table__features-top {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        margin-bottom: 1.0625rem
    }

    .desktop-mortgage-new .table tbody .table__features-top .rate, .global-mortgage-style .table tbody .table__features-top .rate {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    .desktop-mortgage-new .table tbody .table__features-top .rate, .desktop-mortgage-new .table tbody .table__features-top .rate span, .global-mortgage-style .table tbody .table__features-top .rate, .global-mortgage-style .table tbody .table__features-top .rate span {
        background-image: url(stars-sharp.svg)
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .table tbody .table__features-title, .global-mortgage-style .table tbody .table__features-title {
        margin-right: .9375rem;
        font-family: Roboto Medium, Arial, sans-serif;
        font-size: 1.25rem
    }
}

@media screen and (min-width: 768px) {
    .desktop-mortgage-new .table tbody .table__features-links, .global-mortgage-style .table tbody .table__features-links {
        margin: 1.375rem 0 0;
        font-size: .875rem
    }
}

@media screen and (max-width: 767px) {
    .desktop-mortgage-new .header .header__main {
        height: 2.25rem
    }

    .desktop-mortgage-new .branding {
        max-width: 15.625rem
    }

    .desktop-mortgage-new .hamburger {
        margin-right: 0;
        margin-left: .375rem
    }

    .desktop-mortgage-new .hamburger__btn, .desktop-mortgage-new .hamburger__btn:after, .desktop-mortgage-new .hamburger__btn:before {
        width: 1.5rem;
        height: .1875rem
    }

    .desktop-mortgage-new .hamburger__btn:before {
        top: -.5rem
    }

    .desktop-mortgage-new .hamburger__btn:after {
        top: .5rem
    }

    .desktop-mortgage-new .hamburger_opened .hamburger__btn:before {
        -webkit-transform: translateY(.5em) rotate(225deg);
        transform: translateY(.5em) rotate(225deg)
    }

    .desktop-mortgage-new .hamburger_opened .hamburger__btn:after {
        -webkit-transform: translateY(-.5em) rotate(-225deg);
        transform: translateY(-.5em) rotate(-225deg)
    }

    .desktop-mortgage-new .hero {
        padding: 0;
        min-height: unset
    }

    .desktop-mortgage-new .hero__image, .desktop-mortgage-new .hero__video {
        padding: 0
    }

    .desktop-mortgage-new .hero__image img, .desktop-mortgage-new .hero__video img {
        height: 9.375rem;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: right;
        object-position: right;
        font-family: "object-fit: cover; object-position: right"
    }

    .desktop-mortgage-new .hero__text {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
        min-height: 3.25rem;
        padding: .3125rem;
        background: rgba(30, 30, 30, .7)
    }

    .desktop-mortgage-new .hero__title {
        margin: 0;
        font-size: 1.125rem;
        font-family: Roboto Medium, Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        color: #fff
    }

    .desktop-mortgage-new .hero__title--lg {
        font-size: 1.25em
    }

    .desktop-mortgage-new .hero__title--sm {
        font-size: 1em
    }

    .desktop-mortgage-new .hero__title--xs {
        font-size: .875em
    }

    .desktop-mortgage-new .hero__subtitle, .desktop-mortgage-new .table__review-additional {
        display: none
    }

    .desktop-mortgage-new .hero__subtitle--lg {
        font-size: 1.125em
    }

    .desktop-mortgage-new .hero__subtitle--sm {
        font-size: .875em
    }

    .desktop-mortgage-new .hero__subtitle--xs {
        font-size: .75em
    }

    .desktop-mortgage-new .table thead {
        display: block;
        width: 100%
    }

    .desktop-mortgage-new .table thead tr {
        display: block;
        box-shadow: none;
        opacity: 1
    }

    .desktop-mortgage-new .table thead th:not(.table__head-links) {
        display: none
    }

    .desktop-mortgage-new .table thead .table__head-links {
        display: block;
        padding: .25rem 0;
        margin: 0;
        font-size: .625rem
    }

    .desktop-mortgage-new .table tbody tr {
        min-height: 10.75rem
    }

    .desktop-mortgage-new .table tbody tr, .desktop-mortgage-new .table tbody tr:first-child {
        overflow: visible
    }

    .desktop-mortgage-new .table tbody tr:before {
        font-size: 1rem
    }

    .desktop-mortgage-new .table tbody tr:after {
        display: none
    }

    .desktop-mortgage-new .table tbody tr .table__col--wrap:first-child {
        position: relative;
        overflow: hidden;
        background-color: transparent
    }

    .desktop-mortgage-new .table tbody tr .table__col--wrap:first-child:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 34px;
        width: 44px;
        -webkit-transform: skew(-18deg) translateX(-5px);
        transform: skew(-18deg) translateX(-5px);
        background-color: #0058ab
    }

    .desktop-mortgage-new .table tbody tr .table__col--wrap:last-child {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse
    }

    .desktop-mortgage-new .table tbody tr td.table__col-title {
        position: static
    }

    .desktop-mortgage-new .table tbody tr td.table__col-title .table__item-title {
        margin-top: 1.25rem;
        height: 4.125rem
    }

    .desktop-mortgage-new .table tbody tr td.table__col-title .table__badge {
        width: auto
    }

    .desktop-mortgage-new .table tbody tr td.table__col-features {
        -webkit-box-ordinal-group: 3;
        order: 2;
        padding: .3125rem .3125rem 0 0
    }

    .desktop-mortgage-new .table tbody tr td.table__col-features .table__features-item {
        text-align: left;
        font-size: .75rem
    }

    .desktop-mortgage-new .table tbody tr td.table__col-features .table__features-item svg {
        width: .9375rem
    }

    .desktop-mortgage-new .table tbody tr .table__features {
        width: 100%
    }

    .desktop-mortgage-new .table tbody tr .table__features-item {
        margin-bottom: .375rem
    }

    .desktop-mortgage-new .table tbody tr .table__features-item:nth-child(n+4) {
        display: none
    }

    .desktop-mortgage-new .table tbody tr .table__link {
        font-size: .75rem
    }

    .desktop-mortgage-new .table tbody tr .table__badge-custom span {
        min-width: 5.625rem;
        padding: 0 .5rem 0 1.1875rem;
        font-size: 1rem
    }

    .desktop-mortgage-new .table tbody tr .table__col-links {
        -webkit-box-ordinal-group: 2;
        order: 1;
        -webkit-box-align: start;
        align-items: flex-start;
        margin-top: .75rem;
        padding: 0 .1875rem .375rem
    }

    .contact .desktop-mortgage-new .table tbody tr .wpcf7-submit, .desktop-mortgage-new .table tbody tr .btn, .desktop-mortgage-new .table tbody tr .contact .wpcf7-submit, .desktop-mortgage-new .table tbody tr .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-mortgage-new .table tbody tr input[type=submit] {
        width: auto;
        min-width: 8.625rem
    }

    .desktop-mortgage-new .table tbody tr .table__dynamic-tooltip {
        bottom: auto;
        top: calc(100% + 10px);
        z-index: 1
    }

    .desktop-mortgage-new .table tbody tr .table__dynamic-tooltip:after {
        top: -4px;
        bottom: auto
    }

    .desktop-mortgage-new .pretable__tooltip {
        display: none
    }
}

.desktop-wine .table__features-links, .desktop-wine .table__info, .desktop-wine .table__score-desc {
    display: none
}

.desktop-wine .container .table, .desktop-wine .footer__cookie-decline-text .table, .desktop-wine .footer__disclaimer-text .table, .desktop-wine .header .container, .desktop-wine .header .footer__cookie-decline-text, .desktop-wine .header .footer__disclaimer-text {
    max-width: 66.25rem;
    margin: 0 auto;
    padding: 0
}

.desktop-wine .content {
    overflow: hidden
}

.desktop-wine .header {
    padding: 0 .625rem;
    box-shadow: none
}

.desktop-wine .header .nav__menu > li {
    text-transform: none;
    font-family: Roboto Regular, Arial, sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0
}

.desktop-wine .header .nav__menu > li:after {
    height: 1rem;
    top: .0625rem;
    margin: 0 .375rem
}

.desktop-wine .hero__container {
    max-width: unset;
    padding: 0
}

.desktop-wine .hero__image, .desktop-wine .hero__video {
    top: 0;
    height: 100%;
    max-width: unset;
    margin: 0
}

.desktop-wine .hero__image:after, .desktop-wine .hero__image:before, .desktop-wine .hero__video:after, .desktop-wine .hero__video:before {
    display: none
}

.desktop-wine .hero__text {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 66.25rem;
    padding: 0;
    margin: 0 auto
}

.desktop-wine .table tbody tr {
    display: -webkit-box;
    display: flex
}

.desktop-wine .table tbody tr td {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center
}

.desktop-wine .table tbody tr, .desktop-wine .table tbody tr:first-child {
    box-shadow: 0 0 7px rgba(123, 117, 110, .35);
    border: 1px solid #c7c7c7;
    background-color: #fff
}

.desktop-wine .table tbody tr:not(:first-child) .table__item-num {
    background: transparent;
    border: 1px solid
}

.desktop-wine .table tbody tr .table__item-title {
    width: auto;
    border: 0
}

.desktop-wine .table tbody tr .table__item-num {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.125rem;
    font-family: Roboto Regular, Arial, sans-serif;
    text-shadow: none
}

.desktop-wine .table tbody tr .table__features-item {
    position: relative;
    margin-bottom: .375rem;
    padding-left: 2.375rem;
    font-size: 1rem;
    color: #464546;
    -webkit-font-smoothing: antialiased
}

.desktop-wine .table tbody tr .table__features-item img, .desktop-wine .table tbody tr .table__features-item svg {
    display: none
}

.desktop-wine .table tbody tr .table__features-item:before {
    content: "";
    position: absolute;
    top: .125rem;
    left: 0;
    width: 2.0625rem;
    height: .9375rem;
    background: url(icon-feature-wine.png) no-repeat 50%/contain
}

.desktop-wine .table__badge--type2 {
    position: absolute;
    left: -2.125rem;
    top: .5625rem;
    font-size: 1rem
}

.desktop-wine .table__badge--type2 .table__badge-custom {
    font-size: 1rem;
    font-family: Roboto Light, Arial, sans-serif
}

.desktop-wine .table__badge--type2 .table__badge-custom span {
    font-weight: 400
}

.desktop-wine .table__col-links .table__features-links {
    display: block;
    text-align: center;
    font-size: .75rem
}

.desktop-wine .table__col-links .table__features-links .table__link {
    color: #464546
}

.contact .desktop-wine .table__col-links .wpcf7-submit, .desktop-wine .table__col-links .btn, .desktop-wine .table__col-links .contact .wpcf7-submit, .desktop-wine .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-wine .table__col-links input[type=submit] {
    -webkit-font-smoothing: antialiased
}

.desktop-wine .preview {
    background-color: transparent
}

.desktop-wine .preview__content {
    -webkit-font-smoothing: antialiased;
    color: #000
}

.desktop-wine .preview__content h2 {
    font-family: Roboto Medium, Arial, sans-serif;
    line-height: 1.3
}

.desktop-wine .preview__content a {
    color: inherit
}

.desktop-wine .widget__authors {
    border: 0;
    padding-top: 0;
    color: #000
}

.desktop-wine .widget__authors .widget__author-name, .desktop-wine .widget__authors .widget__title {
    color: inherit;
    font-family: Roboto Medium, Arial, sans-serif
}

@media screen and (min-width: 768px) {
    .desktop-wine .header__main {
        height: 3.375rem
    }

    .desktop-wine .hero {
        -webkit-box-pack: start;
        justify-content: flex-start;
        min-height: 13.25rem;
        padding: 0 .625rem
    }

    .desktop-wine .hero__image:not(.hero__image-mobile):not(.hero__video), .desktop-wine .hero__video:not(.hero__image-mobile):not(.hero__video) {
        position: absolute;
        display: block
    }

    .desktop-wine .hero__image:not(.hero__image-mobile):not(.hero__video) img, .desktop-wine .hero__video:not(.hero__image-mobile):not(.hero__video) img {
        height: 100%
    }

    .desktop-wine .hero__image-mobile, .desktop-wine .hero__video {
        display: none
    }

    .desktop-wine .hero__text {
        padding-top: 1.75rem;
        letter-spacing: .7px;
        background: transparent
    }

    .desktop-wine .hero__subtitle {
        display: none
    }

    .desktop-wine .hero__title {
        float: none;
        margin: 0;
        font-size: 2.125rem;
        text-align: left
    }

    .desktop-wine .hero__list {
        max-width: 80%;
        margin-top: .75rem;
        padding: 0;
        font-size: 1rem;
        -webkit-font-smoothing: antialiased
    }

    .desktop-wine .hero__item {
        margin-bottom: .125rem
    }

    .desktop-wine .table {
        box-shadow: none
    }

    .desktop-wine .table thead {
        position: relative;
        width: 100%
    }

    .desktop-wine .table thead tr {
        height: .875rem;
        background: transparent
    }

    .desktop-wine .table thead th {
        display: none
    }

    .desktop-wine .table thead th.table__head-links {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: end;
        justify-content: flex-end;
        width: 100%;
        padding: .375rem 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        font-size: 1rem
    }

    .desktop-wine .table thead th.table__head-links .tooltip {
        position: relative;
        z-index: 1;
        color: #fff;
        font-size: .875rem;
        font-family: Roboto Regular, Arial, sans-serif;
        opacity: 1;
        -webkit-font-smoothing: antialiased
    }

    .desktop-wine .table thead th.table__head-links:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
        width: 200vw;
        background-color: rgba(31, 19, 19, .45)
    }

    .desktop-wine .table tbody tr {
        min-height: 10.625rem;
        margin-bottom: 1.125rem
    }

    .desktop-wine .table tbody tr td {
        padding: .5625rem 0
    }

    .desktop-wine .table tbody tr .table__col-title {
        width: 25%;
        padding-right: .625rem
    }

    .desktop-wine .table tbody tr .table__col-features {
        width: 31%
    }

    .desktop-wine .table tbody tr .table__col-score {
        align-self: center;
        width: 18%;
        padding: 0;
        margin: 0;
        border-left: 1px solid #cfcece;
        border-right: 1px solid #cfcece
    }

    .desktop-wine .table tbody tr .table__col-links {
        -webkit-box-align: center;
        align-items: center;
        width: 26%;
        padding: .625rem 1.25rem
    }

    .contact .desktop-wine .table tbody tr .table__col-links .wpcf7-submit, .desktop-wine .table tbody tr .table__col-links .btn, .desktop-wine .table tbody tr .table__col-links .contact .wpcf7-submit, .desktop-wine .table tbody tr .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-wine .table tbody tr .table__col-links input[type=submit] {
        width: auto;
        height: 3rem;
        min-width: 9.625rem;
        padding: .25rem .625rem;
        margin-top: 1.25rem;
        border-radius: 3.125rem;
        font-size: 1.0625rem
    }

    .desktop-wine .table tbody tr .table__features {
        padding-left: 0;
        padding-right: .625rem
    }

    .desktop-wine .table tbody tr .table__features-list {
        margin: 0
    }

    .desktop-wine .table tbody tr .table__item-logo {
        width: 100%;
        max-width: 9.375rem;
        height: auto;
        margin-right: 0
    }

    .desktop-wine .table tbody tr .table__item-title {
        margin-left: 1rem
    }

    .desktop-wine .table .table__score-title {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        width: 3.375rem;
        height: 3.375rem;
        margin: 0 auto .625rem;
        font-size: 1.875rem;
        font-family: Roboto Regular, Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        border-radius: 50%;
        border: 2px solid
    }
}

@media screen and (max-width: 1023px) {
    .desktop-wine .table tbody tr .table__item-logo {
        margin-left: 0
    }

    .desktop-wine .table tbody tr .table__item-num {
        display: none
    }

    .desktop-wine .table tbody tr .table__features-item {
        padding-left: 2.0625rem;
        font-size: .875rem
    }

    .desktop-wine .table tbody tr .table__features-item:before {
        width: 1.6875rem
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .header__main {
        height: 2.75rem
    }

    .desktop-wine .hero {
        min-height: unset;
        padding: 0;
        margin-bottom: .5625rem
    }

    .desktop-wine .hero__image-mobile, .desktop-wine .hero__video {
        height: 8.5625rem;
        min-height: unset;
        padding: 0
    }

    .desktop-wine .hero__image-mobile img, .desktop-wine .hero__video img {
        height: 100%;
        min-height: unset
    }

    .desktop-wine .hero__text {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(31, 19, 19, .45);
        padding: .25rem .3125rem
    }

    .desktop-wine .hero__list {
        display: none
    }

    .desktop-wine .hero__title {
        margin-top: 0;
        margin-bottom: .3125rem;
        font-size: 1.125rem
    }

    .desktop-wine .hero__subtitle {
        font-size: .875rem;
        line-height: 1.2;
        margin: 0
    }
}

@media screen and (max-width: 767px) and (max-width: 599px) {
    .desktop-wine .container .table, .desktop-wine .footer__cookie-decline-text .table, .desktop-wine .footer__disclaimer-text .table, .desktop-wine .hero__subtitle, .desktop-wine .hero__title {
        max-width: 19.375rem;
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table {
        box-shadow: none
    }

    .desktop-wine .table tbody tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        margin-bottom: .75rem
    }

    .desktop-wine .table tbody tr .table__item-title {
        border-radius: 0;
        height: auto;
        margin: 0
    }

    .desktop-wine .table tbody tr .table__item-logo {
        margin: 0 auto;
        height: auto;
        width: 100%;
        max-width: 9.875rem
    }

    .desktop-wine .table tbody tr .table__features-item {
        margin-bottom: .25rem
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__col-title {
        -webkit-box-ordinal-group: 2;
        order: 1;
        position: static;
        padding: 1.5rem 0 .25rem
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__col-score {
        -webkit-box-ordinal-group: 3;
        order: 2;
        margin: 0 0 .4375rem !important;
        padding: 0 !important
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__col-features {
        width: 100%;
        max-width: 18.125rem;
        margin-bottom: .3125rem
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__col-features, .desktop-wine .table__col-links {
        -webkit-box-ordinal-group: 4;
        order: 3
    }

    .contact .desktop-wine .table__col-links .wpcf7-submit, .desktop-wine .table__col-links .btn, .desktop-wine .table__col-links .contact .wpcf7-submit, .desktop-wine .table__col-links .popup__form .wpcf7-form input[type=submit], .popup__form .wpcf7-form .desktop-wine .table__col-links input[type=submit] {
        width: auto !important;
        height: 2.5625rem !important;
        font-size: 1rem !important;
        min-width: 11.4375rem;
        margin: 0 0 .125rem;
        border-radius: 10px
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__score-title {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__features {
        padding: 0;
        margin: 0
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__features-list {
        margin: 0;
        font-size: .875rem
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__features-item:nth-child(n+4) {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__dynamic-tooltip {
        z-index: 1;
        top: calc(100% + 10px);
        bottom: auto
    }

    .desktop-wine .table__dynamic-tooltip:after {
        top: -4px;
        bottom: auto
    }
}

@media screen and (max-width: 767px) {
    .desktop-wine .table__badge--type2 {
        height: auto;
        width: 10.125rem !important;
        left: 0;
        top: .25rem;
        padding: 0
    }

    .desktop-wine .table__badge--type2 .table__badge-custom {
        padding: 0
    }

    .desktop-wine .table__badge--type2 .table__badge-custom span {
        font-size: .875rem;
        padding-bottom: .8125rem
    }
}

.table-vpn--vpn-new-article {
    margin-top: 0;
    border: 1px solid #1651bd
}

.table-vpn--vpn-new-article .table-vpn-heading {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 1px solid #1651bd
}

.table-vpn--vpn-new-article .table-vpn-heading__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.table-vpn--vpn-new-article .table-vpn-item {
    margin: 0;
    box-shadow: none;
    border: 0;
    border-top: 1px solid #1651bd
}

.table-vpn--vpn-new-article .table-vpn-item:first-child {
    background-color: transparent;
    border-top: 0
}

.table-vpn--vpn-new-article .table-vpn__inner {
    padding: 0 .625rem
}

.table-vpn--vpn-new-article .table-vpn-heading__item:first-child, .table-vpn--vpn-new-article .table-vpn__inner--badge {
    width: 20%;
    padding: .375rem;
    -webkit-box-align: center;
    align-items: center
}

.table-vpn--vpn-new-article .table-vpn-badge {
    padding: .25rem .5rem;
    font-family: Roboto Regular, Arial, sans-serif
}

.table-vpn--vpn-new-article .table-vpn-badge:before {
    font-size: .875rem;
    line-height: 1.15
}

.table-vpn--vpn-new-article .table-vpn-badge span {
    padding: 0;
    margin: .3125rem 0 .3125rem .3125rem;
    font-size: .875rem
}

.table-vpn--vpn-new-article .table-vpn-heading__item:nth-child(2), .table-vpn--vpn-new-article .table-vpn__inner--01 {
    width: 20%;
    -webkit-box-pack: center;
    justify-content: center;
    padding: .625rem .9375rem
}

.table-vpn--vpn-new-article .table-vpn-heading__item:nth-child(3), .table-vpn--vpn-new-article .table-vpn__inner--03 {
    width: 15%
}

.table-vpn--vpn-new-article .table-vpn-heading__item:nth-child(4), .table-vpn--vpn-new-article .table-vpn__inner--03-stars {
    width: 20%;
    -webkit-box-align: center;
    align-items: center
}

.table-vpn--vpn-new-article .table-vpn__inner--04 {
    width: 25%
}

.table-vpn--vpn-new-article .table-vpn-heading .table-vpn-heading__item {
    padding: .1875rem
}

.table-vpn--vpn-new-article .table-vpn-rating--main {
    margin-top: .625rem
}

.table-vpn--vpn-new-article .table-vpn-logo {
    margin-bottom: 0
}

.table-vpn--vpn-new-article .table-vpn-icons {
    display: none
}

.table-vpn--vpn-new-article .circular-chart {
    box-shadow: none;
    border-width: 2px
}

.table-vpn--vpn-new-article .circular-chart .circle {
    stroke-width: 1.4
}

.table-vpn--vpn-new-article .circular-chart .circle-dot {
    stroke-width: 3
}

.table-vpn--vpn-new-article .table-vpn-rating--main .table-vpn-rating-value strong {
    font-size: 1.625rem;
    font-family: Roboto Regular, Arial, sans-serif;
    text-shadow: none !important;
    letter-spacing: -1px
}

.table-vpn--vpn-new-article .table-vpn-rating--main .table-vpn-rating-value span {
    display: none
}

.table-vpn--vpn-new-article .table__score .rate {
    -webkit-transform: none;
    transform: none
}

.table-vpn--vpn-new-article .table__link {
    margin-top: .3125rem;
    font-size: .875rem;
    font-family: Roboto Regular, Arial, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #1651bd
}

.table-vpn--vpn-new-article .table__link:hover {
    text-decoration: underline
}

.contact .table-vpn--vpn-new-article .wpcf7-submit, .popup__form .wpcf7-form .table-vpn--vpn-new-article input[type=submit], .table-vpn--vpn-new-article .btn, .table-vpn--vpn-new-article .contact .wpcf7-submit, .table-vpn--vpn-new-article .popup__form .wpcf7-form input[type=submit] {
    margin-bottom: 0;
    padding: .375em .3125em;
    font-family: Roboto Regular, Arial, sans-serif;
    border-width: 1px
}

@media screen and (min-width: 768px) {
    .table-vpn--vpn-new-article .table-vpn-rate, .table-vpn--vpn-new-article .table__info, .table-vpn--vpn-new-article .table__score-desc, .table-vpn--vpn-new-article .table__score-title {
        display: none
    }

    .table-vpn--vpn-new-article .table-vpn-logo img {
        width: 100%
    }

    .table-vpn--vpn-new-article .table-vpn-badge {
        position: static
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .table-vpn--vpn-new-article .table-vpn-badge span {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .table-vpn--vpn-new-article {
        border-color: #1651bd
    }

    .table-vpn--vpn-new-article .table-vpn-badge span, .table-vpn--vpn-new-article .table-vpn-review, .table-vpn--vpn-new-article .table-vpn__inner--03.table-vpn__inner {
        display: none
    }

    .table-vpn--vpn-new-article .table-vpn-heading .table-vpn-heading__item {
        width: 33.33%;
        padding: .375rem .125rem;
        font-size: .75rem;
        line-height: 1
    }

    .table-vpn--vpn-new-article .table-vpn-heading .table-vpn-heading__item:first-child {
        display: none
    }

    .table-vpn--vpn-new-article .table-vpn-item {
        display: -webkit-box;
        display: flex;
        padding: 0;
        border-color: #1651bd
    }

    .table-vpn--vpn-new-article .table-vpn__inner {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        min-height: 5.625rem
    }

    .table-vpn--vpn-new-article .table-vpn__inner--badge {
        width: auto
    }

    .table-vpn--vpn-new-article .table-vpn-logo img {
        height: auto
    }

    .table-vpn--vpn-new-article .table-vpn__inner--badge {
        padding: 0
    }

    .table-vpn--vpn-new-article .table-vpn__inner--01 {
        width: 33.33%
    }

    .table-vpn--vpn-new-article .table-vpn__inner--03-stars {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        width: 33.33%
    }

    .table-vpn--vpn-new-article .table-vpn__inner--03-stars .table__link {
        margin-top: 0;
        font-size: .6875rem
    }

    .table-vpn--vpn-new-article .rate {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    .table-vpn--vpn-new-article .rate, .table-vpn--vpn-new-article .rate span {
        background-image: url(star-sprite-orange.svg)
    }

    .table-vpn--vpn-new-article .table-vpn-rate {
        margin-bottom: -.125rem;
        font-size: 1.25rem;
        font-family: Roboto Medium, Arial, sans-serif;
        line-height: 1;
        color: #ff7b00
    }

    .table-vpn--vpn-new-article .table-vpn__inner--04 {
        width: 33.33%
    }

    .contact .table-vpn--vpn-new-article .wpcf7-submit, .popup__form .wpcf7-form .table-vpn--vpn-new-article input[type=submit], .table-vpn--vpn-new-article .btn, .table-vpn--vpn-new-article .contact .wpcf7-submit, .table-vpn--vpn-new-article .popup__form .wpcf7-form input[type=submit] {
        max-width: 100%;
        margin: 0;
        padding: .3125rem;
        font-size: .875rem;
        text-align: center;
        white-space: normal
    }
}

@media screen and (min-width: 768px) {
    .global-mealdeliveryservices .table__item-title .table__item-num {
        margin-right: 0
    }

    .global-mealdeliveryservices .table__item-title .table__item-logo {
        flex-basis: calc(100% - 4.5em);
        margin: 0;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        font-family: "object-fit: contain; object-position: center"
    }
}

@media screen and (max-width: 767px) {
    .global-mealdeliveryservices .hero__image.hero__image-mobile.hero__image-mobile, .global-mealdeliveryservices .hero__video {
        position: static;
        min-height: unset;
        padding: 0
    }

    .global-mealdeliveryservices .hero__image.hero__image-mobile.hero__image-mobile img, .global-mealdeliveryservices .hero__video img {
        min-height: unset;
        width: 100%
    }

    .global-mealdeliveryservices .hero__image.hero__image-mobile.hero__image-mobile:after, .global-mealdeliveryservices .hero__image.hero__image-mobile.hero__image-mobile:before, .global-mealdeliveryservices .hero__video:after, .global-mealdeliveryservices .hero__video:before {
        display: none
    }
}