.main-frame {
  /*width: fit-content;
  height: fit-content;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

.content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh
}

.content.with-footer {
  min-height: calc(100vh - 174px);
}

.text {
  display: block;
  color: #424242;
  white-space: pre-wrap;
}

.text.capitalized::first-letter {
  text-transform: capitalize;
}

.text.mandatory::after {
  content: ' *';
  color: #f50057;
  font-weight: normal;
}
.text.bold {
  font-weight: bold;
}

.medcard__sort-menu-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
  margin-right: 30px;
  padding: 10px;
}
@media all and (max-width: 1024px) {
  .medcard__sort-menu-wrap {
    margin-right: 5px;
  }
}

.sort-menu__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-self: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.sort-menu__content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
  max-height: 510px;
}

.sort-menu__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 155px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 10px 25px;
  border: 1px solid #b0bec5;
  background: #c7ced0;
  border-radius: 5px;
  box-shadow: 1px 1px 1px #b0bec5;
  box-sizing: border-box;
  margin: 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.75;
}

.sort-menu__button__active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 155px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 10px 25px;
  border: 1px solid #b0bec5;
  background: #b0bec5;
  border-radius: 5px;
  margin: 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.sort-menu__arrow-container {
  position: relative;
}

.sort-menu__arrow {
  min-height: 35px;
  max-height: 35px;
  min-width: 35px;
  max-width: 35px;
  cursor: pointer;
}

.sort-menu__tooltip {
  position: absolute;
  border: 1px solid black;
  border-radius: 2px;
  padding: 5px;
  top: -30px;
  left: -30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.medcard__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 95%;
  margin: 0 auto;
  padding-bottom: 10px;
}

.medcard-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 85%;
  margin: 0 auto;
  padding-bottom: 10px;
}

.medcard__header {
  margin-top: 30px;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 15px;
}
.medcard__header_patient-name {
  min-width: 215px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  font-size: 15px;
  font-weight: bold;
}

.medcard__top-block {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.medcard__top-block__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}

.medcard__top-block__checkbox-with-label {
  padding: 5px 0;
}

.medcard__top-block__checkbox-with-label {
  margin-right: 15px;
}

.medcard__top-block__checkbox-with-label > .checkbox-with-label__label {
  -webkit-flex-shrink: unset;
      -ms-flex-negative: unset;
          flex-shrink: unset;
  white-space: pre-wrap;
  word-break: break-word;
}

.medcard__top-block__dropdown-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.medcard__top-block__dropdown-label {
  margin-right: 16px;
  line-height: 27px;
}

.medcard__top-block__dropdown {
  width: 232px;
}

.medcard__top-block__buttons-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.medcard__top-block__user-info { 
  position: absolute;
  padding: 10;
  border-radius: 5;
  background: white;
  width: 500px;
  min-height: 110px;
  top: 50px;
  right: 0px;
  border: 1px solid black;
  z-index: 10;
}

.medcard__top-block__user-info h4 {
  font-size: 20px;
  font-weight: bold;
}

.medcard-info-icon-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack:start;
  -webkit-justify-content:flex-start;
      -ms-flex-pack:start;
          justify-content:flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative
}


.medcard__top-block__right_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.medcard__top-block__category-info-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.medcard__top-block__logout-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 30px;
  min-width: 215px;
  max-width: 216px;
  background-color: #404040;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  border-radius: 24px;
  border-style: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.medcard__top-block__logout-button:hover {
  background-color: #e01919;
  box-shadow: 0 0 10px 0 #e01919;
}
.medcard__top-block__right_container
.medcard__top-block__upload-button {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0 20px 0 45px;
  min-width: 215px;
  height: 48px;
  background-image: url(b4bda8d05123fd242d065443de3b5f82.svg);
  background-repeat: no-repeat;
  background-position: center left 11px;
  background-color: #0f355a;
  margin-left: 20px;
}

.medcard__top-block__right_container
.medcard__top-block__privileges-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  min-width: 215px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center left 11px;
  background-color: #0f355a;

}

@media (max-width: 700px) {
  .medcard__header {
    font-size: 28px;
  }

  .medcard__top-block__button {
    height: 38px;
  }
}

.medcard-table-row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.medcard-table-row > .medcard-table-column:first-child {
  width: 300px;
  margin-right: 30px;
}

.medcard-table-row > .medcard-table-column:nth-child(2) {
  width: 220px;
  margin-right: 30px;
}

.medcard-table-row > .medcard-table-column:nth-child(3) {
  width: 280px;
  margin-right: 30px;
}

.medcard-table-row > .medcard-table-column:nth-child(4) {
  width: 200px;
  margin-right: 30px;
}

.medcard-table-row > .medcard-table-column:last-child {
  min-width: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 15px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media all and (max-width: 1024px) {
  .medcard-table-row > .medcard-table-column:first-child {
    max-width: 185px;
    word-break: break-all;
    margin-right: 10px;
  }
  
  .medcard-table-row > .medcard-table-column:nth-child(2) {
    width: 105px;
    margin-right: 10px;
  }
  
  .medcard-table-row > .medcard-table-column:nth-child(3) {
    width: 130px;
    margin-right: 10px;
  }
  
  .medcard-table-row > .medcard-table-column:nth-child(4) {
    width: 100px;
    margin-right: 10px;
  }
  
  .medcard-table-row > .medcard-table-column:last-child {
    min-width: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 5px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.medcard-table-header {
  line-height: 27px;
  border-bottom: 1px solid #b0bec5;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.medcard-table-header .text {
  color: #b0bec5;
}

@media (max-width:1024px) {
  .medcard-table-header {
    display: none;
  }
}

.scrollbar__track {
  position: absolute;
  border: none;
  border-radius: 3px;
}

.scrollbar__track.horizontal {
  width: 100%;
  height: 6px;
  right: 0px;
  bottom: 0px;
}

.scrollbar__track.vertical {
  width: 6px;
  height: 100%;
  top: 0px;
  right: 0px;
}

.scrollbar__thumb {
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.2);
}

.button {
  background: unset;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
  padding: unset;
  text-align: center;
  color: #424242;
}

.button:disabled {
  cursor: default;
}

.dropdown {
  position: relative;
  min-height: 32px;
  border-radius: 5px;
  border: 1px solid rgba(88, 106, 141, 0.3);
}
.dropdown.open {
  border-bottom: none;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.dropdown.error {
  border-color: #d22c75;
  box-shadow: 0 0 6px 0#d22c75;
}

.dropdown__title,
.dropdown__item {
  position: relative;
  width: 100%;
  text-align: left;
  border-radius: unset;
  font-size: 16px;
  padding: 10px;
  overflow: hidden;
  word-break: break-word;
}

.dropdown__title{
  height: 40px;
}

.dropdown__title:disabled {
  background-color: unset;
  opacity: 0.5;
}

.dropdown__title:before {
  content: '';
  position: absolute;
  right: 15px;
  top: calc(50% - 2.5px);
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid #42a5f5;
}

.dropdown__content-wrap {
  position: absolute;
  width: 100%;
  max-height: 140px;
}

.dropdown__scrollbar {
  max-height: inherit;
  background-color: #fff;
  border: 1px solid rgba(88, 106, 141, 0.3);
  border-top: none;
  border-radius: 0px 0px 5px 5px;
  width: calc(100% + 2px) !important;
  left: -1px;
  z-index: 1;
}

.dropdown__scrollbar > .scrollbar__track.horizontal {
  visibility: hidden;
}

.dropdown__item:hover {
  background-color: #deecff;
}

.input {
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  outline: none;
  padding: 10px;
  color: #696969;
  font-size: 16px;
}

.input:focus {
  border: 1px solid rgba(40, 177, 227, 0.57);
  box-shadow: 0 0 6px 0 rgba(40, 177, 227, 0.57);
}

.input.invalid {
  border: 1px solid #d22c75;
  box-shadow: 0 0 6px 0#d22c75;
}

.input::-webkit-input-placeholder {
  color: #b0bec5;
}

.input::-moz-placeholder {
  color: #b0bec5;
}

.input:-ms-input-placeholder {
  color: #b0bec5;
}

.input::-ms-input-placeholder {
  color: #b0bec5;
}

.input::placeholder {
  color: #b0bec5;
}

/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  -webkit-box-orient: horizontal;

  -webkit-box-direction: normal;

  -webkit-flex-direction: row;

      -ms-flex-direction: row;

          flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.DayPicker-NavButton--next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #F7F8F8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4A90E2;
  color: #F0F8FF;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.medcard-table-filters {
  padding-top: 16px;
  padding-bottom: 5px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.medcard-table-filters .input {
  position: relative;
  width: 100%;
}

.DayPickerInput {
  width: 100%;
}

.input__close-button {
  position: absolute;
  font-weight: bold;
  width: 30px;
  height: 30px;
  top: 5px;
  right: 7px;
}

.Selectable
  .DayPicker-Day--selected:not(.DayPicker-Day--start):not(.DayPicker-Day--end):not(.DayPicker-Day--outside) {
  background-color: #f0f8ff !important;
  color: #42a5f5;
}
.Selectable .DayPicker-Day {
  border-radius: 0 !important;
}
.Selectable .DayPicker-Day--start {
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}
.Selectable .DayPicker-Day--end {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.day-picker-input {
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  outline: none;
  padding: 10px;
  color: #696969;
  font-size: 16px;
  width: 100%;
}

.day-picker-input::-webkit-input-placeholder {
  color: #b0bec5;
}

.day-picker-input::-moz-placeholder {
  color: #b0bec5;
}

.day-picker-input:-ms-input-placeholder {
  color: #b0bec5;
}

.day-picker-input::-ms-input-placeholder {
  color: #b0bec5;
}

.day-picker-input::placeholder {
  color: #b0bec5;
}

.day-picker-input:focus {
  border: 1px solid rgba(40, 177, 227, 0.57);
  box-shadow: 0 0 6px 0 rgba(40, 177, 227, 0.57);
}

.day-picker-navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.day-picker-navbar__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.day-picker-navbar__button__previous,
.day-picker-navbar__button__next {
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}

.day-picker-navbar__button__previous {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.day-picker-navbar__button__next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

.years-month-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.years-month-form .dropdown {
  margin-right: 5px;
  max-width: 120px;
}

.years-month-form .dropdown__title {
  padding-right: 30px;
}

.years-month-form .dropdown__title,
.years-month-form .dropdown__item {
  font-size: 12px;
}

.years-month-form .dropdown__title::before {
  right: 7px;
}

.select-wrapper {
  position: relative;
  display: inline-block;
}

.select-wrapper:before {
  content: '';
  position: absolute;
  right: 10px;
  top: calc(50% - 2.5px);
  display: block;
  border: 5px solid transparent;
  border-top: 5px solid #42a5f5;
}

.DayPickerInput-Overlay {
  left: unset;
  right: 0px;
}

.DayPicker-wrapper,
.DayPicker-wrapper * {
  outline: none;
}

@media (max-width:1024px) {
  .medcard-table-filters {
    display: none;
  }
}



.content-row-controls__button {
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  margin: 5px;
}

.print {
  background-image: url(ac6f3516555e78b8f028ab9696a25058.svg);
}

.download {
  background-image: url(329494d2537420057303e3e9cdc03af7.svg);
}

.edit {
  background-image: url(07f596f055c214b605a1d2b803a16828.svg);
  background-size: 18px 18px;
  background-position: 0 2px;
}

.delete {
  background-image: url(51ded40c262d3b93d58de7cd726b45ce.svg);
  background-size: 20px 20px;
}

.email {
  background-image: url(53b50e5f0ca66607275de92952aad93d.svg);
}

.content-row-controls__loader {
  width: 25px;
  height: 25px;
}

.loader {
  border-width: 16px;
  border-style: solid;
  border-color: #f69e0c;
  border-top-width: 16px;
  border-top-style: solid;
  border-top-color: #f3f5fa;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  -webkit-animation: spin 1.5s linear infinite;
          animation: spin 1.5s linear infinite;
  margin: auto;
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.medium-loader {
  position: unset;
  top: unset;
  left: unset;
  width: 32px;
  height: 32px;
  border-width: 8px;
  border-top-width: 8px;
}

.blue-medium-loader {
  border-color: #42a5f5;
  border-top-color: white;
}

.medcard-table-item {
  min-height: 84px;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid#b0bec5;
  background-image: url(ce3cd691f907e9cd306f99ed4a752407.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  padding-left: 70px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.card-table-loader {
  margin-top: 200px
}

@media (max-width: 1024px) {
  .medcard-table-item {
    background-image: unset;
    padding-left: 0px;
  }
}

.medcard-table-item.grouped {
  border-left: 2px solid #42a5f5;
}

.medcard-table-item:last-child {
  border-bottom: none;
}

.medcard-table-item:hover {
  background-color: #f0f5f9;
  cursor: pointer;
}

.medcard-table-column {
  position: relative;
}

.medcard-table-item .medcard-table-column:first-child {
  font-weight: bold;
  width: calc(300px - 70px);
}

.medcard-table-group-header {
  font-size: 18px;
  font-weight: bold;
  padding: 16px 0;
}

.medcard-table-item > .medcard-table-column {
  margin: 5px 0px;
}

@media (max-width: 700px) {
  .medcard-table-item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    background-size: 25px;
    padding-left: 55px;
  }

  .medcard-table-item .medcard-table-column:first-child {
    font-weight: bold;
    width: calc(300px - 55px);
    margin-right: 15px;
  }

  .medcard-table-item > .medcard-table-column:nth-child(2) {
    margin-right: 15px;
  }

  .medcard-table-item > .medcard-table-column:nth-child(2) > .text,
  .medcard-table-item > .medcard-table-column:last-child > .text {
    font-size: 14px;
  }
}

.blue-scrollbar > .scrollbar__track {
  border: 1px solid #c9c9c9;
  border-radius: 5px;
}

.blue-scrollbar > .scrollbar__track.hidden {
  border: none;
}

.blue-scrollbar > .scrollbar__track.horizontal {
  height: 12px;
}

.blue-scrollbar > .scrollbar__track.vertical {
  background-color: #fff;
  width: 12px;
}

.blue-scrollbar > .scrollbar__track > .scrollbar__thumb {
  background: #42a5f5;
}

.medcard-table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.medcard-table__empty {
  height: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  background-image: url(4ddeebb5628d7bd34f6640ba592176b5.svg);
  background-repeat: no-repeat;
  background-position: center center;
  padding-bottom: 20px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.medcard-table__empty > .text {
  color: #95a3b4;
}

.medcard-table-loader-documents {
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -webkit-flex-direction:column;
      -ms-flex-direction:column;
          flex-direction:column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.medcard-table__content-wrap__scrollable {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: block;
}

@media (max-width: 1440px) {
  .medcard-table__content-wrap__scrollable {
    display: block;
    overflow-y: scroll;
    max-height: 1370px;
    -webkit-box-flex: unset;
    -webkit-flex-grow: unset;
        -ms-flex-positive: unset;
            flex-grow: unset;
  }
  .medcard-table__content-wrap__scrollable .scrollbar__track.vertical  {
    width: 5px !important;
  }
}

.checkbox {
  height: 20px;
  width: 20px;
  background: unset;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid rgba(88, 106, 141, 0.3);
  font-size: 14px;
  color: #42a5f5;
  padding: unset;
}

.checkbox.checked {
  color: white;
  background-image: url(f5ebcb9da1a1edc8a62fe50e14c7ef74.svg);
  background-repeat: no-repeat;
  background-size: 14px 11px;
  background-position: center center;
}

.checkbox:disabled {
  opacity: 0.7;
  cursor: default;
}

.checkbox-with-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.checkbox-with-label__checkbox {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.checkbox-with-label.disabled {
  cursor: default;
}

.checkbox-with-label__label {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 10px;
  line-height: 20px;
}

.blue-button {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  border-radius: 24px;
  background-color: #42a5f5;
  border-style: none;
}

.blue-button:hover {
  box-shadow: 0 0 10px 0 #42a5f5;
}

.blue-button:active {
  background-color: #1f95c0;
}

.blue-button:disabled {
  background-color: #eceff1;
  color: #ffffff;
  border: none;
  box-shadow: none;
}

.medcard-doc-view {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  width: 100%;
}

.patient-portal-link {
  height: calc(100vh - 252px);
}

.pdfobject-container {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.medcard-doc-view__left-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  background-color: #3a4146;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
}

.medcard-doc-view__left-block__loader {
  border-top-color: #3a4146;
}

.medcard-doc-view__open-doc-button {
  min-height: 48px;
  padding: 10px;
}

.medcard-doc-view__error__pop-up {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 320px;
  max-width: 320px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(162, 179, 198, 0.2);
  border-radius: 4px;
  padding: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.medcard-doc-view__error__pop-up__image {
  background-image: url(c1fc639b67e18724ddef75114cddbd94.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 150px;
  height: 150px;
}

.medcard-doc-view__error__pop-up > .text {
  color: #bac7d7;
  line-height: 1.5;
  text-align: center;
}

.medcard-doc-view__right-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f7f9fb;
  max-width: 50%;
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 400px;
      -ms-flex-preferred-size: 400px;
          flex-basis: 400px;
}

.medcard-doc-view__right-block__content {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.medcard-doc-view__back-button {
  font-size: 14px;
  color: #42a5f5;
  background-image: url(348d4622b69c2558fa0c07c27f126b26.svg);
  background-repeat: no-repeat;
  background-position: left center;
  margin: 16px;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: left;
  padding-left: 25px;
}

.doc-info {
  margin: 16px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(162, 179, 198, 0.2);
  border-radius: 8px;
  padding-bottom: 24px;
}

.doc-info__header {
  font-weight: bold;
  width: 100%;
  border-bottom: 1px solid #dfe7ee;
  padding: 15px 16px;
}

.doc-info__label-and-value {
  padding: 16px 16px 0;
}

.file-info {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #dfe7ee;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  margin-top: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.file-info__text {
  font-size: 14px;
  color: #95a3b4;
}

.file-info__delete-button {
  font-size: 14px;
  border-radius: 4px;
  background-color: #fdeaee;
  border: 1px solid #ea3155;
  color: #ea3155;
  padding: 6px 6px 6px 30px;
  background-image: url(51ded40c262d3b93d58de7cd726b45ce.svg);
  background-repeat: no-repeat;
  background-position: left 6px top 5px;
}

.file-info__download-button {
  font-size: 14px;
  border-radius: 4px;
  background-color: #fdeaee;
  border: 1px solid #3717ee;
  color: #3717ee;
  padding: 6px 6px 6px 6px;
}

embed::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

embed::-webkit-scrollbar-thumb {
  background: #42a5f5;
  border-radius: 5px;
}

.related-docs__link {
  display: block;
  color: #42a5f5;
  padding: 15px;
}

.label-and-value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.label-and-value__label {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}

.label-and-value__value {
  line-height: 18px;
}

.link > a,
.link > a:focus,
.link > a:hover,
.link > a:active {
  outline: none;
}
.link {
  text-decoration: none;
  color: unset;
}


.wrap-anywhere {
    overflow-wrap: anywhere;
}
.header {
  width: 100%;
  border-bottom: 1px solid #dee8f0;
  padding: 10px 0;
  box-sizing: border-box;
  min-height: initial;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

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

.col-6.right-col {
    display: none;
}

.left-col {
  width: 100%;
}

.left-col {
  width: 100%;
}

@media (min-width: 576px) {
  .col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1140px;
  } 

  .col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 1200px){
	.container {
		max-width: 1024px;
	}
}

@media (max-width:1024px){
  body{
    width: 1024px;
  }
  
	.container{
		width: 1140px;
  }

 }

.col-6 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.left-col {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.phone-wrap {
  color: #0f355a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 220px;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.phone-image {
  max-width: 25px;
  margin-right: 20px;
}

.phone__small-text {
  font-size: 0.88rem;
  font-weight: 400;
  margin-top: 3px;
  margin-bottom: 5px;
}

.phone__large-text {
  font-weight: 700;
  font-size: 1.25rem;
}

.right-col {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.login__a {
  background-color: transparent;
  text-decoration: none;
  color: #0f355a;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  cursor: pointer;
  font-size: 0.88rem;
}

.user-info__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.user-info {
  color: #0f355a;
  cursor: pointer;
  font-size: 0.88rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.user-info:after {
  content: '';
  border-style: solid;
  border-width: 6px;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 24px;
  right: -9px;
}

.user-info__image {
  width: 35px;
  margin-right: 7px;
}

.nav-users {
  padding: 20px 30px;
  position: absolute;
  top: 60px;
  right: -9px;
  background: #fff;
  z-index: 9;
  border-collapse: separate;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.07);
}

.nav-users li {
  list-style: none;
  line-height: 1.5em;
}
.nav-users a {
  padding: 6px 0;
  display: block;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  color: rgb(15, 53, 90);
  -webkit-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
  font-size: 0.88rem;
}
.nav-users .link-out {
  border-top: 1px solid #d9dbda;
}

.nav-users a:hover {
  color: #f47b6a;
}

.footer {
  background: #242431;
  padding: 21px 0 34px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media all and (max-width: 1024px) {
  .footer {
    padding: 22px 0 34px;
  }
}

.footer-container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .footer-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .footer-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .footer-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .footer-container {
    max-width: 1140px;
  }
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.6666666667%;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.3333333333%;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.copyright {
  padding-bottom: 5px;
  color: #666678;
  line-height: 1.4rem;
  font-size: 0.88rem;
}

.technical-support_btn {
  max-width: 355px;
  font-size: 0.72rem;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #0f355a;
  border-radius: 25px;
  padding: 7px 30px;
  color: #fff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  text-decoration: none;
}

.navigator__btn {
  margin-left: 15px;
  max-width: 256px;
  font-size: 0.72rem;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #0f355a;
  border-radius: 25px;
  padding: 7px 30px;
  color: #fff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  text-decoration: none;
}

.technical-support_btn__img {
  max-width: 20px;
  margin-right: 13px;
  vertical-align: middle;
  border-style: none;
}

.footer-bottom {
  margin-top: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.6666666667%;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.3333333333%;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

.col-4 > a {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer__span {
  color: #3f3f53;
  margin: 0 6px;
}

.footer-bottom img {
  max-height: 45px;
  margin-top: 20px;
}

.footer-bottom__img {
  margin-left: 45px;
}

.footer-bottom__a {
  background-color: transparent;
  color: #d1d7df;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 20px;
}

.footer-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.modal-header {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 20px 20px 10px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px 4px 0 0;
}

.modal-header__header-text {
  font-size: 18px;
  text-align: center;
}

.modal-header__close-button {
  color: #42a5f5;
  font-weight: bold;
  position: absolute;
  top: 3px;
  right: 8px;
  font-size: 22px;
  font-weight: bold;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100%;
  background-color: rgba(88, 106, 141, 0.9);
}

.modal-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 30%;
  background-color: #fff;
  border-radius: 4px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.modal-content {
  padding: 20px;
  min-height: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-content.with-header {
  padding: 10px 20px 20px 20px;
  min-height: calc(100% - 52px);
}

.upload-doc-modal__dropdown {
  margin-top: 5px;
  height: 40px;
}

.upload-document-modal__input-with-label {
  margin-bottom: 15px;
}

.upload-document-modal__input-with-label,
.upload-document-modal__input-with-label > .input {
  width: 100%;
}

.upload-document-modal__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.upload-doc-modal__dropdown-with-label {
  width: 100%;
}

.upload-doc-modal__dropdown-with-label__label {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}

.upload-doc-modal__dropdown-with-label__label::after {
  content: ' *';
  color: #f50057;
  font-weight: normal;
}

.upload-doc-modal__button-container {
  padding-top: 20px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.upload-doc-modal__button {
  height: 40px;
  padding: 0 20px;
  background-color: #0f355a;
}

.upload-doc-modal__error {
  margin-top: 10px;
  color: #f50057;
}

.upload-doc-modal__delete-button {
  margin-top: 10px;
  height: 25px;
  width: 25px;
  background-image: url(51ded40c262d3b93d58de7cd726b45ce.svg);
  background-repeat: no-repeat;
  margin-left: 40px;
}

.upload-doc-modal__attachment-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 20px;
}

.input-with-label > .text {
  font-size: 12px;
  color: #a7a7a7;
  line-height: 21px;
}

.input-with-label > .input {
  margin-top: 5px;
}

.attachment-upload-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.attachment-upload-button__text {
  padding: 0px 25px;
  color: #0f355a;
  background-image: url(71b5a0cbdeccc9b38ec33ba725f45eb0.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
}

.attachment-upload-button__input {
  display: none;
}

.attachment-upload-button__filename {
  font-size: 12px;
}

.attachment-upload-error {
  font-size: 12px;
  color: red;
  margin-bottom: 10px;
}
.red-button {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  border-radius: 24px;
  background-color: #f50057;
  border-style: none;
}

.red-button:hover {
  box-shadow: 0 0 10px 0 #d22c75;
}

.red-button:active {
  background-color: #b11049;
}

.red-button:disabled {
  background-color: #e1f5fe;
  box-shadow: none;
}

.remove-document-modal__buttons-container {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  padding-bottom: 0;
}

.remove-document-modal__buttons-container .button {
  height: 40px;
  width: 100px;
}

.remove-document-modal__error {
  margin-top: 20px;
  color: #f50057;
}

.button-loader {
  margin: 0 auto;
  border-radius: 50%;
  background: -webkit-gradient(
    linear,
    left top, right top,
    color-stop(10%, #ffffff),
    color-stop(42%, rgba(255, 255, 255, 0))
  );
  background: -webkit-linear-gradient(
    left,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  background: linear-gradient(
    to right,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  -webkit-animation: load3 1.4s infinite linear;
          animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.button-loader:before {
  width: 50%;
  height: 50%;
  background: #ffffff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.button-loader:after {
  background: #000000;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.button-with-loader {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-with-loader__button {
  width: 100%;
  height: 100%;
}

.button-with-loader__loader {
  width: 30px;
  height: 30px;
}

.button-with-loader__success,
.button-with-loader__error {
  text-align: center;
  margin-top: 4px;
  font-size: 14px;
}
.button-with-loader__error {
  color: #d22c75;
}

.blue-button-with-loader
  > .button-with-loader__button
  > .button-with-loader__loader:after {
  background: #42a5f5;
}

.blue-button-with-loader > .button-with-loader__button.loading {
  background: #42a5f5;
  box-shadow: unset;
}

.send-email-modal {
  width: 400px;
}

.send-email-modal__input {
  margin-top: 20px;
  width: 100%;
}

.send-email-modal__button {
  margin-top: 30px;
  height: 40px;
  padding: 0 15px;
}

.send-email-modal__text__error {
  color: #f50057;
}

.send-email-modal__text{
  text-align: center;
  line-height: 30px;
}

.send-email-modal__text__email{
  font-weight: bold;
  margin-top: 10px;
  line-height: 0px;
}
.login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.login .error {
  font-size: 20px;
  margin-bottom: 20px;
}

.login .smile {
  font-size: 36px;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  height: 100%;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  outline: none;
}


@font-face {
    font-family: 'Ubuntu';
    src: local('Ubuntu'), url(985d9f698af7e2d9e1e7815ab61db435.woff2) format('woff2'), url(e0f802c67193ac4964eff31a8111e135.woff) format('woff'), url(bd4c8d3cfb8aa4aae1183cc8908c23ee.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}
body * {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html * {
  box-sizing: border-box;
  font-size: 16px;
  font-family: "pt-sans-regular", Ubuntu, sans-serif;
}

