:root {
  --primary-50: #f4f8ff !important;
  --primary-100: #e9f1ff !important;
  --primary-200: #c8dcff !important;
  --primary-300: #a7c6ff !important;
  --primary-400: #659cff !important;
  --primary-500: #2371FF !important;
  --primary-600: #1a68f8 !important;
  --primary-700: #1a55bf !important;
  --primary-800: #154499 !important;
  --primary-900: #11377d !important;

  --text-color-0: #FFFFFF !important;
  --text-color-100: #a7abb6 !important;
  --text-color-200: #7b8091 !important;
  --text-color-300: #4f566d !important;
  --text-color-400: #232c48 !important;
  --text-color-500: #1c233a !important;
  --text-color-600: #151a2b !important;
  --text-color-700: #0e121d !important;
  --text-color-800: #030407 !important;

  --secondary-300: #FFFFFF !important;
  --secondary-400: #F8F9FB !important;
  --secondary-500: #f1f1f1 !important;
  --secondary-600: #EAECF0 !important;
  --secondary-700: #e6e8ed !important;

  --red-50: #fef2f2 !important;
  --red-100: #fee2e2 !important;
  --red-200: #fecaca !important;
  --red-300: #fca5a5 !important;
  --red-400: #f87171 !important;
  --red-500: #ef4444 !important;
  --red-600: #dc2626 !important;
  --red-700: #b91c1c !important;
  --red-800: #991b1b !important;
  --red-900: #7f1d1d !important;
}


@font-face {
    font-family: Inter;
    src: url('https://cdn.selly.io/s/common/t/fonts/Inter.woff2') format("woff2"), url('https://cdn.selly.io/s/common/t/fonts/Inter.ttf') format("ttf");
}

body, button, input, select, textarea {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
    background: var(--secondary-400);
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

body, html {
    color: var(--text-color-400);
}

*,::after,::before {
    box-sizing: inherit;
}

.image, .row {
    display: flex
}

body {
    line-height: 1
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:after, blockquote:before, q:after, q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

*, ::after, ::before {
    box-sizing: inherit
}

.navigation {
    background: var(--primary-500);
    padding: 20px;
    height: 89px;
    display: flex;
    align-items: center;
    color: #fff;
}

.navigation a, .navigation a:hover, .navigation a:focus {
    color: #FFF;
    text-decoration: none;
}

.navigation-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navigation-extra {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.navigation-extra-dropdown-icon {
    height: 16px;
    color: #FFF;
    margin-left: 10px;
    fill: #FFF;
}

.menu {
    border-bottom: 1px solid var(--secondary-500);
    box-shadow: 0 1px 2px rgba(20, 22, 26, 0.04);
    background: var(--secondary-300);
    line-height: 66px;
    height: 66px;
    min-height: 17px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.menu-shop {
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 18px;
} 

.menu-shop-logo {
  height: 32px;
  width: 32px;
}

.menu-shop-name {
    margin-left: 8px;
}

.menu > .container {
    overflow: hidden;
    display: block;
    max-height: 66px;
}

.menu-item {
    color: var(--text-color-400);
    text-decoration: none;
    padding: 12px 16px 12px 16px;
    font-size: 14px;
    margin-right: 8px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.15s background ease-in, 0.15s color ease-in;
}

.menu-item-active, .menu-item:hover {
    background: rgb(35 113 255 / 10%);
    color: var(--primary-500);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    outline: none;
    border: none;
    box-shadow: none;
}

.menu-toggle > svg {
    height: 20px;
    width: 20px;
    opacity: 0.7;
    fill: #FFF;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navigation > .container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .menu {
    position: absolute;
    flex-direction: column;
    top: 89px;
    background: var(--secondary-300);
    height: auto;
    line-height: inherit;
    z-index: 99;
    width: 100%;
    display: none;
  }

  .menu-open {
    display: flex;
    padding: 15px;
  }

  .menu>.container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    padding: 0;
  }
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width:1140px
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.products {
    margin-left: auto;
    margin-right: auto;
  	padding-top: 20px;
    padding-bottom: 50px;
}

.product-card-image {
    height: 175px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--secondary-500);
    background-size: cover;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.product-card-info {
    padding: 20px;
    background: var(--secondary-300);
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.product-card-title {
    font-weight: 500;
    line-height: 20px;
}

.product-card {
	text-decoration: none;
  	color: var(--text-color-400);
  	margin-top: 20px;
	display: block;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 1px 2px rgb(20, 22, 26, 0.04);
    border: 1px solid var(--secondary-500);
    border-radius: 12px;
}

.product-card:hover {
 	cursor: pointer; 
}

.product-card:focus {
 	outline: none; 
}

.product-card-extra {
    display: flex;
    color: var(--text-color-300);
    padding-top: 20px;
    font-size: 14px;
    flex-direction: row;
    align-items: center;
}

.product-card-price {
    margin-left: auto;
    font-weight: 500;
}

.status-label {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 20px;
    font-feature-settings: "pnum";
    font-variant: proportional-nums;
    line-height: 16px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.status-label--gray {
    background: #e3e8ee;
    color: #4f566b;
}

.status-label--green {
    background: #cbf4c9;
    color: #0e6245;
}

.mla {
    margin-left: auto;
}

.pagination {
  	display: flex!important;
  	flex-wrap: wrap;
	  margin-top: 60px;
}

.pagination > a {
    box-sizing: border-box;
    outline: none;
    box-shadow: 0px 1px 2px rgba(20, 22, 26, 0.04);
    border-radius: 8px;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    padding: 14px 17px;
    margin-right: 6px;
    display: inline-flex;
    background: var(--secondary-300);
    color: var(--text-color-400);
    text-decoration: none;
    border: 1px solid var(--secondary-500);
}

.pagination--active {
    border-color: var(--primary-500) !important;
    background: var(--primary-500) !important;
    color: #fff!important;
}

.pagination--gap {
    box-sizing: border-box;
    outline: none;
    box-shadow: 0px 1px 2px rgba(20, 22, 26, 0.04);
    border-radius: 8px;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    padding: 11px 15px;
    margin-right: 6px;
    background: rgba(0, 0, 0, 0.03);
}

.section-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: var(--text-color-400);
    margin: 20px 0 30px 0px; 
}

div#product {
    margin-top: 20px;
}

.container--compact {
    display: block;
    max-width: 390px;
    margin: 0 auto;
}

.no-products {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

label {
    margin-bottom: 5px;
    display: block;
}

img {
    border: 0;
    height: auto;
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
}

.banner {
    background-size: cover;
    background-position: center center;
    height: 250px;
}

.shop {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

main {
    padding-bottom: 50px;
}

.shop-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    text-align: center;
    color: var(--text-color-200);
    font-size: 12px;
}

.shop-footer a {
    color: var(--text-color-200);
    text-decoration: none;
}

.input, .textarea {
    max-height: 46px;
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 1px 2px rgb(20 22 26 / 4%);
    border-radius: 8px;
    font-size: 14px;
    line-height: 14px;
    padding: 15px 15px;
    padding-right: 30px;
    background: var(--secondary-300);
    color: var(--text-color-400);
    width: 100%;
    border: 1px solid var(--secondary-700);
    text-overflow: ellipsis;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.input:focus, .textarea:focus {
    outline: 0;
    border-color: #d2d2d2;
    box-shadow: none;
}

textarea {
    max-height: initial !important;
}

.contact-form-wrapper {
    padding: 20px;
    margin-top: 20px;
}

.contact-form-container {
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background: var(--secondary-300);
    box-shadow: 0 1px 2px rgba(20, 22, 26, 0.04);
    border: 1px solid var(--secondary-500);
    border-radius: 12px;
    padding: 25px;
    color: var(--text-color-400);
    width: 100%;
    margin-bottom: 36px;
}

.contact-form-title {
    text-align: center;
    padding: 15px 0;
    margin-bottom: 20px;
}

.panel-header {
    background: var(--primary-500) !important;
}

.button {
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 1px 2px rgba(20, 22, 26, 0.06);
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    padding: 12px 32px;
    transition: background-color 0.3s;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;  
}

.button--primary {
    background: var(--primary-500) !important;
    border-color: var(--primary-500) !important;
	 color: #fff;
}

.button--primary:hover {
    background: var(--primary-500) !important;
    border-color: var(--primary-500) !important;
    opacity: 0.9;
}

.button--block {
    display: block;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color-500);
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
}

.alert {
    border: 1px solid transparent;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    font-size: 14px;
}

.alert-success {
  background: #dbfbd9;
  border-color: #83de93;
  color: #2da05f;
}

.alert-danger {
    background: #fbd9d9;
    border-color: #de8383;
    color: #cb4747;
}

.alert ul li:not(:last-of-type) {
    padding-bottom: 5px;   
}

.breadcrumb {
    font-size: 13px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
}

.breadcrumb a {
    color: var(--text-color-300);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-icon {
    fill: var(--text-color-100);
    height: 12px;
}

.product-title {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
}

.product-price {
    margin-bottom: 30px;
}

.checkout-button {
    font-size: 14px;
    padding: 15px 32px;
}