body {
  color: #563232;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  zoom: 1.5;
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 1000px) {
  body {
    zoom: 1;
  }
}

h2 {
  text-align: center;
  font-size: 24px;
}

form input{
  border: 1px solid #563232;
  max-width: 192px;
  width: 100%;
  height: 30px;
  border-radius: 2px;
  outline: none;
  font-size: 16px;
  min-height: 30px;
  padding-left: 20px;
  box-sizing: border-box;
}

a {
    color: #563232;
    text-decoration: none;
}

.__flowers_dark {
  width: 100%;
  height: 22px;
  background-image: url(../img/flower_dark.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.__flowers_light {
  width: 100%;
  height: 22px;
  background-image: url(../img/flower_light.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.__button {
  color: #ffffff;
  background-color: #563232;
  padding: 4px 0 6px;
  border-radius: 2px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  max-width: 205px;
  border: 0px;
  display: block;
}

form .__button, .animated-button {
  transition: all 1s ease-in-out;
}

form .__button:hover, .animated-button:hover {
  animation: bouncing-button 1s ease-in-out;
}

@keyframes bouncing-button {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.07);
  }

  40% {
    transform: scale(1);
  }

  60% {
    transform: scale(1.07);
  }

  80% {
    transform: scale(1);
  }
}

.__message {
  display: none;
  position: fixed;
  width: 100%;
  padding: 8px;
  height: auto;
  text-align: center;
  transition: height 2s;
  color: #ffffff;
}
.__message.success{
  display: block;
  background-color: #5fa6b7;
}
.__message.warn{
  display: block;
  background-color: #cf2727;
}
.__button.button {
    cursor: pointer;
}

.g-recaptcha {
    display: none;
	margin-top: 20px;
}

@media (max-width: 600px) {
  h2 {
    font-size: 20px;
  }
}

.beauty-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 24rem;
  height: auto;
  text-align: left;
  margin-top: 10px;
  max-width: 100%;
}

.beauty-button .circle {
  transition: all 0.45s cubic-bezier(0.65,0,.076,1);
  position: relative;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #563232;
  border-radius: 1.625rem;
}

.beauty-button .circle .icon {
  transition: all 0.45s cubic-bezier(0.65,0,.076,1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.beauty-button .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65,0,.076,1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.beauty-button .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.beauty-button .button-text {
  transition: all 0.45s cubic-bezier(0.65,0,.076,1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0;
  margin: 0 0 0 2.2rem;
  color: #563232;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.beauty-button:hover .circle {
  width: 100%;
}

.beauty-button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.beauty-button:hover .button-text {
  color: #fff;
}

@media (max-width: 600px) {
  .beauty-button .circle {
    width: 100%;
  }

  .beauty-button .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
  }

  .beauty-button .button-text {
    color: #fff;
  }

  .beauty-button .button-text {
    padding: 1rem 0;
  }
}

@media (max-width: 390px) {
  .beauty-button {
    font-size: 13.5px;
  }
}

@media (max-width: 330px) {
  .beauty-button {
    font-size: 12.5px;
  }
}

.tablebodytext {
  display: none !important;
}

body .calc-pd__section-name,
body .calc-pd__select,
body .calc-pd__select-option,
body .calc-pd form input,
body .calc-pd form input::placeholder,
body .field__error,
body .checkbox-rui__label {
	font-size: 12px;
}

body .calc-pd form input {
	max-width: none;
	border: 1px solid #acacac;
	border-radius: 0;
}

.checkbox-rui {
	width: 50%;
	order: 1;
	padding-top: 20px;
}

.checkbox-rui__input {
	height: auto !important;
	width: auto;
	max-width: none !important;
	min-height: initial;
}

body .calc-pd__select,
body .calc-pd form input {
	height: 35px;
}

body .calc-pd__footer-total {
	font-size: 17px;
}

body .calc-pd__order {
	height: 43px;
	font-size: 13px;
}

body .calc-pd__footer-action {
	width: 25%;
}

.icon {
    position: relative;
    display: inline-block;
    fill: currentColor;
    width: 100%;
    height: 100%;
    letter-spacing: 0;
    line-height: 1;
    display: flex;
}

body .calc-pd__select-icon {
	width: 20px;
	height: 20px;
	top: 8px;
	right: 12px;
	display: flex;
}

body .calc-pd__select-btn {
	width: 25px;
	height: 25px;
	display: flex;
}

body .calc-pd {
	overflow: hidden;
	padding: 0px 15px;
	width: 100%;
	box-sizing: border-box;
}

body .calc-pd__input {
	padding-right: 40px;
}

@media only screen and (max-width: 1024px) {
  .checkbox-rui {
  	width: 100%;
  }
}