/*** utility classes ***/
.whitespace-nowrap {
  white-space: nowrap; }

.d-none {
  display: none; }

.d-block {
  display: block !important; }

.d-flex {
  display: flex !important; }

.d-fixed {
  display: fixed; }

.flex-jc-center {
  justify-content: center; }

.flex-jc-space-between {
  justify-content: space-between; }

.flex-align-center {
  align-items: center; }

.bold {
  font-weight: bold !important; }

.transform-initial {
  text-transform: initial; }

.quiet {
  color: var(--muted-color); }

.text-black, .black {
  color: #000; }

.text-red, .red {
  color: red; }

.w-6 {
  width: 0.8rem; }

.w-8 {
  width: 1.1rem; }

.w-10 {
  width: 1.3rem; }

.w-12 {
  width: 1.6rem; }

.w-100 {
  width: 100% !important; }

.w-66 {
  width: 66% !important; }

.w-50 {
  width: 50% !important; }

.w-30 {
  width: 30% !important; }

.w-33 {
  width: 33% !important; }

.w-auto {
  width: auto !important; }

.h-6 {
  height: 0.8rem; }

.h-8 {
  height: 1.1rem; }

.h-10 {
  height: 1.3rem; }

.h-12 {
  height: 1.6rem; }

.black {
  color: #000 !important; }

.ml-1 {
  margin-left: 0.2rem; }

.ml-3 {
  margin-left: 0.4rem; }

.ml-5 {
  margin-left: 0.7rem; }

.ml-10 {
  margin-left: 1.5rem; }

.ml-auto {
  margin-left: auto; }

.mr-auto {
  margin-right: auto; }

.mr-0 {
  margin-right: 0 !important; }

.mr-1 {
  margin-right: 0.2rem; }

.mr-2 {
  margin-right: 0.3rem; }

.mr-3 {
  margin-right: 0.4rem; }

.mt-0 {
  margin-top: 0; }

.mt-2 {
  margin-top: 0.3rem; }

.mt-3 {
  margin-top: 0.4rem; }

.mt-4 {
  margin-top: 2.2rem; }

.mt-10 {
  margin-top: 1.5rem; }

.mt-auto {
  margin-top: auto !important; }

.m-0 {
  margin: 0 !important; }

.p-0 {
  padding: 0 !important; }

.p-2 {
  padding: 0.3rem; }

.p-3 {
  padding: 0.7rem; }

.p-4 {
  padding: 2.2rem; }

.pl-10 {
  padding-left: 1.5rem; }

.pl-0 {
  padding-left: 0 !important; }

.pl-1 {
  padding-left: 0.2rem !important; }

.pr-1 {
  padding-right: 0.2rem !important; }

.pt-0 {
  padding-top: 0 !important; }

.pt-2 {
  padding-top: 0.3rem; }

.pt-4 {
  padding-top: 2.2rem; }

.pr-0 {
  padding-right: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pb-2 {
  padding-bottom: 0.3rem; }

.pb-3 {
  padding-bottom: 30px; }

.pb-4 {
  padding-bottom: 2.2rem; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-1 {
  margin-bottom: 0.2rem; }

.mb-2 {
  margin-bottom: 0.4rem; }

.mb-5 {
  margin-bottom: 0.7rem; }

.mb-10 {
  margin-bottom: 1.5rem; }

.vertical-align-bottom {
  vertical-align: bottom; }

.gap-5 {
  gap: 0.5rem; }

.gap-10 {
  gap: 1.5rem; }

.border {
  border: 1px solid #efefef; }

.border-top {
  border-top: 1px solid #efefef; }

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

.larger {
  font-size: 1.2rem; }

.sm {
  font-size: 0.6rem !important; }

.smaller {
  font-size: 0.8rem; }

.underline {
  text-decoration: underline; }

.dotted-underline {
  text-decoration: underline dotted !important; }

.clear-left {
  clear: left; }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

.float-left {
  float: left; }

.float-right {
  float: right; }

.center {
  text-align: center; }

.scroll-mt-10 {
  scroll-margin-top: 90px; }

.single-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

ul.list-style-none li {
  list-style-type: none; }

.column-list {
  column-count: 2;
  column-gap: 20px;
  width: 100%; }

.cursor-pointer {
  cursor: pointer; }
@charset "UTF-8";
/** header navigation **/
:root {
  --logo-width: 120px;
  --desktop-logo-width: 120px; }

body > nav.header {
  background: #fff;
  border-bottom: 1px solid #efefef;
  height: var(--mobile-nav-outer-height);
  /* Logo */
  /* Fixed when viewing colors */ }
  @media (min-width: 768px) {
    body > nav.header {
      height: var(--nav-outer-height); } }
  body > nav.header #brand-nav {
    position: absolute;
    left: calc(50% - var(--logo-width) / 2); }
    @media (min-width: 768px) {
      body > nav.header #brand-nav {
        width: var(--desktop-logo-width);
        left: calc(50% - var(--desktop-logo-width) / 2); } }
  body > nav.header .brand_image {
    width: var(--logo-width); }
    body > nav.header .brand_image.desktop {
      width: var(--desktop-logo-width); }
  body > nav.header ul#main-header-navigation {
    margin: 0 auto;
    width: 100%;
    justify-content: right;
    gap: 10px; }
    body > nav.header ul#main-header-navigation > li {
      padding-left: 0;
      padding-right: 0; }
    body > nav.header ul#main-header-navigation details {
      /* md media query */
      /* xl media query */ }
      body > nav.header ul#main-header-navigation details summary {
        font-family: 'PPEditorialOld-Ultralight', sans-serif;
        text-transform: uppercase;
        color: #000;
        font-weight: 500;
        border-color: transparent;
        font-size: small; }
        body > nav.header ul#main-header-navigation details summary .badge {
          height: min-content;
          margin-top: 4px; }
      @media (min-width: 768px) {
        body > nav.header ul#main-header-navigation details summary {
          font-size: smaller; } }
      @media (min-width: 1280px) {
        body > nav.header ul#main-header-navigation details summary {
          font-size: 1rem; } }
    body > nav.header ul#main-header-navigation details[open] summary {
      border-color: transparent; }
  body > nav.header li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
  body > nav.header.fixed {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    padding-left: 10px;
    padding-right: 10px; }
    body > nav.header.fixed form#filters {
      width: 100%; }

body.admin > nav.header ul#main-header-navigation {
  justify-content: space-between; }
  body.admin > nav.header ul#main-header-navigation li:first-child {
    margin-right: initial !important; }
  body.admin > nav.header ul#main-header-navigation li#brand-nav {
    position: initial; }

/*** Dropdowns ***/
/* Global dropdown styles */
details[role="list"] {
  color: #000 !important;
  position: inherit; }
  details[role="list"] li {
    font-family: 'PPEditorialOld-Ultralight', serif;
    font-size: 0.8rem !important; }
  details[role="list"] summary::after,
  details[role="list"] li[role="list"] > a::after {
    margin-inline-start: 0.2rem; }
  details[role="list"] summary:not([role]) {
    white-space: nowrap; }
    details[role="list"] summary:not([role]):focus {
      box-shadow: none;
      border-color: transparent; }
    details[role="list"] summary:not([role]):active {
      border-color: transparent; }
  @media (min-width: 768px) {
    details[role="list"] {
      position: relative; } }
/* reduce size of chevron on smaller screens */
details[role="list"] summary::after, li[role="list"] > a::after {
  background-size: 0.7rem auto;
  height: 1.2rem;
  width: 0.7rem;
  /* increase size on xl */ }
  @media (min-width: 1280px) {
    details[role="list"] summary::after, li[role="list"] > a::after {
      background-size: 1rem auto;
      height: 1.5rem;
      width: 1rem; } }
details[role="list"] summary.minimal:not([role]) {
  border-color: transparent;
  padding: 0; }

details[role="list"] summary.hide-chevron:not([role])::after {
  content: none; }

nav details[role="list"] summary + ul li a, nav li[role="list"] > ul li a {
  padding-top: 0px;
  padding-bottom: 0px; }
  nav details[role="list"] summary + ul li a::after, nav li[role="list"] > ul li a::after {
    margin-left: auto;
    content: "›";
    float: right;
    font-weight: bold; }
    @media (min-width: 768px) {
      nav details[role="list"] summary + ul li a::after, nav li[role="list"] > ul li a::after {
        display: none; } }
nav details[role="list"] summary + ul li:not(:has(> a)), nav li[role="list"] > ul li:not(:has(> a)) {
  padding-top: 14px;
  padding-bottom: 14px; }
  @media (min-width: 768px) {
    nav details[role="list"] summary + ul li:not(:has(> a)), nav li[role="list"] > ul li:not(:has(> a)) {
      padding-top: 8px;
      padding-bottom: 8px; } }
ul[role="listbox"] {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  width: 100%; }
  @media (min-width: 768px) {
    ul[role="listbox"] {
      width: fit-content; } }
/* Specific dropdown styles */
#color-categories-dropdown ul {
  width: 500px;
  align-items: initial;
  display: block; }
  #color-categories-dropdown ul .summary-text {
    display: flex;
    align-items: center; }

#brands-dropdown ul {
  width: 500px;
  align-items: initial;
  display: block; }
  #brands-dropdown ul li {
    display: block;
    width: 50%;
    float: left;
    margin-top: auto; }

.right-align-dropdown details[role="list"] summary + ul {
  left: initial; }

/*** End Dropdowns ***/
/*** Media Queries for nav header ***/
/* See media_queries.scss for global styles */
/*** colors/index and colors/discover styling ***/
/* organized from top to bottom of layout */
:root {
  --parent-category-height: 47px;
  --parent-category-line-height: 42px;
  --subcategories-height: 35px;
  --modal-filters-header-height: 57px;
  --modal-filters-spacing: 16px;
  --scroll-up-height: 46px; }

@media (min-width: 768px) {
  :root {
    --modal-filters-spacing: 28.5px; } }

/*** subcategories navigation ***/
#subcategories {
  display: flex;
  justify-content: center;
  width: 70%;
  font-family: 'Open Sans', serif;
  margin-left: auto;
  margin-right: auto; }
  #subcategories a {
    text-decoration: underline; }
    #subcategories a:not(:hover) {
      color: #000; }
  #subcategories li {
    white-space: nowrap; }
  @media (min-width: 768px) {
    #subcategories {
      width: 100%; } }
/* parent category */
#parent-category {
  position: fixed;
  left: 0;
  right: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  background: #fff;
  z-index: 1;
  height: var(--parent-category-height);
  line-height: var(--parent-category-line-height);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.filters.parent {
  text-align: center;
  padding-top: 6px; }

/* subcategories */
#subcategories-nav, .filters.parent {
  position: fixed;
  background: #fff;
  z-index: 1;
  border-bottom: 1px solid #efefef;
  left: 0;
  right: 0;
  margin-top: var(--parent-category-height);
  height: var(--subcategories-height); }
  #subcategories-nav ul#subcategories, .filters.parent ul#subcategories {
    width: 100%;
    margin-bottom: 10px;
    justify-content: center; }

#subcategories, #subcategories li, #subcategories a {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0; }

/*** add spacing for fixed nav ***/
.cat-heading {
  /* space for fixed subcategories nav */ }
  .cat-heading.first {
    padding-top: calc(var(--parent-category-height) + var(--subcategories-height) + 5px); }

.colors-container.first {
  padding-top: calc(var(--parent-category-height) + var(--subcategories-height) + 15px); }

.cat-heading {
  /* sale / low inventory filters */ }
  .cat-heading .filters {
    text-transform: none;
    font-weight: normal;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 0px 10px;
    cursor: pointer; }
    .cat-heading .filters:hover {
      color: #000; }
    .cat-heading .filters .badge {
      padding-top: 3px;
      padding-bottom: 3px; }
    .cat-heading .filters.selected {
      background: #efefef;
      box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
      border-radius: 5px;
      color: #000;
      font-weight: bold; }
      .cat-heading .filters.selected .badge {
        background: #CCC; }
    @media (min-width: 1024px) {
      .cat-heading .filters {
        position: absolute;
        right: 0px;
        bottom: 0;
        padding-right: var(--color-tile-gap); } }
.scroll-mt-10 {
  scroll-margin-top: calc(var(--parent-category-height) + var(--subcategories-height) + 30px); }

.scroll-mt-20 {
  scroll-margin-top: calc(var(--parent-category-height) + var(--subcategories-height) + 80px); }

/*** colors container - holds the product tiles ***/
.colors-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  overflow: hidden;
  /* filtering for sale/low inventory */ }
  .colors-container[data-sale="true"] .color-container[data-sale="false"] {
    display: none; }
  .colors-container[data-sale="true"] .color-container[data-sale="true"] {
    display: block; }
  .colors-container[data-low-inventory="true"] .color-container[data-low-inventory="false"] {
    display: none; }
  .colors-container[data-low-inventory="true"] .color-container[data-low-inventory="true"] {
    display: block; }
  .colors-container[data-sale="true"][data-low-inventory="true"] .color-container[data-sale="false"] {
    display: none; }
  .colors-container[data-sale="true"][data-low-inventory="true"] .color-container[data-low-inventory="false"] {
    display: none; }
  .colors-container[data-sale="true"][data-low-inventory="true"] .color-container[data-sale="true"][data-low-inventory="true"] {
    display: block; }
  @media (min-width: 1024px) {
    .colors-container {
      gap: 20px var(--color-tile-gap); } }
/*** color (singular) container ***/
/* individual colors could be rendered 
 * outside a color-container on admin views 
 */
/* inside _color partial */
.color-container {
  position: relative; }
  .color-container .pin-color {
    position: absolute;
    top: 0;
    right: 10px;
    color: blue; }
    .color-container .pin-color:hover {
      color: navy; }
  .color-container [data-favorite-toggle] {
    position: absolute;
    bottom: 35px;
    right: -10px; }
    .color-container [data-favorite-toggle] a {
      padding: 20px;
      color: #333; }
      .color-container [data-favorite-toggle] a.favorite-create:hover path {
        stroke-width: 2; }
      .color-container [data-favorite-toggle] a.favorite-destroy path {
        fill: black; }
      .color-container [data-favorite-toggle] a svg {
        stroke-width: 1; }
  .color-container .product-tile-div, .color-container .product-tile-canvas {
    width: calc(50vw - 26px);
    max-width: 240px;
    max-height: 350px;
    aspect-ratio: 0.7;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    @media (min-width: 1024px) {
      .color-container .product-tile-div, .color-container .product-tile-canvas {
        width: calc(20vw - 26px); } }
    @media (min-width: 1280px) {
      .color-container .product-tile-div, .color-container .product-tile-canvas {
        width: 240px;
        height: 350px; } }
  .color-container .product-tile-canvas.enhanced, .color-container .product-tile-div.enhanced {
    background-color: #f3f3f3; }
  @media (min-width: 1280px) {
    .color-container .product-tile-canvas {
      width: 100%;
      height: 100%; } }
  .color-container .color-details {
    padding-top: 5px; }
    .color-container .color-details .color-price-and-icons {
      max-width: 50%;
      overflow: hidden;
      white-space: nowrap; }

/*** mobile filters modal ***/
dialog#modal-filters {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%; }
  dialog#modal-filters article {
    width: 100%;
    height: 100%; }
    dialog#modal-filters article header {
      position: sticky;
      top: 0;
      left: 0;
      padding-top: 10px;
      padding-bottom: 10px;
      height: var(--modal-filters-header-height); }
    dialog#modal-filters article form#filters-modal {
      margin-top: var(--modal-filters-header-height); }
    dialog#modal-filters article #filters-form-mobile-submit {
      position: sticky;
      bottom: 0;
      left: calc(var(--modal-filters-spacing) * -1);
      background: #fff;
      display: flex;
      align-items: first baseline;
      gap: 30px;
      padding-top: 10px;
      padding-bottom: 10px;
      border-top: 1px solid #efefef;
      /* to match header */
      margin-left: calc(var(--modal-filters-spacing) * -1);
      margin-right: calc(var(--modal-filters-spacing) * -1);
      padding-left: var(--modal-filters-spacing);
      padding-right: var(--modal-filters-spacing); }

/*** mobile filters form **/
dialog ul {
  margin-left: 0 !important;
  padding-left: 0px; }
  dialog ul li {
    list-style-type: none;
    padding-left: 0px; }
    dialog ul li .toggle-checkboxes {
      margin-left: 0 !important;
      padding-left: 0px; }

/*** bottom of page fixed controls ***/
/* base class for filters toggle and scroll up */
.fixed-control {
  position: fixed;
  bottom: 20px;
  background: var(--button-background-color);
  color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid var(--button-background-color);
  transition: opacity .30s;
  border-radius: 30px; }
  .fixed-control:hover {
    opacity: 1;
    cursor: pointer;
    border: 1px solid #cecece; }
  .fixed-control a {
    color: #fff; }

#filters-toggle {
  padding: 10px 15px;
  left: calc(50% - 61px); }
  #filters-toggle.with_filters {
    left: calc(50% - 71.5px); }
  #filters-toggle svg {
    display: inline-block; }
  #filters-toggle a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px; }
  #filters-toggle .badge {
    color: #000;
    font-size: 0.7em;
    margin-top: 2px;
    padding: 0 6px; }

#scroll-up {
  right: 20px;
  padding: 10px;
  width: var(--scroll-up-height);
  height: var(--scroll-up-height);
  font-size: 2rem; }
  #scroll-up svg {
    vertical-align: top; }
  @media (min-width: 1024px) {
    #scroll-up {
      right: 40px;
      padding: 10px;
      width: 50px;
      height: 50px;
      font-size: 2rem; }
      #scroll-up svg {
        margin: 0 auto;
        display: block; } }
#admin-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  background: #efefef; }
img#color_palette {
  margin-top: -80px;
  margin-left: auto;
  margin-right: auto;
  display: block; }

@media (min-width: 768px) {
  img#color_palette {
    margin-top: -280px; } }
.splide {
  /* Hide loading spinner */ }
  .splide .splide__list {
    overflow: visible;
    display: flex;
    flex-wrap: inherit;
    justify-content: left;
    transition: transform 0.5s ease; }
  .splide [aria-busy="true"]:not(input, select, textarea, html):not(:empty)::before {
    display: none; }
  .splide .colors-container {
    gap: 0; }
  .splide .splide__pagination {
    bottom: initial; }
  .splide [disabled]:where(button, [type="submit"], [type="button"], [type="reset"], [role="button"]), .splide :where(fieldset[disabled]) :is(button, [type="submit"], [type="button"], [type="reset"], [role="button"]), .splide a[role="button"]:not([href]) {
    opacity: initial;
    pointer-events: initial; }
  .splide .splide__arrow::before {
    content: '';
    position: absolute;
    /* increase click area */
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px; }
@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 * Load utility first so it can be overridden by other stylesheets.

 * Not using "require_tree ." to have more control over order of stylesheets






 */
/*** variables ***/
:root {
  --nav-outer-height: 71.4px;
  --mobile-nav-outer-height: 60.6px;
  --color: #000 !important;
  --color-tile-gap: 45px;
  --border-radius: 0;
  --button-background-color: #2B2728; }

/*** fonts ***/
/* header font */
@font-face {
  font-family: 'PPEditorialOld-Ultralight';
  src: url(/assets/PPEditorialOld-Ultralight-79c1ab46e5b128ef2ead77ec2454507ddfe73086c3584e7dce8f0dcedfdabc5c.woff2) format("woff2"), url(/assets/PPEditorialOld-Ultralight-e9a17c97095731954e80b0ad12257ecb1c7cc6fcb5741c9404b42990dbef70f7.woff) format("woff"); }

@font-face {
  font-family: 'PPEditorialOld-Ultralight';
  src: url(/assets/PPEditorialOld-UltralightItalic-504db83388b45aa640536a12f8022c9c984883cd1da3cfe99d13057a43837c25.woff2) format("woff"), url(/assets/PPEditorialOld-UltralightItalic-f73eb5c96ce807a6319a3dc6a58383b4f4585c8b9cdcc9ac893abebbbb4d2f5d.woff) format("woff");
  font-style: italic; }

.sans-serif {
  font-family: "Open Sans", sans-serif; }

/*** base styles ***/
body {
  font-family: "Open Sans", sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'PPEditorialOld-Ultralight', serif; }

a:hover {
  text-decoration: underline; }

/*** pico overrides ***/
[role="button"], button, input[type="button"], input[type="reset"], input[type="submit"] {
  background-color: var(--button-background-color);
  font-family: 'Open Sans', sans-serif;
  border-radius: 30px; }
  [role="button"]:hover, button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    background-color: #000; }

[type="checkbox"]:checked, [type="checkbox"]:checked:active, [type="checkbox"]:checked:focus, [type="radio"]:checked, [type="radio"]:checked:active, [type="radio"]:checked:focus {
  background-color: var(--button-background-color); }

.button-small {
  padding: 0.2rem 0.5rem !important;
  height: auto !important; }

[data-tooltip]::after, [data-tooltip]::before, [data-tooltip][data-placement="top"]::after, [data-tooltip][data-placement="top"]::before {
  font-size: 0.5rem;
  font-weight: normal;
  font-family: 'PPEditorialOld-Ultralight', serif;
  text-transform: none; }

[data-tooltip]:not(a, button, input) {
  border-bottom: none;
  cursor: inherit; }

[role="link"]:focus, a:focus {
  --background-color: initial; }

details[role="list"] summary.no-chevron::after {
  content: none;
  background-image: none; }

/*** pico container overrides ***/
.container {
  max-width: 100%;
  /* override pico */ }
  @media (min-width: 1024px) {
    .container {
      max-width: 950px; } }
  @media (min-width: 1280px) {
    .container {
      max-width: 1200px; } }
  @media (min-width: 1536px) {
    .container {
      max-width: 1450px; } }
main.container {
  padding-top: calc(var(--mobile-nav-outer-height) + 10px); }
  @media (min-width: 768px) {
    main.container {
      padding-top: calc(var(--nav-outer-height) + 10px); } }
body[data-controller-action="colors#index"] main {
  padding-top: calc(var(--mobile-nav-outer-height)); }
  @media (min-width: 768px) {
    body[data-controller-action="colors#index"] main {
      padding-top: calc(var(--nav-outer-height)); } }
/*** centered smaller container **/
@media (min-width: 768px) {
  .container-sm {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 0px;
    border: 1px solid #efefef;
    padding: 20px;
    margin-top: 40px; } }

.narrow-container {
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 768px) {
    .narrow-container {
      max-width: 600px; } }
/*** dropdown checkbox toggles ***/
a.toggle-checkboxes {
  padding-top: 12px !important; }

a.toggle-checkboxes:hover {
  background-color: initial !important; }

.toggle-checkboxes * {
  vertical-align: middle;
  /* same as buttons */
  color: #08779c; }

/*** badge component ***/
.badge {
  padding-right: 9px;
  padding-left: 9px;
  border-radius: 30%;
  background: #efefef; }

.badge.sm {
  padding-top: 2.5px;
  padding-bottom: 2.5px; }

/* color categories color swatches */
span.swatch {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #efefef;
  margin-top: -3px; }

/*** admin control toggles ***/
[data-admin-toggle="true"] {
  display: auto; }

[data-admin-toggle="false"] {
  display: none; }

/*** admin styles ***/
.admin main h1 {
  margin-bottom: 0; }

/** flash messages **/
.flash_message {
  padding: 10px;
  margin: 10px 0; }

.flash_message.notice {
  background-color: green;
  color: #fff; }

.flash_message.alert, .flash_message.error {
  background-color: red;
  color: #fff; }

/*** colors/unapproved ***/
.full-size-image {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  max-width: 50vw;
  max-height: 80vh; }

.full-image {
  max-width: inherit; }

/*** pagination ***/
nav.pagination {
  justify-content: center;
  gap: 10px; }

/*** form errors ***/
.form_error_icon {
  background-image: var(--icon-invalid);
  padding-left: 25px;
  background-size: 18px;
  background-position: left center; }

/*** style profile categories ***/
.style-profile-categories > div {
  width: 100%; }
  @media (min-width: 768px) {
    .style-profile-categories > div {
      flex-basis: 46%; } }
/** footer ***/
footer {
  border-top: 1px solid #efefef; }

/*** checkmark list ***/
.checkmark-list {
  padding: 0;
  font-size: 0.9rem; }

.checkmark-list li {
  position: relative;
  padding-left: 20px;
  /* Space for the checkmark */
  list-style-type: none; }

.checkmark-list li:before {
  content: '✔';
  /* Unicode for checkmark */
  position: absolute;
  left: 0; }

.checkmark-list.exclude li:before {
  content: '✘';
  /* Unicode for cross mark */
  color: red;
  /* Change color for exclusion */ }

/** colors **/
.blush-bg {
  background-color: #F4DCCE; }
/* Extra small (xs) */
@media (max-width: 575px) {
  .xs\:d-block {
    display: block; }
  .xs\:d-none {
    display: none; } }

/* Small (sm) */
@media (min-width: 576px) {
  .sm\:d-block {
    display: block; }
  .sm\:d-none {
    display: none; } }

/* Medium (md) */
@media (min-width: 768px) {
  .md\:d-block {
    display: block; }
  .md\:d-none {
    display: none !important; }
  .md\:d-inline-block {
    display: inline-block; }
  .md\:d-inherit {
    display: inherit; }
  .md\:d-flex {
    display: flex; }
  .md\:flex-jc-initial {
    justify-content: initial; }
  .md\:gap-10 {
    gap: 10px; }
  .md\:w-33 {
    width: 33% !important; }
  .md\:mt-10 {
    margin-top: 1.4rem; } }

/* Large (lg) */
@media (min-width: 1024px) {
  .lg\:d-block {
    display: block; }
  .lg\:d-none {
    display: none; }
  .lg\:d-flex {
    display: flex; }
  .lg\:d-inline-block {
    display: inline-block; } }

/* Extra large (xl) */
@media (min-width: 1280px) {
  .xl\:d-block {
    display: block; }
  .xl\:d-none {
    display: none; }
  .xl\:d-inline-block {
    display: inline-block; }
  .xl\:d-flex {
    display: flex; } }

/* Extra extra large (xxl) */
@media (min-width: 1536px) {
  .xxl\:d-block {
    display: block; }
  .xxl\:d-none {
    display: none; } }
