.dealBox {
    position: relative;
    display: block;
    margin: 0 6px 12px;
    padding: 20px 20px 60px;
    border: 1px solid #dfdfdf;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
    font-size: 1em;
    text-align: left;
    /* overflow: hidden; */
}

@media (max-width: 540px) {
    .dealBox {
        width: calc(100% - 16px);
        margin: 0 auto 12px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border: 1px solid #dfdfdf;
    }
}

@media (min-width: 541px) and (max-width: 768px) {
    .dealBox {
        width: calc(50% - 16px);
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .dealBox {
        width: calc(33% - 16px);
    }
}

@media (min-width: 1281px) and (max-width: 1648px) {
    .dealBox {
        width: calc(25% - 16px);
    }
}

@media (min-width: 1649px) {
    .dealBox {
        width: calc(25% - 16px);
    }
}

.dealBox sup {
    font-size: 0.4em;
    line-height: 0;
}

@media (max-width: 540px) {
    .dealBox .dealImg-wrap {
        width: 40%;
        align-self: center;
        padding: 0 10px 0 0;
    }
}

@media (max-width: 540px) {
    .dealBox .dealInfo-wrap {
        width: 60%;
    }
}

.dealLink-wrap {
    display: block;
    position: absolute;
    width: calc(100% - 40px);
    bottom: 20px;
    margin: 2px auto 0;
    text-align: center;
}

.dealLink-wrap button {
    display: block;
    width: 100%;
    border: 1px solid #2db5da;
    /* background: linear-gradient(180deg, #d61c51 0%, #d61c51 100%); */
    background: #2db5da;
    padding: 0.5em 1.5em;
    margin: 0px;
    border-radius: 5px;
    font-family: "Open Sans", sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.dealLink-wrap button:hover {
    background: #2db5dae0;
}

.dealImg {
    display: block;
    width: 100%;
    margin: 0 auto 10px;
}

.dealTitle {
    margin: 0 0 0.5em;
    font-family: "Open Sans", sans-serif;
    font-size: 1em;
    font-weight: 700;
    text-align: left;
    position: relative;
    /* z-index: 50; */
}

ul.dealSpec {
    display: block;
    max-width: 400px;
    padding: 0;
    margin: 0 16px 1em;
    list-style: disc;
    list-style-position: outside;
    font-size: 0.85em;
}

ul.dealSpec li {
    list-style: disc;
    line-height: 1.25;
    margin: 0.25em 0;
    text-align: left;
}

.dealMessage {
    margin: 1em auto 0.875em;
    font-size: 1.25em;
    font-weight: 700;
}

.dealTags {
    display: none;
}

ul.dealTagNav {
    list-style: none;
    margin: 1.25em auto 0;
    padding: 0 1em;
    text-align: center;
}

ul.dealTagNav li {
    display: inline-block;
    margin: 0.25em;
}

ul.dealTagNav li button {
    padding: 0.625em 1.5em;
    background: #ffffff;
    border: 2px solid #dfdfdf;
    border-radius: 2em;
    font-family: "Open Sans", sans-serif;
    font-size: 1em;
    cursor: pointer;
    opacity: 0.625;
}

ul.dealTagNav li button:hover,
ul.dealTagNav li button.active {
    background: #ffffff;
    border: 2px solid #999999;
    opacity: 1;
    box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0.25);
}


.shop-overlay-bg {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 250;
}

.shop-overlay-wrap {
    position: relative;
    z-index: 500;
    width: 100%;
    margin: 0 auto;
}

button.close-overlay {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0;
    background: none;
    cursor: pointer;
    border: none;
    z-index: 900;
    opacity: 0.25;
}

button.close-overlay:hover {
    opacity: 1;
    transition: all 0.25s ease-out;
}

button.close-overlay img {
    display: block;
    width: 30px;
}

.noscroll {
    overflow: hidden;
}

.shop-overlay {
    position: fixed;
    overflow-y: scroll;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(40, 40, 40, 0.85);
    color: #000;
}

@media (min-width: 961px) {
    .shop-overlay {
        padding: 20px 0;
    }
}

.shopBox {
    position: relative;
    max-width: 420px;
    width: calc(100% - 20px);
    margin: 30px auto;
    padding: 40px 20px 40px;
    background: #ffffff;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
    overflow: hidden;
}

.shopNow-label {
    margin: 30px 0 0;
    padding: 0 0 5px;
    border-bottom: 1px solid #dfdfdf;
    font-weight: 700;
    font-size: 0.75em;
}

.shopNow-list {
    background-color: #ffffff;
    width: 100%;
    height: calc(100% - 4em);
}

.shopNow-list ul {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shopNow-list ul li {
    display: table;
    width: 100%;
    border-bottom: 1px solid #dfdfdf;
}

.shopNow-list ul li a {
    display: table-row;
    width: 100%;
    color: #101010;
    text-decoration: none;
}

.shopNow-list ul li a:hover {
    background: #eeeeee;
}

.shopNow-list ul li a .shopNow-logo {
    display: table-cell;
    width: 33.33%;
    padding: 10px;
    vertical-align: middle;
}

.shopNow-list ul li a .shopNow-logo img {
    display: inline-block;
    height: 30px;
}

.shopNow-list ul li a .shopNow-status {
    display: table-cell;
    width: 33.33%;
    vertical-align: middle;
    text-align: center;
    font-size: 0.875em;
}

.shopNow-list ul li a .shopNow-price {
    display: table-cell;
    width: 33.33%;
    padding: 0 10px 0 0;
    vertical-align: middle;
    text-align: right;
    font-weight: 700;
}

.shopNow-list ul li a .shopNow-arrow {
    display: inline-block;
    width: 1.25em;
    margin: 0 0 0 0.25em;
    vertical-align: text-top;
    border: 1px solid #101010;
    border-radius: 1em;
    opacity: 0.5;
}

.shopNow-list ul .shopNow-error {
    padding: 1em 10px;
    text-align: center;
}

.shopNow-list ul .shopNow-loading {
    padding: 0.75em 10px;
    text-align: center;
}

.shopNow-list ul .shopNow-loading img {
    display: block;
    width: 32px;
    margin: 0 auto;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


#countdown {
    width: 100%;
    height: 142px;
    text-align: center;
    background: #222;
    background-image: -webkit-linear-gradient(top, #222, #333, #333, #222);
    background-image: -moz-linear-gradient(top, #222, #333, #333, #222);
    background-image: -ms-linear-gradient(top, #222, #333, #333, #222);
    background-image: -o-linear-gradient(top, #222, #333, #333, #222);
    border: 1px solid #111;
    border-radius: 5px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    margin: auto;
    padding: 24px 0;
    position: relative;

}



#countdown #tiles {
    position: relative;
    z-index: 1;
}

#countdown #tiles>span {
    width: 20%;
    max-width: 20%;
    font: bold 48px 'Droid Sans', Arial, sans-serif;
    text-align: center;
    color: #111;
    background-color: #ddd;
    background-image: -webkit-linear-gradient(top, #bbb, #eee);
    background-image: -moz-linear-gradient(top, #bbb, #eee);
    background-image: -ms-linear-gradient(top, #bbb, #eee);
    background-image: -o-linear-gradient(top, #bbb, #eee);
    border-top: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
    margin: 0 7px;
    padding: 18px 0;
    display: inline-block;
    position: relative;
}

#countdown #tiles>span:before {
    content: "";
    width: 100%;
    height: 13px;
    background: #111;
    display: block;
    padding: 0 3px;
    position: absolute;
    top: 41%;
    left: -3px;
    z-index: -1;
}

#countdown #tiles>span:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    border-top: 1px solid #333;
    display: block;
    position: absolute;
    top: 48%;
    left: 0;
}

#countdown .labels {
    width: 100%;
    height: 25px;
    text-align: center;
    position: absolute;
    display: flex;
}

#countdown .labels li {
    width: 25%;
    font: bold 15px 'Droid Sans', Arial, sans-serif;
    color: #f47321;
    text-shadow: 1px 1px 0px #000;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
}