/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #FFFFFF;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
	line-height: 1.3;
}

h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
	line-height: 1.3;
}

h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
	line-height: 1.3;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(238, 78, 62);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(238, 78, 62);
    outline:    none;
    text-decoration:    none;
}

/* General Component Styles */
section[class^="component"] {
	padding: 20px 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 {
	position: relative;
	flex-grow: 1;
	padding: 0;
}

/* 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%;
	min-width: 130px;
	-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(238, 78, 62);
}

.panel {
	margin-bottom: 20px;
	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);
}

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 10px;
	border: none;
	padding: 14px 22px;
	letter-spacing: 2px;
	font-size: 16px;
    transition: all 0.5s ease-out  !important;
    -webkit-transition: all 0.5s ease-out; !important;
    -moz-transition: all 0.5s ease-out !important;
    -o-transition: all 0.5s ease-out !important;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(238, 78, 62);
	border-radius: 15px;
	color: rgb(238, 78, 62);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #333333;
	border: 1px solid #333333;
	color: rgb(238, 78, 62) !important;
}

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

.btn-primary {
	background-color: rgb(238, 78, 62);
	color: #FFFFFF;
	font-family: Nanum Gothic;
	font-size: 14px;
	letter-spacing: 0.167em;
    border:    1px solid transparent;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
    border: 1px solid  rgb(238, 78, 62);
    outline:    none;
}

.btn-secondary {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(238, 78, 62);
	color: rgb(255, 255, 255);
}

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

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

/* 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-top: 20px;
	margin-bottom: 20px;
}

.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-top: .9375rem;
	padding-bottom: .9375rem;
}

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

	text-align: center;
	border: 1px solid #E1E1E1;
	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%;
}

/* 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(238, 78, 62);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Nanum Gothic;
	font-size: 14px;
	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(255, 255, 255);
	color: rgb(238, 78, 62);
}

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

.checkout_content h1 {
	margin-bottom: 25px;
	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(238, 78, 62);
}

.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(238, 78, 62);
	color: rgb(238, 78, 62);
	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(255, 255, 255);
	border-color: rgb(255, 255, 255);
	text-decoration: none;
}

/**portrait side media queries*/
@media (max-width: 767px) and (orientation: portrait) {
    .container-padding-top{
        padding-top:    50%;
    }
}

/* 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;
	}
    .section-padding{
        //padding-top:    6rem;
        padding-top:    3.4rem;
        padding-bottom:    1.25rem;
  	}
    .main-section{
        padding-top:    1.5rem;
        margin-top:    3.4rem;
        padding-bottom:    1.5rem;
    }
    .hero-margin{
        margin-top:    3.4rem; 
    }
	h1{
    }
    h2{
        font-size:    22px !important;
    }
    h3{
        font-size:    18px !important;
    }
    p{
        font-size:    16px !important;
    }

}

@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;
	}
    .section-padding{
        //padding-top:    6rem;
        padding-top:    5rem;
        padding-bottom:    1.25rem;
  	}
    .main-section{
        padding-top:    1.5rem;
        margin-top:    8rem;
        padding-bottom:    1.5rem;
    }
    .hero-margin{
        margin-top:    8rem;  
    }
}

@media (min-width: 992px) {
	.account-header h1,
	.account-header h2 {
		margin: 0;
	}
}
@media (min-width : 768px) 
and (max-width : 1024px)  {
	h1{
    }
    h2{
        font-size:    24px !important;
    }
    h3{
        font-size:    20px !important;
    }
    p{
        font-size:    16px !important;
    }
}
/* Slide panel
----------------------- */
.slidepanel {
  margin-top: 0;
  overflow: hidden;
  background-color: #fff;
  z-index: 20;
}

.slidepanel.top {
  left: 0;
  top: 0;
  width: 100%;
  background-position: center center;
  min-height: 700px;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: 500;
}

.slidepanel.bottom {
  padding: 1px 0;
  box-shadow: 0 -10px 30px rgba(56, 52, 52, 0.2);
  z-index: 1000;
}

.viewport {
  margin-right: auto;
  margin-left: auto;
  overflow-x: hidden;
  padding-left: 0;
  padding-right: 0;
}

.row-offcanvas {
	display: flex;
  position: relative;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  margin-left: -15px;
  margin-right: -15px;
}

.row-offcanvas .pagecontent {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.row-offcanvas.active .pagecontent {
  padding: 0;
}

.row-offcanvas.active:before {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 53, 53, 0.35);
  content: "";
  z-index: 100;
}

.row-offcanvas-left {
  left: 0;
}

.row-offcanvas-left.active {
  left: 300px;
}

.row-offcanvas-left.active:before {
  right: 0;
}

.row-offcanvas-left .sidebar-offcanvas {
  left: -300px;
}

.row-offcanvas-right {
  right: 0;
}

.row-offcanvas-right.active {
  right: 300px;
}

.row-offcanvas-right.active:before {
  left: 0;
}

.row-offcanvas-right .sidebar-offcanvas {
  right: -300px;
}

.sidebar-offcanvas {
  float: left;
  width: 25%;
  min-height: 100vh;
  padding: 40px 50px 40px 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 30px;
  height: 100%;
  width: 300px;
  z-index: 101;
	background: #FFFFFF;
}

.row-offcanvas.active .slidepanel {
  position: static;
}

.row-offcanvas.active .slidepanel.bottom {
  margin-top: 0 !important;
}

.sidebar-offcanvas {
}

/** container width override
*/
.container {
    max-width:    1280px;
}

body{
    position:    relative;
}
body::after {
    content: "";
    background:  url('https://s3.amazonaws.com/cratejoy_vendor_images/nzdogbox/joybox_peach_mobile/images/background-pattern.png');
    //background-size: cover;
    opacity: 0.04;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

a:focus {
    outline:    none;
}
#cmp_71010aac-99b0-4280-8b16-040f709412f9 p{
    margin-bottom:    0.5rem;
}

section input,
section input{
    outline:    none;
    transition:    border 1s ease-in-out;
}

.form-control:focus,
.form-control:active{
    border:    1px solid rgb(238, 78, 62);
}
.form-group button,
.form-group button:hover,
.form-group button:active{
    border:    1px solid rgb(238, 78, 62);
}
.col-xs-12{
    padding-left:    20px;
    padding-right:   20px;
}

/*for christmas box notification bar begins*/
.notification-top-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #c54245;
  text-align: center;
  z-index:    1;
  padding-top:    1em;
  padding-bottom:    1em;
  display:    flex;
  justify-content:    center;
  align-items:    center;
  flex-wrap:    wrap;
}
.notification-top-bar p {
  margin: 0;
  //z-index:    3;
  //color:    #3C8D0D;
  color:    #FFFFFF;
  font-weight:    600;
  padding-left:    5px;
  padding-right:    5px;
}
.notification-top-bar .promo_btn a {
  padding: 5px 10px;
  border-radius: 8px;
  background: #FFFFFF;
  color: #c54245;
  border: 3px solid #13a10e;
  font-weight: bold;
  text-decoration: none;
  margin-left:    1em;
  margin-right:    1em;
  transition: all 0.3s ease;
}
.notification-top-bar .promo_btn a:hover{
    //background:    #3C8D0D;
    color:   #13a10e;
    border-color:    #c54245;
}
#xmas{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
@media (max-width: 767px){
  .notification-top-bar p {
      margin-bottom:    0.5em;
  }
}
.showpromobar{
  visibility: visible;
  opacity: 1;
  transition: visibility 0.5s, opacity 0.5s linear;
}
.hiddenpromobar{
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s linear;
}
  /* for christmas box notification bar ends */
/*
 * components/about_us/cmp_0dd0316b-f410-4504-a374-3ff374466882/component.css
 */

#cmp_0dd0316b-f410-4504-a374-3ff374466882.container {
    position:    relative;
    padding-left:    0;
    padding-right:    0;
}


#cmp_0dd0316b-f410-4504-a374-3ff374466882 .square-row{
    position:    relative;
}
@media (max-width: 767px){
  #cmp_0dd0316b-f410-4504-a374-3ff374466882 .square-row{
      flex-direction:    column-reverse;
  }
}
/**#cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content::after {
    content: "";
    background:  url(//d3a1v57rabk2hm.cloudfront.net/nzdogbox/joybox_peach_mobile-copy-2/images/whats-inside-8.png?ts=1573529155&host=my.cratejoy.com);
    background-size: cover;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}**/

#cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content {
	background-color: rgba(255, 147, 114, 0.3);
	padding: 20px;
}
@media(min-width: 768px) {
  #cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content {
      padding-left:    2rem;
      padding-right:    2rem;
  }
}
#cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content h1 {
	color: rgb(255, 147, 114);
	font-family: Work Sans;
	font-size: 36px;
    margin-bottom:    1.5rem;
}

#cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content h2 {
	color: rgb(255, 147, 114);
	font-family: Nanum Gothic;
	font-size: 28px;
    margin-bottom:    1.5rem;
}

#cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content h3 {
	color: rgb(91, 95, 101);
	font-family: Nanum Gothic;
	font-size: 22px;
    margin-bottom:    1.5rem;
}

#cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
    margin-bottom:    1.5rem;
}

#cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content .btn {
	background-color: rgb(255, 147, 114);
	color: #FFFFFF;
	font-family: ;
	font-size: ;
}

#cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content .btn:hover {
	background-color: ;
	color: #FFFFFF;
}


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

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

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

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

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

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

	#cmp_0dd0316b-f410-4504-a374-3ff374466882 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}
#cmp_0dd0316b-f410-4504-a374-3ff374466882 .hero-content-text{
    z-index:    2;
}
#cmp_0dd0316b-f410-4504-a374-3ff374466882  div {
	background-position: unset !important;
}
/*
 * components/about_us/cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf/component.css
 */

#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf {
    position:    relative;
    padding-left:    0;
    padding-right:    0;
    padding-bottom:    0;
}


#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .square-row{
    position:    relative;
}
@media (max-width: 767px){
  #cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .square-row{
      flex-direction:    column-reverse;
  }
}
/**#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content::after {
    content: "";
    background:  url(//d3a1v57rabk2hm.cloudfront.net/nzdogbox/joybox_peach_mobile-copy-2/images/whats-inside-7.png?ts=1573529155&host=my.cratejoy.com);
    background-size: cover;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}**/

#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content {
	background-color: rgba(179, 216, 213, 0.3);
	padding: 20px;
}
@media(min-width: 768px) {
  #cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content {
      padding-left:    2rem;
      padding-right:    2rem;
  }
}
#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content h1 {
	color: rgb(255, 147, 114);
	font-family: Nanum Gothic;
	font-size: 36px;
    margin-bottom:    1.5rem;
}

#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content h2 {
	color: rgb(255, 147, 114);
	font-family: Nanum Gothic;
	font-size: 28px;
    margin-bottom:    1.5rem;
}

#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content h3 {
	color: rgb(91, 95, 101);
	font-family: Nanum Gothic;
	font-size: 24px;
    margin-bottom:    1.5rem;
}

#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
    margin-bottom:    1.5rem;
}

#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content .btn {
	background-color: rgb(238, 78, 62);
	color: #FFFFFF;
	font-family: Nanum Gothic;
	font-size: 14px;
}

#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
}


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

@media(min-width: 768px) {
	#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf .hero-content-text{
    z-index:    2;
}
#cmp_800cec4b-a0c0-4327-9a6b-1fb10efb83cf  div {
	    background-size: contain !important;
}

/*
 * components/about_us/cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58/component.css
 */

#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 {
    position:    relative;
    padding-left:    0;
    padding-right:    0;
}


#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .square-row{
    position:    relative;
}
@media (max-width: 767px){
  #cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .square-row{
      flex-direction:    column-reverse;
  }
}
/**#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content::after {
    content: "";
    background:  url(None);
    background-size: cover;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}**/

#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content {
	background-color: rgba(252, 209, 96, 0.3);
	padding: 20px;
}
@media(min-width: 768px) {
  #cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content {
      padding-left:    2rem;
      padding-right:    2rem;
  }
}
#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content h1 {
	color: rgb(255, 147, 114);
	font-family: Work Sans;
	font-size: 36px;
    margin-bottom:    1.5rem;
}

#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content h2 {
	color: rgb(255, 147, 114);
	font-family: Nanum Gothic;
	font-size: 28px;
    margin-bottom:    1.5rem;
}

#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content h3 {
	color: rgb(91, 95, 101);
	font-family: Nanum Gothic;
	font-size: 22px;
    margin-bottom:    1.5rem;
}

#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
    margin-bottom:    1.5rem;
}

#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content .btn {
	background-color: rgb(255, 147, 114);
	color: #FFFFFF;
	font-family: ;
	font-size: ;
}

#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content .btn:hover {
	background-color: ;
	color: #FFFFFF;
}


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

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

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

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

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

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

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

#cmp_d5d1e5b3-0408-4ccf-b201-dbed383afe58 .hero-content-text{
    z-index:    2;
}
/*
 * components/about_us/cmp_d64dc884-c1f0-445c-be85-dfe173fc43d1/component.css
 */
#cmp_d64dc884-c1f0-445c-be85-dfe173fc43d1  {
	background-color: rgba(179, 216, 213, 0.3);
}

#cmp_d64dc884-c1f0-445c-be85-dfe173fc43d1 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
    font-weight:    600;
}

#cmp_d64dc884-c1f0-445c-be85-dfe173fc43d1  h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_d64dc884-c1f0-445c-be85-dfe173fc43d1 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_d64dc884-c1f0-445c-be85-dfe173fc43d1 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_d64dc884-c1f0-445c-be85-dfe173fc43d1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_d64dc884-c1f0-445c-be85-dfe173fc43d1  ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}
/*
 * components/checkout/cmp_56436575-74ea-4c2e-b2b6-f018450661d4/component.css
 */
#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 .checkout_content {
	overflow: auto;
    border:    1px solid transparent;
    padding-top:    0;
}
#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 .checkout_content .checkout_button{
    border-radius:    10px;
    padding:    16px 22px;
    border:    1px solid transparent;
    transition:    all 0.5s ease-in-out;
}

#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 .checkout_content .btn:hover,
#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 .checkout_content .checkout_button:hover{
  	border:  1px solid rgb(238, 78, 72);
}
#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 .checkout_content .checkout_button:focus{
    outline:    none;
}
#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 .checkout_content section {
	border-color: rgba(208, 2, 27, 0);
}

#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 .cart_listing table {
	border-color:  rgba(208, 2, 27, 0);
}
#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 input,
#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 input{
    border:    1px solid rgb(179, 216, 213);
}

#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 input:active,
#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 input:focus{
    border:    1px solid #EE4E48;
    outline:    none;
}

#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 #gift-form{
    background-color:    transparent;
}
#cmp_56436575-74ea-4c2e-b2b6-f018450661d4 .gift-info{
    display:    none;
}

.fcc-card.amex { display: none; }
.fcc-card.dinersclub { display: none; }
.fcc-card.discover { display: none; }
.fcc-card.jcb { display: none; }
.checkout_content #city[required] + label[placeholder]:before{
    content:       "Suburb";
}
/*
 * components/contact_us/cmp_2be28a10-67fb-4284-b2fb-92f6d5dfcbf1/component.css
 */
#cmp_2be28a10-67fb-4284-b2fb-92f6d5dfcbf1  {
	background-color: rgba(179, 216, 213, 0.3);
}

#cmp_2be28a10-67fb-4284-b2fb-92f6d5dfcbf1  h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
    font-weight:    600;
}

#cmp_2be28a10-67fb-4284-b2fb-92f6d5dfcbf1  h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_2be28a10-67fb-4284-b2fb-92f6d5dfcbf1  h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_2be28a10-67fb-4284-b2fb-92f6d5dfcbf1  p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_2be28a10-67fb-4284-b2fb-92f6d5dfcbf1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_2be28a10-67fb-4284-b2fb-92f6d5dfcbf1  ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}
/*
 * components/contact_us/cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe/component.css
 */
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe  {
	background-color: rgba(255, 255, 255, 0);
}

#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe  h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe  h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 26px;
}

#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe  h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 24px;
}

@media (max-width: 767px) {
    #cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .form-row{
        display:    flex;
        flex-wrap:    wrap;
    }
}

#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .sub-title{
    margin-bottom:    0;
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form input,
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form select,
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form textarea{
    border-radius:    10px;
    border:     2px solid rgb(179, 216, 213);
    background-color:    rgb(255, 255, 255);
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form select,
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form textarea{
    transition:    all 1s ease-in-out;
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form input:active,
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form select:active,
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form textarea:active,
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form input:focus,
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form select:focus,
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form textarea:focus{
    border:     2px solid rgb(255, 147, 114);
    background-color:    rgb(255, 255, 255);
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form label{
    font-size:    20px;
    color:    rgb(128, 173, 172);
    font-weight:    600;
  
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe #contact-form .submit-button{
    //font-size:    20px;
    text-align:    right;
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .content.form-row h2,
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .content.form-row h3{
    line-height:    1.5;
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .content.form-row{
    text-align:    center;
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .form-row .form-title{
    font-weight:    600;
    margin-bottom:    1.5rem;
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .content h3:before{
    font-family:  "Font Awesome 5 Free";
    content: "\f3c5";
    margin-right:    1rem;
    font-weight: 900;
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .content p:before{
    font-family:  "Font Awesome 5 Free";
    content: "\f0e0";
    margin-right:    1rem;
    font-weight: 900;
}
.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button{
    width:    100%;
    white-space: normal;
    word-wrap: break-word;
}
.jconfirm.jconfirm-supervan.jconfirm-open .jc-bs3-row {
    margin-right: -15px;
    margin-left: -15px;
}

.jconfirm.jconfirm-supervan.jconfirm-open .jc-bs3-row .jconfirm-box-container {
    margin-left:    0;
    flex:    1;
}
@media (min-width: 768px) {
    .jconfirm.jconfirm-supervan.jconfirm-open .jc-bs3-row .jconfirm-box-container{
        margin-left:    25%;
        margin-right:   25%;
    }
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .component-rich-text-with-button.row{
}
#cmp_3c59bce8-eff2-45c8-bc2a-ea90e08a4dbe .animated.bounce{
	animation-duration: 2s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
	-webkit-animation-duration: 2s;
    -webkit-animation-delay: 1s;
    -webkit-animation-iteration-count: infinite;  
}
/*
 * components/customer/account/cmp_38656598-0d25-494e-835c-658ec0b9b146/component.css
 */
#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-rating {
	color: rgb(238, 78, 62);
	float: right;
}

/*
 * components/customer/account/cmp_a4a83a3e-acf1-491b-b721-e07f58a143b8/component.css
 */

/*
 * components/customer/edit/cmp_65b64b2c-326e-445c-ad7d-8edbbe0ec4b8/component.css
 */

/*
 * components/customer/forgot_password/cmp_152e9809-f324-4e28-b276-915c58ed0f2a/component.css
 */
#cmp_152e9809-f324-4e28-b276-915c58ed0f2a  {
	background-color: rgba(179, 216, 213, 0.3);
}
#cmp_152e9809-f324-4e28-b276-915c58ed0f2a h1 {
    font-weight: 600;
    text-transform: uppercase;
}
#cmp_152e9809-f324-4e28-b276-915c58ed0f2a p{
    line-height:    1.3em;
    margin-bottom:    0.5rem;
}
/* Media Queries
------------------------------*/
@media (max-width: 767px) {

    #cmp_152e9809-f324-4e28-b276-915c58ed0f2a h1{
        font-size:    22px;
    }
    #cmp_152e9809-f324-4e28-b276-915c58ed0f2a p {
        font-size:    18px;
    }
}
@media (min-width : 768px) 
and (max-width : 1024px)  {

    #cmp_152e9809-f324-4e28-b276-915c58ed0f2a h1{
        font-size:    24px;
    }
    #cmp_152e9809-f324-4e28-b276-915c58ed0f2a p{
        font-size:    20px;
    }
}
@media (min-width: 1025px) {
  #cmp_152e9809-f324-4e28-b276-915c58ed0f2a h1 {
      font-size: 28px;
  }

  #cmp_152e9809-f324-4e28-b276-915c58ed0f2a p {
      font-size: 22px;
  }
}
/*
 * components/customer/forgot_password/cmp_479d38a1-8bfe-4b24-90f8-6baa131cacda/component.css
 */

#cmp_479d38a1-8bfe-4b24-90f8-6baa131cacda  {
	padding-bottom: 120px;
}
#cmp_479d38a1-8bfe-4b24-90f8-6baa131cacda  .card{
    background-color:    transparent;
}
#cmp_479d38a1-8bfe-4b24-90f8-6baa131cacda  p{
    font-weight:    600;
}
/*
 * components/customer/login/cmp_1312168c-5a38-48eb-b58b-7ea8963130f0/component.css
 */
#cmp_1312168c-5a38-48eb-b58b-7ea8963130f0  {
	background-color: rgba(179, 216, 213, 0.3);
}

#cmp_1312168c-5a38-48eb-b58b-7ea8963130f0  h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
    font-weight:    600;
    text-transform: uppercase;
    line-height:    1.3em;
    margin-bottom:    0.5rem;
}
#cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
    line-height:    1.3em;
    margin-bottom:    0.5rem;
}

#cmp_218d0efe-ccea-49c8-9af9-0b398df59537 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
    line-height:    1.3em;
margin-bottom:    0.5rem;
}

#cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
    line-height:    1.3em;
margin-bottom:    0.5rem;
}

#cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {

    #cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 h1{
        font-size:    22px;
    }
    #cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 p {
        font-size:    18px;
    }
}
@media (min-width : 768px) 
and (max-width : 1024px)  {

    #cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 h1{
        font-size:    24px;
    }
    #cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 p{
        font-size:    20px;
    }
}
@media (min-width: 1025px) {
  #cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 h1 {
      font-size: 28px;
  }

  #cmp_1312168c-5a38-48eb-b58b-7ea8963130f0 p {
      font-size: 22px;
  }
}
/*
 * components/customer/login/cmp_dc2e8fb8-d2b9-4451-88bd-1b1e8e3e8e0a/component.css
 */

#cmp_dc2e8fb8-d2b9-4451-88bd-1b1e8e3e8e0a  {
	padding-bottom: 120px;
}
#cmp_dc2e8fb8-d2b9-4451-88bd-1b1e8e3e8e0a .login-form .form-control{
	border:    1px solid rgb(179, 216, 213);
}
#cmp_dc2e8fb8-d2b9-4451-88bd-1b1e8e3e8e0a .login-form .form-control:hover{
	border:    1px solid #EE4E48;
}
#cmp_dc2e8fb8-d2b9-4451-88bd-1b1e8e3e8e0a .login-form form button:hover,
#cmp_dc2e8fb8-d2b9-4451-88bd-1b1e8e3e8e0a .login-form form button{
    border:    1px solid rgb(238, 78, 62);
}
#cmp_dc2e8fb8-d2b9-4451-88bd-1b1e8e3e8e0a .login-form .card{
    background-color:    transparent;
}
/*
 * components/customer/order/cmp_7b056a98-7fe4-4bc8-a362-614ab94b1ad7/component.css
 */

/*
 * components/customer/password_reset/cmp_07510b99-bc15-4c01-bc5d-15e35cdabf68/component.css
 */

#cmp_07510b99-bc15-4c01-bc5d-15e35cdabf68  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_fc208a6e-4948-46d0-9199-7f9e311450a2/component.css
 */
#cmp_fc208a6e-4948-46d0-9199-7f9e311450a2 {
	background-color: #FFFFFF;
}

#cmp_fc208a6e-4948-46d0-9199-7f9e311450a2 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_fc208a6e-4948-46d0-9199-7f9e311450a2 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_fc208a6e-4948-46d0-9199-7f9e311450a2 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_fc208a6e-4948-46d0-9199-7f9e311450a2 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_fc208a6e-4948-46d0-9199-7f9e311450a2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_fc208a6e-4948-46d0-9199-7f9e311450a2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_fc208a6e-4948-46d0-9199-7f9e311450a2  {
	padding: 50px 0;
}
#cmp_fc208a6e-4948-46d0-9199-7f9e311450a2 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_fdf17935-f6b6-4532-820c-707441196615/component.css
 */

/*
 * components/faq/cmp_126e45b1-1fab-4758-88d6-fd3265b40b76/component.css
 */
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 {
	//background-color: ;
}

#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .list-group{
    margin-bottom:    1.5rem;
}
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group .panel{
    cursor:    pointer;
    margin-bottom:    0;
    background-color:    transparent;
}
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group .panel-group-heading {
    color:    rgb(255, 147, 114);
    border-bottom:    2px solid rgb(179, 216, 213);;
}

#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group .panel-heading{
    padding-top:    0;
    padding-bottom:    0;
    padding-left:    0;
    padding-right:    0;
}
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group .panel-group-heading h2{
	font-weight:    600;
}
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group .panel-title a{
    font-size:     20px;
    color:     rgb(91, 95, 101);
    font-family:  Nanum Gothic;
    font-weight:    600;
    display:    block;
    padding-top:    1rem;
    padding-bottom:    1rem;
}
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group .panel-body{
    font-size:     18px;
    color:     rgb(91, 95, 101);
    font-family:    Nanum Gothic;
    padding:    0;
}
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group .fas{
    color:    rgb(238, 78, 62);
    margin-right:    1rem;
    float:    right;
    transition: .3s transform ease-in-out;
}
 
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group  [data-toggle="collapse"][aria-expanded="true"] .fas {  
    -ms-transform:rotate(180deg);     /* Internet Explorer 9 */
    -webkit-transform:rotate(180deg); /* Chrome, Safari, Opera */
    transform:rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group  [data-toggle="collapse"][aria-expanded="true"],
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group  a:hover{
    color:    rgb(238, 78, 62);  
}
#cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group  [data-toggle="collapse"].collapsed .fas {
}

@media (max-width: 767px) {
    #cmp_126e45b1-1fab-4758-88d6-fd3265b40b76 .panel-group .panel-title a{
        font-size:    18px;
    }  
}
/*
 * components/faq/cmp_6b43e9f7-1d10-4e78-93c0-0adce89c8f2b/component.css
 */
#cmp_6b43e9f7-1d10-4e78-93c0-0adce89c8f2b {
	background-color: rgba(179, 216, 213, 0.3);
}

#cmp_6b43e9f7-1d10-4e78-93c0-0adce89c8f2b h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
    font-weight:    600;
}

#cmp_6b43e9f7-1d10-4e78-93c0-0adce89c8f2b h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_6b43e9f7-1d10-4e78-93c0-0adce89c8f2b h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_6b43e9f7-1d10-4e78-93c0-0adce89c8f2b p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_6b43e9f7-1d10-4e78-93c0-0adce89c8f2b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_6b43e9f7-1d10-4e78-93c0-0adce89c8f2b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}
/*
 * components/get_started/bimonthly/cmp_b599dc73-4e90-419f-9a20-bb853498e16b/component.css
 */
#cmp_b599dc73-4e90-419f-9a20-bb853498e16b {
}

#cmp_b599dc73-4e90-419f-9a20-bb853498e16b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_b599dc73-4e90-419f-9a20-bb853498e16b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}
#cmp_b599dc73-4e90-419f-9a20-bb853498e16b  .steps-buttons-wrap{
    flex-direction:    column;
    align-items:    center;
    padding-left:    0.5rem;
    padding-right:   0.5rem;
}
#cmp_b599dc73-4e90-419f-9a20-bb853498e16b .btn {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 26px;
    width:    22rem;
    margin-bottom:    2rem;
    border:    1px solid rgb(238, 78, 62);
}
@media (max-width: 767px) {
    #cmp_b599dc73-4e90-419f-9a20-bb853498e16b .btn {
        width:    100%;  
    }
}

#cmp_b599dc73-4e90-419f-9a20-bb853498e16b .btn:not(:first-child) {
    margin-top:    1rem;
}
#cmp_b599dc73-4e90-419f-9a20-bb853498e16b .btn:hover {
	background-color: rgb(238, 78, 62);
    color:    rgb(255, 255, 255);
}
#cmp_b599dc73-4e90-419f-9a20-bb853498e16b .btn:hover .shipping-text{
	color: rgb(255, 255, 255);
}
#cmp_b599dc73-4e90-419f-9a20-bb853498e16b .shipping-text{
	font-size: 16px;
}

#cmp_b599dc73-4e90-419f-9a20-bb853498e16b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b599dc73-4e90-419f-9a20-bb853498e16b ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/get_started/bimonthly/cmp_d85af8c9-374c-4f68-a0b9-91e021cff7ee/component.css
 */
#cmp_d85af8c9-374c-4f68-a0b9-91e021cff7ee {
	background-color: rgba(255, 255, 255, 0);
	padding-bottom: 20px;
}

#cmp_d85af8c9-374c-4f68-a0b9-91e021cff7ee h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_d85af8c9-374c-4f68-a0b9-91e021cff7ee h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_d85af8c9-374c-4f68-a0b9-91e021cff7ee h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_d85af8c9-374c-4f68-a0b9-91e021cff7ee p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_d85af8c9-374c-4f68-a0b9-91e021cff7ee ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_d85af8c9-374c-4f68-a0b9-91e021cff7ee ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}
/*
 * components/get_started/cmp_c6474af7-07e1-4f19-a572-163c4a038a91/component.css
 */
#cmp_c6474af7-07e1-4f19-a572-163c4a038a91 {
	background-color: rgba(179, 216, 213, 0.3);
}

#cmp_c6474af7-07e1-4f19-a572-163c4a038a91 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
    font-weight:    600;
}

#cmp_c6474af7-07e1-4f19-a572-163c4a038a91 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_c6474af7-07e1-4f19-a572-163c4a038a91 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_c6474af7-07e1-4f19-a572-163c4a038a91 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_c6474af7-07e1-4f19-a572-163c4a038a91 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_c6474af7-07e1-4f19-a572-163c4a038a91 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}
/*
 * components/get_started/cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1/component.css
 */
#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 {
	background-color: ;
    padding-bottom:    0;
}
#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper {
    padding-top:    2rem;
    position:    relative;
}
#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper.row{
    justify-content:    space-around;
}
#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper a{
    text-decoration:    none;
}

#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper .card{
    padding:    2rem;
    border: 1px solid rgb(238, 78, 62);
    border-radius:    37px;
}
#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper .frequency-title{
    font-size:    36px;
    color:     rgb(0, 0, 0);
    font-family:     Nanum Gothic;
    font-weight:    600;
    margin-bottom:    2rem;
}
#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper .frequency-price{
    font-size:    28px;
    color:     rgb(91, 95, 101);
    font-family:     Nanum Gothic;
    margin-bottom:    2rem;
}
#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper .frequency-shipping{
    font-size:    20px;
    color:     rgb(91, 95, 101);
    font-family:    Nanum Gothic;
    margin-bottom:    2rem;
}
@media(max-width: 767px){
    #cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper .column{
       // margin-left:    1rem;
       // margin-right:    1rem;
       flex:    0 0 80%;
    }
}
@media(max-width: 991px) {
    #cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1  .frequency-wrapper .frequency-link-wrapper{
        flex:    1;
    }
}

#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper .most-popular-image{
    position:    absolute;
    left:    -5%;
    right:    0;
    top:    -10%;
    bottom:    0;
    z-index:    1;
}
#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .frequency-wrapper .most-popular-column{
    position:    relative;
}
#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1 .btn {
    width:    10rem;
	background-color: rgb(238, 78, 62);
	color: rgb(255, 255, 255);
	font-family: Nanum Gothic;
	font-size: 16px;
    border:    1px solid transparent;
    margin-bottom:    0.5rem;
}

#cmp_d6b73b52-a81a-47a7-bf8b-f786a32e46f1  .btn:hover {
    background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
    border: 1px solid rgb(238, 78, 62);
}

/*
 * components/get_started/monthly/cmp_53dfcb3a-ce03-44fd-8bbe-550f58662ab2/component.css
 */
#cmp_53dfcb3a-ce03-44fd-8bbe-550f58662ab2 {
	background-color: rgba(255, 255, 255, 0);
	padding-bottom: 20px;
}

#cmp_53dfcb3a-ce03-44fd-8bbe-550f58662ab2 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_53dfcb3a-ce03-44fd-8bbe-550f58662ab2 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_53dfcb3a-ce03-44fd-8bbe-550f58662ab2 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_53dfcb3a-ce03-44fd-8bbe-550f58662ab2 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_53dfcb3a-ce03-44fd-8bbe-550f58662ab2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_53dfcb3a-ce03-44fd-8bbe-550f58662ab2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}
/*
 * components/get_started/monthly/cmp_b27d1947-f416-4628-afbb-20456fe7da59/component.css
 */
#cmp_b27d1947-f416-4628-afbb-20456fe7da59 {
}

#cmp_b27d1947-f416-4628-afbb-20456fe7da59 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_b27d1947-f416-4628-afbb-20456fe7da59 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}
#cmp_b27d1947-f416-4628-afbb-20456fe7da59  .steps-buttons-wrap{
    flex-direction:    column;
    align-items:    center;
    padding-left:    0.5rem;
    padding-right:    0.5rem;
}
#cmp_b27d1947-f416-4628-afbb-20456fe7da59 .btn {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 26px;
    width:    22rem;
    margin-bottom:    2rem;
    border:    1px solid rgb(238, 78, 62);
}
@media (max-width: 767px) {
    #cmp_b27d1947-f416-4628-afbb-20456fe7da59  .btn {
        width:    100%;  
    }
}
#cmp_b27d1947-f416-4628-afbb-20456fe7da59 .btn:not(:first-child) {
    margin-top:    1rem;
}
#cmp_b27d1947-f416-4628-afbb-20456fe7da59 .btn:hover {
	background-color: rgb(238, 78, 62);
  	color: rgb(255, 255, 255);
}
#cmp_b27d1947-f416-4628-afbb-20456fe7da59 .btn:hover .shipping-text{
	color: rgb(255, 255, 255);
}
#cmp_b27d1947-f416-4628-afbb-20456fe7da59 .shipping-text{
	font-size: 16px;
}

#cmp_b27d1947-f416-4628-afbb-20456fe7da59 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b27d1947-f416-4628-afbb-20456fe7da59 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/global/cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab/component.css
 */
@media (max-width: 767px) {
   #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar {
       //background-color:    rgba(0,0,0,0.1);
      background-color:    rgba(238, 78, 62, 0.7);
   }
  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab  .navbar-nav li a.nav-link{
      color:    white;
      font-size: 18px;
  }
   #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-brand-md {
       display:    none;
   }
   #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-brand-sm {
       display:    block !important;
       
   }
  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-brand-sm a img{
      width:    110px;
  }
  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab  .animated-hamburger {
      width: 30px;
      height: 20px;
      left:    90%;
      position: relative;
      margin: 0px;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      -o-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
      cursor: pointer;
  }
  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab  .animated-hamburger span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      border-radius: 9px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out;
  }
  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab  .animated-hamburger span {
	background: #f3e5f5;
	}
  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab  .animated-hamburger span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab  .animated-hamburger span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab  .animated-hamburger span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab  .animated-hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
  }

  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .animated-hamburger.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .animated-hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
  }  
}
#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab  {
    position:    relative;
  	background-color: rgb(180, 217, 213);
}

#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-brand-md {
    margin: 20px 0;
    padding-top:    0;
    padding-bottom: 0;
}
#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-brand-sm {
    display:    none;
    position:    absolute;
    left:    0;
    //right:   0;
    z-index:    1;
    top:    0;
    //margin-top:    3rem;
}

#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar {
	border-radius: 0;
    position:    absolute;
    z-index:    1;
    right:    0;
    left:    0;
    top:    0;
}

#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-brand {
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-brand > img {
	display: inline-block;
  	margin: 10px 0;
}

#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 20px 0;
}

#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar a.nav-link,
#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar button {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
    font-weight:    700;
}

#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar a.nav-link:hover,
#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar a.nav-link:focus,
#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar a.nav-link:active,
#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar button:hover,
#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar button:focus,
#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar button:active {
	color: rgb(238, 78, 62);
	outline: none;
}

#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-nav .dropdown-menu a {
	color: rgb(0, 0, 0);
	padding: 10px 0;
}

#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 768px) {
	#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;
        justify-content:    flex-end;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
    #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-nav li a{
        font-size: 16px;
    }
    #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab{
         background-position: 90% bottom !important;
     }
    #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar{
        padding-top:  .9375rem;
        padding-bottom:  .9375rem;
        padding-left:    0;
        padding-right:    0;
    }
}
@media (min-width: 992px) {
    #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-nav .single-link:first-child {
        margin-left:    2rem;
    }
    .cart-menu{
      margin-left:    auto;
    }
}
@media (min-width: 1025px) {
    #cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .navbar-nav li a{
        font-size: 18px;
    }
}
#nav-buttons {
    color: #fff;
    display: none;
    position: fixed;
    left:    0;
    right:   0;
    top:    5%;
}
#nav-buttons .btn{
    padding-top:    10px;
    padding-bottom:    10px;
}

.cart-link:before  { 
    font-family: FontAwesome; 
	font-size: 18px;
    display: inline-block; 
    content: '\f07a';
}
.login-link:before  { 
    font-family: FontAwesome; 
	font-size: 18px;
    display: inline-block; 
    content: '\f007';
}
a.nav-link{
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -o-transition-timing-function: linear;    
}
#cmp_7d74ae98-e43a-4a46-94fb-4d967f4d01ab .link-active a{
    color:    rgb(238, 78, 62) !important;
}
/*
 * components/global/cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8/component.css
 */
#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 {
      background-color:    rgba(179, 216, 213, 0.3);
}

#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 .progress-bar-container {
	position: relative;
}

#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 .progress-bar-filler {
	height: 2px;
	width: 90%;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	z-index: -10;
	background: #E5E5E5;
}

#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 .progress-bar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #E5E5E5;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 .progress-bar::before {
		width: 86%;
		margin: 0 7%;
	}
}

#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 .progress-bar .step {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8  .step .title{
    color: rgb(0, 0, 0);    
}
/*#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 .progress-bar .step .point {
	width: 40px;
	height: 20px;
	border-radius: 10px;
	background-color: #E5E5E5;
	border: 4px solid white;
}*/

#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 .progress-bar .step.active {
	color: rgb(0, 0, 0);
}

#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 .progress-bar .step.active .point {
	//background-color: rgb(238, 78, 62);
 	color: rgb(238, 78, 62);
}
#cmp_c84a15d8-c7b8-4f00-a6a8-8febca7c9ee8 .progress-bar .step .point{
    font-size:    20px;
    text-shadow:
        1px  1px 2px black,
        1px -1px 2px black,
       -1px  1px 2px black,
       -1px -1px 2px black;
}
/*
 * components/global/cmp_febae366-44c2-471e-b4b6-8b6261823c5e/component.css
 */
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e {
	background-color: rgba(179, 216, 213, 0.5);
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer {
	font-family: Nanum Gothic;
	color: rgb(0, 0, 0);

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

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social a {
	display: inline-block;
	padding-right: 5px;
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social svg path {
	fill: rgb(128, 173, 172);
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social a:hover svg path,
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social a:focus svg path,
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social a:active svg path {
	fill: rgb(238, 78, 62);
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer .navbar-toggler {
	color: rgb(238, 78, 62);
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer .navbar-toggler:hover{
    background-color:   rgb(238, 78, 62);
    color:    #FFFFFF !important;
    border: 1px solid transparent;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer .navbar-toggler:focus{
    outline:    none;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-cc p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes {
    order:    3;
    //z-index: -1;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes p{
    margin-bottom:    0;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes p a {
	color: rgb(0, 0, 0);
	padding: 0;
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes p a:hover,
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes p a:focus,
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes p a:active {
	color: rgb(0, 0, 0);
	text-decoration: none;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes ul{
    display:    flex;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes ul li{
    padding-left:    10px;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-directory {
	text-align: center;
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .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;
    justify-content:    space-around;
    line-height:    2;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-list  a:hover,
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes a:hover{
    box-shadow:    inset 0 0 0 99999px rgba(128,173,172,0.2);
  	color: rgb(128, 173, 172);
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .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_febae366-44c2-471e-b4b6-8b6261823c5e .footer-list,
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social p,
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes{
  	font-size: 17px;
    text-transform: uppercase;
    letter-spacing:    1px;
}
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-list a{
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
}

#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-list .footer-link:hover,
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-list .footer-link:focus,
#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-list .footer-link:active {
	color: rgb(128, 173, 172);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .col-sm-12,
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
  
    #cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-directory .footer-list{
		margin-bottom:    0;
    }  
    #cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-directory .footer-list p{
		margin-bottom:    0.5rem;
    }  
    #cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-directory .footer-list ul{
        margin-bottom:    1rem;
    }
}
@media (max-width: 767px){
  	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer{
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
	}
}
@media (min-width: 768px) {
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .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-top: 40px;
		padding-bottom: 40px;
	}
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: left;
	}
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
        display:    none;
	}
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-cc p {
		display: inline-block;
	}
    #cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes {
        display:    flex;
    }
    #cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-tributes ul{
        margin-bottom:    0;
   }
}

@media (min-width: 1281px) {
   #cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-list span:nth-child(1){
       margin-left:    -19%;
   }
   #cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social {
        padding-left:    14%;
        padding-right:    0;
   }
   #cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-directory {
        padding-left:    0;
        padding-right:    0;
   }
  
}

@media (min-width: 992px) {
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-cc p {
		display: block;
	}
	#cmp_febae366-44c2-471e-b4b6-8b6261823c5e .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}
.footer-margin{
    margin-top:    3rem;
}
/*
 * components/index/cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed/component.css
 */
#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed {
	background-color: rgba(255, 255, 255, 0);
}

#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed .title {
	//margin-top: 40px;
}

#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed .box-choose-row {
	justify-content: center;
}

#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed .step-row {
    margin-top:    40px;
    margin-bottom:    40px;
}
#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed .box-choose img {
	margin-bottom: 20px;
}

#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed h2 {
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
}

#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed  .step-content {
	margin-bottom:    25px;
}
@media (max-width: 767px) {
	#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed .step-content { 
      margin-left:    15px;
      margin-right:    15px;    
  }
  #cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed .step-row:last-child {
      margin-bottom:    0;
  }  
}
/**portrait side media queries*/

@media (min-width : 768px) 
and (max-width : 1024px) 
and (orientation : portrait) {
    #cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed .step-row{
        display:    block;
    }
}
@media(min-width: 768px) {
	#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed .step-content {
      margin-left:    10px;
      margin-right:    10px;  	
  }
}

@media(min-width: 1140px) {
	#cmp_29a0a2e2-3938-42e2-94ec-f330d61893ed .step-content {
      margin-left:    5px;
      margin-right:    5px;
  }
}
.step-row {
    display:    flex;
    flex:    1;
    align-self:    flex-end;
}
/*
 * components/index/cmp_2ea54393-b830-4310-8013-c9f090fb3ab0/component.css
 */
#cmp_2ea54393-b830-4310-8013-c9f090fb3ab0 {
	background-color: transparent;
}

#cmp_2ea54393-b830-4310-8013-c9f090fb3ab0 h1 {
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_2ea54393-b830-4310-8013-c9f090fb3ab0 h2 {
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_2ea54393-b830-4310-8013-c9f090fb3ab0 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_2ea54393-b830-4310-8013-c9f090fb3ab0 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_2ea54393-b830-4310-8013-c9f090fb3ab0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_2ea54393-b830-4310-8013-c9f090fb3ab0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#mc_embed_signup{
    background: transparent; 
    clear:left;
    font-family: Nanum Gothic;
    //width:100%;
}
#mc_embed_signup label{
    font-size: 22px !important;
    font-weight:    500 !important;
    padding-bottom:    1rem !important;
}

#mc_embed_signup .button{
    background-color:  rgb(238, 78, 62) !important;
    color: #FFFFFF;
    font-family:  Nanum Gothic !important;
    font-size: 19.5px!important;
    letter-spacing: 0.167em !important;
    height:     auto !important;
    line-height:    1.5 !important;
    padding:    14px 22px !important;
    border-radius:    10px  !important;
    border: 1px solid transparent !important;
}
#mc_embed_signup .button:hover{
    border: 1px solid rgb(238, 78, 62) !important;
    color:    rgb(238, 78, 62);
    background-color:    #FFFFFF !important;
}
#mc_embed_signup input.email{
    padding:    14px 22px !important;
    height:     auto !important;
    font-family:  Nanum Gothic !important;
    font-size:    16px !important;
    border-radius:    10px !important;
    border-width:    2px !important;
}

#mc_embed_signup input.email:active,
#mc_embed_signup input.email:focus{
    border:    1px solid rgb(238, 78, 62);
    outline:    none;
}
@media(min-width: 768px) {
	#mc_embed_signup input.email{ 
        width:    50% !important;	
  }
}
/**portrait side media queries*/

@media (min-width : 768px) 
and (max-width : 1024px) 
and (orientation : portrait) {
    #mc_embed_signup .button{
        width:    50% !important;
    }
}
@media (max-width: 767px) {
  /**#cmp_2ea54393-b830-4310-8013-c9f090fb3ab0 h2 {  
      font-size:    40px;
  }**/
  #mc_embed_signup label{  
      font-size:    18px !important;
  }
  #mc_embed_signup input.email{
      font-size:    16px !important;
  }*
}
#mc_embed_signup .button{
    font-size:    17px !important;
}
/*
 * components/index/cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53/component.css
 */
#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 {
    position:    relative;
    padding-left:    0;
    padding-right:    0;
}

/*#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53::after {
    content: "";
    background:  url(//d3a1v57rabk2hm.cloudfront.net/nzdogbox/joybox_peach_mobile-copy-2/images/whats-inside-9.png?ts=1573529155&host=my.cratejoy.com);
    background-size: cover;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}*/


#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content {
	background-color: rgba(51, 51, 51, 0);
    padding-left:    35px;
    padding-right:    35px;
    order:    2;
}

#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content h1 {
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content h2 {
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content h3 {
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 24px;
    margin-bottom:    1.5rem;
}

#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 20px;
}

#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content .btn.btn-primary {
	background-color: rgb(238, 78, 62);
	color: #FFFFFF;
	font-family: Nanum Gothic;
	font-size: 14px;
    border:    1px solid transparent;
}

#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content .btn.btn-primary:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
    border:    1px solid rgb(238, 78, 62);
}

#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content .btn.btn-secondary {
	border: 1px solid rgb(238, 78, 62);

	background-color: rgb(255, 255, 255);
	//border-color: rgb(238, 78, 62);
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}
#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content .btn.btn-secondary:hover,
#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content .btn.btn-secondary:focus,
#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content .btn.btn-secondary:active,
#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content .btn.btn-secondary:active:focus {
	background-color: rgb(238, 78, 62);
	border-color: rgb(255, 255, 255);
	color: rgb(255, 255, 255);
    border-color:    transparent; 
}

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

@media(min-width: 768px) {
	#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
   .whats_inside_title{
        width: 60%;
        padding-left:    4rem;
        padding-right:    4rem;
    }
   .hero-content_text{
      padding-right:    4rem;
   }
   .hero-buttons{
      padding-right:    4rem;
  }
}
#cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .row{
    position:    relative;
}
.step-row{
    display:    flex;
    flex:    1;
    align-self:    flex-end;
}
.inside-img-div{
    padding-left:    35px;
    padding-right:    35px;
  
}
.inside-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  
}

@media (max-width: 767px) {
    #cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content {  
        padding-top:    40px;
  }      
    #cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53 .hero-content .btn {
        width:    100%;
        margin-bottom:    5px;
  }
   .whats_inside_title{
        text-align:    center;
   }
}
/**portrait side media queries*/

@media (min-width : 768px) 
and (max-width : 1024px) 
and (orientation : portrait) {
    #cmp_6081b82d-1ff9-4287-b76d-0e7cc453dd53  .col-md-6{
        flex: 0 0 100%;
    }
}

.whats_inside_title h2,
.whats_inside_title h3{
    font-weight:    600;
    color:    rgb(238, 78, 62);
}
.hero-buttons{
    margin-top:    2rem;
}
.hero-content_text h3 {
    position:    relative;
}

.hero-content_text h3:nth-child(1):before {
  content:url(//d3a1v57rabk2hm.cloudfront.net/nzdogbox/joybox_peach_mobile-copy-2/images/dog_opt.png?ts=1573529153&host=my.cratejoy.com);
  position:    absolute;
}
.hero-content_text h3:nth-child(3):before {
  content:url(//d3a1v57rabk2hm.cloudfront.net/nzdogbox/joybox_peach_mobile-copy-2/images/paw-3.png?ts=1573529154&host=my.cratejoy.com);
  position:    absolute;
}
.hero-content_text h3:nth-child(5):before {
  content:url(//d3a1v57rabk2hm.cloudfront.net/nzdogbox/joybox_peach_mobile-copy-2/images/heart_smile-2.png?ts=1573529153&host=my.cratejoy.com);
  position:    absolute;
}
/*
 * components/index/cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380/component.css
 */
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380 {
	background-color: ;
}
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380 .row{
    justify-content:    center;
    align-items:    center;
}

#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380 .title-content h2{
    color:    rgb(238, 78, 62);
    //font-size:    28px;
    font-family:    Nanum Gothic;
}
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380  .tab-content{
   margin-top:    40px;
   //margin-bottom:    40px;
}
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380  .tab-content .panel-heading a{
    color:    rgb(0, 0, 0);
    font-size:    20px;
    font-family:    Nanum Gothic;
    cursor:    pointer;
}

#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380  .tab-content .panel {
    border: 1px solid rgb(238, 78, 62);
    border-radius:    10px;
}
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380  .tab-content .fas{
    color:    rgb(238, 78, 62);
    margin-right:    0.5rem;
    transition: .3s transform ease-in-out;
}
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380  .tab-content .panel:nth-child(odd) {
    background-color: rgb(238, 78, 62);
    color:    rgb(255, 255, 255);
}
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380  .tab-content .panel:nth-child(odd) a,
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380  .tab-content .panel:nth-child(odd) .fas{
    color:    rgb(255, 255, 255);
}
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380  .tab-content  [data-toggle="collapse"][aria-expanded="true"] .fas {  
    -ms-transform:rotate(180deg);     /* Internet Explorer 9 */
    -webkit-transform:rotate(180deg); /* Chrome, Safari, Opera */
    transform:rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380 div.panel:last-child {
    margin-bottom:    0;
}
#cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380 div.panel {
    margin-bottom:    10px;
}
/**portrait side media queries*/

@media (min-width : 768px) 
and (max-width : 1024px) 
and (orientation : portrait) {
    #cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380  .col-md-6{
        flex: 0 0 100%;
    }
}
@media (max-width : 767px){
  #cmp_825aaedf-e3a2-43d2-865e-2f5dff9d5380 .tab-content .panel-heading a {
  	font-size:    18px;
  }
}
/*
 * components/index/cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843/component.css
 */
#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 {
	background-color: rgba(255, 255, 255, 0);
}
#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 .special-row {
    justify-content: center;
}
#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 .special-item-row {
  	margin-top: 40px;
    margin-bottom: 40px;
}
#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 .speical {
	margin-top: 20px;
	//margin-bottom: 40px;
}

#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 .special img {
	margin-bottom: 20px;
    width:    100px;
}

#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 h3 {
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
}

#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843  .special-content {
    margin-left: 15px;
    margin-right: 15px;
}
@media(min-width: 768px) {
	#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 .special-content {
        margin-left:    10px;
        margin-right:    10px;  	
    }
}

@media(min-width: 1140px) {
	#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 .special-content {
      margin-left:    5px;
      margin-right:    5px;
  }
}
#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 .special-item-row  {
    display:    flex;
    flex:    1;
    align-self:    flex-end;
}
@media (max-width: 767px) {
	#cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 .special-row { 
		flex-direction:    column; 
    }
    #cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843 .title img{
        width:    100px;
    }
    #cmp_856cf3c0-7369-424f-bcf1-28ddcd3de843  .special-item-row:last-child {
        margin-bottom:    0;
    }
}
/*
 * components/index/cmp_971e60c4-50cb-4416-b08f-4c7910ea379d/component.css
 */
/**********
Navigation
**********/
@media (max-width: 364px) {
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d {
        height:    auto !important;    
    }
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn{
        width:    100%;
        margin-bottom:    5px;
    }
}
@media (max-width: 767px) {
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d {
        //background-size: 100vh !important;
        background-position: 80% 0% !important;
        background-repeat: no-repeat !important;
    }
   #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-brand-md {
       display:    none;
   }
   #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-brand-sm {
       display:    block;
   }
}
@media (min-width: 768px) {
  #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d{
       background-position: 90% bottom !important;
   }
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d  {
    position:    relative;
    height:    100vh;
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
    //position: absolute;
    //left: 0;
    //right: 0;
    //margin-right: auto;
    //margin-left:  auto;
    //z-index:    1;
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-brand-md {
    margin: 20px 0;
    padding-top:    0;
    padding-bottom: 0;
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-brand-sm {
    //position: absolute;
    //left: 0;
    //right: 0;
    //top:    6em;
    //margin-right: auto;
    //margin-left:  auto;
    //z-index:    1;
    display:    none;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-brand {
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 40px;
	//margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-brand > img {
	display: inline-block;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 20px 0;
  	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar a.nav-link,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar button {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar a.nav-link:hover,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar a.nav-link:focus,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar a.nav-link:active,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar button:hover,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar button:focus,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar button:active {
	color: rgb(238, 78, 62);
	outline: none;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-nav .dropdown-menu a {
	color: rgb(0, 0, 0);
	padding: 10px 0;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar {
		background-color: transparent;
		margin-bottom: 0;
	}

	#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;

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

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

	#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}


/**********
Hero
**********/
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content {
	padding: 20px;
}
/**@media(min-width: 1400px) {
	#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content {
		padding-top:    6rem;
	}
}**/
@media(min-width: 768px) {
	#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d {
      background-attachment:    fixed;
	}
	#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content {
		min-height: 700px;
	}
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h1{
    	font-size: 48px;  
    }
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h2{
	    font-size: 28px;    
    }
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h3{
	    font-size: 22px;    
    }
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content p{
    	font-size: 16px;
    }
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn {
        margin-top:    5rem;
    }
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-primary {
        font-size: 16px;
    }
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn-secondary {
        font-size: 16px;
    }
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-height{
      height:    100vh;
    }
}
@media (max-width: 767px) {
   #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h1{
       margin-bottom:    0;
   }
   #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-primary,
   #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn-secondary {
       font-size:    12px;
       float:    left;
   }
   #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn {
       margin-top:    1rem;
   }
   #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-height{
      height:    100vh;
   }
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	letter-spacing: 2px;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h2 {
	color: #FFFFFF;
	font-family: Nanum Gothic;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-primary {
	border: 1px solid transparent;
	background-color: rgb(238, 78, 62);
	color: #FFFFFF;
	font-family: Nanum Gothic;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-primary:hover,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-primary:focus,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-primary:active,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-primary:active:focus {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn-secondary {
	border: 1px solid transparent;

	background-color: rgb(255, 255, 255);
	//border-color: rgb(238, 78, 62);
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-secondary:hover,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-secondary:focus,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-secondary:active,
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content .btn.btn-secondary:active:focus {
	background-color: rgb(238, 78, 62);
	//border-color: #FFFFFF;
	color: #FFFFFF;
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d p {
	margin-bottom: 25px;
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .flex-center {
    -webkit-justify-content: start;
    -moz-justify-content: start;
    -ms-justify-content: start;
    justify-content: start;
}
/** 
 Hero content custom edits
**/
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h1{
    margin-top:    0;
    //margin-bottom: 0;
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h1 em{
    font-style:    normal;
    color:    rgb(238, 78, 62);
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content h3{
    margin-bottom:    10px;
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-content p {
    margin-bottom:    0;
}

@media (max-width: 896px) and (orientation: landscape) {
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d {
        height:    auto;    
    }  
    #cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .hero-height{
        height:    auto;
    }
}

#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .animated {
    animation-duration: 2.5s;
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .animated.subscribe-btn-wrapper{
  animation-duration: 2.5s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
}
#cmp_971e60c4-50cb-4416-b08f-4c7910ea379d .animated.subscribe-btn-wrapper:hover{
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}
/*
 * components/index/cmp_c5da7e00-b3f0-4c1a-9c6e-d810a5fcc698/component.css
 */
@media (max-width: 767px) {
  #cmp_c5da7e00-b3f0-4c1a-9c6e-d810a5fcc698 .component-rich-text-with-button{
      text-align:    center;
  }
  #cmp_c5da7e00-b3f0-4c1a-9c6e-d810a5fcc698 .btn {
      font-size:    14px !important;
      width:    20rem !important;
  }
}
@media(min-width: 768px) {
  #cmp_c5da7e00-b3f0-4c1a-9c6e-d810a5fcc698 .component-rich-text-with-button{
      text-align:    right;
  }
}

#cmp_c5da7e00-b3f0-4c1a-9c6e-d810a5fcc698 .btn {
    width:    24rem;
	background-color: rgb(238, 78, 62);
	color: #FFFFFF;
	font-family: Nanum Gothic;
	font-size: 18px;
    border:    1px solid transparent;
}

#cmp_c5da7e00-b3f0-4c1a-9c6e-d810a5fcc698 .btn:hover {
    background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
    border: 1px solid rgb(238, 78, 62);
}

#cmp_c5da7e00-b3f0-4c1a-9c6e-d810a5fcc698 .btn:hover span {display:none}
#cmp_c5da7e00-b3f0-4c1a-9c6e-d810a5fcc698 .btn:hover:after {content:"YES!"}
/*
 * components/index/cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c/component.css
 */
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c img {
	max-width: 100%;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .title {
	background-color: rgba(255, 255, 255, 0);
    //padding-top:    15px;
    //padding-bottom: 15px;
    width:    100%;
    padding-left:    20px;
    padding-right:   20px;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .title a:after {    
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: rgb(179, 216, 213);
    transition: width 1s ease 0s, left 1s ease 0s;
    width: 0;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .title a:hover:after { 
    width: 100%; 
    left: 0; 
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .title h2,
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .fas.fa-heart{
    color:    rgb(238, 78, 62);
    font-size:  28px;
    display: inline-block;
}
/*.owl-carousel-2 .item{
  opacity:0.3;
  //transition:.4s ease all;
  //transform:scale(.8);
  width:    100%;
}

.owl-item.center .item{
  opacity:1;
  //transform:scale(1);
} */

/*#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-stage{
    display:    flex;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-stage .owl-item{
    display:    flex;
    flex:    1 0 auto;
}*/
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-stage .owl-item .item{
    //display:    flex;
    //border-radius:    15px;
    border-style:    solid;
    border-width:    8px;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-stage .owl-item .item img{
    height:    100%;
    width:    100%;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.13);
    //-webkit-border-radius: 8px;
    //-moz-border-radius: 8px;
   // border-radius: 8px;
}

#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-carousel.owl-carousel-2 .owl-prev {
	left:    0;
 	bottom: 47%;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-carousel.owl-carousel-2 .owl-next {
	right:    0;
	bottom: 47%;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-carousel.owl-carousel-2 .indicator-left{
    -webkit-transform: rotate(-90deg);

    /* Firefox */
    -moz-transform: rotate(-90deg);

    /* IE */
    -ms-transform: rotate(-90deg);

    /* Opera */
    -o-transform: rotate(-90deg);
  
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
   
    font-size:    2rem;
    color:    #FFFFFF;
}

#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-carousel.owl-carousel-2 .indicator-right{
    -webkit-transform: rotate(90deg);

    /* Firefox */
    -moz-transform: rotate(90deg);

    /* IE */
    -ms-transform: rotate(90deg);

    /* Opera */
    -o-transform: rotate(90deg);
  
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  
    font-size:    2rem;
    color:    #FFFFFF;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-nav button{
    position:    absolute;
    visibility: hidden;
    opacity: 0;
    transition: border-color 0.3s linear;
    background-color:    transparent !important;
    border-radius: 50%;
    /* border-width: 2px; */
    border-style: solid;
    border-color:    white;
  
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-nav button:hover{
    border-color:    rgb(91, 95, 101);
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-nav button .indicator-left,
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-nav button .indicator-right{
    transition: color 0.3s linear;
    padding:    10px;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-nav button:hover .indicator-left,
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-nav button:hover .indicator-right{
    color:    rgb(91, 95, 101);
}

#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-carousel.owl-carousel-2:hover .owl-nav button.owl-prev,
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-carousel.owl-carousel-2:hover .owl-nav button.owl-next{
    visibility:    visible;
    opacity:    1;
    -webkit-animation: heartBeat 1s;
    animation: heartBeat 1s;
  animation-duration: 2s;
}
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-carousel.owl-carousel-2:hover .owl-nav button.owl-prev.disabled,
#cmp_e453f005-7548-40ec-9cdd-17edf7d9ba0c .owl-carousel.owl-carousel-2:hover .owl-nav button.owl-next.disabled{
    opacity:    0.5;
}
.owl-carousel.owl-carousel-2 {
    margin-top:    40px;
}
.owl-carousel.owl-carousel-2 .owl-nav button.owl-prev:focus, .owl-carousel.owl-carousel-2 .owl-nav  button.owl-next:focus{
    outline:    0;
}
.owl-carousel {
 	z-index:    auto !important;
}
/*
 * components/privacy_policy/cmp_5d9e30b2-8828-4f7f-9bc9-2b1dccbe2b1a/component.css
 */
#cmp_5d9e30b2-8828-4f7f-9bc9-2b1dccbe2b1a {
	background-color: rgba(179, 216, 213, 0.3);
}

#cmp_5d9e30b2-8828-4f7f-9bc9-2b1dccbe2b1a h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
    font-weight:    600;
}

#cmp_5d9e30b2-8828-4f7f-9bc9-2b1dccbe2b1a h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_5d9e30b2-8828-4f7f-9bc9-2b1dccbe2b1a h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_5d9e30b2-8828-4f7f-9bc9-2b1dccbe2b1a p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_5d9e30b2-8828-4f7f-9bc9-2b1dccbe2b1a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_5d9e30b2-8828-4f7f-9bc9-2b1dccbe2b1a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}
/*
 * components/privacy_policy/cmp_ace272ac-619a-46d3-b983-64e3d92ad495/component.css
 */
#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 {
	background-color: rgba(179, 216, 213, 0);
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 .component-rich-text-with-button__content-row {
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 .btn {
	background-color: rgb(238, 78, 62);
	color: #FFFFFF;
	font-family: Nanum Gothic;
	font-size: 14px;
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
}

#cmp_ace272ac-619a-46d3-b983-64e3d92ad495 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
}
/*
 * components/shop/listing/cmp_047d8a28-20b8-46f2-a145-553fb75aa560/component.css
 */
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 img {
	max-width: 100%;
}
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-carousel.store-owl-carousel .owl-prev {
	left:    0;
 	bottom: 47%;
}
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-carousel.store-owl-carousel .owl-next {
	right:    0;
	bottom: 47%;
}
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-carousel.store-owl-carousel .indicator-left{
    -webkit-transform: rotate(-90deg);

    /* Firefox */
    -moz-transform: rotate(-90deg);

    /* IE */
    -ms-transform: rotate(-90deg);

    /* Opera */
    -o-transform: rotate(-90deg);
  
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
   
    font-size:    2rem;
    color:    #FFFFFF;
}

#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-carousel.store-owl-carousel .indicator-right{
    -webkit-transform: rotate(90deg);

    /* Firefox */
    -moz-transform: rotate(90deg);

    /* IE */
    -ms-transform: rotate(90deg);

    /* Opera */
    -o-transform: rotate(90deg);
  
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  
    font-size:    2rem;
    color:    #FFFFFF;
}
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-nav button{
    position:    absolute;
    visibility: hidden;
    opacity: 0;
    transition: border-color 0.3s linear;
    background-color:    transparent !important;
    border-radius: 50%;
    /* border-width: 2px; */
    border-style: solid;
    border-color:    white;
  
}
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-nav button:hover{
    border-color:    rgb(91, 95, 101);
}
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-nav button .indicator-left,
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-nav button .indicator-right{
    transition: color 0.3s linear;
    padding:    10px;
}
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-nav button:hover .indicator-left,
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-nav button:hover .indicator-right{
    color:    rgb(91, 95, 101);
}

#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-carousel.store-owl-carousel:hover .owl-nav button.owl-prev,
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-carousel.store-owl-carousel:hover .owl-nav button.owl-next{
    visibility:    visible;
    opacity:    1;
    -webkit-animation: heartBeat 1s;
    animation: heartBeat 1s;
  animation-duration: 2s;
}
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-carousel.store-owl-carousel:hover .owl-nav button.owl-prev.disabled,
#cmp_047d8a28-20b8-46f2-a145-553fb75aa560 .owl-carousel.store-owl-carousel:hover .owl-nav button.owl-next.disabled{
    opacity:    0.5;
}
.owl-carousel.store-owl-carousel {
    margin-top:    0;
}
.owl-carousel.store-owl-carousel .owl-nav button.owl-prev:focus, .owl-carousel.store-owl-carousel .owl-nav  button.owl-next:focus{
    outline:    0;
}
.store-banner-link{
    position:     absolute;
}
.store-banner-link:hover {
    background-color:    #fff !important;
}


@media(max-width: 767px) {
	.store-banner-link{
      top: 7rem;
      right: 0;
      font-size: 14px;
      padding:    5px 10px;  
    }
    .hero-margin .container{
        padding-left:    0;
        padding-right:    0;
    }
}
/**portrait side media queries*/
@media (min-width: 767px) and (orientation: portrait) {
    .store-banner-link{
        top:    15rem !important;
    }
}

@media(min-width: 768px){
	.store-banner-link{
      top: 20rem;
      right: 0;
      font-size: 22px;
      left: auto;
    }	
}
@media(min-width: 1025px){
	.store-banner-link{
      top:    24rem;
      right:    auto;
      left:    10rem;
      font-size: 24px;
    }	
}
/*
 * components/shop/listing/cmp_218d0efe-ccea-49c8-9af9-0b398df59537/component.css
 */
#cmp_218d0efe-ccea-49c8-9af9-0b398df59537 {
	background-color: rgba(179, 216, 213, 0.3);
}

#cmp_218d0efe-ccea-49c8-9af9-0b398df59537 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
    font-weight:    600;
}

#cmp_218d0efe-ccea-49c8-9af9-0b398df59537 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_218d0efe-ccea-49c8-9af9-0b398df59537 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_218d0efe-ccea-49c8-9af9-0b398df59537 p {
	color: rgba(255, 147, 114, 0.3);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_218d0efe-ccea-49c8-9af9-0b398df59537 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgba(255, 147, 114, 0.3);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_218d0efe-ccea-49c8-9af9-0b398df59537 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgba(255, 147, 114, 0.3);
	font-family: Nanum Gothic;
	font-size: 16px;
}

/*
 * components/shop/listing/cmp_2e0b161d-528f-4738-8be2-0d27ba6d2d34/component.css
 */
#cmp_2e0b161d-528f-4738-8be2-0d27ba6d2d34 {
	justify-content: center;
}

#cmp_2e0b161d-528f-4738-8be2-0d27ba6d2d34 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_2e0b161d-528f-4738-8be2-0d27ba6d2d34  {
	//border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	margin-top:    35px;
    //padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_3adaf993-df08-4d01-abe6-dcb966e93729/component.css
 */
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing-item {
	color: rgb(0, 0, 0);
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    flex-wrap:    wrap;
    width: 100%;
    justify-content: space-between;
}

#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing{
    //justify-content:    space-between;
    padding-left:    .9375rem;
    padding-right:   .9375rem;
    padding-top:    2rem;
    padding-bottom:    2rem;
}
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing-item:hover,
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing-item__name {
	margin:    0;
}
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .product-avg-rating{
    //flex-basis:    25%;  
}
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing-item__price{
    //flex-basis:    25%;  
}   
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

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

#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .product_page.active a,
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .product_page a:hover,
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .product_page a:focus,
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .next_page a:hover,
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .next_page a:focus,
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .prev_page a:hover,
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .product_page.active a {
	color: black;
}

#cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .shop-listing-item__name{
   // flex-basis:    50%;  	
    margin:    0;
    font-weight:    600;
    font-size:    25px;
}
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .product-col{
    border-radius:    15px;
    //padding: 3rem;
    //background: #FFF;
    font-weight:    600;
    margin:    0 5px 2rem 5px;
    //border-radius:    37px;
    transition:    background 0.3s ease-in-out;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    //display: flex;
    //align-items: flex-end;
    //box-shadow:    3px 3px 6px 6px #ccc;
    //-moz-box-shadow:    3px 3px 6px 6px #ccc;
    //-webkit-box-shadow: 3px 3px 6px 6px #ccc;
}

#cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .product-col:hover {
    //background-color:  rgba(255, 147, 114, 0.3);
}
@media (max-width: 767px) {
    #cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .product-col{
        padding:    2rem;
        margin:    0 auto 2rem auto;
    }
    #cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing-item {
        flex-direction:    column;
        align-items:    center;
        text-align:    center;
    }
    #cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing-item__name{
        line-height:    2;
    }
    #cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .product-avg-rating{
        line-height:    2;
    }
    #cmp_3adaf993-df08-4d01-abe6-dcb966e93729 .shop-listing-item__price{
        line-height:    2;
    }   
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 374px) {
  #cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .product-col{
        height:    130px;
  }
} 

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 375px) {
  #cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .product-col{
        height:    160px;
  }
} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .product-col{
        height:    160px;
        flex-basis: 49%;
  }
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  #cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .product-col{
        height:    200px;
        flex-basis: 49%;
  }
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  #cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .product-col{
        height:    250px;
        flex-basis: 49%;
  }
}
#cmp_3adaf993-df08-4d01-abe6-dcb966e93729  .product-col:last-child{
  margin-bottom:    0;
}
/*
 * components/shop/listing/cmp_8a9bde1a-046e-4d12-90d2-184da3ec8103/component.css
 */
#cmp_8a9bde1a-046e-4d12-90d2-184da3ec8103 {
	justify-content: center;
	//margin-bottom: 35px;
}

#cmp_8a9bde1a-046e-4d12-90d2-184da3ec8103 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_520a940a-0390-4f74-817c-9b13ce039c86/component.css
 */
#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .shop-product select {
	width: auto;
}

#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 20px;
}

#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_520a940a-0390-4f74-817c-9b13ce039c86  .shop-product__review-share-desktop  .btn-empty {
    background-color:    transparent;
    border:    1px solid  rgb(238, 78, 62);
    border-radius:    10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
}
#cmp_520a940a-0390-4f74-817c-9b13ce039c86  .shop-product__review-share-desktop  .btn-empty:hover,
#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .hidden-md-up .rating .btn-empty:hover{
    border:    1px solid transparent;
    background-color:   rgb(238, 78, 62);
    color:    #FFFFFF !important;
}
#cmp_520a940a-0390-4f74-817c-9b13ce039c86  .shop-product__review-share-desktop  .rating,
#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .hidden-md-up .rating{
	align-items:	center;
    padding-top:    20px;
}
#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .product-avg-rating{
    padding-right:    1rem;
}
#cmp_520a940a-0390-4f74-817c-9b13ce039c86 .section-separator{
    border-top: 1px solid #E1E1E1;
    margin-bottom: 20px;
}
/*
 * components/shop/product/cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107/component.css
 */
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-avg-rating {
	margin-top: 3px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating-text {
	color: rgb(0, 0, 0);
	margin-left: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #product-reviews-list-row {
	margin-top: 25px;
	margin-bottom: 50px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	border-bottom: 1px solid #eee;
	font-family: Nanum Gothic;
	font-size: 28px;
	color: #333333;
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review {
	padding-top: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-info {
	margin-bottom: 15px;
	overflow: auto;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-meta {
	float: left;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-rating {
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-content {
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-title {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 15px;
	letter-spacing: 1px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-body {
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-half-png {
	color: rgb(238, 78, 62);
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #reviews-show-more {
	color: rgb(238, 78, 62);
	display: inline-block;
	margin-top: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-heading {
	border-bottom: 1px solid #eee;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 15px;
	letter-spacing: 1px;
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message {
	font-family: Nanum Gothic;
	margin: 15px 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message a {
	color: ;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-row {
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-label {
	font-family: Nanum Gothic;
	font-size: 14px;
	margin-right: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating {
	display: inline-block;
	line-height: 22px;
	vertical-align: middle;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-half-png {
	color: rgb(238, 78, 62);
	font-size: 22px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-title {
	border: 1px solid rgb(0, 0, 0);
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 14px;
	font-weight: 300;
	padding-left: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-body {
	border: 1px solid rgb(0, 0, 0);
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 14px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-rating {
	color: rgb(238, 78, 62);
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review.customer-product-review-hidden {
	display: none;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review h4 {
	font-size: 13px;
	margin-top: 6px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .ecom-product-page .rating {
	border-right: 1px solid #eee;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	margin-bottom: 20px;
}

/*
 * components/shop/product/cmp_8ee1a622-d479-4541-ae28-663ab87ea666/component.css
 */
#cmp_8ee1a622-d479-4541-ae28-663ab87ea666 {
  background-color: rgba(179, 216, 213, 0.3);
}
#cmp_8ee1a622-d479-4541-ae28-663ab87ea666 h1{
    font-weight:    600;
}
#cmp_8ee1a622-d479-4541-ae28-663ab87ea666 p{
    margin-bottom:    0rem;
}
/*
 * components/sidebar/cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca/component.css
 */
#cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca > header {
	margin-bottom: 40px;
}
#cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca .item {
	position: relative;
	margin-bottom: 30px;
}
#cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca .item > .pull-left {
	margin-right: 20px;
	width: 65px;
}
#cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca .item .meta {
	margin: 0;
	line-height: 120%;
}
#cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca .item .media-heading {
	padding-right: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	//white-space: nowrap;
}
#cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca .item .close {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1;
	filter: alpha(opacity=100);
	color: inherit;
	text-shadow: none;
}
#cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca .total {
	margin-bottom: 25px;
	padding: 25px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca .total .dt {
	text-align: right;
}
#cmp_6e5406cf-e436-48de-abf2-bebaf6fb2fca .total .strong {
	font-size: 15px;
}

/*
 * components/sold_out/cmp_45da4bc6-4501-4f82-acad-167faa2884a0/component.css
 */
#cmp_45da4bc6-4501-4f82-acad-167faa2884a0 img {
	max-width: 100%;
}

#cmp_45da4bc6-4501-4f82-acad-167faa2884a0  {
	padding-top: 50px;
}
/*
 * components/sold_out/cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76/component.css
 */
#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 {
	background-color: #FFFFFF;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 .btn {
	background-color: rgb(238, 78, 62);
	color: #FFFFFF;
	font-family: Nanum Gothic;
	font-size: 14px;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_7f9b1ba2-85db-4031-9153-55bd59a1aa76  {
	padding-bottom: 50px;
}
/*
 * components/subscribe/cmp_71010aac-99b0-4280-8b16-040f709412f9/component.css
 */
#cmp_71010aac-99b0-4280-8b16-040f709412f9 {
	background-color: rgba(238, 78, 62, 0.8);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_71010aac-99b0-4280-8b16-040f709412f9 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_71010aac-99b0-4280-8b16-040f709412f9 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_71010aac-99b0-4280-8b16-040f709412f9 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_71010aac-99b0-4280-8b16-040f709412f9 p {
	color: rgb(255, 255, 255);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_71010aac-99b0-4280-8b16-040f709412f9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_71010aac-99b0-4280-8b16-040f709412f9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Nanum Gothic;
	font-size: 16px;
}

/*
 * components/subscribe/cmp_7296b06a-b7c1-4dfd-8938-623fcb03f7d0/component.css
 */
#cmp_7296b06a-b7c1-4dfd-8938-623fcb03f7d0 {
	background-color: #FFFFFF;
}

#cmp_7296b06a-b7c1-4dfd-8938-623fcb03f7d0 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_7296b06a-b7c1-4dfd-8938-623fcb03f7d0 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_7296b06a-b7c1-4dfd-8938-623fcb03f7d0 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_7296b06a-b7c1-4dfd-8938-623fcb03f7d0 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_7296b06a-b7c1-4dfd-8938-623fcb03f7d0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_7296b06a-b7c1-4dfd-8938-623fcb03f7d0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}
/*
 * components/subscribe/cmp_a54c8409-ec31-4598-9d35-f01c1db4ea77/component.css
 */

/*
 * 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: 14px;

	color: #FFFFFF;
	background-color: rgb(238, 78, 62);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: rgb(238, 78, 62);
	background-color: rgb(255, 255, 255);
}

#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: 14px;

	color: #FFFFFF;
	background-color: rgb(238, 78, 62);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: rgb(238, 78, 62);
	background-color: rgb(255, 255, 255);
}

@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_4398d707-cdd5-416d-a07d-3d77f25e806d/component.css
 */
#cmp_4398d707-cdd5-416d-a07d-3d77f25e806d {
    padding-bottom:    20px;
}

#cmp_4398d707-cdd5-416d-a07d-3d77f25e806d h1{
    color:    rgb(0, 0, 0);
}
/*
 * components/subscribe_flow/survey_step/cmp_d519f88d-f996-4bd0-91aa-01ca0355c184/component.css
 */
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey h3 {
	margin-bottom: 0.5em;
}

#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .radio input[type="radio"],
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .survey-form{
    //display: flex;
    //align-items: center;
    //flex-wrap:    wrap;
    //justify-content: flex-end;
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .survey-field{
    align-items: center;
    display: flex;
  	margin-bottom: 2em;
    flex-grow:    1;
    flex-shrink:    1;
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .survey-field .form-control{
    border:    1px solid rgb(179, 216, 213);
    border-radius:    10px;
    padding-top:    15px;
    padding-bottom:    0;
    line-height:    1rem;
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .flow-step-notification{
    background-color: rgba(238, 78, 72, 0.8);
	padding-top: 20px;
	padding-bottom: 20px;
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .flow-step-notification p {
	color: rgb(255, 255, 255);
    font-size: 16px;
    font-family: Nanum Gothic;
    font-weight:    600;
    margin-bottom:    0.5rem
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .form-control{
    transition:    border 1s ease-in-out;
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .form-control:active,
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .form-control:focus {
    border: 1px solid rgb(238, 78, 72);
}

#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .btn.survey-submit {
    background-color: rgb(238, 78, 72);
    color: rgb(255, 255, 255);
    font-family: Nanum Gothic;
    font-size: 18px;
    border: 1px solid transparent;    
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .btn.survey-submit:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(238, 78, 72);
    border: 1px solid rgb(238, 78, 72);
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .btn.survey-submit .fas.fa-forward{
    vertical-align:    middle;
}

@media (max-width: 767px) {
    #cmp_d519f88d-f996-4bd0-91aa-01ca0355c184  .col-xs-12 {
        width:    100%;  
    }
    #cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .survey-field{
        flex-direction: column;
    }  
}
@media (min-width: 768px){
    #cmp_d519f88d-f996-4bd0-91aa-01ca0355c184.survey .survey-field{
        flex-direction: row;
    }  
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184 .next-button{
    padding-top:    10px;
    padding-bottom:    20px;
}
#cmp_d519f88d-f996-4bd0-91aa-01ca0355c184 .animated.bounce{
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    color:    rgb(238, 78, 62);
    font-weight:    600;
}
/*
 * components/subscribe_flow/terms_step/cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793/component.css
 */
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper {
    padding:    10px 0 20px;
    position:    relative;
}
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper.row{
    justify-content:    space-around;
    padding-left:    0.5rem;
    padding-right:    0.5rem;
}
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper a{
    text-decoration:    none;
}

#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .card{
    padding:    2rem;
    border: 1px solid rgb(238, 78, 62);
    border-radius:    37px;
    margin-bottom:    2rem;
    transition: all 0.5s ease-out !important;
    -webkit-transition: all 0.5s ease-out; !important: ; 
}
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .card:hover{
    background-color: rgb(238, 78, 62);
}
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .card:hover .frequency-price,
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .card:hover .frequency-description,
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .card:hover .frequency-title{
    color:    rgb(255, 255, 255);
}
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper  .frequency-price{
    font-size:     30px;
    color:    rgb(238, 78, 62);
    font-weight:    600;
    margin-bottom:    1rem;
}
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .frequency-title{
    font-size:    26px;
    color:       rgb(238, 78, 62);
    margin-bottom:    1rem;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .frequency-description{
    font-size:   18px;
    color:     rgb(238, 78, 62);
}

@media(max-width: 991px) {
    #cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793  .frequency-wrapper .frequency-link-wrapper{
        flex:    1;
    }

}

#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .flow-step-notification{
    background-color: rgba(238, 78, 62, 0.8);
	padding-top: 20px;
	padding-bottom: 20px;
}
#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .flow-step-notification p {
	color: rgb(255, 255, 255);
    font-size: 16px
    font-family: Nanum Gothic;
    font-weight:    600;
    margin-bottom:    0.5rem
}
@media (max-width: 767px) {
    #cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .frequency-title{
        width:    100%;
    }
    #cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper  .column{
        width:    95%; 	
    }
}
@media (max-width:    1024px){
    #cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .frequency-title{
        width:    100%;
    }
}
/**@media (max-width: 767px) {
	#cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper  .frequency-price,
    #cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .frequency-title{
        font-size:    30px;
    }
    #cmp_1497af18-0bb6-45df-9eeb-2ffc57f56793 .frequency-wrapper .frequency-description{
        font-size:    24px;
    }
}**/
/*
 * components/subscribe_flow/terms_step/cmp_c43d1bca-760f-4146-94ea-dc86aa2b696a/component.css
 */
#cmp_c43d1bca-760f-4146-94ea-dc86aa2b696a {
	//padding: 40px 0 20px;
}

#cmp_c43d1bca-760f-4146-94ea-dc86aa2b696a h1{
    color:    rgb(0, 0, 0);
}
/*
 * components/subscribe_flow/variant_step/cmp_17463c88-ac9b-429c-960d-a32a56395a3a/component.css
 */
#cmp_17463c88-ac9b-429c-960d-a32a56395a3a {
	//padding: 40px 0 20px;
}

#cmp_17463c88-ac9b-429c-960d-a32a56395a3a h1{
    color:    rgb(0, 0, 0)
}
/*
 * components/subscribe_flow/variant_step/cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4/component.css
 */
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 {
}

#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4  .steps-buttons-wrap{
    flex-direction:    column;
    align-items:    center;
    position:    relative;
    padding-left:    0.5rem;
    padding-right:    0.5rem;
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .btn {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
	font-family: Nanum Gothic;
	font-size: 26px;
    width:    22rem;
    margin-bottom:    2rem;
    border:    1px solid rgb(238, 78, 62);
}
@media (max-width: 767px) {
    #cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4  .btn {
        width:    100%;  
    }
    #cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .ask-question-show-modal .ask-question-img-show{
        width: 300px !important;
        height: 598px !important;
        top:    30% !important;
    }
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .btn:not(:first-child) {
    margin-top:    1rem;
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .btn:hover {
	background-color: rgb(238, 78, 62);
  	color: rgb(255, 255, 255);
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .btn:hover .variant-text{
	color: rgb(255, 255, 255);
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .variant-text{
   font-size: 20px;
   font-family:  Nanum Gothic
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .flow-flex{
    display:    flex;
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .flow-step-notification{
	background-color: rgba(238, 78, 62, 0.8);
	padding-top: 20px;
	padding-bottom: 20px;
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .flow-step-notification p {
	color: rgb(255, 255, 255);
    font-size: 16px;
    font-family: Nanum Gothic;
    font-weight:    600;
    margin-bottom:    0.5rem
}
/** Ask question & image pop up styles*/
@media (min-width: 768px) {
  #cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4  .ask-question-img {
      position:    absolute;
      top:    0;
      bottom:    0;
      left:    70%;
  }
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4  .ask-question-img {
    cursor:    pointer;
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4  .ask-question-img  img{
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
    -webkit-animation-delay: 1s;    
  	animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-delay: 1s;
    width:    213px;
    height:    auto;
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4  .ask-question-img img:hover{
    animation-play-state: paused;
}

#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .ask-question-show-modal{
    z-index: 999;
    display: none;
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .ask-question-show-modal .ask-question-overlay{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.66);
    position: absolute;
    top: 0;
    left: 0;
}
#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .ask-question-show-modal .ask-question-img-show{
    width: 450px;
    height: 897px;
    background: #FFF;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    overflow: hidden;
    z-index:    1;
}

#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .ask-question-close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    font-weight: bold;
    z-index:    1;
    color:    rgb(240, 91, 122);
}

#cmp_e82fc9f0-9cd2-45fb-a6cc-027c705697c4 .ask-question-img-show img{
    width: 100%;
    height: 100%;
}
/*End style*/

/*
 * components/terms_and_conditions/cmp_0c300bca-3adc-49da-8f1a-86c06a357345/component.css
 */
#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 {
	background-color: rgba(255, 255, 255, 0);
}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 .component-rich-text-with-button__content-row {

}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 .btn {
	background-color: rgb(238, 78, 62);
	color: #FFFFFF;
	font-family: Nanum Gothic;
	font-size: 14px;
}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(238, 78, 62);
}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
}

#cmp_0c300bca-3adc-49da-8f1a-86c06a357345 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 18px;
}
/*
 * components/terms_and_conditions/cmp_68cffb0d-6f11-4555-ab46-0dd5e373a1c9/component.css
 */
#cmp_68cffb0d-6f11-4555-ab46-0dd5e373a1c9 {
	background-color: rgba(179, 216, 213, 0.3);
}

#cmp_68cffb0d-6f11-4555-ab46-0dd5e373a1c9 h1 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 36px;
    font-weight:    600;
}

#cmp_68cffb0d-6f11-4555-ab46-0dd5e373a1c9 h2 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 28px;
}

#cmp_68cffb0d-6f11-4555-ab46-0dd5e373a1c9 h3 {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 22px;
}

#cmp_68cffb0d-6f11-4555-ab46-0dd5e373a1c9 p {
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_68cffb0d-6f11-4555-ab46-0dd5e373a1c9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}

#cmp_68cffb0d-6f11-4555-ab46-0dd5e373a1c9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Nanum Gothic;
	font-size: 16px;
}