/* Appearance

This contains the costmetic properties for your order
form, such as fonts, colors, background images and borders.
===============================================================*/


/* TOP LEVEL STYLES
===============================================================*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,700);

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #242433;
}

img, img a {
    border: 0 none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}


h2 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 300;
}


h4 {
    font-size: 16px;
}

#wrapper {
    position: relative;
}

#wrapper #rightbar {
    border-right: 1px solid #f0f0f0;
}

p {
    margin: 0;
    font-size: 12px;
    color: #7a7a87;
}

#content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#productsContainer,
#shippingOptionsContainer {
    padding: 16px 0;
    border-bottom: 1px solid #e6e6e8;
}

#productsContainer {
    padding: 0 0 16px;
}

#paymentPlansContainer {
    border-top: 1px solid #e6e6e8;
}

#upsellContainer,
#orderSummaryContainer,
#paymentPlansContainer,
#checkoutLinksContainer {
    padding: 16px 0;
}

#orderFormBillingEntry .checkboxOption {
    margin-bottom: 16px;
}


/* Order Form Expander
===============================================================*/

#orderSummaryExpander {
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#orderSummaryExpander > *:not(:last-child) {
    padding-right: 4px;
}


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

.input-field,
.select-field {
    position: relative;
    width: 100%;
}

.input-field input, .select-field select {
    -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: 40px;
    line-height: normal;
    outline: none;
    width: 100%;
    font-size: 14px;
}

input[type="text"], input[type="number"] {
    width: 100%;
}

.select-field 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%;
}

.select-field select:disabled, .input-field input:disabled {
    background-color: #f0f0f0;
    color: #7a7a87;
    cursor: not-allowed;
}

.input-field label,
.select-field label {
    font-size: 12px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transition: left .25s cubic-bezier(.23,1,.32,1),top .25s cubic-bezier(.23,1,.32,1),font-size .25s cubic-bezier(.23,1,.32,1),color .25s cubic-bezier(.23,1,.32,1);
    -o-transition: left .25s cubic-bezier(.23,1,.32,1),top .25s cubic-bezier(.23,1,.32,1),font-size .25s cubic-bezier(.23,1,.32,1),color .25s cubic-bezier(.23,1,.32,1);
    transition: left .25s cubic-bezier(.23,1,.32,1),top .25s cubic-bezier(.23,1,.32,1),font-size .25s cubic-bezier(.23,1,.32,1),color .25s cubic-bezier(.23,1,.32,1);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    left: 1rem;
    line-height: calc(16px * 1.5);
    pointer-events: none;
    position: absolute;
    text-transform: none;
    text-align: left;
    margin-left: -4px;
    background: -webkit-gradient(linear,left bottom, left top,from(transparent),color-stop(42%, transparent),color-stop(0, #fff),color-stop(51%, #fff),color-stop(0, transparent));
    background: -o-linear-gradient(bottom,transparent,transparent 42%,#fff 0,#fff 51%,transparent 0);
    background: linear-gradient(0deg,transparent,transparent 42%,#fff 0,#fff 51%,transparent 0);
    padding: 0 4px;
    top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    width: auto;
    white-space: normal;
    color: #7a7a87;
}

.input-field input:focus {
    border: 1px solid #444;
}

.input-field input:disabled~label {
    color: #7a7a87;
}

.inline-field-invalid {
    background: none !important;
}

.inline-field-invalid:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.radioOption,
.checkboxOption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.radioOption ~ .radioOption {
    margin-top: 8px;
}

.radioOption label,
.checkboxOption label {
    font-size: 14px;
}

.radioOption input,
.checkboxOption input {
    margin-right: 8px;
}

.radioOptionDetails {
    font-size: 12px;
    color: #7a7a87;
    padding-left: 22px;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row > * {
    padding-right: 5px;
    padding-left: 5px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}


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

a {
    color: #7a7a87;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

.button {
    -webkit-transition: background-color .25s cubic-bezier(.23,1,.32,1);
    -o-transition: background-color .25s cubic-bezier(.23,1,.32,1);
    transition: background-color .25s cubic-bezier(.23,1,.32,1);
    background-color: #000;
    border: 1px solid transparent;
    color: #fff;
    padding: 11px 15px;
    font-size: 14px;
    line-height: 16px;
    -webkit-transition: background-color .25s cubic-bezier(.23,1,.32,1),color .25s cubic-bezier(.23,1,.32,1),-webkit-box-shadow .25s cubic-bezier(.23,1,.32,1);
    transition: background-color .25s cubic-bezier(.23,1,.32,1),color .25s cubic-bezier(.23,1,.32,1),-webkit-box-shadow .25s cubic-bezier(.23,1,.32,1);
    -o-transition: background-color .25s cubic-bezier(.23,1,.32,1),box-shadow .25s cubic-bezier(.23,1,.32,1),color .25s cubic-bezier(.23,1,.32,1);
    transition: background-color .25s cubic-bezier(.23,1,.32,1),box-shadow .25s cubic-bezier(.23,1,.32,1),color .25s cubic-bezier(.23,1,.32,1);
    transition: background-color .25s cubic-bezier(.23,1,.32,1),box-shadow .25s cubic-bezier(.23,1,.32,1),color .25s cubic-bezier(.23,1,.32,1),-webkit-box-shadow .25s cubic-bezier(.23,1,.32,1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    letter-spacing: normal;
    vertical-align: middle;
    text-align: center;
}

.button.block {
    width: 100%;
}

.button.secondary {
    background-color: transparent;
    color: #242433;
    border-color: #242433;
}

.button:active {
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.button:hover {
    text-decoration: none;
    color: #fff;
}

.button.secondary:active, .button.secondary:hover {
    background-color: #242433;
    color: #fff;
    border-color: transparent;
}

.button[disabled] {
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: default;
    pointer-events: none;
    -webkit-transition: background-color .25s cubic-bezier(.23,1,.32,1);
    -o-transition: background-color .25s cubic-bezier(.23,1,.32,1);
    transition: background-color .25s cubic-bezier(.23,1,.32,1);
    background-color: rgba(0,0,0,.09);
    border: 1px solid transparent;
    color: rgba(0,0,0,.29);
}



/* LOGO
===============================================================*/

#companyLogoTopBanner {
    text-align: center;
}

#companyLogoTopBanner img {
    max-width: 160px;
}


/* PRODUCT LIST SUMMARY
===============================================================*/

.productImage {
    max-width: 100px;
    max-height: 100px;
    height: auto;
    width: auto !important;
    border-radius: 6px;
    order: 1;
}
.productSubTotal {
    font-size: 12px;
}

.productTotal {
    font-size: 14px;
    color: #242433;
}

.productSubTotalPrice {
    color: #7a7a87;
}

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

.orderSummaryExpanderLink {
    cursor: pointer;
    text-decoration: underline;
}


/* ORDER SUMMARY
===============================================================*/

.orderSummarySubTotals {
    border-bottom: 1px solid #e6e6e8;
}


.orderSummaryPrice {
    font-size: 14px;
    color: #7a7a87;
}

.orderSummaryTotal .orderSummaryPrice,
.orderSummaryTotal .orderSummaryPrice p {
    font-size: 18px;
    color: #242433;
    font-weight: 600;
}


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

.upsell {
    border-radius: 12px;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    background-color: #fafafa;
    padding: 16px;
}

.upsellOriginalPrice {
    font-size: 12px;
    text-decoration: line-through;
    color: #7a7a87;
}


/** CUSTOM**/
.header-img {
    width: 80%;
    max-width: 468px;
}
#customHeader {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;    
}
img {
  width: 100% !important;
}
#productInformation ul {
    list-style-position: inside;
}
.credit-wrapper  img {
    max-width: 303px;
}
.credit-wrapper {
    margin-top: 24px;
    text-align: center;
}

body {
    font-family: 'Nunito Sans', sans-serif;
}
#wrapper #content, #wrapper #rightbar {
    max-width: 100% !important;
}
#rightbar {
    background-color: #f2f2f2;
    padding: 40px 40px 30px !important;
    flex: 0.9 !important;
    display: flex;
    flex-direction: column;
    border-right: unset !important;
}
#ORDER_FORM_PRODUCT_LIST {
    order: 2;
}
#CUSTOM_HTML {
    order: 1;
}
#SHIPPING_OPTIONS {
    order: 3;
}
#ORDER_FORM_SUMMARY {
    order: 4;
}
#PAYMENT_PLANS {
    order: 5;
}
#UP_SELLS {
    order: 6;
}
#rightbar > div {
    background-color: #fff;
    padding: 25px 25px 0 !important;
}
#content {
    background-color: #fff;
    padding: 40px 6% 30px !important;
}
#wrapper {
    background-color: #e8e8e8;
}


.input-field input, .select-field select {
    border-radius: unset !important;
}
a.continueButton {
    background-color: #f3bf58;
    border-radius: unset !important;
    padding: 1.5em 1em !important;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    color: #000;
}
.header-txt h2 {
    font-size: 27px;
    margin-bottom: 20px;
}
.formTitle {
    font-size: 42px;
    margin-bottom: 30px;
}
#ORDER_FORM_TERMS .formTitle {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 1em;
}
.orderSummary {
    line-height: 1.7em;
    font-size: 12px;
    color:#0000;
}
.orderSummary td {
    color: #000;
}
.orderSummary tr:last-child td {
    padding-top: 1em !important;
}
.productsTitle {
    font-size: 27px;
}
.productName {
    order: 2;
}
.productName, .custom-heading {
    font-size: 18px;
}
#IMAGE {
    display: none;
}
p, #productInformation ul {
    line-height: 1.7em;
    font-size: 12px;
}
#productInformation ul >li {
    list-style: none;
    color: #7a7a87;
    padding-left: 2.7ch;
    position: relative;
}
#productInformation ul >li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: #7A7A87;
    position: absolute;
    left: 0;
}
.orderSummaryTotal .orderSummaryPrice > span {
    font-size: 27px;
}

.productDetails {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 1.5em;
    align-items: center;
}
.productDescription {
    grid-column: -1/1;
    order: 3;
}
.productUpsellRemove {
    order: 2;
}
.productsTitle {
    font-size: 27px;
    margin-bottom: 20px;
}
.custom-heading, .productName, h3:not(:last-child) {
    margin-bottom: 16px !important;
}
#productInformation ul >li:not(:last-child) {
    margin-bottom: 8px;
}
.badge-wrapper {
    margin-top: 24px;
    max-width: 303px;
    margin-left: auto;
    margin-right: auto;
}
.productItem {
    display: block !important;
}

#ORDER_FORM_TERMS .formTitle:after {
    content: 'In purchasing this product you agree to receive our newsletter and updates. You can unsubscribe at any time.';
    display: block;
    padding-top: 1em;
    font-weight: 400;
}
/*#ORDER_FORM_TERMS .orderSummary tr:nth-child(2) td:before {
    content: 'Classes subject to cancellation. Please confirm your class prior to the event. Cancellation is at the discretion of Royse and Associates and expenses incurred are not refundable.';
    display: block;
    padding-bottom: 1em;
}*/



input[type="text"], input[type="tel"], input[type="email"], .select-field select {
    padding: 1em !important;
    height: 46.8px;
}

#header, #footer, #orderForm {
    max-width: 1024px !important;
}

#productInformation {
    border-bottom: 1px solid #e6e6e8;
    padding-bottom: 24px;
}

.secury-pay img {
    width: auto !important;
}


#customFooter p a,
#CUSTOM_HTML p a {
    font-size: inherit;
    text-decoration: underline;
  color: inherit;
    text-underline-offset: 0.2em;
}
#CUSTOM_HTML p a {
    display: inline-block;
}
#customFooter p:not(:last-child),
#CUSTOM_HTML p:not(:last-child) {
    padding-bottom: 1em;
}

#customFooter {
    display: grid;
    grid-template-columns: 0.84fr 1fr;
    padding: 30px;
    gap: 60px;
}
#customFooter p {
    color: #000;
}

@media only screen and (max-width: 840px) {
  #customFooter {
      grid-template-columns: 1fr;
      padding: 30px 15px;
      gap: 1em;
  }
}

@media only screen and (max-width: 540px) {
  #rightbar, #content {
      padding: 25px !important;
  }
    #customHeader {
        margin-bottom: 24px;
    }
  #wrapper {
      padding: 5% !important;
  }
}
