.button {
  display: block;
  font-size: 25px;
  font-weight: 400;
  line-height: 28px;
  fill: #fff;
  color: #fff;
  border-radius: 50px 50px 50px 50px;
  padding: 22px 40px 22px 40px;
  border: 3px solid #fff;
  -webkit-transition: border 0.3s ease 0s, color 0.3s ease 0s;
  transition: border 0.3s ease 0s, color 0.3s ease 0s;
}
.button._active {
  background-color: #fff;
  color: #0a032b;
}
.button._active:visited {
  color: #0a032b;
}
.button:hover {
  border: 3px solid #fa6120;
  color: #fa6120;
}
.button:hover:visited {
  color: #fa6120;
}
.button:visited {
  color: #fff;
}

html .input {
  background-color: #f2f2f2;
  border-radius: 50px;
  font-family: "Open Sans", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 6px 30px;
  min-height: 68px;
  width: 100%;
  border: 2px solid #f2f2f2;
  -webkit-transition: border 0.3s ease 0s;
  transition: border 0.3s ease 0s;
}
html .input:focus {
  border: 2px solid #fa6120;
}

html .select {
  position: relative;
  z-index: 1;
}
html .select__element {
  background-color: #f2f2f2;
  border-radius: 50px;
  font-family: "Open Sans", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 6px 30px;
  min-height: 68px;
  width: 100%;
  border: 2px solid #f2f2f2;
  -webkit-transition: border 0.3s ease 0s;
  transition: border 0.3s ease 0s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html .select__element:focus {
  border: 2px solid #fa6120;
}
html .select__element:focus + .select__arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  color: #fa6120;
}
html .select__arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  color: #0a032b;
  font-size: 20px;
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transition: color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, color 0.3s ease 0s;
  transition: transform 0.3s ease 0s, color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.spinner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(82, 0, 255, 0) 0deg, #fa6120 360deg);
  -webkit-animation: spin 2s infinite linear;
          animation: spin 2s infinite linear;
}
.spinner::before {
  content: "";
  border-radius: 50%;
  width: 80%;
  height: 80%;
  background-color: #fff;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.error__icon {
  height: 20px;
  width: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  margin-right: 10px;
}
.error__icon span {
  display: block;
  width: 20px;
  height: 3px;
  background-color: red;
  position: absolute;
  top: 50%;
}
.error__icon span:first-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.error__icon span:last-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.error__text {
  font-size: 20px;
}

.toast {
  position: fixed;
  bottom: 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translateY(50px) scale(0.7);
      -ms-transform: translateY(50px) scale(0.7);
          transform: translateY(50px) scale(0.7);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.toast.visible {
  opacity: 1;
  -webkit-transform: translateY(0px) scale(1);
      -ms-transform: translateY(0px) scale(1);
          transform: translateY(0px) scale(1);
}
.toast__hint {
  padding: 20px;
  border-radius: 50px;
  background-color: #585858;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
}