/* Responsive utilities */
.width-full {
  width: 100%;
}
/*============================ Form-input ====================================*/
.al-form-input {
  font-size: 1rem;
  line-height: 1.5;
  height: 2.26785rem;
  min-height: 2.14285rem;
  margin: 0;
  padding: 0.32143rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  -webkit-box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 0px 0px 0px transparent;
          box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 0px 0px 0px transparent;
  background-color: #fff;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: #55595c;
  font-family: inherit;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: none;
}

.al-form-input::-ms-clear {
  display: none;
}

.al-form-input::-webkit-clear-button {
  pointer-events: auto;
  display: none;
}

.al-form-input:before {
  line-height: 2.14285rem;
}

.al-form-input:hover, .al-form-input.hover {
  color: #55595c;
}

.al-form-input:focus, .al-form-input.focus {
  border-color: #66afe9;
  -webkit-box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 1px 3px 0px rgba(102, 175, 233, 0.6);
          box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 1px 3px 0px rgba(102, 175, 233, 0.6);
  background: #ebebeb;
}

.al-form-input.error {
  border-color: #d9534f;
  -webkit-box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 1px 3px 0px rgba(217, 83, 79, 0.6);
          box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 1px 3px 0px rgba(217, 83, 79, 0.6);
  background: rgba(217, 83, 79, 0.2);
}

.al-form-input:disabled, .al-form-input.disabled {
  border-color: #d8d8d8;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #eceeef;
  color: #55595c;
  cursor: not-allowed;
}

.al-form-input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.al-form-input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.al-form-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.al-form-input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

.al-form-input:placeholder {
  color: #999;
  opacity: 1;
}

.al-form-input--textarea {
  height: auto;
  vertical-align: top;
  resize: both;
  overflow: auto;
}

.al-form-input--textarea.no-resize {
  resize: none;
}

.al-form-input--textarea.resize-v {
  resize: vertical;
}

.al-form-input--textarea.resize-h {
  resize: horizontal;
}

.al-form-input--wrap, .al-form-input-wrap {
  height: auto !important;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  white-space: nowrap;
  table-layout: fixed;
}

.al-form-input--wrap > *, .al-form-input-wrap > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.al-form-input--wrap:before, .al-form-input-wrap:before {
  font-size: inherit;
  content: "\00A0";
  width: 0px;
  display: inline-block;
  vertical-align: baseline;
  text-indent: -1em;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 0px;
      -ms-flex: 0 0 0px;
          flex: 0 0 0px;
  overflow: hidden;
  background: red;
}

.ie9 .al-form-input--wrap, .ie10 .al-form-input--wrap, .ie9 .al-form-input-wrap, .ie10 .al-form-input-wrap {
  display: inline-table;
}

.ie9 .al-form-input--wrap:before, .ie10 .al-form-input--wrap:before, .ie9 .al-form-input-wrap:before, .ie10 .al-form-input-wrap:before {
  display: table-cell;
}

.al-form-input-wrap--base {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
              -ms-grid-row-align: baseline;
          align-items: baseline;
}

.al-form-input-wrap > .al-form-input {
  height: 100%;
  /*width: 100%;*/
  display: table-cell;
  vertical-align: top;
}

.al-form-input--date {
  min-width: 12ch;
}

.al-form-input--inline {
  width: auto;
  display: inline-block;
}

.al-form-input[orient="vertical"] {
  height: auto;
}

.al-form-input > .al-form-input, .al-form-input > .form-select, .al-form-input > .al-button {
  height: 100%;
  border: none;
  display: table-cell;
  vertical-align: top;
}

.al-form-input > .al-form-input {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.al-form-input > .ui-spinner {
  height: 100%;
}

.al-form-input::-ms-clear {
  display: none;
}

.al-form-input::-webkit-clear-button {
  pointer-events: auto;
  display: none;
}

.al-form-input[type="password"] {
  font-family: sans-serif;
}

.al-form-input[type="range"] {
  display: inline-block;
  -webkit-appearance: slider-horizontal;
}

.al-form-input[type="range"]::-webkit-slider-container {
  -webkit-appearance: slider-horizontal;
}

.al-form-input[type="range"]::-webkit-slider-runnable-track, .al-form-input[type="range"]::-ms-track {
  background: #0275d8;
  border: none;
  border-radius: 0.2rem;
}

.al-form-input[type="range"]::-webkit-slider-thumb, .al-form-input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #d9534f;
}

.al-form-input[type="range"]::-moz-range-track {
  inline-size: 100%;
  block-size: 10px;
  border: none;
  border-radius: 100% / 100%;
  background: red;
  box-sizing: inherit;
}

.al-form-input[type="range"]::-moz-range-progress {
  width: 6px;
  height: 6px;
  margin: 0 auto;
  border: 2px dotted blue;
  border-radius: 100%/100%;
  background: yellow;
  display: block !important;
  float: left !important;
  box-sizing: inherit;
}

.al-form-input[type="range"]::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 10px dashed green;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  background: none;
  box-sizing: inherit;
}

.al-form-input[type="range"]::-moz-range-thumb:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: yellow;
}

.al-form-input[type="range"]::-ms-ticks-after {
  background: red;
}

.al-form-input[type="range"]::-ms-ticks-before {
  background: blue;
}

.al-form-input[type="range"]::-ms-tooltip {
  background: yellow;
}

.al-form-input[type="range"]::-ms-fill-lower {
  background: #f0ad4e;
}

.al-form-input[type="range"]::-ms-fill-upper {
  background: #5cb85c;
}

.al-form-input[type="range"]:focus::-webkit-slider-runnable-track, .al-form-input[type="range"]:focus::-moz-range-track, .al-form-input[type="range"]:focus::-ms-track {
  background: #5bc0de;
}

.al-form-input[type="range"][orient="vertical"] {
  -webkit-appearance: slider-vertical;
  -webkit-writing-mode: bt-lr;
      -ms-writing-mode: bt-lr;
          writing-mode: bt-lr;
}

.al-form-input[type="range"][orient="vertical"]::-webkit-slider-container {
  -webkit-appearance: slider-vertical;
}

.al-form-input[type="range"][orient="vertical"]::-webkit-slider-runnable-track {
  -webkit-appearance: slidertrack-vertical;
}

.al-form-input[type="range"][orient="vertical"]::-webkit-slider-thumb {
  -webkit-appearance: sliderthumb-vertical;
}

.al-form-input[type="range"][orient="vertical"]::-moz-range-track {
  inline-size: 10px;
  block-size: 100%;
}

.al-form-input[type="range"][orient="vertical"]::-moz-range-thumb {
  transform: rotate(90deg);
}

.al-form-input[type="number"]::-moz-number-wrapper {
  background: red;
}

.al-form-input[type="number"]::-moz-number-text {
  background: green;
}

.al-form-input[type="number"]::-moz-number-spin-box {
  background: yellow;
}

.al-form-input[type="number"]::-moz-number-spin-up {
  background: blue;
}

.al-form-input[type="color"]::-moz-color-swatch {
  position: relative;
  top: 50%;
  border: 1px dotted yellow;
  border-radius: 5px;
  background-image: linear-gradient(to right, red, transparent, blue);
  box-sizing: border-box;
  vertical-align: top;
  transform: translateY(-50%);
}

.al-form-input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: searchfield-decoration;
}

.al-form-input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.al-form-input[type="search"]::-webkit-search-results-button {
  -webkit-appearance: none;
}

.al-form-input[orient="vertical"] {
  width: 2.26785rem;
  padding: 0.75rem 0.32143rem;
}

.al-form-input-wrap:before {
  font-size: 1rem;
  line-height: 2.26785rem;
}

.al-form-input--sm {
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: 1.625rem;
  height: 1.75rem;
  padding: 0.27232rem 0.75rem;
  border-radius: 0.2rem;
}

.al-form-input--sm:before {
  line-height: 1.625rem;
}

.al-form-input--sm[orient="vertical"] {
  width: 1.75rem;
  padding: 0.75rem 0.27232rem;
}

.al-form-input-wrap--sm:before {
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.al-form-input--lg {
  font-size: 1.25rem;
  line-height: 1.33333;
  min-height: 2.57143rem;
  height: 2.69643rem;
  padding: 0.45238rem 1.25rem;
  border-radius: 0.3rem;
}

.al-form-input--lg:before {
  line-height: 2.57143rem;
}

.al-form-input--lg[orient="vertical"] {
  width: 2.69643rem;
  padding: 1.25rem 0.45238rem;
}

.al-form-input-wrap--lg:before {
  font-size: 1.25rem;
  line-height: 2.69643rem;
}

.al-form-input--textarea {
  height: auto;
}

.al-form-input--wrap {
  padding: 0;
}

.al-form-input[orient="vertical"] {
  height: auto;
}

/*============================!Form-input!====================================*/
/*============================ Form-button ===================================*/
.al-button {
  position: relative;
  font-family: inherit;
  max-width: 100%;
  margin: 0;
  padding: 0;
  -webkit-background-origin: border-box;
          background-origin: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  text-transform: none;
  text-decoration: none !important;
  outline: none !important;
  text-shadow: none;
  white-space: nowrap;
  overflow: visible;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  line-height: 34px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #f0ad4e;
  border-radius: 5px;
  background: #f0ad4e;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: #fff;
}

.al-button::-moz-focus-inner { border: 0; padding: 0; }
.al-button:focus, .al-button.focus, .al-button:active:focus, .al-button:active.focus, .al-button.active:focus, .al-button.active.focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; }
.al-button:focus { text-decoration: none; }
@media (hover: hover) {
  .al-button:hover { text-decoration: none; }
}
.al-button.focus { text-decoration: none; }
.al-button:after { position: relative; content: "\00A0"; width: 0; display: inline-block; vertical-align: baseline; background: url("data:image/gif;base64,R0lGODlhAQABAJH/AP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAEAAAICVAEAOw=="); text-indent: -4px; }
.al-button__inner { border-radius: inherit; display: inline-table; vertical-align: top; white-space: nowrap; pointer-events: none; }
.al-button__inner:before { position: relative; content: "\00A0"; font-size: 0; width: 0; display: inline-block; vertical-align: top; background: url("data:image/gif;base64,R0lGODlhAQABAJH/AP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAEAAAICVAEAOw=="); text-indent: -4px; }
.al-button__text { position: relative; line-height: 1; display: table-cell; vertical-align: middle; white-space: normal; pointer-events: none; cursor: pointer; }
.al-button__input { position: absolute; font-size: 500px; top: -150px; right: -2px; height: 300px; opacity: 0; cursor: pointer; z-index: 10; }
.al-button__input-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.al-button--block { width: 100%; width: -moz-available; display: block; }
.al-button:disabled, .al-button.disables { border-color: #818a91; -webkit-box-shadow: 0 0 7px 0 rgba(129, 138, 145, 0.5); box-shadow: 0 0 7px 0 rgba(129, 138, 145, 0.5); background: rgba(129, 138, 145, 0.2); cursor: not-allowed; color: #818a91; }
a.al-button.disabled, fieldset[disabled] a.al-button { pointer-events: none; }
.ie9 .al-button { -webkit-filter: none; filter: none; }
.al-button:hover, .link:hover .al-button { color: #fff; }

.al-button .icon {
  position: absolute;
  top: 0;
  left: 0;
  line-height: inherit;
  width: 70px;
  min-height: inherit;
  padding: 0 10px;
  float: left;
}

.icon ~ .al-button__inner {
  padding-left: 58px;
}

.al-button .link {
  color: inherit;
}

.al-button--sm {
  font-size: 0.875rem;
  line-height: 1.85714rem;
  min-height: 1.85714rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 0.2rem;
}

.al-button--sm .icon {
  margin-left: -0.75rem;
}

.icon ~ .al-button--sm__inner {
  padding-left: 58px;
}

.al-button--lg {
  font-size: 1.25rem;
  line-height: 2.57143rem;
  min-height: 2.57143rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 0.3rem;
}

.al-button--lg .icon {
  margin-left: -1.25rem;
}

.icon ~ .al-button--lg__inner {
  padding-left: 50px;
}

.al-button--green {
  border-color: #617f42;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
  background: #7ca158 linear-gradient(to bottom, #91b56e, #7ca158);
  text-shadow: 0px 1px 2px #486a3a;
}

.al-button--primary {
  border-color: #0093dd;
  background: #0093dd;
}

.al-button--success {
  border-color: #5cb85c;
  background: #5cb85c;
}

.al-button--info {
  border-color: #5bc0de;
  background: #5bc0de;
}

.al-button--warning {
  border-color: #f0ad4e;
  background: #f0ad4e;
}

.al-button--danger {
  border-color: #d9534f;
  background: #d9534f;
}

.al-button--color {
  border: 0px solid transparent;
  padding: 0.625rem 1.875rem;
  background: -webkit-linear-gradient(135deg, #007CFF, #FF3052, #FFCB00);
  background: -o-linear-gradient(135deg, #007CFF, #FF3052, #FFCB00);
  background: linear-gradient(-45deg, #007CFF, #FF3052, #FFCB00);
  -webkit-filter: hue-rotate(0deg);
          filter: hue-rotate(0deg);
  -webkit-transition: -webkit-filter 4s;
  transition: -webkit-filter 4s;
  -o-transition: filter 4s;
  transition: filter 4s;
  transition: filter 4s, -webkit-filter 4s;
}

.al-button--color:before {
  position: absolute;
  content: "";
  top: 0.625rem;
  right: 0.625rem;
  bottom: 0.625rem;
  left: 0.625rem;
  border-radius: inherit;
  background: -webkit-linear-gradient(45deg, #007CFF, #FF3052, #FFCB00);
  background: -o-linear-gradient(45deg, #007CFF, #FF3052, #FFCB00);
  background: linear-gradient(45deg, #007CFF, #FF3052, #FFCB00);
  -webkit-filter: inherit;
          filter: inherit;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.al-button--color:hover {
  -webkit-filter: hue-rotate(360deg);
          filter: hue-rotate(360deg);
}

.al-button--burger { width: 40px; padding: 0; border-color: transparent; background: #0093dd; }
.al-button--burger:hover { -webkit-box-shadow: 0 0 5px 0 #0093dd; box-shadow: 0 0 5px 0 #0093dd;}
.al-button--burger:before { position: absolute; content: ""; top: 50%; left: 50%; width: 70%; margin-top: -1px; margin-left: -35%; border-top: 1px solid; border-bottom: 1px solid; -webkit-box-shadow: 0 -7px 0 0px, 0 7px 0 0px; box-shadow: 0 -7px 0 0px, 0 7px 0 0px; display: inline-block; vertical-align: top; }

.al-button-upload__input {
  position: absolute;
  font-size: 500px;
  top: -150px;
  right: -2px;
  height: 300px;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.al-button-upload__input-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*============================!Form-button!===================================*/
/*============================ Checkbox & Radio ==============================*/
.check-list {
  font-size: 0;
  line-height: 0;
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: table;
}

.check-list__item {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.check-list__item:last-child {
  margin-bottom: 0;
}

.check-list__cell {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0;
  display: inline-block;
  margin-right: 30px;
}

.check-box {
  position: relative;
  font-family: inherit;
  display: inline-table;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

.check-box.disabled {
  cursor: not-allowed;
}

.check-box, .check-box:hover {
  text-decoration: none;
}

.check-box:after {
  position: relative;
  content: "\00A0";
  width: 0;
  display: inline-block;
}

.check-box__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  border: none !important;
  background: none !important;
  opacity: 0;
  -webkit-appearance: listitem;
     -moz-appearance: listitem;
          appearance: listitem;
  overflow: hidden;
  cursor: inherit;
}

.check-box__input:disabled, .check-box__input[disabled] {
  cursor: not-allowed;
}

.check-box__input::-ms-check {
  display: none;
}

.check-box__text {
  display: table-cell;
  white-space: normal;
  cursor: inherit;
}

.check-box__icon {
  position: relative;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  line-height: inherit;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.check-box__icon:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.check-box__icon:after {
  position: absolute;
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
          background-size: contain;
}

.check-box__icon {
  top: 2px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border: 1px solid #ccc;
  border-radius: 1px;
  background-color: #fff;
  color: #55595c;
}

.check-box__icon:before {
  border: 1px dashed;
  border-radius: inherit;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -o-transition: all 0.35s ease-in-out 0s;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  opacity: 0;
}

.check-box__icon:after {
  top: 50%;
  left: 50%;
  border: 4px solid;
  border-radius: inherit;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
  opacity: 0;
}

.check-box__image {
  top: 2px;
  width: 16px;
  height: 15px;
  margin-right: 10px;
  border: 1px solid #a1bbd7;
  border-radius: 1px;
  background-color: #fff;
}

.check-box__image-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.check-box:hover .check-box__icon:after, .select-block__list-link:hover .check-box__icon:after {
  opacity: 0.4;
}

.check-box:hover .link, .check-box .select-block__list-link:hover .link {
  color: #014c8c;
  text-decoration: none;
}

.check-box__input:focus ~ .check-box__icon:before, .check-box.focus .check-box__icon:before {
  -webkit-transform: scale(2) rotate(180deg);
      -ms-transform: scale(2) rotate(180deg);
       -o-transform: scale(2) rotate(180deg);
          transform: scale(2) rotate(180deg);
  opacity: 1;
}

.check-box__input:focus ~ .check-box__icon:after, .check-box.focus .check-box__icon:after {
  opacity: 0.4;
}

.check-box__input.error ~ .check-box__icon, .check-box__input.error ~ .check-box__image {
  border-color: #d9534f;
}

.check-box__input:checked ~ .check-box__icon:after, .check-box.checked .check-box__icon:after, .select-block__list-link.selected .check-box__icon:after {
  opacity: 1;
}

.check-box__input:checked ~ .link, .check-box.checked .link {
  text-decoration: none;
  color: #014c8c;
}

.check-box.disabled, .check-box:disabled {
  cursor: not-allowed;
  color: #55595c;
}

.check-box__input:disabled ~ .check-box__icon, .check-box.disabled .check-box__icon {
  border-color: #d8d8d8;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #eceeef;
  cursor: not-allowed;
}

.radio-box {
  position: relative;
  font-family: inherit;
  display: inline-table;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

.radio-box.disabled {
  cursor: not-allowed;
}

.radio-box, .radio-box:hover {
  text-decoration: none;
}

.radio-box:after {
  position: relative;
  content: "\00A0";
  width: 0;
  display: inline-block;
}

.radio-box__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  border: none !important;
  background: none !important;
  opacity: 0;
  -webkit-appearance: listitem;
     -moz-appearance: listitem;
          appearance: listitem;
  overflow: hidden;
  cursor: inherit;
}

.radio-box__input:disabled, .radio-box__input[disabled] {
  cursor: not-allowed;
}

.radio-box__input::-ms-check {
  display: none;
}

.radio-box__text {
  display: table-cell;
  white-space: normal;
  cursor: inherit;
}

.radio-box__icon {
  position: relative;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  line-height: inherit;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.radio-box__icon:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.radio-box__icon:after {
  position: absolute;
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
          background-size: contain;
}

.radio-box__icon {
  top: 2px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #55595c;
}

.radio-box__icon:before {
  border: 1px dashed;
  border-radius: inherit;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -o-transition: all 0.35s ease-in-out 0s;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  opacity: 0;
}

.radio-box__icon:after {
  top: 50%;
  left: 50%;
  border: 4px solid;
  border-radius: inherit;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease-in-out 0s;
  -o-transition: all 0.35s ease-in-out 0s;
  transition: all 0.35s ease-in-out 0s;
  opacity: 0;
}

.radio-box:hover .radio-box__icon:after {
  opacity: 0.4;
}

.radio-box__input:focus ~ .radio-box__icon:before, .radio-box.focus .radio-box__icon:before {
  -webkit-transform: scale(2) rotate(180deg);
      -ms-transform: scale(2) rotate(180deg);
       -o-transform: scale(2) rotate(180deg);
          transform: scale(2) rotate(180deg);
  opacity: 1;
}

.radio-box__input:focus ~ .radio-box__icon:after, .radio-box.focus .radio-box__icon:after {
  opacity: 0.4;
}

.radio-box__input.error ~ .radio-box__icon {
  border-color: #d9534f;
}

.radio-box__input:checked ~ .radio-box__icon:after, .radio-box.checked .radio-box__icon:after {
  opacity: 1;
}

.radio-box.disabled, .radio-box:disabled {
  cursor: not-allowed;
  color: #55595c;
}

.radio-box__input:disabled ~ .radio-box__icon, .radio-box.disabled .radio-box__icon {
  border-color: #d8d8d8;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #eceeef;
  cursor: not-allowed;
}

/*============================!Checkbox & Radio!==============================*/
/*============================ Form-select ===================================*/
.form-select {
  position: relative;
  font-family: inherit;
  max-width: 100%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 2.14285rem;
  height: 2.26785rem;
  min-height: 2.14285rem;
  padding: 0 0.75rem;
  border: 0.0625rem solid #ccc;
  border-radius: 0.25rem;
  -webkit-box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 0px 0px 0px transparent;
          box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 0px 0px 0px transparent;
  background-color: #fff;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: #55595c;
}

.form-select--inline {
  width: auto;
  display: inline-block;
}

.form-select option {
  -webkit-padding-end: 0;
     -moz-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 0;
     -moz-padding-start: 0;
          padding-inline-start: 0;
  padding-top: 1px;
  padding-bottom: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-select option:empty {
  font-size: 0 !important;
  line-height: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  display: none !important;
  visibility: hidden !important;
}

.form-select[multiple] {
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.form-select option[data-title] {
  font-size: 0;
  line-height: 0;
  text-indent: -200%;
}

.form-select option[data-title]:before {
  content: attr(data-title);
  text-indent: 0;
  pointer-events: none;
}

.form-select::-ms-value {
  padding: 0 3px 0 3px;
  margin: 0;
}

.form-select--wrap, .form-select-wrap {
  height: auto !important;
  padding: 0 !important;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  white-space: nowrap;
  table-layout: fixed;
}

.form-select--wrap:before, .form-select-wrap:before {
  font-size: inherit;
  content: "\00A0";
  width: 0px;
  display: inline-block;
  vertical-align: baseline;
  text-indent: -1em;
  overflow: hidden;
}

.ie9 .form-select--wrap, .ie10 .form-select--wrap, .ie9 .form-select-wrap, .ie10 .form-select-wrap {
  display: inline-table;
}

.ie9 .form-select--wrap:before, .ie10 .form-select--wrap:before, .ie9 .form-select-wrap:before, .ie10 .form-select-wrap:before {
  display: table-cell;
}

.form-select-wrap > .form-select {
  height: 100%;
  display: table-cell;
  vertical-align: top;
}

.form-select > .form-select {
  height: 100%;
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: table-cell;
  vertical-align: top;
}

.form-select-wrap > .select-block {
  height: auto;
}

.form-select:before {
  line-height: 2.14285rem;
}

.form-select:focus {
  -webkit-box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 1px 3px 0px rgba(102, 175, 233, 0.6);
          box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.075), 0 1px 3px 0px rgba(102, 175, 233, 0.6);
  background: #ebebeb;
}

.form-select.error {
  border-color: #d9534f;
}

.form-select:disabled, .form-select.disabled {
  border-color: #d8d8d8;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #eceeef;
  color: #55595c;
  cursor: not-allowed;
}

.form-select option {
  height: 2.14285rem;
  padding: 0 0.75rem;
  -webkit-box-shadow: 1000px 0 0 0 rgba(0, 128, 0, 0) inset;
          box-shadow: 1000px 0 0 0 rgba(0, 128, 0, 0) inset;
  -webkit-transition: -webkit-box-shadow 0.35s ease 0s;
  transition: -webkit-box-shadow 0.35s ease 0s;
  -o-transition: box-shadow 0.35s ease 0s;
  transition: box-shadow 0.35s ease 0s;
  transition: box-shadow 0.35s ease 0s, -webkit-box-shadow 0.35s ease 0s;
}

.form-select option[data-title]:before {
  font-size: 1rem;
  line-height: 1.5;
}

.form-select option:hover {
  -webkit-box-shadow: 1000px 0 0 0 rgba(204, 204, 204, 0.3) inset;
          box-shadow: 1000px 0 0 0 rgba(204, 204, 204, 0.3) inset;
}

.form-select option:checked {
  -webkit-box-shadow: 1000px 0 0 0 #ccc inset;
          box-shadow: 1000px 0 0 0 #ccc inset;
}

.form-select option:checked, .form-select option:checked:before {
  color: #fff;
}

.form-select[multiple] option {
  padding-top: 0.32143rem;
  padding-bottom: 0.32143rem;
}

.select-block .form-select {
  padding-right: 30px;
}

.form-select-wrap:before {
  font-size: 1rem;
  line-height: 2.26785rem;
}

.form-select--sm {
  font-size: 0.875rem;
  line-height: 1.85714rem;
  height: 1.98214rem;
  min-height: 1.85714rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-width: 0.0625rem;
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 255, 0, 0.5);
          box-shadow: 0 0 5px 0 rgba(255, 255, 0, 0.5);
}

.form-select--sm:before {
  line-height: 1.85714rem;
}

.form-select--sm:hover {
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 255, 0, 0.7);
          box-shadow: 0 0 5px 0 rgba(255, 255, 0, 0.7);
}

.form-select--sm:focus {
  -webkit-box-shadow: 0 0 5px 0 blue;
          box-shadow: 0 0 5px 0 blue;
}

.form-select--sm.error {
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 0, 0, 0.7);
          box-shadow: 0 0 5px 0 rgba(255, 0, 0, 0.7);
}

.form-select--sm option {
  height: 1.85714rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  -webkit-box-shadow: 1000px 0 0 0 rgba(0, 0, 255, 0) inset;
          box-shadow: 1000px 0 0 0 rgba(0, 0, 255, 0) inset;
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
}

.form-select--sm option:hover {
  -webkit-box-shadow: 1000px 0 0 0 rgba(0, 0, 255, 0.3) inset;
          box-shadow: 1000px 0 0 0 rgba(0, 0, 255, 0.3) inset;
  color: #55595c;
}

.form-select--sm option:checked {
  -webkit-box-shadow: 1000px 0 0 0 rgba(0, 0, 255, 0.7) inset;
          box-shadow: 1000px 0 0 0 rgba(0, 0, 255, 0.7) inset;
}

.form-select--sm option:checked, .form-select--sm option:checked:before {
  color: #fff;
}

.form-select--sm option[data-title]:before {
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-select--sm[multiple] option {
  padding-top: 0.27232rem;
  padding-bottom: 0.27232rem;
}

.select-block .form-select--sm {
  padding-right: 30px;
}

.form-select-wrap--sm:before {
  font-size: 0.875rem;
  line-height: 1.85714rem;
}

.form-select--lg {
  font-size: 1.25rem;
  line-height: 2.57143rem;
  height: 2.69643rem;
  min-height: 2.57143rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-width: 0.0625rem;
  border-radius: 0.3rem;
}

.form-select--lg:before {
  line-height: 2.57143rem;
}

.form-select--lg option {
  height: 2.57143rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
}

.form-select--lg option[data-title]:before {
  font-size: 1.25rem;
  line-height: 1.5;
}

.form-select--lg[multiple] option {
  padding-top: 0.45238rem;
  padding-bottom: 0.45238rem;
}

.select-block .form-select--lg {
  padding-right: 30px;
}

.form-select-wrap--lg:before {
  font-size: 1.25rem;
  line-height: 2.57143rem;
}

/*Safari and Chrome*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  body:first-of-type .form-select {
    line-height: 1.89285rem;
  }
  body:first-of-type .form-select--sm {
    line-height: 1.60714rem;
  }
  body:first-of-type .form-select--lg {
    line-height: 2.32143rem;
  }
}

/*============================!Form-select!===================================*/
/*============================ Form-grid =====================================*/
.form-help {
  font-size: 0.75rem;
}

/*-----input-group--------------------------------*/
.input-group {
  position: static;
  margin-bottom: 1rem;
  border-collapse: separate;
  border-radius: 0.25rem;
  display: table;
  white-space: nowrap;
}

.input-group:last-child {
  margin-bottom: 0;
}

.input-group:before {
  content: none;
}

.input-group--center {
  margin-left: auto;
  margin-right: auto;
}

.input-group--right {
  margin-left: auto;
}

.input-group--inline {
  display: inline-table;
}

.input-group--sm {
  border-radius: 0.2rem;
}

.input-group--lg {
  border-radius: 0.3rem;
}

.input-group__cell {
  position: static;
  min-height: inherit;
  margin-bottom: 0;
  border-radius: inherit;
  float: none;
  display: table-cell;
  white-space: normal;
}

.input-group__cell:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group__cell:last-child:not(:first-child), .input-group__cell.dropdown__button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group__cell:not(:first-child):not(:last-child):not(.dropdown__button) {
  border-radius: 0;
}

.input-group__cell--addon {
  line-height: 1;
  width: 1px;
  padding: 0.32143rem 5px;
  white-space: nowrap;
  float: none;
}

.input-group__cell--btn {
  width: 1px;
  white-space: nowrap;
  float: none;
}

.input-group__cell--no-pdg {
  padding-left: 0;
  padding-right: 0;
}

.input-group__item {
  min-width: 100%;
  min-height: inherit;
  border-radius: inherit;
}

.input-group--vertical .input-group__cell {
  width: auto;
  display: table-row;
}

.input-group--vertical .input-group__cell:first-child:not(:last-child) {
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group--vertical .input-group__cell:last-child:not(:first-child), .input-group--vertical .input-group__cell.dropdown__button:not(:first-child) {
  border-radius: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.input-group--vertical .input-group__cell:not(:first-child):not(:last-child):not(.dropdown__button) {
  border-radius: 0;
}

/*-----grid-table---------------------------------*/
.grid-table {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  list-style: none;
  display: table;
}

.grid-table:last-child {
  margin-bottom: 0;
}

.grid-table--inline {
  display: inline-table;
}

.grid-table--full {
  width: 100%;
  table-layout: fixed;
}

.grid-table__row {
  padding-top: 10px;
  display: table-row;
}

.grid-table__row:first-child {
  padding-top: 0;
}

.grid-table__cell {
  padding-top: inherit;
  padding-left: 15px;
  display: table-cell;
  vertical-align: baseline;
  float: none;
}

.grid-table__cell:first-child {
  padding-left: 0;
}

.grid-table__cell-text {
  margin-top: -3px;
  margin-bottom: -3px;
  display: inline-block;
  vertical-align: middle;
}

.grid-table__cell--middle {
  vertical-align: middle;
}

.grid-table__cell--top {
  vertical-align: top;
}

.grid-table__cell--bottom {
  vertical-align: bottom;
}

/*-----form-group---------------------------------*/
.form-group {
  margin-bottom: 12px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group__title {
  margin-bottom: 3px;
}

/*-----fieldset--------------------------------*/
.fieldset {
  min-width: 0;
  min-width: -webkit-min-content;
  max-width: none;
  -webkit-max-content: none;
  -webkit-min-content: 0;
  margin: 0 0 1rem 0;
  padding: 1.25rem;
  border: none;
  border-radius: 0.25rem;
  display: block;
  vertical-align: top;
}

.fieldset:last-child {
  margin-bottom: 0;
}

.fieldset--has-legend {
  padding-top: 10px;
}

.fieldset--bordered {
  border: 1px solid #0389dd;
}

@-moz-document url-prefix() {
  .fieldset {
    display: table-cell;
  }
}

.fieldset__legend {
  font: inherit;
  width: auto;
  margin: 0;
  padding-right: 10px;
  border: none;
}

.fieldset__legend[align="left"] {
  margin-right: auto;
  margin-left: 0;
  padding-right: 10px;
}

.fieldset__legend[align="center"] {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.fieldset__legend[align="right"] {
  margin-right: 0;
  margin-left: auto;
  padding-left: 10px;
}

/*-----input-validate------------------------------*/
.marker-error {
  position: absolute;
  font-style: normal;
  line-height: 2.14285rem;
  top: 0.0625rem;
  right: 0.0625rem;
  text-align: center;
  display: none;
  cursor: pointer;
}

.marker-error__head {
  position: relative;
  width: 29px;
  height: 2.14285rem;
  border: 1px solid transparent;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  background: #fff;
  -webkit-background-clip: border-box;
          background-clip: border-box;
  display: block;
  z-index: 10;
}

.marker-error__icon {
  position: relative;
  font-style: normal;
  font-weight: bold;
  line-height: 18px;
  width: 20px;
  height: 20px;
  border: 1px solid #d9534f;
  border-radius: 50%;
  display: inline-block;
  color: #d9534f;
  z-index: 10;
}

.marker-error__icon:before {
  content: "\0021";
}

.marker-error__tooltip, .marker-error[data-title]:before {
  position: absolute;
  font-size: 1rem;
  line-height: 30px;
  bottom: 100%;
  right: 50%;
  margin: 0 0 1px 0;
  padding: 0 10px;
  border-radius: 0.25rem;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
  -webkit-transform: translate(50%, 100%);
      -ms-transform: translate(50%, 100%);
       -o-transform: translate(50%, 100%);
          transform: translate(50%, 100%);
  opacity: 0;
  background: #303030;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  color: #fff;
  z-index: 11;
}

.marker-error[data-title]:before {
  content: attr(data-title);
  min-width: 130px;
  margin: 0 -65px 10px 0;
}

.marker-error__tooltip:after, .marker-error[data-title]:after {
  position: absolute;
  content: "";
  bottom: 100%;
  right: 50%;
  margin: 0 0 4px -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #303030;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
  -webkit-transform: translate(50%, 100%);
      -ms-transform: translate(50%, 100%);
       -o-transform: translate(50%, 100%);
          transform: translate(50%, 100%);
  opacity: 0;
  pointer-events: none;
}

.marker-error__tooltip:after {
  top: 100%;
  bottom: auto;
  margin-bottom: 0;
  -webkit-transform: translate(50%, 0%);
      -ms-transform: translate(50%, 0%);
       -o-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
  opacity: 1;
}

.marker-error[data-title] .marker-error__tooltip {
  display: none !important;
}

.marker-error[data-title]:hover:before, .marker-error[data-title]:hover:after, .marker-error:hover .marker-error__tooltip {
  -webkit-transform: translate(50%, 0);
      -ms-transform: translate(50%, 0);
       -o-transform: translate(50%, 0);
          transform: translate(50%, 0);
  opacity: 1;
}

.al-form-input:focus ~ .marker-error .marker-error__head, .form-select:focus ~ .marker-error .marker-error__head {
  background: #ebebeb;
}

.al-form-input.error ~ .marker-error .marker-error__head, .form-select.error ~ .marker-error .marker-error__head {
  background: rgba(217, 83, 79, 0.2);
}

.validate-block {
  position: relative;
  padding: 0;
}

.validate-block--inline {
  display: inline-block;
}

.validate-block--block {
  display: block;
}

.validate-block__tooltip {
  position: absolute;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.412;
  top: 7px;
  left: 100%;
  min-width: 200px;
  margin: 0 0 0 80px;
  display: none;
  text-align: left;
}

.validate-block__tooltip:before {
  position: absolute;
  content: "";
  top: 12px;
  right: 100%;
  width: 30px;
  margin: 0 25px 0 0;
  border-bottom: 1px solid #ccc;
}

.validate-block__input:focus ~ .validate-block__tooltip {
  display: block;
}

.validate-block__input.focus ~ .validate-block__tooltip {
  display: block;
}

.validate-block__error {
  margin-top: 2px;
}

/*.validate-block:not([class~="error"]) .validate-block__error {
  display: none;
}*/

.validate-block__error{
    font-size: 11px;
    color: red;
}

.validate-block.error .validate-block__marker {
  display: block;
}

.validate-block__input.error ~ .validate-block__marker {
  display: block;
}

.validate-block .required {
  position: absolute;
  line-height: 0;
  bottom: 100%;
  left: 100%;
  color: #d9534f;
}

/*============================!Form-grid!=====================================*/
/*============================ Upload container ==============================*/
.upload-block {
  position: relative;
}

.upload-block__head {
  position: relative;
}

.upload-block__file-input {
  display: block;
}

.upload-block__uploaded-hide.hidden {
  display: none;
}

.upload-block__uploaded-show.hidden {
  display: none;
}

.dynamic-form__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dynamic-form__item {
  margin-top: 1rem;
}

.dynamic-form__item:first-child {
  margin-top: 0;
}

/*============================!Upload container!==============================*/
