/**
 * Easy Digital Downloads Styles
 *
 * Reduced CSS rules for Sellgrid theme.
 *
 * [downloads] shortcode CSS removed, as covered by loop block.
 */
@charset "UTF-8";

/* Base styles for SVG icons. */
.edd-icon {
  display: inline-block;
  fill: var(--cs-color-contrast-400);
  position: relative;
  /* Align more nicely with capital letters */
  top: -0.0625em;
  vertical-align: middle;
  width: 1em;
  height: 1em;
}

.edd-icon-spin {
  display: inline-block;
  -moz-animation: edd-icon-spin 2s infinite linear;
  -o-animation: edd-icon-spin 2s infinite linear;
  -webkit-animation: edd-icon-spin 2s infinite linear;
  animation: edd-icon-spin 2s infinite linear;
}

@-moz-keyframes edd-icon-spin {
  0% {
    -moz-transform: rotate(0deg)
  }

  100% {
    -moz-transform: rotate(359deg)
  }
}

@-webkit-keyframes edd-icon-spin {
  0% {
    -webkit-transform: rotate(0deg)
  }

  100% {
    -webkit-transform: rotate(359deg)
  }
}

@-o-keyframes edd-icon-spin {
  0% {
    -o-transform: rotate(0deg)
  }

  100% {
    -o-transform: rotate(359deg)
  }
}

@-ms-keyframes edd-icon-spin {
  0% {
    -ms-transform: rotate(0deg)
  }

  100% {
    -ms-transform: rotate(359deg)
  }
}

@keyframes edd-icon-spin {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(359deg)
  }
}

/* =Checkout Form
-------------------------------------------------------------- */
.edd_clearfix:after {
  display: block;
  visibility: hidden;
  float: none;
  clear: both;
  text-indent: -9999px;
  content: ".";
}

/* Cart Contents */
#edd_checkout_cart {
  text-align: left;
  width: 100%;
  border: none;
  margin: 0 0 2.5rem;
  table-layout: auto;
}

#edd_secure_site_wrapper {
  margin-bottom: 1rem;
}

#edd_secure_site_wrapper span:not(.padlock) {
  color: var(--color-grey-80);
}

/* Two Column Fields */
/* #edd_checkout_wrap #edd_profile_first_name_wrap,
#edd_checkout_wrap #edd_profile_last_name_wrap,
#edd_checkout_wrap #edd_profile_display_name_wrap,
#edd_checkout_wrap #edd_profile_primary_email_wrap,
#edd_checkout_wrap #edd_profile_billing_address_line_1_wrap,
#edd_checkout_wrap #edd_profile_billing_address_line_2_wrap,
#edd_checkout_wrap #edd_profile_billing_address_city_wrap,
#edd_checkout_wrap #edd_profile_billing_address_postal_wrap,
#edd_checkout_wrap #edd_profile_billing_address_country_wrap,
#edd_checkout_wrap #edd_profile_billing_address_state_wrap {
  display: inline-block;
  width: calc(50% - 0.625rem);
  vertical-align: top;
} */
/* #edd_checkout_wrap #edd_profile_last_name_wrap,
#edd_checkout_wrap #edd_profile_primary_email_wrap,
#edd_checkout_wrap #edd_profile_billing_address_line_2_wrap,
#edd_checkout_wrap #edd_profile_billing_address_postal_wrap,
#edd_checkout_wrap #edd_profile_billing_address_state_wrap {
  margin-left: 0.97rem;
} */
/* Two Column Checkout Fields - Responsive */
@media only screen and (min-width: 960px) {

  /* Checkout Fields */
  #edd_checkout_wrap #edd-first-name-wrap,
  #edd_checkout_wrap #edd-last-name-wrap,
  #edd_checkout_wrap #edd-card-city-wrap,
  #edd_checkout_wrap #edd-card-zip-wrap,
  #edd_checkout_wrap #edd-card-country-wrap,
  #edd_checkout_wrap #edd-card-state-wrap,
  #edd_register_account_fields #edd-user-pass-wrap,
  #edd_register_account_fields #edd-user-pass-confirm-wrap,
  #edd_profile_editor_form #edd_profile_first_name_wrap,
  #edd_profile_editor_form #edd_profile_last_name_wrap,
  #edd_profile_editor_form #edd_profile_display_name_wrap,
  #edd_profile_editor_form #edd_profile_primary_email_wrap,
  #edd_profile_editor_form #edd_profile_billing_address_line_1_wrap,
  #edd_profile_editor_form #edd_profile_billing_address_line_2_wrap,
  #edd_profile_editor_form #edd_profile_billing_address_city_wrap,
  #edd_profile_editor_form #edd_profile_billing_address_postal_wrap,
  #edd_profile_editor_form #edd_profile_billing_address_country_wrap,
  #edd_profile_editor_form #edd_profile_billing_address_state_wrap,
  #edd_profile_editor_form #edd_profile_password_wrap,
  #edd_profile_editor_form #edd_profile_confirm_password_wrap {
    display: inline-block;
    width: calc(50% - 0.625rem);
    vertical-align: top;
  }

  #edd_checkout_wrap #edd-last-name-wrap,
  #edd_checkout_wrap #edd-card-zip-wrap,
  #edd_checkout_wrap #edd-card-state-wrap,
  #edd_register_account_fields #edd-user-pass-confirm-wrap,
  #edd_profile_editor_form #edd_profile_last_name_wrap,
  #edd_profile_editor_form #edd_profile_primary_email_wrap,
  #edd_profile_editor_form #edd_profile_billing_address_line_2_wrap,
  #edd_profile_editor_form #edd_profile_billing_address_postal_wrap,
  #edd_profile_editor_form #edd_profile_billing_address_state_wrap,
  #edd_profile_editor_form #edd_profile_confirm_password_wrap {
    margin-left: 0.97rem;
  }
}

#edd_checkout_cart td.edd_cart_actions,
#edd_checkout_cart th.edd_cart_item_price,
#edd_checkout_cart td.edd_cart_item_price,
#edd_checkout_cart th:last-child,
#edd_checkout_cart td:last-child,
#edd_checkout_cart th.edd_cart_total {
  text-align: right;
}

#edd_checkout_cart td img {
  float: left;
  margin: 0 1rem 0 0;
  background: none;
  padding: 0;
  border: none;
  border-radius: 0.25rem;
}

#edd_checkout_cart input.edd-item-quantity {
  width: 3em;
  padding: 2px;
  margin-right: 1rem;
}

#edd_checkout_cart .edd_discount {
  display: inline-block;
  margin-left: 5px;
}

#edd_checkout_cart table th,
#edd_checkout_cart table td {
  border-left: none;
  border-right: none;
}

.edd_cart_actions {
  text-align: right;
}

.edd_discount_remove {
  display: inline-block;
  position: relative;
  top: 3px;
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23fff' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  width: 16px;
  height: 16px;
}

/* #edd-purchase-button:hover,
.edd-apply-discount:hover {
  color: inherit !important;
} */
.edd-apply-discount {
  margin-left: 1rem;
}

#edd_checkout_cart br {
  display: none;
}

/* Payment Icons */
.edd-payment-icons .payment-icon {
  margin-right: 1rem;
}

/* Checkout Fields */
#edd_checkout_wrap td,
#edd_checkout_wrap th,
.edd-table td,
.edd-table th {
  border-left: none;
  border-right: none;
}

#edd_checkout_wrap thead th,
#edd_checkout_wrap table tfoot,
#edd_checkout_wrap table thead {
  border: none;
}

#edd_payment_mode_select {
  padding: 1rem 0;
}

/* Responsive table styling for mobile resolutions */
@media (max-width: 960px) {

  #edd_checkout_cart td:last-child,
  .edd-table td:last-child {
    margin-bottom: 20px;
  }

  #edd_checkout_cart td:before {
    display: inline-block;
  }

  #edd_checkout_cart th {
    display: none;
  }

  #edd_checkout_cart td {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

#edd_checkout_wrap .edd-select {
  background-color: #fff;
}

.edd_cart_footer_row {
  text-align: right;
}

#edd_checkout_wrap .edd-select {
  background-color: var(--cs-color-site-background);
  border: 1px solid var(--cs-color-contrast-200);
}

#edd_checkout_form_wrap span.edd-description {
  display: none;
}

#edd_checkout_form_wrap input.edd-input,
#edd_checkout_form_wrap textarea.edd-input,
#edd_checkout_form_wrap select.edd-select {
  display: inline-block;
  width: 100%;
}

#edd_checkout_form_wrap select.edd-select.edd-select-small {
  display: inline;
  width: auto;
}

#edd_checkout_form_wrap input.edd-input.error,
#edd_checkout_form_wrap textarea.edd-input.error {
  border-color: #c4554e;
}

#edd_checkout_form_wrap>p {
  margin: 0 0 2.5rem;
}

#edd_checkout_form_wrap .edd-terms-agreement,
#edd_checkout_form_wrap .edd-privacy-policy-agreement,
#edd_checkout_form_wrap .edd-show-terms {
  margin-bottom: 1rem;
}

#edd_checkout_form_wrap span.edd-required-indicator {
  color: #b94a48;
  display: inline;
}

#edd_checkout_form_wrap input[type="checkbox"]+label,
#edd_checkout_form_wrap input[type="checkbox"]+label:after {
  display: inline;
}

#edd_checkout_form_wrap .edd-payment-icons {
  height: 32px;
  display: block;
  margin: 0 0 2rem;
}

#edd_checkout_form_wrap .edd-payment-icons img.payment-icon {
  max-height: 32px;
  width: auto;
  margin: 0 1rem 0 0;
  float: left;
  background: none;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

#edd_checkout_form_wrap fieldset {
  margin: 0 0 1rem;
}

#edd_checkout_form_wrap fieldset fieldset {
  margin: 0;
  border: none;
  padding: 0;
}

#edd_checkout_form_wrap #edd-login-account-wrap,
#edd_checkout_form_wrap #edd-new-account-wrap,
#edd_checkout_form_wrap #edd_show_discount,
#edd_checkout_form_wrap .edd-cart-adjustment {
  background: transparent;
  padding: 1rem;
}

#edd_checkout_form_wrap #edd-new-account-wrap,
#edd_checkout_form_wrap #edd-login-account-wrap {
  padding: 0 0 0.5rem 0;
}

#edd_checkout_form_wrap .edd-discount-code-field-wrap {
  display: flex;
}

#edd_checkout_form_wrap #edd-discount-code-wrap,
#edd_checkout_form_wrap #edd_show_discount {
  border: 1px solid #ccc;
}

#edd_checkout_form_wrap #edd-discount-code-wrap,
#edd_checkout_form_wrap #edd_show_discount {
  border: 1px solid var(--cs-color-contrast-200);
}

#edd_checkout_form_wrap #edd_final_total_wrap {
  text-align: center;
  font-size: 140%;
}

#edd_checkout_form_wrap .edd-cart-adjustment {
  padding: 1.387em;
}

#edd_checkout_form_wrap .edd-cart-adjustment input.edd-input,
#edd_checkout_form_wrap .edd-cart-adjustment input.edd-submit {
  display: inline-block;
}

#edd_checkout_form_wrap .edd-cart-adjustment input.edd-submit {
  padding: 3px 12px;
  margin-bottom: 2px;
  border-radius: 1.55em;
}

#edd-purchase-button {
  border-radius: 1.55em;
}

.edd_cart_total {
  border-bottom: none !important;
}

#edd_checkout_form_wrap #edd-discount-error-wrap {
  width: 100%;
  display: inline-block;
  margin: 1em 0 0;
}

#edd_checkout_form_wrap #edd_user_login,
#edd_checkout_form_wrap #edd_user_pass,
#edd_checkout_form_wrap #edd_user_pass_confirm {
  width: 100%;
}

#edd_checkout_form_wrap fieldset#edd_cc_fields {
  background: transparent;
  position: relative;
}

#edd_checkout_form_wrap fieldset#edd_cc_fields legend {
  border: none;
  padding: 0;
}

#edd_checkout_form_wrap fieldset p:last-child {
  margin-bottom: 0;
}

#edd_checkout_form_wrap fieldset#edd_cc_fields #edd-card-number-wrap {
  margin-top: 5px;
}

#edd_checkout_form_wrap #edd_purchase_final_total {
  margin: 2.5rem 0;
}

#edd_checkout_form_wrap #edd_purchase_final_total p {
  margin: 0;
}

#edd_secure_site_wrapper {
  padding: 4px 4px 4px 0;
  font-weight: bold;
}

#edd_checkout_form_wrap input.edd-input.card-number.valid {
  background-image: url(images/tick.png);
  background-repeat: no-repeat;
  background-position: 98% 50%;
}

#edd_checkout_form_wrap span.exp-divider {
  display: inline;
}

#edd_checkout_form_wrap span.card-type {
  position: absolute;
  top: -2px;
  right: 0;
  width: 43px;
  height: 32px;
  background-size: 43px 32px !important;
}

#edd_checkout_form_wrap span.card-type.off {
  display: none;
}

#edd_checkout_form_wrap span.card-type.visa {
  background: url(images/icons/visa.png ) no-repeat;
}

#edd_checkout_form_wrap span.card-type.mastercard {
  background: url(images/icons/mastercard.png ) no-repeat;
}

#edd_checkout_form_wrap span.card-type.discover {
  background: url(images/icons/discover.png ) no-repeat;
}

#edd_checkout_form_wrap span.card-type.amex {
  background: url(images/icons/americanexpress.png ) no-repeat;
}

#edd_checkout_form_wrap .edd-cart-ajax {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

#edd_purchase_submit {
  text-align: center;
  margin-bottom: 0 !important;
}

.edd-amazon-profile-wrapper {
  font-size: 12px;
}

.edd-amazon-profile-name {
  font-weight: 600;
}

.edd-amazon-logout {
  font-size: 10px;
  line-height: 12px;
}

.edd-amazon-logout a {
  cursor: pointer;
}

#edd-amazon-wallet-box,
#edd-amazon-address-box {
  height: 228px;
  width: 350px;
}

#edd-amazon-address-box {
  margin-bottom: 15px;
}

/* Desktop and tablet */
@media only screen and (min-width: 768px) {

  #edd-amazon-address-box,
  #edd-amazon-wallet-box {
    width: 100%;
    height: 228px;
  }
}

/* =Ajax Add To Cart Button
-------------------------------------------------------------- */
.edd_purchase_submit_wrapper {
  position: relative;
}

.modal-body .edd_purchase_submit_wrapper {
  text-align: center;
}

.edd_purchase_submit_wrapper a {
  margin: 0 !important;
}

.edd_purchase_submit_wrapper .edd-cart-ajax {
  display: none;
  position: relative;
  left: -35px;
}

.edd-submit.button.edd-ajax-loading {
  padding-right: 30px;
}

.edd-add-to-cart .edd-add-to-cart-label {
  opacity: 1;
  filter: alpha(opacity=100);
}

.edd-loading,
.edd-loading:after {
  border-radius: 50%;
  display: block;
  width: 1.5em;
  height: 1.5em;
}

.edd-loading {
  -webkit-animation: edd-spinning 1.1s infinite linear;
  animation: edd-spinning 1.1s infinite linear;
  border-top: 0.2em solid rgba(255, 255, 255, 0.2);
  border-right: 0.2em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.2em solid rgba(255, 255, 255, 0.2);
  border-left: 0.2em solid #fff;
  font-size: 0.75em;
  position: absolute;
  left: calc(50% - 0.75em);
  top: calc(50% - 0.75em);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

a.edd-add-to-cart.white .edd-loading,
.edd-discount-loader.edd-loading,
.edd-loading-ajax.edd-loading {
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-left-color: #000;
}

.edd-loading-ajax.edd-loading {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0.25em;
  vertical-align: middle;
}

#edd_checkout_form_wrap .edd-cart-adjustment .edd-apply-discount.edd-submit {
  display: inline-block;
}

.edd-discount-loader.edd-loading {
  display: inline-block;
  position: relative;
  left: auto;
  vertical-align: middle;
  width: 1.25em;
  height: 1.25em;
}

.edd-loading-ajax.edd-loading {
  opacity: 1;
}

@-webkit-keyframes edd-spinning {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes edd-spinning {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

a.edd-add-to-cart .edd-add-to-cart-label,
.edd-loading {
  -webkit-transition: .1s opacity !important;
  -moz-transition: .1s opacity !important;
  -ms-transition: .1s opacity !important;
  -o-transition: .1s opacity !important;
  transition: .1s opacity !important;
}

.edd-add-to-cart[data-edd-loading] .edd-add-to-cart-label {
  opacity: 0;
  filter: alpha(opacity=0);
}

.edd-add-to-cart[data-edd-loading] .edd-loading,
.edd-discount-loader.edd-loading {
  opacity: 1;
  filter: alpha(opacity=100);
}

.edd-cart-added-alert {
  display: none;
}

/* =Receipt Page
-------------------------------------------------------------- */
body.edd_receipt_page {
  background-color: #fff;
  color: #141412;
  margin: 0;
  font-family: Helvetica, sans-serif;
  font-size: 12px;
}

body.edd_receipt_page:before {
  position: relative;
}

body.edd_receipt_page #edd_receipt_wrapper {
  width: 660px;
  margin: 0 auto;
  padding: 50px 0;
}

body.edd_receipt_page table {
  display: table;
  width: 100%;
  border-bottom: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 2;
  margin: 0 0 20px;
}

body.edd_receipt_page td,
body.edd_receipt_page th {
  display: table-cell;
  text-align: left;
  border-top: 1px solid #ededed;
  padding: 6px 10px;
  font-weight: normal;
}

body.edd_receipt_page th {
  font-weight: bold;
  text-transform: uppercase;
}

body.edd_receipt_page h3 {
  font-size: 22px;
  margin: 40px 0 5px;
  clear: both;
  display: block;
  font-weight: bold;
}

body.edd_receipt_page li {
  list-style: none;
}

/* =Purchase Summary Tables
-------------------------------------------------------------- */
table#edd_purchase_receipt .edd_receipt_payment_status.pending,
table#edd_purchase_receipt .edd_receipt_payment_status.cancelled,
table#edd_purchase_receipt .edd_receipt_payment_status.revoked,
table#edd_purchase_receipt .edd_receipt_payment_status.failed {
  color: #f73f2e;
}

table#edd_purchase_receipt_products li {
  list-style: none;
  margin: 0 0 8px 10px;
}

table#edd_purchase_receipt ul,
table#edd_purchase_receipt_products ul.edd_purchase_receipt_files {
  margin: 0;
  padding: 0;
}

table#edd_purchase_receipt li.edd_download_file {
  list-style: none;
  margin: 0 0 8px 0;
}

table#edd_purchase_receipt_products .edd_purchase_receipt_product_notes {
  font-style: italic;
}

table#edd_purchase_receipt_products .edd_purchase_receipt_product_name {
  font-weight: bold;
  margin-bottom: 1rem;
}

table#edd_purchase_receipt_products .edd_bundled_product_name {
  font-style: italic;
  font-weight: bold;
}

#edd_purchase_receipt thead th {
  font-size: 120%;
  border-top: none;
}

/* =Purchase History
-------------------------------------------------------------- */
#edd_user_history .edd_purchase_status.revoked,
#edd_user_history .edd_purchase_status.failed,
#edd_user_history .edd_purchase_status.cancelled,
#edd_user_history .edd_purchase_status.pending {
  color: #f73f2e;
}

/* #edd_user_history th {
  border-top: none;
} */
/* =Registration / login Form
-------------------------------------------------------------- */
#edd_register_form legend,
#edd_login_form legend {
  font-size: 120%;
  margin-bottom: 1em;
}

#edd_register_form fieldset,
#edd_login_form fieldset {
  border: none;
}

#edd_register_form .edd-input,
#edd_login_form .edd-input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#edd_register_form label,
#edd_login_form label {
  cursor: pointer;
}

/* =Profile Form
-------------------------------------------------------------- */
#edd_profile_editor_form label {
  display: inline-block;
}

#edd_profile_editor_form .edd-profile-emails {
  list-style-type: none;
  display: inline-table;
  margin-left: 0;
  margin-bottom: 0;
}

#edd_profile_editor_form .edd-profile-email {
  width: auto;
}

#edd_profile_editor_form .edd-profile-email .actions {
  display: none;
}

#edd_profile_editor_form .edd-profile-email:hover>span {
  display: inline-block;
}

/* =Alerts
-------------------------------------------------------------- */
.edd_added_to_cart_alert {
  padding: 5px;
  font-size: 14px;
  border: 1px solid #046a9e;
  background: #9ecce2;
  color: #333;
  margin: 8px 0;
}

.edd_added_to_cart_alert a.edd_alert_checkout_link {
  color: #000 !important;
}

/* =Purchase buttons
-------------------------------------------------------------- */
.edd_download_purchase_form .edd_download_quantity_wrapper {
  margin: 0 0 0.5em;
}

.edd_download_purchase_form .edd_download_quantity_wrapper .edd-item-quantity {
  width: 75px;
}

.edd_download_purchase_form .edd_price_options {
  margin: 0 0 2rem;
}

.edd_download_purchase_form .edd_price_options ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.edd_download_purchase_form .edd_price_options li {
  display: block;
  padding: 1rem 0;
  margin: 0;
  border-bottom: 1px solid var(--cs-color-contrast-200);
}

/*
.dark .edd_download_purchase_form .edd_price_options li {
  border-color: var(--color-grey-600);
} */
.edd_download_purchase_form .edd_price_options span {
  display: inline;
  padding: 0;
  margin: 0;
}

.edd_download_purchase_form .edd_price_options .edd_download_quantity_wrapper {
  padding-left: 18px
}

.edd_download_purchase_form .edd_price_options .edd_download_quantity_wrapper * {
  font-size: 80%
}

.edd_download_purchase_form .edd_price_options input.edd-item-quantity {
  display: inline;
  width: 50px;
  max-width: 90%;
}

/* =Misc styles
-------------------------------------------------------------- */
.edd-hide-on-empty.cart-empty {
  display: none;
}

.edd-hide-on-empty.cart-not.empty {
  display: block;
}

.edd-cart-ajax {
  margin: 0 8px 0 4px;
  position: relative;
  top: 2px;
  background: none;
  border: none;
  padding: 0;
}

.edd-cart-number-of-items {
  font-style: italic;
  color: grey;
}

.edd-cart-meta.edd_subtotal {
  font-weight: bold;
  font-style: italic;
}

.edd-cart-meta.edd_cart_tax {
  font-size: 1em;
  font-style: italic;
}

/** Since this is a LI, make sure to not italicize any list item images */
.edd-cart-meta.edd_cart_tax::before {
  font-style: normal;
}

.edd-cart-meta.edd_total {
  font-weight: bold;
}

.edd-cart-meta {
  padding: 2px 5px;
}

.edd-cart-meta.edd_subtotal,
.edd-cart-meta.edd_total {
  background-color: #f9f9f9;
}

/** Old Error Styles */
/* =Error styles
-------------------------------------------------------------- */
.edd_errors:not(.edd-alert) {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #E6DB55;
  margin: 0 0 2.5rem;
  background: #FFFFE0;
  color: #333;
}

.edd_error {
  padding: 10px;
}

p.edd_error {
  margin: 0 !important;
}

/* =Success Message styles
-------------------------------------------------------------- */
.edd_success:not(.edd-alert) {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #b3ce89;
  margin: 20px 0;
  background: #d5eab3;
  color: #567622;
  padding: 6px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/** End old Error */
/** Usage Is as Follows */
/* <div class="edd-alert edd-alert-error">This is your error message</div> */
/* Replace edd-error with the class of your choice */
/* Alert Styles */
.edd-alert {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid transparent;
  vertical-align: middle;
}

.edd-alert p {
  padding: 0;
}

.edd-alert p:not(:last-child) {
  margin-bottom: 5px;
}

.edd-alert p:last-child {
  margin-bottom: 0;
}

.edd-alert-error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.edd-alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.edd-alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.edd-alert-warn {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* Tweaks */
.edd-input.required,
.edd-select.required {
  color: inherit;
}

.edd-input,
.edd-select {
  display: block;
  width: 100%;
}

.edd_cart_remove_item_btn {
  display: inline-block;
  opacity: .5;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.edd-variable-pricing-desc {
  opacity: 0.5;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.single-download .edd_purchase_submit_wrapper a,
.edd_go_to_market_freeze,
.edd-submit {
  border-radius: 1.55em !important;
  text-align: center;
}
