@charset "UTF-8";
:root {
  --half: 540px;
  /*<!-- #21759b - Wordpress -->*/
  --color-wordpress: #21759b;
  --color-basic: Ivory; /* #fffff0 */
  --color-basic-light: Ivory; /* #fffff0 */
  --color-basic-dark: Ivory; /* #fffff0 */
  --color-extra: lightgoldenrodyellow;
  --color-extra-light: #fdfde2;
  --color-extra-light: #fefee0;
  --color-extra-dark: lightgoldenrodyellow;
  --color-accent: #c0936e;
  --color-accent-light: #E0B898;
  --color-accent-dark: #7D4C24;
  --color-font-basic: dimgray; /* #696969 */
  --color-font-basic-light: dimgray; /* #696969 */
  --color-font-basic-dark: dimgray; /* #696969 */
  --color-font-extra: #21759b;
  --color-font-extra-light: #21759b;
  --color-font-extra-dark: #21759b;
  --color-font-accent: #c0936e;
  --color-font-accent-light: #E0B898;
  --color-font-accent-dark: #7D4C24;
}

.header {
  padding-top: 2rem;
  font-size: 25px;
  line-height: 36px;
}

header {
  /* Вертикальная тень справа в меню */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: normal;
  z-index: 10;
}
header img {
  width: 60px;
  /* filter dimgray;  #696969 */
  filter: invert(43%) sepia(10%) saturate(26%) hue-rotate(328deg) brightness(89%) contrast(83%);
}
header a img {
  /* https://codepen.io/sosuke/pen/Pjoqqp - CSS filter generator to convert from black to target hex color */
  /* filter-white */
  /* filter: invert(100%) sepia(12%) saturate(2%) hue-rotate(324deg) brightness(104%) contrast(101%);
  -webkit-filter: invert(100%) sepia(12%) saturate(2%) hue-rotate(324deg) brightness(104%) contrast(101%); */
  /* filter #444 */
  /* filter: invert(24%) sepia(2%) saturate(800%) hue-rotate(56deg) brightness(98%) contrast(86%); */
  /*<!-- #21759b - Wordpress -->*/
  filter: invert(38%) sepia(85%) saturate(425%) hue-rotate(153deg) brightness(86%) contrast(91%);
  /* transition: filter 0.3s ease-in-out; */
  transition: filter 0.6s ease-in-out;
}
header a:hover img {
  /* filter-red - #c0936e */
}

.header a {
  color: var(--color-wordpress);
}

.header a:hover {
  color: var(--color-light);
}

.header .header-top {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
}

.header .header-top .button a {
  color: var(--color-wordpress);
}

.header .header-top .button a:hover {
  color: var(--color-light);
}

.contact {
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.contact a img {
  /*<!-- #21759b - Wordpress -->*/
  filter: invert(38%) sepia(85%) saturate(425%) hue-rotate(153deg) brightness(86%) contrast(91%);
  /* transition: filter 0.3s ease-in-out; */
  transition: filter 0.6s ease-in-out;
}
.contact img {
  width: 60px;
  /* filter dimgray;  #696969 */
  filter: invert(43%) sepia(10%) saturate(26%) hue-rotate(328deg) brightness(89%) contrast(83%);
}
.contact img {
  height: 46px;
  width: auto;
}

.primary-menu li {
  padding: 10px 20px;
  position: relative;
  border: 1px solid transparent;
}
.primary-menu ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}
.primary-menu li:hover > ul {
  display: flex;
  flex-flow: column nowrap;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  border: 1px solid var(--color-accent);
  background-color: var(--color-basic);
}
.primary-menu ul ul {
  position: absolute;
  display: none;
}
.primary-menu li:hover {
  background-color: var(--color-extra);
  background-color: var(--color-font-accent);
  color: var(--color-basic);
  border: 1px solid var(--color-accent-dark);
}
.primary-menu {
  /* Level 3 */
  /* Меню 3го уровня в любой колонке откроется слева от столбца 2го уровня */
}
.primary-menu ul ul ul {
  position: absolute;
  top: 0;
  left: 100%;
}
.scroll-up {
  text-align: center;
  display: inline-block;
  padding: 7px 10px;
  font-size: 14px;
  line-height: 17px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 3px;
  bottom: 30px;
  transition: bottom 2s;
  position: fixed;
  right: 30px;
  bottom: -500px;
  cursor: pointer;
  z-index: 10;
}

.scroll-up:hover {
  background: #C0936E;
  border: 1px solid white;
}

.scroll-up.active {
  bottom: 30px;
}

.scroll-up::before {
  content: "";
  border: 8px solid transparent;
  border-bottom: 10px solid white;
  display: block;
  width: 0px;
  margin: 4px auto;
  margin-top: -6px;
}

.cookie-accept-warning {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 900px;
  max-width: 90%;
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
.cookie-accept-warning p {
  font-size: 0.9rem;
  text-align: left;
  color: var(--basic-color-text-dark);
}
.cookie-accept-warning .cookie-accept {
  border-radius: 5px !important;
  padding: 0.7rem;
  font-size: 1.2rem;
}

.cookie-accept-warning-position {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.pagination {
  margin-block-start: 1.5em;
  margin-block-end: 1em;
}
.pagination .current, .pagination .inactive {
  margin: 0.2em;
  padding: 0.3em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 3px;
  border: 1px solid;
}
.pagination .current {
  font-weight: bold;
}

.breadcrumbs {
  background-color: var(--color-extra);
  padding: 20px;
}
.breadcrumbs .breadcrumbs__current {
  font-weight: bold;
}

footer {
  background-color: var(--color-extra);
  margin-top: 2rem;
  padding: 20px;
}
footer .last-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* align-items: flex-end; */
}
footer .last-row .vahro {
  font-size: small;
}
footer .last-row .policy {
  display: flex;
  flex-direction: column;
  font-size: small;
}
footer .last-row .policy a {
  margin-bottom: 0.5rem;
}

* {
  /* распространяется на все элементы */
  box-sizing: border-box;
  /* border: 1px solid black; */
}

html, body {
  background-color: var(--color-basic);
  color: var(--color-font-basic);
  height: 100%;
  margin: 0;
}

body {
  font-family: "Times New Roman", Georgia, "Verdana", "Arial", sans-serif;
  font-size: 1.5rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-left: calc(50% - var(--half));
  padding-right: calc(50% - var(--half));
}

h1 {
  margin: 0;
  font-size: 1.75rem;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  color: var(--color-wordpress);
  text-decoration: none;
}

a:hover {
  color: var(--color-font-accent);
}

.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.main-content h1 {
  margin-top: 1rem;
}
.main-content .date {
  font-size: 0.95rem;
}
.main-content .wp-content {
  padding-top: 1rem;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.main-content .wp-content h1 {
  margin: 0;
}
.main-content .wp-content p {
  margin-top: 1rem;
}
.main-content .wp-content .question {
  color: var(--color-accent-dark);
}
.main-content .wp-content .question::before {
  content: "???";
  font-size: 3rem;
}

main {
  display: flex;
  flex-direction: column;
  width: calc(var(--half) * 2);
  flex-grow: 1;
}
main article {
  margin-top: 2rem;
  padding: 1rem;
  border-bottom: solid var(--color-accent-dark);
  border-left: solid var(--color-accent-dark);
  border-radius: 10px;
}
main article h3 {
  margin: 0;
}

.order-site-form-fields {
  display: flex;
  flex-direction: row;
  flex-direction: column;
  flex-wrap: wrap;
}

.order-site-half-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fieldset {
  margin-bottom: 1rem;
  padding: 0;
  padding: 2%;
  border-radius: 9px;
  border: 3px solid;
}
.fieldset textarea,
.fieldset input {
  width: 99%;
  font-size: inherit;
  border: 0;
}
.fieldset p {
  font-size: 1.1rem;
  margin: 0;
}

.fieldset textarea:focus, .fieldset input:focus {
  border: 0;
  outline: 0;
  background-color: antiquewhite;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #C0936E;
  -webkit-text-fill-color: #312820;
  -webkit-box-shadow: 0 0 0px 1000px #C0936E inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.wpcf7 input[type=submit]:focus {
  cursor: pointer;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #312820;
  color: #312820;
}

.wpcf7-form-control:focus + .wpcf7-not-valid-tip {
  display: none;
}

legend {
  font-size: smaller;
  display: block;
  padding-inline-start: 2px;
  padding-inline-end: 2px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  -o-border-image: initial;
     border-image: initial;
}

.send-order-button {
  text-align: center;
  margin: 1rem auto 0;
}
.send-order-button .custom-submit {
  margin: 20px auto 0;
  width: 100%;
  font-size: 2rem;
}

.acceptance {
  text-align: left;
  font-size: small;
}
.acceptance a {
  font-weight: bolder;
}/*# sourceMappingURL=vahro.css.map */