@charset "UTF-8";
.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;
  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;
}

:root {
  --half: 207px;
  --color-basic: Ivory; /* #fffff0 */
  --color-font-basic: dimgray; /* #696969 */
  --color-font-basic-light: Ivory; /* #696969 */
  --color-font-accent: #ae0001;
  --color-extra: lightgoldenrodyellow;
  --color-extra-dark: #005a87;
  --color-citizen: #9b51e0;
  --color-business: #f78da7;
}

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

html, body {
  background-color: var(--color-basic);
  color: var(--color-font-basic);
  margin: 0;
  margin-right: auto;
  margin-left: auto;
}

body {
  width: calc(var(--half) * 2);
  background-color: var(--color-extra);
}

h1 {
  margin: 0;
}

header {
  padding: 1rem;
}

section {
  padding: 1rem;
}

.subheading {
  padding: 1rem;
  padding-bottom: 0.5rem;
}

.nopadding {
  padding: 0;
}

.main-foto {
  padding: 0;
  height: 486px;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.link {
  width: 50%;
  padding: 0.5rem;
  text-align: center;
}
.link a {
  text-decoration: none;
  color: var(--color-basic);
  font-weight: bold;
}

li {
  margin-bottom: 0.5rem;
}

.citizen {
  color: var(--color-font-basic-light);
  background-color: var(--color-citizen);
}

.business {
  color: var(--color-font-basic-light);
  background-color: var(--color-business);
}

.extra-dark {
  color: var(--color-font-basic-light);
  background-color: var(--color-extra-dark);
}

.font-accent {
  color: var(--color-font-accent);
}

.policy a {
  display: block;
  margin-bottom: 0.5rem;
  color: lightseagreen;
}

.vahro {
  font-size: small;
}

.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;
  color: turquoise;
  color: lightseagreen;
}/*# sourceMappingURL=mobile-first.css.map */