/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
  background-color: #EEEEEE;
  color: #B0B0B0;
  font-family: Roboto;
  font-size: 13px;
  line-height: 1.5em;
  background-image: url(../images/MB-Background-Repeat-V1-Lighter.png);
  background-size: contain;
}

body > .container-fluid {
  background-color: #FFFFFF;
  max-width: 1140px;
}

img, svg, iframe {
  max-width: 100%;
}

h1 {
  color: rgb(39, 39, 39);
  font-family: Roboto Condensed;
  font-size: 34px;
  letter-spacing: 1px;
  line-height: 1;
}

h2 {
  color: rgb(0, 0, 0);
  font-family: Roboto Condensed;
  font-size: 26px;
}

h3 {
  color: #49494A;
  font-family: Roboto Condensed;
  font-size: 16px;
}

p {
  line-height: 1.5em;
}

a,
.btn-link {
  color: rgb(0, 0, 0);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  color: rgb(74, 144, 226);
}

/* General Component Styles */
.row > .row {
  margin-left: 0;
  margin-right: 0;
}

section[class^="component"] {
  padding: 60px 0;
}

section.headline {
  margin-bottom: 15px;
}

/* Utility Classes */
.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;

  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.row-reverse {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.square-img-container {
  flex-grow: 1;
  padding: 0;
  position: relative;
}

/* Magical CSS hack to maintain 1:1 Aspect Ratio */
.square-img-container::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.square-img-container .square-img-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
.square-row > [class^="col-"] {
  min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
  .square-row > .col-md-6 {
    min-height: calc(100vw / 2); /* half the view width */
  }

  .square-row > .col-md-4 {
    min-height: calc(100vw / 3); /* third the view width */
  }

  .square-row > .col-md-3 {
    min-height: calc(100vw / 4); /* fourth the view width */
  }
}

@media(min-width: 1140px) {
  .square-row > .col-md-6 {
    min-height: calc(1140px / 2); /* half the container width */
  }

  .square-row > .col-md-4 {
    min-height: calc(1140px / 3); /* third the container width */
  }

  .square-row > .col-md-3 {
    min-height: calc(1140px / 4); /* fourth the container width */
  }
}

/* Other bootstrap overrides
------------------------------*/
.dropdown-menu {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
  background-color: rgb(0, 0, 0);
}

.panel {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  margin: 0 0 20px 0;
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 10px 15px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  color: inherit;
  font-size: 16px;
  margin: 0;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 10px 15px;
}

/* Buttons */
.btn {
  border-radius: 4px;
  border: none;
  font-size: 13px;
  letter-spacing: 0.077em;
  padding: 1.2em 5em;
  white-space: normal;
}

.btn-small {
  border: 2px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
  color: #FFFFFF !important;
}

.btn-link {
  padding: 1.2em 0;
}

.btn-primary {
  background-color: rgb(0, 0, 0);
  color: #FFFFFF;
  font-family: Roboto;
  font-size: 13px;
  letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
  background-color: rgb(74, 144, 226);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #49494A;
  color: #FFFFFF;
  font-family: Roboto;
  font-size: 13px;
  letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
  background-color: rgb(74, 144, 226);
  color: #FFFFFF;
}

.btn-empty {
  background-color: transparent;
  border: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
  background-color: #49494A;
}

/* Index
------------------------------*/

/* Subscribe Flow
------------------------------*/
.sf-header {
  padding: 50px 0 15px;
}

.sf-grid {
  display: -webkit-flex;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;

  margin: 20px 0;
}

.sf-grid__container {
  display: -webkit-flex;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;

  padding: .9375rem 0;
}

.sf-item {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;

  border: 1px solid #E1E1E1;
  margin: 20px;
  text-align: center;
  padding: 20px;
}

.sf-item, .sf-item__content {
  display: -webkit-flex;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sf-item__content {
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.sf-item__name {
  margin: 1em 0;
}

.sf-item * {
  max-width: 100%;
}

/* Survey Forms
------------------------------*/
.survey h2 {
  margin: 0 0 1em 0;
}

.survey .radio input[type="radio"],
.survey .checkbox input[type="checkbox"] {
  margin: 0 0.5em 0 0;
}

/* Sold Out
------------------------------*/
.sold-out-image {
  height: 171px;
  width: 195px;
  margin: auto;
  margin-bottom: 38px;
}

/* Orders List
------------------------------*/
.orders-list {
  width: 100%;
  margin: 25px 0;
}
.orders-list h1 {
  text-align: center;
  color: rgb(39, 39, 39);
}
.orders-list .panel {
  width: 100%;
}

/* Checkout
------------------------------*/
.checkout_content {
  margin-top: 0;
  overflow: auto;
  padding: 50px 0 60px;
}

.checkout_content #add_coupon_code {
  padding: .375rem 1rem;
  width: auto;
}

.checkout_content #checkout_button {
  background-color: rgb(0, 0, 0);
  border: none;
  border-radius: 25px;
  color: #FFFFFF;
  font-family: Roboto;
  font-size: 13px;
  letter-spacing: 0.167em;
  padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
  background-color: rgb(74, 144, 226);
  color: #FFFFFF;
}

/* Thank You
------------------------------*/
.checkout_content section {
  border-color: #F5F5F5;
}

.checkout_content h1 {
  margin: 0 0 25px 0;
  text-align: center;
}

.cart_listing table {
  border-color: #F5F5F5;
}

/* Account
------------------------------*/
.account-header {
  margin: 50px 0 25px 0;
  padding: 0 15px;
}

.account-header h1,
.account-header h2 {
  margin: 0 0 15px 0;
}

.account-header .gift-card-container {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.account-header .gift-card-balance {
  margin: 0 0 15px 0;
}

.my-account {
  margin: 25px 0 50px 0;
}

.address-container {
  width: 100%;
}

.address-panel .inner-address-row {
  padding: 0;
}

.address-panel .address-edit-btn {
  min-width: auto;
  padding: 10px;
}

.address-info #is_primary {
  margin: 0;
  width: auto;
}

.address-container {
  width: 100%;
}

.errors {
  margin: 25px 0;
}

.cratejoy-loading-icon {
  color: rgb(0, 0, 0);
}

.skip-dialog .row {
  display: block;
  text-align: center;
}

.skip-dialog h4 {
  margin: 0 0 22px 0;
}

.panel-sub-confirm {
  box-shadow: none;
}

.panel-sub-confirm form div:last-child {
  display: block;
}

#skip_button,
input[type="radio"] + label.cj-btn {
  background-color: transparent;
  border: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  letter-spacing: 1px;
  text-transform: uppercase;
}

#skip_button:hover,
#skip_button:focus,
#skip_button:active,
input[type="radio"]:checked + label.cj-btn, #skip_button.skipped {
  background-color: rgb(74, 144, 226);
  border-color: rgb(74, 144, 226);
  text-decoration: none;
}
.radio_btn{
  display:none;
}
.mob_btn{
  display:none;
}
/* Media Queries
------------------------------*/
@media (max-width: 767px) {
  /* Used to reverse a row when it wraps on smaller screens */
  .desk_btn{
    display:none;
  }
  .mob_btn{
    display:block;
  }
  .tr_mob_item.sf-grid__container{
    padding: 0;
  }
  .tr_mob_item.sf-grid__container .sf-item{
    padding: 10px;
    margin: 0 0 15px;
  }
  .tr_mob_content{
    display: flex !important;
    width: 100%;
    flex-direction: row !important;
    align-items: center;
  }
  .tr_mob_content .item_img_holder{
    width:20%;
  }
  .tr_mob_content .content_holder{
    width:80%;
    padding: 0 20px;
  }
  .mob_btn.sf-item__name {
    margin-top: 0 !important;
  }
  fieldset.mob_btn label.btn-primary{
    padding: 7px 30px;
  }
  .row-sm-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -moz-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .panel-cratejoy .pull-right,
  .panel-cratejoy .pull-left,
  .skip-dialog .pull-right,
  .skip-dialog .pull-left,
  .subscription_cancel .pull-right,
  .subscription_cancel .pull-left,
  #edit-subscription-form .pull-right,
  #edit-subscription-form .pull-left {
    float: none;
    width: 100%;
    margin: 10px 0;
  }
}

@media (min-width: 768px) {
  .account-header .gift-card-container {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .account-header .gift-card-balance {
    margin: 0;
  }
}

@media (min-width: 992px) {
  .account-header h1,
  .account-header h2 {
    margin: 0;
  }
}

/*
 * components/checkout/cmp_233b04bb-12df-4196-b2ff-bd65cace922e/component.css
 */
#cmp_233b04bb-12df-4196-b2ff-bd65cace922e .checkout_content {
  overflow: auto;
}

#cmp_233b04bb-12df-4196-b2ff-bd65cace922e .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_233b04bb-12df-4196-b2ff-bd65cace922e .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_233b04bb-12df-4196-b2ff-bd65cace922e  {
	padding-top: 0;
}


/*
 * components/customer/account/cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8/component.css
 */
#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 {
	background-color: #FFFFFF;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/account/cmp_5da543d1-07ce-4020-a52f-78e431b746bf/component.css
 */

/*
 * components/customer/edit/cmp_af7cb9c6-c1b1-4dea-b023-ba1f90b859f1/component.css
 */

/*
 * components/customer/forgot_password/cmp_994f4c1b-6acb-4534-81d4-d97e6cd0de74/component.css
 */
#cmp_994f4c1b-6acb-4534-81d4-d97e6cd0de74 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775/component.css
 */
#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 {
	background-color: #FFFFFF;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 h1 {
	color: rgb(39, 39, 39);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/login/cmp_043fff11-5baf-4330-bde0-f038abd9c1b0/component.css
 */
#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 {
	background-color: #FFFFFF;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 h1 {
	color: rgb(39, 39, 39);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/login/cmp_bbd446e2-6046-4cde-ba4e-f7b3db743e66/component.css
 */
#cmp_bbd446e2-6046-4cde-ba4e-f7b3db743e66 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/order/cmp_2ba528b5-ff94-4114-b156-6e367d3d1dca/component.css
 */

/*
 * components/customer/orders/cmp_76f38fdf-8c63-4d20-8abc-ad0e2aa9cb28/component.css
 */

/*
 * components/customer/password_reset/cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9/component.css
 */
#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 {
	background-color: #FFFFFF;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 h1 {
	color: rgb(39, 39, 39);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/password_reset/cmp_1051f07a-8f76-4f37-8cbe-526708bb6fad/component.css
 */
#cmp_1051f07a-8f76-4f37-8cbe-526708bb6fad {
    padding:  0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_178aecbf-119f-478d-8609-060a66376308/component.css
 */
#cmp_178aecbf-119f-478d-8609-060a66376308 {
	background-color: #FFFFFF;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/thank_you/cmp_394a401c-616c-43e5-a098-9385595f734b/component.css
 */
#cmp_394a401c-616c-43e5-a098-9385595f734b {
	background-color: #FFFFFF;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/thank_you/cmp_cb0b0735-1ac3-4a3f-b0d3-251a0125fdcf/component.css
 */

/*
 * components/customer/thank_you/cmp_e13aa786-dc11-4563-bd21-edfa5b568b24/component.css
 */
#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 {
	padding: 0;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/global/cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e/component.css
 */
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e.footer {
	background-color: #FAFAFA;
	color: #B0B0B0;
	font-family: Roboto;
	padding: 10px 0;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social svg path {
	fill: #49494A;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social a:hover svg path,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social a:focus svg path,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social a:active svg path {
	fill: rgb(0, 0, 0);
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e.footer .navbar-toggler {
	color: rgb(0, 0, 0);
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc img {
	padding: 15px 0;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc p,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p a:hover,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p a:focus,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-directory {
	text-align: center;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-item {
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;

	padding: 8px 18px;
	position: relative;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-link {
	color: #49494A;
	font-family: Roboto;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-link:hover,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-link:focus,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-link:active {
	color: rgb(0, 0, 0);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .col-sm-12,
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

@media (min-width: 768px) {
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e.footer {
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		padding: 25px 0;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc p {
		display: block;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466/component.css
 */
#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 {
	background-color: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 h1 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 h2 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 h3 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 p {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 .btn:hover {
	background-color: ;
	color: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466  {
	padding-top: 0;
}
/*
 * components/global/cmp_4d33d439-2748-4f60-8e43-246797e2ffd5/component.css
 */
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar {
	background-color: #FFFFFF;
	border-radius: 0;
	padding: 0;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar a:hover,
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar a:focus,
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar a:active {
	color: rgb(59, 59, 59);
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-brand {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;

	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;

	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-brand img {
	max-width: 100%;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar .navbar-toggler {
	background-color: rgb(0, 0, 0);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar .navbar-toggler:hover,
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar .navbar-toggler:focus,
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar .navbar-toggler:active {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-direction: row;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0;
	padding: 15px 0;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav li {
	padding: 10px 0;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav .nav-link {
	color: rgb(46, 46, 46);
	font-family: Roboto Condensed;
	font-size: 13px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar {
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		padding: 15px 0 0 0;
	}
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-toggleable-sm {
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;

	}
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		-webkit-justify-content: space-around;
		-moz-justify-content: space-around;
		-ms-justify-content: space-around;
		justify-content: space-around;

		padding: 0 0 15px 0;
	}
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/index/cmp_16f08f25-f152-42f6-af90-55d32669f1af/component.css
 */
#cmp_16f08f25-f152-42f6-af90-55d32669f1af {
	background-color: #FFFFFF;
}

#cmp_16f08f25-f152-42f6-af90-55d32669f1af h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_16f08f25-f152-42f6-af90-55d32669f1af h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_16f08f25-f152-42f6-af90-55d32669f1af h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_16f08f25-f152-42f6-af90-55d32669f1af p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_16f08f25-f152-42f6-af90-55d32669f1af ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

#cmp_16f08f25-f152-42f6-af90-55d32669f1af ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

/*
 * components/index/cmp_27e654f5-9971-453c-88ee-06f586db8f9a/component.css
 */
#cmp_27e654f5-9971-453c-88ee-06f586db8f9a {
	padding: 0;
}

#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .hero-content h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_27e654f5-9971-453c-88ee-06f586db8f9a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_2a195e4c-ba47-4ff6-a42a-c13c5c9c51bf/component.css
 */
#cmp_2a195e4c-ba47-4ff6-a42a-c13c5c9c51bf {
	background-color: #FFFFFF;
}

#cmp_2a195e4c-ba47-4ff6-a42a-c13c5c9c51bf h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_2a195e4c-ba47-4ff6-a42a-c13c5c9c51bf h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_2a195e4c-ba47-4ff6-a42a-c13c5c9c51bf h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_2a195e4c-ba47-4ff6-a42a-c13c5c9c51bf p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_2a195e4c-ba47-4ff6-a42a-c13c5c9c51bf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

#cmp_2a195e4c-ba47-4ff6-a42a-c13c5c9c51bf ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

/*
 * components/index/cmp_38404898-0c29-4192-a9dc-f67d2f93a4e7/component.css
 */
#cmp_38404898-0c29-4192-a9dc-f67d2f93a4e7 {
	background-color: #FFFFFF;
}

#cmp_38404898-0c29-4192-a9dc-f67d2f93a4e7 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_38404898-0c29-4192-a9dc-f67d2f93a4e7 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_38404898-0c29-4192-a9dc-f67d2f93a4e7 h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_38404898-0c29-4192-a9dc-f67d2f93a4e7 p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_38404898-0c29-4192-a9dc-f67d2f93a4e7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

#cmp_38404898-0c29-4192-a9dc-f67d2f93a4e7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

/*
 * components/index/cmp_60e69095-cbd8-42a1-a480-d67581e57aa2/component.css
 */
#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 {
	background-color: rgb(248, 248, 248);
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 h3 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 p {
	color: rgb(102, 102, 102);
	font-family: Roboto;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 .btn:hover {
	background-color: rgb(149, 149, 149);
	color: #FFFFFF;
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(102, 102, 102);
	font-family: Roboto;
	font-size: 19px;
}

#cmp_60e69095-cbd8-42a1-a480-d67581e57aa2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(102, 102, 102);
	font-family: Roboto;
	font-size: 19px;
}

/*
 * components/index/cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7/component.css
 */
#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 {
	padding: 0;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content h2 {
	color: rgb(87, 87, 87);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content h3 {
	color: rgb(87, 87, 87);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content p {
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_99667c73-3487-4738-b5b9-0b744e68a2e7/component.css
 */
#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 {
	padding: 0;
}

#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .hero-content h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(255, 255, 255);
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_99667c73-3487-4738-b5b9-0b744e68a2e7 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/miss-musclebox/cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910/component.css
 */
#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 {
	background-color: #FFFFFF;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/miss-musclebox-s/cmp_3087ad35-15ad-45db-a303-02fb3e6850ed/component.css
 */
#cmp_3087ad35-15ad-45db-a303-02fb3e6850ed {
	background-color: #FFFFFF;
}

#cmp_3087ad35-15ad-45db-a303-02fb3e6850ed h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_3087ad35-15ad-45db-a303-02fb3e6850ed h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_3087ad35-15ad-45db-a303-02fb3e6850ed h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3087ad35-15ad-45db-a303-02fb3e6850ed p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_3087ad35-15ad-45db-a303-02fb3e6850ed ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_3087ad35-15ad-45db-a303-02fb3e6850ed ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/miss-musclebox-signup/cmp_24c04dac-e7d5-49bc-844e-4136e2508974/component.css
 */
#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 {
	background-color: #FFFFFF;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_24c04dac-e7d5-49bc-844e-4136e2508974 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/miss-musclebox-subscription/cmp_06693313-433a-4a1f-bc98-87b9000809c6/component.css
 */
#cmp_06693313-433a-4a1f-bc98-87b9000809c6 {
	padding: 0;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content {
	background-color: rgb(247, 247, 247);
	padding: 20px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content h1 {
	color: rgb(47, 47, 47);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content h2 {
	color: rgb(47, 47, 47);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content h3 {
	color: rgb(47, 47, 47);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content p {
	color: rgb(47, 47, 47);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content .btn {
	background-color: rgb(247, 247, 247);
	color: rgb(247, 247, 247);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content .btn:hover {
	background-color: rgb(247, 247, 247);
	color: rgb(247, 247, 247);
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/miss-musclebox-subscription/cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb/component.css
 */
#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb {
	padding: 0;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content {
	background-color: rgb(247, 247, 247);
	padding: 20px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content h1 {
	color: rgb(47, 47, 47);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content p {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content .btn {
	background-color: rgb(247, 247, 247);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/miss-musclebox-subscription/cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421/component.css
 */
#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 {
	padding: 0;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content {
	background-color: rgb(247, 247, 247);
	padding: 20px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content h1 {
	color: rgb(47, 47, 47);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content h2 {
	color: rgb(47, 47, 47);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content h3 {
	color: rgb(47, 47, 47);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content p {
	color: rgb(47, 47, 47);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content .btn {
	background-color: rgb(255, 160, 138);
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content .btn:hover {
	background-color: rgb(255, 106, 73);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/miss-musclebox-subscription/cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619/component.css
 */
#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 {
	background-color: #FFFFFF;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/musclebox/cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9/component.css
 */
#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 {
	background-color: #FFFFFF;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/musclebox-s/cmp_54e04669-5ef5-4459-9e9e-e3c45340cfbe/component.css
 */
#cmp_54e04669-5ef5-4459-9e9e-e3c45340cfbe {
	background-color: #FFFFFF;
}

#cmp_54e04669-5ef5-4459-9e9e-e3c45340cfbe h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_54e04669-5ef5-4459-9e9e-e3c45340cfbe h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_54e04669-5ef5-4459-9e9e-e3c45340cfbe h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_54e04669-5ef5-4459-9e9e-e3c45340cfbe p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_54e04669-5ef5-4459-9e9e-e3c45340cfbe ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_54e04669-5ef5-4459-9e9e-e3c45340cfbe ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/musclebox-signup/cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95/component.css
 */
#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 {
	background-color: #FFFFFF;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_62f344d2-28a7-4b85-a8d5-e93a57711a95 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/muscle-box-subscription/cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492/component.css
 */
#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 {
	background-color: #FFFFFF;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/muscle-box-subscription/cmp_4d24449c-e628-4548-8bfc-6ee9e139b047/component.css
 */
#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 {
	padding: 0;
}

#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .hero-content {
	background-color: rgb(247, 247, 247);
	padding: 20px;
}

#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .hero-content h1 {
	color: rgb(53, 53, 53);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .hero-content h2 {
	color: rgb(53, 53, 53);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .hero-content h3 {
	color: rgb(53, 53, 53);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .hero-content p {
	color: rgb(53, 53, 53);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .hero-content .btn {
	background-color: rgb(247, 247, 247);
	color: rgb(247, 247, 247);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .hero-content .btn:hover {
	background-color: rgb(247, 247, 247);
	color: rgb(247, 247, 247);
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_4d24449c-e628-4548-8bfc-6ee9e139b047 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/muscle-box-subscription/cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc/component.css
 */
#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc {
	padding: 0;
}

#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .hero-content {
	background-color: rgb(247, 247, 247);
	padding: 20px;
}

#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .hero-content p {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .hero-content .btn {
	background-color: rgb(247, 247, 247);
	color: rgb(247, 247, 247);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .hero-content .btn:hover {
	background-color: rgb(247, 247, 247);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6dbd018d-d102-47fa-8d42-d12d4ecd24fc .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/muscle-box-subscription/cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1/component.css
 */
#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 {
	padding: 0;
}

#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .hero-content {
	background-color: rgb(247, 247, 247);
	padding: 20px;
}

#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .hero-content h1 {
	color: rgb(51, 51, 51);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .hero-content .btn {
	background-color: rgb(79, 79, 79);
	color: rgb(247, 247, 247);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .hero-content .btn:hover {
	background-color: rgb(5, 5, 5);
	color: rgb(247, 247, 247);
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b9ba3340-e99c-4146-ac8c-fe97f4c189e1 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/shop/listing/cmp_35e63da8-4d08-4be2-8d5b-ae5fa6d7a4f0/component.css
 */
#cmp_35e63da8-4d08-4be2-8d5b-ae5fa6d7a4f0 {
    padding: 20px 0;

	-webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

#cmp_35e63da8-4d08-4be2-8d5b-ae5fa6d7a4f0 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_3abb2b69-89b3-4b27-b04e-7c7eb0472af6/component.css
 */
.shop-listing {
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.shop-listing-item {
	color: #B0B0B0;
}

.shop-listing-item:hover,
.shop-listing-item:focus {
	text-decoration: none;
}

.shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

.shop-listing-item__name {
	margin: 10px 0;
}

.shop-listing-item__price {
	margin: 10px 0 30px;
}

.product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

.product_page a,
.next_page a,
.prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

.product_page.active a,
.product_page a:hover, .product_page a:focus,
.next_page a:hover, .next_page a:focus,
.prev_page a:hover, .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_c6b0d40b-45ae-4c6c-bf59-d841f5d01307/component.css
 */
#cmp_c6b0d40b-45ae-4c6c-bf59-d841f5d01307 {
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 35px;
	padding: 20px 0;

    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

#cmp_c6b0d40b-45ae-4c6c-bf59-d841f5d01307 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1/component.css
 */
#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 {
	background-color: #FFFFFF;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 48px;
	margin: 0 0 25px 0;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1  {
	padding-bottom: 20px;
}
/*
 * components/shop/product/cmp_16512474-4436-40dc-9174-21615bab587c/component.css
 */
#cmp_16512474-4436-40dc-9174-21615bab587c {
	padding: 0;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content {
	background-color: rgb(226, 226, 226);
	padding: 20px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content .btn {
	background-color: rgb(226, 226, 226);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 24px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content .btn:hover {
	background-color: rgb(226, 226, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/shop/product/cmp_26070b87-33c4-4892-8e78-c7a6247e5590/component.css
 */
#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 {
	background-color: #FFFFFF;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 h1 {
	color: rgb(39, 39, 39);
	font-family: Josefin Sans;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

/*
 * components/shop/product/cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3/component.css
 */
#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 {
	background-color: #FFFFFF;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/shop/product/cmp_4d54c098-61b5-40ef-a24b-801ef67200ad/component.css
 */
#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product select {
	width: auto;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa/component.css
 */
#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa {
	background-color: #FFFFFF;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

/*
 * components/shop/product/cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e/component.css
 */
#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e {
	padding: 0;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content {
	background-color: rgb(226, 226, 226);
	padding: 20px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content .btn {
	background-color: rgb(226, 226, 226);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 24px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content .btn:hover {
	background-color: rgb(226, 226, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/shop/product/cmp_f8871687-3813-4549-aae1-23f057af9241/component.css
 */
#cmp_f8871687-3813-4549-aae1-23f057af9241 {
	background-color: #FFFFFF;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

/*
 * components/subscribe/cmp_47174ac0-9173-4727-9f43-e5b5e3663439/component.css
 */
#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 {
	background-color: #FFFFFF;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 48px;
	margin: 0 0 25px 0;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9/component.css
 */
#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 {
	background-color: #FFFFFF;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_eedb4096-6411-4a28-8b05-f1d254c9f0f0/component.css
 */
/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #EEEEEE;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	line-height: 1.5em;
 	background-image: url(../images/MB-Background-Repeat-V1-Lighter.png);
    background-size: contain;
}

body > .container-fluid {
	background-color: #FFFFFF;
	max-width: 1140px;
}

img, svg, iframe {
	max-width: 100%;
}

h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	letter-spacing: 1px;
	line-height: 1;
}

h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
}

h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(0, 0, 0);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(74, 144, 226);
}

/* General Component Styles */
.row > .row {
	margin-left: 0;
	margin-right: 0;
}

section[class^="component"] {
	padding: 60px 0;
}

section.headline {
	margin-bottom: 15px;
}

/* Utility Classes */
.hidden {
	display: none;
}

.text-center {
	text-align: center;
}

.flex-center {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.row-reverse {
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.square-img-container {
	flex-grow: 1;
	padding: 0;
	position: relative;
}

/* Magical CSS hack to maintain 1:1 Aspect Ratio */
.square-img-container::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.square-img-container .square-img-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
.square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	.square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	.square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	.square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	.square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	.square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	.square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/* Other bootstrap overrides
------------------------------*/
.dropdown-menu {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(0, 0, 0);
}

.panel {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	margin: 0 0 20px 0;
}

.panel-body {
	padding: 15px;
}

.panel-heading {
	border-bottom: 1px solid transparent;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	padding: 10px 15px;
}

.panel-heading > .dropdown .dropdown-toggle {
	color: inherit;
}

.panel-title {
	color: inherit;
	font-size: 16px;
	margin: 0;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
	color: inherit;
}

.panel-footer {
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	padding: 10px 15px;
}

/* Buttons */
.btn {
	border-radius: 4px;
	border: none;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 1.2em 5em;
	white-space: normal;
}

.btn-small {
	border: 2px solid rgb(0, 0, 0);
	color: rgb(0, 0, 0);
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(0, 0, 0);
	border-color: rgb(0, 0, 0);
	color: #FFFFFF !important;
}

.btn-link {
	padding: 1.2em 0;
}

.btn-primary {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: #49494A;
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(0, 0, 0);
	color: rgb(0, 0, 0);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: #49494A;
}

/* Index
------------------------------*/

/* Subscribe Flow
------------------------------*/
.sf-header {
	padding: 50px 0 15px;
}

.sf-grid {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	margin: 20px 0;
}

.sf-grid__container {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	padding: .9375rem 0;
}

.sf-item {
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;

	border: 1px solid #E1E1E1;
	margin: 20px;
	text-align: center;
	padding: 20px;
}

.sf-item, .sf-item__content {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.sf-item__content {
	-webkit-flex: 1 1 auto;
	-moz-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.sf-item__name {
	margin: 1em 0;
}

.sf-item * {
	max-width: 100%;
}

/* Survey Forms
------------------------------*/
.survey h2 {
	margin: 0 0 1em 0;
}

.survey .radio input[type="radio"],
.survey .checkbox input[type="checkbox"] {
	margin: 0 0.5em 0 0;
}

/* Sold Out
------------------------------*/
.sold-out-image {
	height: 171px;
	width: 195px;
	margin: auto;
	margin-bottom: 38px;
}

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(39, 39, 39);
}
.orders-list .panel {
	width: 100%;
}

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
	padding: 50px 0 60px;
}

.checkout_content #add_coupon_code {
	padding: .375rem 1rem;
	width: auto;
}

.checkout_content #checkout_button {
	background-color: rgb(0, 0, 0);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

/* Thank You
------------------------------*/
.checkout_content section {
	border-color: #F5F5F5;
}

.checkout_content h1 {
	margin: 0 0 25px 0;
	text-align: center;
}

.cart_listing table {
	border-color: #F5F5F5;
}

/* Account
------------------------------*/
.account-header {
	margin: 50px 0 25px 0;
	padding: 0 15px;
}

.account-header h1,
.account-header h2 {
	margin: 0 0 15px 0;
}

.account-header .gift-card-container {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.account-header .gift-card-balance {
	margin: 0 0 15px 0;
}

.my-account {
	margin: 25px 0 50px 0;
}

.address-container {
	width: 100%;
}

.address-panel .inner-address-row {
	padding: 0;
}

.address-panel .address-edit-btn {
	min-width: auto;
	padding: 10px;
}

.address-info #is_primary {
	margin: 0;
	width: auto;
}

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(0, 0, 0);
}

.skip-dialog .row {
	display: block;
	text-align: center;
}

.skip-dialog h4 {
	margin: 0 0 22px 0;
}

.panel-sub-confirm {
	box-shadow: none;
}

.panel-sub-confirm form div:last-child {
	display: block;
}

#skip_button,
input[type="radio"] + label.cj-btn {
	background-color: transparent;
	border: 1px solid rgb(0, 0, 0);
	color: rgb(0, 0, 0);
	letter-spacing: 1px;
	text-transform: uppercase;
}

#skip_button:hover,
#skip_button:focus,
#skip_button:active,
input[type="radio"]:checked + label.cj-btn, #skip_button.skipped {
	background-color: rgb(74, 144, 226);
	border-color: rgb(74, 144, 226);
	text-decoration: none;
}
.radio_btn{
  display:none;
}
/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	/* Used to reverse a row when it wraps on smaller screens */
	.row-sm-reverse {
		-webkit-flex-wrap: wrap-reverse;
		-moz-flex-wrap: wrap-reverse;
		-ms-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	.panel-cratejoy .pull-right,
	.panel-cratejoy .pull-left,
	.skip-dialog .pull-right,
	.skip-dialog .pull-left,
	.subscription_cancel .pull-right,
	.subscription_cancel .pull-left,
	#edit-subscription-form .pull-right,
	#edit-subscription-form .pull-left {
		float: none;
		width: 100%;
		margin: 10px 0;
	}
}

@media (min-width: 768px) {
	.account-header .gift-card-container {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.account-header .gift-card-balance {
		margin: 0;
	}
}

@media (min-width: 992px) {
	.account-header h1,
	.account-header h2 {
		margin: 0;
	}
}

/*
 * components/checkout/cmp_233b04bb-12df-4196-b2ff-bd65cace922e/component.css
 */
#cmp_233b04bb-12df-4196-b2ff-bd65cace922e .checkout_content {
  overflow: auto;
}

#cmp_233b04bb-12df-4196-b2ff-bd65cace922e .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_233b04bb-12df-4196-b2ff-bd65cace922e .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_233b04bb-12df-4196-b2ff-bd65cace922e  {
	padding-top: 0;
}


/*
 * components/customer/account/cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8/component.css
 */
#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 {
	background-color: #FFFFFF;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_0d823a66-2eb7-4d7c-83a1-78e06b69d1f8 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/account/cmp_5da543d1-07ce-4020-a52f-78e431b746bf/component.css
 */

/*
 * components/customer/edit/cmp_af7cb9c6-c1b1-4dea-b023-ba1f90b859f1/component.css
 */

/*
 * components/customer/forgot_password/cmp_994f4c1b-6acb-4534-81d4-d97e6cd0de74/component.css
 */
#cmp_994f4c1b-6acb-4534-81d4-d97e6cd0de74 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775/component.css
 */
#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 {
	background-color: #FFFFFF;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 h1 {
	color: rgb(39, 39, 39);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_de1f8440-b041-4c3b-b4d1-94e4fa30c775 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/login/cmp_043fff11-5baf-4330-bde0-f038abd9c1b0/component.css
 */
#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 {
	background-color: #FFFFFF;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 h1 {
	color: rgb(39, 39, 39);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_043fff11-5baf-4330-bde0-f038abd9c1b0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/login/cmp_bbd446e2-6046-4cde-ba4e-f7b3db743e66/component.css
 */
#cmp_bbd446e2-6046-4cde-ba4e-f7b3db743e66 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/order/cmp_2ba528b5-ff94-4114-b156-6e367d3d1dca/component.css
 */

/*
 * components/customer/orders/cmp_76f38fdf-8c63-4d20-8abc-ad0e2aa9cb28/component.css
 */

/*
 * components/customer/password_reset/cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9/component.css
 */
#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 {
	background-color: #FFFFFF;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 h1 {
	color: rgb(39, 39, 39);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_0908a752-3dfd-456e-84e0-a72faf59e2f9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/password_reset/cmp_1051f07a-8f76-4f37-8cbe-526708bb6fad/component.css
 */
#cmp_1051f07a-8f76-4f37-8cbe-526708bb6fad {
    padding:  0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_178aecbf-119f-478d-8609-060a66376308/component.css
 */
#cmp_178aecbf-119f-478d-8609-060a66376308 {
	background-color: #FFFFFF;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_178aecbf-119f-478d-8609-060a66376308 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/thank_you/cmp_394a401c-616c-43e5-a098-9385595f734b/component.css
 */
#cmp_394a401c-616c-43e5-a098-9385595f734b {
	background-color: #FFFFFF;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_394a401c-616c-43e5-a098-9385595f734b ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/customer/thank_you/cmp_cb0b0735-1ac3-4a3f-b0d3-251a0125fdcf/component.css
 */

/*
 * components/customer/thank_you/cmp_e13aa786-dc11-4563-bd21-edfa5b568b24/component.css
 */
#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 {
	padding: 0;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .hero-content .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_e13aa786-dc11-4563-bd21-edfa5b568b24 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/global/cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e/component.css
 */
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e.footer {
	background-color: #FAFAFA;
	color: #B0B0B0;
	font-family: Roboto;
	padding: 10px 0;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social svg path {
	fill: #49494A;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social a:hover svg path,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social a:focus svg path,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social a:active svg path {
	fill: rgb(0, 0, 0);
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e.footer .navbar-toggler {
	color: rgb(0, 0, 0);
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc img {
	padding: 15px 0;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc p,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p a:hover,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p a:focus,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-directory {
	text-align: center;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-item {
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;

	padding: 8px 18px;
	position: relative;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-link {
	color: #49494A;
	font-family: Roboto;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-link:hover,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-link:focus,
#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-list .footer-link:active {
	color: rgb(0, 0, 0);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .col-sm-12,
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

@media (min-width: 768px) {
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e.footer {
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		padding: 25px 0;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-cc p {
		display: block;
	}
	#cmp_1db3cda4-1715-4473-8659-d8fe4bc2699e .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466/component.css
 */
#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 {
	background-color: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 h1 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 h2 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 h3 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 p {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 .btn:hover {
	background-color: ;
	color: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_2d7fe8c7-ca0c-406f-a97e-9f0a0210e466  {
	padding-top: 0;
}
/*
 * components/global/cmp_4d33d439-2748-4f60-8e43-246797e2ffd5/component.css
 */
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar {
	background-color: #FFFFFF;
	border-radius: 0;
	padding: 0;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar a:hover,
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar a:focus,
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar a:active {
	color: rgb(59, 59, 59);
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-brand {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;

	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;

	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-brand img {
	max-width: 100%;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar .navbar-toggler {
	background-color: rgb(0, 0, 0);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar .navbar-toggler:hover,
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar .navbar-toggler:focus,
#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar .navbar-toggler:active {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-direction: row;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0;
	padding: 15px 0;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav li {
	padding: 10px 0;
}

#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav .nav-link {
	color: rgb(46, 46, 46);
	font-family: Roboto Condensed;
	font-size: 13px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5.navbar {
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		padding: 15px 0 0 0;
	}
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-toggleable-sm {
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;

	}
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		-webkit-justify-content: space-around;
		-moz-justify-content: space-around;
		-ms-justify-content: space-around;
		justify-content: space-around;

		padding: 0 0 15px 0;
	}
	#cmp_4d33d439-2748-4f60-8e43-246797e2ffd5 .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/index/cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7/component.css
 */
#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 {
	padding: 0;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content h2 {
	color: rgb(87, 87, 87);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content h3 {
	color: rgb(87, 87, 87);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content p {
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .hero-content .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_90b3570d-bede-4c1d-8f88-a4b6b1ae6cd7 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/miss-musclebox/cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910/component.css
 */
#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 {
	background-color: #FFFFFF;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_1d68ca34-6fd6-4b91-be7e-7c0a0ee90910 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/miss-musclebox-subscription/cmp_06693313-433a-4a1f-bc98-87b9000809c6/component.css
 */
#cmp_06693313-433a-4a1f-bc98-87b9000809c6 {
	padding: 0;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content {
	background-color: rgb(247, 247, 247);
	padding: 20px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content h1 {
	color: rgb(47, 47, 47);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content h2 {
	color: rgb(47, 47, 47);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content h3 {
	color: rgb(47, 47, 47);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content p {
	color: rgb(47, 47, 47);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content .btn {
	background-color: rgb(247, 247, 247);
	color: rgb(247, 247, 247);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .hero-content .btn:hover {
	background-color: rgb(247, 247, 247);
	color: rgb(247, 247, 247);
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_06693313-433a-4a1f-bc98-87b9000809c6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/miss-musclebox-subscription/cmp_6f64d0e1-f781-42d1-acaf-2032e7e1f59f/component.css
 */
#cmp_6f64d0e1-f781-42d1-acaf-2032e7e1f59f {
	background-color: #FFFFFF;
}

#cmp_6f64d0e1-f781-42d1-acaf-2032e7e1f59f h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_6f64d0e1-f781-42d1-acaf-2032e7e1f59f h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_6f64d0e1-f781-42d1-acaf-2032e7e1f59f h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_6f64d0e1-f781-42d1-acaf-2032e7e1f59f p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_6f64d0e1-f781-42d1-acaf-2032e7e1f59f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_6f64d0e1-f781-42d1-acaf-2032e7e1f59f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/miss-musclebox-subscription/cmp_7e49bc90-767f-460e-bade-04376bc667e9/component.css
 */
#cmp_7e49bc90-767f-460e-bade-04376bc667e9 img {
	max-width: 100%;
}

/*
 * components/miss-musclebox-subscription/cmp_96e01485-8eeb-4b00-a2ad-5515d2268762/component.css
 */
#cmp_96e01485-8eeb-4b00-a2ad-5515d2268762 {
	background-color: #FFFFFF;
}

#cmp_96e01485-8eeb-4b00-a2ad-5515d2268762 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_96e01485-8eeb-4b00-a2ad-5515d2268762 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_96e01485-8eeb-4b00-a2ad-5515d2268762 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_96e01485-8eeb-4b00-a2ad-5515d2268762 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_96e01485-8eeb-4b00-a2ad-5515d2268762 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_96e01485-8eeb-4b00-a2ad-5515d2268762 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/miss-musclebox-subscription/cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb/component.css
 */
#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb {
	padding: 0;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content {
	background-color: rgb(247, 247, 247);
	padding: 20px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content h1 {
	color: rgb(47, 47, 47);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content p {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content .btn {
	background-color: rgb(247, 247, 247);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .hero-content .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b01bf70e-f4ad-4d4f-a0c8-7bde736959bb .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/miss-musclebox-subscription/cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421/component.css
 */
#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 {
	padding: 0;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content {
	background-color: rgb(247, 247, 247);
	padding: 20px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content h1 {
	color: rgb(47, 47, 47);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content h2 {
	color: rgb(47, 47, 47);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content h3 {
	color: rgb(47, 47, 47);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content p {
	color: rgb(47, 47, 47);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content .btn {
	background-color: rgb(255, 160, 138);
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .hero-content .btn:hover {
	background-color: rgb(255, 106, 73);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_dddb51b5-aa26-49c5-b22f-24cd9b211421 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/miss-musclebox-subscription/cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619/component.css
 */
#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 {
	background-color: #FFFFFF;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_eaef3613-b52f-4c22-8eb0-e11b0e58a619 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/musclebox/cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9/component.css
 */
#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 {
	background-color: #FFFFFF;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_d9c8617e-f57b-4c93-9623-58e4a54f5ca9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/muscle-box-subscription/cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492/component.css
 */
#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 {
	background-color: #FFFFFF;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 .btn:hover {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_03e61d94-fafb-4c4e-b73c-3e775a8e7492 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/muscle-box-subscription/cmp_86bc615e-64f2-4a8a-91c5-b7d5d671c1b0/component.css
 */
#cmp_86bc615e-64f2-4a8a-91c5-b7d5d671c1b0 img {
	max-width: 100%;
}

/*
 * components/muscle-box-subscription/cmp_f4425a39-eb67-4815-ad84-e3a8f5d9fd99/component.css
 */
#cmp_f4425a39-eb67-4815-ad84-e3a8f5d9fd99 {
	background-color: #FFFFFF;
}

#cmp_f4425a39-eb67-4815-ad84-e3a8f5d9fd99 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_f4425a39-eb67-4815-ad84-e3a8f5d9fd99 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_f4425a39-eb67-4815-ad84-e3a8f5d9fd99 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f4425a39-eb67-4815-ad84-e3a8f5d9fd99 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_f4425a39-eb67-4815-ad84-e3a8f5d9fd99 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_f4425a39-eb67-4815-ad84-e3a8f5d9fd99 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/shop/listing/cmp_35e63da8-4d08-4be2-8d5b-ae5fa6d7a4f0/component.css
 */
#cmp_35e63da8-4d08-4be2-8d5b-ae5fa6d7a4f0 {
    padding: 20px 0;

	-webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

#cmp_35e63da8-4d08-4be2-8d5b-ae5fa6d7a4f0 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_3abb2b69-89b3-4b27-b04e-7c7eb0472af6/component.css
 */
.shop-listing {
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.shop-listing-item {
	color: #B0B0B0;
}

.shop-listing-item:hover,
.shop-listing-item:focus {
	text-decoration: none;
}

.shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

.shop-listing-item__name {
	margin: 10px 0;
}

.shop-listing-item__price {
	margin: 10px 0 30px;
}

.product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

.product_page a,
.next_page a,
.prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

.product_page.active a,
.product_page a:hover, .product_page a:focus,
.next_page a:hover, .next_page a:focus,
.prev_page a:hover, .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_c6b0d40b-45ae-4c6c-bf59-d841f5d01307/component.css
 */
#cmp_c6b0d40b-45ae-4c6c-bf59-d841f5d01307 {
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 35px;
	padding: 20px 0;

    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

#cmp_c6b0d40b-45ae-4c6c-bf59-d841f5d01307 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1/component.css
 */
#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 {
	background-color: #FFFFFF;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 48px;
	margin: 0 0 25px 0;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_da9b6c6f-6b0d-4fa6-9034-58cc2bcdb9b1  {
	padding-bottom: 20px;
}
/*
 * components/shop/product/cmp_16512474-4436-40dc-9174-21615bab587c/component.css
 */
#cmp_16512474-4436-40dc-9174-21615bab587c {
	padding: 0;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content {
	background-color: rgb(226, 226, 226);
	padding: 20px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content .btn {
	background-color: rgb(226, 226, 226);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 24px;
}

#cmp_16512474-4436-40dc-9174-21615bab587c .hero-content .btn:hover {
	background-color: rgb(226, 226, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_16512474-4436-40dc-9174-21615bab587c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/shop/product/cmp_26070b87-33c4-4892-8e78-c7a6247e5590/component.css
 */
#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 {
	background-color: #FFFFFF;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 h1 {
	color: rgb(39, 39, 39);
	font-family: Josefin Sans;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

#cmp_26070b87-33c4-4892-8e78-c7a6247e5590 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

/*
 * components/shop/product/cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3/component.css
 */
#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 {
	background-color: #FFFFFF;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_4d03f934-a82c-41c8-8531-bc1e6ec65cf3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/shop/product/cmp_4d54c098-61b5-40ef-a24b-801ef67200ad/component.css
 */
#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product select {
	width: auto;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_4d54c098-61b5-40ef-a24b-801ef67200ad  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa/component.css
 */
#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa {
	background-color: #FFFFFF;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

#cmp_a4621828-f6b9-4fc0-b2e6-37100bc100fa ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

/*
 * components/shop/product/cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e/component.css
 */
#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e {
	padding: 0;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content {
	background-color: rgb(226, 226, 226);
	padding: 20px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 16px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content .btn {
	background-color: rgb(226, 226, 226);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 24px;
}

#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .hero-content .btn:hover {
	background-color: rgb(226, 226, 226);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_d6e19ecc-0152-46e8-a6d5-f698fc4f509e .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/shop/product/cmp_f8871687-3813-4549-aae1-23f057af9241/component.css
 */
#cmp_f8871687-3813-4549-aae1-23f057af9241 {
	background-color: #FFFFFF;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 h3 {
	color: rgb(145, 145, 145);
	font-family: Roboto Condensed;
	font-size: 19px;
	margin: 0 0 25px 0;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 p {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

#cmp_f8871687-3813-4549-aae1-23f057af9241 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 20px;
}

/*
 * components/subscribe/cmp_47174ac0-9173-4727-9f43-e5b5e3663439/component.css
 */
#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 {
	background-color: #FFFFFF;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 48px;
	margin: 0 0 25px 0;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_47174ac0-9173-4727-9f43-e5b5e3663439  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9/component.css
 */
#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 {
	background-color: #FFFFFF;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_55bb0fa4-20c2-4dec-9285-3798dcd7ecd9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_eedb4096-6411-4a28-8b05-f1d254c9f0f0/component.css
 */

/*
 * components/subscribe/cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34/component.css
 */
#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 {
	background-color: ;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 h1 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 h2 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 h3 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 p {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/subscribe_flow/addons_step/cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0/component.css
 */
#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 {
	background-color: #FFFFFF;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-products-row {
	border: 1px solid #D3D3D3;

	padding-left: 40px;
	padding-right: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	padding-top: 40px;
	padding-bottom: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product + .addons-product {
	border-top: 1px solid #D3D3D3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
	padding-right: 30px;

	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-image {
	width: 100%;
	height: 100%;
	min-height: 275px;

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	margin-bottom: 15px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top-right {
	text-align: right;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart {
	padding: 7px 12px;

	font-family: ;
	font-size: 13px;

	color: #FFFFFF;
	background-color: rgb(0, 0, 0);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #FFFFFF;
	background-color: rgb(74, 144, 226);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-name {
	font-size: 20px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-price {
	margin-bottom: 20px;

	font-size: 16px;
	color: #38BFC3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group .control-label {
	font-size: 12px;
	color: #9B9B9B;

	margin-bottom: 2px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group select {
	height: 30px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-cta-row {
	margin-top: 40px;

	text-align: center;
}


#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn {
	font-family: ;
	font-size: 13px;

	color: #FFFFFF;
	background-color: rgb(0, 0, 0);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: #FFFFFF;
	background-color: rgb(74, 144, 226);
}

@media only screen and (max-width : 768px) {
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left,
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
		-webkit-box-flex: 1 0 100%;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
	}

	.addons-product-right {
		margin-top: 40px;
	}

	 #cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
		padding-right: 0;
	}
}

/*
 * components/subscribe_flow/survey_step/cmp_7c719966-0bd6-4e10-bfbe-869e8008d94c/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_7c719966-0bd6-4e10-bfbe-869e8008d94c  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_a2d46458-8c64-4549-8f0f-0b25b69c43ac/component.css
 */
#cmp_a2d46458-8c64-4549-8f0f-0b25b69c43ac {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_28de8fef-5119-4715-86bc-f3bb16a910d0/component.css
 */
#cmp_28de8fef-5119-4715-86bc-f3bb16a910d0 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_9b82ba23-d47e-4acc-b91d-9d163a56fe3e/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_17950be4-c35a-47bf-8253-561873562d65/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_24777f28-c33b-487f-91e2-b28eec745254/component.css
 */
#cmp_24777f28-c33b-487f-91e2-b28eec745254 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd/component.css
 */
#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd {
	background-color: #FFFFFF;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/view-cart/cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f/component.css
 */
#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f {
	padding: 15px 15px 100px 15px;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-main {
	margin: 0 0 15px 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-label p {
	margin: 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-label .info {
	color: rgb(0, 0, 0);
	text-align: right;
	text-transform: uppercase;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-label .meta {
	color: #49494A;
	font-size: 16px;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f figure {
	margin: 0 0 15px 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-rem-btn {
		top: 40%;
	}
	#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_daff1857-dec6-43da-a785-8eb4b731c407/component.css
 */
#cmp_daff1857-dec6-43da-a785-8eb4b731c407 {
	background-color: #FFFFFF;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 48px;
	margin: 0 0 25px 0;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}
/*
 * components/subscribe/cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34/component.css
 */
#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 {
	background-color: ;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 h1 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 h2 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 h3 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 p {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_fa053988-dfce-4aca-b734-69e0cfcb8c34 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/subscribe_flow/addons_step/cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0/component.css
 */
#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 {
	background-color: #FFFFFF;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_1dca6c7b-be54-4b6c-ad4b-bb1c4d598ac0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-products-row {
	border: 1px solid #D3D3D3;

	padding-left: 40px;
	padding-right: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	padding-top: 40px;
	padding-bottom: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product + .addons-product {
	border-top: 1px solid #D3D3D3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
	padding-right: 30px;

	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-image {
	width: 100%;
	height: 100%;
	min-height: 275px;

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	margin-bottom: 15px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top-right {
	text-align: right;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart {
	padding: 7px 12px;

	font-family: ;
	font-size: 13px;

	color: #FFFFFF;
	background-color: rgb(0, 0, 0);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #FFFFFF;
	background-color: rgb(74, 144, 226);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-name {
	font-size: 20px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-price {
	margin-bottom: 20px;

	font-size: 16px;
	color: #38BFC3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group .control-label {
	font-size: 12px;
	color: #9B9B9B;

	margin-bottom: 2px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group select {
	height: 30px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-cta-row {
	margin-top: 40px;

	text-align: center;
}


#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn {
	font-family: ;
	font-size: 13px;

	color: #FFFFFF;
	background-color: rgb(0, 0, 0);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: #FFFFFF;
	background-color: rgb(74, 144, 226);
}

@media only screen and (max-width : 768px) {
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left,
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
		-webkit-box-flex: 1 0 100%;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
	}

	.addons-product-right {
		margin-top: 40px;
	}

	 #cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
		padding-right: 0;
	}
}

/*
 * components/subscribe_flow/survey_step/cmp_7c719966-0bd6-4e10-bfbe-869e8008d94c/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_7c719966-0bd6-4e10-bfbe-869e8008d94c  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_a2d46458-8c64-4549-8f0f-0b25b69c43ac/component.css
 */
#cmp_a2d46458-8c64-4549-8f0f-0b25b69c43ac {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_28de8fef-5119-4715-86bc-f3bb16a910d0/component.css
 */
#cmp_28de8fef-5119-4715-86bc-f3bb16a910d0 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_9b82ba23-d47e-4acc-b91d-9d163a56fe3e/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_17950be4-c35a-47bf-8253-561873562d65/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_24777f28-c33b-487f-91e2-b28eec745254/component.css
 */
#cmp_24777f28-c33b-487f-91e2-b28eec745254 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd/component.css
 */
#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd {
	background-color: #FFFFFF;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b381b942-6488-4a77-9693-8cd18ef8c2fd ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/view-cart/cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f/component.css
 */
#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f {
	padding: 15px 15px 100px 15px;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-main {
	margin: 0 0 15px 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-label p {
	margin: 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-label .info {
	color: rgb(0, 0, 0);
	text-align: right;
	text-transform: uppercase;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-label .meta {
	color: #49494A;
	font-size: 16px;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f figure {
	margin: 0 0 15px 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f .product-rem-btn {
		top: 40%;
	}
	#cmp_901fc69a-28f9-41e0-96cf-ffdba6c0c83f figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_daff1857-dec6-43da-a785-8eb4b731c407/component.css
 */
#cmp_daff1857-dec6-43da-a785-8eb4b731c407 {
	background-color: #FFFFFF;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 h1 {
	color: rgb(39, 39, 39);
	font-family: Roboto Condensed;
	font-size: 48px;
	margin: 0 0 25px 0;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 h2 {
	color: rgb(0, 0, 0);
	font-family: Roboto Condensed;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 h3 {
	color: #49494A;
	font-family: Roboto Condensed;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_daff1857-dec6-43da-a785-8eb4b731c407 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}