
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html, body {
  min-height: 100%;
  margin: 0;
  font-size: 16px;
  font-family: Rubik;
}

h1, h2, h3, h4, h5, h6,
li, ul, a, p, button {
  font-display: optional;
}

a, ul, ul li {
  text-decoration: none;
  list-style-type: none;
  list-style: none;
}

input, select, button, textarea {
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  height: 18px;
  width: 18px;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  border-style: none;
  padding: 0;
  cursor: pointer;
}

svg {
  width: 60px;
  height: 60px;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  vertical-align: top;
}

:root {
  --index: calc(1vw + 1vh);
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: calc(100vh + 90px);
}

.content-wrapper {
  padding-top: 53px;
  flex: 1;
}

section {
  position: relative;
  padding: calc(var(--index) * 2.2) 0;
}
section .page-title {
  margin-bottom: 40px;
}

.container {
  width: 100%;
  padding: 0 calc(var(--index) * 9) 0;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 calc(var(--index) * 3) 0;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 calc(var(--index) * 1) 0;
  }
}

.row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: start;
  justify-content: start;
}

.col {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.grid.col-2 {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(calc(50% - 60px), 1fr));
}
.grid.col-3 {
  width: 100%;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(calc(33% - 60px), 1fr));
}
@media screen and (max-width: 992px) {
  .grid.col-3 {
    width: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 6px), 1fr));
  }
}
.grid.col-4 {
  width: 100%;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(calc(25% - 60px), 1fr));
}
@media screen and (max-width: 992px) {
  .grid.col-4 {
    gap: 6px;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 6px), 1fr));
  }
}
@media screen and (max-width: 575px) {
  .grid.col-4 .hidden-mob {
    display: none;
  }
}
.grid.col-5 {
  width: 100%;
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(auto-fill, minmax(calc(20% - 6px), 1fr));
}
.grid.col-7 {
  width: 100%;
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(auto-fill, minmax(calc(14% - 6px), 1fr));
}
@media screen and (max-width: 992px) {
  .grid.col-7 {
    grid-template-columns: repeat(auto-fill, minmax(calc(20% - 6px), 1fr));
  }
}
@media screen and (max-width: 575px) {
  .grid.col-7 {
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3% - 6px), 1fr));
  }
}

.page-title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  border-radius: 4px;
  margin-bottom: 20px;
}
.page-title h1 {
  color: #555;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: calc(var(--index) * 1.3);
}
.page-title span {
  font-size: calc(var(--index) * 0.7);
  text-transform: none;
  color: #999;
}
.page-title h3 {
  font-size: calc(var(--index) * 1.5);
  text-align: center;
  color: #444;
}
.page-title h4 {
  font-family: Rubik;
  font-size: calc(var(--index) * 1.4);
  text-transform: uppercase;
  color: #333;
}

.container.with-sidebar {
  display: flex;
}

aside p {
  font-size: 22px;
  text-align: center;
  display: block;
  width: 100%;
  padding: 8px 0;
  text-transform: uppercase;
  color: #F4CC7A;
}
aside nav {
  width: 100%;
  margin-top: 10px;
}
aside nav li {
  margin: 1px 0;
}
aside nav li a {
  padding: 8px 30px;
  color: #ccc;
  display: block;
}
aside nav li:hover {
  background: rgba(244, 204, 122, 0.4);
}
aside nav li.active {
  background: rgba(244, 204, 122, 0.5);
  border-left: 5px solid #F4CC7A;
}
aside nav li.active a {
  margin-left: -5px;
}

.sidebar {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  display: block;
  background: #F5F5F5;
  margin-right: 40px;
  padding: 20px 0;
  height: 100%;
}

.btn, button {
  transition: all 0.1s ease-out;
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
  font-size: calc(var(--index) * 0.8);
  text-align: center;
  letter-spacing: 2px;
  border-radius: 1px;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .btn, button {
    font-size: calc(var(--index) * 0.88);
  }
}
@media screen and (max-width: 575px) {
  .btn, button {
    padding: 7px 0;
    font-size: calc(var(--index) * 0.9);
  }
}
.btn-accent, button-accent {
  background: rgba(244, 204, 122, 0.9);
  border: 1px solid #f3c871 !important;
  color: #fff;
}
.btn-accent:hover, button-accent:hover {
  background: rgba(244, 204, 122, 0.8);
  border: 1px solid #f0ba4b !important;
}
.btn-danger, button-danger {
  background: rgba(199, 0, 57, 0.9);
  border: 1px solid #c20038 !important;
  color: #fff;
}
.btn-danger:hover, button-danger:hover {
  background: rgba(199, 0, 57, 0.9);
}
.btn-success, button-success {
  background: #48ac98;
  border: 1px solid #225249 !important;
  color: #fff;
}
.btn-success:hover, button-success:hover {
  background: rgba(72, 172, 152, 0.9);
}
.btn-order, button-order {
  color: #F4CC7A;
  background: rgba(41, 40, 38, 0.99);
  border: 1px solid black !important;
}
.btn-order a, button-order a {
  color: #F4CC7A;
}
.btn-order:hover, button-order:hover {
  background: rgba(41, 40, 38, 0.8);
  border: 1px solid black !important;
}

form input {
  padding-left: 10px;
}
form label {
  color: #333;
}
form .field span {
  margin-right: 10px;
}

.pagination-wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  width: 100%;
}

.pagination {
  border: 1px solid #d8dee9;
  padding: 3px;
  margin: 25px 15px 30px;
  border-radius: 100px;
  text-align: center;
  background-color: #d8dee9;
}
.pagination a {
  color: #888;
  padding: 1px 5px;
  font-size: 14px;
}
.pagination em {
  display: inline;
  font-size: 20px;
  padding: 0 8px 0;
  font-style: normal;
  font-weight: 800;
  border-radius: 100%;
  color: #F4CC7A;
}
.pagination .next_page,
.pagination .previous_page,
.pagination a {
  transition: all 0.14s ease-out;
}
.pagination .next_page:hover,
.pagination .previous_page:hover,
.pagination a:hover {
  position: relative;
  color: #F4CC7A;
}
.pagination span.next_page.disabled,
.pagination span.previous_page.disabled {
  color: #d8dee9;
  display: none;
}

.field_with_errors {
  width: 100%;
  z-index: 9999;
}
.field_with_errors input, .field_with_errors select {
  border: 1px solid #C70039 !important;
}

.flash {
  position: fixed;
  top: 53px;
  width: 100%;
  right: 0;
  z-index: 999999999;
}
.flash h6, .flash li {
  font-size: 15px;
}
.flash .alert {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 5px;
  margin-bottom: 5px;
  color: #fff;
  border-radius: 3px;
}
.flash .success {
  background-color: rgba(72, 172, 152, 0.92);
  border: 1px solid #409a88;
}
.flash .danger {
  background-color: rgba(199, 0, 57, 0.92);
  border: 1px solid #ae0032;
}
.flash .errors {
  background-color: rgba(199, 0, 57, 0.92);
  border: 1px solid #ae0032;
}

footer {
  background: #292825;
  position: relative;
  display: block;
  border-top: 2px solid #000;
}
footer .container {
  padding: 25px 10%;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column-reverse;
  }
}
footer .row {
  align-items: start;
}
footer h5 {
  color: #F4CC7A;
  font-size: calc(var(--index) * 0.63);
}
footer a {
  color: #ccc;
  font-size: calc(var(--index) * 0.5);
}
footer .header-logo {
  width: auto;
  margin-right: 40px;
  align-items: center;
  margin-bottom: 5px;
}
footer .header-logo h6 a {
  display: flex;
  align-items: end;
  font-size: calc(var(--index) * 2);
}
footer .header-logo p {
  font-size: calc(var(--index) * 0.675);
  color: #aaa;
}
@media (max-width: 768px) {
  footer .header-logo {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
  footer .header-logo p {
    font-size: calc(var(--index) * 0.975);
  }
}
footer .contact-info p {
  color: #aaa;
  font-size: calc(var(--index) * 0.5);
}
footer .contact-info .social-links {
  display: flex;
  text-align: center;
  margin-top: 5px;
}
footer .contact-info .social-links svg {
  margin: 3px 5px;
  width: 20px;
  height: 20px;
}

.power_by {
  padding: 5px;
  text-align: center;
  color: #fa0048;
  background: #222;
  border-top: 1px solid #111;
}
.power_by svg {
  height: 20px;
  width: 20px;
  margin-left: 9px;
}
.power_by svg path {
  fill: #F4CC7A;
}
.power_by p {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--index) * 0.42);
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .power_by p {
    font-size: calc(var(--index) * 0.779);
  }
}
.power_by p a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: start;
}
.power_by p span {
  font-size: calc(var(--index) * 0.48);
  margin-left: 4px;
  color: #ccc;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .power_by p span {
    font-size: calc(var(--index) * 0.669);
  }
}

#stuff_to_hide {
  display: none;
}
#stuff_to_hide span {
  padding: 0 4px;
}
#stuff_to_hide input {
  border: 2px solid #999;
}
#stuff_to_hide input:invalid {
  border: 1px solid #C70039;
}
#stuff_to_hide input:invalid + span:after {
  padding-left: 5px;
}
#stuff_to_hide input:valid {
  border: 1px solid #48ac98;
}
#stuff_to_hide input:valid + span:after {
  padding-left: 5px;
}

.row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.col {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.content {
  width: 100%;
}

footer {
  background: #292825;
  position: relative;
  border-top: 2px solid #000;
}
footer .row {
  align-items: start;
}
footer .row .col {
  align-items: end;
}
footer .row .col h5 {
  color: #F4CC7A;
}
footer .row .col li a {
  color: #eee;
}
footer .row .col p {
  color: #eee;
}
footer .header-logo {
  margin-right: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
footer .header-logo h6 a {
  font-size: calc(var(--index) * 2);
}
footer .header-logo p {
  font-size: calc(var(--index) * 0.675);
  color: #aaa;
  white-space: nowrap;
}
footer h5 {
  color: #F4CC7A;
  font-size: calc(var(--index) * 0.675);
}
footer li a {
  color: #eee;
}
@media (max-width: 768px) {
  footer .header-logo {
    width: 100%;
    text-align: center;
  }
  footer h5 {
    font-size: calc(var(--index) * 0.775);
  }
  footer a, footer p {
    font-size: calc(var(--index) * 0.675);
  }
  footer .row {
    align-items: start;
  }
  footer .row .col {
    align-items: center;
  }
  footer .container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
footer .social-links {
  display: flex;
  text-align: center;
  margin-top: 5px;
}
footer .social-links ul {
  display: flex;
}
footer .social-links svg {
  margin: 3px 5px;
  width: 30px;
  height: 30px;
}

.power_by {
  padding: 5px;
  text-align: center;
  color: #fa0048;
  background: #222;
  border-top: 1px solid #111;
  margin: 0 auto;
}
.power_by svg {
  height: 20px;
  width: 20px;
  margin-left: 9px;
}
.power_by svg path {
  fill: #F4CC7A;
}
.power_by p {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--index) * 0.42);
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .power_by p {
    font-size: calc(var(--index) * 0.779);
  }
}
.power_by p a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: start;
}
.power_by p span {
  font-size: calc(var(--index) * 0.48);
  margin-left: 4px;
  color: #ccc;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .power_by p span {
    font-size: calc(var(--index) * 0.669);
  }
}

trix-editor {
  width: 100%;
}

.hamburger {
  display: block;
  z-index: 100;
  cursor: pointer;
}

.menu {
  position: fixed;
  transform: translateX(-100%);
  transition: transform 0.2s;
  top: 0;
  left: 0;
  z-index: 999999;
  background: rgba(17, 17, 17, 0.99);
  color: white;
  list-style: none;
  width: 100%;
  height: auto;
  z-index: 199;
  height: 100%;
}

.showMenu {
  transform: translateX(0);
}

.toggle-menu {
  position: relative;
  z-index: 9999999;
  width: 30px;
  height: 20px;
  margin-left: 16px;
}
.toggle-menu span:after, .toggle-menu span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
}
.toggle-menu span:after {
  top: 18px;
}
.toggle-menu span {
  position: relative;
  display: block;
}
.toggle-menu span, .toggle-menu span:after, .toggle-menu span:before {
  width: 100%;
  height: 2px;
  background-color: #F4CC7A;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 3px;
}
.toggle-menu.on span {
  background-color: transparent;
}
.toggle-menu.on span:before {
  transform: rotate(45deg) translate(-1px, 0px);
}
.toggle-menu.on span:after {
  transform: rotate(-45deg) translate(6px, -7px);
}

.style-mob {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin-top: 25px;
  position: absolute;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
  padding: 40px 0;
}
.style-mob nav {
  width: 100%;
  padding: 10px 20px;
}
.style-mob p {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.style-mob a {
  color: #ccc;
}
.style-mob .category-list li a {
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 22px;
  color: #ccc;
  display: inline-block;
  letter-spacing: 2px;
}
.style-mob .contact-wrap li a {
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 0;
}
.style-mob .social-links {
  display: flex;
}
.style-mob .social-links li {
  margin: 0 15px;
}
.style-mob .social-links svg {
  width: 30px;
  height: 30px;
}
.style-mob .admin-link a {
  padding: 7px 0;
  font-size: 18px;
  display: inline-block;
}

#admin_page {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: start;
  justify-content: start;
}
#admin_page .page-title h2 {
  text-align: center;
  width: 100%;
  font-size: 20px;
}
#admin_page form {
  background: #f9f9f9;
  padding: 20px 20px 0 20px;
}
#admin_page .actions {
  margin: 20px;
  padding-bottom: 30px;
  text-align: center;
}
#admin_page .actions .btn {
  padding: 13px;
  width: 50%;
  text-transform: uppercase;
}
#admin_page td.delete a {
  padding: 3px 8px;
}
#admin_page td.delete a svg {
  display: inline-block;
}
#admin_page td.delete path {
  fill: red !important;
}
#admin_page svg {
  width: 25px;
  height: 25px;
}
#admin_page thead {
  padding: 20px 0;
}
#admin_page .page-header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 20px;
  background: #eee;
  border-bottom: 2px solid #ccc;
}
#admin_page .page-title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin-bottom: 0;
  width: auto;
}
#admin_page .page-title h1 {
  font-size: 19px;
}
#admin_page .btn, #admin_page button {
  width: auto;
  padding: 4px 15px;
  font-size: 12px;
}
#admin_page .sidebar {
  position: fixed;
  height: 100vh;
  border-right: 1px solid #ccc;
  width: 220px;
  background: none;
}
#admin_page .sidebar a {
  color: #444;
}
#admin_page main#content.content {
  padding: 0;
  margin-left: 220px;
  max-width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  #admin_page main#content.content {
    margin-left: 0;
    max-width: 100%;
  }
  #admin_page main#content.content .page-header {
    padding: 0 10px;
  }
}
#admin_page .container {
  padding: 0 20px;
}
#admin_page .size-field .col {
  width: 50%;
}
#admin_page .size-field input {
  max-width: 100%;
}
#admin_page .nav-bar-menu {
  margin: 20px 0;
  background: #eee;
  padding: 3px 15px;
  border-radius: 8px;
  border: 1px solid #aaa;
  overflow-x: scroll;
}
#admin_page .nav-bar-menu span {
  margin: 0 20px;
}
#admin_page .nav-bar-menu p {
  color: #ddd;
  margin-right: 10px;
}
#admin_page .nav-bar-menu li {
  width: 100%;
  list-style: none;
}
#admin_page .nav-bar-menu a {
  color: #333;
  padding: 5px 12px;
  background: rgba(221, 221, 221, 0.5333333333);
  border: 1px solid #ccc;
  margin: 6px;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
#admin_page .nav-bar-menu a span {
  margin-left: 5px;
  background: #F4CC7A;
  margin: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  font-size: 10px;
  font-weight: 1000;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #c58a10;
}
#admin_page .nav-bar-menu a:hover {
  background: #999;
}
#admin_page .nav-bar-menu a.active {
  background: #F4CC7A;
  border: 1px solid #eca81c;
}
#admin_page .nav-bar-menu a.active span {
  background: #eee;
}

.table {
  overflow-x: scroll;
  max-width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
table .center {
  text-align: center;
}
table th.id {
  width: 30px;
}
table th.sm {
  width: 60px;
  text-align: center;
}
table th {
  font-size: 15px;
}
table tr {
  font-size: 13px;
}
table tr:nth-child(odd) {
  background-color: #eee;
}
table td {
  padding: 5px 8px;
  border: 1px solid #888;
}
table td p {
  font-size: 13px !important;
}
table td form .btn-success {
  margin-top: 6px;
}
table td .delete svg path {
  fill: red !important;
}
table td.comment {
  min-width: 300px;
}
@media screen and (max-width: 508px) {
  table td.comment p {
    color: #333;
    font-size: 12px !important;
  }
}
table .name {
  width: 250px;
}
table tr.accepted {
  background: rgba(100, 149, 237, 0.3);
}
table tr.processing {
  background: rgba(255, 255, 0, 0.3);
}
table tr.done {
  background: rgba(0, 128, 0, 0.3);
}
table tr.cancelled {
  background: rgba(255, 0, 0, 0.3);
}

.field.size-field {
  background: #eee;
  border: 1px solid #aaa;
  padding: 10px;
  border-radius: 8px;
}
.field.size-field .row {
  align-items: center;
}
.field.size-field .row span {
  margin: 15px 5px 0 5px;
}

.uploaded-images {
  display: flex;
}
.uploaded-images .image-wrap {
  width: 120px;
  height: 120px;
  margin: 5px;
}
.uploaded-images .image-wrap img {
  width: 100%;
  height: 100%;
}

.upload-border {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 10px 0;
  padding: 10px;
}

figcaption.attachment__caption {
  display: none;
}

.page {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 150px);
}
.page form {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 500px;
}
.page form .btn {
  margin-top: 30px;
  width: 100%;
  height: 50px;
  color: #fff;
  font-size: 1.3rem;
}
.page form input {
  width: 100%;
  height: 50px;
  text-indent: 15px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.page form input::placeholder {
  color: #777;
  font-size: 0.97rem;
}
.page form input[type=checkbox] {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}

.field {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.field input {
  width: 95%;
}
.field .remember-me {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: start;
}

.l {
  width: 100%;
}
.l .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l .logo img {
  width: 170px;
}
.l p {
  width: 100%;
  text-align: center;
}
.l .reset-btn {
  padding: 8px 25px;
  border-radius: 50px;
  color: #fff;
}

header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: start;
  position: fixed;
  height: 53px;
  padding: 0 2%;
  width: 100%;
  background: rgba(41, 40, 37, 0.98);
  border-bottom: 1px solid #636159;
  z-index: 9999;
}

.header-logo h6 {
  font-size: calc(var(--index) * 0.85);
  font-family: Nasalization Rg;
}
@media screen and (max-width: 768px) {
  .header-logo h6 {
    font-size: calc(var(--index) * 1.4);
  }
}
.header-logo h6 a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
}
.header-logo h6 span {
  font-size: calc(var(--index) * 0.55);
  color: #F4CC7A;
  margin-left: -5px;
}
@media screen and (max-width: 575px) {
  .header-logo h6 span {
    font-size: calc(var(--index) * 0.9);
  }
}

.header-menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  margin-left: 40px;
}
.header-menu a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f2f3f4;
  height: 100%;
  padding: 0 10px;
  font-size: calc(var(--index) * 0.63);
  white-space: nowrap;
}
.header-menu ul {
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
}

.header-navbar {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: end;
  margin: auto;
  margin-right: 25px;
}
@media screen and (max-width: 575px) {
  .header-navbar .admin-btn {
    font-size: 10px;
  }
}
.header-navbar ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
}
.header-navbar ul li {
  margin: 0 10px;
}
.header-navbar ul svg {
  height: 22px;
  width: 22px;
  margin-top: 4px;
  position: relative;
}
.header-navbar ul svg path {
  fill: #F4CC7A !important;
}
.header-navbar ul svg:hover path {
  fill: #fff !important;
}
.header-navbar .phone a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 575px) {
  .header-navbar .phone a {
    display: none;
  }
}
.header-navbar .social-links {
  margin-right: 15px;
}
.header-navbar .btn-danger {
  padding: 2px 5px;
  border-radius: 4px;
}

.viber-btn {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 999999;
}
.viber-btn svg {
  width: 55px;
  height: 55px;
  z-index: 999999;
  position: relative;
}
@media screen and (max-width: 768px) {
  .viber-btn svg {
    width: 44px;
    height: 44px;
  }
}
.viber-btn a {
  margin: 4px 0;
  transition: all 0.3s ease-out;
}
.viber-btn a:hover {
  transform: scale(1.2);
}

.bg {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-top: calc(var(--index) * 1.1);
  border-radius: 15px;
  overflow: hidden;
}
.bg .action-btn {
  position: absolute;
  background: rgba(51, 51, 51, 0.3);
  color: #fff;
  bottom: calc(var(--index) * 1.5);
}
@media screen and (max-width: 768px) {
  .bg .action-btn {
    width: 70%;
  }
}

.bg-cover {
  width: 100%;
  height: 499px;
}
@media screen and (max-width: 1024px) {
  .bg-cover {
    height: 320px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 575px) {
  .bg-cover {
    height: 250px;
  }
}
.bg-cover img {
  border: 3px solid #222;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-cover:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.83);
  position: absolute;
}

.bg-title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
}
.bg-title h1 {
  font-size: calc(var(--index) * 2.7);
  color: #F4CC7A;
  letter-spacing: 3px;
  font-family: Rubik;
  text-transform: uppercase;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .bg-title h1 {
    font-size: calc(var(--index) * 1.9);
  }
}
.bg-title h2 {
  font-size: calc(var(--index) * 0.84);
  letter-spacing: 1px;
  font-weight: 600;
  padding: calc(var(--index) * 0.9) 0 10px;
  color: #fff;
  text-align: center;
}
.bg-title ul {
  text-align: center;
}
.bg-title li {
  padding-left: calc(var(--index) * 0.55);
  color: #F4CC7A;
  font-size: calc(var(--index) * 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline;
}
@media screen and (max-width: 768px) {
  .bg-title li {
    font-size: calc(var(--index) * 0.7);
  }
}

section.about-us .item {
  text-align: center;
  transition: all 0.09s ease-out;
}
section.about-us .item .icon {
  background: #eee;
  border: 1px solid #F4CC7A;
  display: inline-block;
  border-radius: 5px;
  padding: 20px;
}
section.about-us .item .icon svg {
  height: 80px;
  width: 80px;
}
section.about-us .item .icon svg path {
  fill: #666 !important;
}
@media screen and (max-width: 575px) {
  section.about-us .item .icon svg {
    height: 50px;
    width: 50px;
  }
}
section.about-us .item h5 {
  text-align: center;
  margin: 10px 0;
  text-align: center√;
  font-size: calc(var(--index) * 0.8);
}
@media screen and (max-width: 575px) {
  section.about-us .item h5 {
    font-size: calc(var(--index) * 1.29);
  }
}
@media (max-width: 768px) {
  section.about-us .item h5 {
    font-size: calc(var(--index) * 1);
  }
}
section.about-us .item h6 {
  font-size: calc(var(--index) * 0.59);
  color: #555;
}
@media screen and (max-width: 575px) {
  section.about-us .item h6 {
    font-size: calc(var(--index) * 1.13);
  }
}

@media screen and (max-width: 575px) {
  .product-catalog {
    padding: 0;
  }
  .product-catalog .container {
    padding: 0;
  }
  .product-catalog .container img {
    border-radius: 0;
  }
}

section.options {
  background: #f3c871;
  position: relative;
  overflow: hidden;
}
section.options h5 {
  font-size: calc(var(--index) * 1.7);
  letter-spacing: 3px;
  margin-bottom: 10px;
}
section.options h6 {
  font-size: calc(var(--index) * 0.77);
  position: relative;
  display: block;
  padding: 4px 0;
  margin-left: 30px;
}
section.options h6::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #000;
  background: #dc9a12;
  left: -30px;
  top: 20%;
  position: absolute;
}
section.options .order-button {
  padding-top: 30px;
}
section.options .order-button .btn:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #eca81c;
}

section.seo {
  background: #292825;
  padding: 0;
  align-items: center;
}
section.seo .description {
  border: none;
}
section.seo .content {
  width: 45%;
}
section.seo .container {
  padding: 0 4%;
  width: 55%;
}
section.seo .image {
  position: relative;
}
section.seo .image:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.333);
  position: absolute;
}
section.seo .image img {
  display: inline-block;
}
section.seo .page-title {
  margin-bottom: 0;
}
section.seo .actions {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
}
section.seo .actions .btn {
  width: 50%;
}
@media screen and (max-width: 768px) {
  section.seo {
    flex-direction: column;
    padding: 10px 0 50px;
  }
  section.seo .image img {
    height: auto;
    padding: 60px;
    border-radius: 4px;
  }
  section.seo .content {
    width: 100%;
  }
  section.seo .container {
    padding: 0 4%;
    width: 100%;
  }
}
section.seo .page-title h4 {
  color: #F4CC7A;
}
section.seo p {
  color: #ccc;
  letter-spacing: 2px;
  font-weight: 100;
  text-align: justify;
  font-size: calc(var(--index) * 0.8);
}
section.seo span {
  font-size: calc(var(--index) * 0.8);
  color: #aaa;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  section.seo p {
    font-size: calc(var(--index) * 0.95);
  }
  section.seo .image img {
    padding: 20px;
    border-radius: 4px;
  }
}

section.reviews {
  background: #f1f1f1;
}
section.reviews .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  section.reviews .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
section.reviews .img {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
}
section.reviews .img img {
  width: 260px;
}
section.reviews .col {
  width: 60%;
}
@media screen and (max-width: 575px) {
  section.reviews .col {
    width: 100%;
  }
}
section.reviews .text-wrap {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
}
section.reviews .form-coments {
  padding: 20px;
  border: 1px solid #fff;
  margin-top: 40px;
  width: 100%;
}
section.reviews .form-coments form {
  width: 100%;
}
section.reviews .form-coments form .field {
  flex-direction: column;
  align-items: start;
}
section.reviews input {
  height: 35px;
  width: 100%;
  margin: 7px 0;
}
section.reviews textarea {
  width: 100%;
  max-width: 100%;
  height: 120px;
}
section.reviews .action-btn {
  margin-top: 20px;
}

section.our_works {
  background: #333;
}
section.our_works .item {
  position: relative;
  display: block;
  padding: 6px;
}
section.our_works .item img {
  border-radius: 10px;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
section.our_works .item img:hover {
  border: 2px solid #F4CC7A;
}
section.our_works h4 {
  color: #fff;
}
section.our_works h4 span a {
  color: #F4CC7A;
  border-bottom: 1px solid #F4CC7A;
}
section.our_works svg {
  margin-top: 10px;
}
section.our_works svg path {
  fill: #F4CC7A;
}
section.our_works .more-link {
  color: #fff;
  margin-top: 20px;
  text-align: center;
  width: 100%;
  display: block;
}
section.our_works .more-link:hover {
  color: #ccc;
}

section.contacts {
  display: flex;
  padding: 0;
}
section.contacts .contact-info {
  padding: 0 40px;
  width: 40%;
  background: #F4CC7A;
}
section.contacts .contact-info .social-links {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: center;
}
section.contacts .contact-info .social-links ul {
  display: flex;
  justify-content: center;
}
section.contacts .contact-info .social-links p {
  margin-bottom: 15px;
}
section.contacts .contact-info .social-links svg {
  width: 30px;
  height: 30px;
  margin: 10px;
}
section.contacts .map {
  width: 60%;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  section.contacts {
    flex-direction: column;
  }
  section.contacts .contact-info {
    width: 100%;
    height: auto;
  }
  section.contacts .map {
    width: 100%;
  }
}

#page.contacts {
  height: 100%;
}
#page.contacts .contact-info {
  background: #F4CC7A;
  height: 40vh;
  text-align: center;
  display: column;
  text-align: center;
}
#page.contacts .contact-info p {
  font-size: 20px;
}
#page.contacts .contact-info h5 {
  font-size: 22px;
}
#page.contacts .contact-info .social-links {
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
#page.contacts .contact-info .social-links ul {
  display: flex;
  justify-content: center;
}
#page.contacts .contact-info .social-links ul svg {
  width: 30px;
  height: 30px;
  margin: 10px;
}

.delivery .content p, .about-us .content p {
  font-size: 20px;
}

.thanks-page {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 100px);
}

.field.description {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

trix-editor#product_description {
  width: 100%;
}

.description {
  border-radius: 8px;
  padding: 10px 20px 20px;
  border: 1px solid #eee;
  margin-top: 10px;
}
.description h2 {
  text-align: center;
  padding: 20px 0;
  font-size: calc(var(--index) * 0.78);
}
.description p {
  font-size: calc(var(--index) * 0.65);
  color: #666;
  text-align: justify;
}
@media screen and (max-width: 575px) {
  .description h2 {
    font-size: calc(var(--index) * 1.3);
  }
  .description p {
    font-size: calc(var(--index) * 1);
  }
}

.square {
  position: relative;
  width: 50%;
  display: block;
  padding: 20px;
}
.square:hover img {
  transition: all 0.2s ease-out;
  transform: scale(1.1);
}
@media screen and (max-width: 575px) {
  .square {
    padding: 8px;
  }
}
.square .item-title {
  position: absolute;
  background: rgba(51, 51, 51, 0.7);
  bottom: 47%;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.square .item-title h5 {
  letter-spacing: 1px;
  color: #F4CC7A;
  font-size: calc(var(--index) * 1.9);
}
@media screen and (max-width: 992px) {
  .square .item-title h5 {
    font-size: calc(var(--index) * 1.3);
  }
}
.square .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 100%;
}
.square .img img {
  width: 100%;
  height: 100%;
  transition: all 0.35s ease-out;
}
.square .img img:hover {
  transform: scale(1.1);
}

.square:after {
  content: "";
  display: block;
}

#page.category-show-page .page-title {
  margin-bottom: 10px;
}
#page.category-show-page .content {
  padding: 0 10px;
}

img[data-caption] {
  bottom: 0;
  left: 0;
  background: #fff;
  color: #000;
}

img.w3-red {
  opacity: 0.9;
}

.galery-wrapper {
  position: relative;
}
.galery-wrapper .galery {
  position: relative;
}
.galery-wrapper .gallery-thumbs {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: left;
  margin-top: 5px;
  overflow-x: scroll;
  overflow-x-width: 100%;
}
.galery-wrapper .gallery-thumbs img {
  opacity: 0.6;
  height: auto;
  width: 100%;
}
.galery-wrapper .gallery-thumbs img.thumb.w3-red {
  opacity: 1;
  border: 2px solid #F4CC7A;
}
.galery-wrapper .gallery-thumbs img.thumb {
  max-width: 69px;
  max-height: 69px;
  border: 1px solid #eee;
  margin-right: 4px;
  cursor: pointer;
}
.galery-wrapper .gallery-thumbs img.thumb:hover {
  opacity: 0.8;
}
.galery-wrapper .gallery-thumbs img.mySlides {
  display: none;
}
.galery-wrapper .gallery-thumbs img.mySlides:nth-child(1) {
  display: block;
}
.galery-wrapper .gallery-nav {
  position: absolute;
  top: -40px;
  height: 100%;
}
.galery-wrapper .gallery-nav button {
  background: transparent;
  height: 100%;
  font-size: 40px;
}
.galery-wrapper .gallery-nav .prev {
  text-align: left;
  color: #555;
}
.galery-wrapper .gallery-nav .next {
  text-align: right;
  color: #555;
}

.hidden-img {
  display: none;
}

.card-item {
  border-radius: 10px;
  background: #f9f9f9;
  width: 100%;
  border: 1px solid #f5f5f5;
}
.card-item:hover {
  box-shadow: 1px 2px 19px rgba(204, 204, 204, 0.4);
  border: 1px solid #eee;
}
.card-item:hover img {
  transform: scale(1.1);
}
.card-item .item-image {
  overflow: hidden;
  border-radius: 8px;
}
.card-item .item-image img {
  border: 1px solid #aaa;
  border-radius: 8px;
  width: 100%;
  min-height: 100%;
  transition: all 0.2s ease-out;
}
.card-item .item-header {
  padding: 3px 10px;
}
.card-item h2.item-title {
  color: #444;
  margin-top: 10px;
  font-size: calc(var(--index) * 0.65);
}
@media screen and (max-width: 575px) {
  .card-item h2.item-title {
    font-size: calc(var(--index) * 0.9);
  }
}
.card-item h3.item-price {
  font-size: calc(var(--index) * 0.7);
  color: #888;
  padding: 10px 0;
}
@media screen and (max-width: 575px) {
  .card-item h3.item-price {
    font-size: calc(var(--index) * 1.1);
  }
}
.card-item h3.item-price span {
  float: right;
  color: #F4CC7A;
}

#show_page {
  margin-top: 50px;
}
#show_page .content {
  display: flex;
}
#show_page aside {
  width: 50%;
}
@media (max-width: 768px) {
  #show_page aside {
    width: 100%;
  }
}
#show_page main {
  width: 50%;
}
@media (max-width: 768px) {
  #show_page main {
    width: 100%;
    margin-top: 40px;
  }
}
#show_page form {
  width: 100%;
}
#show_page form .row {
  align-items: center;
}
@media screen and (max-width: 575px) {
  #show_page {
    margin-top: 20px;
  }
}
#show_page .content {
  display: flex;
}
@media (max-width: 768px) {
  #show_page .content {
    display: flex;
    flex-direction: column;
  }
  #show_page .content .product-bg {
    width: 100%;
  }
  #show_page .content .about-post {
    width: 100%;
  }
}
#show_page .container {
  padding: 40px 15%;
}
#show_page .container .description {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
}
#show_page .container .description h2 {
  text-align: center;
  padding: 20px 0;
  font-size: calc(var(--index) * 0.78);
}
#show_page .container .description p {
  font-size: calc(var(--index) * 0.65);
  color: #666;
  text-align: justify;
}
@media screen and (max-width: 575px) {
  #show_page .container .description h2 {
    font-size: calc(var(--index) * 1.3);
  }
  #show_page .container .description p {
    font-size: calc(var(--index) * 1);
  }
}
@media screen and (max-width: 575px) {
  #show_page .container {
    padding: 20px 5px;
  }
}

.product-bg {
  width: 50%;
  position: relative;
}
.product-bg img {
  width: 100%;
  border-radius: 3px;
}
.product-bg .square {
  padding: 0;
  width: 100%;
}

.about-post {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin-left: 50px;
}
@media (max-width: 768px) {
  .about-post {
    margin-left: 0;
  }
}
.about-post .page-title {
  align-items: start;
  background: #333;
  border-radius: 8px;
  padding: 8px 13px;
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .about-post .page-title {
    margin-top: 15px;
  }
}
.about-post .page-title h1 {
  font-size: calc(var(--index) * 0.8);
  color: #F4CC7A;
}
@media screen and (max-width: 575px) {
  .about-post .page-title h1 {
    font-size: calc(var(--index) * 1.37);
  }
}
.about-post .page-title p {
  color: #aaa;
  font-size: calc(var(--index) * 0.48);
  margin-top: 5px;
}
@media screen and (max-width: 575px) {
  .about-post .page-title p {
    font-size: calc(var(--index) * 0.6);
  }
}
.about-post .size {
  display: flex;
}
.about-post .size p {
  background: #eee;
  padding: 4px 10px;
  margin: 0 5px;
  font-size: calc(var(--index) * 0.6);
}
.about-post .price-product {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: end;
  justify-content: space-between;
}
.about-post .price-product p {
  font-size: calc(var(--index) * 0.8);
}
.about-post .price-product span {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: flex;
  align-items: center;
  justify-content: space-between;
  font-size: calc(var(--index) * 1.1);
}
.about-post .price-product span span {
  margin-left: 6px;
  color: #ccc;
}
@media screen and (max-width: 575px) {
  .about-post .price-product p, .about-post .price-product span {
    font-size: calc(var(--index) * 1.9);
  }
}
.about-post .price-product span.availability {
  font-size: 16px;
  color: #48ac98;
  margin-right: 20px;
}

div.photo-wrap {
  display: block;
  height: 100%;
  width: 100%;
}
div.photo-wrap img {
  width: 100%;
  height: 100%;
}

.top-sales {
  width: 100%;
}
.top-sales .page-title h3 {
  padding: 20px 0;
  font-size: calc(var(--index) * 0.85);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
}

@media screen and (max-width: 575px) {
  form {
    width: 100%;
  }
}

.field.light .row {
  align-items: center;
}
.field.light label {
  width: 100%;
}
.field.light input {
  width: 40px;
}

.field {
  width: 99%;
  display: flex;
}
@media screen and (max-width: 575px) {
  .field {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin: 5px 0;
    padding: 5px 0;
  }
  .field .hidden-mob {
    display: none;
  }
}
.field select, .field input, .field button {
  width: 100%;
  height: 33px;
  margin: 10px 0;
}
@media screen and (max-width: 575px) {
  .field select, .field input, .field button {
    margin: 3px 0;
  }
}
.field label {
  width: 200px;
}

.more-options {
  margin: 20px 0;
}
.more-options .field textarea {
  min-width: 100%;
  max-width: 100%;
  height: 110px;
}

.radio-btn {
  margin: 6px 0 0 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
}
.radio-btn input[type=radio] {
  display: none;
}
.radio-btn label {
  width: 70%;
  margin: 4px 0;
  border: 0.5px solid #DDD;
  border-radius: 0px;
  font-size: 13px;
  text-align: center;
  padding: 8px 0;
}
.radio-btn label:hover {
  cursor: pointer;
  background-color: rgba(51, 51, 51, 0.9);
  color: #fff;
}
.radio-btn input[type=radio]:checked + label {
  background-color: #F4CC7A;
  border: 1px solid #c58a10;
}
.radio-btn input[type=radio]:checked + label:hover {
  color: #000;
}
@media screen and (max-width: 1275px) {
  .radio-btn {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
  .radio-btn label {
    width: 100%;
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade_animate {
  -webkit-animation-name: fadeInTop;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-delay: 0.6s;
  -webkit-animation-fill-mode: backwards;
  animation-name: slideInFromLeft;
  animation-duration: 0.8s;
  animation-delay: 0.6s;
  animation-fill-mode: backwards;
}

.prewiev-cart {
  position: absolute;
  right: 20px;
  top: 30px;
  background: #eee;
  padding: 15px 10px;
  border-radius: 5px;
  z-index: 9;
  display: none;
}
.prewiev-cart .items {
  max-height: 360px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.prewiev-cart p {
  color: #888;
}
.prewiev-cart h3 {
  margin-top: 5px;
  text-align: center;
  font-size: calc(var(--index) * 0.82);
  color: #333;
}
.prewiev-cart h3 span {
  color: #F4CC7A;
}
.prewiev-cart .image-wrp {
  min-width: 60px;
  height: 60px;
}
.prewiev-cart .image-wrp img {
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 5px;
}
.prewiev-cart .action-btn {
  margin-top: 10px;
}

.cart-item {
  padding: 5px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  width: 360px;
  position: relative;
}
.cart-item .image-wrap {
  width: 90px;
  height: 90px;
}
.cart-item .image-wrap img {
  width: 100%;
  height: 100%;
  border: 1px solid #000;
}
.cart-item .cart-product {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
  margin-left: 10px;
}
.cart-item .cart-product h2.prodict-title {
  font-size: calc(var(--index) * 0.62);
  margin-bottom: 7px;
  color: #333;
}
.cart-item .remove-from-cart {
  position: absolute;
  top: 8px;
  right: 10px;
}
.cart-item .remove-from-cart input {
  background: none;
  font-size: calc(var(--index) * 0.67);
  color: red;
}

#page.cart-page turbo-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#page.cart-page .prewiev-cart {
  position: relative;
  right: 0;
  top: 0;
  display: block;
  width: 70%;
}
@media screen and (max-width: 575px) {
  #page.cart-page .prewiev-cart {
    width: 100%;
  }
}
#page.cart-page .prewiev-cart .items {
  width: 100%;
}
#page.cart-page .prewiev-cart .cart-item {
  width: 100%;
}

.order-button .row {
  align-items: center;
}
.order-button .row .btn {
  padding: 13px 0;
}
.order-button .row .btn a {
  color: #fff;
  height: 33px;
  font-size: calc(var(--index) * 1);
}
@media screen and (max-width: 575px) {
  .order-button .row .number-input button {
    width: 33px;
    height: 33px;
  }
  .order-button .row .number-input input[type=number] {
    font-family: sans-serif;
    max-width: 50px;
    padding: 1.2rem;
    border: none;
    border-width: 0 2px;
    font-size: calc(var(--index) * 1.5);
  }
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.number-input {
  margin-right: 25px;
  border: 0;
  display: inline-flex;
  box-sizing: border-box;
}
.number-input * {
  box-sizing: border-box;
}
.number-input button {
  outline: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  cursor: pointer;
  margin: 0;
  position: relative;
  box-shadow: 0px 0px 1px #474747;
  border-radius: 2px;
}
.number-input button:before, .number-input button:after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 1rem;
  height: 2px;
  background-color: #212121;
  transform: translate(-50%, -50%);
}
.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.number-input input[type=number] {
  font-family: sans-serif;
  max-width: 50px;
  padding: 0.5rem;
  border: none;
  border-width: 0 2px;
  font-size: calc(var(--index) * 0.9);
  height: 20px;
  font-weight: bold;
  text-align: center;
  color: #F4CC7A;
}

trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}

trix-toolbar * {
  box-sizing: border-box;
}

trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}

trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}

trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}

@media (max-device-width: 768px) {
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}

@media (max-device-width: 768px) {
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}

trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: black;
}

trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}

trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}

@media (max-device-width: 768px) {
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}

@media (max-device-width: 768px) {
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-device-width: 768px) {
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}

trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}

trix-toolbar .trix-button--icon-attach::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  top: 8%;
  bottom: 4%;
}

trix-toolbar .trix-button--icon-bold::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-italic::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-link::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-strike::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-quote::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-code::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-number-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-undo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-redo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-dialogs {
  position: relative;
}

trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}

trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: #F00 0px 0px 1.5px 1px;
}

trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}

trix-toolbar .trix-dialog--link {
  max-width: 600px;
}

trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}

trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1;
}

trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}

trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {
  background: none;
}

trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection, trix-editor [data-trix-mutable] ::selection {
  background: none;
}

trix-editor .attachment__caption-editor:focus[data-trix-mutable]::-moz-selection {
  background: highlight;
}

trix-editor .attachment__caption-editor:focus[data-trix-mutable]::selection {
  background: highlight;
}

trix-editor [data-trix-mutable].attachment.attachment--file {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}

trix-editor [data-trix-mutable].attachment img {
  box-shadow: 0 0 0 2px highlight;
}

trix-editor .attachment {
  position: relative;
}

trix-editor .attachment:hover {
  cursor: default;
}

trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}

trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}

trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}

trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}

trix-editor .trix-button-group {
  display: inline-flex;
}

trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}

trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

trix-editor .trix-button.trix-active {
  background: #cbeefa;
}

trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}

trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

trix-editor .trix-button--remove:hover {
  border-color: #333;
}

trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}

trix-editor .attachment__metadata-container {
  position: relative;
}

trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}

trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}

.trix-content {
  line-height: 1.5;
}

.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}

.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}

.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}

.trix-content li {
  margin-left: 1em;
}

.trix-content [dir=rtl] li {
  margin-right: 1em;
}

.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}

.trix-content img {
  max-width: 100%;
  height: auto;
}

.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}

.trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
  color: inherit;
}

.trix-content .attachment__caption {
  text-align: center;
}

.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: " •";
}

.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}

.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}

.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}

.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

.trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

.trix-content .attachment-gallery > action-text-attachment, .trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}
.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment, .trix-content .attachment-gallery.attachment-gallery--2 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}
.trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment, .trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}
.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
}

@font-face {
  font-family: "Rubik";
  src: url(/assets/Rubik/Rubik-VariableFont_wght-25b4b2113e8e7565010f37547153d44f9eb740a95aa7057a49c7697d8374cbdb.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Nasalization Rg";
  src: url(/assets/NasalizationRg-7b291540ed3b077e7e3ec8c1799065a014fdb03662be70fc53ba7c9469c2d4dc.otf);
  font-display: swap;
}
@media screen and (max-width: 768px) {
  .hidden-mob {
    display: none;
  }
}
