/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

:root {
  --tr-1: all .3s cubic-bezier(.26,.4,.25,1);
  --font-size: $fz;
  --c_text: #292929;
  --primary: #ccdd53;
  /* --primary: #FF619E; */
  --mint: #52B5B4;
  --bg: #FAFAFA;
  --footer: #fff;
}

/* jost-regular - latin_cyrillic */
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  src: url("./../assets/fonts/jost/EOT/jost-v14-latin_cyrillic-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("./../assets/fonts/jost/EOT/jost-v14-latin_cyrillic-regular.eot?#iefix") format("embedded-opentype"), url("./../assets/fonts/jost/WOFF2/jost-v14-latin_cyrillic-regular.woff2") format("woff2"), url("./../assets/fonts/jost/WOFF/jost-v14-latin_cyrillic-regular.woff") format("woff"), url("./../assets/fonts/jost/TTF/jost-v14-latin_cyrillic-regular.ttf") format("truetype"), url("./../assets/fonts/jost/SVG/jost-v14-latin_cyrillic-regular.svg#Jost") format("svg");
  /* Legacy iOS */
}
/* jost-500 - latin_cyrillic */
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("./../assets/fonts/jost/EOT/jost-v14-latin_cyrillic-500.eot");
  /* IE9 Compat Modes */
  src: local(""), url("./../assets/fonts/jost/EOT/jost-v14-latin_cyrillic-500.eot?#iefix") format("embedded-opentype"), url("./../assets/fonts/jost/WOFF2/jost-v14-latin_cyrillic-500.woff2") format("woff2"), url("./../assets/fonts/jost/WOFF/jost-v14-latin_cyrillic-500.woff") format("woff"), url("./../assets/fonts/jost/TTF/jost-v14-latin_cyrillic-500.ttf") format("truetype"), url("./../assets/fonts/jost/SVG/jost-v14-latin_cyrillic-500.svg#Jost") format("svg");
  /* Legacy iOS */
}
/* jost-700 - latin_cyrillic */
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  src: url("./../assets/fonts/jost/EOT/jost-v14-latin_cyrillic-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("./../assets/fonts/jost/EOT/jost-v14-latin_cyrillic-700.eot?#iefix") format("embedded-opentype"), url("./../assets/fonts/jost/WOFF2/jost-v14-latin_cyrillic-700.woff2") format("woff2"), url("./../assets/fonts/jost/WOFF/jost-v14-latin_cyrillic-700.woff") format("woff"), url("./../assets/fonts/jost/TTF/jost-v14-latin_cyrillic-700.ttf") format("truetype"), url("./../assets/fonts/jost/SVG/jost-v14-latin_cyrillic-700.svg#Jost") format("svg");
  /* Legacy iOS */
}
body {
  font-family: Jost, sans-serif;
  color: var(--c_text);
  background-color: var(--bg);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02rem;
  line-height: 1.235;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199.9px) {
  h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767.9px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--c_text);
  margin-bottom: 32px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
}

img {
  max-width: 100%;
}

.container {
  width: 1440px;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
@media only screen and (max-width: 575.9px) {
  .container {
    padding: 0 8px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.centered {
  text-align: center;
}

header {
  margin-top: 100px;
}
@media only screen and (max-width: 767.9px) {
  header {
    margin-top: 60px;
  }
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
#modal:not(.show) {
  display: none;
}

.modal_msg {
  text-align: center;
}
.modal_msg a {
  font-weight: 500;
  color: var(--primary);
}

.modal_content_outer {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  overflow: auto;
  height: 100%;
}
.modal_content_outer h2 {
  margin-bottom: 28px;
}
.modal_content_outer .btn {
  width: 100%;
}

.modal_content_inner {
  background-color: #fff;
  border-radius: 20px;
  padding: 28px 54px 42px 54px;
  width: 444px;
  position: relative;
  margin: auto;
  z-index: 10;
}

.modal_content:not(.show) {
  display: none;
}

#modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9;
  border: none;
  outline: none;
  cursor: pointer;
}

#close_modal {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  display: block;
  background: unset;
  border: none;
  outline: none;
  cursor: pointer;
}
#close_modal img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

#cookie {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 1000;
  padding: 16px 0;
  display: none;
}

.cookie_content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cookie_content button {
  margin-left: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cookie_text {
  font-weight: 700;
  font-size: 14px;
  text-align: left;
}
.cookie_text a {
  color: #000;
}

nav {
  padding: 32px 0;
  position: fixed;
  width: 100%;
  background-color: rgba(250, 250, 250, 0);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  z-index: 100;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav .container {
  position: relative;
}
nav.scrolled {
  padding: 16px 0;
  background-color: rgba(250, 250, 250, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media only screen and (max-width: 767.9px) {
  nav {
    padding: 16px 0;
  }
  nav.scrolled {
    padding: 8px 0;
  }
}

#cart_counter {
  border-radius: 100%;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-right: 12px;
  -webkit-box-shadow: 0 5px 10px rgba(70, 70, 70, 0.2);
          box-shadow: 0 5px 10px rgba(70, 70, 70, 0.2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icon:hover {
  opacity: 0.75;
}

.back {
  margin-left: auto;
  text-decoration: none;
  color: var(--c_text);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
.back img {
  margin-right: 12px;
}

.open_cart {
  margin-left: auto;
  background: unset;
  border: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.open_cart > * {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.open_cart:hover #cart_counter {
  -webkit-box-shadow: 0 5px 0px rgba(70, 70, 70, 0);
          box-shadow: 0 5px 0px rgba(70, 70, 70, 0);
}
.open_cart:hover .icon {
  opacity: 0.5;
}

.product_list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  width: 100%;
  height: 100%;
  gap: 32px;
  row-gap: 60px;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  margin-top: 3rem;
}
@media only screen and (max-width: 767.9px) {
  .product_list {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 32px), 1fr));
    margin-top: 28px;
  }
}
@media only screen and (max-width: 575.9px) {
  .product_list {
    gap: 16px;
    row-gap: 32px;
  }
}

.product_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.product_item:hover .product_item_img img {
  width: 105%;
  height: 105%;
}
.product_item.disabled .product_item_add {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.product_item.disabled .product_item_add:after {
  background-color: grey;
}

.product_item_bage {
  position: absolute;
  z-index: 2;
  border-radius: 100px;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 16px;
  font-size: 16px;
  top: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.product_item_bage.tries {
  left: 20px;
  background-color: var(--primary);
}
.product_item_bage.new {
  right: 20px;
  background-color: var(--mint);
}
@media only screen and (max-width: 575.9px) {
  .product_item_bage {
    font-size: 12px;
    padding: 4px 8px;
  }
  .product_item_bage.tries {
    left: 8px;
  }
  .product_item_bage.new {
    right: 8px;
  }
}

.product_item_img {
  height: 400px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.product_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  max-width: unset;
  position: absolute;
}
@media only screen and (max-width: 575.9px) {
  .product_item_img {
    height: 170px;
  }
}

.product_item_name {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 130%;
  margin-top: 16px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767.9px) {
  .product_item_name {
    font-size: 14px;
    letter-spacing: 0.05rem;
  }
}
@media only screen and (max-width: 575.9px) {
  .product_item_name {
    margin-top: 8px;
  }
}

.product_item_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  margin-bottom: 24px;
}
@media only screen and (max-width: 575.9px) {
  .product_item_price {
    margin-bottom: 16px;
  }
}
.product_item_price .current {
  font-size: 36px;
  margin-right: 12px;
}
@media only screen and (max-width: 575.9px) {
  .product_item_price .current {
    font-size: 18px;
  }
}
.product_item_price .old {
  color: #CBCBCB;
  font-size: 24px;
  position: relative;
}
.product_item_price .old:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #CBCBCB;
}
@media only screen and (max-width: 575.9px) {
  .product_item_price .old {
    font-size: 16px;
  }
}

.product_item_desc {
  margin-bottom: 22px;
}
@media only screen and (max-width: 575.9px) {
  .product_item_desc {
    margin-bottom: 8px;
  }
  .product_item_desc p {
    font-size: 14px;
  }
}

.product_item_add {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
  color: var(--c_text);
}
.product_item_add:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  margin-top: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product_item_add:hover {
  color: var(--primary);
}
.product_item_add:hover:after {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
@media only screen and (max-width: 767.9px) {
  .product_item_add {
    font-size: 12px;
  }
  .product_item_add:after {
    height: 3px;
  }
}

footer {
  margin-top: 120px;
  padding: 60px 0 40px 0;
  background-color: var(--footer);
}

.footer_content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767.9px) {
  .footer_content {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.footer_contacts {
  text-transform: uppercase;
  text-align: right;
}
.footer_contacts a {
  display: block;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.footer_contacts > *:not(:first-child) {
  margin-top: 16px;
}
.footer_contacts p {
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (max-width: 991.9px) {
  .footer_contacts {
    text-align: center;
    margin-bottom: 32px;
  }
}

.footer_requisites {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}
.footer_requisites > *:first-child {
  font-weight: 700;
}
.footer_requisites > *:not(:first-child) {
  margin-top: 26px;
}
.footer_requisites a {
  display: block;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.btn {
  display: block;
  padding: 16px 28px;
  border: 3px solid var(--primary);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
}
.btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.btn.underline {
  font-weight: 400;
  color: var(--c_text);
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
.btn.underline:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  margin-top: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.underline:hover {
  color: var(--primary);
}
.btn.underline:hover:after {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.btn.filled {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  margin-top: 32px;
  width: 100%;
}

#shopping_cart {
  position: absolute;
  right: 16px;
  z-index: 100;
  background-color: #fff;
  top: calc(100% + 32px);
  display: none;
  border: 6px solid var(--primary);
  padding: 32px;
  max-width: 100%;
  width: 640px;
  -webkit-box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.2);
}
#shopping_cart.show {
  display: block;
}
@media only screen and (max-width: 767.9px) {
  #shopping_cart {
    right: 0;
    padding: 16px;
    top: calc(100% + 16px);
  }
}

.cart_item_group {
  max-height: 176px;
  overflow: auto;
}

.cart_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart_item:not(:first-child) {
  margin-top: 16px;
}
@media only screen and (max-width: 575.9px) {
  .cart_item .cart_name {
    font-size: 13px;
    margin-left: 8px;
  }
  .cart_item .cart_price {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 14px;
    margin-right: 8px;
  }
  .cart_item .product_item_remove {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 16px;
    padding: 0;
  }
}

.cart_img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cart_name {
  margin-right: auto;
  margin-left: 24px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  max-width: 230px;
}

.cart_price {
  padding: 12px 20px;
  font-size: 18px;
  background-color: #F8F8F8;
  margin-right: 28px;
}

.product_item_remove {
  border: none;
  background: unset;
  cursor: pointer;
}
.product_item_remove > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.cart_empty {
  display: none;
  opacity: 0.5;
}

.cart_footer {
  margin-top: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart_footer .btn {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 575.9px) {
  .cart_footer .btn,
  .cart_footer p {
    font-size: 14px;
  }
}

.cart_total {
  font-weight: 500;
}

.order_window {
  max-width: 700px;
  border: 6px solid #E0E0E0;
  padding: 32px;
  margin: 0 auto;
  margin-top: 100px;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}
.order_window h2 {
  margin-bottom: 32px;
}
@media only screen and (max-width: 575.9px) {
  .order_window {
    padding: 16px;
  }
}

.login_tab_content {
  width: 100%;
  display: none;
}
.login_tab_content form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.login_tab_content form .btn {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  margin-top: 32px;
}
.login_tab_content.active {
  display: block;
}

.input_group {
  width: 100%;
}
.input_group:not(:first-child) {
  margin-top: 20px;
}
.input_group input {
  width: 100%;
  border: none;
  background-color: #F1F1F1;
  height: 56px;
  padding: 16px;
  outline: none;
}
.input_group input:focus, .input_group input:active {
  background-color: #e0e0e0;
}
.input_group span {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.login_tab {
  display: inline-block;
  text-transform: uppercase;
  margin: 32px 0;
  cursor: pointer;
  font-weight: 500;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
.login_tab:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  margin-top: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.login_tab:not(:first-child) {
  margin-left: 16px;
}
.login_tab.active {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.login_tab.active:after {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (max-width: 575.9px) {
  .login_tab {
    font-size: 14px;
  }
}

.user_email {
  margin-top: 16px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgb(226, 226, 226);
  display: inline-block;
}

.order_content .policy {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c_text);
  opacity: 0.5;
  font-size: 12px;
  text-align: center;
  display: block;
  margin-top: 16px;
}
.order_content .policy:hover {
  opacity: 1;
}

.radio_input {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  cursor: pointer;
}
.radio_input span {
  margin-bottom: 0;
  margin-left: 4px;
  font-weight: 400;
}

input[type=radio] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: black;
}