/* Popup */
.w-shannon-popup {
    display: flex;
    flex-flow: row wrap;
    position: fixed;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.w-shannon-popup-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.w-shannon-popup-x {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
}

.w-shannon-popup-x:before,
.w-shannon-popup-x:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

.w-shannon-popup-x:before {transform: rotate(45deg);}

.w-shannon-popup-x:after {transform: rotate(-45deg);}

.w-shannon-popup-body {
    display: block;
    position: relative;
    z-index: 3500;
    width: 1000px;
    max-width: calc(100% - 32px);
    height: auto;
    max-height: calc(100% - 100px);
    background: #fff;
    padding: 16px;
    overflow-y: auto;
}

.w-shannon-popup:not(.active) {display: none; visibility: hidden;}

/* Product Popup Content */
.w-shannon-wc-pp-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.w-shannon-wc-pp-header {
    grid-column: span 5;
    text-align: center;
}

.w-shannon-wc-pp-image {
    grid-column: span 2;
}

.w-shannon-wc-pp-image img {
    width: 100%;
}

.w-shannon-wc-pp-form {
    grid-column: span 3;
}

.w-shannon-wc-pp-info {
    grid-column: span 5;
}

.w-shannon-wc-pp-form .stock,
.w-shannon-wc-pp-form .product_meta {display: none;}

.w-shannon-wc-pp-form .price {
    font-size: 30px;
    font-weight: bold;
}

.w-shannon-wc-pp-form input[type=text],
.w-shannon-wc-pp-form textarea {
    display: block;
    width: 100%;
    padding: 4px 10px;
    font-size: 16px;
    border: 1px solid #000;
    border-radius: 4px;
}

.w-shannon-wc-pp-form .quantity {
    display: inline-block;
}

.w-shannon-wc-pp-form button[type=submit] {
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFF;
    font-weight: bold;
    padding: 4px 10px;
    border: 1px solid #00ACC8;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background: #00ACC8;
    height: 30px;
}

.w-shannon-wc-pp-form .quantity input[type=number] {
    display: inline-block;
    border: 1px solid #000;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 4px 10px;
    font-size: 16px;
    line-height: 1;
    height: 30px;
}

/* Cart */
#w-shannon-wc-cart table {
    table-layout: unset;
    width: 100% !important;
}

#w-shannon-wc-cart table th {
    background: rgba(0, 0, 0, .05);
}

#w-shannon-wc-cart table th,
#w-shannon-wc-cart table td {
    border: 1px solid rgba(0, 0, 0, .25) !important;
}

#w-shannon-wc-cart .shop_table td.product-remove {
    width: 40px;
}

#w-shannon-wc-cart .shop_table td.product-remove a:hover {
    background: #FFF !important;
}

#w-shannon-wc-cart .shop_table td.product-remove a {
    color: #000 !important;
    font-size: 20px !important;
}

#w-shannon-wc-cart .shop_table .product-thumbnail {
    width: 80px;
}

#w-shannon-wc-cart .shop_table .product-thumbnail img {
    width: 100%;
}

#w-shannon-wc-cart .shop_table .product-name * {
    font-size: 14px !important;
    line-height: 1.2 !important;
}

#w-shannon-wc-cart .cart-collaterals {
    margin-top: 20px;
}

#w-shannon-wc-cart .cart_totals h2 {text-align: center}

#w-shannon-wc-cart .cart_totals {
    width: 100%;
}

#w-shannon-wc-cart .cart_totals .shop_table * {
    line-height: 1.2 !important;
    font-size: 20px !important;
    vertical-align: middle;
}

#w-shannon-wc-cart .cart_totals .shop_table label {
    margin-bottom: 0;
}

#w-shannon-wc-cart .button,
#w-shannon-wc-cart .checkout-button,
#w-shannon-wc-cart button[type=submit] {
    line-height: 1;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFF;
    font-family: 'Muli';
    letter-spacing: normal !important;
    font-weight: bold;
    padding: 16px;
    border: 1px solid #00ACC8;
    border-radius: 4px;
    background: #00ACC8;
}

/* Checkout */
#w-shannon-wc-checkout table td {
    border: 1px solid rgba(0, 0, 0, .25) !important;
}

#w-shannon-wc-checkout table th {
    background: rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .25) !important;
}

#w-shannon-wc-checkout button[type=submit] {
    line-height: 1;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFF;
    font-family: 'Muli';
    letter-spacing: normal !important;
    font-weight: bold;
    padding: 16px;
    border: 1px solid #00ACC8;
    border-radius: 4px;
    background: #00ACC8;
}

#w-shannon-wc-checkout * {
    line-height: 1.2 !important;
    vertical-align: middle;
}

#w-shannon-wc-checkout {}

#w-shannon-wc-checkout {}

#w-shannon-wc-checkout {}

#w-shannon-wc-checkout {}