/* Layout: Two Column
Theme: Basic Grey

Layout.css contains the layout properties for your order form,
including width, height, margin, padding, position, float,
display and text-align.

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,400italic);
/* The above link needs to be moved to appearance.css */

* {
    margin: 0;
    padding: 0;
}

#wrapper {
    /* Wraps around everything and sets the total width of the order form */
    position: relative;
    width: 960px;
    margin: 0 auto;
    padding:2%;
}

#header {
    /* The top area that contains your banner or logo */
    border-bottom: 1px solid #e5eef1;
    padding-bottom: 20px;
    width: 960px;
}

#footer {

    border-top: 1px solid #e5eef1;
    padding-top: 20px;

}

#content {
    /* Content wrapper for main column */
    width: /*730*/ 460px;
    float: left;
}

#rightCol {
    /* Content wrapper for right column/HTML area */
    width: /*200*/ 460px;
    float: right;
    margin-top: 20px;
    /*height: 530px; */
    clear: both;
    margin-bottom: 15px;
}



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

.productImage {
    /* Image in the product grid */
    margin: 8px 0 10px 0;
    border: 1px solid #eee;
    max-width: 100%;
}

.price {
    /* Price in the right column of the product grid */
    display: block;
}

.productDescription {
    /* Paragraph for short product description in order form */
    margin-bottom: 13px;
}

.optionsDrop {
    /* Dropdown for product options */
    padding: 4px 4px 4px 6px;
    margin-bottom: 13px;
    line-break-after: right;
}

.subscriptionPlan {
    display: block;
}

.qtyField {
    /* Quantity field in product grid */
    padding: 4px 4px 4px 6px;
    width: 30px;
    display: block;
    text-align: right;
    margin: 0 auto;
    margin-bottom: 5px;
}



/* HTML AREAS (Insert custom HTML by going to the HTML area tab)
===============================================================*/

#topCustomHTML {
    /* HTML area below header image. */
    margin: 35px 0 15px 0;
}

#middleCustomHTML {
    /* HTML area below product grid. */
    margin: 35px 0 60px 0;
    clear: both;
}

#bottomCustomHTML {
    /* This is your footer. */
    width: 960px;
    margin: 40px auto 20px auto;
    padding: 15px;
    text-align: center;
    clear: both;
}

#feet {
   width: 100%;
}
  
.leftfoot {
    width: 50%;
    float: left;
}

.rightfoot {
    width: 50%;
    float: right;
}


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

input {
    margin: 0 0 7px 0;
}

.paymentLabel {
    /* Labels for payment method table */
    display: block;
}

.choosePlan {
    /* Radio buttons used to choose pay plan or shipping option */
    margin-right: 5px;
}



/* Form fields and labels
---------------------------------------------*/

.checkout, .checkoutDone {
    /* Form fields used in checkout forms */
    padding: 4px 4px 4px 6px;
    margin: 0;
    width: 135px;
}

.checkoutBottom, .checkoutBottomDone {
    /* Provides bottom padding for last form field in a form */
    padding: 4px 4px 4px 6px;
    margin: 0 0 20px 0;
    width: 135px;
}

.checkoutTop, .checkoutTopDone {
    /* Provides top padding for first form field in a form */
    padding: 4px 4px 4px 6px;
    margin: 10px 0 0 0;
    width: 135px;
}

.checkoutLabel {
    /* Checkout form label */
    padding: 0 0 -3px 0;
    margin: 0 0 -3px 0;
}

.checkoutShort {
    /* Smaller form field */
    padding: 4px 4px 4px 6px;
    margin: 0;
    width: 135px;
}

.promoField {
    /* Smaller form field */
    padding: 4px 4px 4px 6px;
    margin: 0 0 0 10px;
    width: 120px;
}


.checkoutShortTop {
    /* Smaller form field */
    padding: 4px 4px 4px 6px;
    margin: 10px 0 0 0;
    width: 135px;
}

.promoLabel {
    padding-top: 3px;
}

.checkoutShortest {
    /* Even smaller form field */
    padding: 5px;
    margin: 0;
    width: 70px;
}

.checkoutShortBottom {
    padding: 4px 4px 4px 6px;
    margin-bottom: 30px;
    width: 135px;
}

.addressTableInfo {
    margin-bottom: 0px;
}

.paymentIcon {
    /* Credit card, pay pal and check icons in payment information table */
    margin: 0 7px -5px 4px;
}


/* Tables
---------------------------------------------*/

.viewCart {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 60px 0;
    float: left;
    border-radius: 4px;
}

.viewCart th, .billingTable th, .shippingTable th, .shipMethodTable th, .paymentMethodTable th, .payplanTable th, .orderSummary th {
    padding: 10px 10px 10px 15px;
    text-align: left;
}

.viewCart td, .shipMethodTable td, .paymentMethodTable td, .payplanTable td, .orderSummary td {
    padding: 10px 10px 10px 15px;
    vertical-align: top;
}

.billingTable td, .shippingTable td {
    padding: 8px 0 0 15px;
    vertical-align: top;
}

.billingTable {
    /* Table for entering billing address */
    width: /*355px*/ 100%;
    border-collapse: collapse;
    margin: 0 20px 5px 0;
    text-align: left;
    float: left;
    /*height: 500px;*/
    height: auto;
}

.shippingTable {
    /* Table for entering shipping address */
    width: /*355px*/ 100%;
    border-collapse: collapse;
    margin: 0 0 20px 0;
    text-align: left;
    float: right;
    height: 500px;
}

/* Make the order summary portion of the order form invisible */
.orderSummary {
    /*display: none;*/
}

.orderSummary {
    /* Table for order form summary */
    position: relative;
    width: /*355px*/ 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    text-align: left;
    float: right;
    clear: right;
    background:#f0f3f4
}

.shipMethodTable {
    /* Table for shipping options */
    width: /*355px*/ 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    margin-right: 20px;
    text-align: left;
    float: left;
    clear: left;
}

.payplanTable {
    /* Table for choosing pay plan */
    width: /*355px*/ 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    text-align: left;
    float: left;
}

#shipPaymentContainer {
    width: /*355px*/ 100%;
    float: left;
}

.tableOption {
    /* Paragraph for shipping or pay plan option */
    margin: 0 0 11px 0;
}

.payplanSummary { /* Box that shows payment schedule for payment plan */
    width: 200px;
    margin: 0px 0 15px 20px;
}

.paymentDate { /* Date shown in .paypanSummary box */
    width: 100px;
    display: inline-block;
    border-bottom: 1px dashed #ddd;
}

.paymentAmount { /* Payment amount shown in .paypanSummary box */
    width: 65px;
    text-align: right;
    display: inline-block;
    border-bottom: 1px dashed #ddd;
}

.financeDate { /* Finance charge label shown in .paypanSummary box */
    color: #777;
    font-style: italic;
    width: 100px;
    display: inline-block;
}

.financeAmount { /* Finance charge amount shown in .paypanSummary box */
    color: #777;
    font-style: italic;
    width: 65px;
    text-align: right;
    display: inline-block;
}

.promoCode {
    /* Table for promo code field */
    width: 453px;
    border-collapse: collapse;
    margin-left: 15px;
}

.promoCode td {
    height: 30px;
}

.paymentMethodTable {
    /* Table for entering payment method */
    width: 730px;
    border-collapse: collapse;
    margin: 0 0 20px 0;
    text-align: left;
    float: left;
}

td.pay1 {
    /* First column in .paymentMethodTable */
    width: 150px;
    padding-bottom: 20px;
}

td.pay2 {
    /* First column in .paymentMethodTable */
    width: 162px;
    padding-bottom: 20px;
}

td.pay3 {
    /* First column in .paymentMethodTable */
    width: 158px;
    padding-bottom: 20px;
}

td.pay4 {
    /* First column in .paymentMethodTable */
    padding-bottom: 20px;
}

td.rightAlign {
    text-align: left;
    vertical-align: top;
    padding-top: 10px;
    height: 20px;
    width: 140px;
}

.productCell {
    width: 80%; !important
}

.qtyCell {
    width: 10%; !important
}

.priceCell {
    width: 10%; !important
}

th.rightAlign {
    text-align: right;
}

th.rightAlignTop {
    text-align: right;
    vertical-align: top;
    padding-top: 20px;
    width: 150px;
}

td.rightAlignTop {
    text-align: left;
    padding-top: 20px;
    width: 150px;
    height: 20px;
}

td.rightAlignBottom {
    text-align: right;
    vertical-align: top;
    padding: 10px 10px 20px 0;
    width: 150px;
}

th.leftAlign {
    text-align: left;
    height: 15px;
}

td.leftAlign {
    text-align: left;
}

td.centerAlign, th.centerAlign {
    text-align: center;
}

td .rightCell {
    text-align: right;
}

.checkoutLinks {
    /* Container for 'Checkout' and 'Continue Shopping' buttons */
    width: 350px;
    height: 30px;
    margin: 0 0 40px;
    text-align: right;
    float: right;
    clear: both;
}

.checkoutWithPayPalLink {
    cursor: pointer;
    display: inline-block;
    margin: 10px 0 0 10px;
    padding: 3px 0;
}

.checkoutWithPayPalImg {
    display: block;
    margin: 0 0 -9px;
}

.payPalDescription {
    width: 400px;
}

.switchPaymentSelectionLink {
    padding-bottom: 25px;
    cursor: pointer;
}

.paymentIcon {
    margin: 15px 7px -5px 4px;
}



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

#upsellContainer {
    /* Contains all upsells */
    margin: 0 0 40px 0;
    clear: both;
}

.upsell {
    /* Box that contains single upsell */
    width: 328px;
    float: left;
    margin: 0 20px 20px 0;
    padding: 10px 10px 12px 15px;
}

.upsellImage {
    float: left;
    margin: 6px 15px 0 0;
}

.upsellItem {
    /* Product name */
    font-weight: bold;
    margin-right: 10px;
}

.upsellAdd {
    /* Add to cart button for upsells */
    float: right;
    margin: 7px 7px 0 0;
}

.upsellPrice {
    margin-left: 9px;
}


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

h1 {
    /* Used for product names */
    margin: 2px 0 2px 0;
}

h2 {
    /* Used for upsell product names */
    margin-right: 10px;
    display: inline;
}

#upsellContainer h2 {
    /* Used for upsell product names */
    margin: 5px 12px 0 0;
    display: inline-block;
}

h3 {
    /* Used for upsell headline */
    margin: 0 0 5px 0;
    padding-bottom: 3px;
}



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

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.codeButton {
    padding: 3px 15px 3px 15px;
    margin: 0 0 0 3px;
    cursor: pointer;
    float: right;
}

.continueButton {
    padding: 10px 30px 10px 30px;
    margin: 10px 0 20px 10px;
    cursor: pointer;
}

.upsellButton {
    margin: 0 0 0 1px;
    padding: 2px 8px 2px 8px;
    cursor: pointer;
}

/* PAYPAL LIGHTBOX
===============================================================*/

.payPalLightboxIcon {
    float: right;
    padding: 20px;
}

.payPalMessage {
    padding: 55px 30px 0;
}

.closePayPalLightbox {
    margin-right: 30px;
    margin-top: 50px;
    float: right;
}

.payPalGo {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: url("https://www.paypalobjects.com/en_US/i/pui/core/btn_bg_sprite.gif") repeat-x scroll left 17.5% #FFA822;
    border-color: #D5BD98 #935E0D #935E0D #D5BD98;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 30px;
    margin-top: 10px;
    padding: 1px;
}

@media only screen and (max-width : 960px) {
    #wrapper {
        width: auto;
        left: 0;
        right: 0;
    }

    #header, #rightCol, .billingTable, .shippingTable, .shipMethodTable, .paymentMethodTable, .orderSummary {
        width: 100%;
    }

    #rightCol {
        height: auto;
    }

    #content {
        width: auto;
        float: none;
    }

    #paymentSelection {
        text-align: center;
    }

    td.pay1, td.pay2, td.pay3, td.pay4 {
        display: block;
        width: 100%;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .orderSummary td:last-child{
        text-align: right;
    }

    .viewCart > tbody > tr:not(:first-child):not(:last-child) > td:first-child,
    .viewCart > tbody > tr:not(:first-child):not(:last-child) > td:nth-child(2):not(.priceCell) {
        display: block;
    }

    .viewCart > tbody > tr:first-child > th:nth-child(2),
    .viewCart > tbody > tr:last-child > td:nth-child(3) {
        display: none;
    }

    #companyLogoTopBanner img {
        max-width: 100%;
    }

    td.rightAlign, td.rightAlignTop {
        width: auto;
    }

    .shipMethodTable {
        text-align: center;
    }

    .shippingCheckbox {
        text-align: center;
    }

    #theLightbox_c {
        position: fixed !important;
        left: 10px !important;
        right: 10px !important;
        top: 10px !important;
        width: auto !important;
    }

    #theLightbox {
        width: auto !important;
    }

    #orderForm {
        display: table;
    }
    #header {
        position: fixed;
        top: 0;
        background: #fff;
        left: 0;
        padding: 15px 25px;
        z-index: 1;
    }
    #content {
        display: table-header-group;
    }
    #ORDER_FORM_PRODUCT_LIST {
        margin-top: 50px;
    }
    #CHECKOUT_LINKS .checkoutLinks {
        width: 100%;
    }
}

@media only screen and (max-width:900px) {
    #customFooter {
        text-align: center;
    }
    #customFooter img {
        display: block;
        margin: 0 auto 5px !important;
    }
    #customFooter span {
        display: block;
        margin-top: 5px;
    }
}
/* Custom Code by ApiDev */
.group:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }

.group { display: inline-block; clear: both; }

/* start commented backslash hack \*/ * html .group { height: 1%; } .group { display: block; } /* close commented backslash hack */
.sidebar_inner{ width:93%; margin:15px auto; font-family: 'Open Sans', Helvetica, Arial, sans-serif; }
.aside_title{float:left; font-size: 20px; color: #222222;  font-weight: bold; }
.side_icon{float: left; width: 45px; margin-right: 5px;}
.sidebar_inner ul{ list-style: disc; margin-left: 27px; font-size: 15px;}
.sidebar_inner ul li{ line-height: 28px;}
.testimonial_img{ float: left; width: 78px; margin-right: 18px; margin-top:7px;}
.testimonial_content{margin-left: 15px; font-size: 15px; line-height: 25px; text-align: justify;}
.mt-5{ margin-top: 5px;}
.sidebar_inner p{font-size: 15px; line-height: 25px;}
.mb-30{ margin-bottom: 30px;}
.orderSummary td{ border: none; background: #f0f3f4}
.listCell{ font-weight: bold;}
#orderFormBillingEntry{ display: block !important;}
@media screen and (min-width: 600px) and (max-width: 960px), (min-device-width: 600px) and
(max-device-width: 960px) and (orientation : landscape) {
    #wrapper,#customHeader,#header,#content,#rightCol{ padding-left: 0; padding-right: 0; margin-right: 0; margin-left: 0;}
    #wrapper,#customHeader,#header,.top_content_box{width: 100%;}
    #content,#rightCol{float:none;}
    .viewCart{float:none; width: 97%; margin-right: auto; margin-left: auto;}
    .top_img,#rightCol,#content,.payplanTable,.orderSummary,.img_responsive{width: 100%;}
    .top_content{width:60%;}
    .checkoutLinks{text-align: center;}
    #ORDER_FORM_BILLING_ENTRY, #ORDER_FORM_SHIPPING_ENTRY, #SHIPPING_OPTIONS, #PAYMENT_PLANS, #ORDER_FORM_SUMMARY, #PAYMENT_SELECTION, #productInformation{ width: 97%;margin-left: auto; margin-right: auto; }
    .codeButton, .continueButton, .upsellButton{ display: block; padding: 10px 8px 10px 8px;margin: 0; margin-bottom: 20px;}
    /*table {overflow-x: auto;display: block;}*/
    .viewCart tr td h1{ font-size: 12px; font-weight: normal;}
    .viewCart td,.viewCart th{font-size: 12px; font-weight: normal; padding-right: 0; padding-right: 0; text-align: left;white-space: normal;}
    .billingTable{ width: 98%; padding: 18px 0; margin-left: auto; margin-right: auto; }
    #paymentSelection{width:100%;}
    #PAYMENT_SELECTION{ float: none;}
    .checkoutTop, .checkoutTopDone,.checkoutBottom, .checkoutBottomDone,.checkout, .checkoutDone{width: 95%;}
}
@media screen and (max-width:600px),
(min-device-width:600px) and (max-device-width:960px) and (orientation:portrait) {
    #wrapper,#customHeader,#header,#content,#rightCol{ padding-left: 0; padding-right: 0; margin-right: 0; margin-left: 0;}
    #wrapper,#customHeader,#header,.top_content_box{width: 100%;}
    #content,#rightCol{float:none;}
    .viewCart{float:none; width: 97%; margin-right: auto; margin-left: auto;}
    .top_img,#rightCol,#content,.payplanTable,.orderSummary,.img_responsive{width: 100%;}
    .top_content{width:60%;}
    .checkoutLinks{text-align: center;}
    #ORDER_FORM_BILLING_ENTRY, #ORDER_FORM_SHIPPING_ENTRY, #SHIPPING_OPTIONS, #PAYMENT_PLANS, #ORDER_FORM_SUMMARY, #PAYMENT_SELECTION, #productInformation{ width: 97%;margin-left: auto; margin-right: auto; }
    .codeButton, .continueButton, .upsellButton{ display: block; padding: 10px 8px 10px 8px;margin: 0; margin-bottom: 20px;}
    /*table {overflow-x: auto;display: block;}*/
    .viewCart tr td h1{ font-size: 12px; font-weight: normal;}
    .viewCart td,.viewCart th{font-size: 12px; font-weight: normal; padding-right: 0; padding-right: 0; text-align: left;white-space: normal;}
    .billingTable{ width: 98%; padding: 18px 0; margin-left: auto; margin-right: auto; }
    #paymentSelection{width:100%;}
    #PAYMENT_SELECTION{ float: none;}
    .checkoutTop, .checkoutTopDone,.checkoutBottom, .checkoutBottomDone,.checkout, .checkoutDone{width: 95%;}
}

@media only screen and (min-width:534px) and (max-width:768px) {
    #wrapper,#customHeader,#header,#content,#rightCol,.testimonial_content{ padding-left: 0; padding-right: 0; margin-right: 0; margin-left: 0;}
    #wrapper,#customHeader,#header,.top_content_box{width: 100%;}
    #content,#rightCol,.testimonial_content,.testimonial_img{float:none;}
    .viewCart{float:none; width: 97%; margin-right: auto; margin-left: auto;}
    .top_img,#rightCol,#content,.payplanTable,.orderSummary,.img_responsive{width: 100%;}
    .top_content{width:60%;}
    .checkoutLinks{text-align: center;}
    #ORDER_FORM_BILLING_ENTRY, #ORDER_FORM_SHIPPING_ENTRY, #SHIPPING_OPTIONS, #PAYMENT_PLANS, #ORDER_FORM_SUMMARY, #PAYMENT_SELECTION, #productInformation{ width: 97%;margin-left: auto; margin-right: auto; }
    .codeButton, .continueButton, .upsellButton{ display: block; padding: 10px 8px 10px 8px;margin: 0; margin-bottom: 20px;}
    /*table {overflow-x: auto;display: block;}*/
    .viewCart tr td h1{ font-size: 12px; font-weight: normal;}
    .viewCart td,.viewCart th{font-size: 12px; font-weight: normal; padding-right: 0; padding-right: 0; text-align: left;white-space: normal;}
    .billingTable{ width: 98%; padding: 18px 0; margin-left: auto; margin-right: auto; }
    #paymentSelection{width:100%;}
    #PAYMENT_SELECTION{ float: none;}
    .checkoutTop, .checkoutTopDone,.checkoutBottom, .checkoutBottomDone,.checkout, .checkoutDone{width: 95%;}
    .side_icon, .aside_title,.testimonial_img{ float: none;text-align: center; margin:5px auto; }
    .testimonial_img{padding: 0; text-align: center;}
    #tetestimonial_box{ text-align: center;}
    #paymentSelection tr td,#CHECKOUT_LINKS .continueButton{ margin-left: 0;}
    .sidebar_inner p{ text-align:center; }
}
@media only screen and (max-width:533px) {
    #wrapper,#customHeader,#header,#content,#rightCol,.testimonial_content{ padding-left: 0; padding-right: 0; margin-right: 0; margin-left: 0;}
    #wrapper,#customHeader,#header,.top_content_box{width: 100%;}
    #content,#rightCol,.testimonial_content,.testimonial_img{float:none;}
    .viewCart{float:none; width: 97%; margin-right: auto; margin-left: auto;}
    .top_img,#rightCol,#content,.payplanTable,.orderSummary,.img_responsive{width: 100%;}
    .top_content{width:60%;}
    .checkoutLinks{text-align: center;}
    #ORDER_FORM_BILLING_ENTRY, #ORDER_FORM_SHIPPING_ENTRY, #SHIPPING_OPTIONS, #PAYMENT_PLANS, #ORDER_FORM_SUMMARY, #PAYMENT_SELECTION, #productInformation{ width: 97%;margin-left: auto; margin-right: auto; }
    .codeButton, .continueButton, .upsellButton{ display: block; padding: 10px 8px 10px 8px;margin: 0; margin-bottom: 20px;}
    /*table {overflow-x: auto;display: block;}*/
    .viewCart tr td h1{ font-size: 12px; font-weight: normal;}
    .viewCart td,.viewCart th{font-size: 12px; font-weight: normal; padding-right: 0; padding-right: 0; text-align: left;white-space: normal;}
    .billingTable{ width: 98%; padding: 18px 0; margin-left: auto; margin-right: auto; }
    #paymentSelection{width:100%;}
    #PAYMENT_SELECTION{ float: none;}
    .checkoutTop, .checkoutTopDone,.checkoutBottom, .checkoutBottomDone,.checkout, .checkoutDone{width: 95%;}
    .side_icon, .aside_title,.testimonial_img{ float: none;text-align: center; margin:5px auto; }
    .testimonial_img{ padding: 0;}
    #tetestimonial_box{ text-align: center;}
    #paymentSelection tr td,#CHECKOUT_LINKS .continueButton{ margin-left: 0;}
    .sidebar_inner p{ text-align:center; }
    .promoField{ width:98%; margin:10px auto; padding: 4px 0px 4px 0;}
    .codeButton{ float: none; margin-top: 10px;}
}/* PAYPAL SMARTBUTTONS===============================================================*/.checkoutButtonList { /* Container for the checkout links and PayPal smart payment buttons, if the smart payment buttons are present */ float: right; clear: both; padding-right: 30px;}.checkoutPaypalSmartPaymentButtons { /* Container for the PayPal smart payment buttons */ float: right; clear: both;}.payPalOption td { /* PayPal option in the Payment Information */ width: 220px;}.payPalOption td div { /* Container for the PayPal smart payment buttons in the PayPal option in the Payment Information */ clear: both; float: left;}#payPalButtons { /* PayPal initial order form page when multiple payment option */ background-color: #ffffff; padding: 16px;}#payPalOptionButtons { /* Container for the PayPal smart payment buttons */ float: right; clear: both; width: 220px;}
