input.airtafa-view-input {
  background-color: #f7f9fc;
  border: 1px solid #edf1f7;
  font-size: 1rem;
  min-height: 40px;
  box-sizing: border-box;
  padding: 0 18px;
  border-radius: 3px;
  color: #1a2138;
  font-weight: 600;
  width: 100%;
}
input.airtafa-view-input::placeholder {
  color: #8f9bb3;
}
input.airtafa-view-input:focus {
  outline: 0;
  border-color: #1a34b8;
  box-shadow: 0 0 0 0.375rem #e4e9f2;
}

input {
  outline: none;
}

:host {
  position: relative;
  display: inline-block;
}
:host.fullWidth {
  width: 100%;
}

.modal-block {
  display: none;
  position: absolute;
  min-height: 100px;
  background: white;
  margin-top: 5px;
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem 0 rgba(44, 51, 73, 0.1);
  color: #1a2138;
  font-family: Open Sans, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  width: 100%;
  max-width: 350px;
  min-width: 300px;
  z-index: 1;
  top: calc(100% + 8px);
}
.modal-block.showed {
  display: block;
}
.modal-block .body, .modal-block .header {
  padding: 1rem 0;
}
.modal-block .padding-x {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.modal-block .header {
  border-bottom: 1px solid #edf1f7;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.modal-block .header .today-date-string {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5rem;
  cursor: pointer;
}
.modal-block .header .today-date-string:hover {
  color: #598bff;
}
.modal-block .header .today-date-value {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25rem;
}
.modal-block .body .month-switcher-block {
  display: flex;
  justify-content: center;
  height: 50px;
}
.modal-block .body .month-switcher-block .center-month {
  text-transform: uppercase;
  background-color: #36f;
  border-color: #36f;
  color: #fff;
  padding: 0.625rem 2.125rem;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
}
.modal-block .body .month-switcher-block .center-month:hover {
  background-color: #598bff;
  border-color: #598bff;
}
.modal-block .body .month-switcher-block .arrow-button {
  background: transparent;
  border: 0;
  color: #36f;
  margin: 0 15px;
}
.modal-block .body .month-switcher-block .arrow-button:hover {
  color: #598bff;
}
.modal-block .body .month-switcher-block .arrow-button .arrow {
  width: 20px;
  height: 20px;
}
.modal-block .body .calendar-block .calendar-row {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 5px;
}
.modal-block .body .calendar-block .calendar-row .inner-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.modal-block .body .calendar-block .calendar-row .calendar-item.other-period {
  color: #c5cee0;
  font-weight: 300;
}
.modal-block .body .calendar-block .calendar-row .calendar-item.today {
  background-color: #edf1f7;
  color: #1a2138;
  font-weight: 600;
}
.modal-block .body .calendar-block .calendar-row .calendar-item {
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 0.25rem;
  color: #1a2138;
  font-family: Open Sans, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.25rem;
  margin: 1px;
  width: 2.625rem;
  height: 2.625rem;
}
.modal-block .body .calendar-block .calendar-row.body .calendar-item:hover, .modal-block .body .calendar-block .calendar-row.body .calendar-item.chose {
  background-color: #598bff;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
}
.modal-block .body .calendar-block .calendar-row.header {
  background: #f7f9fc;
  border-top: 1px solid #edf1f7;
  border-bottom: 1px solid #edf1f7;
  margin-top: 0.5rem;
}
.modal-block .body .calendar-block .calendar-row.header .calendar-item {
  color: #8f9bb3;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.125rem;
}
.modal-block .body .calendar-block .calendar-row.header .calendar-item.holiday {
  color: #ff3d71;
}

.g-clickable {
  cursor: pointer;
}