/* 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-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 {
    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:after {
    content: '';
    display: table;
    clear: both;
}

/* header */
#header {
    position: relative;
    display: block;
    width: 100%;
    height: auto !important;
    padding: 68px 0 0 0;
    overflow: hidden;
    z-index: 0;
    background-image: -webkit-linear-gradient(315deg, #EF1745, #F7B287);
    background-image: -moz-linear-gradient(315deg, #EF1745, #F7B287);
    background-image: -ms-linear-gradient(315deg, #EF1745, #F7B287);
    background-image: -o-linear-gradient(315deg, #EF1745, #F7B287);
    background-image: linear-gradient(315deg, #EF1745, #F7B287);
    background-color: #EF1745;
}

#header:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    bottom: 0;
    background-image: url('/images/content/waves.svg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: bottom;
    background-size: cover;
}

#header .thumbnail {
    position: relative;
    display: block;
    width: 100%;
}

#header .thumbnail img {
    display: block;
    margin: 20px auto;
    width: 80%;
    height: auto !important;
}

#header .content {
    display: block;
    padding: 85px 0 0;
}

#header .content h1.title {
    display: block;
    color: #FFFFFF;
    font-size: 30px;
    margin: 0;
    max-width: 420px;
    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 30px;
    color: #FFFFFF;
    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 button {
    position: relative;
    display: inline-block;
    height: 50px;
    padding: 0 18px;
    line-height: 50px;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    white-space: nowrap;
    border: 0;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#header .content button.recommend {
    margin: 0;
    background: #FFFFFF;
    color: #212529;
}

#header .content button.recommend:hover {
    background: #E2E6EA;
}

#header .content button.compare {
    margin: 0 0 0 10px;
    background: #00A698;
    color: #FFFFFF;
}

#header .content button.compare:hover {
    background: #00887D;
}

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

#header .statistics ul {
    display: table;
    table-layout: fixed;
    width: 100%;
    max-width: 400px;
    margin: 0;
    padding: 10px 0 0;
    list-style: none;
    text-align: center;
    border-collapse: separate;
    border-spacing: 20px 0;
    border-top: 3px dotted #FFFFFF;
}

#header .statistics ul li {
    position: relative;
    display: table-cell;
    width: 33%;
    margin: 0;
    border-radius: 4px;
    box-shadow: -1px 1px 9px rgba(167, 12, 45, 0.15);
    background: #FFFFFF;
    vertical-align: top;
}

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

#header .statistics ul li .icon {
    display: block;
    margin: 10px auto 0;
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    background-color: #0172BB;
    background-repeat: no-repeat;
    background-size: 50px 50px;
}

#header .statistics ul li .icon img {
    width: 20px;
    height: 20px;
}

#header .statistics ul li span.amount {
    display: block;
    margin: 3px auto;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    font-family: fantasy;
    letter-spacing: 1px;
}

#header .statistics ul li span.title {
    position: absolute;
    display: block;
    margin: 0 auto;
    bottom: -35px;
    left: 0;
    right: 0;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    color: #0172BB;
    text-align: center;
}

#header:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background-image: url('/images/content/banner.png');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 10%;
    z-index: -1;
}

/* top offers */
#top-offers {
    position: relative;
    display: block;
    width: 100%;
    height: auto !important;
    margin: -100px 0 50px 0;
}

#top-offers .last-updated {
    position: relative;
    display: none;
    float: right;
    padding: 0 5px;
    margin: -40px 0 0 0;
    text-align: right;
    background: #E2E2E2;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    border-radius: 4px;
    color: #4E5155;
}

#top-offers .last-updated span.title {
    display: block;
    margin: 5px 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.1px;
}

#top-offers .last-updated span.title:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
    background-image: url('/images/icons/benefits-dark.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    vertical-align: middle;
}

#top-offers .last-updated span.title strong {
    font-weight: 700;
}

#top-offers .container {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

#top-offers .container .card {
    position: relative;
    display: inline-block;
    width: calc(20% - 20px);
    margin: 0 10px 20px 10px;
    padding: 16px 16px 8px 16px;
    background: #FFFFFF;
    border: 0;
    border-radius: 4px;
    vertical-align: top;
    -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);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#top-offers .container .card:nth-of-type(1) {
    order: 3;
}

#top-offers .container .card:nth-of-type(2) {
    order: 2;
}


#top-offers .container .card:nth-of-type(3) {
    order: 4;
}


#top-offers .container .card:nth-of-type(4) {
    order: 1;
}


#top-offers .container .card:nth-of-type(5) {
    order: 5;
}

#top-offers .container .card .ribbon {
    position: absolute;
    display: block;
    width: calc(100% + 12px);
    height: 35px;
    margin: 0;
    padding: 0 0 0 25px;
    top: -17px;
    left: -6px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    background-color: #0770e3;
    letter-spacing: -0.5px;
    line-height: 33px;
    text-align: center;
    border-radius: 4px 4px 0px 0;
    border-top: solid 1px #3996f9;
    border-bottom: solid 1px #033163;
    vertical-align: top;
    z-index: 9;
}

#top-offers .container .card .ribbon img {
    position: absolute;
    width: auto !important;
    height: 56px;
    top: -24px;
    left: -4px;
    filter: brightness(0) invert(1);
}

#top-offers .container .card .ribbon:before,
#top-offers .container .card .ribbon:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    bottom: -7px;
    left: 0;
    border-color: transparent #07293E transparent transparent;
    border-style: solid;
    border-width: 0 6px 6px 0;
    border-radius: unset;
    background-color: transparent;
}

#top-offers .container .card .ribbon:after {
    left: auto;
    right: 0;
    border-width: 6px 6px 0 0px;
    border-color: #07293e transparent transparent;
}

#top-offers .container .card .grade {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 72px;
    height: 63px;
    background: url('/images/icons/label-score.svg') top right no-repeat;
    background-size: contain;
    text-align: right;
    padding: 8px 8px 0 0;
    font-size: 19px;
    font-weight: bold;
    color: #FFFFFF;
    border-radius: 0 3px 0 0;
    z-index: 1;
}

#top-offers .container .card .ratings {
  display: block;
  font-size: 12px;
  color: #777777;
}

#top-offers .container .card .thumbnail {
    width: 100%;
    height: 78px;
    margin: 10px 0;
    padding: 0 16px;
    white-space: nowrap;
    overflow: hidden;
}

#top-offers .container .card .thumbnail img {
    display: inline-block;
    width: auto !important;
    max-width: 132px;
    height: auto !important;
    max-height: 65px;
    border-radius: 4px;
    padding: 0;
    vertical-align: middle;
}

#top-offers .container .card .details p.description {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: box;
    margin: 10px 0;
    padding: 10px 0 0;
    font-size: 13px;
    color: #757575;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    border-top: 1px solid #E5E5E5;
}

#top-offers .container .card .details .btn-subject {
    display: block;
    font-size: 18px;
}

#top-offers .container .card .details a.reviews {
    display: inline-block;
    margin: 4px auto 0;
    color: #0770e3;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    text-decoration: underline;
}

#top-offers .btn-secondary {
    margin-top: 30px;
}

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

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

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

#offers .details h1,
#offers .details h2 {
    display: table-cell;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #2D2D2D;
    text-transform: uppercase;
    vertical-align: middle;
}

#offers .details h1 span,
#offers .details h2 span {
    font-weight: 700;
}

#offers .details h1 img,
#offers .details h2 img {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

#offers .details .btn-filter {
    float: left;
    width: calc(50% - 8px);
    margin: 0;
}

#offers .details .btn-sort {
    float: right;
    width: calc(50% - 8px);
    margin: 0;
}

#offers .details .btn-sort option {
    background: #FFFFFF;
}

#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 .filter {
    position: relative;
    display: block;
    margin: 0 20px 0 0;
    background: #FFFFFF;
}

#offers .filter .content {
    display: block;
    padding: 16px 20px;
    border: 1px solid #CACACA;
}

#offers .filter .content::-webkit-scrollbar {
    width: 5px;
}

#offers .filter .content::-webkit-scrollbar-track {
    background: #E5E5E5;
    border-radius: 10px;
}

#offers .filter .content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #777777;
}

#offers .filter .content span.title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
}

#offers .filter .content select {
    display: block;
    width: 100%;
    height: 32px;
    margin: 5px 0 15px;
    border: 1px solid #C5C5C5;
    border-radius: 4px;
}

#offers .filter .content ul {
    display: block;
    width: 100%;
    margin: 5px 0 15px;
    list-style: none;
    padding: 0 0 15px;
    border-bottom: 1px solid #E5E5E5;
}

#offers .filter .content ul:last-of-type {
    border-bottom: 0;
    padding: 0;
}

#offers .filter .content ul li {
    display: block;
    margin: 0 0 6px;
    min-height: 18px;
}

#offers .filter .content ul li span.description {
    font-size: 14px;
    display: block;
    line-height: 18px;
}

#offers .filter .content ul li span.description label {
    display: block;
    line-height: 18px;
    color: #797979;
}

#offers .filter .content ul li input[type=checkbox] {
    position: relative;
    float: left;
    display: block;
    margin: 0 10px 0 0;
    width: 18px;
    height: 18px;
    border: 0;
    background: #FFFFFF;
}

#offers .filter .content ul li input[type=checkbox]:after {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    left: 0;
    top: 0;
    text-align: center;
    vertical-align: middle;
    line-height: 16px;
    font-size: 0;
    border: 1px solid #C5C5C5;
    border-radius: 4px;
    z-index: 2;
    background: #FFFFFF;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#offers .filter .content ul li input[type=checkbox]:checked:after {
    content: '\2714';
    color: #FFFFFF;
    font-size: 12px;
    border-color: #0072BB;
    background-color: #0072BB;
}

#offers .card {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

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

#offers .card .container .position {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    z-index: 1;
    text-align: center;
    border-radius: 1px;
    background-color: #EF1745;
    color: #FFFFFF;
}

#offers .card .container .symbol {
    position: relative;
    display: table-cell;
    width: 160px;
    height: 160px;
    margin: 0;
    padding: 25px 25px 38px 25px;
    overflow: hidden;
    vertical-align: middle;
    border-radius: 0;
    border: 1px solid #CACACA;
    background: #FFFFFF;
}

#offers .card .container .symbol img {
    position: relative;
    display: block;
    width: 110px;
    height: auto;
    padding: 0;
    border-radius: 3px;
    object-fit: cover;
    object-position: 50% 50%;
}

#offers .card .container .symbol .btn-compare {
    position: absolute;
    display: block;
    width: 100%;
    height: 25px;
    padding: 0 5px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    color: #B5B5B5;
    background: #F5F4F4;
    font-weight: 400;
    border: 0;
    vertical-align: middle;
    line-height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#offers .card .container .symbol .btn-compare img {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 4px;
    vertical-align: middle;
    border-radius: 0;
}

#offers .card .container .symbol .btn-compare.active {
    visibility: hidden;
}

#offers .card .container .symbol .btn-compare.active:after {
    content: attr(data-title);
    position: absolute;
    visibility: visible;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    background: #0970E3;
    font-weight: 400;
    border: 0;
    vertical-align: middle;
    line-height: 25px;
}

#offers .card .container .thumbnail {
    position: relative;
    display: table-cell;
    width: 290px;
    height: auto;
    margin: 0;
    padding: 0 0 20px 0;
    overflow: hidden;
    vertical-align: middle;
}

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

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

#offers .card .container .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);
}

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

#offers .card .container .thumbnail .btn-compare {
     position: absolute;
     display: block;
     width: 100%;
     height: 25px;
     padding: 0;
     left: 0;
     right: 0;
     bottom: 0;
     margin: 0;
     color: #B5B5B5;
     background: #F5F4F4;
     font-weight: 400;
     border: 0;
     vertical-align: middle;
     line-height: 25px;
 }

#offers .card .container .thumbnail .btn-compare img {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 4px;
    vertical-align: middle;
    border-radius: 0;
}

#offers .card .container .thumbnail .btn-compare.active {
    visibility: hidden;
}

#offers .card .container .thumbnail .btn-compare.active:after {
    content: attr(data-title);
    position: absolute;
    visibility: visible;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    background: #0970E3;
    font-weight: 400;
    border: 0;
    vertical-align: middle;
    line-height: 25px;
}

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

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

#offers .card .container .details span.title[data-position="1"]::after {
    content: attr(data-title);
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    border-radius: 2px;
    background-color: #035D4C;
    height: 28px;
    line-height: 28px;
    color: #FFFFFF;
    padding: 0 8px;
    margin: 0 0 0 8px;
    vertical-align: top;
}

#offers .card .container .details .review {
    display: block;
    width: 100%;
}

#offers .card .container .details .review .rating {
    display: inline-block;
    margin: 0 5px 0 0;
    vertical-align: middle;
}

#offers .card .container .details .review .ratings {
    position: relative;
    display: inline-block;
    padding: 0 10px 0 0;
    margin: 2px 6px 0 0;
    color: #0363a7;
    font-size: 13px;
    font-weight: 600;
    border-right: 1px solid #CCCCCC;
    line-height: 1;
    vertical-align: middle;
}

#offers .card .container .details .review .reviews {
    position: relative;
    display: inline-block;
    margin: 2px 0 0;
    padding: 0;
    color: #0363a7;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
}

#offers .card .container .details .review .ratings:before,
#offers .card .container .details .review .reviews:before {
    position: absolute;
    content: '';
    display: none;
    width: 0;
    height: 15px;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #092144;
}

#offers .card .container .details .review .ratings:after,
#offers .card .container .details .review .reviews:after {
    position: absolute;
    content: attr(data-title);
    display: none;
    width: 100%;
    min-width: 150px;
    padding: 8px 4px;
    margin: 0;
    text-align: center;
    background: #092144;
    color: #FFFFFF;
    font-size: 12px;
    border-radius: 4px;
    line-height: 1.5;
    z-index: 9;
    top: 25px;
    left: 50%;
    transform: translate(-50%);
    -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);
}

#offers .card .container .details .review .ratings:hover:before,
#offers .card .container .details .review .reviews:hover:before,
#offers .card .container .details .review .ratings:hover:after,
#offers .card .container .details .review .reviews:hover:after {
    display: block !important;
    cursor: pointer;
}

#offers .card .container .details p.description {
    display: block;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #444444;
    letter-spacing: 0.3px;
    text-align: left;
}

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

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

#offers .card .container .options .grade span.title {
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    border-right: 1px solid #E5E5E5;
    -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: inline-block;
    margin: 0;
}

#offers .card .container .options .grade .score span.amount {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 8px 12px;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    background: #0970E3;
    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: 0;
    right: -25px;
    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;
}

#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: #0b71e3;
    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: #0970E3;
}

#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: none;
}

#offers .card .container .options .links {
    display: block;
    overflow: auto;
}

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

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

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

#offers .card .outlinks .btn-features {
    display: block;
    margin: 20px auto 4px;
    color: #0970E3;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    background: none !important;
    vertical-align: middle;
}

#offers .card .outlinks .btn-compare {
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
    padding: 0 5px;
    margin: 5px 0 0;
    color: #B5B5B5;
    background: #F5F4F4;
    font-size: 16px;
    font-weight: 400;
    border: 0;
    border-radius: 6px;
    vertical-align: middle;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#offers .card .outlinks .btn-compare img {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
    border-radius: 0;
}

#offers .card .outlinks .btn-compare.active {
    visibility: hidden;
}

#offers .card .outlinks .btn-compare.active:after {
    content: attr(data-title);
    position: absolute;
    visibility: visible;
    display: block;
    width: 100%;
    color: #FFFFFF;
    background: #0970E3;
    font-size: 16px;
    font-weight: 400;
    top: 0;
    left: 0;
    border: 0;
    border-radius: 6px;
    vertical-align: middle;
    line-height: 30px;
}

#offers .card .features {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding: 16px;
    background: #F5F4F4;
    overflow: auto;
}

#offers .card .features .item {
    position: relative;
    display: table-cell;
    padding: 0 10px;
    margin: 0 10px 0 0;
    border-right: 1px solid rgba(197, 197, 197, .8);
}

#offers .card .features .item:first-of-type {
    padding: 0 10px 0 0;
}

#offers .card .features .item:last-of-type {
    border-right: 0;
}

#offers .card .features .item .icon {
    display: inline-block;
    padding: 6px;
    width: 32px;
    height: 32px;
    margin: 0 10px 0 0;
    vertical-align: middle;
}

#offers .card .features .item .details {
    display: inline-block;
    width: auto !important;
    margin: 0;
    overflow: visible;
    vertical-align: middle;
}

#offers .card .features .item .details span.name {
    display: block;
    margin: 0;
    font-weight: 400;
    font-size: 13px;
    color: #111111;
    line-height: 1.5;
    letter-spacing: -0.4px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#offers .card .features .item .details span.description {
    display: block;
    font-size: 13px;
    color: #6A6A6A;
    line-height: 1;
    margin: 0;
    text-align: left;
}

#offers .card .features .reviews {
    display: none;
    margin: 10px;
    padding: 0 10px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    background-color: #0072BB;
    border-color: #0072BB;
    border-radius: 4px;
    text-align: center;
    line-height: 40px;
}

#offers .btn-secondary {
    margin: 50px auto 30px;
}

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

/* homepage */
#home {
    position: relative;
    display: block;
    width: 100%;
}

#home .reviews {
    position: relative;
    display: block;
    width: 100%;
    padding: 30px 20px;
    margin: 0;
    overflow: hidden;
    background: #F6F6F6;
    border-top: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
}

#home .reviews:before {
    content: "";
    position: absolute;
    width: 70px;
    z-index: 2;
    left: 0;
    top: 0;
    bottom: 0;
    background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

#home .reviews h2.title {
    display: block;
    margin: 10px 0 15px;
    padding: 0 20px;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #3E3E3E;
}

#home .reviews span.description {
    display: block;
    margin: 0 auto;
    max-width: 975px;
    text-align: center;
    font-size: 16px;
    color: #2D2D2D;
    line-height: 24px;
    font-weight: 300;
}

#home .reviews .container {
    width: 5920px;
    margin: 75px 0 0;
    -webkit-animation: scroll 60s linear infinite;
    -moz-animation: scroll 60s linear infinite;
    -o-animation: scroll 60s linear infinite;
    animation: scroll 60s linear infinite;
}

#home .reviews .container:hover {
    animation-play-state: paused;
}

#home .reviews .container .card {
    position: relative;
    display: block;
    margin: 0 25px 20px;
    padding: 50px 25px 0 25px;
    width: 320px;
    background: #FFFFFF;
    overflow: visible;
    text-align: left;
    border: 0;
    border-radius: 3px;
    -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);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#home .reviews .container .card:hover {
    transform: scale(1.05);
}

#home .reviews .container .card .thumbnail {
    position: absolute;
    display: block;
    top: -35px;
    width: 70px;
    height: 70px;
    margin: 0;
    overflow: hidden;
    align-items: center;
}

#home .reviews .container .card .thumbnail img {
    display: block;
    width: 100%;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 0;
    object-fit: cover;
    object-position: 50% 50%;
}

#home .reviews .container .card .thumbnail[data-mood="1"] img {
    background-color: #F17A54
}

#home .reviews .container .card .thumbnail[data-mood="2"] img {
    background-color: #FBB851;
}

#home .reviews .container .card .thumbnail[data-mood="3"] img {
    background-color: #F6D757;
}

#home .reviews .container .card .thumbnail[data-mood="4"] img {
    background-color: #B7EA83;
}

#home .reviews .container .card .thumbnail[data-mood="5"] img {
    background-color: #76DB98;
}

#home .reviews .container .card span.name {
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    line-height: 1.5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#home .reviews .container .card span.website {
    display: block;
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 400;
    color: #757575;
    line-height: 1.5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#home .reviews .container .card span.title {
    display: block;
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 500;
    color: #3D4852;
    line-height: 1.25;
}

#home .reviews .container .card p.description {
    color: #757575;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

#home .reviews .container .card a {
    display: inline-block;
    font-size: 14px;
    margin: 5px 0 10px;
    color: #FA5931;
    font-weight: 400;
    text-decoration: none;
}

#home .reviews:after {
    content: "";
    position: absolute;
    width: 70px;
    z-index: 2;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
    background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

#home .articles {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 30px 0;
    overflow: hidden;
    background: #FFFFFF;
}

#home .articles h3.title {
    display: block;
    margin: 10px 0 20px;
    padding: 0 20px;
    text-align: center;
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    color: #3E3E3E;
}

#home .articles span.description {
    display: block;
    margin: 0 auto;
    max-width: 975px;
    font-weight: 300;
    text-align: center;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
}

#home .articles .container {
    display: block;
    width: 100%;
    margin: 30px 0 0;
    padding: 30px 0 0;
    border-top: 1px solid #DFDFDF;
    text-align: center;
}

#home .articles .container .card {
    position: relative;
    display: inline-block;
    width: calc(25% - 30px);
    margin: 0 10px;
    padding: 0;
    background: #FFFFFF;
    border: 0;
    border-radius: 4px;
    vertical-align: top;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 12px rgba(158, 182, 201, 0.5);
    -moz-box-shadow: 0 2px 12px rgba(158, 182, 201, 0.5);
    box-shadow: 0 2px 12px rgba(158, 182, 201, 0.5);
}

#home .articles .container .card:only-of-type {
    margin: 0 !important;
}

#home .articles .container .card:hover {
    cursor: pointer;
}

#home .articles .container .card .thumbnail {
    display: block;
    width: 100%;
    height: 175px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#home .articles .container .card .thumbnail img {
    display: block;
    width: 100%;
    height: 175px;
    padding: 0;
    object-fit: cover;
    object-position: 50% 50%;
}

#home .articles .container .card .details {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 0 10px;
}

#home .articles .container .card .details span.title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: box;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #212529;
    letter-spacing: 0.3px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#home .articles .btn-secondary {
    display: block;
    margin: 50px auto 20px;
    color: #A5A5A5;
    background-color: #F6F6F6;
    border-color: transparent;
    background-size: 15px 16px;
}

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

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

/* review */
#review {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 20px 0 0;
    overflow: hidden;
    background: #F8F9FA;
}

#review .content {
    position: relative;
    display: block;
    margin: 0 20px 20px 0;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

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

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

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

#review .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;
}

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

#review .content .summary {
    display: block;
    margin: 0 0 20px;
}

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

#review .content .summary table tr:nth-child(even) {
    background: #FFFFFF;
}

#review .content .summary table tr:nth-child(odd) {
    background: #F4F6F8;
}

#review .content .summary table tr td {
    padding: 15px;
}

#review .content .summary table tr td span.title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

#review .content .summary table tr td span.description {
    display: block;
    font-size: 14px;
    font-weight: 300;
}

#review .content .compare {
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
    background: #F4F4F4;
    overflow: auto;
}

#review .content .compare img {
    display: inline-block;
    width: auto !important;
    height: 70px;
    margin: 0 15px 0 0;
    vertical-align: middle;
}

#review .content .compare span.title {
    display: inline-block;
    font-size: 18px;
    color: #2D2D2D;
    font-weight: 700;
    letter-spacing: 0.6px;
    vertical-align: middle;
}

#review .content .compare button {
    float: right;
    display: block;
    margin: 10px 0;
}

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

#review .content .thumbnail img {
    width: 120%;
    height: auto !important;
}

#review .content .thumbnail .brand {
    position: absolute;
    display: block;
    height: 65px;
    padding: 10px 15px;
    right: 0;
    bottom: 35px;
    line-height: 45px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
}

#review .content .thumbnail .brand:before {
    content: '';
    position: absolute;
    left: -35px;
    top: 0;
    border-left: 35px solid transparent;
    border-bottom: 65px solid rgba(255, 255, 255, .8);
}

#review .content .thumbnail .brand img {
    display: inline-block;
    height: auto !important;
    max-height: 45px;
    margin: 0 auto;
    width: auto !important;
    max-width: 100%;
    vertical-align: middle;
}

#review .content .impressions {
    display: block;
    width: 100%;
    margin: 0;
}

#review .content .impressions .item {
    display: inline-block;
    width: 50%;
    margin: 0;
    vertical-align: top;
}

#review .content .impressions .item span.title {
    display: block;
    margin: 0 25px 10px 0;
    padding: 0 0 10px;
    color: #4E5155;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.25;
    border-bottom: 1px solid #E5E5E5;
}

#review .content .impressions .item ul {
    display: block;
    margin: 0;
    padding: 0 20px 0 0;
    list-style: none;
}

#review .content .impressions .item ul li {
    display: block;
    font-size: 14px;
    margin: 0 0 8px;
    padding: 0;
    line-height: 1.5;
}

#review .content .impressions .item ul li:before {
    content: '';
    display: inline-block;
    margin: 0 8px 0 0;
    width: 10px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
}

#review .content .impressions .item ul li.pro:before {
    background-image: url('/images/icons/pro.svg');
}

#review .content .impressions .item ul li.con:before {
    background-image: url('/images/icons/con.svg');
}

#review .prices {
    position: relative;
    display: block;
    margin: 0 20px 20px 0;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

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

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

#review .prices table {
    margin: 20px 0 0;
}

#review .prices table tr th {
    text-align: left;
    padding: 5px 0 5px 10px;
    font-weight: 500;
    background: #092144;
    color: #FFFFFF;
}

#review .prices table tr td {
    text-align: left;
    padding: 8px 0 8px 10px;
    font-weight: 400;
    color: #222222;
    border-bottom: 1px solid #E5E5E5;
}

#review .prices table tr:last-child td {
    border-bottom: 0;
}

#review .faq {
    position: relative;
    display: block;
    margin: 0 20px 20px 0;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

#review .faq h2 {
    display: block;
    margin: 0 0 5px;
    color: #4E5155;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

#review .faq h4 {
    display: block;
    margin: 0;
    color: #4E5155;
    font-size: 23px;
    font-weight: 700;
    text-align: center;
}

#review .faq span.contact {
    display: block;
    margin: 0;
    color: #4E5155;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

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

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

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

#review .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;
}

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

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

#review .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;
}

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

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

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

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

#review .comments {
    position: relative;
    display: block;
    margin: 0 20px 20px 0;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

#review .comments h5,
#review .comments h6 {
    display: block;
    margin: 0 0 10px;
    color: #4E5155;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.25;
}

#review .comments .ratings {
    display: block;
    width: 100%;
    margin: 0 0 20px;
}

#review .comments .ratings table tr td {
    padding: 5px 10px 5px 0;
}

#review .comments .ratings table tr td.title {
    font-size: 15px;
    font-weight: 300;
    color: #757575;
    line-height: 1.5;
    white-space: nowrap;
}

#review .comments .ratings table tr td.progress {
    width: 100%;
}

#review .comments .ratings table tr td.total {
    font-size: 15px;
    font-weight: 700;
    color: #3D4852;
    line-height: 1.5;
    white-space: nowrap;
}

#review .comments .review {
    display: block;
    width: 100%;
    padding: 20px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid #E5E5E5;
}

#review .comments .review .details {
    display: table;
    width: 100%;
}

#review .comments .review .details .thumbnail {
    display: table-cell;
    width: 50px;
    height: auto !important;
    vertical-align: middle;
    border-radius: 50%;
}

#review .comments .review .details .thumbnail[data-mood="1"] img {
    background-color: #F17A54
}

#review .comments .review .details .thumbnail[data-mood="2"] img {
    background-color: #FBB851;
}

#review .comments .review .details .thumbnail[data-mood="3"] img {
    background-color: #F6D757;
}

#review .comments .review .details .thumbnail[data-mood="4"] img {
    background-color: #B7EA83;
}

#review .comments .review .details .thumbnail[data-mood="5"] img {
    background-color: #76DB98;
}

#review .comments .review .details .thumbnail img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0;
    border-radius: 50%;
}

#review .comments .review .details .person {
    display: table-cell;
    vertical-align: middle;
    padding: 0 0 0 15px;
}

#review .comments .review .details .person span.name {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #353535;
    line-height: 1.5;
}

#review .comments .review .details .person span.date {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #757575;
    line-height: 1.5;
}

#review .comments .review .details .rating {
    display: table-cell;
    vertical-align: middle;
    width: 128px;
}

#review .comments .review .comment {
    display: block;
    margin: 20px 0;
    padding: 0;
    border: 0;
}

#review .comments .review .comment span.title {
    display: block;
    margin: 0 0 3px;
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    line-height: 1.5;
}

#review .comments .review .comment span.upvote {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #759885;
    line-height: 1.5;
}

#review .comments .review .comment span.upvote:before {
    content: '\2713';
    display: inline-block;
    margin: 0 5px 0 0;
    color: #759885 !important;
}

#review .comments .review .comment span.downvote {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #E54B49;
    line-height: 1.5;
}

#review .comments .review .comment span.downvote:before {
    content: '\2717';
    display: inline-block;
    margin: 0 5px 0 0;
    color: #E54B49 !important;
}

#review .comments .review .comment p.description {
    display: block;
    margin: 8px 0;
    color: #494949;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

#review .comments .review .strengths {
    display: block;
    margin: 0;
}

#review .comments .review .strengths ul {
    display: inline-block;
    width: 50%;
    margin: 0;
    padding: 0;
    list-style: none;
    vertical-align: top;
}

#review .comments .review .strengths ul li {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

#review .comments .review .strengths ul li span {
    display: inline;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    vertical-align: middle;
}

#review .comments .review .share {
    display: block;
    margin: 15px 0;
    padding: 0;
    text-align: right;
    list-style: none;
    overflow: auto;
}

#review .comments .review .share li {
    display: inline-block;
    margin: 0 0 0 5px;
}

#review .comments .review .share li:nth-child(1),
#review .comments .review .share li:nth-child(2) {
    float: left;
    margin: 0 20px 0 0;
}

#review .comments .review .share li a {
    display: inline-block;
    height: 36px;
    margin: 0 0 5px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 400;
    background: #FFFFFF;
    line-height: 36px;
    border: 1px solid #E5E5E5;
    border-radius: 3px;
}

#review .comments .review .share li a img {
    float: left;
    display: block;
    width: 16px;
    height: 16px;
    margin: 9px 5px 9px 0;
}

#review .comments .review .share li button {
    display: inline-block;
    height: 36px;
    margin: 0 0 5px;
    padding: 0;
    color: #4E5155;
    font-size: 13px;
    font-weight: 400;
    background: #FFFFFF;
    line-height: 36px;
    border: 0;
    border-radius: 3px;
}

#review .comments .review .share li button img {
    float: left;
    display: block;
    width: 14px;
    height: 14px;
    margin: 11px 5px 11px 0;
}

#review .comments .review .share li button.active,
#review .comments .review .share li button.active span.likes {
    color: #22B079;
}

#review .comments .review .share li button.active img {
    -webkit-filter: invert(48%) sepia(63%) saturate(483%) hue-rotate(105deg) brightness(100%) contrast(93%);
    -moz-filter: invert(48%) sepia(63%) saturate(483%) hue-rotate(105deg) brightness(100%) contrast(93%);
    -ms-filter: invert(48%) sepia(63%) saturate(483%) hue-rotate(105deg) brightness(100%) contrast(93%);
    -o-filter: invert(48%) sepia(63%) saturate(483%) hue-rotate(105deg) brightness(100%) contrast(93%);
    filter: invert(48%) sepia(63%) saturate(483%) hue-rotate(105deg) brightness(100%) contrast(93%);
}

#review .comments .comment {
    display: block;
    width: 100%;
    padding: 20px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid #E5E5E5;
}

#review .comments .comment span.name {
    display: block;
    color: #222222;
    font-weight: 500;
    font-size: 15px;
}

#review .comments .comment span.name span.date {
    float: right;
    font-weight: 300;
    font-size: 13px;
    color: #636365;
}

#review .comments .comment p.description {
    display: block;
    width: 100%;
    margin: 8px 0;
    color: #494949;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

#review .comments .reply {
    display: block;
    width: 100%;
    padding: 20px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid #E5E5E5;
}

#review .comments .reply table tr td {
    padding: 0 10px 10px;
}

#review .comments .reply table tr:last-child td {
    padding-bottom: 0 !important;
}

#review .comments .reply table tr td:first-child {
    padding-left: 0 !important;
}

#review .comments .reply table tr td:last-child {
    padding-right: 0 !important;
}

#review .comments .reply table tr td span.title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #222222;
}

#review .comments .reply table tr td span.agreements {
    display: block;
    font-size: 13px;
    font-weight: 400;
}

#review .comments .reply table tr td span.agreements a {
    color: #2773BD;
    font-weight: 500;
}

#review .comments .reply table tr td input[type=text] {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid #E5E5E5;
}

#review .comments .reply table tr td textarea {
    display: block;
    width: 100%;
    height: 125px;
    padding: 8px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid #E5E5E5;
    resize: none;
}

#review .comments .reply table tr td button {
    margin: 0;
}

#review .card {
    position: relative;
    display: block;
    margin: 0 0 20px;
    padding: 0;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 3px;
}

#review .card .thumbnail {
    display: block;
    width: 100%;
    height: auto !important;
    margin: 0;
    padding: 25px 15px;
    overflow: hidden;
    background: #F4F4F4;
}

#review .card .thumbnail img {
    display: block;
    width: 100%;
    max-width: 150px;
    height: auto !important;
    margin: 0 auto;
    padding: 0;
    border-radius: 5px;
}

#review .card .container {
    display: table;
    width: 100%;
    padding: 15px;
    margin: 0;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

#review .card .container .grade {
    display: table-cell;
    padding: 0 16px 0 0;
    border-right: 1px dashed #E5E5E5;
    text-align: center;
    vertical-align: middle;
}

#review .card .container .grade span.title {
    display: block;
    font-size: 14px;
    color: #212529;
}

#review .card .container .grade span.description {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #4E5155;
}

#review .card .container .review {
    display: table-cell;
    padding: 0 0 0 16px;
    text-align: center;
    vertical-align: middle;
    min-width: 150px;
}

#review .card .container .review span.title {
    display: block;
    font-size: 13px;
    color: #212529;
    margin: 0;
    line-height: 1.5;
}

#review .card .container .review .rating,
#review .card .container .review .rating label,
#review .card .container .review .rating label:before {
    line-height: 1 !important;
}

#review .card .container .review span.description {
    position: relative;
    display: block;
    font-size: 12px;
    color: #757575;
}

#review .card .outlink {
    padding: 20px;
}

#review .card .outlink button {
    padding: 0 !important;
    text-align: center;
}

#review .card .widgets {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-top: 1px solid #E5E5E5;
}

#review .card .widgets .item {
    display: table-cell;
    padding: 10px;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
}

#review .card .widgets .item:first-of-type,
#review .card .widgets .item:last-of-type {
    border: 0;
}

#review .card .widgets .item img {
    display: block;
    margin: 0 auto;
    width: 37.5px;
    height: auto !important;
}

#review .card .widgets .item span.title {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    margin: 7px 0 0;
    text-align: center;
    line-height: 1.25;
}

#review .card .widgets .item span.title strong {
    font-weight: 700;
}

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

#review .features h3 {
    display: block;
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

#review .features ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

#review .features ul li {
    display: block;
    width: 100%;
    height: 46px;
    border-top: 1px solid #C1E0E6;
}

#review .features ul li img {
    display: block;
    float: left;
    width: 18px;
    height: 18px;
    margin: 14px 15px 14px 0;
    padding: 0;
    vertical-align: middle;
}

#review .features ul li span.name {
    display: inline-block;
    font-size: 15px;
    line-height: 46px;
    font-weight: 300;
    color: #111111;
    margin: 0;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#review .features ul li span.description {
    display: inline-block;
    float: right;
    font-size: 15px;
    line-height: 46px;
    color: #6A6A6A;
    margin: 0;
    text-align: left;
}

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

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

#review .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);
}

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

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

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

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

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

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

#review .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;
}

#review button.btn-secondary {
    margin-bottom: 20px;
}

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

/* evaluate */
#evaluate {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 0;
    margin: 0;
    overflow: hidden;
    background: #F8F9FA;
}

#evaluate .evaluate-step:not(:first-of-type) {
    display: none;
}

#evaluate .steps {
    display: block;
    width: 100%;
    margin: 0;
    overflow: auto;
}

#evaluate .steps button.btn-prev,
#evaluate .steps button.btn-cancel {
    float: left;
}

#evaluate .steps button.btn-next,
#evaluate .steps button.btn-save {
    float: right;
}

#evaluate .questions {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

#evaluate .questions ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

#evaluate .questions ul li {
    display: block;
    padding: 0 10px;
    border-bottom: 1px dotted #C5C5C5;
    overflow: auto;
}

#evaluate .questions ul li:last-child {
    background: #F5F5F5;
    border: 0;
}

#evaluate .questions ul li span.title {
    position: relative;
    padding: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 54px;
    vertical-align: middle;
}

#evaluate .questions ul li .rating {
    display: block;
    float: right;
}

#evaluate .questions ul li .rating label {
    font-size: 36px;
}

#evaluate .questions ul li .rating label:before {
    font-size: 36px;
}

#evaluate .experience {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

#evaluate .experience table tr:not(:last-child) td {
    padding-bottom: 10px;
}

#evaluate .experience table tr td {
    padding-left: 10px;
    padding-right: 10px;
}

#evaluate .experience table tr td:first-child {
    padding-left: 0;
}

#evaluate .experience table tr td:last-child {
    padding-right: 0;
}

#evaluate .experience table tr td span.title,
#evaluate .experience table tr td label.title {
    display: block;
    margin: 0 0 3px;
    color: #222222;
    font-weight: 500;
    font-size: 15px;
}

#evaluate .experience table tr td span.description {
    display: block;
    color: #757575;
    font-weight: 400;
    font-size: 14px;
}

#evaluate .experience table tr td span.review-length {
    display: block;
    margin: 3px 0 0;
    font-weight: 300;
    font-size: 12px;
    color: #757575;
}

#evaluate .experience table tr td span.review-length span.current-review-length {
    font-weight: 300;
    font-size: 12px;
    color: #757575;
}

#evaluate .experience table tr td input[type=text] {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid #E5E5E5;
}

#evaluate .experience table tr td textarea {
    display: block;
    width: 100%;
    height: 125px;
    padding: 8px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid #E5E5E5;
    resize: none;
}

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

#evaluate .experience ul li {
    display: block;
    margin: 0 0 8px;
}

#evaluate .recommend {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

#evaluate .recommend .item {
    position: relative;
    display: table-cell;
    width: 50%;
    padding: 20px;
    vertical-align: middle;
    z-index: 1;
}

#evaluate .recommend .item:last-of-type:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/content/evaluate.svg');
    background-color: rgba(1, 114, 187, 0.75);
    background-size: 50% auto;
    background-repeat: repeat;
    z-index: -1;
}

#evaluate .recommend .item span.title {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #353535;
    text-align: center;
}

#evaluate .recommend .item:last-of-type span.title {
    color: #FFFFFF !important;
}

#evaluate .recommend .item ul {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 15px 0 0;
    padding: 0;
}

#evaluate .recommend .item ul li {
    display: table-cell;
    width: 50%;
    text-align: center;
}

#evaluate .recommend .item ul li input {
    display: none;
}

#evaluate .recommend .item ul li label {
    display: inline-block;
    opacity: 0.6;
    padding: 10px 30px;
    border-radius: 50%;
}

#evaluate .recommend .item ul li label.approve {
    background: #1EC64F;
}

#evaluate .recommend .item ul li label.disapprove {
    background: #EF1745;
}

#evaluate .recommend .item ul li label img {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

#evaluate .recommend .item ul li label span {
    display: block;
    margin: 5px 0 0;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

#evaluate .recommend .item ul li label:hover,
#evaluate .recommend .item ul li input:checked + label {
    cursor: pointer;
    opacity: 1;
    color: #000000;
}

#evaluate .recommend .item select {
    display: block;
    width: 100%;
    max-width: 500px;
    height: 42px;
    margin: 15px auto 0;
    padding: 0 7px;
    font-size: 16px;
    border: 1px solid #E5E5E5;
    background: #FFFFFF;
}

#evaluate .impressions {
    position: relative;
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0 0 20px 0;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

#evaluate .impressions .item {
    position: relative;
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

#evaluate .impressions .item:first-of-type {
    border-right: 1px solid #E5E5E5;
    padding: 0 15px 0 0;
}

#evaluate .impressions .item:last-of-type {
    padding: 0 0 0 15px;
}

#evaluate .impressions .item span.title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #353535;
}

#evaluate .impressions .item ul {
    display: block;
    width: 100%;
    margin: 15px 0 0;
    padding: 0;
}

#evaluate .impressions .item ul li {
    display: block;
    margin: 0 0 8px;
}

#evaluate .impressions .item ul li:last-child {
    margin: 0;
}

#evaluate .impressions .item ul li input[type=text] {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 48px 8px 8px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid #E5E5E5;
    background-image: url('/images/icons/plus.png');
    background-position: right 0 top 0;
    background-size: 40px 40px;
    background-repeat: no-repeat;
}

#evaluate .impressions .item ul li input[type=text]:after {
    position: absolute;
    width: 32px;
    height: 40px;
    right: 0;
    top: 0;
    z-index: 0;
    background: #E5E5E5;
}

#evaluate .gender {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

#evaluate .gender span.title {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #353535;
    text-align: center;
}

#evaluate .gender ul {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 15px 0 0;
    padding: 0;
}

#evaluate .gender ul li {
    display: table-cell;
    width: 50%;
    text-align: center;
}

#evaluate .gender ul li input {
    display: none;
}

#evaluate .gender ul li label {
    display: inline-block;
    opacity: 0.6;
}

#evaluate .gender ul li label img {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

#evaluate .gender ul li label span {
    display: block;
    margin: 10px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

#evaluate .gender ul li label:hover,
#evaluate .gender ul li input:checked + label {
    cursor: pointer;
    opacity: 1;
    color: #000000;
}

#evaluate .personal {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 0;
    -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);
}

#evaluate .personal table {
    table-layout: fixed;
}

#evaluate .personal table tr:not(:last-child) td {
    padding-bottom: 10px;
}

#evaluate .personal table tr td {
    padding-left: 10px;
    padding-right: 10px;
}

#evaluate .personal table tr td:first-child {
    padding-left: 0;
}

#evaluate .personal table tr td:last-child {
    padding-right: 0;
}

#evaluate .personal table tr td span.divider {
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #D5D5D5;
    line-height: 0;
    margin: 25px 0 15px;
}

#evaluate .personal table tr td span.divider span {
    background: #FFFFFF;
    color: #757575;
    font-weight: 500;
    padding: 0 10px;
}

#evaluate .personal table tr td span.title,
#evaluate .personal table tr td label.title {
    display: block;
    margin: 0 0 3px;
    color: #222222;
    font-weight: 500;
    font-size: 15px;
}

#evaluate .personal table tr td input[type=email] {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 8px 8px 32px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid #E5E5E5;
    background-image: url('/images/icons/email.svg');
    background-position: left 8px top 12px;
    background-size: 16px 16px;
    background-repeat: no-repeat;
}

#evaluate .personal table tr td input[type=text] {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 8px 8px 32px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid #E5E5E5;
    background-image: url('/images/icons/name.svg');
    background-position: left 8px top 12px;
    background-size: 16px 16px;
    background-repeat: no-repeat;
}

#evaluate .personal table tr td input[type=number] {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 8px 8px 32px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid #E5E5E5;
    background-image: url('/images/icons/age.svg');
    background-position: left 8px top 12px;
    background-size: 16px 16px;
    background-repeat: no-repeat;
}

#evaluate .personal table tr td .agreement {
    display: block;
    margin: 5px 0;
    overflow: auto;
}

#evaluate .personal table tr td .agreement label {
    display: inline;
    margin: 0 0 0 5px;
    font-size: 13px;
}

#evaluate .personal table tr td span.agreements {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

#evaluate .personal table tr td span.agreements a {
    color: #2773BD;
    font-weight: 500;
}

#evaluate .personal table tr td button {
    margin: 0;
}

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

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

#compare .subjects .card {
    position: relative;
    display: block;
    margin: 0 10px 20px 0;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 0;
    -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: 18px;
    z-index: 2;
    text-align: center;
    border-radius: 1px;
    background-color: #EF1745;
    color: #FFFFFF;
}

#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;
}

#compare .subjects .card .item h2,
#compare .subjects .card .item h3 {
    display: block;
    margin: 0 0 5px;
    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: 400;
    font-size: 13px;
    color: #111111;
    letter-spacing: -0.4px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    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: 0;
    text-align: right;
    vertical-align: middle;
}

#compare .subjects .card .item ul li .rating {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}

#compare .subjects .card .item ul li .rating label {
    font-size: 0px;
    margin: -2px;
    line-height: 1;
}

#compare .subjects .card .item ul li .rating label:before {
    font-size: 18px;
    line-height: 1;
}

#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;
    background: #FFFFFF;
}

#articles h2 {
    display: block;
    font-weight: 700;
    font-size: 23px;
    color: #4E5155;
    line-height: 1.25;
}

#articles .card {
    position: relative;
    display: table;
    margin: 0 20px 20px 0;
    padding: 20px;
    overflow: auto;
    border: 1px solid #F4F4F4;
    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:hover {
    -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 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 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 .thumbnail {
    display: table-cell;
    width: 200px;
    height: 150px;
    margin: 0;
    padding: 10px 10px 0 0;
    overflow: hidden;
    vertical-align: top;
    border-top: 1px solid #DFDFDF;
}

#articles .card .thumbnail img {
    display: block;
    width: 100%;
    height: 150px;
    padding: 0;
    object-fit: cover;
    object-position: 50% 50%;
}

#articles .card .details {
    display: table-cell;
    padding: 10px 0 0;
    border-top: 1px solid #DFDFDF;
}

#articles .card .details 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;
}

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

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

#articles .card .details q:after {
    content: close-quote;
}

#articles .card .details a {
    float: right;
    display: inline-block;
    color: #656565;
    font-weight: 400;
    font-size: 13px;
    background: #F8F9FA;
    line-height: 1.5;
    padding: 7px 10px;
    border-radius: 3px;
}

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

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

#articles .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);
}

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

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

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

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

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

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

#articles .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;
}

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

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

#article h1 {
    position: relative;
    display: block;
    margin: 0 0 15px;
    color: #213e78;
    font-size: 27px;
    font-weight: 400;
}

#article h1:before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: sub;
    margin: 0 5px 0 0;
    background-color: #FFFFFF;
    background-image: url('/images/icons/badge.svg');
    background-size: contain;
    border-radius: 50%;
}

#article .content {
    position: relative;
    display: block;
    margin: 0 20px 20px 0;
    padding: 0;
    background: #FFFFFF;
    border-radius: 0;
    overflow: auto;
    -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);
}

#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: #092144;
    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;
    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: 180px;
    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;
}

#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;
}

#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;
}

.direct {
    position: fixed;
    display: block;
    height: 80px;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    border-top: 1px solid #D5D5D5;
    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;
}

.direct img {
    float: left;
    display: block;
    width: auto !important;
    height: 50px;
    margin: 15px 10px 10px 0;
    border-radius: 3px;
}

.direct a {
    display: block;
    float: right;
    margin: 17px 0;
}