/* navigation */
#navigation {
    position: fixed;
    width: 100%;
    min-height: 66px;
    margin: 0;
    padding: 8px 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    -webkit-transition: background 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#navigation.active,
#navigation.scrolled {
    background: #FFFFFF !important;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2) !important;
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2) !important;
}

#navigation .logo {
    position: relative;
    display: block;
    height: 50px;
    margin: 0;
    float: left;
}

#navigation .logo a {
    display: inline-block;
    vertical-align: middle;
}

#navigation .logo a img {
    display: block;
    width: auto !important;
    height: 50px;
    margin: 0;
    filter: brightness(0) invert(1) drop-shadow(0px 0px 6px rgba(167, 12, 45, 0.45)) !important;
}

#navigation.active .logo a img,
#navigation.scrolled .logo a img {
    filter: none !important;
}

#navigation .search {
    position: relative;
    display: block;
    width: 220px;
    height: 40px;
    margin: 5px 0 5px 10px;
    float: left;
}

#navigation .search input[type=text] {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: none;
    border-radius: 4px;
}

#navigation.active .search input[type=text],
#navigation.scrolled .search input[type=text] {
    color: #212529;
}

#navigation .search input[type=text]::-webkit-input-placeholder {
    color: #FFFFFF;
}

#navigation .search input[type=text]::-moz-placeholder {
    color: #FFFFFF;
}

#navigation .search input[type=text]::-ms-placeholder {
    color: #FFFFFF;
}

#navigation .search input[type=text]::placeholder {
    color: #FFFFFF;
}

#navigation.active .search input[type=text]::-webkit-input-placeholder,
#navigation.scrolled .search input[type=text]::-webkit-input-placeholder {
    color: #ADADAD !important;
}

#navigation.active .search input[type=text]::-moz-placeholder,
#navigation.scrolled .search input[type=text]::-moz-placeholder {
    color: #ADADAD !important;
}

#navigation.active .search input[type=text]::-ms-placeholder,
#navigation.scrolled .search input[type=text]::-ms-placeholder {
    color: #ADADAD !important;
}

#navigation.active .search input[type=text]::placeholder,
#navigation.scrolled .search input[type=text]::placeholder {
    color: #ADADAD !important;
}

#navigation .search .search-results {
    display: none;
    margin: 10px 0 0;
    z-index: 999;
    border: 0;
    border-radius: 4px;
    background: #FFFFFF;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
}

#navigation .search .search-results .item {
    display: block;
    text-align: left;
    padding: 12px 10px;
    border-radius: 4px;
}

#navigation .search .search-results .item:hover {
    cursor: pointer;
    background: #F4F6F8;
}

#navigation .search .search-results .item img {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0 8px 0 0;
    vertical-align: middle;
    border-radius: 4px;
}

#navigation .search .search-results .item span.title {
    display: inline-block;
    font-size: 14px;
    color: #222222;
    vertical-align: middle;
}

#navigation .menu {
    display: block;
    float: right;
}

#navigation .menu ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    min-height: 50px;
}

#navigation .menu ul li {
    position: relative;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin: 5px 40px 0 0;
}

#navigation .menu ul li:hover ul {
    display: block;
}

#navigation .menu ul li:last-child {
    margin-right: 0;
}

#navigation .menu ul li a,
#navigation .menu ul li button {
    display: block;
    height: 40px;
    padding: 0 8px;
    border: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    border-bottom: 2px solid transparent;
}

#navigation .menu ul li a.dropdown:after {
    content: "";
    display: inline-block;
    margin: 0 0 0 10px;
    vertical-align: middle;
    border-color: #212529 transparent transparent transparent;
    border-width: 4px 4px 0 4px;
    border-style: solid;
}

#navigation .menu ul li a:hover,
#navigation .menu ul li button:hover {
    border-radius: 4px 4px 0 0;
    border-bottom: 2px solid #000000;
    text-decoration: none;
}

#navigation .menu ul li a img {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin: 12px 0 0;
}

#navigation .menu ul li button img {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin: 0;
}

#navigation .menu ul li a span,
#navigation .menu ul li button span {
    display: inline-block;
    margin: 0 0 0 10px;
    color: #212529;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

#navigation .menu ul li ul {
    position: absolute;
    display: none;
    list-style: none;
    margin: 4px 0 0;
    padding: 10px 0;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
    background: #FFFFFF;
    border-radius: 4px;
    border: 0;
    z-index: 900;
    white-space: nowrap;
    column-count: 2;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: top 0.3s ease-in-out;
    -moz-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out;
}

#navigation .menu ul li ul:before {
    position: absolute;
    content: '';
    width: 0;
    height: 16px;
    left: 0;
    right: 0;
    top: -25px;
    display: block;
    margin: 0 auto 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 12px solid #FFFFFF
}

#navigation .menu ul li ul li {
    display: block;
    height: auto !important;
    margin: 0 !important;
    padding: 12px 6px !important;
    line-height: 1;
    text-align: left;
    border: 0;
}

#navigation .menu ul li ul li:last-child {
    border-bottom: 0;
}

#navigation .menu ul li ul li a {
    display: block;
    width: 100%;
    height: auto !important;
    color: #212529;
    font-size: 14px;
    font-weight: 400;
    padding: 0 10px;
    border: 0;
    background: none;
}

#navigation .menu ul li ul li a:hover {
    border: 0 !important;
}

#navigation .menu ul li ul li a img {
    float: left;
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
}

#navigation .menu ul li ul li:hover a img {
    filter: invert(26%) sepia(92%) saturate(1662%) hue-rotate(182deg) brightness(96%) contrast(103%);
}

#navigation .menu ul li ul li a span.title {
    display: block;
    margin: 0 0 3px 34px;
    padding: 0;
    color: #3E3E3E;
    text-align: left;
    font-weight: 700;
    border: 0;
}

#navigation .menu ul li ul li a span.description {
    display: block;
    margin: 0 0 0 34px;
    padding: 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    color: rgba(42, 62, 82, 0.6);
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

#navigation .menu ul li ul li:hover a span.title {
    color: #0072BB;
}

#navigation .menu ul li ul li:hover a span.description {
    color: #324960;
}

#navigation .menu-show {
    position: absolute;
    display: none;
    width: 24px;
    height: 24px;
    top: 21px;
    left: 8px;
}

#navigation .menu-hide {
    position: absolute;
    display: none;
    width: 24px;
    height: 24px;
    top: 21px;
    left: 266px;
}

#navigation .menu-dark-mode {
    position: absolute;
    display: block;
    width: 36px;
    height: 36px;
    top: 15px;
    right: 15px;
}

#navigation .menu-search {
    position: absolute;
    display: none;
    width: 24px;
    height: 24px;
    top: 21px;
    right: 8px;
}

#navigation .menu-search .menu-search-show,
#navigation .menu-search .menu-search-hide {
    display: none;
}

#navigation .menu-show button,
#navigation .menu-hide button,
#navigation .menu-search button,
#navigation .menu-dark-mode button {
    background: transparent;
    border: 0;
    padding: 0;
}

#navigation .menu-show button img,
#navigation .menu-hide button img,
#navigation .menu-search button img {
    display: flex;
    width: 24px;
    height: 24px;
}

#navigation .menu-dark-mode button img {
    display: flex;
    width: 36px;
    height: 36px;
}

#navigation .menu-dark-mode button.active {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

#navigation:after {
    content: '';
    display: table;
    clear: both;
}

/* mobile navigation */
#mobile-navigation {
    position: fixed;
    display: none;
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    z-index: 999;
    -webkit-box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.2) !important;
    -moz-box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.2) !important;
}

#mobile-navigation ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0;
    padding: 0;
}

#mobile-navigation ul li {
    display: table-cell;
    border-right: 1px solid #E5E5E5;
}

#mobile-navigation ul li:last-child {
    border-right: 0;
}

#mobile-navigation ul li a {
    display: block;
}

#mobile-navigation ul li a img {
    display: block;
    margin: 20px auto;
    width: 32px;
    height: 32px;
}

/* header */
#header {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 66px 0 0 0;
    overflow: hidden;
    z-index: 0;
}

#header:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
}

#header .content {
    position: relative;
    display: block;
    margin: 0;
    padding: 15px 0;
}

#header .content h1.title {
    display: block;
    color: #000000;
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-weight: 300;
    word-spacing: -1.6px;
    line-height: 1.3;
    text-shadow: -1px 1px 15px rgba(255, 255, 255, 0.30);
}

#header .content h1.title span {
    color: inherit;
    font-weight: 500;
}

#header .content p.description {
    display: block;
    margin: 10px 0 0;
    color: #000000;
    line-height: 1.5;
    font-size: 17px;
    letter-spacing: -0.4px;
    font-weight: 300;
    text-shadow: -1px 1px 15px rgba(255, 255, 255, 0.30);
}

#header .content:after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    background: linear-gradient(to right bottom, #FFFFFF 49%, transparent 50%);
    top: -5px;
    right: -80px;
    bottom: -5px;
    z-index: 1;
}

#header:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: url('/images/themes/home.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

/* offers */
#offers {
    display: block;
    width: 100%;
    padding: 20px 0;
    margin: 0;
    background: #F1F2F3;
    border-top: 1px solid #DFDFDF;
}

#offers .details {
    position: relative;
    display: table;
    width: 100%;
    margin: 0 0 20px;
    overflow: auto;
}

#offers .details .btn-advertising-policy {
    float: right;
    display: inline-block;
    border: 0;
    background: none;
    line-height: 20px;
}

#offers .details .btn-advertising-policy:before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px 0 0;
    background-image: url('/images/icons/advertising-policy.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    vertical-align: middle;
}

#offers .details .btn-advertising-policy span {
    display: inline;
    color: #2D2D2D;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    vertical-align: middle;
}

#offers .details .modal-advertising-policy {
    position: absolute;
    display: none;
    top: 25px;
    right: 0;
    width: 100%;
    max-width: 275px;
    z-index: 999;
    background: #F5F4F3;
    padding: 10px;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

#offers .details .modal-advertising-policy p {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px;
}

#offers .details .modal-advertising-policy button {
    display: block;
    width: 100%;
    height: 40px;
    color: #FFFFFF;
    border-radius: 4px;
    border: 0;
    background: #0072BB;
}

#offers .card {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    background: #FFFFFF;
    border-radius: 24px;
}

#offers .card .container {
    display: table;
    width: 100%;
    padding: 16px;
}

#offers .card .container .position {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    color: #FFFFFF;
    border: 5px solid #F1F2F8;
    font-size: 25px;
    top: calc(50% - 25px);
    z-index: 9;
    font-weight: 600;
    padding: 8px 0;
    border-radius: 50%;
    line-height: 1;
    left: -25px;
    text-align: center;
    background: linear-gradient(260deg, #FE3366B5, #FE3366);
}

#offers .card .container .symbol {
    position: relative;
    display: table-cell;
    width: 250px;
    height: auto !important;
    margin: 0;
    padding: 25px 60px 25px 25px;
    vertical-align: middle;
    border-radius: 0;
    background: #FFFFFF;
    text-align: center;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

#offers .card .container .symbol.active {
    display: block !important;
}

#offers .card .container .symbol:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 53%;
    top: 0;
    right: 55px;
    background: transparent;
    border-color: #E0E0E1;
    border-right: 8px dotted #F1F2F8;
    opacity: 1;
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    transform: rotate(-20deg);
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 1;
}

#offers .card .container .symbol:hover {
    cursor: pointer;
}

#offers .card .container .symbol img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    border-radius: 5px;
    top: 18px;
    object-fit: cover;
    object-position: 50% 50%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

#offers .card .container .symbol:hover img {
    top: 0;
}

#offers .card .container .symbol img.darkmode {
    display: none;
}

#offers .card .container .symbol a {
    position: relative;
    bottom: 0;
    z-index: 3;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

#offers .card .container .symbol:hover a {
    opacity: 1;
    bottom: -18px;
}

#offers .card .container .symbol:after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 53%;
    top: 100%;
    bottom: 0;
    right: 55px;
    background: transparent;
    opacity: 1;
    border-color: #E0E0E1;
    border-right: 8px dotted #F1F2F8;
    -webkit-transform: scale(1, -1) rotate(-20deg);
    -moz-transform: scale(1, -1) rotate(-20deg);
    transform: scale(1, -1) rotate(-20deg);
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 1;
}

#offers .card .container .details {
    display: table-cell;
    width: auto !important;
    margin: 0;
    padding: 0 50px 30px;
    text-align: left;
    overflow: visible;
    vertical-align: top;
}

#offers .card .container .details:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 53%;
    top: 0;
    right: 45px;
    background: transparent;
    border-color: #E0E0E1;
    border-right: 8px dotted #F1F2F8;
    opacity: 1;
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    transform: rotate(-20deg);
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 1;
}

#offers .card .container .details.active {
    display: block !important;
}

#offers .card .container .details span.title {
    position: relative;
    display: block;
    font-weight: 400;
    font-size: 20px;
    color: #0084AE;
    line-height: 28px;
    margin: 5px 0 0;
    padding: 0;
    text-align: left;
    vertical-align: top;
}

#offers .card .container .details ul {
    display: block;
    max-height: 150px;
    margin: 0 auto;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #444444;
    text-align: left;
    overflow: hidden;
    list-style: none;
}

#offers .card .container .details.active ul {
    height: auto !important;
    max-height: none !important;
}

#offers .card .container .details ul li {
    display: block;
    margin: 5px 0;
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
    color: #5c483b;
}

#offers .card .container .details ul li:before {
    display: inline-block;
    height: 24px;
    margin: 0 8px 0 0;
    font-size: 18px;
    font-weight: 700;
    padding-left: 0;
    vertical-align: middle;
}

#offers .card .container .details ul li.pro:before {
    content: '\2713';
    color: #0084AE;
}

#offers .card .container .details ul li.con:before {
    content: "\2717";
    color: #fe3366;
}

#offers .card .container .details button {
    position: absolute;
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    margin: 10px auto 0;
    padding: 0;
    color: #CCCCCC;
    background: transparent;
    border: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 -10px 30px 10px rgba(255, 255, 255, 0.95);
    -moz-box-shadow: 0 -10px 30px 10px rgba(255, 255, 255, 0.95);
    box-shadow: 0 -10px 30px 10px rgba(255, 255, 255, 0.95);
    z-index: 1;
}

#offers .card .container .details button.active {
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
}

#offers .card .container .details:after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 53%;
    top: 100%;
    bottom: 0;
    right: 45px;
    background: transparent;
    opacity: 1;
    border-color: #E0E0E1;
    border-right: 8px dotted #F1F2F8;
    -webkit-transform: scale(1, -1) rotate(-20deg);
    -moz-transform: scale(1, -1) rotate(-20deg);
    transform: scale(1, -1) rotate(-20deg);
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 1;
}

#offers .card .container .options {
    display: table-cell;
    min-width: 150px;
    vertical-align: middle;
    text-align: center;
}

#offers .card .container .options .grade {
    position: relative;
    display: block;
    margin: 0 0 5px;
}

#offers .card .container .options .grade span.title {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    -moz-transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#offers .card .container .options .grade:hover span.title {
    opacity: 0;
    -webkit-transform: translate(50%, 0);
    -moz-transform: translate(50%, 0);
    transform: translate(50%, 0);
}

#offers .card .container .options .grade .score {
    position: relative;
    display: block;
    margin: 0;
}

#offers .card .container .options .grade .score span.amount {
    position: relative;
    display: block;
    margin: 0;
    padding: 8px 12px;
    font-size: 60px;
    font-weight: 400;
    color: #0084AE;
    border-radius: 3px;
    line-height: 1;
    -webkit-transition: transform 0.5s ease-out;
    -moz-transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

#offers .card .container .options .grade:hover .score span.amount {
    -webkit-transform: scale(1.3) translate(0, 0) translateZ(0);
    transform: scale(1.3) translate(0, 0) translateZ(0);
}

#offers .card .container .options .grade .score .tooltip {
    position: absolute;
    display: none;
    margin: 50px 0 0;
    padding: 0;
    top: 40px;
    right: 40px;
    background: #FFFFFF;
    min-height: 100px;
    z-index: 400;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#offers .card .container .options .grade .score .tooltip:before {
    position: absolute;
    content: '';
    display: block;
    width: 0;
    right: 25px;
    top: -36px;
    border-bottom: 18px solid #FFFFFF;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid transparent;
    filter: drop-shadow(0 -7px 5px rgba(0, 0, 0, .15));
}

#offers .card .container .options .grade:hover .score .tooltip {
    display: block;
}

#offers .card .container .options .grade .score .tooltip .item {
    display: table;
    width: 100%;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-name: tooltip-item-appear;
    -moz-animation-name: tooltip-item-appear;
    animation-name: tooltip-item-appear;
    visibility: visible;
    opacity: 0;
}

#offers .card .container .options .grade .score .tooltip .item:nth-of-type(1) {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

#offers .card .container .options .grade .score .tooltip .item:nth-of-type(2) {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#offers .card .container .options .grade .score .tooltip .item:nth-of-type(3) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

#offers .card .container .options .grade .score .tooltip .item:nth-of-type(4) {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

#offers .card .container .options .grade .score .tooltip .item:nth-of-type(5) {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

#offers .card .container .options .grade .score .tooltip .item:nth-of-type(even) {
    background: #F5F5F5;
}

#offers .card .container .options .grade .score .tooltip .item .icon {
    display: table-cell;
    padding: 10px 0 10px 10px;
    width: 26px;
    vertical-align: top;
}

#offers .card .container .options .grade .score .tooltip .item .icon img {
    display: block;
    margin: 4px 0 0;
    width: 16px;
    height: 16px;
    filter: hue-rotate(120deg) brightness(1.1);
}

#offers .card .container .options .grade .score .tooltip .item .information {
    display: table-cell;
    padding: 10px;
    vertical-align: baseline;
}

#offers .card .container .options .grade .score .tooltip .item .information span.name {
    display: block;
    margin: 0 0 5px;
    padding: 0;
    font-size: 14px;
    color: #FE3367;
    font-weight: 600;
    text-align: left;
    border: 0;
    white-space: nowrap;
    line-height: 1;
    opacity: 1;
}

#offers .card .container .options .grade .score .tooltip .item .information p.description {
    display: block;
    font-weight: 400;
    text-align: left;
    font-size: 13px;
    line-height: 1.25;
}

#offers .card .container .options .grade .score .tooltip .item .information p.description strong {
    font-weight: 700;
    color: #353535;
}

#offers .card .container .options .grade .score .tooltip .item .score {
    display: table-cell;
    padding: 10px 10px 10px 0;
    line-height: 1;
    vertical-align: baseline;
}

#offers .card .container .options .grade .score .tooltip .item .score span {
    display: block;
    padding: 0 5px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 4px;
    background: #FE3367;
}

#offers .card .container .options .grade .score .tooltip .item a {
    width: 100%;
    display: table-cell;
    text-align: right;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 300;
    color: #222222;
}

#offers .card .container .options .rating {
    display: inline-block;
    margin: 0 auto;
}

#offers .card .container .options .links {
    display: block;
    margin: 20px 0 10px;
    overflow: auto;
}

#offers .card .outlinks {
    display: none;
    margin: 0 16px;
    padding: 16px 0;
    border-top: solid 1px #E5E5E5;
}

#offers .card .outlinks button {
    position: relative;
    display: block;
    width: 30px;
    height: 14px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #FFFFFF;
    top: -23px;
}

#offers .card .outlinks button img {
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 auto;
}

#offers .card .outlinks span.slogan {
    display: block;
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

#offers .card .outlinks a {
    border-radius: 6px !important;
}

#offers:after {
    content: '';
    display: table;
    clear: both;
}

/* page content */
#content {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* page content */
#guarantees {
    position: relative;
    display: block;
    width: 100%;
    padding: 25px 0;
    margin: 0;
    background: #05164C;
}

#guarantees .item {
    display: block;
    margin: 0;
    padding: 25px;
}

#guarantees .item img {
    display: block;
    margin: 0 auto;
    width: auto !important;
    height: 130px;
}

#guarantees .item span {
    display: block;
    margin: 25px 0 0;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
}

#guarantees:after {
    content: '';
    display: table;
    clear: both;
}

/* tips */
#tips {
    display: block;
    padding: 40px 0;
    background: #FFFFFF;
}

#tips h2 {
    display: block;
    min-height: 46px;
    font-size: 24px;
    margin: 0 0 15px;
    padding: 0 10px 0 0;
}

#tips h2:before {
    content: '';
    float: left;
    display: block;
    width: 46px;
    height: 46px;
    margin: 0 8px 0 0;
    background-image: url('/images/icons/award.svg');
    background-size: 46px 46px;
}

#tips .container {
    display: table;
    width: 100%;
}

#tips .container .navigation {
    display: table-cell;
    background: #F1F1F1;
    border: 1px solid #CCCCCC;
    padding: 0;
    vertical-align: top;
    overflow: visible;
}

#tips .container .navigation ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

#tips .container .navigation ul li {
    display: block;
    width: 100%;
    height: auto !important;
    overflow: auto;
}

#tips .container .navigation ul li button {
    display: block;
    width: 100%;
    padding: 18px 91px 18px 16px;
    color: #000000;
    font-size: 17px;
    text-align: left;
    line-height: 2;
    border: 0;
    outline: 0;
    white-space: nowrap;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

#tips .container .navigation ul li button.active,
#tips .container .navigation ul li button:hover {
    background: #DDDDDD;
}

#tips .container .navigation ul li button img {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 15px 0 0;
    vertical-align: middle;
}

#tips .container .content {
    position: relative;
    display: table-cell;
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    vertical-align: top;
    z-index: 1;
    overflow: auto;
}

#tips .container .content .item-block {
    position: absolute;
    padding: 25px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

#tips .container .content .item-block:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
    filter: contrast(50%) brightness(150%);
    background-size: 40% auto;
    background-repeat: no-repeat;
    background-position: center;
}

#tips .container .content h3 {
    display: block;
    margin: 0 0 15px 0;
    font-size: 22px;
    color: #0084AE;
    line-height: 1;
}

#tips .container .content p {
    display: block;
    font-size: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

#tips .container .content img {
    position: absolute;
    float: right;
    max-width: 320px;
    height: auto !important;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.6;
}

/* compare */
#compare {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 0;
    margin: 0;
    background: #F4F4F4;
    border-top: 1px solid #DFDFDF;
}

#compare .subjects {
    display: block;
    width: 100%;
}

#compare .subjects .card {
    position: relative;
    display: inline-block;
    width: calc(25% - 16px);
    margin: 0 10px 20px 0;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 0;
    vertical-align: top;
    text-align: left;
    white-space: normal !important;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

#compare .subjects .card .position {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    z-index: 2;
    text-align: center;
    border-radius: 50%;
    background-color: #F5F5F5;
    color: #4E5155;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}

#compare .subjects .card .position:hover {
    cursor: pointer;
}

#compare .subjects .card .thumbnail {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 10px;
    overflow: hidden;
    vertical-align: middle;
}

#compare .subjects .card .thumbnail img {
    position: relative;
    display: block;
    width: 120%;
    height: auto;
}

#compare .subjects .card .thumbnail .brand {
    position: absolute;
    display: block;
    width: 75%;
    height: 50px;
    padding: 5px 0 5px 15px;
    left: 0;
    bottom: 15px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
}

#compare .subjects .card .thumbnail .brand:after {
    content: '';
    position: absolute;
    right: -35px;
    top: 0;
    border-right: 35px solid transparent;
    border-top: 50px solid rgba(255, 255, 255, 0.8);
}

#compare .subjects .card .thumbnail .brand img {
    display: inline-block;
    height: auto !important;
    max-height: 40px;
    margin: 0 auto;
    width: auto !important;
    max-width: 128px;
    vertical-align: middle;
}

#compare .subjects .card .item {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid #E5E5E5;
}

#compare .subjects .card .item h2,
#compare .subjects .card .item h3,
#compare .subjects .card .item h4,
#compare .subjects .card .item h5 {
    display: block;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

#compare .subjects .card .item ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

#compare .subjects .card .item ul li {
    position: relative;
    display: table;
    width: 100%;
    height: 30px;
}

#compare .subjects .card .item ul li span.title {
    display: table-cell;
    margin: 0;
    font-weight: 500;
    font-size: 13px;
    color: #111111;
    letter-spacing: -0.4px;
    text-align: left;
    overflow: hidden;
    vertical-align: middle;
}

#compare .subjects .card .item ul li span.title img {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
    vertical-align: middle;
}

#compare .subjects .card .item ul li span.description {
    display: table-cell;
    font-size: 13px;
    color: #6A6A6A;
    margin: 3px 0;
    text-align: right;
    vertical-align: middle;
}

#compare .subjects .card .item ul li span.slogan {
    display: table-row;
    font-size: 13px;
    color: #6A6A6A;
    margin: 3px 0;
    text-align: left;
    vertical-align: middle;
}

#compare .subjects .card .item ul li .rating {
    float: right;
    margin: 5px 0;
}

#compare .subjects .card .item ul.summaries li span.title,
#compare .subjects .card .item ul.summaries li span.description {
    display: block;
    text-align: left;
}

#compare .subjects .card a.reviews {
    display: block;
    margin: 10px 0 0;
    color: #636365;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}

/* articles */
#articles {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #F1F2F8;
}

#articles .information {
    position: relative;
    display: block;
    margin: 0 0 50px;
    padding: 10px 0 20px;
    background: #FFFFFF;
}

#articles .information:before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    height: 55px;
    left: 0;
    bottom: 77px;
    background-image: url('/images/content/waves.svg');
    background-size: 120px 120px;
    background-repeat: repeat-x;
    background-position: center bottom -35px;
}

#articles .information:after {
    position: absolute;
    content: '';
    display: block;
    width: 0;
    height: 16px;
    left: 0;
    right: 0;
    bottom: -16px;
    margin: 0 auto;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    border-top: 20px solid #FFFFFF;
}

#articles .information span.title {
    display: block;
    margin: 0 0 12px;
    color: #353535;
    font-size: 30px;
    font-weight: 700;
    width: 1310px;
    max-width: 100%;
    line-height: 1;
}

#articles .information span.title span {
    color: #FE3367;
    font-weight: 700;
}

#articles .information span.description {
    display: block;
    color: #959595;
    font-size: 15px;
    line-height: 1;
}

#articles .information span.description strong {
    font-weight: 600;
}

#articles .card {
    position: relative;
    display: table;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    overflow: auto;
    border: 1px solid #DFDFDF;
    border-radius: 3px;
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#articles .card:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    text-align: center;
    color: #FFFFFF;
    border: solid 5px #A1A1A1;
    font-size: 25px;
    font-weight: 600;
    padding: 11px 8px 8px;
    border-radius: 50%;
    z-index: 9;
}

#articles .card:nth-of-type(1):before {
    background: url('/images/content/trophy.svg') center center no-repeat, #05164C;
    background-size: 55px auto;
    filter: brightness(1.5);
}

#articles .card:nth-of-type(2):before {
    background: url('/images/content/profile-male.svg') center center no-repeat, #05164C;
    background-size: 55px auto;
    filter: brightness(1.5);
}

#articles .card:nth-of-type(3):before {
    background: url('/images/content/camera.svg') center center no-repeat, #05164C;
    background-size: 55px auto;
    filter: brightness(1.5);
}

#articles .card:hover {
    cursor: pointer;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

#articles .card .thumbnail {
    position: relative;
    display: table-cell;
    width: 500px;
    height: auto !important;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    vertical-align: top;
    white-space: nowrap;
}

#articles .card .thumbnail:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 80px;
    left: 0;
    bottom: 100px;
    background-image: url('/images/content/waves.svg');
    background-size: 120px 120px;
    background-repeat: repeat-x;
    background-position: center top;
}

#articles .card .thumbnail img {
    position: absolute;
    display: block;
    min-width: 500px;
    height: calc(100% - 100px);
    padding: 0;
    object-fit: cover;
    object-position: 50% 50%;
}

#articles .card .thumbnail a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 30px 0 0;
    left: 0;
    bottom: 0;
    color: #FFFFFF;
    font-size: 20px;
    opacity: 0;
    z-index: 1;
    border: 0 !important;
    text-align: center;
    background: url('/images/content/waves-pink.svg') center top repeat-x, linear-gradient(to bottom, transparent 50%, #FE3367 50%);
    background-size: 120px auto, cover;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: none;
    filter: invert(0);
}

#articles .card:hover .thumbnail a {
    opacity: 1;
}

#articles .card .content {
    position: relative;
    display: table-cell;
    padding: 15px;
    overflow: hidden;
}

#articles .card .content:after {
    content: "";
    position: absolute;
    top: -30px;
    bottom: 0;
    left: -30px;
    right: -30px;
    -webkit-box-shadow: 0 -10px 40px 15px rgba(255, 255, 255, 0.95) inset;
    -moz-box-shadow: 0 -10px 40px 15px rgba(255, 255, 255, 0.95) inset;
    box-shadow: 0 -10px 40px 15px rgba(255, 255, 255, 0.95) inset;
}

#articles .card .content h2 {
    display: block;
    margin: 0 0 10px;
    color: #0084AE;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

#articles .card .content h3 {
    display: block;
    font-size: 18px;
    margin: 15px 0 10px;
    padding: 0;
    line-height: 18px;
}

#articles .card .content h3:before {
    content: '';
    float: left;
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    background-image: url('/images/icons/advertising-policy.svg');
    background-size: 18px 18px;
    filter: opacity(0.35);
}

#articles .card .content span.date {
    display: table-row;
    height: 25px;
    padding: 0;
    color: #4E5155;
    font-weight: 300;
    font-size: 13px;
    font-style: italic;
    line-height: 1.5;
}

#articles .card .content span.date:before {
    content: '';
    display: inline-block;
    margin: 0 5px 2px 0;
    width: 13px;
    height: 13px;
    vertical-align: sub;
    background-image: url('/images/icons/calendar.svg');
    background-size: contain;
}

#articles .card .content p {
    display: block;
    margin: 5px 0;
}

#articles .card .content ul {
    display: block;
    width: 100%;
    max-height: 150px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#articles .card .content ul li {
    display: inline-block;
    margin: 4px 4px 4px 0;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1;
    border-radius: 15px;
    background: #EEEEEE;
    vertical-align: middle;
}

#articles .card .content ul li:before {
    content: '\0023';
    display: inline-block;
    margin: 0 5px 0 0;
    color: #0084AE;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    vertical-align: middle;
}

#articles:after {
    content: '';
    display: table;
    clear: both;
}

/* article */
#article {
    position: relative;
    display: block;
    width: 100%;
    padding: 66px 0 0;
    margin: 0;
    overflow: hidden;
    background: #FFFFFF;
}

#article .header {
    display: block;
    width: 100%;
}

#article .header img {
    display: block;
    width: 100%;
    height: auto !important;
    min-height: 300px;
    max-height: 500px;
    object-position: center center;
    object-fit: cover;
}

#article .content {
    position: relative;
    display: block;
    margin: 20px 0;
    padding: 0;
    background: #FFFFFF;
    border-radius: 0;
    overflow: auto;
}

#article .content .details {
    display: block;
    margin: 0;
    padding: 20px 20px 0 20px;
}

#article .content .details h2 {
    display: block;
    margin: 0 0 10px;
    color: #4E5155;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.25;
}

#article .content .details h3 {
    display: block;
    margin: 0 0 10px;
    color: #4E5155;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.25;
}

#article .content .details h4 {
    display: block;
    margin: 0 0 10px;
    color: #4E5155;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.25;
}

#article .content .details span.date {
    display: block;
    margin: 0 0 10px;
    color: #4E5155;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5;
}

#article .content .details span.date:before {
    content: '';
    display: inline-block;
    margin: 0 5px 2px 0;
    width: 16px;
    height: 16px;
    vertical-align: sub;
    background-image: url('/images/icons/calendar.svg');
    background-size: contain;
}

#article .content .details .thumbnail {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 10px;
    overflow: hidden;
}

#article .content .details .thumbnail img {
    width: 100%;
    height: auto !important;
}

#article .content .details .quote {
    display: block;
    margin: 0 0 10px !important;
    padding: 15px;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 4px;
    background: #F6F6F6;
}

#article .content .details .quote-blue {
    border-left: 8px solid #0172BB;
}

#article .content .details .quote-yellow {
    border-left: 8px solid #F6D757;
}

#article .content .details .description {
    display: block;
    margin: 0;
}

#article .content .details .description p {
    display: block;
    margin: 0 0 20px;
    color: #494949;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
}

#article .content .details .description q {
    display: block;
    margin: 0 0 10px;
    padding: 15px 20px 15px 30px;
    color: #4E5155;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.9;
    background: #F6F6F6;
}

#article .content .details .description q:before,
#article .content .details .description q:after {
    font-weight: 600;
    font-size: 36px;
    color: #213E78;
    line-height: 0;
    padding: 0 5px;
    opacity: 0.6;
    vertical-align: text-bottom;
}

#article .content .details .description q:before {
    content: open-quote;
    margin-left: -30px;
    margin-right: 5px;
}

#article .content .details .description q:after {
    content: close-quote;
}

#article .content .details .description ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

#article .content .details .description ul li {
    color: #494949;
    font-size: 15px;
    font-weight: 300;
}

#article .content .details .description strong {
    display: block;
    margin: 0 0 5px;
    font-size: 19px;
    font-weight: 500;
}

#article .content .options {
    display: table;
    width: 100%;
    background: #F5F4F3;
    padding: 10px 20px;
}

#article .content .options .item {
    display: table-cell;
    vertical-align: middle;
}

#article .content .options .item:first-of-type {
    text-align: left;
}

#article .content .options .item:last-of-type {
    text-align: right;
}

#article .content .options .item span.title {
    margin: 0 5px 0 0;
    color: #213E78;
    font-size: 14px;
    vertical-align: middle;
}

#article .content .options .item button {
    display: inline-block;
    background: #F5F4F3;
    margin: 0 5px 0 0;
    padding: 0;
    border: 0;
    vertical-align: middle;
}

#article .content .options .item button img {
    display: flex;
    width: 28px;
    height: 28px;
}

#article .content .options .item ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    vertical-align: middle;
}

#article .content .options .item ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 0;
}

#article .content .options .item ul li a {
    display: block;
}

#article .content .options .item ul li a img {
    display: block;
    width: 36px;
    height: 36px;
}

#article .index {
    position: relative;
    display: block;
    margin: 0 0 20px;
    padding: 20px 20px 6px 20px;
    background: #D1ECF1;
    border: 1px solid #BEE5EB;
}

#article .index h3 {
    display: block;
    margin: 0 0 10px;
    padding: 0 0 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    border-bottom: 1px solid #C1E0E6;
}

#article .index ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

#article .index ul li {
    display: block;
    width: 100%;
}

#article .index ul li span.title {
    display: block;
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 300;
    color: #222222;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#article .top-offers {
    position: relative;
    display: block;
    margin: 0 0 20px 0;
    padding: 20px;
    background: #F4F6F8;
    border-radius: 0;
}

#article .top-offers h3 {
    display: block;
    font-size: 22px;
    font-weight: 300;
    margin: 0 0 20px;
}

#article .top-offers .item {
    display: table;
    width: 100%;
    margin: 0 0 20px;
    padding: 20px;
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
}

#article .top-offers .item:last-of-type {
    margin: 0 !important;
}

#article .top-offers .item .details {
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    padding: 0 15px 0 0;
}

#article .top-offers .item .details span.title {
    display: block;
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
}

#article .top-offers .item .details .rating {
    margin: 2px 0;
}

#article .top-offers .item .details button {
    margin: 0;
}

#article .top-offers .item .thumbnail {
    display: table-cell;
    height: auto !important;
    margin: 0;
    overflow: hidden;
    text-align: right;
    vertical-align: middle;
}

#article .top-offers .item .thumbnail img {
    display: inline-block;
    width: 100%;
    max-width: 90px;
    height: auto !important;
    margin: 0;
    padding: 0;
    border-radius: 5px;
    vertical-align: middle;
}

/* faq */
#faq {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0px;
    background-color: #ffffff;
}

#faq .questions {
    position: relative;
    display: block;
    margin: 0 0 20px;
    padding: 0;
}

#faq .questions ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

#faq .questions ul li {
    position: relative;
    display: block;
    margin: 0 0 25px;
}

#faq .questions ul li label.title {
    position: relative;
    display: block;
    padding: 15px 40px 15px 20px;
    color: #0072BB;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    background: #F5F4F4;
    transition: all 0.3s ease-in-out;
    clear: both;
}

#faq .questions ul li label.title {
    padding: 5px 15px;
}

#faq .questions ul li label.title:after {
    content: '\002B';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    font-size: 45px;
    line-height: 75px;
}

#faq .questions ul li label.title:hover {
    opacity: 0.8;
    cursor: pointer;
}

#faq .questions ul li p.description {
    padding: 0 20px;
    font-size: 15px;
    line-height: 0;
    opacity: 0;
    font-weight: 300;
    background: #FFFFFF;
    overflow: hidden;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

#faq .questions ul li input[type=checkbox] {
    display: none;
}

#faq .questions ul li input[type=checkbox]:checked ~ label.title {
    background: #DAE5f7;
}

#faq .questions ul li input[type=checkbox]:checked ~ label.title:after {
    content: '\2212';
}

#faq .questions ul li input[type=checkbox]:checked ~ p.description {
    padding: 25px 20px 0;
    opacity: 1;
    line-height: 1.6;
}

#faq .questions ul li input[type=checkbox]:checked ~ p.description {
    padding: 35px 20px;
    line-height: 26px;
    font-size: 16px;
    background-color: #EEF3FA;
}

/* banner */
#banner {
    display: block;
    width: 100%;
    margin: 66px 0 0;
    padding: 8px 0;
    background: linear-gradient(45deg, #092144, #0172BB);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

#banner .wrapper {
    display: table;
}

#banner .thumbnail {
    display: none;
    width: 110px;
    vertical-align: middle;
    padding: 0 20px 0 0;
}

#banner .thumbnail img {
    display: block;
    width: 100%;
    height: auto !important;
    padding: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.5);
}

#banner .details {
    display: table-cell;
    vertical-align: middle;
}

#banner .details h1 {
    display: table-cell;
    width: 100%;
    margin: 0;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    vertical-align: middle;
}

#banner .details h1:before {
    content: '';
    float: left;
    display: flex;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin: 0 5px 0 0;
    background-color: #FFFFFF;
    background-image: url('/images/icons/badge.svg');
    background-size: contain;
    border-radius: 50%;
}

#banner .details h2 {
    display: none;
    margin: 0 0 5px;
    color: #FFFFFF;
    line-height: 1;
    font-size: 27px;
    font-weight: 700;
}

#banner .details h3 {
    display: none;
    margin: 0;
    color: #DDDDDD;
    line-height: 1;
    font-size: 15px;
    font-weight: 400;
}

#banner .details .rating {
    display: none;
    text-align: left;
}

/* breadcrumbs */
#breadcrumbs {
    display: block;
    margin: 0px;
    background: #F4F4F4;
    border-bottom: 1px solid #E5E5E5;
}

#breadcrumbs ul {
    display: block;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    white-space: nowrap;
    overflow: hidden;
}

#breadcrumbs ul li {
    display: inline-block;
}

#breadcrumbs ul li + li:before {
    content: '/\00a0';
    padding: 0 12px;
    color: #757575;
}

#breadcrumbs ul li a {
    color: #0172BB;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}

#breadcrumbs ul li a:hover {
    color: #0172BB;
    text-decoration: underline;
}

#breadcrumbs ul li span {
    color: #353535;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

/* sitemap */
#sitemap {
    display: block;
    width: 100%;
    background: #05164C;
    padding: 50px 0;
    z-index: 100;
}

#sitemap p.description {
    display: block;
    width: 100%;
    margin: 0 0 15px;
    padding: 0 0 15px;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

#sitemap p.description a {
    color: #AAAAAA;
}

#sitemap span.title {
    display: block;
    margin: 0 0 5px;
    color: #F8F9FA;
    font-size: 21px;
}

#sitemap ul.menu {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

#sitemap ul.menu li {
    display: block;
    margin: 0 30px 0 0;
    padding: 12px 0;
    text-align: left;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

#sitemap ul.menu li:last-child {
    margin: 0 30px 0 0 !important;
    border-bottom: 0;
}

#sitemap ul.menu li a {
    display: block;
    font-size: 16px;
    color: #AAAAAA;
    font-weight: 300;
    line-height: 1.5;
}

#sitemap ul.menu li a.title {
    font-size: 17px;
    color: #F8F8F8;
    margin: 0 0 4px;
}

#sitemap ul.menu li a.description {
    font-size: 14px;
}

#sitemap ul.menu li a span {
    font-weight: 500;
    color: inherit !important;
}

#sitemap ul.menu li a img {
    float: left;
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
    border-radius: 50%;
}

#sitemap ul.menu li a img.category {
    filter: brightness(0) invert(1);
}

#sitemap img.logo {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto !important;
    margin: 0 0 25px;
    padding: 0 25px 0 0;
}

#sitemap span.copyright {
    display: block;
    font-size: 14px;
    color: #F8F9FA;
    line-height: 1.5;
    padding: 0 25px 0 0;
    text-align: left;
}

#sitemap span.copyright a {
    color: #AAAAAA;
}

#sitemap span.rights {
    display: block;
    font-size: 14px;
    color: #F8F9FA;
    line-height: 1.5;
    padding: 0 25px 0 0;
    margin: 0;
    text-align: left;
}

#sitemap ul.brands {
    display: table;
    table-layout: fixed;
    margin: 15px 30px 15px 0;
    padding: 15px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#sitemap ul.brands li {
    display: table-cell;
    width: 33%;
    padding: 0 10px 0 0;
    vertical-align: middle;
}

#sitemap ul.brands li img {
    display: block;
    width: 100%;
}

#sitemap:after {
    content: '';
    display: table;
    clear: both;
}