@charset "UTF-8";

* {
    box-sizing: border-box;
}
html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

body {
    margin: 0;
    background: #F5F5F5;
    font-feature-settings: 'clig' off, 'liga' off;
    color:#212121;
}

main {
    display: block;
}

h1 {
    font-size: 32px;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

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

a {
    background-color: transparent;
    text-decoration: none;
}

abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}

b, strong {
    font-weight: bolder;
}

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

small {
    font-size: 80%;
}

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button, input, optgroup, select, textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

button, input { /* 1 */
    overflow: visible;
}

button, select { /* 1 */
    text-transform: none;
}

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

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

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

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

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

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

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

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

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

details {
    display: block;
}

summary {
    display: list-item;
}

template, [hidden] {
    display: none;
}
html, body {
    font-family: "Lato", sans-serif;;
}
#mastheader {
    padding: 12px 0;
}
#mastheader .container {
    max-width: 1200px;
    margin: 0 auto;
}
#mastheader .main-header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.main-header .logo img {
    width: 260px;
    height: auto;
}
.nav-menu .main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu .main-menu li {
    display: inline-block;
    margin-right: 10px;
}
.main-menu li a {
    display: block;
    color: #212121;
    padding: 2px 4px;
    font-size: 18px;
}
.main-menu li a:hover {
    color: #3261c2;
}
.nav-menu .mobile-toggle {
    display: none;
}

.home-search {
    padding: 3rem 0;
    text-align: center;
    background-color: #eaeaea;
}
.home-search .container {
    max-width: 1000px;
    margin: 0 auto;
}
.home-search h2 {
    font-size: 30px;
}
.home-search p {
    font-size: 18px;
}
.search-container {
    position: relative;
    margin: 3rem auto;
    max-width: 800px;
}
.search-container .search-box {
    position: relative;
}
.search-box svg {
    position: absolute;
    top: 13.5px;
    left: 14px;
}
.search-box input {
    width: 100%;
    border: 1px solid #cacaca;
    padding: 12px 100px 12px 38px;
    border-radius: 50px;
    outline: none;
}
.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #2e6ee8;
    background-color: #2e6ee8;
    bottom: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
}
.search-results {
    position: absolute;
    top: 100%;
    margin: 4px 0 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    display: none;
    z-index: 999;
    box-shadow: 0 0 3px #cacaca;
}
.search-results.visible {
    display: block;
}
.search-results .result {
    position: relative;
    border-bottom: 1px solid #dadada;
    display: flex;
    padding: 4px;
    align-items: center;
}
.search-results .result:hover {
    background: #e7eaf0;
}
.search-results .result .image img {
    max-width: 68px;
    height: auto;
    display: block;
}
.search-results .result .content {
    padding-left: 20px;
}
.search-results .result:last-child {
    border:none;
}
.search-results .result a {
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
}
.loading .search-box:before {
    position: absolute;
    content: '';
    width: 16px;
    height: 17px;
    -webkit-animation: button-spin .6s linear;
    animation: button-spin .6s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 500rem;
    border-color: #2e6ee8 #d0dcf5 #d0dcf5;
    border-style: solid;
    border-width: 3px;
    left: 10px;
    top: 6px;
    box-shadow: 0 0 0 1px transparent;
}
.search-container.loading .search-box:before {
    left: 10px;
    top: 10px;
    border-width: 4px;
}
.loading .search-box svg {
    display: none;
}
@keyframes button-spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
.home-top-stores {
    padding: 2rem 0;
    background: #fff;
    box-shadow: 0 4px 13px 0 rgba(30,35,66,.11);
}
.home-top-stores .container {
    max-width: 1200px;
    margin: 0 auto;
}
.home-top-stores .top-stores {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -10px;
}
.top-stores .store-item {
    width: 12.5%;
}
.top-stores .store-item:last-child {
    display: none;
}
.top-stores .store-box {
    margin: 10px;
    text-align: center;
    padding: 10px;
    border: 1px solid #dadada;
    border-radius: 8px;
}
.top-stores .store-box a {
    display: block;
}
.store-box img {
    max-width: 100%;
    height: auto;
}
.store-box .store-title {
    font-size: 15px;
    font-weight: 700;
    margin: 5px 0;
    color:#212121;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.store-box .coupon-count {
    color: #717171;
    font-size: 12px;
}
.home-today-offers {
    padding: 2rem 0;
}
.home-today-offers .container {
    max-width: 1200px;
    margin: 0 auto;
}
.home-today-offers h2 {
    font-size: 32px;
    padding-left: 42px;
    background: url("../images/caret-tag.png") no-repeat left center;
    background-size: 32px;
}
.home-today-offers .today-offers {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.today-offers .offer-item {
    width: 25%;
    margin-bottom: 25px;
}
.offer-item .offer-box {
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: 8px;
    transition: all ease 0.2s;
}
.offer-item .offer-box:hover {
    box-shadow: 0 0 5px 2px #cacaca;
}
.offer-box .header-img {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}
.offer-box .header-img img {
    max-width: 100%;
    height: auto;
    display: block;
}
.offer-box .offer-content {
    display: flex;
    height: 100%;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
    background: #fff;
    padding: 0 10px 10px;
    border-radius: 0 0 8px 8px;
}
.offer-box .offer-content .store-logo {
    width: 50%;
    margin: -50px auto 0;
    padding: 4px;
    background: #fff;
    border-radius: 9px;
    border: 1px solid #dadada;
}
.offer-box .offer-content .store-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}
.offer-content .s-info-top .t-n-s {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 10px 0;
}
.s-info-top .t-n-s .store-name {
    color: #717171;
}
.offer-content .s-info-top h4 {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
}
.offer-content .s-info-top p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5;
}
.offer-content .s-info-bottom {
    font-size: 12px;
}
.offer-content .s-info-bottom .expiry {
    color:#8c8c8c;
    margin-bottom: 6px;
}
.offer-content .s-info-bottom .more-info {
    color: #2e6ee8;
}
.home-categories {
    background: url("../images/cat-bg.jpg") no-repeat center center;
    background-size: cover;
    padding: 3rem 0;
}
.home-categories .container {
    max-width: 1200px;
    margin: 0 auto;
}
.home-categories h2 {
    font-size: 32px;
    padding-left: 42px;
    background: url("../images/caret-tag-light.png") no-repeat left center;
    background-size: 32px;
    color: #fff;
}
.home-categories .top-categories {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -20px 2rem;
}
.top-categories .category-item {
    width: 33.33%;
}
.category-item .category-box {
    position: relative;
    overflow: hidden;
    margin: 0 20px;
}
.category-box .cat-bg {
    position: absolute;
    z-index: 0;
    max-width: 100%;
    height: auto;
}
.category-box .cat-info {
    position: relative;
    z-index: 1;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border:1px solid #dadada;
}
.category-box .cat-info h3 {
    margin: 0;
    padding: 10px 0 10px 10px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    border-bottom: 1px solid #dadada;
}
.category-box .cat-info .store-list {
    list-style: none;
}
.cat-info .store-list li {
    margin-bottom: 4px;
}
.cat-info .store-list a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    border-radius: 4px;
    padding: 2px 10px;
    transition: all ease 0.2s;
}
.cat-info .store-list a:hover {
    background: rgba(255, 255, 255, 1);
    margin-left: 6px;
}
.category-box .cat-info .cat-link {
    padding: 8px 10px;
    background-color: rgba(255,255,255,0.8);
}
.cat-info .cat-link a {
    font-size: 14px;
    color:#2e6ee8;
}
.home-categories .all-cat-btn {
    text-align: center;
    margin: 1rem 0;
}
.home-categories .all-cat-btn a {
    display: inline-block;
    padding: 12px 30px;
    color:#fff;
    background: #2e6ee8;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
}
.trending-offers {
    padding: 3rem 0;
}
.trending-offers .container {
    max-width: 1200px;
    margin: 0 auto;
}
.trending-offers h2 {
    font-size: 32px;
    padding-left: 42px;
    background: url("../images/caret-tag.png") no-repeat left center;
    background-size: 32px;
}
.trending-offers .trending-list,
#coupon-listings-category .trending-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.trending-list .trending-item {
    width: 25%;
    margin-bottom: 30px;
}
.trending-item .trending-box {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: #fff;
    border: 1px solid #cacaca;
    border-radius: 4px;
    height: 100%;
    box-shadow: 0 0 6px #dadada;
}
.trending-item .trending-box .store-logo {
    flex-shrink: 0;
    padding-top: 54%;
    position: relative;
    border-bottom: 1px solid #cacaca;
}
.trending-box .store-logo img {
    width: 50%;
    height: auto;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
}
.trending-box .trending-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
}
.trending-content .s-info-top .t-n-s {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #569045;
    margin-bottom: 10px;
}
.trending-content .s-info-top h4 {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
}
.trending-content .s-info-top p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5;
}
.trending-content .s-info-bottom {
    font-size: 12px;
}
.trending-content .s-info-bottom .expiry {
    color:#8c8c8c;
    margin-bottom: 6px;
}
.trending-content .s-info-bottom .more-info {
    color: #2e6ee8;
}
.home-newsletter {
    background: #2e3239;
    padding: 2rem 0;
}
.home-newsletter .container {
    max-width: 1200px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
}
.home-newsletter h2 {
    font-size: 32px;
}
.home-newsletter .newsletter-form {
    max-width: 600px;
    margin:2rem auto;
    position: relative;
}
.home-newsletter .newsletter-form svg {
    position: absolute;
    left: 16px;
    top: 12px;
}
.home-newsletter .newsletter-form #email {
    width: 100%;
    border:1px solid #dadada;
    border-radius: 50px;
    outline: none;
    height: 42px;
    padding: 10px 120px 10px 42px;
    font-size: 18px;
}
.home-newsletter .newsletter-form #submit {
    position: absolute;
    border-radius: 0 50px 50px 0;
    right: 0;
    top: 0;
    height: 42px;
    border: 0;
    min-width: 120px;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 20px;
    color: #fff;
    background: #2e6ee8;
}
.newsletter-form #ns-response div {
    margin-top: 10px;
}
.newsletter-form #ns-response .success {
    color:#32e232;
}
.newsletter-form #ns-response .error {
    color: #ed1212;
}
.popular-brands {
    padding: 2rem 0;
}
.popular-brands .container {
    max-width: 1200px;
    margin: 0 auto;
}
.popular-brands h2 {
    font-size: 32px;
    padding-left: 42px;
    background: url("../images/caret-tag.png") no-repeat left center;
    background-size: 32px;
}
.popular-brands .brand-items {
    padding: 20px;
}
.popular-brands .brand-items a {
    display: inline-block;
    margin-right: 14px;
    border: 1px solid #569045;
    color: #569045;
    padding: 7px 18px;
    line-height: 20px;
    margin-bottom: 16px;
}

#mastheader.inner-head {
    background: #fff;
    box-shadow: 0 1px 3px #cacaca;
}
.inner-search {
    position: relative;
}
.inner-search .search-box {
    width: 480px;
    position: relative;
}
.inner-search .search-box input {
    padding: 9px 100px 9px 38px;
    font-size: 14px;
}
.inner-search .search-box svg {
    top:9px;
}
.inner-search .search-box button {
    font-size: 16px;
}
.store-page, .category-page {
    padding: 1rem 0;
}
.store-page .container,
.category-page .container {
    max-width: 1200px;
    margin: 0 auto;
}
.store-top, .category-top {
    background: #2e3239;
    padding: 2rem 0;
    color: #fff;
}
.store-top .store-header,
.category-top .category-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    flex-wrap: nowrap;
}
.store-top .store-header .store-logo {
    width: 250px;
    flex-shrink: 0;
}
.store-header .store-logo .logo-box {
    border:1px solid #dadada;
    padding: 10px;
    border-radius: 10px;
    max-width: 220px;
    background: #fff;
}
.store-logo .logo-box img {
    max-width: 100%;
    height: auto;
}
.store-top .store-header .store-content {
    width: 100%;
}
.store-header .store-title {
    margin: 0;
    font-size: 28px;
}
.store-header .store-ratings {
    display: flex;
    flex-wrap: nowrap;
    margin: 1rem 0 0;
    font-size: 14px;
    line-height: 134.3%;
    align-items: center;
}
.store-ratings .stars {
    line-height: 100%;
}
.store-ratings .stars label {
    background: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 20"><path d="M19.9479 7.2428C19.8169 6.8378 19.4577 6.5502 19.0328 6.5118L13.2602 5.9877L10.9776 0.645C10.8093 0.2535 10.426 0 10.0001 0C9.5742 0 9.1909 0.2535 9.0226 0.6459L6.74 5.9877L0.9665 6.5118C0.5423 6.5511 0.184 6.8378 0.0523 7.2428C-0.0794 7.6478 0.0423 8.0919 0.3632 8.372L4.7265 12.1986L3.4399 17.8664C3.3457 18.2831 3.5075 18.7139 3.8533 18.9638C4.0391 19.0981 4.2565 19.1664 4.4758 19.1664C4.6649 19.1664 4.8524 19.1155 5.0207 19.0148L10.0001 16.0388L14.9776 19.0148C15.3419 19.2339 15.801 19.2139 16.146 18.9638C16.492 18.7131 16.6536 18.2822 16.5594 17.8664L15.2728 12.1986L19.6361 8.3727C19.957 8.0919 20.0796 7.6485 19.9479 7.2428Z" fill="%23FFC107"/></svg>') no-repeat left center;
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 26px;
    height: 20px;
}
.store-ratings .stars:hover label {
    /*    background: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 20"><path d="M19.9479 7.2428C19.8169 6.8378 19.4577 6.5502 19.0328 6.5118L13.2602 5.9877L10.9776 0.645C10.8093 0.2535 10.426 0 10.0001 0C9.5742 0 9.1909 0.2535 9.0226 0.6459L6.74 5.9877L0.9665 6.5118C0.5423 6.5511 0.184 6.8378 0.0523 7.2428C-0.0794 7.6478 0.0423 8.0919 0.3632 8.372L4.7265 12.1986L3.4399 17.8664C3.3457 18.2831 3.5075 18.7139 3.8533 18.9638C4.0391 19.0981 4.2565 19.1664 4.4758 19.1664C4.6649 19.1664 4.8524 19.1155 5.0207 19.0148L10.0001 16.0388L14.9776 19.0148C15.3419 19.2339 15.801 19.2139 16.146 18.9638C16.492 18.7131 16.6536 18.2822 16.5594 17.8664L15.2728 12.1986L19.6361 8.3727C19.957 8.0919 20.0796 7.6485 19.9479 7.2428Z" fill="%23FFC107"/></svg>') no-repeat left center;*/
}
.store-ratings .stars label:hover ~ label {
    background: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 20"><path d="M19.9479 7.2428C19.8169 6.8378 19.4577 6.5502 19.0328 6.5118L13.2602 5.9877L10.9776 0.645C10.8093 0.2535 10.426 0 10.0001 0C9.5742 0 9.1909 0.2535 9.0226 0.6459L6.74 5.9877L0.9665 6.5118C0.5423 6.5511 0.184 6.8378 0.0523 7.2428C-0.0794 7.6478 0.0423 8.0919 0.3632 8.372L4.7265 12.1986L3.4399 17.8664C3.3457 18.2831 3.5075 18.7139 3.8533 18.9638C4.0391 19.0981 4.2565 19.1664 4.4758 19.1664C4.6649 19.1664 4.8524 19.1155 5.0207 19.0148L10.0001 16.0388L14.9776 19.0148C15.3419 19.2339 15.801 19.2139 16.146 18.9638C16.492 18.7131 16.6536 18.2822 16.5594 17.8664L15.2728 12.1986L19.6361 8.3727C19.957 8.0919 20.0796 7.6485 19.9479 7.2428Z" fill="%23CACACA"/></svg>') no-repeat left center;
}
.store-ratings .stars input {
    width: 0;
    height: 0;
    position: absolute;
}
.store-ratings .ratings {
    margin: 0 10px;
}
.store-ratings .reviews {
    text-decoration: underline;
}
.store-header p {
    font-size: 14px;
    color:#efefef;
    line-height: 1.4;
    margin-bottom: 0;
}
.category-top .category-title h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}
.category-top .category-title svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-right: 20px;
}
.category-top .category-title p {
    margin-bottom: 0;
}
.coupon-type-list {
    margin: 1rem 0;
}
.coupon-type-list a {
    font-size: 15px;
    background: #fff;
    border-radius: 30px;
    display: inline-block;
    margin-right: 16px;
    border:1px solid #aeaeae;
    padding: 5px 14px;
    color:#aeaeae;
}
.coupon-type-list a.active {
    color:#000;
    border-color: #2e6ee8;
}
.store-listings {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.store-listings .store-listing-item {
    width: 50%;
    margin-bottom: 30px;
}
.store-listing-item .store-item-coupon {
    margin: 0 15px;
    cursor: pointer;
    display: flex;
    position: relative;
    background: #fff;
    box-shadow: 0 0 3px #dadada;
    border-radius: 8px;
    height: 100%;
}
.store-item-coupon .coupon-value {
    width:120px;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #e7eaf0;
    transition: all ease 0.2s;
    border-radius: 8px 0 0 8px;
}
.store-item-coupon .coupon-value .value1 {
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
}
.store-item-coupon .coupon-value .value2 {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
}
.store-item-coupon:hover .coupon-value {
    background: #2e6ee8;
    color: #fff;
}
.store-item-coupon .coupon-info {
    width: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.store-item-coupon .coupon-info .c-info-top {
    margin: 10px 0;
    position: relative;
}
.coupon-info .c-info-top .coupon-type-sale,
.coupon-info .c-info-top .coupon-type-code {
    display: inline-block;
    padding: 2px 4px 2px 20px;
    font-size: 13px;
    background: #ccd9ef;
}
.coupon-info .c-info-top .coupon-type-code {
    background: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 1a1 1 0 0 0-1 1v4.586a1 1 0 0 0 .293.707l7 7a1 1 0 0 0 1.414 0l4.586-4.586a1 1 0 0 0 0-1.414l-7-7A1 1 0 0 0 6.586 1zm4 3.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0" fill="%23000000"/></svg>') no-repeat 4px center #ccd9ef;
    background-size: 14px;
}
.coupon-info .c-info-top .coupon-type-sale {
    background: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M13.442 2.558a.625.625 0 0 1 0 .884l-10 10a.625.625 0 1 1-.884-.884l10-10a.625.625 0 0 1 .884 0M4.5 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5m7 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5" fill="%23000000"/></svg>') no-repeat 4px center #ccd9ef;
    background-size: 14px;
}
.coupon-info .c-info-top .verified,
.coupon-info .c-info-top .exclusive {
    position: absolute;
    top: 0;
    font-size: 12px;
    right: 0px;
    background: #569045;
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
}
.coupon-info .c-info-top .exclusive {
    padding:3px 5px 4px;
    background: #ff7a19;
}
.coupon-info .c-info-top .verified ~ .exclusive {
    right: 90px;
}
.coupon-info .c-info-top .verified svg {
    vertical-align: -4px;
}
.coupon-info .c-info-top .exclusive svg {
    vertical-align: -1px;
}
.coupon-info .c-info-top .coupon-title {
    font-weight: 700;
    font-size: 18px;
    margin: 7px 0 10px;
    padding-right: 24px;
}
.coupon-info .c-info-top .more-info {
    font-size: 14px;
    color: #2e6ee8;
}
.coupon-info .c-info-bottom {
    margin: 0 -10px;
    padding: 4px 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-top:1px dashed #dadada;
}
.coupon-info .c-info-bottom .e-n-u {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 13px;
}
.coupon-info .c-info-bottom .cta-btn,
.trending-content .s-info-bottom .cta-btn {
    margin: -5px -10px -4px;
    padding: 6px 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    border-radius: 0 0 8px 0;
    position: relative;
    height: 40px;
    width: 166px;
    text-align: center;
}
.coupon-info .c-info-bottom .cta-btn.btn-sale,
.trending-content .s-info-bottom .cta-btn.btn-sale {
    background: #2e6ee8;
    color:#fff;
}
.coupon-info .c-info-bottom .cta-btn.btn-code,
.trending-content .s-info-bottom .cta-btn.btn-code {
    text-align: right;
    border: 1px solid #2e6ee8;

}
.c-info-bottom .cta-btn .code-text,
.s-info-bottom .cta-btn .code-text {
    margin-right:-8px;
}
.c-info-bottom .cta-btn .get-code,
.s-info-bottom .cta-btn .get-code {
    position: absolute;
    padding: 6px 20px 6px 30px;
    width: 84%;
    text-align: left;
    background: #2e6ee8;
    color: #fff;
    top:-1px;
    bottom: -1px;
    left:-1px;
    transition: all ease 0.2s;
    overflow: hidden;
}
.c-info-bottom .cta-btn .get-code .tron,
.s-info-bottom .cta-btn .get-code .tron {
    position: absolute;
    top: 0;
    right: -17px;
    width: 35px;
    height: 100%;
    z-index: 60;
    background: #709df5;
    border-radius: 0 0 4px 4px;
    transition: all .25s ease;
    transform: rotate(30deg) translateY(-10px) scaleX(.9);
    margin-top: 6px;
}
.c-info-bottom .cta-btn .get-code .tron:after,
.s-info-bottom .cta-btn .get-code .tron:after {
    display: block;
    content: "";
    width: 37px;
    height: 10px;
    background: #1e4899;
    position: absolute;
    z-index: 12;
    right: -12px;
    bottom: -10px;
    -webkit-transform: skew(54deg,0);
    -ms-transform: skew(54deg,0);
    -o-transform: skew(54deg,0);
    transition: all .25s ease;
    transform: skew(54deg,0);
}
.store-item-coupon:hover .c-info-bottom .cta-btn .get-code {
    width: 78%;
}
.store-item-coupon:hover .c-info-bottom .cta-btn .get-code .tron,
.trending-box:hover .s-info-bottom .cta-btn .get-code .tron {
    top: 0;
    right: -28px;
    width: 58px;
    background: #7da6f8;
    border-radius: 0 0 4px 4px;
    transform: rotate(25deg) translateY(-10px) scaleX(.9);
    margin-top: 12px;
}
.store-item-coupon:hover .c-info-bottom .cta-btn .get-code .tron:after,
.trending-box:hover .c-info-bottom .cta-btn .get-code .tron:after {
    display: block;
    content: "";
    width: 54px;
    height: 10px;
    background: #1e4899;
    position: absolute;
    z-index: 12;
    right: -8px;
    bottom: -10px;
    transform: skew(54deg,0);
}
.store-item-coupon .goto-arrow {
    position: absolute;
    width: 28px;
    height: 32px;
    right: 15px;
    opacity: 0;
    transition: all ease 0.2s;
    top: 50%;
    transform: translateY(-50%);
}
.store-item-coupon:hover .goto-arrow {
    opacity: 1;
    right: 10px;
}
.trending-content .s-info-bottom .cta-btn {
    margin: 10px 0 0;
    width: 100%;
    border-radius:0;
}
.s-info-bottom .cta-btn .get-code {
    width: 90%;
    text-align: center;
}
.trending-box:hover .s-info-bottom .cta-btn .get-code {
    width: 84%;
}
.store-item-coupon .goto-arrow svg {
    fill: #2e6ee8;
}
.offers-summary table {
    width: 100%;
    margin-top: .5rem;
    color: #333;
    background-color: #fff;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
}
.offers-summary table th {
    font-weight: 600;
    text-align: left;
    background-color: #f8f8f8;
}
.offers-summary table td,
.offers-summary table th {
    padding: .75rem;
    border: 1px solid #e4e4e4;
}
span[data-link] {
    color: #2e6ee8;
    text-decoration: underline;
    cursor: pointer;
}
.breadcrumbs {
    background: #fff;
    box-shadow: 0 -2px 4px #83a4e5;
}
.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4px 0;
    font-weight: 500;
}
.breadcrumbs ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    margin: 10px 0;
}
.breadcrumbs ul li {
    margin-left: 10px;
}
.breadcrumbs ul li:before {
    content: "";
    display: inline-block;
    background: 50% no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg width='200' height='200' viewbox='0 0 185.343 185.343' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M51.707,185.343c-2.741,0-5.493-1.044-7.593-3.149c-4.194-4.194-4.194-10.981,0-15.175 l74.352-74.347L44.114,18.32c-4.194-4.194-4.194-10.987,0-15.175c4.194-4.194,10.987-4.194,15.18,0l81.934,81.934 c4.194,4.194,4.194,10.987,0,15.175l-81.934,81.939C57.201,184.293,54.454,185.343,51.707,185.343z' fill='%231C1B1F'/%3E%3C/svg%3E");
    margin-right: 4px;
    width: 12px;
    height: 12px;
    background-size: cover;
}
.breadcrumbs ul li:first-child {
    margin-left: 0;
}
.breadcrumbs ul li:first-child:before {
    display: none;
}
.breadcrumbs ul a {
    color: #2e6ee8;
}
.store-content-main {
    padding: 20px;
    background: #fff;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 0 3px #cacaca;
}
.store-content-main h2:first-child {
    margin-top: 0;
}
.store-content-main p:last-child {
    margin-bottom: 0;
}
.coupon-modal {
    display: flex;
    flex-direction: column;
}
.coupon-modal .modal-header {
    color: #fff;
    background: #2e3239;
    padding: 14px;
    text-align: center;
}
.modal-header .modal-logo {
    width:150px;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    margin: 0 auto 16px;
}
.modal-header .modal-logo img {
    max-width: 100%;
    height: auto;
}
.modal-header .modal-title h3 {
    margin: 0 0 10px;
}
.modal-header .modal-title p {
    margin: 0;
}
.coupon-modal .modal-content {
    padding: 14px;
    text-align: center;
}
.modal-content .coupon-meta {
    display: flex;
    font-size: 14px;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.modal-content .coupon-code-box {
    max-width: 420px;
    margin: 10px auto 0;
    border: 2px dashed #666;
    background: #e7eaf0;
    padding: 3px;
    position: relative;
}
.coupon-code-box #coupon-code {
    width: 100%;
    background: none;
    border: none;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding: 4px 100px 4px 4px;
    text-transform: uppercase;
    letter-spacing: 3px;
    outline: none;
}
.coupon-code-box #copy-btn {
    background: #ff7a19;
    border: none;
    color: #fff;
    font-weight: bold;
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    font-size: 18px;
    width:100px;
    cursor: pointer;
}
.coupon-code-box #copy-btn.copied {
    background: #569045;
}
.modal-content p {
    margin: 4px 0;
}
.modal-content .offer-btn {
    background: #2e6ee8;
    color: #fff;
    font-weight: bold;
    padding: 10px 40px;
    border: none;
    margin: 1rem 0 10px;
    cursor: pointer;
}
.coupon-modal .modal-footer {
    padding: 8px 14px;
    text-align: center;
    border-top: 1px solid #dadada;
}
.modal-footer .feedback .not-work,
.modal-footer .feedback .work {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: contain;
    border: none;
    margin: 4px 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    cursor: pointer;
}
.modal-footer .feedback .not-work {
    background-image: url("../images/not-worked.png");
}
.modal-footer .feedback .work {
    background-image: url("../images/worked.png");
}
.modal-footer .does-worked {
    font-weight: 700;
    margin: 10px 0 0;
    color: #444;
}
.content-page {
    margin: 1rem 0;
}
.content-page .container {
    max-width: 1200px;
    margin: 0 auto;
}
.page-title {
    text-align: center;
}
.shadow-box {
    background: #fff;
    box-shadow: 0 0 3px #dadada;
    padding: 20px;
}
.content-page .store-listing-top {
    margin-bottom: 1rem;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.store-listing-top .item {
    font-size: 23px;
    width: 50px;
    height: 50px;
    padding: 12px 0;
    text-align: center;
    background: #e7eaf0;
    color: #000;
    line-height: 26px;
    margin: 15px 30px;
    border-radius: 50px;
    transition: all ease 0.2s;
}
.store-listing-top .item.others {
    width: 100px;
}
.store-listing-top .item:hover {
    color: #fff;
    background: #2e6ee8;
}
.store-letter-content {
    padding-left: 20px;
}
.store-letter-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    column-count: 4;
}
.store-letter-content ul li {
    margin-bottom: 10px;
}
.store-letter-content a {
    color: #555;
}
.store-letter-content a:hover {
    color:#2e6ee8;
}
.category-listing {
    display: flex;
    flex-wrap: wrap;
    margin:0 -15px;
}
.category-listing .cat-item {
    width: 33.33%;
    margin-bottom:30px;
}
.category-listing .cat-item .cat-box {
    margin: 0 15px;
    background: #e7eaf0;
    border:2px solid #444;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding:8px 10px;
    color: #444;
    font-weight: 700;
    border-radius: 7px;
    transition: all ease 0.2s;
}
.category-listing .cat-item .cat-box:hover {
    box-shadow: 0 0 4px 2px #2e6ee8;
    background: #2e6ee8;
    border-color: #2e6ee8;
    color: #fff;
}
.cat-item .cat-box svg {
    width: 32px;
    height: 32px;
    margin-right: 14px;
    fill:#444;
    transition: all ease 0.2s;
}
.category-listing .cat-item .cat-box:hover svg {
    fill: #fff;
}
@keyframes spinner-border {
    to { transform: rotate(360deg); }
}
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: -0.125em;
    border: 3px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border;
}
.app-pagination .pagination {
    font-size: .875rem;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}
.pagination .page-link {
    display: block;
    padding: 10px;
    margin: 0 6px;
    background: #dae2f0;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 20px;
    color: #000;
}
.pagination .active .page-link {
    background: #2e6ee8;
    color: #fff;
}

























#footer {
    background: #2e3239;
    color: #fff;
    padding: 1rem 0;
    font-size: 14px;
}
#footer .container {
    max-width: 1200px;
    margin: 0 auto;
}
#footer .logo {
    width: 240px;
    height: auto;
    margin-left: -6px;
}
#footer .footer-links {
    margin-bottom: 10px;
    margin-top: 5px;
}
#footer .footer-links a {
    color: #cacaca;
    margin-right: 16px;
}
#footer .footer-links a:hover {
    color: #fff;
}
#footer .copyrights {
    margin-bottom: 10px;
}


@media (max-width: 1200px) {
    body .container,
    .store-top .store-header,
    .category-top .category-header {
        width: auto !important;
        margin: 0 15px !important;
    }
    #mastheader .main-header .logo,
    #mastheader .main-header .nav-menu {
        flex-shrink: 0;
    }
    #mastheader .main-header .inner-search {
        width: 100%;
        padding: 0 20px;
    }
    .inner-search .search-box {
        width: 100%;
    }
}
@media (max-width: 1024px) {
    .home-search h2 {
        font-size: 26px;
    }
    .home-search p {
        font-size: 16px;
    }
    .home-top-stores .top-stores {
        flex-wrap: wrap;
    }
    .top-stores .store-item {
        width: 25%;
    }
    .home-today-offers h2,
    .home-categories h2,
    .trending-offers h2,
    .home-newsletter h2,
    .trending-offers h2,
    .popular-brands h2 {
        font-size: 28px;
    }
    .today-offers .offer-item,
    .trending-list .trending-item,
    .trending-list .trending-item {
        width: 33.33%;
    }
    .store-listings {
        display: block;
    }
    .store-listings .store-listing-item {
        width: auto;
        margin: 0 0 20px;
    }
}
@media all and (max-width: 920px) {
    #mastheader {
        position: relative;
    }
    #mastheader.inner-head .main-header {
        height: 72px;
        align-items:flex-start;
    }
    #mastheader .main-header .inner-search {
        position: absolute;
        left: 0;
        bottom: 10px;
    }
}

























@media all and (max-width: 767px) {
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
    .today-offers .offer-item,
    .trending-list .trending-item,
    .trending-list .trending-item {
        width: 50%;
    }
    .nav-menu ul.main-menu {
        position: absolute;
        right: 0;
        padding: 10px;
        background: #fff;
        display: flex;
        flex-direction: column;
        width: 240px;
        z-index: 10;
        top: 100%;
        transition: all .3s ease;
        transform: translateX(260px);
    }
    .main-menu li {
        margin-left: 20px;
        color: #212121;
        padding: 10px 0;
        display: block;
    }
    .nav-menu .mobile-toggle {
        position: absolute;
        width: 32px;
        height: 32px;
        display: block;
        right: 25px;
        top: 6px;
    }
    .nav-menu .mobile-toggle i {
        display: block;
        position: relative;
        width: 33px;
        height: 33px;
        margin:8px 0;
        cursor: pointer;
        background: url(data:image/svg+xml;charset=utf8;base64,IDxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMzIgMzIiPjxwYXRoIGQ9Ik0zMC42MDg3IDE0LjYwODlIMS4zOTEyOEMwLjYyMjg5MSAxNC42MDg5IDAgMTUuMjMxOCAwIDE2LjAwMDJDMCAxNi43Njg2IDAuNjIyODkxIDE3LjM5MTQgMS4zOTEyOCAxNy4zOTE0SDMwLjYwODdDMzEuMzc3IDE3LjM5MTQgMzEuOTk5OSAxNi43Njg2IDMxLjk5OTkgMTYuMDAwMkMzMiAxNS4yMzE4IDMxLjM3NyAxNC42MDg5IDMwLjYwODcgMTQuNjA4OVoiIGZpbGw9IiMyMTIxMjEiLz48L3N2Zz4=) no-repeat center center
    }

    .nav-menu .mobile-toggle i:before {
        content: "";
        width: 100%;
        height: 3px;
        border-radius: 2px;
        top: 6px;
        left: 0;
        position: absolute;
        background: #212121;
        transition: all .3s ease
    }

    .nav-menu .mobile-toggle i:after {
        content: "";
        width: 100%;
        height: 3px;
        border-radius: 2px;
        bottom: 6px;
        left: 0;
        position: absolute;
        background: #212121;
        transition: all .3s ease
    }

    .nav-menu.close .mobile-toggle i {
        background: 0 0;
    }
    .nav-menu.close .mobile-toggle i:before {
        transform: translateY(9px) rotate(45deg)
    }

    .nav-menu.close .mobile-toggle i:after {
        transform: translateY(-9px) rotate(-45deg)
    }
    .nav-menu.close ul.main-menu {
        transform: translateX(0);
    }
    .home-categories .top-categories {
        display: block;
    }
    .top-categories .category-item {
        max-width: 480px;
        width: auto;
        margin: 0 auto 30px;
    }
    .store-top .store-header {
        display: block;
        text-align: center;
    }
    .store-top .store-header .store-logo {
        width: 220px;
        margin: 0 auto 20px;
    }
    .store-header .store-ratings {
        justify-content: center;
    }
    .store-top {
        padding: 1rem 0 0;
    }
    .store-letter-content ul {
        column-count:3;
    }
    .store-listing-top .item {
        margin: 10px 16px;
    }
    .category-listing .cat-item {
        width: 50%;
    }
}

@media all and (max-width: 580px) {
    #mastheader.inner-head .main-header {
        height: 66px;
    }
    .store-header .store-title {
        font-size: 24px;
    }
    .main-header .logo img {
        width: 200px;
    }
    .nav-menu .mobile-toggle i {
        margin: 4px 0;
    }
    .top-stores .store-item {
        width:33.33%;
    }
    .top-stores .store-item:last-child {
        display: block;
    }
    .trending-offers,
    .home-categories,
    .home-today-offers{
        padding: 1rem 0;
    }
    .home-today-offers .today-offers,
    .trending-offers .trending-list,
    #coupon-listings-category .trending-list {
        display: block;
    }
    .today-offers .offer-item,
    .trending-list .trending-item,
    .trending-list .trending-item {
        width: auto;
        max-width: 400px;
        margin: 0 auto 20px;
    }
    .popular-brands .brand-items a {
        padding: 7px 18px;
        line-height: 16px;
        margin-bottom: 8px;
    }
    .store-listing-item .store-item-coupon {
        flex-direction: column;
    }
    .store-item-coupon .coupon-value {
        width: auto;
        display: block;
        border-radius: 8px 8px 0 0;
        padding: 10px 0;
        background: #ccd9ef;
    }
    .store-item-coupon .coupon-value div {
        display: inline-block;
    }
    .store-item-coupon .coupon-value .value1,
    .store-item-coupon .coupon-value .value2 {
        font-size: 24px;
        margin: 0 2px;
    }
    .store-item-coupon:hover .goto-arrow {
        display: none;
    }
    .coupon-type-list a {
        margin-right: 5px;
        padding: 5px 12px;
        font-size: 13px;
    }
    .breadcrumbs {
        display: none;
    }
    .modal-header .modal-title p {
        font-size: 14px;
    }
    .store-letter-content ul {
        column-count:2;
    }
    .category-listing .cat-item {
        width: 100%;
        margin-bottom: 10px;
    }
    .category-top .category-title h1 {
        font-size: 22px;
    }
    .category-top .category-title p {
        font-size: 14px;
    }
}