.datepicker--cells {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.datepicker--cell {
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  position: relative;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 32px;
  z-index: 1;
}

.datepicker--cell.-focus- {
  background: #f0f0f0;
}

.datepicker--cell.-current- {
  color: #4EB5E6;
}

.datepicker--cell.-current-.-focus- {
  color: #4a4a4a;
}

.datepicker--cell.-current-.-in-range- {
  color: #4EB5E6;
}

.datepicker--cell.-in-range- {
  background: rgba(92, 196, 239, 0.1);
  color: #4a4a4a;
  border-radius: 0;
}

.datepicker--cell.-in-range-.-focus- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-in-range- {
  color: #a1a1a1;
}

.datepicker--cell.-disabled-.-current-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-range-from- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 4px 0 0 4px;
}

.datepicker--cell.-range-to- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 0 4px 4px 0;
}

.datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- {
  color: #fff;
  background: #5cc4ef;
}

.datepicker--cell.-range-from-.-range-to- {
  border-radius: 4px;
}

.datepicker--cell.-selected- {
  border: none;
}

.datepicker--cell.-selected-.-focus- {
  background: #45bced;
}

.datepicker--cell:empty {
  cursor: default;
}

.datepicker--days-names {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px 0 3px;
}

.datepicker--day-name {
  color: #FF9A19;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}

.-only-timepicker- .datepicker--content, .datepicker--body, .datepicker-inline .datepicker--pointer {
  display: none;
}

.datepicker--cell-day {
  width: 14.28571%;
}

.datepicker--cells-months {
  height: 170px;
}

.datepicker--cell-month {
  width: 33.33%;
  height: 25%;
}

.datepicker--cells-years, .datepicker--years {
  height: 170px;
}

.datepicker--cell-year {
  width: 25%;
  height: 33.33%;
}

.datepickers-container {
  position: absolute;
  left: 0;
  top: 0;
}

@media print {
  .datepickers-container {
    display: none;
  }
}
.datepicker {
  background: #fff;
  border: 1px solid #dbdbdb;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  width: 250px;
  position: absolute;
  left: -100000px;
  opacity: 0;
  transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  -webkit-transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  z-index: 100;
}

.datepicker.-from-top- {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.datepicker.-from-right- {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

.datepicker.-from-bottom- {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.datepicker.-from-left- {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

.datepicker.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
  transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  -webkit-transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
}

.datepicker-inline .datepicker {
  border-color: #d7d7d7;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.datepicker--content {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 4px;
}

.datepicker--pointer {
  position: absolute;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  width: 10px;
  height: 10px;
  z-index: -1;
}

.datepicker--nav-action:hover, .datepicker--nav-title:hover {
  background: #f0f0f0;
}

.-top-center- .datepicker--pointer, .-top-left- .datepicker--pointer, .-top-right- .datepicker--pointer {
  top: calc(100% - 4px);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.-right-bottom- .datepicker--pointer, .-right-center- .datepicker--pointer, .-right-top- .datepicker--pointer {
  right: calc(100% - 4px);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.-bottom-center- .datepicker--pointer, .-bottom-left- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
  bottom: calc(100% - 4px);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.-left-bottom- .datepicker--pointer, .-left-center- .datepicker--pointer, .-left-top- .datepicker--pointer {
  left: calc(100% - 4px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.-bottom-left- .datepicker--pointer, .-top-left- .datepicker--pointer {
  left: 10px;
}

.-bottom-right- .datepicker--pointer, .-top-right- .datepicker--pointer {
  right: 10px;
}

.-bottom-center- .datepicker--pointer, .-top-center- .datepicker--pointer {
  left: calc(50% - 5px);
}

.-left-top- .datepicker--pointer, .-right-top- .datepicker--pointer {
  top: 10px;
}

.-left-bottom- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
  bottom: 10px;
}

.-left-center- .datepicker--pointer, .-right-center- .datepicker--pointer {
  top: calc(50% - 5px);
}

.datepicker--body.active {
  display: block;
}

.datepicker--nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #efefef;
  min-height: 32px;
  padding: 4px;
}

.-only-timepicker- .datepicker--nav {
  display: none;
}

.datepicker--nav-action, .datepicker--nav-title {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  cursor: pointer;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.datepicker--nav-action {
  width: 32px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker--nav-action.-disabled- {
  visibility: hidden;
}

.datepicker--nav-action svg {
  width: 32px;
  height: 32px;
}

.datepicker--nav-action path {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 2px;
}

.datepicker--nav-title {
  border-radius: 4px;
  padding: 0 8px;
}

.datepicker--buttons, .datepicker--time {
  border-top: 1px solid #efefef;
  padding: 4px;
}

.datepicker--nav-title i {
  font-style: normal;
  color: #9c9c9c;
  margin-left: 5px;
}

.datepicker--nav-title.-disabled- {
  cursor: default;
  background: 0 0;
}

.datepicker--buttons {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.datepicker--button {
  color: #4EB5E6;
  cursor: pointer;
  border-radius: 4px;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  height: 32px;
}

.datepicker--button:hover {
  color: #4a4a4a;
  background: #f0f0f0;
}

.datepicker--time {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}

.datepicker--time.-am-pm- .datepicker--time-sliders {
  -ms-flex: 0 1 138px;
  -webkit-box-flex: 0;
          flex: 0 1 138px;
  max-width: 138px;
}

.-only-timepicker- .datepicker--time {
  border-top: none;
}

.datepicker--time-sliders {
  -ms-flex: 0 1 153px;
  -webkit-box-flex: 0;
          flex: 0 1 153px;
  margin-right: 10px;
  max-width: 153px;
}

.datepicker--time-label {
  display: none;
  font-size: 12px;
}

.datepicker--time-current {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  font-size: 14px;
  text-align: center;
  margin: 0 0 0 10px;
}

.datepicker--time-current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.datepicker--time-current-hours, .datepicker--time-current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.datepicker--time-current-hours:after, .datepicker--time-current-minutes:after {
  content: "";
  background: #f0f0f0;
  border-radius: 4px;
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.datepicker--time-current-hours.-focus-:after, .datepicker--time-current-minutes.-focus-:after {
  opacity: 1;
}

.datepicker--time-current-ampm {
  text-transform: uppercase;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #9c9c9c;
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.datepicker--time-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 11px;
  height: 17px;
  background: -webkit-gradient(linear, left top, right top, from(#dedede), to(#dedede)) left 50%/100% 1px no-repeat;
  background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px no-repeat;
}

.datepicker--time-row:first-child {
  margin-bottom: 4px;
}

.datepicker--time-row input[type=range] {
  background: 0 0;
  cursor: pointer;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.datepicker--time-row input[type=range]::-ms-tooltip {
  display: none;
}

.datepicker--time-row input[type=range]:hover::-webkit-slider-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-moz-range-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-ms-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:focus {
  outline: 0;
}

.datepicker--time-row input[type=range]:focus::-webkit-slider-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]:focus::-moz-range-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]:focus::-ms-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-top: -6px;
}

.datepicker--time-row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}

.datepicker--time-row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -ms-transition: background 0.2s;
  transition: background 0.2s;
}

.datepicker--time-row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-moz-range-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-fill-lower {
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-fill-upper {
  background: 0 0;
}

.datepicker--time-row span {
  padding: 0 12px;
}

.datepicker--time-icon {
  color: #9c9c9c;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 5px -1px 0;
  width: 1em;
  height: 1em;
}

.datepicker--time-icon:after, .datepicker--time-icon:before {
  content: "";
  background: currentColor;
  position: absolute;
}

.datepicker--time-icon:after {
  height: 0.4em;
  width: 1px;
  left: calc(50% - 1px);
  top: calc(50% + 1px);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.datepicker--time-icon:before {
  width: 0.4em;
  height: 1px;
  top: calc(50% + 1px);
  left: calc(50% - 1px);
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #ccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: 0 0;
  border: none;
}

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: -webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.host-registration {
  color: var(--blue-basic);
}
.host-registration hr {
  border: 1px solid #9FA3BC;
  opacity: 0.5;
  margin: 20px 0;
}
.host-registration .header-box {
  background: var(--color-neutral-lightest) !important;
  padding: 10px 15px;
}
.host-registration input,
.host-registration select,
.host-registration button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.host-registration .host-registration__form {
  background: var(--grey-light-basic) !important;
}
.host-registration .progress {
  display: none;
}
.host-registration__tabs-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 37px;
  padding-bottom: 25px;
  color: var(--blue-basic);
}
.host-registration__tabs-list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 31%;
  max-width: 120px;
  padding: 14px 10px 9px;
  border: 1px solid var(--blue-basic);
  font-size: 12px;
  text-align: center;
  counter-increment: li;
  cursor: pointer;
}
.host-registration__tabs-list li::before {
  content: counter(li);
  position: absolute;
  top: -4px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--white);
  background-color: var(--blue-basic);
  z-index: 1;
}
.host-registration__tabs-list li:not(:last-child) {
  margin-right: 10px;
}
.host-registration__tabs-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid var(--blue-basic);
}
.host-registration__tabs-list li.not-active {
  color: #B5B7CC;
  border-color: #B5B7CC;
}
.host-registration__tabs-list li.not-active::before {
  color: #CDCFE3;
  background-color: #B5B7CC;
}
.host-registration__tabs-list li.not-active::after {
  border-left-color: #7c809b;
}
.host-registration__tabs-list li .tab-title {
  display: inline-block;
  text-align: center;
}
.host-registration-form {
  padding: 30px 18px 60px;
}
@media screen and (min-width: 414px) {
  .host-registration-form {
    padding: 30px 25px 60px;
  }
}
.host-registration-form__tab {
  margin-bottom: 15px;
}
.host-registration-form__tab.information-tab hr {
  padding-left: initial;
  margin: 20px 0;
}
.host-registration-form__tab-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
  margin-top: 0;
}
.host-registration-form__tab-title .title-icon {
  width: 50px;
  height: 38px;
  margin: 0 10px -5px 0;
}
.host-registration-form__tab-title .title-icon.information-icon {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-information") no-repeat;
  background-size: contain;
}
.host-registration-form__tab-title .title-icon.expertise-icon {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-expertise") no-repeat;
  background-size: contain;
}
.host-registration-form__tab-title .title-icon.host-icon {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-host") no-repeat;
  background-size: contain;
}
.host-registration-form__tab-title h2 {
  margin: 0;
  font-size: 15px;
  color: var(--blue-basic);
}
.host-registration-form__tab-title.first-title {
  margin-top: 0;
}
.host-registration-form__tab .required-field {
  color: var(--red-basic);
}
.host-registration-form__tab > .form-input-group.profession-block-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
}
.host-registration-form__tab > .form-input-group.profession-block-container label::after {
  content: "*";
  position: absolute;
  left: 170px;
  top: 0;
  font-size: 16px;
  color: var(--red-basic);
}
.host-registration-form__tab > .form-input-group.profession-block-container .profession-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.host-registration-form__tab > .form-input-group.profession-block-container .profession-block .title {
  font: 500 16px roc-grotesk, sans-serif;
  color: var(--blue-basic);
  margin-right: 7px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 10%;
          flex: 0 1 10%;
  height: 40px;
}
.host-registration-form__tab > .form-input-group.profession-block-container .profession-block .select-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 21%;
          flex: 0 1 21%;
  margin-right: 7px;
}
.host-registration-form__tab > .form-input-group.profession-block-container .profession-block .profession-input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 64%;
          flex: 0 1 64%;
}
.host-registration-form__tab > .form-input-group.profession-block-container .error-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.host-registration-form__tab .form-input {
  padding-top: 5px;
  color: var(--blue-basic);
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form__tab .form-input label,
.host-registration-form__tab .form-input .dob-title {
  display: inline-block;
  margin-bottom: 5px;
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
}
.host-registration-form__tab .form-input .dob-title {
  margin: 0 0 4px;
  position: relative;
}
.host-registration-form__tab .form-input .dob-title::after {
  content: "*";
  position: absolute;
  right: initial;
  top: 0;
  font-size: 16px;
  color: var(--red-basic);
}
.host-registration-form__tab .form-input input {
  display: block;
  width: 100%;
  padding: 7px;
  margin-bottom: 3px;
  font: inherit;
  font-size: 14px;
  line-height: 1.7;
  text-overflow: ellipsis;
  border: 1px solid #CDCFE1;
  color: var(--blue-basic);
}
@media screen and (min-width: 414px) {
  .host-registration-form__tab .form-input input {
    font-size: 15px;
  }
}
.host-registration-form__tab .form-input input::-webkit-input-placeholder {
  color: #6A7098;
  text-indent: 0;
  -webkit-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input::-moz-placeholder {
  color: #6A7098;
  text-indent: 0;
  -moz-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input:-ms-input-placeholder {
  color: #6A7098;
  text-indent: 0;
  -ms-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input::-ms-input-placeholder {
  color: #6A7098;
  text-indent: 0;
  -ms-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input::placeholder {
  color: #6A7098;
  text-indent: 0;
  -webkit-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input:focus, .host-registration-form__tab .form-input input:active {
  border: 2px solid var(--yellow-basic);
}
.host-registration-form__tab .form-input input[placeholder] {
  text-overflow: ellipsis;
}
.host-registration-form__tab .form-input input:focus::-webkit-input-placeholder {
  text-indent: 3500px;
  -webkit-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input:focus::-moz-placeholder {
  text-indent: 3500px;
  -moz-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input:focus:-ms-input-placeholder {
  text-indent: 3500px;
  -ms-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input:focus::-ms-input-placeholder {
  text-indent: 3500px;
  -ms-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input:focus::placeholder {
  text-indent: 3500px;
  -webkit-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .form-input input:-webkit-autofill {
  -webkit-text-fill-color: #6A7098;
}
.host-registration-form__tab .form-input input.controls {
  width: calc(100% - 24px);
  max-width: 100%;
  border: 1px solid var(--blue-basic);
}
.host-registration-form__tab .form-input.grew-up-block {
  padding-bottom: 1px;
}
.host-registration-form__tab .form-input.grew-up-block label {
  position: relative;
}
.host-registration-form__tab .form-input.grew-up-block label::after {
  content: "*";
  position: absolute;
  right: initial;
  top: 0;
  font-size: 16px;
  color: var(--red-basic);
}
.host-registration-form__tab .form-input .input-info {
  margin: 0;
  font-size: 12px;
  color: #ccc;
}
.host-registration-form__tab .form-input.required-input label {
  position: relative;
}
.host-registration-form__tab .form-input.required-input label::after {
  content: "*";
  position: absolute;
  right: -10px;
  top: 0;
  font-size: 16px;
  color: var(--red-basic);
}
.host-registration-form__tab .form-input.full-width input {
  max-width: 100%;
}
.host-registration-form__tab .form-input .form-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.host-registration-form__tab .form-input .form-input-group .form-input {
  width: 127px;
  margin-top: 0;
  padding-top: 0;
}
.host-registration-form__tab .form-input .form-input-group .form-input.time-in-city-months {
  width: 70%;
}
.host-registration-form__tab .form-input .form-input-group .form-input.time-in-city-years {
  width: 25%;
}
.host-registration-form__tab .form-input .form-input-group .form-input.referral-info {
  width: 45%;
}
.host-registration-form__tab .form-input .form-input-group label {
  font-size: 14px;
}
.host-registration-form__tab .form-input .form-input-group label::after {
  content: "";
}
.host-registration-form__tab .form-input .dob-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.host-registration-form__tab .form-input .dob-input {
  width: 30%;
}
.host-registration-form__tab .form-input .dob-input.select-day-box {
  width: 21%;
}
.host-registration-form__tab .form-input .dob-input.select-month-box {
  width: 44%;
}
.host-registration-form__tab .form-input .dob-input.select-years-box {
  width: 25%;
}
.host-registration-form__tab .form-input .phone-with-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.host-registration-form__tab .form-input .phone-with-code .intl-tel-input {
  color: var(--blue-basic);
  max-width: 60px;
  margin-right: 15px;
}
.host-registration-form__tab .form-input .phone-with-code .phone-number {
  padding-left: 12px;
  max-width: 100%;
}
.host-registration-form__tab .select-wrapper {
  position: relative;
  display: block;
  max-width: 100%;
}
.host-registration-form__tab .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-angle-down-blue") center/contain no-repeat;
  pointer-events: none;
}
.host-registration-form__tab .select-wrapper select {
  display: block;
  width: 100%;
  font: inherit;
  font-size: 15px;
  line-height: 2;
  padding: 4px 6px;
  margin-bottom: 3px;
  border: 1px solid #CDCFE1;
  color: var(--blue-basic);
  background-color: var(--color-white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form__tab .select-wrapper select:focus, .host-registration-form__tab .select-wrapper select:active {
  border: 2px solid var(--yellow-basic);
}
.host-registration-form__tab .select-wrapper select::-webkit-input-placeholder {
  color: #6A7098;
}
.host-registration-form__tab .select-wrapper select::-moz-placeholder {
  color: #6A7098;
}
.host-registration-form__tab .select-wrapper select:-ms-input-placeholder {
  color: #6A7098;
}
.host-registration-form__tab .select-wrapper select::-ms-input-placeholder {
  color: #6A7098;
}
.host-registration-form__tab .select-wrapper select::placeholder {
  color: #6A7098;
}
.host-registration-form__tab .select-wrapper select:disabled {
  color: #6A7098;
}
.host-registration-form__tab .selected-dietary-preferences {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -5px;
}
.host-registration-form__tab .selected-dietary-preferences label {
  padding: 4px 15px;
  margin: 0 5px 20px;
  border-radius: 50px;
  color: var(--blue-basic);
  background: var(--yellow-basic);
  cursor: pointer;
}
.host-registration-form__tab .form-checkbox {
  color: var(--blue-basic);
  margin-top: 20px;
  margin-bottom: 30px;
}
.host-registration-form__tab .form-checkbox label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  min-height: 26px;
  padding-left: 38px;
  margin-bottom: 3px;
  line-height: 26px;
}
.host-registration-form__tab .form-checkbox label a {
  color: var(--blue-basic);
}
.host-registration-form__tab .form-checkbox label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: var(--color-white);
  border: 1px solid #CDCFE1;
}
.host-registration-form__tab .form-checkbox input[type=checkbox] {
  display: none;
}
.host-registration-form__tab .form-checkbox input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 13px;
  height: 13px;
  border: none;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-checked-blue") center/contain no-repeat;
}
.host-registration-form__tab .form-checkbox.required-input label {
  position: relative;
}
.host-registration-form__tab .form-checkbox.required-input label::after {
  content: "*";
  position: absolute;
  right: -10px;
  top: 0;
  font-size: 16px;
  color: var(--red-basic);
}
.host-registration-form__tab .form-checkbox.is-tc-accepted {
  width: 325px;
}
.host-registration-form__tab .form-checkbox.is-tc-accepted label {
  font-size: 13px;
  line-height: 14px;
}
.host-registration-form__tab .form-checkbox.is-tc-accepted label::after {
  right: 78px;
  font-size: 16px;
  top: 14px;
}
.host-registration-form__tab .form-checkbox.is-tc-accepted label a {
  text-decoration: underline;
}
.host-registration-form__tab.hide-section {
  display: none;
}
.host-registration-form__tab .languages-select {
  position: relative;
  padding-bottom: 25px;
  overflow: hidden;
  border-bottom: 1px solid var(--blue-grey-basic);
}
.host-registration-form__tab .languages-select::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 110%;
  border: 1px solid rgba(204, 204, 204, 0.1254901961);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.host-registration-form__tab .languages-select__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.host-registration-form__tab .languages-select__title > p {
  font-family: roc-grotesk, sans-serif;
  font-weight: 700;
}
.host-registration-form__tab .languages-select__title .icon-title {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 50%;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-languages") center/70% no-repeat;
}
.host-registration-form__tab .languages-select .language-section {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.host-registration-form__tab .languages-select .language-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  border: 1px dashed rgba(204, 204, 204, 0.1254901961);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.host-registration-form__tab .languages-select .language-section .language-item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.host-registration-form__tab .languages-select .language-section .language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 90px;
  position: relative;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 90%;
}
.host-registration-form__tab .languages-select .language-section .language .select-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.host-registration-form__tab .languages-select .language-section .language .select-wrapper::after {
  top: 45px;
  right: 3%;
}
.host-registration-form__tab .languages-select .language-section .language .select-wrapper select {
  margin-right: 0;
  cursor: pointer;
  width: 100%;
}
.host-registration-form__tab .languages-select .language-section .language .select-wrapper select::after {
  right: 3%;
}
@media screen and (min-width: 414px) {
  .host-registration-form__tab .languages-select .language-section .language .select-wrapper::after {
    top: 45px;
    right: 10px;
  }
}
.host-registration-form__tab .languages-select .language-section .language .select-wrapper label span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 5px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.host-registration-form__tab .languages-select .language-section .language__controls {
  width: 100%;
  padding-top: 20px;
  margin-right: auto;
}
.host-registration-form__tab .languages-select .language-section .language__controls-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  height: 16px;
  border: 1px solid var(--white);
  border-radius: 50px;
  background-color: var(--blue-grey-basic);
  font-family: freight-sans-pro, sans-serif;
  position: relative;
}
.host-registration-form__tab .languages-select .language-section .language__controls-actions input[type=radio] {
  display: none;
}
.host-registration-form__tab .languages-select .language-section .language__controls-actions label {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--white);
}
.host-registration-form__tab .languages-select .language-section .language__controls-actions label > span {
  display: none;
  position: absolute;
  font-size: 11px;
  top: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.host-registration-form__tab .languages-select .language-section .language__controls-actions label::before {
  content: "";
  position: absolute;
  display: block;
  top: -7px;
  left: -13px;
  right: -13px;
  bottom: -7px;
  cursor: pointer;
}
.host-registration-form__tab .languages-select .language-section .language__controls-actions input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background-color: var(--yellow-basic);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.host-registration-form__tab .languages-select .language-section .language__controls-actions input[type=radio]:checked + label > span {
  display: inline-block;
}
.host-registration-form__tab .languages-select .language-section .language__controls-description {
  font-size: 10px;
  line-height: 13px;
  text-align: center;
  font-family: freight-sans-pro, sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 158px;
  position: absolute;
  top: 99px;
  padding: 0 30px 0 33px;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.host-registration-form__tab .languages-select .language-section .language__controls-description.language_knowledge_level_1 {
  top: 86px;
}
.host-registration-form__tab .languages-select .language-section .language__controls-description.language_knowledge_level_3 {
  top: 116px;
}
.host-registration-form__tab .languages-select .language-section .language__controls-description.language_knowledge_level_4 {
  top: 114px;
  padding: 0 18px;
}
.host-registration-form__tab .languages-select .language-section .language__controls-description.language_knowledge_level_5 {
  top: 105px;
}
.host-registration-form__tab .languages-select .language-section .language .delete-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  margin: auto;
  border: none;
  background: transparent;
  width: 16px;
  height: 18px;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icons-close-red") no-repeat;
  position: absolute;
  top: 55px;
  right: -26px;
}
.host-registration-form__tab .languages-select .language-section .language .language-other-wrapper {
  width: 100%;
  margin-bottom: 15px;
}
.host-registration-form__tab .languages-select .language-section .language .language-other-wrapper input {
  width: 100%;
}
.host-registration-form__tab .languages-select .language-section .language .language-other-wrapper label {
  font-size: 16px;
}
.host-registration-form__tab .user-action-section {
  padding: 45px 0 0;
  border-bottom: 1px solid var(--blue-grey-basic);
}
.host-registration-form__tab .user-action-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.host-registration-form__tab .user-action-section__list .category-radio {
  width: 100%;
}
.host-registration-form__tab .user-action-section__title {
  display: inline-block;
  margin-bottom: 50px;
  font-family: 500 15px roc-grotesk, sans-serif;
}
.host-registration-form__tab .user-action-section__description {
  margin: 0;
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form__tab .user-action-section.checkbox-section > strong {
  margin-bottom: 0;
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
}
.host-registration-form__tab .inputs-actions {
  position: relative;
  margin-top: 30px;
  padding-bottom: 40px;
  overflow: hidden;
}
.host-registration-form__tab .inputs-actions::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 110%;
  border: 1px solid rgba(204, 204, 204, 0.1254901961);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.host-registration-form__tab .inputs-actions label {
  display: inline-block;
  margin-bottom: 30px;
}
.host-registration-form__tab .inputs-actions ul {
  padding: 0;
  margin: 0;
}
.host-registration-form__tab .inputs-actions ul li {
  position: relative;
  padding: 0 15px;
  margin-bottom: 15px;
  counter-increment: li;
}
.host-registration-form__tab .inputs-actions ul li::before {
  content: counter(li);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-basic);
}
.host-registration-form__tab .inputs-actions ul li::after {
  content: "*";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--red-basic);
}
.host-registration-form__tab .inputs-actions ul li input {
  display: block;
  width: 100%;
  margin-bottom: 3px;
  padding: 7px;
  font: inherit;
  font-size: 15px;
  line-height: 2.5;
  text-overflow: ellipsis;
  border: none;
  color: #6A7098;
}
.host-registration-form__tab .inputs-actions ul li input::-webkit-input-placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -webkit-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .inputs-actions ul li input::-moz-placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -moz-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .inputs-actions ul li input:-ms-input-placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -ms-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .inputs-actions ul li input::-ms-input-placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -ms-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .inputs-actions ul li input::placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -webkit-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form__tab .inputs-actions ul li .characters-left {
  color: var(--blue-grey-basic);
  position: relative;
  top: -22px;
  left: 63%;
  font-size: 12px;
}
.host-registration-form .category-radio:not(:last-child) {
  margin-bottom: 25px;
}
.host-registration-form .category-radio.food, .host-registration-form .category-radio.history {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.host-registration-form .category-radio.drinks {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.host-registration-form .category-radio.arts {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.host-registration-form .category-radio.nature {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.host-registration-form .category-radio.culture {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.host-registration-form .category-radio.shopping {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
  margin-bottom: 10px;
}
.host-registration-form .category-radio.photography {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.host-registration-form .category-radio.architecture {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}
.host-registration-form .category-radio.music {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-bottom: 25px;
}
.host-registration-form .category-radio-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
.host-registration-form .category-radio-select .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 50%;
  margin-top: -59px;
}
.host-registration-form .category-radio-select .icon.icon-food {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-food") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-drinks {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-drinks") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-arts {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-arts") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-nature {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-nature") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-history {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-history") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-shopping {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-shopping") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-photography {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-photography") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-architecture {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-architecture") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-personality {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-personality") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-worldview {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-worldviewy") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-culture {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-geisha") center/70% no-repeat;
}
.host-registration-form .category-radio-select .icon.icon-music {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#music") center/70% no-repeat;
}
.host-registration-form .category-radio-select .actions-radio {
  width: 100%;
}
.host-registration-form .category-radio-select .actions-radio legend {
  margin-bottom: 7px;
  margin-top: 10px;
}
.host-registration-form .category-radio-select .actions-radio__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  height: 16px;
  border: 1px solid var(--white);
  border-radius: 50px;
  background-color: #6a7098;
}
.host-registration-form .category-radio-select .actions-radio__controls input[type=radio] {
  display: none;
}
.host-registration-form .category-radio-select .actions-radio__controls label {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--white);
  cursor: pointer;
}
.host-registration-form .category-radio-select .actions-radio__controls label > span {
  display: none;
  position: absolute;
  bottom: 21px;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: Poppins, sans-serif;
}
.host-registration-form .category-radio-select .actions-radio__controls label::before {
  content: "";
  position: absolute;
  display: block;
  top: -7px;
  left: -13px;
  right: -13px;
  bottom: -7px;
  cursor: pointer;
}
.host-registration-form .category-radio-select .actions-radio__controls input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background-color: var(--yellow-basic);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.host-registration-form .category-radio-select .actions-radio__controls input[type=radio]:checked + label > span {
  display: inline-block;
}
.host-registration-form .category-radio-select .actions-radio .form-error {
  width: 100%;
}
.host-registration-form .category-checkbox.expertises-knowledge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 12px;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box {
  max-width: 100%;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.history, .host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.culture {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.food {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.arts {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.nature {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.drinks {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.shopping {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
  margin-bottom: 15px;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.photography {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.architecture {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}
.host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.music {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.host-registration-form .category-checkbox__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 20px 0;
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
}
.host-registration-form .category-checkbox__title .icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-right: 10px;
}
.host-registration-form .category-checkbox__title .icon.icon-food {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-food") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title .icon.icon-drinks {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-drinks") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title .icon.icon-arts {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-arts") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title .icon.icon-nature {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-nature") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title .icon.icon-history {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-history") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title .icon.icon-shopping {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-shopping") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title .icon.icon-photography {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-photography") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title .icon.icon-architecture {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-architecture") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title .icon.icon-culture {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-geisha") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title .icon.icon-music {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#music") center/contain no-repeat;
}
.host-registration-form .category-checkbox__title legend {
  font-weight: bold;
}
.host-registration-form .category-checkbox__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}
.host-registration-form .category-checkbox__list .item {
  margin: 0 2px 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.host-registration-form .category-checkbox__list .item input[type=checkbox] {
  display: none;
}
.host-registration-form .category-checkbox__list .item label {
  display: inline-block;
  padding: 4px 15px;
  margin-bottom: 3px;
  border-radius: 50px;
  color: var(--blue-basic);
  background: var(--color-white);
  border: 1px solid var(--blue-basic);
  -webkit-transition: color 0.5s, background-color 0.5s;
  transition: color 0.5s, background-color 0.5s;
  cursor: pointer;
  font-family: freight-sans-pro, sans-serif;
  text-align: center;
}
.host-registration-form .category-checkbox__list .item label:hover {
  color: var(--blue-basic);
  background: var(--yellow-basic);
}
.host-registration-form .category-checkbox__list .item input[type=checkbox]:checked + label {
  color: var(--blue-basic);
  background-color: var(--yellow-basic);
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
  border-color: var(--yellow-basic);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.host-registration-form .category-checkbox__list .other-action {
  width: 100%;
  margin-top: -5px;
}
.host-registration-form .category-checkbox__list .other-action input {
  display: block;
  width: 100%;
  margin-bottom: 3px;
  padding: 7px;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  text-overflow: ellipsis;
  border: 1px solid #CDCFE1;
  color: #6a7098;
}
.host-registration-form .category-checkbox__list .other-action input::-webkit-input-placeholder {
  color: #CCCCCC;
  font-size: 15px;
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form .category-checkbox__list .other-action input::-moz-placeholder {
  color: #CCCCCC;
  font-size: 15px;
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form .category-checkbox__list .other-action input:-ms-input-placeholder {
  color: #CCCCCC;
  font-size: 15px;
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form .category-checkbox__list .other-action input::-ms-input-placeholder {
  color: #CCCCCC;
  font-size: 15px;
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form .category-checkbox__list .other-action input::placeholder {
  color: #CCCCCC;
  font-size: 15px;
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form .category-checkbox__list .other-action span {
  display: inline-block;
  width: 90%;
  font-size: 14px;
  line-height: 18px;
  padding-top: 5px;
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form .category-radio-group {
  padding: 15px 0;
  border-bottom: 1px solid var(--blue-grey-basic);
}
.host-registration-form .category-radio-group .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.host-registration-form .category-radio-group .title > p {
  font-family: roc-grotesk, sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}
.host-registration-form .category-radio-group .title .description {
  font-family: freight-sans-pro, sans-serif;
  font-size: 14px;
  line-height: 16px;
  margin-top: 0;
  margin-bottom: 50px;
}
.host-registration-form .category-radio-group .title .description.personalities {
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
}
.host-registration-form .category-radio-group .title .icon-title {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 50%;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-personality") center/70% no-repeat;
  overflow: hidden;
}
.host-registration-form .traits-wrapper {
  margin: 15px 0;
}
.host-registration-form .traits-wrapper .area-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
.host-registration-form .traits-wrapper .area-title > span {
  font-family: roc-grotesk, sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}
.host-registration-form .traits-wrapper .traits-checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.host-registration-form .traits-wrapper .traits-checkbox-container input[type=checkbox] {
  display: none;
}
.host-registration-form .traits-wrapper .traits-checkbox-container label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.host-registration-form .traits-wrapper .traits-checkbox-container label .traits-checkbox {
  padding: 11px 25px;
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 16px;
  margin-right: 10px;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 10px;
}
.host-registration-form .traits-wrapper .traits-checkbox-container label .traits-checkbox:hover {
  background: var(--yellow-basic);
  color: var(--blue-basic);
}
.host-registration-form .traits-wrapper .traits-checkbox-container label input[type=checkbox]:checked + span {
  background: var(--yellow-basic);
  color: var(--blue-basic);
}
.host-registration-form .text-area-input {
  padding: 45px 0;
}
.host-registration-form .text-area-input label {
  display: block;
  margin-bottom: 20px;
}
.host-registration-form .text-area-input textarea {
  width: 100%;
  height: 85px;
  margin-bottom: 3px;
  padding: 7px;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  text-overflow: ellipsis;
  border: none;
  color: #6a7098;
}
.host-registration-form .text-area-input textarea::-webkit-input-placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -webkit-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form .text-area-input textarea::-moz-placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -moz-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form .text-area-input textarea:-ms-input-placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -ms-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form .text-area-input textarea::-ms-input-placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -ms-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form .text-area-input textarea::placeholder {
  color: var(--blue-grey-basic);
  text-indent: 0;
  -webkit-transition: text-indent 0.5s ease;
  transition: text-indent 0.5s ease;
}
.host-registration-form .text-area-input.required-input label {
  position: relative;
}
.host-registration-form .text-area-input.required-input label::after {
  content: "*";
  position: absolute;
  top: 0;
  font-size: 16px;
  color: var(--red-basic);
}
.host-registration-form .profile-photo .dropzone-block, .host-registration-form .profile-photo .dropzone {
  background: transparent;
  max-width: 203px;
  min-height: 90px;
  border: none;
  position: relative;
  margin-top: 30px;
}
.host-registration-form .profile-photo .dropzone-block.uploading, .host-registration-form .profile-photo .dropzone.uploading {
  max-width: 120px;
  min-height: initial;
  height: 143px;
  padding: 0;
  margin: 45px auto 16px 16px;
}
.host-registration-form .profile-photo .dropzone-block .dz-preview, .host-registration-form .profile-photo .dropzone .dz-preview {
  margin: 0;
}
.host-registration-form .profile-photo .dropzone-block .dz-preview .dz-image, .host-registration-form .profile-photo .dropzone .dz-preview .dz-image {
  max-width: 120px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.host-registration-form .profile-photo .dropzone-block .dz-preview .dz-image img, .host-registration-form .profile-photo .dropzone .dz-preview .dz-image img {
  width: 100%;
  height: auto;
}
.host-registration-form .profile-photo .dropzone-block .dz-preview .dz-remove, .host-registration-form .profile-photo .dropzone .dz-preview .dz-remove {
  color: var(--blue-basic);
  margin-top: 7px;
}
.host-registration-form .profile-photo .dropzone-block .dz-default, .host-registration-form .profile-photo .dropzone-block .dz-message, .host-registration-form .profile-photo .dropzone .dz-default, .host-registration-form .profile-photo .dropzone .dz-message {
  text-align: left;
  margin: 0;
  position: relative;
}
.host-registration-form .profile-photo .dropzone-block .dz-default .dz-button, .host-registration-form .profile-photo .dropzone-block .dz-message .dz-button, .host-registration-form .profile-photo .dropzone .dz-default .dz-button, .host-registration-form .profile-photo .dropzone .dz-message .dz-button {
  display: inline-block;
  width: 200px;
  text-align: center;
  border: 1px solid var(--blue-basic);
  padding: 15px 20px 15px 35px;
  color: var(--blue-basic-basic);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#upload_blue") left/42% 41% no-repeat;
}
.host-registration-form .profile-photo .dropzone-block .dz-default .dz-button:hover, .host-registration-form .profile-photo .dropzone-block .dz-message .dz-button:hover, .host-registration-form .profile-photo .dropzone .dz-default .dz-button:hover, .host-registration-form .profile-photo .dropzone .dz-message .dz-button:hover {
  color: var(--blue-basic);
  background-color: var(--yellow-basic);
  border-color: var(--blue-basic);
  background-image: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#upload_yellow") left/42% 41% no-repeat;
}
.host-registration-form .profile-photo .dropzone-block .dz-error-message, .host-registration-form .profile-photo .dropzone .dz-error-message {
  top: 54px;
}
.host-registration-form .profile-photo .dropzone-block .dz-success-mark,
.host-registration-form .profile-photo .dropzone-block .dz-error-mark,
.host-registration-form .profile-photo .dropzone-block .dz-progress, .host-registration-form .profile-photo .dropzone .dz-success-mark,
.host-registration-form .profile-photo .dropzone .dz-error-mark,
.host-registration-form .profile-photo .dropzone .dz-progress {
  top: 43%;
}
.host-registration-form .profile-photo .dropzone-block .info-uploading, .host-registration-form .profile-photo .dropzone .info-uploading {
  display: inline-block;
  font-family: freight-sans-pro, sans-serif;
  font-size: 12px;
  line-height: 16px;
  text-align: left;
  position: absolute;
  bottom: -16px;
  padding-left: 18px;
}
.host-registration-form .user-form-controls {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
  overflow: hidden;
}
.host-registration-form .user-form-controls.top {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  top: -10px;
  padding-top: 0;
}
.host-registration-form .user-form-controls__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  height: 35px;
  margin-bottom: 15px;
  border: 1px solid var(--yellow-basic);
  font: inherit;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--blue-basic);
  background-color: var(--yellow-basic);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  outline: none;
  border-radius: 0;
}
.host-registration-form .user-form-controls__btn.prev {
  background-color: transparent;
  font-size: 13px;
  width: initial;
  border: none;
  margin-bottom: 20px;
}
.host-registration-form .user-form-controls__btn.prev:hover, .host-registration-form .user-form-controls__btn.prev:focus, .host-registration-form .user-form-controls__btn.prev:active {
  background-color: transparent;
}
.host-registration-form .user-form-controls__btn:hover, .host-registration-form .user-form-controls__btn:focus, .host-registration-form .user-form-controls__btn:active {
  color: var(--yellow-basic);
  background-color: var(--blue-basic);
}
.host-registration-form .user-form-controls__btn:hover .arrow, .host-registration-form .user-form-controls__btn:focus .arrow, .host-registration-form .user-form-controls__btn:active .arrow {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-angle-down-yellow") center/contain no-repeat;
}
.host-registration-form .user-form-controls__btn.hide-btn {
  display: none;
}
.host-registration-form .arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-angle-down-blue") center/contain no-repeat;
}
.host-registration-form .arrow.right {
  transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  margin-left: 10px;
}
.host-registration-form .arrow.left {
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  margin-right: 10px;
}
.host-registration-form .arrow:hover {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-angle-down-yellow") center/contain no-repeat;
}
.host-registration-form .add-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px 0 20px;
  border: none;
  font: inherit;
  font-size: 15px;
  color: var(--blue-basic);
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  outline: none;
  font-family: freight-sans-pro, sans-serif;
  max-width: 185px;
}
.host-registration-form .add-btn:hover, .host-registration-form .add-btn:focus, .host-registration-form .add-btn:active {
  color: var(--yellow-basic);
}
.host-registration-form .add-btn:hover .icon-button-plus, .host-registration-form .add-btn:focus .icon-button-plus, .host-registration-form .add-btn:active .icon-button-plus {
  background: var(--color-accent-gold);
}
.host-registration-form .add-btn span {
  font-size: 24px;
  margin-right: 10px;
  font-family: freight-sans-pro, sans-serif;
}
.host-registration-form .add-btn.no-display {
  display: none;
}
.host-registration-form .add-btn .icon-button-plus {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: var(--color-primary);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#button-plus_blue") no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#button-plus_blue") no-repeat;
  margin-right: 7px;
}
.host-registration-form .form-error {
  display: inline-block;
  height: 14px;
  font-size: 12px;
  color: var(--red-basic);
  min-width: 100px;
}
.host-registration-form .error-dob-fields .form-error {
  min-width: initial;
}
.host-registration-form .required-field {
  color: var(--red-basic);
}
.host-registration-form .text-underline {
  text-decoration: underline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 5px;
}
.host-registration-form .section-container {
  padding: 40px 0;
  border-bottom: 1px solid var(--blue-grey-basic);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.host-registration-form .section-container .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.host-registration-form .section-container .title > p {
  font: 700 18px roc-grotesk, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}
.host-registration-form .section-container .title .description {
  font: 500 14px roc-grotesk, sans-serif;
  line-height: 16px;
  margin-top: 0;
  margin-bottom: 30px;
}
.host-registration-form .section-container .title > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-left: 34px;
}
.host-registration-form .section-container .title > ul li {
  list-style: initial;
  margin: 0;
  font: 500 16px roc-grotesk, sans-serif;
  line-height: 19px;
}
.host-registration-form .section-container .area-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.host-registration-form .section-container .area-title .block-title {
  font: 500 14px roc-grotesk, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-right: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.host-registration-form .section-container .area-title .block-title.public-bio-sound {
  font: 600 18px roc-grotesk, sans-serif;
}
.host-registration-form .section-container .area-title .block-title span {
  padding: 0 0 0 7px;
}
.host-registration-form .section-container .area-title .block-title span.without-space {
  padding: 0;
}
.host-registration-form .section-container .area-title .block-title span.required-field {
  padding: 0;
}
@media screen and (min-width: 414px) {
  .host-registration-form .section-container .area-title .block-title {
    font-size: 15px;
  }
}
@media screen and (min-width: 500px) {
  .host-registration-form .section-container .area-title .block-title span.without-space {
    padding: 0 0 0 7px;
  }
}
.host-registration-form .section-container .form-input input {
  max-width: 90%;
  margin-bottom: 0;
}
.host-registration-form .section-container .inputs-wrapper {
  margin: 20px 0 0;
}
.host-registration-form .section-container .inputs-wrapper.first-wrapp {
  margin: 0;
}
.host-registration-form .section-container .add-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5px;
  margin-top: 5px;
}
.host-registration-form .section-container .add-section .delete-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  margin: auto;
  border: none;
  background: transparent;
  width: 20px;
  height: 22px;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icons-close-red") no-repeat;
}
.host-registration-form .section-container .sound-container {
  margin-top: 15px;
}
.host-registration-form .section-container .sound-container .sound-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: none;
  padding: 0;
}
.host-registration-form .section-container .sound-container .sound-group label {
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  font-family: freight-sans-pro, sans-serif;
  cursor: pointer;
}
.host-registration-form .section-container .sound-container .sound-group label:hover {
  color: var(--yellow-basic);
}
.host-registration-form .section-container .input-radio {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--white);
  margin: 0;
  font: inherit;
  color: #dbdbdb;
  width: 25px;
  height: 25px;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  transform: translateY(-0.075em);
  -webkit-transform: translateY(-0.075em);
  -ms-transform: translateY(-0.075em);
  -o-transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  cursor: pointer;
}
.host-registration-form .section-container .input-radio::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-box-shadow: inset 1em 1em #dbdbdb;
          box-shadow: inset 1em 1em #dbdbdb;
}
.host-registration-form .section-container .input-radio:checked::before {
  -webkit-box-shadow: inset 1em 1em var(--yellow-basic);
          box-shadow: inset 1em 1em var(--yellow-basic);
}
.host-registration-form .section-container .input-radio:checked {
  border: 1px solid #293168;
}
.host-registration-form .section-container .input-radio:focus {
  outline: none !important;
}
.host-registration-form .section-container .input-radio:checked ~ .rates-wrapper {
  display: none;
}
.host-registration-form .section-container span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.host-registration-form .section-container span.label-radio {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 7px;
  line-height: 25px;
}
.host-registration-form .section-container .text-area-input {
  border: none;
  padding: 0;
}
.host-registration-form .section-container .photo-no-nos {
  margin-top: 40px;
}
.host-registration-form .section-container .photo-no-nos .title p {
  margin-bottom: initial;
}
.host-registration-form .accepted-block {
  margin-top: 40px;
}
.host-registration-form .photo-rules {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 5px 0 15px;
}
.host-registration-form .photo-rules .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33%;
}
.host-registration-form .photo-rules .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 100%;
  width: 100%;
}
.host-registration-form .photo-rules .img-box img {
  position: absolute;
  top: 0;
  background-color: transparent;
  padding: 5px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.host-registration-form .photo-rules .description-photo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  padding: 5px 5px 7px;
  margin-bottom: 15px;
}
.host-registration-form .photo-rules i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  text-align: center;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icons-close-red") no-repeat;
}
.host-registration-form .photo-rules i.icon-great {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-registration-icons-sprite-eef81b0b95.svg#icon-checked-green") no-repeat;
}
.host-registration .gender-input .info-icon-wrapper {
  position: relative;
  display: inline-block;
}
.host-registration .gender-input .info-icon {
  width: 20px;
  height: 20px;
  background-color: var(--blue-basic);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 15px;
}
.host-registration .gender-input .tooltip-text {
  visibility: hidden;
  width: 260px;
  background-color: var(--blue-basic);
  color: var(--white);
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 7.5px));
          transform: translateX(calc(-50% + 7.5px));
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.host-registration .gender-input .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.host-registration .gender-input .info-icon-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.main-footer {
  font-style: initial;
}

@media screen and (min-width: 768px) {
  .host-registration {
    overflow-x: hidden;
  }
  .host-registration .header-box {
    padding: 15px 30px 75px;
    position: relative;
  }
  .host-registration .progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 15px;
    border-radius: 10px;
    position: absolute;
    top: 52px;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 725px;
  }
  .host-registration .progress .information-progress {
    width: 140px;
    background: var(--blue-basic);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: 1px solid var(--blue-basic);
  }
  .host-registration .progress .expertise-progress,
  .host-registration .progress .host-progress {
    opacity: 0;
    background: var(--blue-basic);
    border: 1px solid var(--blue-basic);
    visibility: hidden;
    -webkit-transition: visibility 0.3s, opacity 0.3s ease-in-out;
    transition: visibility 0.3s, opacity 0.3s ease-in-out;
  }
  .host-registration .progress .expertise-progress.showed,
  .host-registration .progress .host-progress.showed {
    visibility: visible;
    opacity: 1;
    -webkit-transition: visible 0.3s, opacity 0.3s ease-in;
    transition: visible 0.3s, opacity 0.3s ease-in;
  }
  .host-registration .progress .expertise-progress {
    width: 200px;
  }
  .host-registration .progress .host-progress {
    width: 385px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .host-registration__tabs-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 15px;
    padding: 0;
    background: #CDCFE3;
    border-radius: 10px;
    border-bottom: none;
    width: 718px;
    margin: 37px auto 0;
  }
  .host-registration__tabs-list li {
    max-width: 100%;
    padding: 0 0 0 50px;
    border: none;
    text-align: left;
    font-size: 14px;
  }
  .host-registration__tabs-list li:first-of-type {
    width: 118px;
  }
  .host-registration__tabs-list li:nth-of-type(2) {
    width: 140px;
  }
  .host-registration__tabs-list li:last-of-type {
    width: 143px;
  }
  .host-registration__tabs-list li::before {
    top: 50%;
    left: 46px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .host-registration__tabs-list li:not(:last-child) {
    margin-right: 95px;
  }
  .host-registration__tabs-list li:not(:last-child)::after {
    display: none;
  }
  .host-registration__tabs-list li.not-active::after {
    display: none;
  }
  .host-registration__tabs-list li .tab-title {
    position: absolute;
    top: 30px;
    left: 0;
    width: 120px;
  }
  .host-registration-form {
    padding: 0 30px 60px;
  }
  .host-registration-form__tab {
    width: 680px;
    padding-left: 0;
    margin: 0 auto 15px;
    padding-top: 35px;
  }
  .host-registration-form__tab-title {
    padding-left: 0;
  }
  .host-registration-form__tab-title h2 {
    font-size: 17px;
    margin-bottom: 5px;
  }
  .host-registration-form__tab > .form-input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .host-registration-form__tab > .form-input-group.no-label {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .host-registration-form__tab > .form-input-group .form-input {
    width: 48%;
  }
  .host-registration-form__tab > .form-input-group .form-input input {
    width: 100%;
  }
  .host-registration-form__tab > .form-input-group.dietary-preference {
    margin-top: 15px;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block {
    width: 48%;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block .title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 11%;
            flex: 0 1 11%;
    height: 40px;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block .select-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 20%;
            flex: 0 1 20%;
    margin-right: 7px;
  }
  .host-registration-form__tab .form-input.second-column {
    margin-left: 15px;
  }
  .host-registration-form__tab .form-input input {
    width: 48%;
    max-width: 100%;
  }
  .host-registration-form__tab .form-input .form-input-group {
    max-width: 100%;
  }
  .host-registration-form__tab .form-input .form-input-group .form-input {
    width: 48%;
  }
  .host-registration-form__tab .form-input .dob-wrap {
    max-width: 100%;
  }
  .host-registration-form__tab .form-input .phone-with-code.contacts-phone {
    max-width: 48%;
  }
  .host-registration-form__tab .form-input .phone-with-code.contacts-phone .phone-number {
    width: 100%;
  }
  .host-registration-form__tab .select-wrapper.half-width {
    max-width: 48%;
  }
  .host-registration-form__tab .languages-select {
    padding: 34px;
    border: 1px solid var(--blue-grey-basic);
    margin-top: 30px;
  }
  .host-registration-form__tab .languages-select .language-section {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .host-registration-form__tab .languages-select .language-section::after {
    display: none;
  }
  .host-registration-form__tab .languages-select .language-section .language-item-box {
    position: initial;
    width: 235px;
  }
  .host-registration-form__tab .languages-select .language-section .language {
    padding: 20px 47px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .host-registration-form__tab .languages-select .language-section .language .select-wrapper select {
    width: 235px;
  }
  .host-registration-form__tab .languages-select .language-section .language .select-wrapper select::after {
    top: 38px;
    right: 10px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
    width: 52%;
    margin-left: 10px;
    margin-right: initial;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-actions {
    margin: 0 2.1vw;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-actions label > span {
    top: 20px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-description {
    font-size: 11px;
    line-height: 14px;
    top: initial;
    bottom: 8px;
    width: 275px;
    min-height: 95px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    background: var(--blue-basic);
    color: var(--white);
    border-radius: 15px;
    padding: 10px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-description::before {
    content: "";
    position: absolute;
    right: 118px;
    top: 100%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    border: 10px solid transparent;
    border-top: 10px solid var(--blue-basic);
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-description.language_knowledge_level_1 {
    top: initial;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-description.language_knowledge_level_3 {
    top: initial;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-description.language_knowledge_level_4 {
    top: initial;
    padding: 10px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-description.language_knowledge_level_5 {
    top: initial;
  }
  .host-registration-form__tab .languages-select .language-section .language .delete-icon {
    width: 20px;
    height: 22px;
    right: 0;
  }
  .host-registration-form__tab .user-action-section {
    padding: 34px;
    margin-top: 30px;
    border: 1px solid var(--blue-grey-basic);
  }
  .host-registration-form__tab .user-action-section__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .host-registration-form__tab .user-action-section__list .category-radio {
    width: 47%;
  }
  .host-registration-form__tab .inputs-actions.group-actions {
    padding: 34px;
    border: 1px solid var(--blue-grey-basic);
  }
  .host-registration-form__tab .inputs-actions ul li .characters-left {
    left: 78%;
  }
}
@media screen and (min-width: 768px) and (min-width: 980px) {
  .host-registration-form__tab .inputs-actions ul li .characters-left {
    left: 86%;
  }
}
@media screen and (min-width: 768px) {
  .host-registration-form .category-radio.shopping {
    margin-bottom: 25px;
  }
  .host-registration-form .category-radio.my-personality-sliders {
    margin-left: 63px;
  }
  .host-registration-form .category-checkbox.expertises-knowledge {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box {
    max-width: 48%;
  }
  .host-registration-form .category-checkbox.expertises-knowledge .expertise-knowledge-box.shopping {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
    margin-bottom: initial;
  }
  .host-registration-form .category-checkbox.expertises-knowledge .item {
    margin: 0 5px;
  }
  .host-registration-form .category-radio-group {
    border: 1px solid var(--blue-grey-basic);
    padding: 40px 0;
  }
  .host-registration-form .category-radio-group .title .description {
    font-size: 16px;
    line-height: 19px;
    padding-left: 70px;
  }
  .host-registration-form .traits-wrapper {
    margin-left: 63px;
  }
  .host-registration-form .profile-photo .dropzone-block, .host-registration-form .profile-photo .dropzone {
    padding: 20px 0;
  }
  .host-registration-form .category-radio-group,
  .host-registration-form .text-area-input {
    padding: 34px;
    margin-top: 30px;
    border: 1px solid var(--blue-grey-basic);
  }
  .host-registration-form .user-form-controls {
    width: 680px;
    margin: 0 auto;
  }
  .host-registration-form .user-form-controls.footer-form {
    padding-top: 0;
  }
  .host-registration-form .user-form-controls__btn.prev {
    margin-right: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
  }
  .host-registration-form .section-container {
    border: 1px solid var(--blue-grey-basic);
    padding: 34px;
    margin-top: 30px;
  }
  .host-registration-form .section-container .form-input input {
    width: 90%;
  }
  .host-registration-form .section-container .title > p {
    margin-bottom: 0;
  }
  .host-registration-form .section-container .title > p.rules-title {
    margin-bottom: 25px;
  }
  .host-registration-form .section-container .title .description {
    font-size: 16px;
    line-height: 19px;
  }
  .host-registration-form .section-container .title .description.my-bio, .host-registration-form .section-container .title .description.profile-img {
    margin-top: 20px;
    line-height: 23px;
    margin-bottom: 39px;
  }
  .host-registration-form .section-container .title .description.profile-img {
    margin-bottom: 30px;
  }
  .host-registration-form .section-container .sound-container {
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .host-registration__tabs-list li:not(:last-child)::after {
    display: none;
  }
  .host-registration-form__tab {
    width: 710px;
  }
  .host-registration-form__tab .form-checkbox.is-tc-accepted label::after {
    right: 75px;
  }
  .host-registration-form__tab .inputs-actions ul li .characters-left {
    left: 78%;
  }
  .host-registration-form .category-radio-select .icon {
    margin-top: -49px;
  }
  .host-registration-form .category-radio-group .title > p {
    margin-bottom: 0;
    margin-top: 0;
  }
  .host-registration-form .accepted-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 15px;
  }
  .host-registration-form .photo-rules .description-photo {
    font-size: 13px;
    line-height: 15px;
    padding-bottom: 7px;
  }
}
@media screen and (min-width: 1024px) {
  .host-registration-form__tab {
    width: 710px;
  }
  .host-registration-form .user-form-controls {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .host-registration-form .user-form-controls__btn {
    width: 248px;
    height: 50px;
    font-size: 19px;
    border-width: 2px;
    margin-top: 30px;
  }
  .host-registration-form .user-form-controls__btn.btn-submit {
    width: 323px;
    margin-top: 0;
  }
  .host-registration-form .user-form-controls__btn.prev {
    width: 248px;
    height: 50px;
    font-size: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .host-registration .header-box {
    padding: 35px 30px 120px;
    position: relative;
  }
  .host-registration .progress {
    width: 900px;
    top: 72px;
  }
  .host-registration .progress .information-progress {
    width: 163px;
  }
  .host-registration .progress .expertise-progress {
    width: 330px;
  }
  .host-registration .progress .host-progress {
    width: 617px;
  }
  .host-registration__tabs-list {
    width: 900px;
  }
  .host-registration__tabs-list li {
    font-size: 16px;
    padding-left: 80px;
  }
  .host-registration__tabs-list li:first-of-type {
    width: 205px;
  }
  .host-registration__tabs-list li:nth-of-type(2) {
    width: 242px;
  }
  .host-registration__tabs-list li:last-of-type {
    width: 251px;
  }
  .host-registration__tabs-list li > span {
    padding: 10px 0;
  }
  .host-registration__tabs-list li::before {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 2rem;
    top: 50%;
    left: 82px;
  }
  .host-registration__tabs-list li:not(:last-child) {
    margin-right: 125px;
  }
  .host-registration__tabs-list li .tab-title {
    top: 30px;
    left: 39px;
    width: 146px;
  }
  .host-registration-form {
    max-width: 1140px;
    margin: 0 auto;
  }
  .host-registration-form__tab {
    width: 900px;
    padding-top: 60px;
  }
  .host-registration-form__tab-title {
    margin-top: 10px;
  }
  .host-registration-form__tab-title .title-icon {
    width: 80px;
    height: 60px;
  }
  .host-registration-form__tab > .form-input-group .form-input {
    width: 46%;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container label {
    font-size: 18px;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container label::after {
    left: 190px;
    font-size: 18px;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block {
    width: 46%;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block .title {
    font-size: 18px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 9%;
            flex: 0 1 9%;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block .select-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 14%;
            flex: 0 1 14%;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block .profession-input {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 73%;
            flex: 0 1 73%;
  }
  .host-registration-form__tab .form-input {
    margin-top: 5px;
  }
  .host-registration-form__tab .form-input.second-column {
    margin-left: 30px;
  }
  .host-registration-form__tab .form-input label,
  .host-registration-form__tab .form-input .dob-title {
    font-size: 18px;
  }
  .host-registration-form__tab .form-input input {
    width: 46%;
  }
  .host-registration-form__tab .form-input .input-info {
    font-size: 16px;
  }
  .host-registration-form__tab .form-input.required-input label::after {
    right: -15px;
    font-size: 18px;
  }
  .host-registration-form__tab .form-input.full-width #email {
    width: 500px;
  }
  .host-registration-form__tab .form-input .form-input-group.negative-bottom-margin {
    margin-bottom: -20px;
  }
  .host-registration-form__tab .form-input .form-input-group .form-input {
    width: 46%;
  }
  .host-registration-form__tab .form-input .form-input-group label {
    font-size: 18px;
  }
  .host-registration-form__tab .form-input .phone-with-code.contacts-phone {
    max-width: 46%;
  }
  .host-registration-form__tab .select-wrapper.half-width {
    max-width: 46%;
  }
  .host-registration-form__tab .select-wrapper::after {
    width: 20px;
    height: 20px;
  }
  .host-registration-form__tab .selected-dietary-preferences label {
    font-size: 18px;
    padding: 7px 15px;
  }
  .host-registration-form__tab .form-checkbox label {
    padding-left: 59px;
    font-size: 18px;
  }
  .host-registration-form__tab .form-checkbox label::before {
    top: -2px;
    width: 30px;
    height: 30px;
  }
  .host-registration-form__tab .form-checkbox input[type=checkbox]:checked + label::after {
    top: 3px;
    left: 6px;
    width: 20px;
    height: 20px;
  }
  .host-registration-form__tab .form-checkbox.required-input label::after {
    right: -15px;
    font-size: 18px;
  }
  .host-registration-form__tab .form-checkbox.is-tc-accepted label {
    font-size: 13px;
    line-height: 19px;
    padding-top: 2px;
  }
  .host-registration-form__tab .form-checkbox.is-tc-accepted label::after {
    right: 38px;
    top: 20px;
    font-size: 16px;
  }
  .host-registration-form__tab .form-checkbox.is-tc-accepted label::before {
    top: 6px;
  }
  .host-registration-form__tab .form-checkbox.is-tc-accepted input[type=checkbox]:checked + label::after {
    top: 11px;
  }
  .host-registration-form__tab .languages-select__title > p {
    font-size: 20px;
  }
  .host-registration-form__tab .languages-select__title .icon-title {
    width: 75px;
    height: 75px;
    margin-right: 5px;
    background-size: 70%;
  }
  .host-registration-form__tab .languages-select .language-section .language-item-box {
    position: initial;
    width: 255px;
  }
  .host-registration-form__tab .languages-select .language-section .language {
    margin-bottom: 57px;
    padding: 20px 79px;
  }
  .host-registration-form__tab .languages-select .language-section .language .select-wrapper select {
    width: 255px;
  }
  .host-registration-form__tab .languages-select .language-section .language .select-wrapper select::after {
    top: 39px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls {
    width: 55%;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-actions {
    height: 25px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-actions label {
    width: 10px;
    height: 10px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-actions label > span {
    top: 25px;
    font-size: 16px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-actions input[type=radio]:checked + label::after {
    width: 33px;
    height: 33px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-description {
    width: 310px;
    min-height: 105px;
    font-size: 14px;
    line-height: 17px;
    bottom: 20px;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls-description::before {
    right: 135px;
  }
  .host-registration-form__tab .user-action-section {
    padding: 34px 77px 65px 62px;
    margin-top: 50px;
  }
  .host-registration-form__tab .user-action-section__title {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .host-registration-form__tab .user-action-section__description {
    font-size: 17px;
  }
  .host-registration-form__tab .inputs-actions.group-actions {
    padding: 34px 77px 65px 62px;
    margin-top: 50px;
  }
  .host-registration-form__tab .inputs-actions label {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .host-registration-form__tab .inputs-actions ul li {
    max-width: 890px;
    padding-left: 35px;
  }
  .host-registration-form__tab .inputs-actions ul li::before {
    font-size: 18px;
  }
  .host-registration-form__tab .inputs-actions ul li::after {
    right: -20px;
    font-size: 18px;
  }
  .host-registration-form__tab .inputs-actions ul li input {
    line-height: 1.5;
    font-size: 18px;
    padding: 9px 15px;
  }
  .host-registration-form__tab .inputs-actions ul li .characters-left {
    top: -21px;
    left: 101%;
    font-size: 14px;
  }
  .host-registration-form .category-radio-select .icon {
    width: 65px;
    height: 65px;
    margin-right: 10px;
    margin-top: -57px;
  }
  .host-registration-form .category-radio-select .icon.icon-food, .host-registration-form .category-radio-select .icon.icon-drinks, .host-registration-form .category-radio-select .icon.icon-arts, .host-registration-form .category-radio-select .icon.icon-nature, .host-registration-form .category-radio-select .icon.icon-history, .host-registration-form .category-radio-select .icon.icon-culture, .host-registration-form .category-radio-select .icon.icon-shopping, .host-registration-form .category-radio-select .icon.icon-photography, .host-registration-form .category-radio-select .icon.icon-architecture, .host-registration-form .category-radio-select .icon.icon-personality, .host-registration-form .category-radio-select .icon.icon-worldview, .host-registration-form .category-radio-select .icon.icon-music {
    background-size: 60%;
  }
  .host-registration-form .category-radio-select .actions-radio legend {
    font-size: 16px;
  }
  .host-registration-form .category-radio-select .actions-radio__controls {
    height: 25px;
  }
  .host-registration-form .category-radio-select .actions-radio__controls label {
    width: 10px;
    height: 10px;
  }
  .host-registration-form .category-radio-select .actions-radio__controls label > span {
    bottom: 26px;
  }
  .host-registration-form .category-radio-select .actions-radio__controls input[type=radio]:checked + label::after {
    width: 33px;
    height: 33px;
  }
  .host-registration-form .category-checkbox__title {
    font-size: 24px;
    max-width: 70%;
  }
  .host-registration-form .category-checkbox__title .icon {
    width: 50px;
    height: 60px;
  }
  .host-registration-form .category-checkbox__title legend {
    font-size: 22px;
    color: var(--blue-basic);
  }
  .host-registration-form .category-checkbox__list .item {
    margin: 0 10px 20px;
  }
  .host-registration-form .category-checkbox__list .item label {
    padding: 11px 15px;
    font-size: 18px;
  }
  .host-registration-form .category-radio-group .title > p {
    font-size: 20px;
  }
  .host-registration-form .category-radio-group .title .category-radio {
    width: 700px;
  }
  .host-registration-form .category-radio-group .title .description {
    padding-left: 80px;
    font-size: 17px;
    margin-bottom: 85px;
  }
  .host-registration-form .category-radio-group .title .icon-title {
    width: 70px;
    height: 65px;
    margin-right: 5px;
    background-size: 70%;
    margin-top: -8px;
  }
  .host-registration-form .text-area-input label {
    font-size: 18px;
  }
  .host-registration-form .text-area-input textarea {
    max-width: 90%;
    height: 130px;
    padding: 9px 15px;
    font-size: 16px;
  }
  .host-registration-form .text-area-input.required-input label::after {
    font-size: 18px;
  }
  .host-registration-form .category-radio-group,
  .host-registration-form .text-area-input {
    padding: 34px 77px 65px 62px;
  }
  .host-registration-form .category-radio-group {
    padding: 34px 77px 20px 28px;
    margin-top: 43px;
  }
  .host-registration-form .user-form-controls {
    width: 900px;
  }
  .host-registration-form .user-form-controls.top {
    top: -59px;
  }
  .host-registration-form .add-btn {
    margin-top: 8px;
    font-size: 16px;
  }
  .host-registration-form .add-btn span {
    font-size: 26px;
  }
  .host-registration-form .form-error {
    height: 16px;
    font-size: 14px;
  }
  .host-registration-form .section-container {
    border: 1px solid var(--blue-grey-basic);
    padding-left: 80px;
  }
  .host-registration-form .section-container .form-input input {
    width: 925px;
  }
  .host-registration-form .section-container .title > p {
    font-size: 20px;
  }
  .host-registration-form .section-container .title .category-radio {
    max-width: 690px;
  }
  .host-registration-form .section-container .sound-container {
    width: 60%;
  }
  .host-registration-form .photo-rules {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .host-registration-form .photo-rules .item {
    width: 16%;
    margin: 0 5px;
  }
  .host-registration-form .photo-rules.great {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 96%;
    margin-right: auto;
  }
  .host-registration-form .photo-rules.great .description-photo {
    width: 51%;
    margin-right: auto;
    padding: 7px 10px;
  }
}
@media screen and (min-width: 1440px) {
  .host-registration .progress {
    width: 1120px;
  }
  .host-registration .progress .information-progress {
    width: 160px;
  }
  .host-registration .progress .expertise-progress {
    width: 374px;
  }
  .host-registration .progress .host-progress {
    width: 655px;
  }
  .host-registration__tabs-list {
    width: 1120px;
  }
  .host-registration__tabs-list li:not(:last-child) {
    margin-right: 145px;
  }
  .host-registration-form {
    max-width: 1343px;
  }
  .host-registration-form__tab {
    width: 1100px;
  }
  .host-registration-form__tab.hosts-tab {
    margin-bottom: 0;
  }
  .host-registration-form__tab > .form-input-group .grew-up-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block .title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 8%;
            flex: 0 1 8%;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block .select-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 13%;
            flex: 0 1 13%;
  }
  .host-registration-form__tab > .form-input-group.profession-block-container .profession-block .profession-input {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 76%;
            flex: 0 1 76%;
  }
  .host-registration-form__tab .languages-select .language-section .language__controls {
    width: 58%;
  }
  .host-registration-form .category-radio.my-personality-sliders {
    margin-left: 80px;
    margin-bottom: 45px;
  }
  .host-registration-form .traits-wrapper {
    margin-left: 80px;
  }
  .host-registration-form .user-form-controls {
    width: 1100px;
  }
}
.basic-blue {
  color: var(--color-primary);
}
/*# sourceMappingURL=host-registration.min.css.map */
