/*----------------------------------------------------------
Global
----------------------------------------------------------*/
* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

.page, .post {
  margin-bottom: 0
}

/*------------------------------------------------------------
Grid System
------------------------------------------------------------*/
.row, .flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--grid-space)) 0 calc(-1 * var(--grid-space))
}

ul.row {
  list-style: none;
  padding: 0;
}

.row .row {
  margin: 0
}

.flex {
  margin: 0 auto;
}

/*----------------------------------------
Columns
----------------------------------------*/
.col {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: min(100%, 100%);
  padding: var(--grid-space)
}

/*----------------------------------------
Component Columns
----------------------------------------*/
.cols_2 > .col {
  width: calc(100% / 2)
}

.cols_3 > .col {
  width: calc(100% / 3)
}

.cols_4 > .col {
  width: calc(100% / 4)
}

.cols_5 > .col {
  width: calc(100% / 5)
}

.cols_6 > .col {
  width: calc(100% / 6)
}

.cols_7 > .col {
  width: calc(100% / 7)
}

/*----------------------------------------
Divine Proportions
----------------------------------------*/
.cols_m7 > .col_major {
  width: 53.33%
}

.cols_m7 > .col_minor {
  width: 46.67%
}

.cols_gr > .col_major {
  width: 61.8%
}

.cols_gr > .col_minor {
  width: 38.2%
}

.cols_p5 > .col_major {
  width: 66.67%
}

.cols_p5 > .col_minor {
  width: 33.33%
}

.cols_p4 > .col_major {
  width: 75%
}

.cols_p4 > .col_minor {
  width: 25%
}

.cols_m3 > .col_major {
  width: 80%
}

.cols_m3 > .col_minor {
  width: 20%
}

.cols_m2 > .col_major {
  width: 88.89%
}

.cols_m2 > .col_minor {
  width: 11.11%
}

/*----------------------------------------------------------
Wrappers & Containers
----------------------------------------------------------*/
.wrapper {
  width: min(100%, 100%);
  margin: 0;
  padding: var(--space-xxxl) 0;
  overflow: hidden;
  position: relative;
}

.wrapper > section {
  width: min(90%, 1200px);
  margin-inline: auto;
}

.wrapper.short {
  padding-block: var(--space-xl);
}

.section:not(:last-of-type) {
  margin-bottom: var(--space-xxl);
}

.section.short {
  margin-bottom: var(--space-xl);
}

.subsection:not(:last-of-type) {
  margin-bottom: var(--space-xl);
}

/*----------------------------------------
Section Headers & SubHeaders
----------------------------------------*/
.section_header {
  width: min(100%, calc(1280px / 1.618));
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section_subheader {
  margin-bottom: var(--space-lg);
}

.section_subheader .title {
  font-weight: 800;
  margin-bottom: var(--space-xxxs);
}

.section_subheader.underline .title {
  display: flex;
  gap: 1em;
  align-items: baseline;
}

.section_subheader.underline .title::after {
  content: '';
  flex-grow: 1;
  height: 3px;
  /* background-image: linear-gradient(to right, var(--gd-blue)); */
  background-color: var(--color-blue);
  opacity: .125;
}

.section_subheader:has(.post_count) {
  margin: 0;
}

.section_subheader .post_count {
  font-weight: 600;
  font-size: 1em;
  text-transform: uppercase;
  /* letter-spacing: var(--letter-spacing-loose); */
  color: var(--gray-6);
  margin: 0;
  padding-left: 1em;
}

/*----------------------------------------------------------
Boxes
----------------------------------------------------------*/
.box {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  border-radius: var(--box-border-rad);
  border: 1px solid var(--gray-1);
  padding: var(--space-lg);
  overflow: hidden;
}

.box_transform {
  transition: var(--transition)
}

.box_transform:hover {
  transform: translateY(calc(var(--box-translate) * -1)) scale(var(--box-scale));
  box-shadow: var(--box-shadow-hover);
}

.box_transform:active {
  transform: translateY(0) scale(1);
  box-shadow: var(--box-shadow);
}

.box p:last-of-type {
  margin-bottom: 0;
}

/*----------------------------------------------------------
Colors & Images
----------------------------------------------------------*/
.color_bg_light {
  background-color: var(--color-primary-lightest);
}

.bg_color_blue {
  background-color: var(--color-blue);
}

.bg_color_blue_light {
  background-color: var(--color-blue-light);
}

.bg_color_yellow {
  background-color: var(--color-yellow);
}

.bg_color_yellow_light {
  background-color: var(--color-yellow-light);
}

.bg_color_pink {
  background-color: var(--color-pink);
}

.bg_color_pink_light {
  background-color: var(--color-pink-light);
}

.bg_color_white {
  background-color: var(--color-white);
}

.bg_color_white_light {
  background-color: var(--color-white-light);
}

.bg_color_green {
  background-color: var(--color-green);
}

.bg_color_green_light {
  background-color: var(--color-green-light);
}

.bg_color_purple {
  background-color: var(--color-purple);
}

.bg_color_purple_light {
  background-color: var(--color-purple-light);
}

.bg_color_violet {
  background-color: var(--color-violet);
}

.bg_color_violet_light {
  background-color: var(--color-violet-light);
}


.bg_img,
.svg_img {
  background-position: center;
  background-repeat: no-repeat;
}

.bg_img {
  background-size: cover;
}

.svg_img {
  background-size: 100%
}

.gold_ring {
  background: linear-gradient(50deg,
      hsl(41, 80%, 25%),
      hsl(41, 68%, 53%),
      hsl(41, 95%, 72%),
      hsl(42, 100%, 99%) 50%,
      hsl(41, 65%, 45%),
      hsl(42, 85%, 34%)) border-box;
  border-radius: 50em;
  border: 7px solid var(--transparent);
  box-shadow: 4px 8px 20px hsla(40, 80%, 10%, .25);
}

.no_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no_link {
  text-decoration: none;
  color: var(--gray-10);
}

.no_link:is(:hover, :active, :visited) {
  color: var(--gray-10);
}

.mask {
  position: relative
}

.mask::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .8;
  z-index: 0;
}

/*----------------------------------------------------------
Typography
----------------------------------------------------------*/
body {
  font-family: var(--font-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--gray-10);
}

h1, h2, h3, h4, h5 {
  margin: 0 0 var(--space-sm);
  color: var(--color-headings);
  font-weight: 600;
}

h1, h2 {
  font-weight: 700;
}

h1 {
  font-size: var(--text-xxl);
  color: var(--color-primary-dark);
  line-height: 1.25;
}

h2 {
  font-size: var(--text-xl);
  line-height: 1.35;
}

h3 {
  font-size: var(--text-lg);
  line-height: 1.5;
}

h4 {
  font-size: var(--text-md)
}

h5 {
  font-size: var(--text-body)
}

p {
  font-size: var(--text-body);
  line-height: var(--body-line-height);
  margin: 0 0 1.7em;
}

ul, ol {
  margin: var(--space-md) 0
}

.text_white {
  color: #fff
}

.text_uppercase {
  text-transform: uppercase
}

.text_bold {
  font-weight: 600;
}

.text_bolder {
  font-weight: 800;
}

.text_center {
  text-align: center
}

.text_balance {
  text-wrap: balance;
}

.font_secondary {
  font-family: var(--font-secondary);
}

.font_serif {
  font-family: var(--font-serif);
}

.text_overflow {
  width: min(100%, 95%);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden
}

.eyebrow {
  text-transform: uppercase;
  font-size: .9em;
  letter-spacing: var(--letter-spacing-loose);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0;
}

/*----------------------------------------------------------
Buttons
----------------------------------------------------------*/
.btn {
  display: block;
  width: min(100%, 250px);
  margin: var(--space-lg) 0;
  line-height: 3.5;
  height: 3.5em;
  border-radius: 50px;
  border-width: 1px;
  border-style: solid;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.btn_primary {
  background-image: linear-gradient(45deg,
      var(--color-accent),
      var(--color-accent-dark),
      var(--color-accent-darker));
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 3px 6px 9px hsla(322 70% 20% / .25);
}

.btn_secondary {
  background-image: linear-gradient(45deg,
      var(--color-secondary-light),
      var(--color-secondary));
  color: var(--color-primary-darkest);
  border-color: var(--color-secondary-lighter);
  box-shadow: 3px 6px 9px hsla(43 100% 15% / .25);
}

.btn_ghost {
  background-color: #fff;
  border-color: var(--gray-3);
  color: var(--gray-10);
}

.btn_ghost_transparent {
  background-color: var(--transparent);
  color: #fff;
  border-color: #fff;
}

.btn svg {
  margin-right: var(--space-xxs);
  opacity: .65;
}

/*----------------------------------------
Button Sizes
----------------------------------------*/
.btn:is(.btn_md, .btn_sm) {
  font-size: .925em;
}

.btn_md {
  height: 3em;
  line-height: 3;
  max-width: 12em;
}

.btn_sm {
  height: 2.5em;
  line-height: 2.5;
  max-width: var(--space-xxxl);
}

.btn_disabled {
  background-image: none;
  background-color: var(--color-text-subtle);
  opacity: .65;
  color: #fff;
  pointer-events: none;
  cursor: not-allowed
}

.btn_content {
  margin: var(--space-lg) 0;
  font-size: .9em
}

.btn_center {
  margin: var(--space-md) auto
}

.button {
  padding: 0
}

/* Button: Hover
------------------------------*/
.btn:hover {
  transform: translateY(calc(-1 * var(--box-hover-move))) scale(var(--box-hover-scale));
}

/* Button: Active
------------------------------*/
.btn:active {
  transform: translateY(calc(var(--box-hover-move))) scale(1);
}

/* Buttons States
------------------------------*/
.btn_primary:is(:hover, :active, :visited, :focus),
.btn_disabled:is(:visited, :focus) {
  color: #fff
}

.btn_secondary:is(:hover, :active, :visited, :focus) {
  color: var(--gray-10)
}

.btn_ghost:is(:hover, :active) {
  background-color: var(--gray-1);
}

.btn_ghost_transparent:is(:hover, :active) {
  background-color: #fff;
  color: var(--gray-10);
}

/*----------------------------------------
Dropdown Buttons
----------------------------------------*/
.dropdown_btn {
  width: min(100%, 15em);
  position: relative;
}

.dropdown_btn .toggle {
  display: block;
  width: 100%;
  height: 3.5em;
  line-height: 3.5;
  padding: 0;
  font-size: 1em;
  font-weight: 600;
  border-radius: var(--space-xs);
  border-width: 1px;
  border-style: solid;
  z-index: 2;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

/* Dropdown Button – Menu
----------------------------------------*/
.dropdown_btn ul {
  list-style: none;
  padding: 0;
  position: absolute;
  transition: var(--transition);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: 0;
  transform: scaleY(0);
  transform-origin: top;
  background-color: #fff;
  width: 100%;
  border-radius: 0 0 var(--space-xs) var(--space-xs);
  border: 1px solid var(--color-primary-lightest);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.dropdown_btn:has(.open) ul {
  top: 2em;
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  z-index: 1;
}

.dropdown_btn li {
  cursor: pointer;
  width: 100%;
}

.dropdown_btn li :is(a, button) {
  display: block;
  padding: .65em var(--space-md);
  color: var(--color-text);
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--space-xs);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  border: none;
  background-color: var(--transparent);
}

.dropdown_btn li :is(a, button):hover {
  background-color: var(--color-primary-lightest);
}

/* Dropdown Button – Has Icon
----------------------------------------*/
.dropdown_btn li a:has(svg, .icon) {
  display: flex;
  align-items: center;
}

.dropdown_btn li :is(svg, .icon) {
  width: 1em;
  aspect-ratio: 1/1;
  margin-right: var(--space-sm);
  opacity: .6;
}

/* Dropdown Button – Arrow
----------------------------------------*/
.nav_dropdown .toggle::before,
.nav_dropdown .toggle::after,
.dropdown_btn .toggle::before,
.dropdown_btn .toggle::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 10px;
  top: 50%;
  transition: var(--transition);
}

.nav_dropdown .toggle::before,
.nav_dropdown .toggle::after {
  background-color: var(--gray-10);
  opacity: .5;
  width: .12em;
  height: .55em;
}

.dropdown_btn .toggle::before,
.dropdown_btn .toggle::after {
  background-color: #fff;
  width: .2em;
  height: .85em;
}

.nav_dropdown .toggle::before,
.dropdown_btn .toggle::before {
  transform: rotate(45deg) translateY(-50%);
}

.nav_dropdown .toggle::after,
.dropdown_btn .toggle::after {
  transform: rotate(-45deg) translateY(-50%);
}

.nav_dropdown .toggle::before {
  right: 1.1em
}

.nav_dropdown .toggle::after {
  right: 1em
}

.dropdown_btn .toggle::before {
  right: 1.625em
}

.dropdown_btn .toggle::after {
  right: 1.5em
}

/* dropdown arrow icon when open
----------------------------------------*/
.nav_dropdown:has(.open) .toggle::before {
  right: 1.5em
}

.nav_dropdown:has(.open) .toggle::after {
  right: .84em
}

.dropdown_btn:has(.open) .toggle::before {
  right: 2.1em
}

.dropdown_btn:has(.open) .toggle::after {
  right: 1em
}

/*----------------------------------------
Dropdown Button sizes
----------------------------------------*/
.dropdown_btn.dropdown_btn_md {
  width: min(100%, var(--space-xxxxl));
}

.dropdown_btn.dropdown_btn_md .toggle {
  height: 3em;
  line-height: 3;
  font-size: .95em;
}

.dropdown_btn.dropdown_btn_md li a {
  font-size: .9em
}

.dropdown_btn.dropdown_btn_md:has(.open) ul {
  top: 2.65em
}

/*----------------------------------------
dropdown button colors
----------------------------------------*/
.dropdown_btn_primary .toggle {
  color: #fff;
  background-image: linear-gradient(45deg, var(--color-accent-light), var(--color-accent));
}

.dropdown_btn_primary .toggle:hover,
.dropdown_btn_primary .toggle.open {
  background-image: linear-gradient(45deg, var(--color-accent), var(--color-accent-dark));
}

.dropdown_btn_primary .toggle::before,
.dropdown_btn_primary .toggle::after {
  background-color: #fff;
}

/*------------------------------------------------------------
Archive
------------------------------------------------------------*/

.archive main {
  padding-bottom: var(--space-xl);
}

/*----------------------------------------
Archive Banner
----------------------------------------*/
.archive_banner.mask::before {
  background-image: linear-gradient(to right, var(--color-primary-darker), var(--color-primary-darkest));
  opacity: .725;
}


/*----------------------------------------
Archive Header
----------------------------------------*/
.archive .breadcrumbs {
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.archive_header :is(.title, .description) {
  color: #fff;
}

.archive_header {
  align-items: center;
  gap: var(--space-lg);
  z-index: 2;
  position: relative;
}

.archive_header .image {
  overflow: hidden;
  width: min(var(--space-xxxl), 25%);
  aspect-ratio: 1/1;
}

.archive_header img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.archive_header .content {
  width: min(45em, 70%);
  text-wrap: balance;
}

.archive_header .title {
  font-family: var(--font-secondary);
  margin-bottom: var(--space-xxxs);
}

.archive_header .description p:last-of-type {
  margin-bottom: 0;
}

/*----------------------------------------
Archive Sidenav
----------------------------------------*/
.archive .sidenav .section_subheader {
  margin-bottom: 0;
}

.archive .sidenav .post_terms:not(:last-of-type) {
  margin-bottom: var(--space-lg);
}

.archive .sidenav .section_subheader .title {
  font-size: var(--text-body);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: var(--letter-spacing-loose);
}

.archive .sidenav .post_terms a {
  display: block;
  transition: var(--transition);
  padding: var(--space-xs);
  border-radius: var(--space-xs);
}

.archive .sidenav .post_terms a:hover {
  background-color: var(--gray-1);
  color: var(--gray-10);
}

/* Sidenav – Product Type Grid
----------------------------------------*/
.archive .sidenav .tax_product_type {
  flex-wrap: wrap;
  gap: 1em;
}

.archive .sidenav .tax_product_type li {
  width: min(50%, 45%);
  aspect-ratio: 1/1;
  border: 1px solid var(--gray-2);
  border-radius: var(--space-xs);
}

.archive .sidenav .tax_product_type a {
  align-content: center;
  height: 100%;
}

.archive .sidenav .tax_product_type span {
  display: block;
  text-align: center;
}

.archive .sidenav .tax_product_type svg {
  opacity: .5;
  font-size: var(--text-lg);
  margin-bottom: var(--space-xxxs);
}

.archive .sidenav .tax_product_type .name {
  font-size: var(--text-sm);
}

/*------------------------------------------------------------
Single
------------------------------------------------------------*/

/*----------------------------------------
Single Post
----------------------------------------*/
.single-post .post_header_wp {
  padding-block: var(--space-lg) 0;
  overflow: visible;
}

.single-post main {
  padding-top: var(--space-xl);
  z-index: 2;
  overflow: visible;
}

.single-post :is(.post_header, main article) {
  /* width: min(100%, calc(1280px/1.618)); */
  width: min(100%, 720px);
  margin-inline: auto;
}

/* Post Breadcrumbs
----------------------------------------*/
.single-post .breadcrumbs {
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-lg);
}

/* Post – Share
----------------------------------------*/
.single-post .article_share {
  position: sticky;
  top: var(--space-xxl);
  height: 0;
}

/* Post Header
----------------------------------------*/
.post_header_wp::before {
  content: '';
  width: 100%;
  height: 70%;
  /* aspect-ratio: 4/1; */
  position: absolute;
  left: 0;
  top: 0;
  z-index: var(--z-base);
}

.post_header {
  position: relative;
  z-index: 2;
}

.post_header_wp.yellow .title {
  color: var(--color-yellow-dark)
}


/* Post Header – Title
----------------------------------------*/
.post_header .title {
  text-align: center;
  /* font-weight: 900; */
  font-family: var(--font-secondary);
  text-wrap: balance;
  font-size: var(--text-xxxl);
}

/* Post Header – Image
----------------------------------------*/
.post_header .image img {
  margin: var(--space-xl) auto var(--space-md);
  display: block;
  border-radius: var(--img-border-rad);
  box-shadow: var(--img-box-shadow);
}

.post_header .image.featured_lg {
  width: 100%;
}

.post_header .image figcaption {
  text-align: center;
  font-size: 1em;
  color: var(--gray-6);
  font-family: var(--font-serif);
  font-style: italic;
}

/* Post – Article
----------------------------------------*/
.single-post main article h2 {
  margin-bottom: 1em;
  font-weight: 600;
}

.single-post main article h3 {
  font-weight: 800;
  margin-bottom: 1em;
}

.single-post main article p {
  font-family: var(--font-serif);
  font-size: var(--text-md);
}

.single-post main article p strong {
  font-weight: 600;
}

.single-post main article blockquote {
  border-left: 5px solid var(--color-primary-lightest);
  padding-left: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg) 0;
}

/* Post – Related Terms and Posts
----------------------------------------*/
.single-post .single_related_wp {
  padding-top: 0;
}


/*----------------------------------------
Single Product
----------------------------------------*/

/* Single Product – Summary
----------------------------------------*/
.single-product .product_summary {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.single-product .product_summary .image img {
  margin-inline: 0;
  width: 100%;
}

.single-product .product_summary .content {
  margin-top: var(--space-xl);
  padding-left: 0;
}

.single-product .product_header .title {
  font-size: var(--text-xxxl);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-xxxxs)
}

.single-product .product_header .subtitle {
  color: var(--gray-8);
  font-weight: 400;
}

.single-product .product_header .short_description {
  font-size: var(--text-body);
  margin-block: var(--space-lg);
}

/* Single Product – CTA Buttons
----------------------------------------*/
.single-product .cta_btns {
  gap: var(--space-lg);
  align-items: center;
}

.single-product .cta_btns .btn_open {
  margin: 0
}

.single-product .modal_sample {
  width: min(100%, 9em);
}

.single-product .modal_share > button {
  aspect-ratio: 1/1;
}

/* Single Product – Video
----------------------------------------*/
.single-product .product_video_wp {
  padding: 0;
}

.single-product .product_video_wp > section {
  width: min(100%, 60em);
}

/* Single Product – Details
----------------------------------------*/
.single-product .description .content p:last-of-type {
  margin-bottom: 0;
}

.single-product .product_specs ul li {
  position: relative;
  margin-bottom: var(--space-sm);
}

.single-product .product_specs ul span {
  font-weight: 600;
  margin-inline: 1.75em var(--space-xs)
}

.single-product .product_specs ul svg {
  color: var(--gray-4);
  margin-right: var(--space-xs);
  position: absolute;
  top: .25em;
  left: 0;
}

/* Single Product – Author
----------------------------------------*/
.single-product .product_author {
  --grid-space: var(--space-xl);
}

.single-product .product_author .title {
  font-size: var(--text-xl);
}

.single-product .product_author .image {
  padding-right: 0;
}

.single-product .product_author .image img {
  width: 100%;
  border-radius: var(--space-md);
  border-color: var(--color-accent-lighter);
  border-width: 9px;
  border-right-style: solid;
  border-top-style: solid;
}

.single-product .product_author .description p:last-of-type {
  margin-bottom: 0
}

/* Single Product – Reviews
----------------------------------------*/
.single-product .product_reviews {
  width: min(100%, 50em);
}

.single-product .customer_reviews ul {
  padding-left: var(--space-lg);
}

.single-product .customer_reviews ul li {
  margin-bottom: var(--space-xl);
}

/* Single Product – Star
----------------------------------------*/
.single-product .product_reviews .stars {
  margin-bottom: var(--space-xs);
}

.single-product .product_reviews .stars span {
  font-size: .1em;
}

.star, .star::before, .star::after {
  display: block;
  width: 0;
  height: 0;
}

.star {
  position: relative;
  transform: rotate(35deg);
}

.star::before, .star::after {
  content: '';
  position: absolute;
}

.star::after {
  top: .1875em;
  left: -6.5625em;
  transform: rotate(-70deg);
}

.star::before {
  top: -2.8125em;
  left: -4.0625em;
  border-bottom: 5em solid gold;
  border-left: 1.875em solid transparent;
  border-right: 1.875em solid transparent;
  transform: rotate(-35deg);
}

.star, .star::after {
  border-bottom: 4.375em solid gold;
  border-left: 6.25em solid transparent;
  border-right: 6.25em solid transparent;
}

/*----------------------------------------------------------
Responsive Styles
----------------------------------------------------------*/
@media only screen and (max-width: 1200px) {}

/* #1200px */

@media only screen and (max-width: 1024px) {}

/* #1024px */

@media only screen and (max-width: 768px) {}


@media only screen and (max-width: 600px) {

  body {
    font-size: 91%
  }

}

/* #600px */

@media only screen and (max-width: 480px) {

  body {
    font-size: 88%
  }

}

/* #480px */

@media only screen and (max-width: 400px) {}

/* #400px */