  :root {
    --bios-bg-main: rgba(255,255,255,.86);
    --bios-bg-soft: rgba(255,255,255,.82);
    --bios-bg-card: rgba(255,255,255,.84);
    --bios-bg-panel: #fbf8f3;
    --bios-bg-muted: #f7f3ed;

    --bios-border: #e5dccf;
    --bios-border-soft: #ece4d8;
    --bios-border-light: #f0e8dc;

    --bios-text-main: #231f1a;
    --bios-text-dark: #231e18;
    --bios-text-soft: #655c50;
    --bios-text-muted: #756b5d;

    --bios-accent: #8d6f47;
    --bios-accent-dark: #3a332c;
    --bios-danger: #b74d4d;

    --bios-shadow-card: 0 16px 34px rgba(52,43,31,.06);
    --bios-shadow-hover: 0 24px 46px rgba(52,43,31,.1);

    --bios-grad-main: linear-gradient(135deg, #f7f5f1 0%, #f0ebe3 60%, #e7decf 100%);
  }

  body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--bios-text-main);
    background: #fff;
  }

  .last_name,
  .workemail {
    display: none;
  }

  .display {
    display: block;
  }

  .eula_accepted {
    font-size: 12px;
    margin: 7px 0 22px;
    color: var(--bios-text-muted);
  }

  form input.btn[disabled],
  form input.btn[disabled]:hover {
    background: #b8aa97;
    border-color: #b8aa97;
  }

  .sisea-highlight {
    background: #fff2bf;
  }

  a:hover {
    color: var(--bios-accent);
  }

  #jGrowl {
    z-index: 99999;
  }

  .text-block {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--bios-text-soft);
  }

  /* breadcrumbs */
  .breadcrumb {
    margin-bottom: 0;
    background: transparent;
  }

  .breadcrumb a {
    color: var(--bios-text-main);
    text-decoration: none;
  }

  .breadcrumb a:hover {
    color: var(--bios-accent);
  }

  /* generic titles */
  h1.title {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--bios-text-dark);
    margin: 35px 0 22px;
  }

  h2.title,
  .textOuter h2 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--bios-text-main);
    margin: 35px 0 22px;
    padding: 5px 0;
  }

  h3.title,
  .textOuter h3 {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--bios-text-main);
  }

  h4.title {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--bios-text-main);
  }

  /* block title */
  .block-title {
    text-align: center;
    margin-bottom: 35px;
  }

  .block-title .title {
    font-weight: 700;
    margin: 22px 0 7px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bios-border);
  }

  .block-title p {
    color: var(--bios-text-muted);
    font-weight: 400;
  }

  /* categories / articles */
  .categories h4.title {
    font-size: 18px;
    margin: 18px 0 8px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.4;
  }

  .categories .image img,
  .articles .image img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
  }

  .blog .image {
    margin-bottom: 18px;
  }

  .blog_row_inner {
    padding: 22px;
    height: 100%;
    border: 1px solid var(--bios-border);
    border-radius: 24px;
    background: var(--bios-bg-main);
    box-shadow: var(--bios-shadow-card);
    transition: .25s ease;
  }

  .blog_row_inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--bios-shadow-hover);
  }

  .blog_row_inner .name a {
    color: var(--bios-text-main);
    text-decoration: none;
  }

  .blog_row_inner .name a:hover {
    color: var(--bios-accent);
  }

  .blog_row .text {
    color: var(--bios-text-soft);
    line-height: 1.7;
  }

  /* category chips / tags / toggles */
  .tags-bottom {
    text-align: center;
  }

  .catalog-page .tags-bottom {
    text-align: right;
  }

  .tags-bottom_child .my-tags {
    display: inline-block;
  }

  .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .show_hide_list,
  .content_toggle {
    cursor: pointer;
    border-bottom: 1px solid var(--bios-text-main);
    width: auto;
    display: inline-block;
    color: var(--bios-text-main);
    font-size: 16px;
    text-decoration: none;
    transition: .2s ease;
  }

  .show_hide_list:hover,
  .content_toggle:hover {
    border-bottom-color: var(--bios-accent);
    color: var(--bios-accent);
  }

  .content_block {
    overflow: hidden;
    position: relative;
  }

  .content_block.hide {
    height: 300px;
  }

  .content_block.hide:after {
    content: "";
    display: block;
    height: 80px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0), #fff 75%);
  }

  div.list .my-tags:nth-child(n+6) {
    display: none;
  }

  /* content typography */
  .textOuter {
    font-size: 16px;
    line-height: 1.7;
    color: var(--bios-text-soft);
    overflow: hidden;
  }

  .textOuter h2,
  .textOuter h3,
  .textOuter h4,
  .textOuter p + h2,
  .textOuter p + h3,
  .textOuter p + h4 {
    margin: 42px 0 0;
  }

  .textOuter h2 + *,
  .textOuter h3 + *,
  .textOuter h4 + *,
  .textOuter h5 + * {
    margin: 18px 0 0;
  }

  .textOuter p + *,
  .textOuter ul + *,
  .textOuter ol + *,
  .textOuter blockquote + * {
    margin: 14px 0 0;
  }

  .textOuter ol,
  .textOuter ul {
    padding-left: 1rem;
  }

  .textOuter ul {
    margin-left: 0;
    list-style: none;
  }

  .textOuter ul li:before {
    content: '';
    height: 8px;
    width: 8px;
    background: #cfc4b6;
    border-radius: 50%;
    float: left;
    margin: 8px 7px 0 0;
  }

  .textOuter ol {
    margin-left: 0;
  }

  .textOuter ol li {
    list-style: decimal;
  }

  .textOuter ul li + li,
  .textOuter ol li + li {
    margin-top: 7px;
  }

  .textOuter img {
    max-width: 100%;
    height: auto;
    border: 1px solid #f3f3f3;
    padding: 12px;
    border-radius: 16px;
  }

  .textOuter img[style*="float:right"] {
    margin-left: 22px;
  }

  .textOuter img[style*="float:left"] {
    margin-right: 22px;
  }

  .textOuter blockquote {
    margin: 28px 0 28px 18px;
    padding: 12px 16px;
    border-left: 3px solid var(--bios-border);
    background: var(--bios-bg-muted);
    border-radius: 0 14px 14px 0;
  }

  .textOuter blockquote p {
    margin: 0;
  }

  .textOuter table {
    width: 100%;
    border-color: #d9d1c7;
    border-collapse: collapse;
  }

  .textOuter table tr td,
  .textOuter table tr th {
    padding: 12px;
    border: 1px solid #d9d1c7;
  }

  .textOuter table tr th {
    background: #f4efe7;
  }

  /* buttons */
  .btn.btn-warning {
    background-color: var(--bios-accent);
    border-color: var(--bios-accent);
    color: #fff;
  }

  .btn.btn-warning:hover {
    background-color: var(--bios-accent-dark);
    border-color: var(--bios-accent-dark);
    color: #fff;
  }

  .btn.btn-outline-warning {
    color: var(--bios-accent);
    border-color: var(--bios-accent);
  }

  .btn-outline-warning:hover {
    background-color: #f7efe6;
    border-color: var(--bios-accent);
    color: var(--bios-accent);
  }

  .product_buttons .btn {
    width: 100%;
  }

  /* ajax / forms */
  .ajax_form .btn {
    float: right;
    padding: 10px 32px;
    margin-top: 7px;
  }

  .ajax_form span.error {
    font-size: 12px;
    display: block;
    color: var(--bios-danger);
  }

  .ajax_form .form-control + span.error {
    margin-top: 7px;
  }

  .popup_outer h2.title + .ajax_form {
    margin-top: 22px;
  }

  /* filter / sort */
  .msearch2 .fa_slider .fa_progress,
  .msearch2 input.fa_range-min::-webkit-slider-thumb,
  .msearch2 input.fa_range-max::-webkit-slider-thumb,
  .msearch2 input.fa_range-min::-moz-range-thumb,
  .msearch2 input.fa_range-max::-moz-range-thumb {
    background: var(--bios-accent);
  }

  .msearch2 .fa_price-input {
    margin: 22px 0 24px;
  }

  .msearch2 select {
    display: block;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 600;
    color: #444;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 12px 0 0;
    border: 1px solid #d4cabd;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: 16px;
    appearance: none;
    background-color: #fff;
    background-image: url('../img/icons/arrow_select.svg'), linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .9em top 50%, 0 0;
    background-size: .65em auto, 100%;
  }

  .msearch2 select:hover {
    border-color: #bca88e;
  }

  .msearch2 select:focus {
    border-color: #bca88e;
    box-shadow: 0 0 0 3px rgba(141,111,71,.18);
    color: #222;
    outline: none;
  }

  .container .faSortsOuter,
  #faSorts {
    margin: 26px 0 32px;
    display: flex;
    justify-content: flex-end;
  }

  .faSortsRows a {
    color: var(--bios-text-main);
    margin: 0 7px;
    text-decoration: none;
    border-bottom: 1px dotted #89837e;
  }

  .faSortsRows a.active {
    color: var(--bios-accent);
    border-bottom-color: var(--bios-accent);
  }

  .faSortsRows a:hover {
    color: var(--bios-accent);
    border-bottom-color: var(--bios-accent);
  }

  .faFiltersReset {
    background: none;
    border: none;
    margin: 22px 0 0;
    border-bottom: 1px dotted var(--bios-accent);
    padding: 0;
    float: right;
    color: var(--bios-accent);
  }

  .faFiltersReset:hover {
    color: #6c757d;
    border-color: #6c757d;
  }

  .filter-toggler {
    margin: 0 0 22px 7px;
    background-color: transparent;
    border: none;
    background-image: url(../img/icons/filter.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-left: 26px;
    color: var(--bios-text-main);
  }

  .filter-collapsed.show {
    background: var(--bios-bg-muted);
    padding: 22px 24px 0;
    border-radius: 16px;
    margin-bottom: 32px;
    border: 1px solid var(--bios-border);
  }

  /* cards / catalog legacy */
  .row-flex {
    display: flex;
    flex-wrap: wrap;
  }

  .ms2_product .card {
    height: 100%;
    padding: 20px 20px 10px;
    border: 1px solid var(--bios-border);
    border-radius: 24px;
    background: var(--bios-bg-main);
    box-shadow: var(--bios-shadow-card);
  }

  .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card-body .card-title {
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }

  .card-title {
    font-size: 16px;
    color: #625340;
  }

  .card-img-top img,
  .image img {
    border-radius: 12px;
  }

  .card .btn-group {
    width: 100%;
  }

  .row .ms2_product {
    position: relative;
  }

  .row .ms2_product .flags {
    position: absolute;
    top: 21px;
    left: 29px;
    z-index: 1;
  }

  .flags .badge {
    background-color: rgba(255,255,255,0.78);
    font-size: 14px;
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 600;
    border: 1px solid var(--bios-border);
  }

  .flags .badge.bg_success {
    color: #198754;
  }

  .flags .badge.bg_primary {
    color: #0d6efd;
  }

  .discount.badge {
    font-weight: 600;
  }

  /* cart */
  .cart-page .image {
    margin-right: 15px;
  }

  .cart-page .title a {
    color: #625340;
    text-decoration: none;
  }

  .cart-page .title a:hover {
    color: var(--bios-text-main);
  }

  .cart-page .table > :not(caption) > * > * {
    padding: 1rem;
  }

  .cart-page .remove .btn {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
  }

  .cart-and-order .btn {
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 45px;
  }

  .cart-and-order .btn.btn-clear {
    color: var(--bios-danger);
    font-weight: 400;
    text-transform: none;
    padding: 0;
    font-size: 14px;
  }

  /* product page legacy blocks */
  .product h1.title {
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .product_info {
    color: var(--bios-text-soft);
  }

  .delivery_payment_block {
    border: 1px solid var(--bios-border);
    height: 100%;
    padding: 26px 26px 16px;
    border-radius: 20px;
    background: var(--bios-bg-main);
    box-shadow: var(--bios-shadow-card);
  }

  .delivery_payment_block a,
  .product_buttons .btn.btn_order {
    color: var(--bios-accent);
  }

  .product_buttons .btn.btn_order {
    width: auto;
    padding: 0;
  }

  .product .text-right {
    text-align: right;
  }

  .product .msg_outer {
    flex-direction: row;
    margin-bottom: 26px;
  }

  .product .msg_outer .whatsapp {
    margin-right: 22px;
  }

  .product_content {
    margin-top: 16px;
    margin-bottom: 56px;
  }

  .product_content h2 {
    margin-top: 12px;
  }

  .product_options {
    background: #f5f5f5;
    border-radius: 20px;
    border: 1px solid var(--bios-border);
  }

  .product_options_inner {
    padding: 22px;
  }

  .product_options_inner .form-group:nth-child(odd) {
    background: #fdfdfd;
    border-radius: 10px;
  }

  .product_options_inner .form-group + .form-group {
    margin-top: 12px;
  }

  .fotorama__stage {
    margin-bottom: 12px;
  }

  .fotorama__stage .fotorama__stage__frame .fotorama__img,
  .fotorama__wrap--css3 .fotorama__stage .fotorama__img {
    border-radius: 12px !important;
  }

  .product .sklad {
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    margin: 9px 0 0;
    padding: 7px 12px;
    border-radius: 999px;
  }

  .product .yes {
    color: #4caf50;
    border: 1px solid #4caf50;
  }

  .product .no {
    color: var(--bios-danger);
    border: 1px solid var(--bios-danger);
  }

  .price-row {
    font-size: 22px;
    font-weight: 600;
    color: var(--bios-text-soft);
    margin-bottom: 22px;
  }

  .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  /* search results */
  .simplesearch-search-form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #dee2e6;
    text-align: right;
    font-size: 0.8rem;
  }

  .simplesearch-result h4 {
    font-size: 18px;
    font-weight: 600;
  }

  .simplesearch-result h4 a {
    color: var(--bios-accent);
  }

  .simplesearch-result h4 a:hover {
    color: var(--bios-danger);
  }

  .simplesearch-results + .simplesearch-paging {
    display: none;
  }

  .simplesearch-paging {
    background: #f9f9f9;
    padding: 8px 18px;
    border-radius: 12px;
    margin-top: 46px;
    color: #ccc;
  }

  .simplesearch-paging .simplesearch-result-pages {
    color: var(--bios-text-main);
  }

  .simplesearch-paging .simplesearch-page {
    display: inline-block;
    padding: 3px 10px;
    color: var(--bios-text-main);
  }

  .simplesearch-page a {
    display: block;
    color: var(--bios-accent);
    text-decoration: none;
  }

  /* faq */
  .faq_outer {
    margin-bottom: 86px;
  }

  .faq_outer h3.title {
    margin-bottom: 18px;
  }

  .faq_outer .accordion-item {
    border: none;
  }

  .faq_outer .accordion-button,
  .faq_outer .accordion-item:first-of-type .accordion-button,
  .faq_outer .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 14px;
  }

  .faq_outer .accordion-button:not(.collapsed) {
    color: #563410;
    background-color: #ede8df;
  }

  .faq_outer .accordion-button {
    display: block;
    border: 1px solid #d9e1ca;
    text-align: left;
  }

  .faq_outer .accordion-button::after {
    display: block;
    float: right;
    opacity: 0.5;
  }

  .faq_outer .accordion-button:not(.collapsed)::after {
    background-image: url(../img/icons/faq_arrow.svg);
    opacity: 0.9;
  }

  .faq_outer .accordion-button.collapsed {
    margin-bottom: 16px;
  }

  .faq_outer .accordion-body {
    background: #fbfbfb;
    margin: 0 26px 22px;
    border-radius: 0 0 14px 14px;
    color: var(--bios-text-soft);
    padding: 22px 28px;
  }

  /* looked */
  .looked-ms2-product {
    position: relative;
  }

  .ms2_product .looked-remove {
    background-image: url(../img/icons/close.svg);
    background-color: #e3e3e3;
    border: none;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    border-radius: 50%;
    padding: 16px;
    background-size: 16px;
    position: absolute;
    top: -10px;
    right: -5px;
    z-index: 1;
  }

  .looked_title .btn {
    margin-left: 0;
    padding: 3px 0 7px;
  }

  .looked_title .btn:hover {
    color: var(--bios-accent);
  }

  /* footer */
  .footer {
    margin-top: 90px;
    background: #f9f9f9;
    padding: 35px 0 16px;
    border-top: 2px solid #e3e3e3;
  }

  .footer_menu {
    list-style: none;
    padding-left: 5px;
  }

  .footer_menu li {
    margin: 0 0 7px;
  }

  .footer_menu li a,
  .cf-cities li a {
    text-decoration: none;
    color: var(--bios-text-main);
    border-bottom: 1px solid #bbb;
    padding-bottom: 2px;
  }

  .footer_menu li a:hover,
  .cf-cities li a:hover {
    color: var(--bios-accent);
    border-color: var(--bios-accent);
  }

  .footer_txt {
    margin-bottom: 26px;
  }

  .footer .developer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .footer .developer img {
    margin-left: 12px;
  }

  .footer_copyright a {
    color: var(--bios-text-main);
  }

  .footer_copyright a:hover {
    color: var(--bios-accent);
  }

  /* cf modal */
  .cf-modal .cf-modal-dialog .cf-modal-header {
    padding: 22px;
  }

  .cf-modal .cf-modal-dialog .cf-modal-body {
    padding: 26px;
  }

  .cf-modal .cf-cities li {
    margin: 3px 0 12px;
  }

  .cf-modal .cf-modal-dialog .cf-modal-header .cf-btn-close {
    font-size: 32px;
    margin-top: -12px;
    margin-right: -6px;
  }

  .cf-modal .cf-modal-dialog .cf-modal-header .cf-btn-close:hover {
    opacity: 0.5;
  }

  /* utility */
  .scroll-top {
    display: none;
    text-align: center;
    position: fixed;
    z-index: 10;
    right: 28px;
    bottom: 28px;
  }

  .scroll-top a {
    display: block;
    font-size: 0;
    padding: 18px 22px 26px;
    background: url(../img/icons/up.svg) center no-repeat;
    background-size: 18px;
    background-color: #ebebeb;
    border-radius: 50%;
    border: 1px solid #e3e3e3;
  }

  .scroll-top a:hover {
    background-color: #f9f9f9;
  }

  .box-bottom-content {
    margin-top: 72px;
  }

  .box-bottom-content .tags-bottom_child {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }

  .box-bottom-content .tags-bottom_child .my-tags {
    margin: 0 0 16px;
  }

  .box-bottom-content .tags-bottom_child .my-tags p {
    margin: 0;
  }

  .box-bottom-content .tags-bottom_child .my-tags a {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #6c757d;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid #6c757d;
    padding: 0.375rem 0.75rem;
    margin: 0 7px;
    font-size: 1rem;
    border-radius: 10px;
    transition: .15s ease-in-out;
  }

  .box-bottom-content .tags-bottom_child .my-tags a:hover {
    background: #f9f9f9;
  }

  .box-bottom-content .slick-prev:before,
  .box-bottom-content .slick-next:before {
    color: #6c757d;
  }

  .catalog-page .box-bottom-content {
    margin-top: 56px;
    margin-bottom: 42px;
    overflow: hidden;
  }

  .catalog-page .box-bottom-content .tags-bottom_child {
    justify-content: flex-end;
    width: 100%;
  }

  .catalog-page .categories {
    margin: 68px 0 0 !important;
  }

  /* pagination */
  .mse2_pagination {
    margin-top: 36px;
  }

  .page-item.active .page-link {
    background-color: var(--bios-accent);
    border-color: var(--bios-accent);
  }

  .page-link {
    color: #000;
  }

  .page-link:hover {
    color: var(--bios-accent);
    background-color: #efede9;
    border-color: #d7d5d1;
  }

  /* cookie */
  .cookie {
    position: fixed;
    padding: 22px 70px 16px 20px;
    right: 100px;
    bottom: 0;
    max-width: 840px;
    background: #e3e3e3;
    border-radius: 12px 12px 0 0;
    display: none;
  }

  .cookie p {
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
    color: #4c4c4c;
  }

  .cookie button {
    position: absolute;
    right: 18px;
    top: 50%;
    margin-top: -16px;
    background: #de1f2b;
    border-radius: 5px;
    width: 46px;
    height: 32px;
    border: none;
    outline: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
  }

  /* responsive */
  @media (min-width: 992px) {
    .filter-collapsed {
      display: block !important;
    }

    .filter-toggler {
      display: none;
    }
  }

  @media screen and (max-width: 1199px) {
    h1.title {
      font-size: 28px;
    }
  }

  @media screen and (max-width: 991px) {
    h1.title {
      font-size: 26px;
    }

    h2.title,
    .textOuter h2 {
      font-size: 24px;
    }

    h3.title,
    .textOuter h3 {
      font-size: 20px;
    }

    h4.title {
      font-size: 18px;
    }

    .card-body .card-title {
      font-size: 18px;
      line-height: 1.5;
    }

    .msearch2 fieldset + fieldset {
      margin-top: 0;
      margin-bottom: 26px;
    }

    .product_buttons .input-group {
      margin-bottom: 12px;
    }
  }

  @media screen and (max-width: 767px) {
    h1.title {
      font-size: 24px;
    }

    h2.title,
    .textOuter h2 {
      font-size: 22px;
    }

    h3.title,
    .textOuter h3 {
      font-size: 18px;
    }

    h4.title {
      font-size: 16px;
    }

    .msg_outer {
      flex-direction: column;
    }

    .msg_outer .whatsapp {
      margin: 7px 0;
    }

    .card .btn-group {
      flex-direction: column;
    }

    .card .btn-group .btn {
      border-radius: .2rem;
    }

    .card .btn-group .btn.btn-warning {
      margin-top: 7px;
    }

    .product_content {
      flex-direction: column-reverse;
    }

    .gallery_outer {
      margin-bottom: 36px;
    }
  }

  @media screen and (max-width: 520px) {
    .cookie {
      padding: 22px 20px 16px;
      right: 0;
      max-width: 100%;
      border-radius: 0;
    }

    .cookie button {
      position: relative;
      right: inherit;
      top: inherit;
      margin-top: 8px;
      height: 28px;
    }
  }

  @media screen and (max-width: 480px) {
    .minicart_outer {
      width: 100%;
      margin-top: 18px;
    }
  }
