/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* coupon Styling */
.wt-mycoupons ul li {
    box-sizing: border-box;
    display: inline-block;
    padding: 15px;
    width: 170px;
    min-height: 60px;
    margin-bottom: 15px;
    vertical-align: top;
    line-height: 1.4;
}   
.wt-single-coupon{
    width: 300px;
    max-width: 100%;
    border-radius: 4px;
    background-color: #2890a8 ;
    border: 2px dashed #fff;
    text-align: center;
    margin-bottom: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center!important;
    align-items: center!important;
    transition: all .3s;
    position: relative;
    vertical-align: top;
    color: #fff;
    min-height: 100px;
    box-shadow: 0 0 0 4px #2890a8, 2px 1px 6px 4px rgba(10, 10, 0, 0.5);
    text-shadow: -1px -1px #2890a8;
    margin-right: 30px;
    padding:6px 0;
    box-sizing: border-box;
}
.wt-coupon-amount {
    width: 100%;
}

.wt-coupon-amount span.amount {
    font-size: 22px;
    font-weight: bold;
}

.wt-coupon-code {
    width: 100%;
    font-size: 19px;
}

.wt-single-coupon.used-coupon {
    box-shadow: 0 0 0 4px #eeeeee, 2px 1px 6px 4px rgba(10, 10, 0, 0.5);
    text-shadow: -1px -1px #eeeeee;
    background-color: #eee ;
    color: #000;
    border: 2px dashed #000;
}
.wt-coupon-code code{
    background: none;
}
.wt-single-coupon.used-coupon.expired {
    box-shadow: 0 0 0 4px #f3dfdf, 2px 1px 6px 4px rgba(10, 10, 0, 0.5);
    text-shadow: -1px -1px #f3dfdf;
    background-color: #f3dfdf;
    color: #a96b6b;
    border: 2px dashed #eccaca;
}
.wt-single-coupon i.info {
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    background: #fff;
    text-shadow: none;
    color: #2890a8;
    font-style: normal;
    cursor: pointer;
}

.wt-single-coupon .coupon-desc {
    position: absolute;
    top: -18px;
    background: #f2f2f2;
    color:#000;
    text-shadow: none;
    font-size: 12px;
    right: -303px;
    width: 300px;
    padding: 10px 20px;
    z-index: 100;
    border-radius: 8px;
    display: none;
    min-height: 90px;
    max-width: 100%;
}
/* .wt-single-coupon .coupon-desc:after{
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; 
    
    border-right:10px solid rgba(0,0,0,.8); 
    position: absolute;
    left: -10px;
    top: 23px;
    content: '';
} */
.coupon-desc-wrapper:hover .coupon-desc {
    display: block;
}
.wt-coupon-content {
    width: 100%;
    text-align: center;
}
@media only screen and (max-width: 700px)  {
    .wt-coupon-content {
        z-index: 5;
    }
    .wt-single-coupon .coupon-desc{
      z-index: 100;
      right:auto;
      top:30px;
      left:0px;
    }
  
  }

.wt_coupon_wrapper{ width:100%; position:relative; flex-direction:row; flex-wrap:wrap; display:flex; justify-content:flex-start; margin-bottom:15px; gap:30px; padding-top:15px; }
.wt_coupon_wrapper .wt-single-coupon, .wt_coupon_wrapper .wt-sc-hidden-coupon-box{ width:30%; min-width:240px; margin:0px; flex:1 0 30%; }
.wt_coupon_wrapper .wt-sc-hidden-coupon-box{ content:""; visibility:hidden; }

.wt-used-coupons, .wt-expired-coupons, .wt-mycoupons {
  float: left;
  width: 100%; margin-top:15px;
}

.wt_sc_pagination{ width:100%; clear:both; margin-bottom:15px; text-align:right; }
.wt_sc_pagination .woocommerce-pagination{ display:inline-block; float:none; }
.wt_sc_available_coupon_sort_by{ float:right; font-size:14px; }
.wt_sc_bogo_cart_item_discount, .wt_sc_bogo_cart_item_discount *{ color:green; font-size:small; }