/*
Theme Name: Couponis Child Theme
Author: SpoonThemes
Theme URI: http://demo.spoonthemes.net/themes/couponis/
Author URI: http://themeforest.net/user/spoonthemes
License: GPL 2.0
Template: couponis
License URI: license.txt
Description:  Affiliate & Submitting Coupons WordPress Theme
Version: 1.0
Tags: grid-layout
*/

/* ==========
1.1. Fonts
========== */
/* Thin */
@font-face {
    font-family: "Inter";
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    src: url("./assets/fonts/Inter/Inter-Thin.ttf");
    src: local("Inter-Thin"), url("./assets/fonts/Inter/Inter-Thin.ttf") format("truetype")
}

/* Extra Light */
@font-face {
    font-family: "Inter";
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    src: url("./assets/fonts/Inter/Inter-ExtraLight.ttf");
    src: local("Inter-Thin"), url("./assets/fonts/Inter/Inter-ExtraLight.ttf") format("truetype")
}

/* Light */
@font-face {
    font-family: "Inter";
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url("./assets/fonts/Inter/Inter-Light.ttf");
    src: local("Inter-Thin"), url("./assets/fonts/Inter/Inter-Light.ttf") format("truetype")
}

/* Regular */
@font-face {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("./assets/fonts/Inter/Inter-Regular.ttf");
    src: local("Inter-Thin"), url("./assets/fonts/Inter/Inter-Regular.ttf") format("truetype")
}

/* Medium */
@font-face {
    font-family: "Inter";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url("./assets/fonts/Inter/Inter-Medium.ttf");
    src: local("Inter-Thin"), url("./assets/fonts/Inter/Inter-Medium.ttf") format("truetype")
}

/* Semi Bold */
@font-face {
    font-family: "Inter";
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url("./assets/fonts/Inter/Inter-SemiBold.ttf");
    src: local("Inter-Thin"), url("./assets/fonts/Inter/Inter-SemiBold.ttf") format("truetype")
}

/* Bold */
@font-face {
    font-family: "Inter";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("./assets/fonts/Inter/Inter-Bold.ttf");
    src: local("Inter-Thin"), url("./assets/fonts/Inter/Inter-Bold.ttf") format("truetype")
}

/* Extra Bold */
@font-face {
    font-family: "Inter";
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url("./assets/fonts/Inter/Inter-ExtraBold.ttf");
    src: local("Inter-Thin"), url("./assets/fonts/Inter/Inter-ExtraBold.ttf") format("truetype")
}

/* Black */
@font-face {
    font-family: "Inter";
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url("./assets/fonts/Inter/Inter-Black.ttf");
    src: local("Inter-Thin"), url("./assets/fonts/Inter/Inter-Black.ttf") format("truetype")
}


:root {
    --font-family: "Inter";
    /* Colors */
    --white: #FFFFFF;
    --black: #17171A;
    --grey: #7C8798;
    --grey-medium: #8B92A0;
    --grey-black: #7C8798;
    --grey-dark: #545454;
    --grey-light: #F2F7F9;
    --body-bg: var(--grey-light);
    --violet: #C471ED;
    --blue: #12C2E9;
    --orange: #FF7D68;
    --orange-medium: #FF946D;
    --green: #339B23;
    --green-light: #E9FFEB;
}


/* ========== 
1.2. Typography
========== */
html,
body {
    font-family: var(--font-family);
    font-size: 14px;
}

body[class*=" "] {
    font-family: var(--font-family) !important;
}

main {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.01em;
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
.header-alike,
.continue-read {
    font-family: var(--font-family) !important;
    color: var(--black);
}

/* ==========
1.3 General
========== */
body {
    background-color: #fff;
    background-image: url('./img/page-bg.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    body {
        background-image: url('./img/page-mobile-bg.png');
    }
}

@media screen and (min-width: 1460px) {
    .container {
        width: 1450px;
    }
}

.white-block {
    margin-bottom: 20px;
    border-radius: 26px;
    padding: 30px 25px;
    border-color: var(--white);
    box-shadow:
        0px 30px 30px rgba(0, 0, 0, 0.02),
        0px 25px 25px rgba(0, 0, 0, 0.015),
        0px 20px 20px rgba(0, 0, 0, 0.012),
        0px 15px 15px rgba(0, 0, 0, 0.01),
        0px 8px 6px rgba(0, 0, 0, 0.008),
        0px 2px 3px rgba(0, 0, 0, 0.005);
    overflow: hidden;
}

.white-block-content {
    padding: 0;
}

/* ==========
Header
========== */
.top-header {
    /* position: absolute; */
    width: 100%;
    top: 32px;
    padding-block: 15px;
    background-color: transparent !important;
    z-index: 100;
}

.top-header .logo {
    display: block;
    width: 100%;
    max-width: 333px;
}

@media screen and (max-width: 767px) {
    .top-header .logo {
        max-width: 190px;
    }
}

/* ==========
Navigation
========== */
.navbar-default .navbar-nav .open .dropdown-menu>li>a,
.navbar-default .navbar-nav li a {
    padding-inline: 0;
    font-size: 1.625rem;
    font-family: var(--font-family) !important;
    font-weight: 500;
    color: var(--grey-medium);
}

.navbar-default .navbar-nav li.current_page_item>a,
.navbar-default .navbar-nav li.current_page_item>a:visited {
    color: var(--black) !important;
}

.navbar-default .navbar-nav>li {
    margin-left: 70px;
}

.navbar-default .navbar-nav>li:first-child {
    margin-left: 0;
}

@media screen and (max-width: 991px) {
    .navbar-default .navbar-nav>li {
        margin-left: 40px;
    }
}

@media screen and (max-width: 767px) {
    .header-wrap {
        position: relative;
        z-index: 200;
    }

    .navbar-toggle {
        width: 30px;
        height: 30px;
        border: none;
    }

    .navbar-toggle .icon-menu:before {
        content: url('./img/icon-menu-close.svg');
    }

    .navbar-toggle.collapsed .icon-menu:before {
        content: url('./img/icon-menu-open.svg');
    }

    .navbar-default .navbar-collapse {
        position: fixed;
        display: flex;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding-top: 150px;
        padding-inline: 15px;
        background-color: var(--body-bg);
        background-image: url('./img/page-mobile-bg.png');
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% auto;
        margin-top: 0;
        z-index: 100;
        transition: all .2s linear !important;
    }

    .collapse.in {
        display: flex !important;
        justify-content: center;
        transition: all .2s linear;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar-default .navbar-nav>li {
        margin-left: 0;
    }

    .navbar-default .navbar-nav .open .dropdown-menu>li>a,
    .navbar-default .navbar-nav li a {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 2.5rem !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        color: var(--black) !important;
    }

    .navbar-default .navbar-nav li.current_page_item>a,
    .navbar-default .navbar-nav li.current_page_item>a:visited {
        background: linear-gradient(270deg, #FF6A33 -4.17%, #C44DFF 77.45%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }
}


/* ==========
Forms
========== */
.comment-form .form-group,
.form-group {
    margin-bottom: 10px;
}

label {
    margin-bottom: 10px;
    font-size: 1.125rem;
    color: var(--grey-medium);
    line-height: 1.3333;
    font-weight: 600;
    text-transform: initial;
}

a.search-type {
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: .875rem;
    text-transform: initital;
    color: var(--grey-medium);
    transition: border-color .3s linear;
}

a.search-type:hover {
    border-color: var(--orange);
}

a.search-type i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    margin-inline: auto;
    border-radius: 50%;
    background-color: var(--body-bg);
    color: var(--grey-medium);
}

input[id^="pwbox-1168"],
.form-control,
.form-control:focus,
.form-control:active,
.form-control:focus:active,
.styled-select select,
.styled-select select:focus,
.styled-select select:active {
    height: auto;
    border: none;
    border-radius: 8px;
    outline: none;
    padding: 15px 20px;
    background-color: var(--body-bg);
    font-size: 1rem;
    line-height: 1.375;
}

.form-submit #submit, .form-submit a, .pagination a, .pagination > span, .tagcloud a, .btn, a.btn, .post-password-form input[type="submit"] {
    padding-block: 12px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
}

/* ==========
Widgets
========== */
.widget-title {
    margin: 0;
    padding: 0 0 25px;
    border-bottom: none;
}

.widget-title h4 {
    font-size: 26px;
    line-height: 32px;
}

.widget-search-coupons .submit-form {
    float: left;
    margin-top: 25px;
    border-radius: 10px;
    padding: 15px 44px;
    font-size: 1.25rem;
    font-weight: 600;
    /* background: #DDE2EC; */
    color: var(--white);
}

.service.horizontal {
    margin-bottom: 0;
}

.service.horizontal .service-icon {
    margin-right: 25px;
}

.service h4 {
    font-size: 1.375rem;
}

.service p {
    font-size: 1.125rem;
    color: var(--grey);
}

/* ==========
Hero
========== */
.section-hero {
    /* padding-top: 120px; */
    /* padding-bottom: 30px; */
}

.section-hero .page-title {
    font-size: 70px;
    line-height: 1.4285;
}

.section-hero .page-title .text-linear-bg {
    background: linear-gradient(270deg, #FF6A33 -4.17%, #C44DFF 77.45%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-hero .hero-subtitle * {
    margin-top: 10px;
    color: var(--grey-black);
    font-weight: 500 !important;
}

@media screen and (max-width: 767px) {
    .section-hero .hero-subtitle * {
        margin-top: 15px;
        line-height: 1.55;
    }
}

/* ==========
Carousel
========== */
.white-block.carousel-wrap {
    margin-bottom: 0;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}

.carousel-wrap .owl-nav > div {
    top: calc(50% - 40px);
}

.stores-carousel-list {
    padding: 0;
    /* padding-top: 25px; */
}

.stores-carousel-list .owl-stage-outer {
    padding-bottom: 40px;
}

.stores-carousel-list .owl-item>a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    border: none;
    border-radius: 26px;
    padding: 15px;
    background-color: var(--white);
    box-shadow:
        0px 30px 30px rgba(0, 0, 0, 0.02),
        0px 25px 25px rgba(0, 0, 0, 0.015),
        0px 20px 20px rgba(0, 0, 0, 0.012),
        0px 15px 15px rgba(0, 0, 0, 0.01),
        0px 8px 6px rgba(0, 0, 0, 0.008),
        0px 2px 3px rgba(0, 0, 0, 0.005);
}

.stores-carousel-list .owl-item>a img {
    display: block;
    position: static;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    transform: none;
}

@media screen and (max-width: 767px) {
    .white-block.carousel-wrap {
        padding: 0;
        margin-bottom: 0;
    }

    .stores-carousel-list .owl-stage-outer {
        padding-bottom: 20px;
    }

    .carousel-wrap .owl-carousel .owl-item {
        padding-inline: 8px;
    }

    .carousel-wrap .owl-nav > div {
        top: calc(50% - 25px);
    }    

    .stores-carousel-list .owl-item>a {
        height: 104px;
        box-shadow:
        0px 18px 18px rgba(0, 0, 0, 0.02),
        0px 15px 15px rgba(0, 0, 0, 0.015),
        0px 10px 10px rgba(0, 0, 0, 0.012),
        0px 8px 6px rgba(0, 0, 0, 0.008),
        0px 2px 3px rgba(0, 0, 0, 0.005);
    }
}

/* ==========
Coupon Tabs
========== */
.coupon-tabs .elementor-tabs-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 910px;
}

.coupon-tabs .elementor-tabs-wrapper .elementor-tab-title {
    padding: 15px 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--grey-medium);
}

.coupon-tabs .elementor-tabs-wrapper .elementor-tab-title.elementor-active {
    color: var(--black);
}

.coupon-tabs .elementor-tabs-content-wrapper .elementor-tab-content {
    padding-inline: 0 !important;
}

.coupon-tabs .coupon-list {
    max-width: 910px;
    margin-bottom: 20px;
    border-radius: 26px;
    padding: 20px 30px 30px;
    border-color: var(--white);
    box-shadow:
        0px 30px 30px rgba(0, 0, 0, 0.02),
        0px 25px 25px rgba(0, 0, 0, 0.015),
        0px 20px 20px rgba(0, 0, 0, 0.012),
        0px 15px 15px rgba(0, 0, 0, 0.01),
        0px 8px 6px rgba(0, 0, 0, 0.008),
        0px 2px 3px rgba(0, 0, 0, 0.005);
    overflow: hidden;
}

.coupon-tabs .coupon-list .badges {
    display: inline-flex;
    min-height: 32px;
    border-radius: 25px;
    padding: 5px 11px;
    background-color: var(--grey-light);
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 0.875rem;
    line-height: 22px;
}

.coupon-tabs .coupon-list .badges .counter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--orange);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
}
.coupon-tabs .coupon-list .badges .counter::before {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    top: 1px;
    left: 1px;
    border: 1px solid var(--white);
    border-radius: 50%;
}

.coupon-tabs .coupon-list .badges .text {
    margin-left: 10px;
}

.coupon-tabs .coupon-list .flex-wrap {
    padding-top: 25px;
}

.coupon-tabs .coupon-list .flex-left {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 0;
    padding-right: 20px;
}

.coupon-tabs .coupon-list .coupon-top-meta {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.coupon-tabs .coupon-list .coupon-top-meta p {
    margin-bottom: 0;
}

.coupon-tabs .coupon-list .coupon-top-meta li:not(:last-child) {
    margin-bottom: 10px;
}

.coupon-tabs .coupon-list .coupon-top-meta .status {
    display: flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    background-color: var(--green-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 22px;
    color: var(--green);
}

.coupon-tabs .coupon-list .coupon-top-meta .coupon-box_header-list-status img {
    display: block;
    width: 12px;
    margin-right: 5px;
}

.coupon-list .coupon-box_header-list-rating {
    margin-bottom: 10px;
}

.coupon-tabs .coupon-list .coupon-top-meta .used {
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
    line-height: 1.375;
    color: var(--grey-medium);
    font-weight: 500;
}

.coupon-tabs .coupon-list .coupon-top-meta .count {
    margin-right: 5px;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--black);
}

.coupon-list .flex-middle {
    padding-right: 30px;
    letter-spacing: -0.01em;
}

.coupon-list .flex-middle h4 {
    margin-bottom: 0;
    white-space: initial;
}

.coupon-list .flex-middle .full-description,
.coupon-list .flex-middle .coupon-box_header-subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
}

.coupon-list .flex-middle .coupon-box_header-subtitle {
    margin-bottom: 20px;
    font-weight: 600;
}

.coupon-list .flex-middle .full-description ul {
    margin-bottom: 0;
}

.coupon-list .flex-middle .full-description li:not(:last-child) {
    margin-bottom: 14px;
}

.coupon-list .flex-right {
    flex: 0 0 32%;
    max-width: 32%;
    margin: 0;
}

.coupon-code-modal,
.coupon-action-button.header-alike,
.coupon-activate-deal-action-button {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: -.01em;
    transition: opacity .3s linear;
}

.code-text,
.code-text-full {
    display: block;
    width: 80%;
    border-radius: 10px;
    background: linear-gradient(180deg, #FF946D 0%, #FF7D68 100%);
    font-size: 1.25rem;
    z-index: 10;
    transition: opacity .3s linear;
}

.coupon-action-button.header-alike:hover {
    opacity: 0.8;
}

.coupon-action-button:hover .code-text, 
.coupon-action-button:hover .code-text-full  {
    /* opacity: .8; */
}

.code-text-full {
    width: 100%;
}

.partial-code {
    display: block;
    padding-block: 8px;
    background: var(--grey-light);
    opacity: 0.8;
    color: var(--grey-medium);
    font-size: 1.375rem;
}

.coupon-action-button:hover .partial-code, .coupon-action-button:focus .partial-code, .coupon-action-button:active .partial-code, .coupon-action-button:focus:active .partial-code {
    color: var(--grey-medium);
}

@media screen and (max-width: 767px) {
    .coupon-tabs .elementor-tabs-wrapper {
        display: flex !important;
        max-width: 100%;
        margin-bottom: 20px;
        overflow: auto !important;
    }
    
    .coupon-tabs .elementor-tabs-wrapper .elementor-tab-title {
        white-space: nowrap;
        margin-right: 20px;
    }
    .coupon-tabs .elementor-tabs-content-wrapper .elementor-tab-title.elementor-tab-mobile-title {
        display: none;
    }

    .coupon-tabs .coupon-list {
        padding: 20px;
    }

    .top-ten-cbd .coupon-box.coupon-list .flex-left, 
    .top-ten-cbd .coupon-box.coupon-list .flex-middle,
    .top-ten-cbd .coupon-box.coupon-list .flex-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .top-ten-cbd .coupon-list .white-block-content .coupon_bdgs-expire .badge-wrapper {
        text-align: center;
    }

    .coupon-tabs .coupon-list .coupon-top-meta {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }

    .coupon-tabs .coupon-list .coupon-top-meta li {
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 10px;
    }

    .coupon-tabs .coupon-list .coupon-top-meta .coupon-box_header-list-status {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }

    .coupon-tabs .white-block-content h4 {
        margin-bottom: 8px;
        font-size: 1.625rem;
        line-height: 1.23;
    }
    .coupon-list .flex-middle .coupon-box_header-subtitle {
        margin-bottom: 15px;
        font-size: 1.125rem;
        color: var(--black);
        line-height: 1.3333;
    }

    .coupon-list .flex-middle .full-description, 
    .coupon-list .flex-middle .coupon-box_header-subtitle {
        font-size: 1.125rem;
        line-height: 1.3333;
        color: var(--black);
    }

    .coupon-code-modal,
    .coupon-action-button.header-alike,
    .coupon-activate-deal-action-button {
        max-width: 100%;
        width: 100%;
    }
    .coupon-list .code-text {
        width: 82%;
    }
    .code-text, .code-text-full,
    .partial-code {
        padding-block: 10px;
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

/* ==========
Blog Cards
========== */
.white-block.blog-shortcode {
    margin-bottom: 30px;
}

.white-block .blog-media {
    height: 328px;
    margin: -30px -25px 15px;
}

.white-block .blog-media img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.white-block-content {
    font-size: 1rem;
    color: var(--black);
}

.white-block-content h4 {
    font-size: 1.375rem;
    color: var(--black);
}

.blog-shortcode .blog-item-meta {
    margin-bottom: 8px;
    padding-left: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--grey-medium);
}

.blog-shortcode .blog-item-meta::before {
    content: none;
}

/* ==========
Taxonomy Header
========== */
.storeSummary.white-block {
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}

.storeSummary .white-block-content {
    max-width: 946px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0 0;
}

.storeSummary .store-tax-header-wrap {
    margin-left: auto;
    margin-right: auto;
}

.storeSummary .flex-wrap {
    flex-wrap: wrap;
    justify-content: start;
    align-items: flex-start;
    margin-left: -15px;
    margin-right: -15px;
}
.storeSummary .flex-left,
.storeSummary .flex-right {
    padding-left: 15px;
    padding-right: 15px;
} 

.storeSummary .flex-left {
    flex: 0 0 39.5%;
    max-width: 39.5%;
}

.storeSummary .flex-right {
    flex: 0 0 60.5%;
    max-width: 60.5%;
    padding-top: 10px;
}

.storeSummary .store-description {
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 20px;
}

.storeSummary .store-description p, 
.storeSummary .store-description li {
    letter-spacing: -0.01em;
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--black);
}

.storeSummary .store-description ul {
    column-count: 2;
    column-gap: 40px;
}

.storeSummary .store-description ul li {
    position: relative;
    margin-bottom: 10px;
    list-style: none;
    padding-left: 10px;
}

.storeSummary .store-description ul li::before {
    content: "";
    width: 26px;
    height: 26px;
    background: url("./img/icon-check-orange.svg") no-repeat;
    position: absolute;
    left: -26px;
    top: 9px;
}
 
.storeSummary .store-logo {
    width: 100%;
    max-width: 300px;
    height: 220px;
    border-radius: 110px;
    padding: 30px 20px;
    background-color: var(--white);
    box-shadow: 0px 121.226px 96.9811px rgba(0, 0, 0, 0.02), 0px 78.5727px 56.7968px rgba(0, 0, 0, 0.0151852), 0px 46.6946px 30.8903px rgba(0, 0, 0, 0.0121481), 0px 24.2453px 15.7594px rgba(0, 0, 0, 0.01), 0px 9.87771px 7.90217px rgba(0, 0, 0, 0.00785185), 0px 2.24493px 3.81639px rgba(0, 0, 0, 0.00481481);
}

.store-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
}

.store-logo img {
    position: static;
    height: auto;
    transform: none;
}

.storeSummary .store-info h1 {
    margin-bottom: 12px;
    font-size: 3.125rem;
    line-height: 1.2;
    color: var(--black);
}

.storeSummary .store-info p,
.tax-coupon-category .verified-coupons-info p,
.tax-coupon-store .verified-coupons-info p {
    margin-bottom: 25px;
    font-size: 1.625rem;
    line-height: 1.23;
    color: var(--black);
}

a.visit-store {
    display: block;
    position: static;
    max-width: 212px;
    bottom: auto;
    right: auto;
    border-radius: 10px;
    padding: 16px 50px;
    font-size: 1.375rem;
    font-weight: 600;
}

.tax-coupon-category .verified-coupons-info p,
.tax-coupon-store .verified-coupons-info p {
    margin-top: 12px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--grey-dark);
}

.styled-checkbox.active label:after,
.styled-checkbox input:checked+label:after,
.styled-radio.active label:after,
.styled-radio input:checked+label:after,
.form-submit #submit,
.form-submit a,
.tagcloud a,
.btn,
a.btn,
.blog-item-meta:before,
.main-search a,
.pagination a.btn.active,
a.visit-store,
.tax-coupon-category .category-icon-wrap,
.nav.nav-tabs>li.active>a,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
.ui-widget-content.ui-slider-horizontal .ui-state-active {
    background: linear-gradient(180deg, #FF946D 0%, #FF7D68 100%);
    transition: opacity .3s linear;
}

.btn:hover,
a.btn:hover,
a.visit-store:hover,
.pagination a.btn:hover,
.nav.nav-tabs>li>a:hover,
.nav.nav-tabs>li.active>a:hover,
.nav.nav-tabs>li.active>a:focus,
.nav.nav-tabs>li.active>a:active,
.category-block:hover .white-block,
.ui-datepicker .ui-datepicker-buttonpane button:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .storeSummary.white-block {
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .storeSummary .white-block-content {
        padding-top: 5px;
        padding-bottom: 0;
    }

    .storeSummary .flex-left, 
    .storeSummary .flex-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .storeSummary .flex-left {
        display: flex;
        justify-content: center;
    }
    .storeSummary.taxonomy-header .store-logo {
        width: 250px;
        height: 153px;
        padding: 25px 20px;
    }

    .storeSummary .store-info {
        
        text-align: center;
    }

    .storeSummary .store-info h1 {
        margin-top: 5px;
        margin-bottom: 8px;
        font-size: 2rem;
        line-height: 1.3125;
    }

    .tax-coupon-category .verified-coupons-info p, 
    .tax-coupon-store .verified-coupons-info p {
        margin-block: 10px;
        font-size: 1.125rem;
        font-weight: 400;
        line-height: 1.3333;
    }

    .storeSummary .store-description {
        padding-top: 0;
    }

    .storeSummary .store-description ul, .storeSummary .store-description p {
        padding-top: 10px;
    }

    .storeSummary .store-description ul {
        column-count: 1;
        column-gap: 0;
        padding-left: 28px;
    }

    .storeSummary .store-description ul li {
        padding-left: 0;
    }
    
    .storeSummary .store-description ul li::before {
        top: 50%;
        width: 20px;
        height: 20px;
        transform: translateY(-50%);
        background-size: contain;
    }

    a.visit-store {
        max-width: 100%;
        padding-block: 10px;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .tax-coupon-store .storeSummary a.visit-store {
        margin-top: 10px;
    }

    .storeSummary .store-description p, 
    .storeSummary .store-description li {
        font-size: 1.125rem;
        line-height: 1.3333;
    }
}

/* ==========
Coupon Grid
========== */

@media (min-width: 991px) {
    .coupons-list {
        display: flex;
    }
    .coupons-list .coupons-item {
        display: flex;
        flex: 1;
    }
    .coupons-list .coupons-item .white-block {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .coupon-box.coupon-grid .coupon-box-header {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (min-width: 1200px) {
    .coupon-grid .coupon-box_header-title {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.main-listing .coupon-box_header-logo {
    display: none;
}

.coupon-grid {
    padding: 40px 30px;
}

.coupon-box_header-title h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.625rem;
    line-height: 1.23;
    letter-spacing: -0.01em;
    white-space: normal;
    text-overflow: initial;
}
.coupon-box.coupon-grid .coupon_bdgs-expire {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}


.coupon-grid .badges,
.coupon-list .badges {
    display: inline-flex;
    border-radius: 25px;
    padding: 5px 11px;
    background-color: var(--blue);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 0.875rem;
    line-height: 22px;
}

.coupon-box.coupon-grid .coupon-box_header-subtitle {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black);
}

.coupon-box.coupon-grid .coupon-box-header ul, 
.tax-coupon-store .storeSummary .store-info ul,
.tax-coupon-store .storeAbout .store-info ul {
    padding-left: 20px;
}

.coupon-box.coupon-grid .coupon-box-header ul li,
.tax-coupon-store .storeSummary .store-info ul li,
.tax-coupon-store .storeAbout .store-info ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 1.25rem;
    line-height: 1.4;
    list-style: none;
    color: var(--black);
}

.coupon-box.coupon-grid .coupon-box-header ul li:before,
.tax-coupon-store .storeSummary .store-info ul li:before,
.tax-coupon-store .storeAbout .store-info ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("/wp-content/themes/couponis-child/img/tick.svg") no-repeat;
    position: absolute;
    left: -21px;
    top: 7px;
}


.coupon-grid .coupon-box_footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.coupon-grid .coupon-bottom-meta {
    flex: 0 0 50%;
    max-width: 50%;
}
.coupon-grid .coupon-bottom-meta p {
    margin: 0;
}
.coupon-grid .coupon-bottom-meta li {
    display: flex;
    align-items: center;
}

.coupon-list .coupon-bottom-meta li .status,
.coupon-grid .coupon-bottom-meta li .status {
    display: flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    background-color: var(--green-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 22px;
    color: var(--green);
}

.coupon-list .coupon-bottom-meta li .status img,
.coupon-grid .coupon-bottom-meta li .status img {
    display: block;
    width: 12px;
    margin-right: 5px;
}

.coupon-list .coupon-bottom-meta li:not(:last-child),
.coupon-grid .coupon-bottom-meta li:not(:last-child) {
    margin-bottom: 10px;
}

.coupon-list .coupon-bottom-meta .used,
.coupon-grid .coupon-bottom-meta .used {
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
    line-height: 1.375;
    color: var(--grey-medium);
    font-weight: 500;
}

.coupon-list .coupon-bottom-meta .count,
.coupon-grid .coupon-bottom-meta .count {
    margin-right: 5px;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--black);
}

.coupon-box_footer-btn {
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.coupon-box_footer-btn .coupon-action-button {
    display: block;
    width: 100%;
    max-width: 273px;
}

.coupon-box_footer-btn .coupon-action-button .code-text {
    width: 65%;
    padding: 12px 15px;
}
.coupon-box_footer-btn .coupon-activate-deal-action-button .code-text-full {
    padding: 12px 15px;
}
.coupon-box_footer-btn .coupon-action-button .partial-code {
    padding: 11px 15px;
}

@media screen and (max-width: 767px) {
    .coupon-grid {
        padding: 20px;
        text-align: center;
    }

    .coupon-box.coupon-grid .coupon_bdgs-expire {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .coupon_bdgs-expire {
        justify-content: flex-start;
        order: -1;
    }

    .coupon-box.coupon-grid .coupon-box-header ul, 
    .tax-coupon-store .storeSummary .store-info ul, 
    .tax-coupon-store .storeAbout .store-info ul {
        text-align: left;
    }
    .coupon-box.coupon-grid .coupon-box-header ul li, 
    .tax-coupon-store .storeSummary .store-info ul li, 
    .tax-coupon-store .storeAbout .store-info ul li {
        font-size: 1.125rem;
        line-height: 1.3333;
    }

    .coupon-grid .coupon-bottom-meta {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .coupon-grid .coupon-bottom-meta, 
    .coupon-box_footer-btn {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .coupon-grid .coupon-bottom-meta li {
        padding-left: 7px;
        padding-right: 7px;
    }

    .coupon-grid .coupon-bottom-meta .coupon-box_header-list-status {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }

    .coupon-box_footer-btn .coupon-action-button {
        max-width: 100%;
    }
    .coupon-box_footer-btn .coupon-action-button .code-text,
    .coupon-box_footer-btn .coupon-action-button .partial-code {
        padding-block: 10px;
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

@media screen and (max-width: 992px) {
    .coupon-box_footer-btn {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .coupon-box_footer-btn .coupon-action-button {
        max-width: 100%;
    }
}

/* ==========
Store
========== */
.main-title {
    border: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.main-title .flex-wrap {
    display: flex;
}

.store-block-cards {
    margin-bottom: 30px;
}
.store-block-cards .white-block {
    margin-bottom: 10px;
}

.store-block-cards .store-title {
    padding: 15px 10px;
}
.store-block-cards .store-block .white-block-content {
    padding: 0;
    font-size: 11px;
}

/* ==========
Single Post
========== */
.single-post .white-block img {
    display: block;
    width: 100%;
}

/* ==========
Footer Subscribe
========== */
.footer-subscribe {
    position: relative;
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 26px;
    padding: 72px 0;
    background-image: url('./img/Subscribe-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-subscribe .row {
    display: flex;
    flex-wrap: wrap;
}

.footer-subscribe [class*="col-"] {
    position: static;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.footer-subscribe h4 {
    margin-bottom: 25px;
    order: 1;
}

.footer-subscribe p {
    order: 2;
    margin-bottom: 20px;
    font-size: 1.125rem;
    line-height: 1.3333;
    color: var(--grey-black);
    font-weight: 500;
}

.footer-subscribe form {
    order: 3;
}

.footer-subscribe i.icon-envelope {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    top: -20px;
    right: 30px;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(201.65deg, #B274EF 10.27%, #5E3BE1 100%);
    font-size: 30px;
    color: var(--white) !important;
}

.footer-subscribe .relative-holder {
    display: flex;
    align-items: center;
}

.footer-subscribe input,
.footer-subscribe input:focus,
.footer-subscribe input:active,
.footer-subscribe input:focus:active {
    margin-right: 14px;
    border-radius: 10px;
    padding: 23px 29px;
    font-size: 1rem;
}

.footer-subscribe .btn {
    position: static;
    border-radius: 10px;
    padding: 20px 29px;
    background: linear-gradient(180deg, #FF946D 0%, #FF7D68 100%);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2727;
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {
    .footer-subscribe {
        margin-bottom: 0;
        border-radius: 0;
        padding-block: 40px;
        background-image: url('./img/subscribe-mobile-bg.png');
    }
    .footer-subscribe h4 {
        margin-bottom: 15px;
        font-size: 1.375rem !important;
        line-height: 1.27;
    }

    .footer-subscribe .relative-holder {
        flex-wrap: wrap;
    }

    .footer-subscribe input, 
    .footer-subscribe input:focus, 
    .footer-subscribe input:active, 
    .footer-subscribe input:focus:active {
        margin-bottom: 15px;
        margin-right: 0;
        font-size: 16px;
        padding: 18px 20px;
    }

    .footer-subscribe .btn {
        width: 100%;
        padding-block: 12px;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .footer-subscribe i.icon-envelope {
        width: 46px;
        height: 46px;
        font-size: 1.375rem;
    }
}

/* ==========
Widget
========== */
.widget_widget_latest_coupons ul li {
    margin-bottom: 0;
    padding: 10px 0px;
}
.widget_widget_latest_coupons li:not(:last-child) {
    border-bottom: 1px solid #DDE2EC;
}
.widget_widget_latest_coupons li a:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    width: 150px;
}

.widget_widget_latest_coupons .widget-content li img {
    max-height: 100px;
    width: auto;
}

.widget_widget_latest_coupons .continue-read {
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .widget_widget_latest_coupons li a:first-child {
        flex: 0 0 90px;
        width: 90px;
    }
    .widget_widget_latest_coupons ul li {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        text-align: left;
    }
}
 
/* ==========
Footer
========== */
.copyrights {
    background-color: var(--body-bg);
    font-size: 16px;
}
.copyrights .logo {
    display: block;
    width: 100%;
    max-width: 333px;
}

.copyrights .nav>li:not(:first-child) {
    margin-left: 70px;
}

.copyrights .nav li a {
    padding-inline: 0;
    font-size: 26px;
    font-family: var(--font-family) !important;
    font-weight: 500;
    color: var(--grey-medium);
}
.copyrights .nav li a:hover {
    background-color: transparent;
    color: var(--black);
}

.copyrights .nav li.current_page_item>a,
.copyrights .nav li.current_page_item>a:visited {
    color: var(--black);
}

.copyrights hr {
    margin-top: 42px;
    margin-bottom: 27px;
    border-top-color: #DDE2EC;
}

@media screen and (max-width: 991px) {
    .copyrights .nav>li:not(:first-child) {
        margin-left: 40px;
    }
}

@media screen and (max-width: 767px) {
    .copyrights hr {
        margin-top: 30px;
        margin-bottom: 25px;
    }

    .copyrights .flex-always {
        align-items: start;
    }

    .copyrights .flex-right a {
        opacity: 1;
    }

    .copyrights .logo {
        max-width: 190px;
        margin-bottom: 10px;
    }

    .copyrights .nav {
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .copyrights .nav > li:last-child > a {
        margin-bottom: 0;
    }

    .copyrights .nav li a {
        font-size: 22px;
    }
    .copyrights .nav>li:not(:first-child) {
        /* margin-left: 0; */
    }

    .copyrights .flex-right-privacy {
        order: -1;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .copyrights .flex-right-privacy  a {
        font-size: 18px;
    }
}


/* ==========
Modal
========== */
.modal-content {
    border-radius: 26px;
    overflow: hidden;
}

.modal .close {
    top: 10px;
    right: 10px;
    background-color: transparent;
    font-size: 3rem;
    font-weight: 300;
    color: var(--black);
}
.modal-header, .modal-body, .modal-footer {
    border: none;
}

.modal-header {
    border-bottom: none;
    padding-top: 30px;
}

.modal-header h4 {
    font-size: 1.25rem !important;
    margin-top: 25px;
    line-height: 1.25;
}

.coupon-code-copied,
.coupon-code-manual {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 15px;
    color: #000;
}
input.coupon-code-modal, input.coupon-code-modal:focus, input.coupon-code-modal:hover, input.coupon-code-modal:active, input.coupon-code-modal:focus:active, a.coupon-code-modal, a.coupon-code-modal:visited, a.coupon-code-modal:hover, a.coupon-code-modal:focus, a.coupon-code-modal:focus:active {
    display: block;
    width: 100%;
    padding-block: 8px;
    background: var(--grey-light);
    opacity: 0.8;
    color: #000;
    font-size: 1.375rem;
    border: 1px solid var(--grey);
}

.modal a.visit-store {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    background: linear-gradient(180deg, #FF946D 0%, #FF7D68 100%);
    font-size: 1.25rem;
    z-index: 10;
    text-align: center;
}

.modal-body-share {
    padding-block: 0;
    text-align: center;
}

.modal-footer > ul {
    flex-direction: column;
}
.modal-footer > ul a {
    text-decoration: underline;
    color: #1a73e8;
}
.modal-footer > ul a:hover {
    text-decoration: none;
    color: #67a1ff;
}

@media screen and (max-width: 767px) {
    .modal-header {
        padding: 20px 15px 0;
    }
    .modal-header h4 {
        font-size: 1.125rem !important;
    }
}

/* =========================== OLD STYLES =========================== */


/*-----all list-----*/
/* .coupon_bdgs-expire {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 5px;
    align-items: flex-start;
} */

/* .coupon_bdgs-expire .badges {
    margin-right: auto;
} */

.coupon_bdgs-expire .expire {
    position: unset;
}

.coupon-grid .coupon_bdgs-expire .expire {
    margin-right: 0;
}

.coupon-box.coupon-list .flex-middle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

/* .coupon-box.coupon-list .flex-middle .scrtscpns-coupon-box-header {
    max-width: 63%;
    min-width: 60%;
} */

.coupon-box.coupon-list .flex-middle .coupon-top-meta {
    max-width: 40%;
    min-width: 30%;
    margin: auto 0;
}

.coupon-box.coupon-list .flex-middle .coupon-top-meta li {
    padding-left: 0;
}

.taxonomy-header h1 {
    font-size: 32px;
}

.taxonomy-header h4 {
    font-size: 18px;
}

.coupon-box.coupon-list .coupon_bdgs-expire .coupon-box_header-overall-rating,
.coupon-box.coupon-grid .coupon-box_header-overall-rating,
.coupon-box.coupon-list .flex-right .coupon-box_header-overall-rating,
.coupon-box.coupon-list .flex-left .coupon-box_header-overall-rating {
    width: 50px;
    height: 50px;
    text-align: center;
    background: #FCAF17;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 2px;
}

.coupon-box.coupon-list .flex-right .coupon-box_header-overall-rating {
    margin-left: auto;
    margin-bottom: 50px;
}

.coupon-box.coupon-list .flex-left .coupon-box_header-overall-rating {
    display: none;
}

.coupon-box.coupon-list .flex-right {
    align-self: unset;
}

.coupon-box.coupon-grid .badge-types {
    position: unset;
}

.coupon-list .expire {
    font-size: 12px;
}

@media (max-width: 991px) {
    .coupon-box.coupon-list .flex-middle {
        display: block;
    }

    .coupon-box.coupon-list .flex-middle .scrtscpns-coupon-box-header {
        max-width: 100%;
    }

    .coupon-box.coupon-list .flex-middle .coupon-top-meta {
        max-width: unset;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .coupon-box.coupon-list .flex-middle {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .coupon-box.coupon-list .flex-middle .scrtscpns-coupon-box-header {
        max-width: 100%;
        min-width: 100%;
    }

    .taxonomy-header h1 {
        font-size: 26px;
    }

    .coupon-box.coupon-list .flex-left {
        position: relative;
    }

    .coupon-box.coupon-list .flex-left .coupon-box_header-overall-rating {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
    }

    .coupon-box.coupon-list .flex-right .coupon-box_header-overall-rating {
        display: none;
    }

}

@media (max-width: 600px) {
    .coupon-box.coupon-list .flex-middle {
        display: block;
    }

    .coupon-box.coupon-list .flex-middle .scrtscpns-coupon-box-header {
        max-width: 100%;
    }

    .coupon-box.coupon-list .flex-middle .coupon-top-meta {
        max-width: unset;
        margin-bottom: 15px;
    }
}

/*-----all list-----*/

/*------Category Page--------*/

.tax-coupon-category .taxonomy-header .white-block-content .category-info ul,
.tax-coupon-category .coupon-box_footer ul,
.coupon-list .full-description ul {
    list-style: none;
    padding-left: 20px;
}

.tax-coupon-category .taxonomy-header .white-block-content .category-info ul li,
.tax-coupon-category .coupon-box_footer ul li,
.coupon-list .full-description ul li {
    position: relative;
}

.tax-coupon-category .taxonomy-header .white-block-content .category-info ul li:before,
.tax-coupon-category .coupon-box_footer ul li:before,
.coupon-list .full-description ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("/wp-content/themes/couponis-child/img/tick.svg") no-repeat;
    position: absolute;
    left: -21px;
    top: 5px;
}

.tax-coupon-category .has-icon .category-info {
    margin-left: 0;
}

/* .tax-coupon-category .taxonomy-header .white-block-content,
.tax-coupon-store .taxonomy-header .white-block-content {
    display: flex;
    flex-direction: column;
} */

/* .taxonomy-header .white-block-content {
    webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
} */

/* .tax-coupon-category .verified-coupons-info p,
.tax-coupon-store .verified-coupons-info p {
    margin-top: 10px;
    margin-bottom: 0;
    width: fit-content;
    margin-left: auto;
} */

/* .top-header .navbar-default .navbar-nav .open .dropdown-menu > li > a, .top-header .navbar-default .navbar-nav li a {
    color: #137D82;
} */

/* @media (max-width: 991px) {

    .top-header .navbar-default .navbar-nav .open .dropdown-menu>li>a,
    .top-header .navbar-default .navbar-nav li a {
        font-size: 14px;
    }

    .top-header .nav-paste {
        margin-top: 15px;
    }

    .top-header a.navbar-toggle {
        text-align: left;
    }
} */

@media (max-width: 600px) {

    .tax-coupon-category .has-icon .single-tax-action {
        margin-left: 0px;
    }
}

/*------Category Page--------*/

/*------Store Page--------*/
/* .tax-coupon-store main,
.tax-coupon-category main {
    margin-top: 20px;
} */

/* .tax-coupon-store .coupon-box_footer ul,
.tax-coupon-store .storeSummary .store-info ul,
.tax-coupon-store .storeAbout .store-info ul {
    padding-left: 20px;
}

.tax-coupon-store .coupon-box_footer ul li,
.tax-coupon-store .storeSummary .store-info ul li,
.tax-coupon-store .storeAbout .store-info ul li {
    position: relative;
    list-style: none;
}

.tax-coupon-store .coupon-box_footer ul li:before,
.tax-coupon-store .storeSummary .store-info ul li:before,
.tax-coupon-store .storeAbout .store-info ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("/wp-content/themes/couponis-child/img/tick.svg") no-repeat;
    position: absolute;
    left: -21px;
    top: 7px;
} */

.storeSummary .single-tax-action,
.storeAbout .single-tax-action {
    display: none;
}

/* @media screen and (max-width: 991px) {
    .tax-coupon-store .verified-coupons-info p {
        margin-right: 100px;
    }

    .tax-coupon-store a.visit-store {
        bottom: -33px;
    }
} */

/* @media screen and (max-width: 600px) {
    .tax-coupon-store .verified-coupons-info p {
        margin-right: unset;
    }
} */

/*------Store Page--------*/

/*------Coupon Grid--------*/

/* .badges {
    font-size: 11px;
} */

/* .coupon-grid {
    padding: 10px 25px 10px;
} */

.coupon-box_header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coupon-box_header-logo img {
    margin: 0 auto;
}

.coupon-box_header-logo .coupon-box_header-logo-link {
    margin: 10px 0;
}

.coupon-box_header-logo .coupon-action-button {
    display: flex;
    width: 150px;
    /* height: 150px; */
    flex-direction: row;
    align-items: center;
}

/* .coupon-box.coupon-grid .coupon-box-header {
    display: flex;
    flex-direction: row;
    position: relative;
} */

.coupon-box.coupon-grid .coupon-box_header-overall-rating {
    position: absolute;
    top: 0;
    right: 0;
}

.tax-coupon-category .coupon-grid .coupon-box_header-title {
    margin-left: 25px;
}

/* .coupon-grid .coupon-box_header-title {
    max-width: 50%;
} */

/* .coupon-box_header-title h4 {
    font-size: 24px;
    white-space: normal;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 34px;
} */

.coupon-box_header-title .coupon-box_header-subtitle {
    font-size: 18px;
    margin-bottom: 7px;
    /*line-height: 33px;*/
}

.coupon-box_header-title .coupon-top-meta {
    flex-direction: column;
}

.coupon-box_footer {
    margin-top: 18px;
}

.coupon-box_header-title .coupon-top-meta li {
    margin-bottom: 15px;
}

.coupon-box_header-title .coupon-top-meta li:last-child {
    margin-bottom: 0;
}

.coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-status,
.coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-status p {
    margin-bottom: 5px;
    margin-top: 2px;
}

li.coupon-box_header-list-status p img {
    height: 14px;
}

.coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 8px;
}

.coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-rating span {
    margin-left: 15px;
}

.coupon-box_header-list-rating-star img {
    height: 18px;
}


.main-listing .white-block:hover,
.main-listing .white-block:hover {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    transition: .3s;
}

.tax-coupon-store .coupon-grid .coupon-box_header-logo a {
    margin: 0 auto;
    border: 1px solid #eee;
    margin-right: 25px;
}

.tax-coupon-store .coupon-grid .coupon-box_header-logo a:hover {
    border: 1px solid #1ab1b7;
}

.coupon-grid_feature-image a {
    border: none;
    width: auto;
    margin: 0px;
    height: 150px;
    display: block;
    position: relative;
    border-bottom: 1px solid #eee;
}

.coupon-grid_feature-image a img {
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 100%;
    width: auto;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.coupon-grid_feature-image a:hover {
    border-color: #1ab1b7;
}

/* .coupon-box_header-logo .coupon-grid_feature-image-cat,
.tax-coupon-store .coupon-list .coupon-box_header-logo a {
    display: flex;
    width: 150px;
    height: 150px;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
} */

.coupon-box_header-logo .coupon-grid_feature-image-cat .coupon-image {
    width: 100%;
    height: 150px;
    border: 1px solid #eee;
}

.coupon-box_header-logo .coupon-grid_feature-image-cat .coupon-image:hover {
    border-color: #1ab1b7;
}

/* .coupon-box_header-logo .coupon-grid_feature-image-cat a,
.coupon-list .coupon-box_header-logo a {
    border: 1px solid #eee;
} */

/* .coupon-box_header-logo .coupon-grid_feature-image-cat a:hover,
.coupon-list .coupon-box_header-logo a:hover {
    border: 1px solid #1ab1b7;
} */

.coupon-grid_feature-image-cat img {
    margin: 0 auto;
}

.coupon-grid .expire {
    padding: 5px 0 5px 10px;
}

.expired-overlay {
    background: rgba(255, 255, 255, 0.7);
}

/* .coupon-box.coupon-list .flex-left {
    margin-right: 20px;
} */

.coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-rating span {
    margin-left: 15px;
}

@media (max-width: 1200px) {
    .coupon-grid .coupon-box_header-title {
        max-width: 100%;
    }

    .coupon-box.coupon-grid .coupon_bdgs-expire {
        flex-direction: column;
        position: relative;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .coupon-box.coupon-grid .coupon_bdgs-expire .expire {
        padding-left: 0;
    }

    .coupon-box.coupon-grid .coupon_bdgs-expire .coupon-box_header-overall-rating {
        top: 0;
    }

    .coupon-box.coupon-grid .coupon_bdgs-expire .coupon-box_header-overall-rating {
        position: absolute;
        top: -15px;
        right: -15px;
    }

    .coupon-grid .coupon-box_header-logo .coupon-action-button {
        width: 100px;
        height: 100px;
    }

    .coupon-grid .coupon-box_header-logo .coupon-grid_feature-image-cat {
        display: flex;
        width: 100px;
        height: 100px;
        flex-direction: row;
        align-items: center;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {

    .tax-coupon-store .coupon-grid .coupon-box_header-logo a {
        margin-right: auto;
    }



    .coupon-grid .coupon-box_header-logo .coupon-grid_feature-image-cat {
        width: 150px;
        height: 150px;
    }

    .coupon-grid .coupon-box_header-logo .coupon-action-button {
        width: 150px;
        height: 150px;
    }

    .coupon-box-header {
        flex-direction: column;
    }

    .coupon-box_header-title {
        margin-left: 0;
        margin-top: 6px;
    }

    .coupon-box_footer-btn {
        max-width: 100%;
    }

    .coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-rating {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 0;
        margin-top: 2px;
    }

    .coupon-box_header-title .coupon-top-meta li.used {
        margin-bottom: 0;
        margin-left: -25px;
    }

    .coupon-box_header-title .coupon-top-meta {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-rating span {
        line-height: 19px;
    }

    .coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-status {
        margin-top: 2px;
        margin-bottom: 2px;
    }

    .coupon-box_header-title .coupon-top-meta li.used {
        margin-left: 0;
        margin-top: 9px;
    }
}

@media (max-width: 768px) {

    .coupon-list .coupon-top-meta {
        position: unset;
    }

    /* .coupon-box.coupon-grid .coupon_bdgs-expire {
        width: 100%;

    } */

    .coupon-box.coupon-grid .coupon-box-header {
        flex-direction: column;
    }

    .coupon-list .flex-right {
        width: 50%;
        margin: 0 auto;
    }

    /* .coupon-list .partial-code,
    .code-text,
    .code-text-full {
        padding: 7px 20px;
    } */

    .coupon-box_header-title {
        margin-left: 0;
        margin-top: 16px;
    }

    .coupon-list .used {
        padding: 0;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .coupon-box.coupon-grid .coupon_bdgs-expire {
        flex-direction: row;
        margin-bottom: 0;
    }

    .coupon-box.coupon-grid .coupon_bdgs-expire .coupon-box_header-overall-rating {
        position: unset;
    }

    .coupon-box.coupon-grid .coupon_bdgs-expire {
        width: 100%;
    }
}

@media (max-width: 766px) {

    .coupon-box-header {
        flex-direction: row;
    }

    .coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-rating {
        flex-direction: row;
        align-items: center;
    }

    .coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-rating span {
        margin-bottom: 0;
    }

    .coupon-box_footer-btn {
        max-width: 50%;
    }

    .coupon-list .used {
        background: unset;
        color: #aaa;
        font-size: 14px;
        text-transform: unset;
    }

    .coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-rating span {
        font-size: 14px;
    }

    .coupon-box_header-title .coupon-top-meta li.used {
        font-size: 14px;
        margin-top: 12px;
    }

    .coupon-box_header-list-rating .coupon-box_header-list-rating-star img {
        height: 18px;
    }

}

@media (max-width: 600px) {

    .coupon-box-header {
        flex-direction: column;
    }

    .coupon-box_footer-btn {
        max-width: 100%;
    }

    .coupon-box_header-title .coupon-top-meta {
        justify-content: flex-start;
    }

    .coupon-list .flex-right {
        width: 100%;
    }

}

@media (max-width: 560px) {

    .coupon-box.coupon-grid .coupon_bdgs-expire {
        flex-direction: row;
    }

    .coupon-box.coupon-grid .coupon_bdgs-expire .coupon-box_header-overall-rating {
        position: absolute;
    }
}

@media (max-width: 480px) {
    .coupon-box.coupon-grid .coupon_bdgs-expire {
        flex-direction: column;
    }

    /* .coupon-grid {
        padding: 10px;
    } */

    .coupon-box_header-title .coupon-top-meta li.coupon-box_header-list-rating span {
        margin-right: 5px;
    }

    .coupon-box.coupon-grid .coupon_bdgs-expire .coupon-box_header-overall-rating {
        top: 0;
        right: 0;
    }
}

@media (max-width: 414px) {
    .top-header .flex-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .top-header .flex-wrap .flex-left {
        margin-bottom: 0;
    }

    .top-header .flex-wrap .flex-right {
        margin-top: 0;
        width: unset;
    }

    .top-header a.navbar-toggle {
        text-align: right;
    }

}

@media screen and (max-width: 380px) {
    .coupon-list .used {
        padding: 0;
        line-height: 15px;
    }

    .coupon-list .used {
        margin-top: 3px;
    }
}

@media (max-width: 360px) {
    .coupon-box.coupon-grid .coupon_bdgs-expire .expire {
        font-size: 11px;
    }
}

/*------Coupon Grid--------*/

/*------Coupon List--------*/
ul.list-unstyled.list-inline.coupon-top-meta.list-descr-mobile {
    display: none;
}

.coupon-box .flex-left,
.coupon-box .flex-left img {
    margin: 0 auto;
}

/* .coupon-list .flex-middle h4 {
    margin-bottom: 0;
} */

.coupon-list .coupon-box-description {
    margin-top: 1px;
    margin-bottom: 7px;
}

.coupon-box .flex-right .coupon-box_header-logo-link {
    width: fit-content;
    margin: 15px auto 0;
    display: block;
}

.coupon-list .flex-middle ul {
    display: flex;
    flex-direction: column;
}

.coupon-list .coupon-box_header-subtitle {
    margin-top: 2px;
    margin-bottom: 10px;
}

.coupon-list .scrtscpns-coupon-box-header {
    margin-bottom: 15px;
}

.coupon-list .coupon-box_header-list-status p {
    margin-bottom: 9px;
}

/* 
.coupon-list .coupon-box_header-list-rating {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
} */

.coupon-list .coupon-box_header-list-rating span {
    margin-left: 15px;
}

/* .coupon-list {
    padding: 10px 25px 10px;
} */

.coupon-box.coupon-list .white-block-content {
    padding: 0 !important;
}

/* .coupon-list .scrtscpns-coupon-box-header h4 {
    font-size: 24px;
} */

/* .coupon-list .scrtscpns-coupon-box-header .coupon-box_header-subtitle {
    font-size: 18px;
} */

@media screen and (max-width: 991px) {
    ul.list-unstyled.list-inline.coupon-top-meta.list-descr-desktop {
        display: none;
    }

    ul.list-unstyled.list-inline.coupon-top-meta.list-descr-mobile {
        display: block;
    }

    .scrtscpns-coupon-box-header {
        display: flex;
        flex-direction: column;
    }

    .scrtscpns-coupon-box-header h4 {
        order: 1;
    }

    .scrtscpns-coupon-box-header .coupon-box_header-subtitle {
        order: 2;
    }

    .scrtscpns-coupon-box-header ul {
        order: 3;
    }

    .scrtscpns-coupon-box-header .coupon-box-description {
        order: 4;
    }
}

@media (max-width: 768px) {
    .coupon-list .scrtscpns-coupon-box-header {
        margin-top: 17px;
    }

    .coupon-list .flex-middle h4 {
        margin-top: 0;
    }

    .coupon-list .used,
    .coupon-list .expire {
        background: transparent;
        color: #aaa;
        text-transform: none;
    }

    .coupon_bdgs-expire {
        position: relative;
        width: 100%;
    }

    .coupon-box.coupon-list .coupon_bdgs-expire .coupon-box_header-overall-rating {
        position: absolute;
        top: 0;
        right: -50px;
    }

    .coupon-list .expire {
        margin-top: -2px;
        margin-right: 0;
        padding-right: 0;
    }

    .coupon-box.coupon-list .flex-left {
        margin-right: 0;
    }
}

@media (max-width: 766px) {
    .coupon-box.coupon-list .flex-left {
        margin-right: 0px;
    }

    .coupon-list .coupon-box_header-list-rating {
        margin-bottom: 4px;
    }

    .coupon-list .used {
        padding-left: 0;
    }
}

@media (max-width: 560px) {
    .coupon_bdgs-expire {
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .coupon-list .expire {
        margin-top: 0;
        padding-left: 0;
        margin-left: unset;
    }

}

@media (max-width: 480px) {

    .coupon-list .badge-types {
        margin-bottom: 0;
    }

    .coupon-list {
        padding: 10px;
    }

    .coupon-box.coupon-list .coupon_bdgs-expire .coupon-box_header-overall-rating {
        right: -35px;
    }
}

@media (max-width: 360px) {
    .coupon-list .expire {
        font-size: 11px;
    }
}

/*------Coupon List--------*/

/*-----BADGES-----*/
/* .coupon-grid .badge-types {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    color: #fff;
    background-color: #1ab1b7;
} */

/* .coupon-list .badge-types {
    position: relative;
    z-index: 1;
    color: #fff;
    background-color: #1ab1b7;
    width: fit-content;
    height: fit-content;
} */

.coupon-grid .blck-friday,
.coupon-list .blck-friday {
    background-color: #000;
}

.top-ten-cbd .coupon-list .blck-friday:after {
    border: calc(40px / 2) solid #000 !important;
}

.coupon-grid .most-popular,
.coupon-list .most-popular {
    background-color: #F9C816;
}

.top-ten-cbd .coupon-list .most-popular:after {
    border: calc(40px / 2) solid #F9C816 !important;
}

.coupon-grid .cyber-monday,
.coupon-list .cyber-monday {
    background-color: #ABABAB;
}

.top-ten-cbd .coupon-list .cyber-monday:after {
    border: calc(40px / 2) solid #ABABAB !important;
}

.coupon-grid .memorial-day,
.coupon-grid .labor-day,
.coupon-list .memorial-day,
.coupon-list .labor-day {
    background-color: #DD0000;
}

.top-ten-cbd .coupon-list .memorial-day:after,
.top-ten-cbd .coupon-list .labor-day:after {
    border: calc(40px / 2) solid #DD0000 !important;
}

.coupon-grid .independence-day,
.coupon-list .independence-day {
    background-color: #3F82F8;
}

.top-ten-cbd .coupon-list .independence-day:after {
    border: calc(40px / 2) solid #3F82F8 !important;
}

.coupon-grid .patrick-day,
.coupon-grid .christmas-sale,
.coupon-list .patrick-day,
.coupon-list .christmas-sale {
    background-color: #013220;
}

.top-ten-cbd .coupon-list .patrick-day:after,
.top-ten-cbd .coupon-list .christmas-sale:after {
    border: calc(40px / 2) solid #013220 !important;
}

.coupon-grid .easter-day,
.coupon-list .easter-day {
    background-color: #0B6623;
}

.top-ten-cbd .coupon-list .easter-day:after {
    border: calc(40px / 2) solid #0B6623 !important;
}

.coupon-grid .mother-day,
.coupon-list .mother-day {
    background-color: #ff726f;
}

.top-ten-cbd .coupon-list .mother-day:after {
    border: calc(40px / 2) solid #ff726f !important;
}

.coupon-grid .father-day,
.coupon-list .father-day {
    background-color: #674941;
}

.top-ten-cbd .coupon-list .father-day:after {
    border: calc(40px / 2) solid #674941 !important;
}

.coupon-grid .valentine-sale,
.coupon-list.valentine-sale {
    background-color: #ffc0cb;
}

.top-ten-cbd .coupon-list.valentine-sale:after {
    border: calc(40px / 2) solid #ffc0cb !important;
}

.coupon-grid .halloween-day,
.coupon-grid .thanksgiving-day,
.coupon-list .halloween-day,
.coupon-list .thanksgiving-day {
    background-color: #FF6600;
}

.top-ten-cbd .coupon-list .halloween-day:after,
.top-ten-cbd .coupon-list .thanksgiving-day:after {
    border: calc(40px / 2) solid #FF6600 !important;
}

/*-----BADGES-----*/

#showCode .store-image {
    height: 150px;
    max-width: 150px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
}

#showCode .store-image a {
    margin: 0 auto;
}

a.coupon-code-modal.sale-act-btn {
    margin-bottom: 20px;
}

input.coupon-code-modal,
input.coupon-code-modal:focus,
input.coupon-code-modal:hover,
input.coupon-code-modal:active,
input.coupon-code-modal:focus:active,
a.coupon-code-modal,
a.coupon-code-modal:visited,
a.coupon-code-modal:hover,
a.coupon-code-modal:focus,
a.coupon-code-modal:focus:active {
    margin: 0px auto 20px;
}

.popup-image_logo-site {
    height: 150px;
    display: flex;
    align-items: center;
}

.popup-image_logo-site img {
    margin: 0 auto;
}

/* .modal a.visit-store {
    position: unset;
    display: block;
    max-width: fit-content;
    margin: 0 auto;
    color: #fff;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 11px;
    font-size: 14px;
    border-radius: 2px;
}

a.visit-store:hover {
    background-color: rgb(90, 115, 132);
} */

.modal-body .after-copy a {
    color: #6666ff;
}

/*-----ToolTip-----*/
/* Tooltip container */
.secret-tooltip {
    position: relative;
    margin-bottom: 20px;
    text-align: right;
}

.secret-tooltip_btn {
    cursor: pointer;
}

/* Tooltip text */
.secret-tooltip .secret-tooltip_text {
    visibility: hidden;
    width: 450px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 20px 10px 5px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 3;
    /*top: 125%;*/
    bottom: 30px;
    right: 0;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
}

.secret-tooltip .secret-tooltip_text p {
    margin-bottom: 0;
    font-size: 12px;
}

/* Tooltip arrow */
.secret-tooltip .secret-tooltip_text::after {
    content: "";
    position: absolute;
    /*bottom: 100%;*/
    top: 100%;
    right: 65px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    /*border-color: #555 transparent transparent transparent;*/
    border-color: transparent transparent #555 transparent;
    transform: rotate(180deg);
}

/* Show the tooltip text when you mouse over the tooltip container */
/*.secret-tooltip:hover .secret-tooltip_text {*/
/*!*visibility: visible;*!*/
/*!*opacity: 1;*!*/
/*transition: opacity 0.3s;*/
/*}*/

.secret-tooltip_text-active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
}

.secret-tooltip .secret-tooltip_text span {
    position: relative;
}

.secret-tooltip .secret-tooltip_text span:after {
    position: absolute;
    top: -15px;
    right: -10px;
    content: 'x';
    font-size: 18px;
    width: 20px;
    height: 20px;
    line-height: .8;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .secret-tooltip .secret-tooltip_text {
        width: 100%;
    }
}

/*-----ToolTip-----*/


/* Top 10 CBD page */
/* .top-ten-cbd .coupon-list {
    padding-bottom: 15px;
} */

/* .top-ten-cbd .coupon-list .flex-wrap {
    align-items: flex-start;
} */

/* .top-ten-cbd .taxonomy-header.white-block {
    box-shadow: none;
    margin-bottom: 10px !important;
} */

/* .top-ten-cbd .taxonomy-header .white-block-content {
    box-shadow: none;
    padding: 10px 15px !important;
    position: relative;
} */

/* .top-ten-cbd .taxonomy-header .single-tax-action {
    display: none;
} */

/* .top-ten-cbd .secret-tooltip {
    margin-bottom: 10px;
} */

/* .top-ten-cbd .secret-tooltip .secret-tooltip_btn {
    color: rgb(44, 53, 191);
    font-size: 12px;
    margin-bottom: 0;
} */

/* .top-ten-cbd .coupon-list .white-block-content .coupon_bdgs-expire .badge-wrapper {
    height: 30px;
} */

/* .coupon-list .white-block-content .coupon_bdgs-expire .badge-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 5px;
    align-items: flex-start;
    width: 100%;
} */

/* .top-ten-cbd .coupon-list .white-block-content .badge-types {
    border-radius: 0;
    font-weight: 600;
    height: auto;
    left: 0;
    line-height: 16px;
    padding: calc(40px / 2 - 16px / 2) 8px calc(40px / 2 - 16px / 2) calc(40px / 2 - 16px / 2);
    position: absolute;
    top: 0;
    width: auto;
} */

/* .top-ten-cbd .coupon-list .white-block-content .badge-types:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: calc(40px / 2) solid #1ab1b7;
    position: absolute;
    right: calc(40px / 2 * -1) !important;
    top: 0;
    border-top-width: 40px !important;
    border-left-width: 0 !important;
    border-bottom-color: transparent !important;
    border-right-color: transparent !important;
} */

/* .top-ten-cbd .coupon-list .expire-wrapper.mobile-expire .expire {
    display: none;
} */

/* .top-ten-cbd .coupon-list .expire-wrapper.desktop-expire .expire {
    display: block;
    min-width: 250px;
    text-align: right;
} */

/* .top-ten-cbd .coupon-list .coupon-box_header-logo a {
    border: none;
} */

/* .top-ten-cbd .coupon-box.coupon-list .flex-left {
    width: 25%;
} */

/* .top-ten-cbd .coupon-box.coupon-list .coupon-top-meta {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-width: 30%;
    margin: 10px auto 0;
    text-align: center;
    width: 100%;
} */

/* .top-ten-cbd .coupon-box_header-logo .coupon-grid_feature-image-cat {
    display: block;
    height: auto;
    width: auto;
} */

/* .top-ten-cbd .coupon-box.coupon-list .flex-left img {
    width: unset !important;
} */

/* .top-ten-cbd .coupon-box.coupon-list .coupon-box_header-logo {
    display: block;
} */

/* .top-ten-cbd .coupon-box_header-logo .coupon-action-button {
    height: auto;
    min-height: 120px;
    width: auto;
} */

/* .top-ten-cbd .coupon-box.coupon-list .coupon-box_header-logo .coupon-grid_feature-image-cat img {
    width: 120px !important;
} */

/* .top-ten-cbd .coupon-box.coupon-list .coupon-box_header-list-rating .coupon-box_header-list-rating-star {
    margin: 0 auto;
} */

/* .top-ten-cbd .coupon-box.coupon-list .flex-middle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 35%;
} */

/* .top-ten-cbd .coupon-box.coupon-list .flex-middle .scrtscpns-coupon-box-header {
    max-width: 100%;
    min-width: 60%;
    margin: 0 0 0 2%;
} */

/* .top-ten-cbd .coupon-box.coupon-list .coupon-box_header-overall-rating-wrapper {
    width: 20%;
} */

/* .top-ten-cbd .coupon-box.coupon-list .coupon-box_header-overall-rating {
    width: 61px;
    height: 61px;
    text-align: center;
    background: #FCAF17;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    border-radius: 2px;
    margin: 0 auto;
} */

/* .top-ten-cbd .coupon-box .flex-right {
    width: 220px;
} */

/* .top-ten-cbd .coupon-action-button.header-alike {
    font-size: 16px;
} */

/* .coupon-action-button.header-alike:hover {
    border-color: #1ab1b7;
} */

/* .coupon-action-button.header-alike:hover .code-text,
.coupon-action-button.header-alike:hover .code-text-full {
    background-color: #1ab1b7;
} */

.top-ten-cbd .coupon-visit-site-action-button {
    border: 2px solid #fd5522;
    border-radius: 2px;
    display: block;
    position: relative;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.top-ten-cbd .coupon-visit-site-action-button:hover {
    border-color: #1ab1b7;
}

.top-ten-cbd .coupon-visit-site-action-button:hover .code-text-full {
    background-color: #1ab1b7;
}

.top-ten-cbd .coupon-visit-site-action-button .code-text-full {
    background-color: #fd5522;
    color: #ffffff;
    padding: 10px 20px;
    display: block;
    text-align: center;
}

/* .coupon-activate-deal-action-button {
    border: 2px solid #FFA619;
    border-radius: 2px;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    text-align: left;
} */

.coupon-activate-deal-action-button:hover {
    border-color: #1ab1b7;
}

.coupon-activate-deal-action-button:hover .code-text-full {
    background-color: #1ab1b7;
}

/* .top-ten-cbd .code-text,
.top-ten-cbd .code-text-full {
    background-color: #fd5522;
} */

.top-ten-cbd .flex-right .visit-brand-link {
    color: rgb(44, 53, 191);
}

.top-ten-cbd .flex-right .visit-brand-link:hover {
    text-decoration: underline;
}

.top-ten-cbd .flex-right .vs-coupon-code-wrapper {
    border: 2px dashed #333;
    margin-top: 5px;
    padding: 5px 10px;
    position: relative;
    text-align: center;
}

.top-ten-cbd .flex-right .vs-coupon-code-wrapper .vs-copy-code {
    cursor: pointer;
    position: absolute;
    right: -2px;
    bottom: -2px;
    display: block;
    border: 1px dashed #333;
    border-width: 1px 0px 0px 1px;
    height: 30px;
    width: 30px;
}

.top-ten-cbd .flex-right .vs-coupon-code-wrapper .vs-copy-code .fa-copy {
    color: #666;
}

.top-ten-cbd .flex-right .vs-coupon-code-wrapper .vs-copy-code .fa-check {
    color: #3FE1AC;
}

.top-ten-cbd .flex-right .vs-coupon-code-wrapper a {
    text-decoration: none !important;
}

.top-ten-cbd .flex-right .vs-coupon-code-wrapper span {
    color: #333;
    display: block;
    width: 100%;
}

.top-ten-cbd .flex-right .vs-coupon-code-wrapper .vs-coupon-code-label {
    font-size: 14px;
}

.top-ten-cbd .flex-right .vs-coupon-code-wrapper .vs-coupon-code {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    background: none;
    border: none;
    color: #333;
    box-shadow: none;
    outline: none;
}

@media screen and (min-width: 768px) {
    .top-ten-cbd .container {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .top-ten-cbd .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .top-ten-cbd .container {
        width: 1170px;
    }
}

@media screen and (max-width: 768px) {
    /* .top-ten-cbd .coupon-list {
        padding-top: 40px;
    } */

    .top-ten-cbd .coupon-list .flex-wrap {
        position: relative;
    }

    .top-ten-cbd .coupon-box.coupon-list .flex-left,
    .top-ten-cbd .coupon-box.coupon-list .flex-middle {
        width: 100%;
    }

    .top-ten-cbd .coupon-box.coupon-list .flex-middle {
        margin: 10px auto;
    }

    .top-ten-cbd .coupon-box.coupon-list .coupon-content-excerpt .full-description {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-content: center;
        align-items: center;
    }

    .top-ten-cbd .coupon-box.coupon-list .coupon-content-excerpt .full-description ul {
        flex: 0 1 auto;
        align-self: auto;
    }

    .top-ten-cbd .coupon-box.coupon-list .flex-middle .scrtscpns-coupon-box-header {
        position: relative;
        margin: 0 auto;
    }

    .top-ten-cbd .coupon-list .flex-middle h4,
    .top-ten-cbd .coupon-list .scrtscpns-coupon-box-header .coupon-box_header-subtitle {
        text-align: center;
    }

    .top-ten-cbd .coupon-box.coupon-list .coupon-box_header-overall-rating-wrapper {
        position: absolute;
        right: -25px;
        top: -40px;
        width: auto;
    }

    .top-ten-cbd .coupon-box.coupon-list .coupon-box_header-overall-rating {
        border-radius: 2px 0 2px 2px;
    }

    /* .top-ten-cbd .coupon-list .white-block-content .coupon_bdgs-expire {
        display: block;
        left: 0;
        min-width: 35%;
        position: absolute;
        top: 0;
        width: auto;
    } */

    /* .top-ten-cbd .coupon-list .white-block-content .coupon_bdgs-expire .badge-wrapper {
        display: block;
        width: auto;
    } */

    .top-ten-cbd .coupon-list .expire-wrapper.desktop-expire .expire {
        display: none;
    }

    .top-ten-cbd .coupon-list .expire-wrapper.mobile-expire .expire {
        display: block;
        margin-top: 10px;
        padding-left: 0;
        position: static;
        text-align: center;
    }

    .top-ten-cbd .white-block.coupon-box.coupon-list .coupon-box-description .coupon-content-excerpt .full-description {
        flex-wrap: wrap;
    }

    .top-ten-cbd .white-block.coupon-box.coupon-list .coupon-box-description .coupon-content-excerpt .full-description p {
        width: 60%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    /* .top-ten-cbd .coupon-list .white-block-content .coupon_bdgs-expire {
        max-width: 79%;
        min-width: 79%;
    } */

    /* .top-ten-cbd .coupon-box.coupon-list .coupon-box_header-overall-rating-wrapper {
        right: -10px;
    }

    .top-ten-cbd .coupon-action-button.header-alike span {
        padding: 7px 20px;
    }

    .top-ten-cbd .coupon-action-button.header-alike span.code-text {
        width: 80%;
    } */
}
