/* diaries */

.main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@font-face {
  font-family: "Montserrat-Bold";
  font-display: swap;
  src: url("../webfonts/Montserrat-Bold.woff") format("woff"), url("../webfonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-Light";
  font-display: swap;
  src: url("../webfonts/Montserrat-Light.woff") format("woff"), url("../webfonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-Medium";
  font-display: swap;
  src: url("../webfonts/Montserrat-Medium.woff") format("woff"), url("../webfonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-Regular";
  font-display: swap;
  src: url("../webfonts/Montserrat-Regular.woff") format("woff"), url("../webfonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-SemiBold";
  font-display: swap;
  src: url("../webfonts/Montserrat-SemiBold.woff") format("woff"), url("../webfonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-SemiBoldItal";
  font-display: swap;
  src: url("../webfonts/Montserrat-SemiBoldItal.woff") format("woff"), url("../webfonts/Montserrat-SemiBoldItal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-SemiBoldAlternates";
  font-display: swap;
  src: url("../webfonts/Montserrat-SemiBoldAlternates.woff") format("woff"), url("../webfonts/Montserrat-SemiBoldAlternates.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-Thin";
  font-display: swap;
  src: url("../webfonts/Montserrat-Thin.woff") format("woff"), url("../webfonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

.diaries-page {
  margin: 0;
  padding: 0;
  width: 100%;
}

.diaries {
  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%;
  margin-bottom: 60px;
}

.diaries__title {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.7rem;
  color: #454545;
  margin-bottom: 35px;
}

.diaries__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  width: 100%;
  padding: 29px;
  padding-left: 40px;
  padding-right: 48px;
  margin-bottom: 15px;
}

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

.diaries__foto {
  margin-right: 32px;
}

.diaries__foto img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.diaries__fio {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #454545;
  max-width: 148px;
}

.diaries__link {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #EEEEEE !important;
  background: #007EFF;
  border-radius: 8px;
  padding: 12px 55px;
  margin-left: auto;
}

.diaries__link:hover {
  opacity: .6;
}

.diaries__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* page-2 */

@media (max-width: 991px) {
  .diaries {
    margin: 20px;
    margin-top: 32px;
    margin-bottom: 44px;
  }
}

@media (max-width: 576px) {
  .diaries__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 24px;
  }

  .diaries__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 8px;
  }

  .diaries__foto {
    margin-right: 8px;
  }

  .diaries__fio {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .diaries__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin: 0;
    margin-top: 8px;
    width: 100%;
  }
}


.diaries-inner {
  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%;
  margin: 56px;
  margin-bottom: 60px;
}

.diaries-inner__title {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.7rem;
  color: #454545;
  margin-bottom: 35px;
}

.diaries-inner__content {
  padding-top: 28px;
  padding-bottom: 46px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  width: 100%;
}

.diaries-inner__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #F7F7F7;
}

.diaries-inner__foto {
  width: 40px;
  height: 40px;
  margin-right: 32px;
}

.diaries-inner__foto img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.diaries-inner__fio {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #000000;
  max-width: 148px;
}

.diaries-inner__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 31px;
  padding-right: 166px;
  padding-bottom: 32px;
  padding-top: 40px;
}

.diaries-inner__top--first {
  padding-top: 0;
}

.diaries-inner__date {
  font-family: Montserrat-SemiBoldAlternates;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #454545;
  padding-top: 28px;
  padding-left: 40px;
  padding-bottom: 28px;
}

.diaries-inner__wrap {
  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%;
  max-width: 154px;
}

.diaries-inner__wrap--time {
  max-width: 50px;
  margin-right: 38px;
}

.diaries-inner__wrap--situation {
  max-width: 132px;
  margin-right: 85px;
}

.diaries-inner__wrap--thoughts {
  max-width: 280px;
  margin-right: 60px;
}

.diaries-inner__wrap--emotions {
  max-width: 192px;
  margin-right: 40px;
}

.diaries-inner__wrap--feel {
  max-width: 134px;
  margin-right: 43px;
}

.diaries-inner__wrap--behavior {
  max-width: 218px;
}

.diaries-inner__wrap--select {
  width: auto;
  max-width: 100%;
}

.diaries-inner__wrap span {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
}

.diaries-inner__subtitle {
  display: none;
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999;
  margin-bottom: 20px;
}

.diaries-inner__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 128px;
  background: #F7F7F7;
  padding-top: 32px;
  padding-bottom: 33px;
}

.diaries-inner__bottom .diaries-inner__subtitle {
  display: block;
}

.diaries-inner__bottom .diaries-inner__wrap {
  margin-right: 50px;
}

.diaries-inner__bottom .diaries-inner__wrap:last-child {
  margin-right: 0;
}

.diaries-inner__bottom .diaries-inner__subtitle {
  margin-bottom: 16px;
}

.diaries-inner__btn {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: #999999;
  width: 111px;
  padding: 7px 0;
  border: 1px solid #999999;
  border-radius: 20px;
  background: none;
}

.diaries-inner__btn:hover {
  opacity: .6;
}

.diaries-inner__item {
  padding-top: 40px;
}

.diaries-inner__item--first {
  padding-top: 0;
}

.diaries-inner__item--first .diaries-inner__top--first {
  padding-left: 40px;
}

.diaries-inner__item--first .diaries-inner__top--first .diaries-inner__subtitle {
  display: block;
}

.diaries-inner__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 47px;
  margin-right: 48px;
}

.diaries-inner__link {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999999 !important;
  padding: 13px 15px;
  background: #FFFFFF;
  border: 1px solid #999999;
  border-radius: 50px;
}

.diaries-inner__link:hover {
  opacity: .6;
}

.select {
  position: relative;
  width: 100%;
  max-width: 187px;
  height: 48px;
}

.select[data-state="active"] .select__label+.select__input+.select__label {
  max-height: 40px;
  border-top-width: 1px;
}

.select__title {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2.1rem;
  color: #454545;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 13px 17px;
  padding-right: 44px;
  cursor: pointer;
  width: 100%;
  min-width: 187px;
}

.select__title:after {
  content: '';
  position: absolute;
  right: 14px;
  top: 22px;
  width: 12px;
  height: 21px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
}

.select__title:hover {
  border: 1px solid #007EFF;
}

.select__content {
  position: absolute;
  top: 53px;
  left: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(100% - 6px);
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
  z-index: -9;
}

.select__content--active {
  opacity: 1;
  z-index: 8;
}

.select__input {
  display: none;
}

.select__input:checked+label {
  background: #F7F7F7;
}

.select__input:disabled+label {
  opacity: 0.6;
  pointer-events: none;
}

.select__label {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999999;
  padding: 7px;
  cursor: pointer;
}

.select__label:hover {
  background: #F7F7F7;
}

@media (max-width: 1700px) {
  .diaries-inner__top {
    padding-right: 40px;
  }
}

@media (max-width: 1500px) {
  .diaries-inner__wrap--time {
    margin-right: 30px;
  }

  .diaries-inner__wrap--situation {
    margin-right: 30px;
  }

  .diaries-inner__wrap--thoughts {
    margin-right: 30px;
  }

  .diaries-inner__wrap--emotions {
    margin-right: 30px;
  }

  .diaries-inner__wrap--feel {
    margin-right: 30px;
  }
}

@media (max-width: 1280px) {
  .diaries-inner__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 40px;
  }

  .diaries-inner__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .diaries-inner__subtitle {
    display: block;
    width: 100%;
    max-width: 180px;
    margin-right: 16px;
  }

  .diaries-inner__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 40px;
  }

  .diaries-inner__bottom .diaries-inner__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .diaries-inner__bottom .diaries-inner__wrap:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 1280px) and (max-width: 576px) {
  .diaries-inner__bottom .diaries-inner__wrap {
    margin-bottom: 16px;
  }
}

@media (max-width: 991px) {
  .diaries-inner {
    margin: 20px;
    margin-top: 32px;
    margin-bottom: 44px;
  }
}

@media (max-width: 576px) {
  .diaries-inner__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 24px;
  }

  .diaries-inner__content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    background: none;
    padding-top: 0;
  }

  .diaries-inner__name {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0);
    border-radius: 8px;
    padding: 17px;
    margin-bottom: 24px;
  }

  .diaries-inner__foto {
    margin-right: 8px;
  }

  .diaries-inner__fio {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .diaries-inner__top {
    padding: 16px;
    padding-bottom: 8px;
  }

  .diaries-inner__date {
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding: 16px;
  }

  .diaries-inner__wrap span {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .diaries-inner__subtitle {
    font-size: 1rem;
    line-height: 1.2rem;
    max-width: 98px;
    margin-bottom: 0;
  }

  .diaries-inner__bottom {
    padding: 24px 16px;
  }

  .diaries-inner__bottom .diaries-inner__wrap {
    margin-right: 0;
  }

  .diaries-inner__bottom .diaries-inner__subtitle {
    margin-bottom: 8px;
    max-width: 132px;
  }

  .diaries-inner__btn {
    width: 100%;
  }

  .diaries-inner__item--first .diaries-inner__top--first {
    padding-left: 16px;
  }

  .diaries-inner__item {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
  }

  .diaries-inner__next {
    margin-top: 24px;
    margin-right: 0;
  }

  .diaries-inner__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1.5rem;
    width: 100%;
    padding: 8px;
  }
}

.records {
  width: 100%;
  margin: 56px;
  margin-top: 0;
}

.records input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #DDDDDD;
}

.records__title {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.7rem;
  color: #454545;
}

.records__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 56px;
}

.records__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: calc(100% - 184px);
}

.records__info button {
  width: 28px;
  height: 28px;
  margin-left: 19px;
  background: none;
  border-style: none;
}

.records__info button:hover {
  opacity: .6;
}

.records__info button svg {
  width: 28px;
  height: 28px;
}

.records__btn {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #fff !important;
  background: #02C864;
  border-radius: 8px;
  padding: 14px 18px;
  white-space: nowrap;
}

.records__btn:hover {
  opacity: .6;
}

.records__hint {
  display: none;
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2.4rem;
  color: #454545;
  position: absolute;
  right: 50%;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-40%, -50%);
  -ms-transform: translate(-40%, -50%);
  transform: translate(-40%, -50%);
  top: 190px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 100%;
  max-width: 728px;
  padding-top: 60px;
  padding-left: 45px;
  padding-right: 35px;
  padding-bottom: 60px;
}

.records__hint button {
  position: absolute;
  right: 21px;
  top: 26px;
}

.records__hint button svg {
  width: 21px;
  height: 21px;
  fill: #EEEEEE;
}

.records__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  position: relative;
}

.records__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 46px;
  padding-left: 30px;
  padding-right: 39px;
  padding-bottom: 16px;
}

.records__all button {
  border-style: none;
}

.records__all label {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  margin-left: 18px;
}

.records__all-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.records__checkbox {
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 3px;
  cursor: pointer;
}

.records__checkbox--first {
  margin-top: 36px;
}

.records__checkbox:checked {
  background-image: url(../images/checkbox-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.records__checkbox--checked {
  border-radius: 50%;
}

.records__checkbox--checked:checked {
  background-image: url(../images/checkbox-green.svg);
  background-position: center;
}

.records {
  width: 100%;
}

.records__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 40px;
  padding-left: 30px;
  padding-bottom: 8px;
}

.records__date label {
  font-family: Montserrat-SemiBoldAlternates;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #999999;
  padding-left: 16px;
}

.records__deleted {
  background-color: #EEEEEE;
  width: 100%;
  height: 100%;
}

.records__deleted .records__wrap span {
  color: #999;
  opacity: .6;
}

.records__deleted .records__subtitle {
  color: #999;
  opacity: .6;
}

.records__deleted .records__checkbox {
  display: none;
}

.records__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 28px;
  padding-right: 39px;
}

.records__inner--active {
  background: #F7F7F7;
}

.records__inner--checked {
  background: #F5FBFF !important;
}

.records__inner--first .records__subtitle {
  display: block;
}

.records__wrap {
  width: 100%;
}

.records__wrap--checkbox {
  max-width: 20px;
  margin-right: 16px;
}

.records__wrap--time {
  max-width: 50px;
  margin-right: 20px;
}

.records__wrap--situation {
  max-width: 100px;
  margin-right: 20px;
}

.records__wrap--thoughts {
  max-width: 350px;
  margin-right: 20px;
}

.records__wrap--emotions {
  max-width: 192px;
  margin-right: 20px;
}

.records__wrap--feel {
  max-width: 134px;
  margin-right: 20px;
}

.records__wrap--behavior {
  max-width: 218px;
  margin-right: 20px;
}

.records__wrap span {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
}

.records__subtitle {
  display: none;
  font-family: Montserrat-SemiBold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999;
  margin-bottom: 20px;
}

.records__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.records__nav button {
  background: none;
  border-style: none;
}

.records__nav .remain__btn {
  border: 1px solid #999999;
  border-radius: 50px;
}

.records__nav button,
.records__nav a {
  margin-right: 16px;
}

.records__nav button:hover,
.records__nav a:hover {
  opacity: .6;
}

.records__nav button:last-child,
.records__nav a:last-child {
  margin-right: 0;
}

.records__nav svg {
  width: 36px;
  height: 36px;
}

.records__nav-mobile {
  display: none;
}

.records__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 47px;
  margin-right: 39px;
  margin-bottom: 55px;
}

.records__link {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999999 !important;
  background: #FFFFFF;
  border: 1px solid #999999;
  border-radius: 50px;
  padding: 12px 15px;
}

.records__link:hover {
  opacity: .6;
}

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

.records__checkbox-wrap span {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1rem;
  color: #454545;
  margin-left: 6px;
  display: none;
  max-width: 126px;
}

.records__share {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #fff;
  background: #007EFF;
  border-radius: 8px;
  padding: 11px 14px;
}

.records__share:hover {
  opacity: .6;
}

.records__share:disabled {
  opacity: .3;
  cursor: auto;
}

.records__popup-checked {
  display: none;
  position: absolute;
  left: 30px;
  top: -23px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 100%;
  min-width: 280px;
  padding: 20px;
  padding-bottom: 42px;
}

.records__popup-checked span {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  max-width: 187px;
  margin-bottom: 16px;
  display: block;
}

.records__foto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.records__foto img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.records__fio {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #454545;
  margin-left: 14px;
}

.technique__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
}

.technique__inner .records__nav {
  margin-left: auto;
}

.share {
  display: none;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 40px;
  padding-top: 53px;
  padding-bottom: 48px;
  width: 100%;
  max-width: 728px;
  position: fixed;
  left: 50%;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
}

.share .SumoSelect .optWrapper .options {
  max-height: 200px;
  overflow-y: auto;
}

.share__title {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #454545;
  position: relative;
  margin-bottom: 26px;
}

.share__close {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border-style: none;
}

.share__close svg {
  width: 21px;
  height: 21px;
}

.share__close:hover {
  opacity: .6;
}

.share__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
}

.share__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.share__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F7F7F7;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 8px;
}

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

.share__foto {
  width: 40px;
  height: 40px;
  margin-right: 32px;
}

.share__foto img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.share__fio {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #000000;
  max-width: 143px;
  word-break: break-word;
  margin-right: 29px;
}

.share__position {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999;
  margin-right: 49px;
}

.share__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #EEEEEE;
  background: #007EFF;
  border-radius: 8px;
  padding: 11px;
  width: 100%;
  max-width: 180px;
  border-style: none;
}

.share__btn:hover {
  opacity: .6;
}

.share__btn:disabled {
  opacity: .3;
  cursor: auto;
}

@media (max-width: 1480px) {
  .records__content {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .diary__records {
    background: none;
  }

  .records__all {
    padding-top: 0;
    padding-left: 14px;
  }

  .records__date {
    padding: 11px 14px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-top: 19px;
    margin-bottom: 16px;
  }

  .records__inner {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 16px;
    padding-left: 16px;
  }

  .records__deleted {
    background-color: #EEEEEE;
  }

  .records__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .records__wrap--checkbox {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
  }

  .records__wrap--checkbox .records__checkbox--first {
    margin-top: 0;
  }

  .records__subtitle {
    display: block;
    width: 100%;
    max-width: 145px;
    margin-right: 16px;
    margin-bottom: 0;
  }

  .diary__records .records__nav {
    display: none;
  }

  .records__nav-mobile {
    display: flex !important;
  }

  .records__nav-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .records__next {
    margin-right: 0;
  }

  .share__item {
    padding-right: 16px;
  }
}

@media (max-width: 991px) {
  .records {
    margin: 16px;
  }

  .records__header {
    position: relative;
  }

  .records__info {
    position: static;
  }

  .records__hint {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 300px;
  }
}

@media (max-width: 576px) {
  .records__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .records__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 19px;
  }

  .records__info {
    width: 100%;
    margin-bottom: 24px;
  }

  .records__info button {
    margin-left: 8px;
  }

  .records__info button svg {
    width: 20px;
    height: 20px;
  }

  .records__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1.7rem;
    width: 100%;
    padding: 11px;
  }

  .records__hint {
    font-size: 1.2rem;
    line-height: 1.7rem;
    padding: 16px;
    padding-top: 32px;
    padding-bottom: 21px;
    top: 176px;
    max-width: 100%;
  }

  .records__hint button {
    right: 9px;
    top: 9px;
  }

  .records--active {
    position: relative;
  }

  .records--active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .records__all {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .records__all label {
    font-size: 1.4rem;
    line-height: 1.7rem;
    margin-left: 8px;
  }

  .records__all-wrap {
    margin-top: 24px;
    padding-left: 14px;
  }

  .records__checkbox {
    width: 16px;
    height: 16px;
  }

  .records__date label {
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding-left: 11px;
  }

  .records__inner {
    padding: 16px;
  }

  .records__wrap span {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .records__subtitle {
    font-size: 1rem;
    line-height: 1.2rem;
    max-width: 98px;
  }

  .records__nav button,
  .records__nav a {
    margin-right: 8px;
  }

  .records__nav svg {
    width: 24px;
    height: 24px;
  }

  .records__next {
    margin-top: 8px;
  }

  .records__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px 0;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .records__checkbox-wrap span {
    display: block;
  }

  .records__share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }

  .records__popup-checked {
    display: none;
  }

  .share {
    padding: 16px;
    padding-top: 32px;
    padding-bottom: 24px;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
  }

  .share__title {
    font-family: Montserrat-SemiBold;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.7rem;
    margin-bottom: 16px;
  }

  .share__wrap {
    margin-bottom: 9px;
  }

  .share__name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .share__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 16px;
  }

  .share__foto {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }

  .share__foto img {
    width: 24px;
    height: 24px;
  }

  .share__fio {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 3px;
    margin-right: 0;
  }

  .share__position {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .share__btn {
    font-size: 1.2rem;
    line-height: 1.5rem;
    max-width: 100%;
    padding: 8px;
  }
}


.diary {
  width: 100%;
  margin: 56px;
  margin-top: 0;
}

.diary__title {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.7rem;
  color: #454545;
}

.diary__content {
  margin-top: 35px;
  padding: 91px;
  padding-right: 80px;
  padding-top: 48px;
  padding-bottom: 48px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  position: relative;
}

.diary__hidden {
  display: none;
}

.diary__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 44px;
}

.diary__field {
  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%;
  margin-right: 46px;
}

.diary__field:last-child {
  margin-right: 0;
}

.diary__label {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999;
  margin-bottom: 18px;
}

.diary__input {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #999;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  padding: 13px;
  padding-left: 16px;
  width: 100%;
}

.diary__input::-webkit-input-placeholder {
  color: #999;
}

.diary__input::-moz-placeholder {
  color: #999;
}

.diary__input:-ms-input-placeholder {
  color: #999;
}

.diary__input::-ms-input-placeholder {
  color: #999;
}

.diary__input::placeholder {
  color: #999;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

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

.diary__inner .diary__field {
  max-width: 100%;
  margin-bottom: 32px;
}

.diary__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}

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

.diary__checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.diary__label-input {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  display: flex;
}

.diary__add {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 15px;
  border-style: none;
  background: none;
}

.diary__add:hover {
  opacity: .6;
}

.diary__add svg {
  width: 20px;
  height: 20px;
}

.diary__add-checkbox {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 15px;
  background: none;
  border-style: none;
}

.diary__add-checkbox:hover {
  opacity: .6;
}

.diary__add-checkbox svg {
  width: 20px;
  height: 20px;
}

.diary__radio {
  width: 20px;
  height: 20px;
  border: 2px solid #DDDDDD !important;
  border-radius: 50%;
  margin-right: 16px;
  position: relative;
  cursor: pointer;
}

.diary__radio:checked {
  border: 2px solid #01B1FE !important;
}

.diary__radio:checked::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #01B1FE;
  width: 12px;
  height: 12px;
}

.diary__checkbox-input {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 2px solid #DDDDDD !important;
  margin-right: 16px;
  cursor: pointer;
}

.diary__checkbox-input:checked {
  border: 2px solid #01B1FE !important;
  background-image: url(../images/checkbox-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.diary__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 160px;
}

.diary__nav .diary__label {
  max-width: 154px;
}

.diary__btn {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999999;
  padding: 12px;
  background: #FFFFFF;
  border: 1px solid #999999;
  border-radius: 50px;
}

.diary__btn:hover {
  opacity: .6;
}

.diary__left {
  width: 100%;
  max-width: 220px;
}

.diary__center {
  width: 100%;
  max-width: 309px;
  margin-left: 60px;
}

.diary__center .diary__field {
  margin-bottom: 16px;
}

.diary__textarea {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  width: 100%;
  height: 521px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  padding: 18px;
  padding-top: 20px;
  resize: none;
}

.diary__textarea::-webkit-input-placeholder {
  color: #454545;
  opacity: .6;
  padding-right: 54px;
}

.diary__textarea::-moz-placeholder {
  color: #454545;
  opacity: .6;
  padding-right: 54px;
}

.diary__textarea:-ms-input-placeholder {
  color: #454545;
  opacity: .6;
  padding-right: 54px;
}

.diary__textarea::-ms-input-placeholder {
  color: #454545;
  opacity: .6;
  padding-right: 54px;
}

.diary__textarea::placeholder {
  color: #454545;
  opacity: .6;
  padding-right: 54px;
}

.diary__textarea--sm {
  height: 274px;
}

.diary__right {
  margin-left: 33px;
}

.diary__range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 20px;
  margin-bottom: 12px;
}

.diary__range .diary__label {
  font-family: Montserrat-Regular;
  font-weight: 400;
  color: #454545;
  width: 115px;
  min-width: 72px;
  margin-right: 14px;
  margin-bottom: 0;
}

.diary-info {
  margin-top: 24px;
  margin-bottom: 16px;
}

.diary__input-range {
  width: 242px;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 8px;
  cursor: pointer;
}

.diary__input-range::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #EEEEEE;
}

.diary__input-range::-webkit-slider-thumb {
  cursor: pointer;
  width: 0px;
  height: 0px;
  -webkit-appearance: none;
  margin-top: -4px;
}

.diary__input-range::-moz-range-track {
  height: 7px;
  background-color: #EEEEEE;
}

.diary__input-range::-moz-range-thumb {
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  padding: 0px;
  margin: 0px;
  border-style: none;
  background: none;
}

.diary__input-range--blue::-webkit-slider-thumb {
  -webkit-box-shadow: -200px 0 0 200px #85D6FF;
  box-shadow: -200px 0 0 200px #85D6FF;
}

.diary__input-range--blue::-moz-range-thumb {
  box-shadow: -200px 0px 0px 200px #85D6FF;
  background: #85D6FF;
}

.diary__input-range--red::-webkit-slider-thumb {
  -webkit-box-shadow: -200px 0 0 200px #DC143C;
  box-shadow: -200px 0 0 200px #DC143C;
}

.diary__input-range--red::-moz-range-thumb {
  box-shadow: -200px 0px 0px 200px #DC143C;
  background: #DC143C;
}

.diary__input-range--yellow::-webkit-slider-thumb {
  -webkit-box-shadow: -200px 0 0 200px #FCFF73;
  box-shadow: -200px 0 0 200px #FCFF73;
}

.diary__input-range--yellow::-moz-range-thumb {
  box-shadow: -200px 0px 0px 200px #FCFF73;
  background: #FCFF73;
}

.diary__input-range--purple::-webkit-slider-thumb {
  -webkit-box-shadow: -200px 0 0 200px #F37CD9;
  box-shadow: -200px 0 0 200px #F37CD9;
}

.diary__input-range--purple::-moz-range-thumb {
  box-shadow: -200px 0px 0px 200px #F37CD9;
  background: #F37CD9;
}

.diary__input-range--green::-webkit-slider-thumb {
  -webkit-box-shadow: -200px 0 0 200px #5BDE8B;
  box-shadow: -200px 0 0 200px #5BDE8B;
}

.diary__input-range--green::-moz-range-thumb {
  box-shadow: -200px 0px 0px 200px #5BDE8B;
  background: #5BDE8B;
}


.diary__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.diary__step span {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2rem;
  color: #DDDDDD;
}

.diary__span-blue {
  color: #85D6FF !important;
}

.diary__span-red {
  color: #DC143C !important;
}

.diary__span-yellow {
  color: #fff343 !important;
}

.diary__span-purple {
  color: #C4A9FF !important;
}

.diary__span-green {
  color: #5BDE8B !important;
}

.diary__span-transparent {
  color: #fff !important;
}

.diary__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 29px;
  width: 100%;
}

.diary__more .diary__btn {
  width: 100%;
  max-width: 160px;
}

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

.diary__btn-save {
  font-family: Montserrat-Bold;
  font-weight: 1.4rem;
  line-height: 1.7rem;
  color: #EEEEEE;
  background: #007EFF;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  max-width: 174px;
  margin-top: 40px;
  border-style: none;
}

.diary__btn-save:hover {
  opacity: .6;
  background: #007EFF;
}

.techniques__btn-save {
  font-family: Montserrat-Bold;
  font-weight: 1.4rem;
  line-height: 1.7rem;
  color: #EEEEEE;
  background: #007EFF !important;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  max-width: 174px;
  border-style: none;
  margin: 20px;
}

.techniques__btn-save:hover {
  opacity: .6;
  background: #007EFF;
}

.about {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  left: 50%;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 4;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 100%;
  max-width: 554px;
  padding: 22px;
  padding-right: 32px;
  padding-left: 24px;
  padding-bottom: 30px;
}

.about__title {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #999;
}

.about__textarea {
  font-family: Montserrat-Regular;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  padding: 18px;
  padding-top: 20px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  height: 174px;
  margin-bottom: 16px;
  resize: none;
}

.about__btn {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #EEEEEE;
  background: #007EFF;
  border-radius: 8px;
  border-style: none;
  padding: 12px;
  max-width: 174px;
  cursor: pointer;
  text-align: center;
}

.about__btn:hover {
  opacity: .6;
}

.about__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 11px;
}

.about__header button {
  border-style: none;
  background: none;
}

.about__close:hover {
  opacity: .6;
}

.about__close svg {
  width: 21px;
  height: 21px;
}

.about__title-mobile {
  display: none;
  font-family: Montserrat-Bold;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #454545;
  margin-bottom: 16px;
}

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

@media (max-width: 1480px) {
  .diary {
    margin: 16px;
  }

  .diary__content {
    padding: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .diary__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .diary__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
  }

  .diary__left .diary__field {
    margin-right: 0;
  }

  .diary__center {
    margin-left: 0;
    max-width: 100%;
  }

  .diary__textarea {
    height: 220px;
  }

  .diary__textarea--sm {
    height: 160px;
  }

  .diary__right {
    margin-left: 0;
    margin-top: 20px;
  }

  .diary__more {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .about {
    top: 16.5%;
  }
}

@media (max-width: 680px) {
  .diary__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .diary--margin {
    margin: 0;
  }

  .diary__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .diary__content {
    margin-top: 16px;
  }

  .diary__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 8px;
  }

  .diary__field {
    margin-right: 0;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .diary__label {
    font-size: 1.4rem;
    line-height: 1.7rem;
    margin-bottom: 8px;
  }

  .diary__input {
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding: 11px;
    padding-left: 16px;
    max-width: 100%;
  }

  .diary__checkbox {
    margin-bottom: 0;
    margin-top: 16px;
    height: 20px;
  }

  .diary__label-input {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }

  .diary__radio {
    width: 16px;
    height: 16px;
    margin-right: 20px;
  }

  .diary__radio:checked::after {
    width: 8px;
    height: 8px;
  }

  .diary__checkbox-input {
    width: 16px;
    height: 16px;
  }

  .diary__nav {
    max-width: 100%;
  }

  .diary__btn {
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding: 8px;
    width: 100%;
  }

  .diary__textarea {
    font-size: 1.4rem;
    line-height: 1.7rem;
    padding-left: 12px;
    height: 200px;
  }

  .diary__range {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .diary__range-wrap {
    width: 100%;
    margin-top: 8px;
  }

  .diary__input-range {
    width: 100%;
  }

  .diary__input-range--blue::-webkit-slider-thumb {
    -webkit-box-shadow: -300px 0 0 300px #85D6FF;
    box-shadow: -300px 0 0 300px #85D6FF;
  }

  .diary__input-range--blue::-moz-range-thumb {
    box-shadow: -300px 0 0 300px #85D6FF;
  }

  .diary__input-range--red::-webkit-slider-thumb {
    -webkit-box-shadow: -300px 0 0 300px #DC143C;
    box-shadow: -300px 0 0 300px #DC143C;
  }

  .diary__input-range--red::-moz-range-thumb {
    box-shadow: -300px 0 0 300px #DC143C;
  }

  .diary__input-range--yellow::-webkit-slider-thumb {
    -webkit-box-shadow: -300px 0 0 300px #FCFF73;
    box-shadow: -300px 0 0 300px #FCFF73;
  }

  .diary__input-range--yellow::-moz-range-thumb {
    box-shadow: -300px 0 0 300px #FCFF73;
  }

  .diary__input-range--purple::-webkit-slider-thumb {
    -webkit-box-shadow: -300px 0 0 300px #C4A9FF;
    box-shadow: -300px 0 0 300px #C4A9FF;
  }

  .diary__input-range--purple::-moz-range-thumb {
    box-shadow: -300px 0 0 300px #C4A9FF;
  }

  .diary__input-range--green::-webkit-slider-thumb {
    -webkit-box-shadow: -300px 0 0 300px #5BDE8B;
    box-shadow: -300px 0 0 300px #5BDE8B;
  }

  .diary__input-range--green::-moz-range-thumb {
    box-shadow: -300px 0 0 300px #5BDE8B;
  }

  .diary__more .diary__btn {
    max-width: 100%;
  }

  .select {
    height: 32px;
    max-width: 100%;
  }

  .select__title {
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding: 8px;
    padding-left: 13px;
    padding-right: 40px;
    width: 100%;
  }

  .select__title:after {
    top: 14px;
  }

  .select__content {
    top: 37px;
  }

  .about {
    top: 799px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    position: fixed;
    margin-left: -1px;
    width: calc(101%);
  }

  .about__title {
    color: #454545;
  }

  .about__textarea {
    font-size: 1.2rem;
    line-height: 1.5rem;
    height: 217px;
  }

  .about__btn {
    max-width: 100%;
  }

  .about__header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    padding: 21px 0;
    margin-bottom: 28px;
  }

  .about__close {
    position: absolute;
    right: 21px;
    top: 20px;
  }

  .about__close svg {
    width: 10px;
    height: 10px;
  }

  .about__title-mobile {
    display: block;
  }

  .about__wrap {
    padding: 0 20px;
    padding-bottom: 1200px;
  }
}

.text-page {
  width: 100%;
  margin: 56px;
}

.text-page__title {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.7rem;
  color: #454545;
}

.text-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 44px;
}

.text__item img {
  width: 64%;
  margin-bottom: 16px;
  margin-top: 10px;
}

.text-page button {
  border-style: none;
}

.text-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 24px;
  padding-top: 34px;
  padding-right: 14px;
  padding-bottom: 37px;
  margin-right: 40px;
  width: calc(33.3333% - 40px);
  margin-bottom: 25px;
  max-width: 344px;
  min-height: 224px;
}

.text-page__item:last-child {
  margin-right: 0;
}

.text-page__subtitle {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #454545;
  margin-bottom: 8px;
}

.technique__title {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #454545;
  margin-bottom: 21px;
}

.technique__subtitle {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.1rem;
  color: #999;
  margin-bottom: 8px;
}

.text-page__desc {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.1rem;
  color: #999999;
  max-width: 306px;
  margin-bottom: 21px;
}

.text-page__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #EEEEEE !important;
  background: #007EFF;
  border-radius: 8px;
  padding: 12px;
  max-width: 220px;
  margin-top: auto;
}

.text-page__link:hover {
  opacity: .6;
}

.text-page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.text-page__header button {
  background: none;
}

.text-page__btn {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 2.1rem;
  color: #999999;
}

.text-page__btn svg {
  width: 12px;
  height: 21px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-left: 10px;
}

.text {
  margin-top: 32px;
  margin-bottom: 120px;
}

.text__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 16px;
}

.text__item h2 {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #454545;
  margin-bottom: 16px;
}

.text__item h3 {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  margin-bottom: 8px;
}

.text__item a {
  font-family: Montserrat-Regular;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 2.1rem;
  color: #007BFF;
  margin-bottom: 8px;
}

.text__item a:hover {
  opacity: .6;
}

.text__item ol {
  display: list-item;
  list-style-position: outside;
  list-style-type: decimal !important;
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  margin-left: 15px;
  margin-bottom: 40px;
}

.text__item li {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  margin-bottom: 5px;
  max-width: 900px;
}

.text__item ul {
  margin-bottom: 16px;
}

.text__item ul li {
  list-style: none;
  margin-bottom: 0;
}

.text__item span {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  margin-bottom: 24px;
  max-width: 900px;
}

.text__item p {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2rem;
  color: #454545;
  margin-bottom: 24px;
  max-width: 900px;
}

.text__item span:last-child {
  margin-bottom: 0;
}

.text__btn {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #FFFFFF;
  background: #007EFF;
  border-radius: 8px;
  padding: 13px 17px;
  max-width: 248px;
}

.text__btn:hover {
  background: #007EFF;
}

.text__hidden {
  display: none;
}

@media (max-width: 1280px) {
  .text-page__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .text-page__item {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 28px;
    min-height: 180px;
  }

  .text-page__item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .text-page {
    margin: 16px;
    margin-top: 32px;
  }

  .text__item img {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .text-page__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .text-page__content {
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .text-page__item {
    padding: 24px 16px;
    min-height: 126px;
  }

  .text-page__subtitle {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .technique__title {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .technique__subtitle {
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .text-page__desc {
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .text-page__link {
    font-size: 1.2rem;
    line-height: 1.5rem;
    max-width: 100%;
    padding: 9px;
  }

  .text-page__header {
    -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;
  }

  .text-page__btn {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-top: 16px;
  }

  .text-page__btn svg {
    margin-left: 8px;
    margin-top: 3px;
  }

  .text {
    margin-top: 24px;
  }

  .text__item {
    padding: 24px 16px;
  }

  .text__item h2 {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 8px;
  }

  .text__item h3 {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 8px;
  }

  .text__item a {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }

  .text__item ol {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-left: 0;
    display: block;
    margin-bottom: 30px;
  }

  .text__item li {
    font-size: 1.2rem;
    line-height: 1.5rem;
    list-style: none;
    margin-bottom: 0;
  }

  .text__item span {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 16px;
  }

  .text__item p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 16px;
  }

  .text__btn {
    font-size: 1.2rem;
    line-height: 1.5rem;
    max-width: 100%;
    padding: 9px;
  }

}

/* chat */

.chat {
  width: 100%;
  max-width: 1108px;
  margin: 56px;
}

.chat__title {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.7rem;
  color: #454545;
}

.chat__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-top: 40px;
  margin-bottom: 64px;
}

.chat__mask {
  padding-top: 21px;
  padding-bottom: 24px;
  padding-left: 42px;
}

.chat__mask svg {
  width: 42px;
  height: 42px;
  fill: green;
}

.chat__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 22px;
  padding-bottom: 25px;
  padding-left: 24px;
  padding-right: 50px;
}

.chat__input {
  font-family: Montserrat-Regular;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #454545;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 16px;
  padding: 16px;
  height: 64px;
  width: 100%;
}

.chat__input::-webkit-input-placeholder {
  color: #999999;
}

.chat__input::-moz-placeholder {
  color: #999999;
}

.chat__input:-ms-input-placeholder {
  color: #999999;
}

.chat__input::-ms-input-placeholder {
  color: #999999;
}

.chat__input::placeholder {
  color: #999999;
}

.chat__btn {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #fff;
  background: #007EFF;
  border-radius: 8px;
  padding: 21px 26px;
  margin-left: 15px;
}

.chat__btn:hover {
  opacity: .6;
}

.chat__notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 64px;
}

.chat .text-page {
  margin: 0;
}

/* editor */
.editor {
  margin-bottom: 64px;
}

.editor__nav {
  padding: 15px 32px;
  border-bottom: 1px solid #DDDDDD;
}

.editor__field {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #454545;
  padding: 24px 32px;
  height: 100%;
  min-height: 347px;
}

.editor__btn {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #454545;
  margin-right: 24px;
}

.editor__btn:hover {
  opacity: .6;
}

.editor__btn--1 {
  font-family: Montserrat-Bold;
  font-weight: 700;
}

.editor__btn--2 {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-style: italic;
}

.editor__btn--3 {
  text-decoration-line: underline;
}

.editor__btn--4 {
  text-decoration-line: line-through;
}

@media (max-width: 991px) {
  .text-page {
    margin: 16px;
    margin-top: 32px;
  }

  .chat {
    margin: 16px;
    margin-top: 32px;
  }

  .text__item img {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .technique__title {
    margin: 2.5rem 0 2rem 0;
  }

  .technique__subtitle {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .text-page__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .text-page__content {
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .text-page__item {
    padding: 24px 16px;
    min-height: 126px;
  }

  .text-page__subtitle {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .technique__title {
    font-size: 1.4rem;
    line-height: 1.5rem;
    margin: 2.5rem 0 0.5rem 0;
  }

  .technique__subtitle {
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin: 1rem 0 0.5rem 0;
    max-width: 100%;
  }

  .text-page__desc {
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .text-page__link {
    font-size: 1.2rem;
    line-height: 1.5rem;
    max-width: 100%;
    padding: 9px;
  }

  .text-page__header {
    -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;
  }

  .text-page__btn {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-top: 16px;
  }

  .text-page__btn svg {
    margin-left: 8px;
    margin-top: 3px;
  }

  .text {
    margin-top: 24px;
  }

  .text__item {
    padding: 24px 16px;
  }

  .text__item h2 {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 8px;
  }

  .text__item h3 {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 8px;
  }

  .text__item a {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }

  .text__item ol {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-left: 0;
    display: block;
    margin-bottom: 30px;
  }

  .text__item li {
    font-size: 1.2rem;
    line-height: 1.5rem;
    list-style: none;
    margin-bottom: 0;
  }

  .text__item span {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 16px;
  }

  .text__item p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 16px;
  }

  .text__btn {
    font-size: 1.2rem;
    line-height: 1.5rem;
    max-width: 100%;
    padding: 9px;
  }

  .chat__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .chat__content {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 32px;
    margin-bottom: 32px;
    background: none;
  }

  .chat__mask {
    background: #FFFFFF;
    border-radius: 16px 16px 0px 0px;
    padding: 8px 16px;
  }

  .chat__nav {
    margin-top: 16px;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .chat__input {
    margin-bottom: 16px;
    height: 296px;
  }

  .chat__btn {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-left: 0;
    padding: 9px;
    max-width: 100%;
  }

  /* editor */
  .editor {
    margin-bottom: 32px;
  }

  .editor__inner {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 8px;
    margin-top: 16px;
  }

  .editor__nav {
    padding: 15px 15px;
    border-top: 1px solid #DDDDDD;
    border-bottom: none;
  }

  .editor__field {
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding: 18px 16px;
    min-height: 400px;
  }

  .editor__btn {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
}

.notes {
  width: 100%;
  margin: 56px;
  margin-bottom: 120px;
}

.notes__title {
  font-family: Montserrat-Bold;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.7rem;
  color: #454545;
}

.notes__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.notes__panel {
  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%;
  max-width: 334px;
  overflow-y: auto;
  max-height: 832px;
  background: #FFFFFF;
  border-radius: 16px;
  margin-right: 32px;
}

.notes__add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 21px 38px;
}

.notes__add button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #454545;
  border-style: none;
  background: none;
}

.notes__add button:hover {
  opacity: .6;
  background: none;
  border-style: none;
}

.notes__add svg {
  width: 21px;
  height: 21px;
  margin-right: 19px;
  margin-bottom: 2px;
}

.notes__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 11px 20px;
  border-top: 1px solid #DDDDDD;
}

.notes__item a {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #454545;
}

.notes__item a:hover {
  opacity: .6;
}

.notes__item p {
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #454545;
}

.notes__item span {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #CCCCCC;
  margin-top: 8px;
}

/* editor */
.editor {
  width: 100%;
}

.editor__del {
  margin-left: auto;
}

.editor__del:hover {
  opacity: .6;
}

.editor__del svg {
  width: 14px;
  height: 18px;
}

.editor__inner {
  background: #FFFFFF;
  border-radius: 16px;
}

.editor__nav {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 32px;
  border-bottom: 1px solid #DDDDDD;
}

.editor__nav button {
  border-style: none;
  background: none;
}

.editor__field {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #454545;
  padding: 24px 32px;
  height: 100%;
  min-height: 776px;
  margin-bottom: 60px;
}

.editor__btn {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #454545;
  margin-right: 24px;
}

.editor__btn:hover {
  opacity: .6;
}

.editor__btn--1 {
  font-family: Montserrat-Bold;
  font-weight: 700;
}

.editor__btn--2 {
  font-family: Montserrat-Regular;
  font-weight: 400;
  font-style: italic;
}

.editor__btn--3 {
  text-decoration-line: underline;
}

.editor__btn--4 {
  text-decoration-line: line-through;
}

.records__wrap--d {
  display: none;
}

@media (max-width: 1480px) {
  .notes {
    margin: 16px;
    margin-top: 32px;
  }

  .records__wrap--d {
    display: flex;
  }
}

@media (max-width: 1280px) {
  .notes__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .notes__panel {
    max-width: 100%;
    margin-bottom: 28px;
  }
}

@media (max-width: 768px) {
  .notes__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 21px;
  }
}

@media (max-width: 576px) {
  .notes__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .notes__panel {
    max-width: 100%;
    margin-right: 0;
    background: none;
    border-radius: 0;
    overflow: visible;
    max-height: 100%;
  }

  .notes__wrap {
    display: none;
    margin-bottom: 16px;
  }

  .notes__wrap .notes__item:last-child {
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .notes__wrap--active {
    display: block;
  }

  .notes__add {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 16px 13px;
  }

  .notes__add button {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .notes__add svg {
    width: 16px;
    height: 16px;
    margin-bottom: 0;
    margin-right: 9px;
  }

  .notes__item--mobile {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border-top: none;
    margin-bottom: 16px;
    padding: 10px 11px;
    padding-top: 9px;
    position: relative;
    margin-bottom: 16px !important;
    border-bottom: none !important;
  }

  .notes__item--mobile:after {
    content: '';
    position: absolute;
    right: 12px;
    top: 13px;
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 21px;
  }

  .notes__item {
    margin-bottom: 16px;
    padding: 10px 11px;
    padding-top: 9px;
    border-top: none;
    border-bottom: 1px solid #DDDDDD;
    background: #FFFFFF;
    margin-bottom: 0;
  }

  .notes__item:last-child {
    border-bottom: none;
  }

  .notes__item--active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #DDDDDD !important;
  }

  .notes__item a {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .notes__item p {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  .notes__item span {
    font-size: 1rem;
    line-height: 1.2rem;
    margin-top: 2px;
  }

  /* editor */
  .editor {
    margin-bottom: 32px;
  }

  .editor__inner {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 8px;
  }

  .editor__nav {
    padding: 15px 15px;
    border-top: 1px solid #DDDDDD;
    border-bottom: none;
  }

  .editor__field {
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding: 18px 16px;
    min-height: 400px;
  }

  .editor__btn {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
}

.calendar-select {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.calendar-select p {
  font-size: 16px;
  color: #454545;
  margin-bottom: 8px;
}

.calendar-select .CaptionCont {
  display: flex;
  align-items: center;
  width: 100% !important;
  max-width: 430px;
}

.calendar-select .SumoSelect {
  width: 100%;
  max-width: 430px !important;
}

.calendar-select__wrap {
  display: flex;
  align-items: center;
}

.calendar-info__avatar {
  margin-right: 20px;
}

.calendar-info__link {
  font-size: 16px;
  line-height: 18px;
  color: #454545;
  transition: .2s;
}

.calendar-info__link:hover {
  opacity: .6;
  color: #454545;
}

.calendar-info__avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

@media (max-width:767.98px) {
  .calendar-select__btn {
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
  }

  .calendar-select__wrap {
    flex-wrap: wrap;
  }

  .calendar-select .SumoSelect {
    width: calc(100% - 80px) !important;
    max-width: 100% !important;
  }

  .calendar-select .CaptionCont {
    max-width: 100%;
  }
}

.share .calendar-select {
  margin-top: 32px;
}

@media (max-width: 1350px) {
  .records__content--inner .col-md-4 {
    max-width: 100%;
    flex: 1;
    width: 100%;
  }

  .records__content--inner {
    flex-direction: column;
  }

  .records__content--inner .m-4 {
    flex-direction: column;
  }

  .records__content-wrapper {
    margin-bottom: 32px;
  }

  .records__content-label {
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .records__content-wrapper {
    margin-bottom: 16px;
  }

  .records__content-label {
    margin-bottom: 16px;
  }
}