/* Layout: One Column
Theme: Basic Gray

Appearance.css contains the costmetic properties for your order
form, such as fonts, colors, background images and borders.

NOTE: There are additional classes that are not listed here
because they currently have no attributes. You can locate
these by downloading and using Firebug.
===============================================================*/

/*@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
This is the correct location for import, remove import link in layout.css when ready
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic);

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #242433;
}

img, img a {
    border: 0 none;
}



/* PRODUCT GRID
===============================================================*/

.priceBold {
    /* Price subtotal on bottom right of product grid */
    font-weight: bold;
}

.discountedPrice {
    text-decoration: line-through;
}

.totalPrice {
    /* Subtotal label on bottom left of product grid */
    font-weight: bold;
}

.soldOut {
    color: #e34825;
    font-size: 14px;
    text-transform: uppercase;
}

.outOfStockText {
    color: #e34825;
}

.qtyField:disabled {
    background-color: #e8e8e8;
}

.optionChosen {
    font-style: italic;
    color: #999;
    font-size: 14px;
}

.updateCart {
    /* Link to update quantity */
    font-size: 10px;
}

.promoField {
    /* Text fields for promo code */
    border: 1px solid #ddd;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    font-size: 13px;
}



/* FORMS
===============================================================*/

.checkout, .checkoutShort, .checkoutShortest, .checkoutBottom, .checkoutTop, .qtyField, .optionsDrop {
    /* Form fields used in checkout forms */
    border: 1px solid #ddd;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    font-size: 13px;
    color: #222;
}

.checkoutDone, .checkoutTopDone, .checkoutBottomDone {
    /* Form fields used on confirmation page */
    font-size: 13px;
    color: #222;
}

.viewCart, .shippingTable, .billingTable, .paymentMethodTable, .shipMethodTable, .payplanTable, .orderSummary {
    outline: 1px solid #ddd;
    border-collapse: collapse;
}

.viewCart th, .viewCartShort th, .payPlan th, .summaryCart th, .shippingInfo th, .billingInfo th, .billingTable th, .shippingTable th, .paymentInfo th, .signinTable th, .paymentMethodTable th, .shipMethodTable th, .payplanTable th, .orderSummary th {
    background: #eee;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dddddd));
    background: -moz-linear-gradient(top, #ffffff, #dddddd);
    background: linear-gradient(to bottom, #ffffff, #dddddd);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd');
}

.viewCart td, .viewCartShort td, .payPlan td, .summaryCart td, .shippingInfo td, .billingInfo td, .paymentInfo td, .orderSummary td {
    border-top: 1px solid #ddd;
}

.subtotal {
    background-color: #f5f5f5;
    font-weight: bold;
}

.cartDiscount {
    /* Discount text */
    color: #f00;
}

.paymentDate, .paymentAmount, .financeDate, .financeAmount { /* Shown in payplan pay schedule box */
    font-size: 12px;
}

.payplanSummaryHeader { /* Header for payplan pay schedule box */
    font-size: 12px;
    font-weight: bold;
}



/* UPSELLS
===============================================================*/

#upsellContainer {
    overflow: hidden;
}

.upsell {
    background-color: #fcfbe9;
    border: 1px solid #f1edb4;
}

.upsellRegPrice {
    font-style: italic;
}

.upsellPrice {
    color: #ff0000;
}

.upsell img {
    border: 1px solid #ddd;
}



/* TYPOGRAPHY
===============================================================*/

h1 {
    /* Used for product names */
    font-size: 16px;
}

h2 {
    /* Used for upsell product names */
    font-size: 16px;
}

h3 {
    /* Used for upsell headline */
    font-size: 15px;
    font-weight: normal;
    color: #555;
    text-transform: uppercase;
}



/* LINKS AND BUTTONS
===============================================================*/

a {
    color: #1675a2;
}

a:hover {
    color: #1675a2;
}

.codeButton, .continueButton {
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    border: solid 1px #666;
    background: #444;
    background: -webkit-gradient(linear, left top, left bottom, from(#777777), to(#444444));
    background: -moz-linear-gradient(top, #777777, #444444);
    background: linear-gradient(to bottom, #777777, #444444);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#777777', endColorstr='#444444');
}

.disabledButton {
    margin-bottom: 10px;
    opacity: 0.5;
}

.upsellButton {
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
    border: solid 1px #666;
    background: #444;
    background: -webkit-gradient(linear, left top, left bottom, from(#777777), to(#444444));
    background: -moz-linear-gradient(top, #777777, #444444);
    background: linear-gradient(to bottom, #777777, #444444);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#777777', endColorstr='#444444');
}

.codeButton:hover, .continueButton:hover, .upsellButton:hover {
    color: #fff;
    background: #444;
    background: -webkit-gradient(linear, left top, left bottom, from(#888888), to(#555555));
    background: -moz-linear-gradient(top, #888888, #555555);
    background: linear-gradient(to bottom, #888888, #555555);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#555555');
    text-decoration: none;
}

.codeButton:active, .continueButton:active, .upsellButton:active {
    position: relative;
    top: 1px;
}



/* MISC
===============================================================*/

.errorMessage {
    color: #dd4949;
}

@media only screen and (max-width : 960px) {
    .viewCart td, .viewCartShort td, .payPlan td, .summaryCart td, .shippingInfo td, .billingInfo td, .paymentInfo td, .orderSummary td {
        border-top: none;
    }

    .viewCart tr:not(:first-child) {
        border-top: 1px solid #ddd;
    }
    #wrapper {
        width: 100% !important;    
    }
  .orderSummary td:last-child {text-align: unset !important;}
  .vst-column {
  width: 100% !important;
  }
     

}

/* PAYPAL SMARTBUTTONS
===============================================================*/

#payPalButtons {
    /* PayPal initial order form page when multiple payment option */
    background-color: #ffffff;
}
#companyLogoTopBanner img{
  margin: 0 auto;
  display: block;
}
#footer #customFooter {
  display:none;
}




table {width: 100% !important;
outline: 2px solid #6C2469 !important;
  margin: 40px 0 20px 0 !important; 
  border-radius: 4px;

}
table#paymentSelection tr{
  display: flex;
  flex-wrap: wrap;
}
table#paymentSelection td{
  width: 40%;
}
table#paymentSelection th{
  width: 100%;
}
table.viewCart.tabular.grid th {
    padding-right: 0px !important;
}

tr.subtotal {
  background: #6C2469 !important;
  color: white;
}
.orderSummary td.subtotal{
  background: #f0ac4e !important;
  color: white;

}
#ORDER_FORM_BILLING_ENTRY {order: 1;}
#ORDER_FORM_SHIPPING_ENTRY {order: 2;}
#SHIPPING_OPTIONS {order: 3;}
#PAYMENT_SELECTION {order: 4;}
#ORDER_FORM_PRODUCT_LIST {order: 5;}
#CUSTOM_HTML {order: 6;}
#UP_SELLS {order: 7;}
#PAYMENT_PLANS {order: 8;}
#ORDER_FORM_SUMMARY {order: 9;}
#customFooter  {order: 10; text-align:center;}
#CHECKOUT_LINKS {order: 11;}

#header {
  margin-bottom: 0px;
}
#footer{
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}
table th{
  color: white;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 300;
  background: #6C2469  !important;
  font-family: "Libre Baskerville", serif;
  padding: 20px 10px 20px 15px !important;
  height: unset !important;
}

#CUSTOM_HTML h3{
  font-size: 20px;
  font-weight: bold;
  text-transform: unset !important;
  margin-bottom: 25px;
  font-family: "Lato", serif;
}
#CUSTOM_HTML li{
  margin-bottom: 20px;  
  font-family: "Lato", serif;
  font-size: 1.1rem;

}


#CUSTOM_HTML p {
  margin-bottom: 20px;
  font-family: "Lato", serif;
  font-size: 1.1rem;
}
#customFooter p, #customFooter label{
  margin-bottom: 20px;
  font-family: "Lato", serif;
  font-size: 0.9rem;
}
#CUSTOM_HTML img{
  margin: 0 auto;
  display: block;
  margin-top:20px;
  margin-bottom:20px;
}
table input[type="text"], table select, table input[type="number"] {
    -webkit-appearance: none;
    -webkit-transition: border .25s cubic-bezier(.23,1,.32,1);
    -o-transition: border .25s cubic-bezier(.23,1,.32,1);
    transition: border .25s cubic-bezier(.23,1,.32,1);
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #cdcdd1;
    display: block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    padding: 8px 16px;
    height: 20px;
    line-height: normal;
    outline: none;
    width: 80%;
    font-size: 14px;
}
input[type="text"], input[type="number"] {
    width: auto;
}
table select {
    color: #242433;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' id='chevron-down'%3E%3Cpath d='M6.293 9.293a1 1 0 0 1 1.414 0L12 13.586l4.293-4.293a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414 0l-5-5a1 1 0 0 1 0-1.414z' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
    background-size: 20px;
    background-position: calc(100% - 6px) center;
    background-repeat: no-repeat;
    width: 100%;
    height: 38px;    
}
select.checkoutShortest{float: left;}
.checkoutLinks{width: 100% !important;}
.continueButton {  
  margin: 0 auto !important;  
  display: block;
  width: 60%;
}
input#promoCode{
  width: 100px;
  margin-left: 0;
}

.paymentIcon {height: 25px;}
#paymentSelection td:first-child {width: unset !important;}
#companyLogoTopBanner img {max-width: 350px;}
#customHeader h1{
  font-size: 1.1rem;
  text-align: left;  
  text-transform: capitalize;
  margin-bottom: 25px;
}
.codeButton, .continueButton {
  padding: 10px 15px 10px 15px !important;  
  border: 1px solid #f0ac4e;
  background: #f0ac4e !important;
  font-size: 1.1rem;
}
.continueButton:hover, .codeButton:hover {
  border: 1px solid #6c2469;
  background: #6c2469 !important;  
}
input[type="number"].qtyField {
  width: 30px !important;
}
.orderSummary .rightAlignPrice.subtotal{
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}
input#cardNumber{
  width: 100%;
}
input#verificationCode{
  width: 50px;
}
.orderSummary .rightAlignPrice.subtotal { 
    font-size: 22px; 
}
.vst-column {
  width: 50%;
  padding:20px;
  box-sizing: border-box;
  float: left;
  position: relative;
}
select#cardType {width: 135px;}
@media (max-width: 500px) {
  body {
    transform: scale(0.9);
    transform-origin: top left;
    width: 110%; /* 100 / 0.9 to compensate for scaling */
  }
}
