:root {
  --pruffme-button-hover-color: #f9f9f9;
  --pruffme-main-text-color: #000000;
  --pruffme-light-shadow: 0 5px 15px -5px rgb(0 0 0 / 51%);

  --cabinet-add-header-height: 80px;
  --cabinet-add-header-bg-color: #0667b0;

  --landing-max-width: 1260px;
  --landing-border-color: #eeeeee;
  --landing-undefined-color: #e6e6e6;

  --landing-secondary-text-color: #9a9a9a;
  --landing-main-text-color: #157ee1;

  --landing-main-box-spacing: 20px 30px;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 100vh;
  overflow-y: auto;
  overflow-y: overlay;

  background-color: #f9f9f9;
}

p {
  margin: 0;
}

header {
  flex: 0 0 auto;

  width: 100%;
}

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
  margin-top: 100px;
}

main {
  font-size: 11pt;
}

.landing-box {
  background-color: #fff;

  border: 1px solid var(--landing-border-color);
  border-radius: 5px;

  margin-bottom: 10px;
}

.landing-header {
  font-size: 13pt;
  font-weight: bold;
  color: var(--landing-secondary-text-color);
}

.landing-user__inner {
  width: 100%;
  max-width: var(--landing-max-width);

  display: flex;
  justify-content: space-between;

  margin: 20px auto;
  padding: 0 10px;
}

.landing-user__main-content {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.landing-user__template-edit-button {
  display: flex;
  justify-content: center;
  align-items: end;

  font-size: 10pt;
  font-weight: bold;
  color: var(--landing-main-text-color);

  width: 100%;

  padding: 10px 40px;
  border-radius: 5px;
  border: none;

  background-color: #e7f2fc;
  transition: background-color 0.2s ease-in-out;
}

.landing-user__template-edit-button-icon {
  width: 20px;
  height: 20px;

  background-size: contain;
  background-image: url(../images/pages/profile/icon_plus_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.landing-user__template-edit-button:hover {
  background-color: #d0e5f9;
}

.landing-user__template-edit-button.small {
  max-width: 180px;
}

.landing-user__template-edit-button.xs {
  max-width: 170px;
  padding: 8px 20px;
  font-size: 9pt;
}

.landing-user__template-change-button {
  background-color: transparent;
  padding: 5px;
  border: none;

  font-size: 10pt;
  font-weight: normal;
  color: #c5c5c5;

  transition: color 0.2s ease-in-out;
}

.landing-user__template-change-button:hover {
  color: var(--landing-secondary-text-color);
}

.landing-user__template-input-box {
  margin-bottom: 20px;
}

.landing-user__template-input-box:last-child {
  margin-bottom: 0;
}

.landing-user__template-input-label {
  display: block;
  margin-bottom: 5px;

  color: var(--pruffme-main-text-color);
}

.landing-user__template-input {
  padding: 10px 15px;

  border-radius: 5px;
  border: 1px solid var(--landing-border-color);
  background-color: #ffffff;
}

.landing-user__template-input:hover {
  background-color: var(--pruffme-button-hover-color);
}

.landing-user__template-textarea {
  padding: 10px 15px;

  border-radius: 5px;
  border: 1px solid var(--landing-border-color);
  resize: none;
}

.landing-user__template-textarea:hover {
  background-color: var(--pruffme-button-hover-color);
}

.landing-user__template-input.large,
.landing-user__template-textarea.large {
  width: 100%;
}

.landing-user__template-iconinput-box {
  display: flex;
  position: relative;
  align-items: center;
}

.landing-user__template-iconinput-icon {
  position: absolute;

  top: 10px;
  left: 10px;

  height: 20px;
  width: 20px;
  flex-shrink: 0;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

.landing-user__template-iconinput-input {
  flex-grow: 1;

  margin: 0;
  padding: 0 5px 0 40px;

  background-color: #ffffff;
  border: 1px solid var(--landing-border-color);
  border-radius: 5px;
  height: 40px;
}

.landing-user__template-spacing-box {
  margin-bottom: 10px;
}

.landing-user__template-select {
  min-width: 60px;
  padding: 10px 15px;
  margin-left: 10px;

  border-radius: 5px;
  border: 1px solid var(--landing-border-color);

  transition: border 0.2s ease-in-out;
}

.landing-user__template-select:first-child {
  margin-left: 0;
}

.landing-user__template-select > option {
  padding: 10px 15px;
  width: 100%;
}

.landing-user__template-select.error,
.landing-user__template-input.error,
.landing-user__template-textarea.error {
  border: 1px solid crimson;
}

.landing-user__calendar-day-edit-range-error {
  color: crimson;
  margin-top: 5px;
}

.landing-user__template-switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 20px;

  margin: 0;
}

.landing-user__template-switch > input {
  opacity: 0;
  width: 0;
  height: 0;
}

.landing-user__template-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #a0c8e5;
  transition: 0.2s ease-in-out;
  border-radius: 35px;
}

.landing-user__template-switch-slider:before {
  position: absolute;
  content: '';
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.2s ease-in-out;
  border-radius: 50%;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.landing-user__template-switch
  > input:checked
  + .landing-user__template-switch-slider {
  background-color: #1375be;
}

.landing-user__template-switch
  > input:focus
  + .landing-user__template-switch-slider {
  box-shadow: 0 0 1px #1375be;
}

.landing-user__template-switch
  > input:checked
  + .landing-user__template-switch-slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

.landing-user__template-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.landing-user__template-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;

  font-weight: normal;
}

.landing-user__template-checkbox + label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid var(--landing-border-color);
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90%;
  transition: 0.2s ease-in-out;

  margin-right: 10px;
}
/* стили при наведении курсора на радио */
.landing-user__template-checkbox:not(:disabled):not(:checked)
  + label:hover::before {
  background-color: #eeeeee;
}
/* стили для активной радиокнопки (при нажатии на неё) */
.landing-user__template-checkbox:not(:disabled):active + label::before {
  background-color: var(--landing-main-text-color);
  border-color: var(--landing-main-text-color);
}
/* стили для радиокнопки, находящейся в фокусе */
.landing-user__template-checkbox:focus + label::before {
  outline: -webkit-focus-ring-color auto 1px;
}
/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
.landing-user__template-checkboxo:focus:not(:checked) + label::before {
  outline: -webkit-focus-ring-color auto 1px;
}
/* стили для радиокнопки, находящейся в состоянии checked */
.landing-user__template-checkbox:checked + label::before {
  border-color: var(--landing-main-text-color);
  background-color: var(--landing-main-text-color);
  background-image: url(../images/pages/profile/icon_yes.svg);
}
/* стили для радиокнопки, находящейся в состоянии disabled */
.landing-user__template-checkbox:disabled + label::before {
  background-color: #e9ecef;
}

.landing-user__template-custom-select {
  position: relative;
  padding: 2px 0;
}

.landing-user__template-custom-select-value {
  color: var(--pruffme-main-text-color);
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}

.landing-user__template-custom-select-value:hover {
  text-decoration: underline;
}

.landing-user__template-custom-select-options {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  max-height: 180px;
  min-width: 200px;

  list-style-type: none;

  padding: 15px 15px 15px 10px;

  background-color: #ffffff;
  border: 1px solid var(--landing-border-color);
  border-radius: 5px;

  overflow-x: hidden;
  overflow-y: auto;
  overflow-y: overlay;

  box-shadow: var(--pruffme-light-shadow);

  cursor: pointer;
  z-index: 10;
}

.landing-user__template-period-select-options {

  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 5px);
  max-height: 180px;

  list-style-type: none;

  padding: 15px 15px 15px 10px;

  background-color: #ffffff;
  border: 1px solid var(--landing-border-color);
  border-radius: 5px;

  overflow-x: hidden;
  overflow-y: auto;
  overflow-y: overlay;

  box-shadow: var(--pruffme-light-shadow);

  cursor: pointer;
  z-index: 10;
}

.landing-user__template-custom-select-options::-webkit-scrollbar-button,
.landing-user__template-period-select-options::-webkit-scrollbar-button {
  height: 0;
}

.landing-user__template-custom-select-item {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}

.landing-user__template-custom-select-item:hover {
  text-decoration: underline;
}

.landing-user__template-custom-select-item.active {
  color: var(--landing-main-text-color);
}

.landing-user__template-custom-select-item:last-child {
  margin-bottom: 0;
}

.landing-user__template-error {
  color: crimson;
  margin-top: 10px;
}

/* SIDE NAV COMPONENT */
.landing-user__side-menu {
  max-width: 330px;
  width: 100%;
}

.landing-user__side-actions-inner {
  padding: 20px;
}

.landing-user__side-actions-avatar-box {
  position: relative;
  width: min-content;
  height: min-content;
}

.landing-user__side-actions-box-top,
.landing-user__side-actions-box-bottom {
  display: flex;
}

.landing-user__side-actions-box-top {
  margin-bottom: 10px;
}

.landing-user__side-actions-box-bottom {
  justify-content: space-between;
  margin-top: 20px;
}

.landing-user__side-actions-avatar {
  width: 60px;
  height: 60px;

  background-color: var(--landing-undefined-color);
  background-position: center;
  background-size: cover;

  border-radius: 30px;
  padding: 15px;
}

.landing-user__side-actions-avatar-edit {
  position: relative;

  border: none;
  background-color: transparent;

  padding: 0;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
}

.landing-user__side-actions-avatar-hover {
  position: absolute;
  visibility: hidden;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/pages/profile/photo.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.landing-user__side-actions-avatar-edit:hover
  .landing-user__side-actions-avatar-hover {
  visibility: visible;
}

.landing-user__side-actions-avatar-placeholder {
  height: 100%;
  background-image: url(../images/pages/profile/photo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.landing-user__side-actions-isonline {
  position: absolute;

  width: 14px;
  height: 14px;

  border: 3px solid #fff;
  border-radius: 14px;

  background-color: #55bb00;

  right: 0;
  bottom: 0;
}

.landing-user__side-actions-userinfo {
  padding-left: 10px;
  width: 100%;
}

.landing-user__side-actions-userdescription {
  width: 100%;
}

.landing-user__side-actions-userdescription-edit {
  word-break: break-all;
  border: none;
  width: 100%;
}

.landing-user__side-actions-username {
  margin: 0;
  margin-bottom: 2px;
  font-weight: bold;
}

.landing-user__side-actions-button {
  min-height: 35px;
  margin-left: 5px;
}

.landing-user__side-actions-button:first-child {
  margin-left: 0;
}

/* END OF SIDE NAV COMPONENT */

/* HEADER COMPONENT */
.landing-user__header-picture {
  padding: 20px;
}

.landing-user__header-picture-wrapper {
  position: relative;
}

.landing-user__header-picture-inner {
  position: relative;

  width: 100%;
  max-height: 300px;
  min-height: 280px;

  height: max-content;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/pages/profile/header_placeholder.svg);
}

.landing-user__header-upload-bglogo {
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 0;
  
  width: 100%;
  height: 100%;

  padding: 100px 0;

  background-color: rgb(0, 0, 0, 0.5);

  border: none;
}

.landing-user__header-picture-wrapper:hover
  .landing-user__header-upload-bglogo {
  visibility: visible;
}

.landing-user__header-upload-bglogo-icon {
  width: 100%;
  height: 100%;

  background-image: url(../images/pages/profile/photo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.landing-user__header-upload-bglogo-text {
  position: absolute;
  bottom: 10px;
  right: 10px;

  color: #FFFFFF;
}

/* END OF HEADER COMPONENT */

/* CATEGORY / NAVIGATION COMPONENT */
.landing-user__category-container {
  padding: 20px 35px;
  padding-bottom: 0;
}

.landing-user__category-link-box {
  display: inline-block;

  margin-left: 30px;
  padding-bottom: 20px;

  border-bottom: 2px solid transparent;
}

.landing-user__category-link {
  text-decoration: none;
  color: inherit;
  padding-bottom: 20px;
}

.landing-user__category-link-box.active {
  color: var(--landing-main-text-color);
  border-bottom: 2px solid var(--landing-main-text-color);
}

.landing-user__category-link:hover,
.landing-user__category-link:focus {
  text-decoration: none;
  color: inherit;
}

.landing-user__category-link-box:first-child {
  margin-left: 0;
}

/* END OF CATEGORY / NAVIGATION COMPONENT */

/* TEMPLATE USER COMPONENT */
.landing-user__user-template-box {
  position: relative;
  padding: 10px 10px 10px 20px;
}

.landing-user__user-template-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}

.landing-user__user-template-rotator-bg {
  position: absolute;
  display: none;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 600;
}

.landing-user__user-template-content.not-empty {
  margin: 20px 0;
}

.landing-user__user-template-edit {
  background-color: transparent;
  padding: 0;

  font-size: 10pt;
  opacity: 0.3;

  border: none;
  cursor: pointer;
}

.landing-user__user-template-button-box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.landing-user__user-template-button-block {
  display: flex;
  justify-content: space-between;

  margin-top: 10px;
}

.landing-user__user-template-button {
  flex: 1 1 100px;

  background-color: #ffffff;
  color: var(--pruffme-main-text-color);
  border: 1px solid #e3e3e3;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;

  max-width: 230px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 5px;
}

.landing-user__user-template-button:last-child {
  margin-right: 0;
}

.landing-user__user-template-button:hover {
  background-color: #f5f5f5;
}
.landing-user__user-template-button.main {
  background-color: var(--landing-main-text-color);
  color: #ffffff;
  border: 1px solid var(--landing-main-text-color);
}

.landing-user__user-template-button.main:disabled {
  background-color: #a6c7e0;
  color: #ffffff;
  border: 1px solid #a6c7e0;
}

.landing-user__user-template-button.main:disabled:hover {
  background-color: #a6c7e0;
  color: #ffffff;
  border: 1px solid #a6c7e0;
}

.landing-user__user-template-button.secondary {
  background-color: #edf5fd;
  color: var(--landing-main-text-color);
  border: 1px solid #edf5fd;
}

.landing-user__user-template-button.main:hover {
  background-color: #1177c4;
  border: 1px solid #1177c4;
}

.landing-user__user-template-modal-action-button {
  background-color: #ffffff;
  color: var(--pruffme-main-text-color);

  border: 1px solid #eeeeee;
  border-radius: 5px;
  padding: 12px;

  cursor: pointer;
}

.landing-user__user-template-modal-action-button.apply {
  max-width: 290px;
  width: 100%;

  background-color: #1375be;
  border-color: #1375be;
  color: #ffffff;
}

.landing-user__user-template-modal-action-button.apply:hover {
  background-color: #0667b0;
  border-color: #0667b0;
}

.landing-user__user-template-modal-action-button.discard {
  max-width: 150px;
  width: 100%;

  margin-right: 20px;
}

.landing-user__user-template-modal-action-button.discard:hover {
  background-color: #eeeeee;
}
/* END OF MAIN ABOUT COMPONENT */

/* USER ABOUT COMPONENT */
.landing-user__user-about-box.not-empty {
  padding: 20px 0;
}

.landing-user__user-about-text {
  width: 100%;

  background-color: transparent;
  border: none;
  resize: none;

  margin: 20px 0;
}
/* END OF USER ABOUT COMPONENT */

/* USER PORTFOLIO COMPONENT */
.landing-user__user-portfolio-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 30px;

  margin: 30px 0;
}

.landing-user__user-portfolio-box:empty {
  display: none;
}

.landing-user__user-portfolio-image-inner {
  padding: 10px;
  overflow: hidden;
  box-shadow: 0px 3px 6px #00000029;
}

.landing-user__user-portfolio-image {
  object-fit: contain;
  width: 100%;
  height: 120px;
  cursor: pointer;

  transition: transform ease-in-out 0.2s;
}

.landing-user__user-portfolio-image:hover {
  transform: scale(1.2);
}

.landing-user__portfolio-action-box {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.landing-user__user-portfolio-drop-image {
  position: relative;
  border: none;
  background-color: inherit;
}

.landing-user__user-portfolio-drop-cross-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  padding: 40px;
}

.landing-user__user-portfolio-drop-cross-inner:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.landing-user__user-portfolio-drop-cross-inner:hover
  > .landing-user__user-portfolio-drop-cross-icon {
  width: 100%;
  height: 100%;
  background-image: url(../images/pages/profile/icon_cross.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* END OF USER PORTFOLIO COMPONENT */

/* USER JOBS COMPONENT */
.landing-user__user-job-container {
  display: flex;
  align-items: flex-start;

  margin-bottom: 30px;
}

.landing-user__user-job-title {
  display: flex;
  flex-direction: column;

  color: var(--landing-secondary-text-color);
  font-weight: bold;
  font-size: 10pt;

  word-break: break-word;

  width: 30%;
  border-bottom: dotted 1px var(--landing-border-color);
}

.landing-user__user-job-content {
  width: 70%;
}

.landing-user__user-editjob-title {
  color: var(--landing-secondary-text-color);
  font-weight: bold;
  font-size: 10pt;
  width: 30%;

  word-break: break-word;
}

.landing-user__user-editjob-field {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.landing-user__user-editjob-error {
  display: block;
  padding: 10px;
  color: crimson;
  text-align: center;
}

.landing-user__user-editjob-field:last-child {
  margin-bottom: 0;
}

.landing-user__user-editjob-container {
  display: flex;
  align-items: center;
  width: 70%;
}

.landing-user__user-editjob-input {
  max-width: 70%;
  width: 100%;
}

.landing-user__user-editjob-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--landing-border-color);
}

.landing-user__user-editjob-box:first-child,
.landing-user__user-job-container:first-child {
  margin-top: 20px;
}

.landing-user__user-editjob-box:last-child {
  margin-bottom: 0;
}

.landing-user__user-job-companyname {
  color: var(--landing-main-text-color);
  margin-bottom: 10px;
}

.landing-user__user-job-profession {
  display: block;
  margin-bottom: 5px;
}

.landing-user__user-job-date {
  display: block;
  color: var(--landing-secondary-text-color);
}

.landing-user__jobs-action-box {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.landing-user__template-close-button {
  width: 30px;
  height: 30px;

  padding: 10px;
  margin: 0 10px;

  background-color: transparent;

  border: none;
  border-radius: 15px;

  transition: background-color 0.2s ease-in-out;
}

.landing-user__template-close-button:hover {
  background-color: var(--pruffme-button-hover-color);
}

.landing-user__template-close-button-icon {
  height: 100%;

  background-image: url(../images/pages/profile/icon_cross_outlined.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.landing-user__template-close-button:hover
  > .landing-user__template-close-button-icon {
  background-image: url(../images/pages/profile/icon_cross_solid.svg);
}
/* END OF USER JOBS COMPONENT */

/* USER EDUCATION COMPONENT */
.landing-user__user-education-container {
  margin-bottom: 40px;
}

.landing-user__user-education-container:last-child {
  margin-bottom: 30px;
}

.landing-user__user-education-field {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.landing-user__user-education-field:last-child {
  margin-bottom: 0;
}

.landing-user__user-education-field > label {
  display: block;

  color: var(--landing-secondary-text-color);
  font-weight: bold;
  font-size: 10pt;
  word-break: break-word;
  padding-right: 10px;

  width: 30%;
}

.landing-user__user-education-field > p {
  width: 70%;
  font-weight: normal;
  word-break: break-word;
}

.landing-user__user-editeducation-title {
  color: var(--landing-secondary-text-color);
  font-weight: bold;
  font-size: 10pt;
  word-break: break-word;

  padding-right: 10px;
  width: 30%;
}

.landing-user__user-editeducation-field {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.landing-user__user-editeducation-error {
  display: block;
  padding: 10px;
  color: crimson;
  text-align: center;
}

.landing-user__user-editeducation-field:last-child {
  margin-bottom: 0;
}

.landing-user__user-editeducation-container {
  display: flex;
  align-items: center;
  width: 70%;
}

.landing-user__user-editeducation-input {
  max-width: 70%;
  width: 100%;
}

.landing-user__user-editeducation-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--landing-border-color);
}

.landing-user__user-editeducation-box:first-child,
.landing-user__user-education-container:first-child {
  margin-top: 20px;
}

.landing-user__user-editeducation-box:last-child {
  margin-bottom: 0;
}

.landing-user__user-education-companyname {
  color: var(--landing-main-text-color);
  margin-bottom: 10px;
}

.landing-user__user-education-profession {
  display: block;
  margin-bottom: 5px;
}

.landing-user__user-education-date {
  display: block;
  color: var(--landing-secondary-text-color);
}

.landing-user__education-action-box {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.landing-user__education-close-button {
  width: 30px;
  height: 30px;

  padding: 10px;
  margin: 0 10px;

  background-color: transparent;

  border: none;
  border-radius: 15px;

  transition: background-color 0.2s ease-in-out;
}

.landing-user__education-close-button:hover {
  background-color: var(--pruffme-button-hover-color);
}

.landing-user__education-close-button-icon {
  height: 100%;

  background-image: url(../images/pages/profile/icon_cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/* END OF USER EDUCATION COMPONENT */

/* TEMPLATE MODAL COMPONENT */
.landing-user__template-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  font-size: 11pt;
}

.landing-user__template-modal-bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.landing-user__user-modal-rotator-bg {
  position: absolute;
  display: none;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}

.landing-user__template-modal-inner {
  position: relative;

  display: flex;
  flex-direction: column;

  width: -moz-fit-content;
  width: fit-content;
  min-width: 10vw;
  max-width: 90vw;

  min-height: 10vh;
  max-height: 90vh;

  left: 50%;
  top: 50%;

  transform: translateX(-50%) translateY(-50%);
  padding: 25px;
}

.landing-user__template-modal-content {
  margin: 20px 0;

  overflow-y: auto;
  overflow-y: overlay;
}

.landing-user__template-modal-header {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 30px;
}

.landing-user__template-modal-label {
  margin: 0;
}

.landing-user__template-modal-close-button {
  position: absolute;
  right: -10px;
  top: -10px;

  width: 30px;
  height: 30px;

  padding: 8px;

  background-color: transparent;

  border: none;
  border-radius: 15px;

  transition: background-color 0.2s ease-in-out;
}

.landing-user__template-modal-close-button:hover {
  background-color: var(--pruffme-button-hover-color);
}

.landing-user__template-modal-close-icon {
  height: 100%;

  background-image: url(../images/pages/profile/icon_cross_outlined.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.landing-user__template-modal-photo-inner {
  position: relative;

  min-width: 10vw;
  max-width: 90vw;

  min-height: 10vh;
  max-height: 90vh;

  width: fit-content;
  height: fit-content;

  left: 50%;
  top: 50%;

  transform: translateX(-50%) translateY(-50%);
}

.landing-user__template-modal-photo-content {
  max-width: inherit;
  max-height: inherit;
  overflow: hidden;
}

.landing-user__template-modal-photo-content > img {
  max-width: inherit;
  max-height: inherit;
}

.landing-user__template-modal-photo-close-button {
  position: absolute;
  right: -20px;
  top: -20px;

  width: 40px;
  height: 40px;

  padding: 13px;

  background-color: rgba(0, 0, 0, 0.5);

  border: none;
  border-radius: 20px;
}
/* END OF TEMPLATE MODAL COMPONENT */

/* TEMPLATE MODAL FORM */

.landing-user__modal-form {
  width: 450px;
  max-width: 100%;
  padding-right: 15px;
}

.landing-user__modal-form-field {
  display: flex;
  align-items: center;

  margin-bottom: 10px;
}

.landing-user__modal-form-field.spacing-bottom {
  margin-bottom: 30px;
}

.landing-user__modal-form-field > label {
  width: 100px;
  color: #808080;
}

.landing-user__modal-form-field > input {
  min-width: 50%;

  padding: 10px 15px;

  border-radius: 5px;
  border: 1px solid var(--landing-border-color);
}

.landing-user__modal-form-field > .input_invalid {
  border-color: crimson;
}

.landing-user__modal-form-field.input-fullwidth > input {
  flex-grow: 10;
}

.landing-user__modal-form-error {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: crimson;
}

.landing-user__modal-form-socials-bottom {
  display: none;
}

.landing-user__modal-form-socials-bottom:not(:empty) {
  margin-bottom: 20px;
}

.landing-user__modal-form-socials-action-expand {
  color: var(--landing-main-text-color);
  border: none;
  background-color: #FFFFFF;
}
/* END OF TEMPLATE MODAL FORM */

/* CALENDAR EDIT MODAL*/
.landing-user__modal-calendar-trainer-inner,
.landing-user__modal-calendar-participant-inner {
  max-width: 100%;
  width: 480px;

  padding: 0 1px;
  margin: 0;
}
.landing-user__modal-calendar-trainer-custom-box {
  margin-bottom: 20px;
}

.landing-user__modal-calendar-trainer-custom-container:not(:empty),
.landing-user__modal-calendar-participant-custom-box:not(:empty) {
  margin-bottom: 20px;
}

.landing-user__modal-calendar-participant-input-box {
  display: none;
  margin-bottom: 10px;
}

.landing-user__modal-calendar-button {
  position: relative;
  background-color: inherit;
  border: 1px solid var(--landing-border-color);
  border-radius: 5px;
  flex: 0 0 49%;

  cursor: pointer;
}

.landing-user__modal-calendar-button.error {
  border-color: crimson;
}

.landing-user__modal-calendar-button-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  padding: 10px;
}

.landing-user__modal-calendar-participant-date-box {
  display: flex;
  justify-content: space-between;
  padding: 5px 0 35px 0;
}

.landing-user__modal-calendar-participant-date-top,
.landing-user__modal-calendar-participant-date-bottom {
  display: flex;
  align-items: center;
}

.landing-user__modal-calendar-participant-date-bottom {
  margin-top: 15px;
}

.landing-user__modal-calendar-participant-date-icon {
  display: inline-block;

  width: 20px;
  height: 20px;
  min-width: 0;

  margin-right: 5px;
  flex-shrink: 0;

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.landing-user__modal-calendar-participant-date-content {
  display: flex;
  margin-left: 15px;
  align-items: center;
}

.landing-user__modal-calendar-participant-date-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: none;

  max-width: 100px;
  min-width: 0;
}

.landing-user__modal-calendar-participant-offset {
  color: var(--landing-main-text-color);
}

.pruffme-icon-date {
  background-image: url(../images/pages/profile/icon_calendar.svg);
}

.pruffme-icon-time {
  background-image: url(../images/pages/profile/icon_clock.svg);
}

.pruffme-icon-timezone {
  background-image: url(../images/pages/profile/icon_lang.svg);
}

.pruffme-icon-vkontakte {
  background-image: url(../images/pages/tarifs);
}

.landing-user__modal-calendar-trainer-custom-input-box {
  display: flex;
}

.landing-user__modal-calendar-trainer-custom-input {
  padding: 10px 15px;

  flex: 1 1;

  border-radius: 5px 0 0 5px;
  border: 1px solid var(--landing-border-color);
  border-right: none;
  padding-right: 0;
  margin: 0;
}

.landing-user__modal-calendar-trainer-custom-close {
  width: 30px;

  flex-shrink: 0;

  background-color: inherit;

  border-radius: 0 5px 5px 0;
  border: 1px solid var(--landing-border-color);
  border-left: none;

  padding: 9px;
  margin: 0;
}

.landing-user__modal-calendar-trainer-opt-box {
  display: flex;
  align-items: center;

  margin: 10px 0;
}

.landing-user__modal-calendar-trainer-opt-label {
  display: inline-block;

  margin-left: 10px;
}

.landing-user__modal-calendar-inner {
  max-width: 100%;
  width: 600px;

  margin: 0;
}

.landing-user__modal-calendar-box {
  margin-top: 25px;
}

.landing-user__modal-calendar-box:first-child {
  margin-top: 0;
}

.landing-user__modal-calendar-sublabel {
  font-weight: bold;
  color: var(--landing-secondary-text-color);
}

.landing-user__modal-calendar-time-box {
  margin-top: 10px;
  margin-left: 5px;
}

.landing-user__modal-calendar-time-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.landing-user__modal-calendar-time-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.landing-user__modal-calendar-time-checkbox + label::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid var(--landing-border-color);
  border-radius: 50%;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
/* стили при наведении курсора на радио */
.landing-user__modal-calendar-time-checkbox:not(:disabled):not(:checked)
  + label:hover::before {
  border-color: #b3d7ff;
}
/* стили для активной радиокнопки (при нажатии на неё) */
.landing-user__modal-calendar-time-checkbox:not(:disabled):active
  + label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
/* стили для радиокнопки, находящейся в фокусе */
.landing-user__modal-calendar-time-checkbox:focus + label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
.landing-user__modal-calendar-time-checkboxo:focus:not(:checked)
  + label::before {
  border-color: #80bdff;
}
/* стили для радиокнопки, находящейся в состоянии checked */
.landing-user__modal-calendar-time-checkbox:checked + label::before {
  border-color: #0b76ef;
  background-color: #0b76ef;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
/* стили для радиокнопки, находящейся в состоянии disabled */
.landing-user__modal-calendar-time-checkbox:disabled + label::before {
  background-color: #e9ecef;
}

.landing-user__modal-calendar-duration-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.landing-user__modal-calendar-duration-button {
  border: none;
  background-color: #eaf6ed;

  color: #34a853;

  padding: 7px 13px;
  margin-left: 10px;
  border-radius: 5px;
}

.landing-user__modal-calendar-duration-button.active {
  background-color: #34a853;
  color: #ffffff;
}

.landing-user__modal-calendar-spacer {
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.landing-user__modal-calendar-duration-button:first-child {
  margin-left: 0;
}

.landing-user__modal-calendar-lesson-duration-box {
  position: relative;
  display: flex;
  align-items: baseline;

  height: 45px;

  margin: 10px 0;
}

.landing-user__modal-template-slider-box {
  position: relative;
  width: 100%;
}

.landing-user__modal-template-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: #dbdbdb;
  border-radius: 5px;
  outline: none;
}

.landing-user__modal-template-slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 9px; /* Set a specific slider handle width */
  height: 9px; /* Slider handle height */
  background: #157ee1; /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 50%;
}

.landing-user__modal-template-slider::-webkit-slider-thumb::after {
  content: '???';
  top: 10px;
}

.landing-user__modal-template-slider::-moz-range-thumb {
  width: 9px; /* Set a specific slider handle width */
  height: 9px; /* Slider handle height */
  background: #157ee1; /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 50%;
}

.landing-user__modal-template-slider-minmax {
  display: inline-block;
  flex-shrink: 0;
  padding: 2px 8px;

  color: var(--landing-secondary-text-color);

  margin: 0 10px;

  border-radius: 5px;
  border: 1px solid var(--landing-border-color);
}

.landing-user__modal-template-slider-minmax:first-child {
  margin-left: 0;
}

.landing-user__modal-template-slider-minmax:last-child {
  margin-right: 0;
}

.landing-user__modal-template-slider-value {
  position: absolute;
  bottom: -35px;
  left: -35px;

  width: 75px;
  padding: 4px;
  border-radius: 5px;

  color: #ffffff;
  text-align: center;

  background-color: var(--landing-main-text-color);
}

.landing-user__modal-calendar-min-lesson-box {
  margin: 0 10px;
}

.landing-user__modal-calendar-time-input {
  width: 70px;
}

.landing-user__modal-calendar-comm-box {
  display: flex;
}

.landing-user__modal-calendar-comm-button {
  width: 100%;
  margin-right: 20px;
}

.landing-user__modal-calendar-content-container {
  display: flex;
  margin-top: 10px;
}

.landing-user__modal-calendar-save-button {
  height: 50px;
  max-width: 100%;
}
/* END OF CALENDAR EDIT */

/* MESSAGE BOX */
.landing-user__message-box {
}

.landing-user__message-user-box {
  display: flex;
  justify-items: space-between;

  margin-bottom: 20px;
}

.landing-user__message-logo-container {
  display: flex;
  justify-content: center;
}

.landing-user__message-logo {
  display: inline-block;
  width: 60px;
  height: 60px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  border-radius: 60px;
}

.landing-user__message-username {
  margin-left: 10px;
  display: inline-block;

  font-weight: bold;
  font-size: 11pt;
}

.landing-user__message-textarea-box {
  margin-bottom: 30px;
}

.landing-user__message-textarea-inner > textarea {
  resize: none;
  width: 100%;
}

.landing-user__message-actions-box {
  display: flex;
  justify-content: space-between;
}

/* END OF MESSAGE BOX */

.landing-user__side-template-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.landing-user__side-template-label {
  color: var(--landing-secondary-text-color);
  font-weight: bold;
}

.landing-user__side-template-edit {
  color: var(--pruffme-main-text-color);

  background-color: inherit;
  border: none;

  font-size: 10pt;

  padding: 0;
  margin: 0;
}

.landing-user__side-template-edit:hover {
  text-decoration: underline;
}

/* SIDENAV CONTACTS COMPONENT */
.landing-user__side-contacts-inner {
  padding: 20px;
}

.landing-user__side-contacts-field {
  display: flex;
  padding-bottom: 12px;
}

.landing-user__side-contacts-actions {
  margin-top: 20px;
}

.landing-user__side-contacts-field-label {
  flex-basis: 80px;
  flex-shrink: 0;
  color: var(--landing-secondary-text-color);

  margin: 0;
}

.landing-user__side-contacts-field-value {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.landing-user__side-contacts-content-socials {
  display: flex;
  flex-wrap: wrap;
}

.landing-user__side-contacts-social-link {
  width: 30px;
  height: 30px;
  padding: 6px;

  margin: 10px 10px 0 0;

  border: 1px solid var(--landing-border-color);
  border-radius: 10px;


  transition: box-shadow 0.2s ease-in-out;
}

.landing-user__side-contacts-social-link:hover {
  box-shadow: 0 6px 9px rgb(34 60 89 / 13%) inset;
}

.landing-user__side-contacts-social-icon {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pruffme-icon-instagram {
  background-image: url(../images/pages/profile/socials/icon_instagram.svg);
}

.pruffme-icon-vkontakte {
  background-image: url(../images/pages/profile/socials/icon_vkontakte.svg);
}

.pruffme-icon-twitter {
  background-image: url(../images/pages/profile/socials/icon_twitter.svg);
}

.pruffme-icon-facebook {
  background-image: url(../images/pages/profile/socials/icon_facebook.svg);
  background-size: 80%;
}

.pruffme-icon-youtube {
  background-image: url(../images/pages/profile/socials/icon_youtube.svg);
}

.pruffme-icon-telegram {
  background-image: url(../images/pages/profile/socials/icon_telegram.svg);
}

/* END OF SIDENAV CONTACTS COMPONENT */

/* SUBSCRIBERS BLOCK */
.landing-user__subscribers-inner {
  padding: 20px;
}

.landing-user__subscriber-link-wrapper {
  display: block;
  display: flex;
  justify-content: flex-start;
  align-items: center;

  padding: 10px;
}

.landing-user__subscriber-card {
  border-bottom: 1px solid var(--landing-border-color);
}

.landing-user__subscriber-card:last-child {
  border-bottom: none;
}

.landing-user__subscriber-card-info {
  display: flex;
  flex-direction: column;

  flex-shrink: 1;

  margin-left: 10px;
}

.landing-user__side-actions-avatar {
  width: 60px;
  height: 60px;

  flex-shrink: 0;

  background-image: url(../images/pages/profile/photo.svg);
  background-color: var(--landing-undefined-color);
  background-position: center;
  background-size: cover;

  border-radius: 30px;
  padding: 15px;
}

.landing-user__subscriber-card-username {
  font-weight: bold;
  margin-bottom: 5px;

  text-decoration: none;
  color: inherit;
}

.landing-user__subscriber-card-username:hover,
.landing-user__subscriber-card-username:focus {
  text-decoration: underline;
  color: inherit;
}

.landing-user__subscriber-card-avatar,
.landing-user__calendar-request-article-avatar {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  background-image: url(../images/pages/profile/photo.svg);
  background-color: var(--landing-undefined-color);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;

  border-radius: 30px;
}

.landing-user__subscriber-card-avatar.avatar-undefined,
.landing-user__calendar-request-article-avatar.avatar-undefined {
  background-size: 50%;
}

.landing-user__subscriber-action-button {
  width: 145px;
  max-width: 145px;
  margin-left: 30px;
}

.landing-user__subscriber-action-box {
  display: flex;
  flex: 1 1;
  justify-content: flex-end;
}

.landing-user__subscriber-card-desc {
  max-height: 40px;

  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-user__subscribers-empty {
  text-align: center;
  font-size: 14pt;
  padding: 30px 0;
  color: var(--landing-secondary-text-color);
}

.landing-user__subscribers-loading-box {
  position: relative;
  height: 100px;
}

/* END OF SUBSCRIBERS BLOCK */

/* NEWS BLOCK */
.landing-user__news-card-inner {
  padding: 20px;
}

.landing-user__news-card-header {
  display: flex;

  margin-bottom: 15px;
}

.landing-user__news-card-sender-logo {
  --news-card-r: 40px;

  width: var(--news-card-r);
  height: var(--news-card-r);

  flex: 0 0 var(--news-card-r);

  border-radius: var(--news-card-r);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.landing-user__news-card-sender-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  flex: 1 1;

  margin-left: 10px;
}

.landing-user__news-card-sender-name {
  font-weight: bold;
}

.landing-user__news-card-creationdate {
  font-size: 9pt;
  color: var(--landing-secondary-text-color);
}
/* END OF NEWS BLOCK */

/* TAGS BLOCK */
.landing-user__side-tags-inner {
  padding: 20px;
}

.landing-user__side-tags-content-top,
.landing-user__side-tags-content-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.landing-user__tags-card,
.landing-user__modal-tags-button-card {
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0 5px 5px 0;

  background-color: #edf5fd;
  color: var(--landing-main-text-color);
  border: none;

  font-size: 10pt;
}

.landing-user__modal-tags-button-card {
  border: none;
}

.landing-user__side-tags-actions {
  margin-top: 20px;
}

.landing-user__modal-tags-inner {
  width: 800px;
  max-width: 100%;
}

.landing-user__modal-tags-content {
  display: flex;
  align-items: flex-start;
}

.landing-user__modal-tags-variants,
.landing-user__modal-tags-selected {
  flex: 1 0;

  max-height: 60vh;

  overflow: auto;
  overflow: overlay;
}

.landing-user__modal-tags-variants {
  margin-right: 40px;
  padding-right: 10px;
}

.landing-user__modal-tags-selected {
  display: flex;
  flex-wrap: wrap;
}

.landing-user__modal-tags-slider-box {
  margin-bottom: 5px;
}

.landing-user__modal-tags-slider-box:last-child {
  margin-bottom: 0;
}

.landing-user__modal-tags-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  border: 1px solid var(--landing-border-color);
  border-radius: 5px;
  background-color: inherit;
  padding: 10px 20px;
}

.landing-user__modal-tags-slider-label {
  text-align: left;
  font-weight: bold;
}

.landing-user__modal-tags-slider-expand-icon {
  width: 16px;
  height: 16px;

  flex-shrink: 0;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/pages/profile/icon_plus_black.svg);

  transition: transform ease-in 200ms;
}

.landing-user__modal-tags-slider-expand-icon.expanded {
  transform: rotate(45deg);
}

.landing-user__modal-tags-slider-popout-box {
  margin: 15px 5px;
}

.landing-user__modal-tags-slider-popout-element {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.landing-user__modal-tags-slider-popout-element > input[type='checkbox'] {
  display: none;
}

.landing-user__modal-tags-slider-popout-element > label {
  display: block;

  flex-shrink: 0;

  width: 25px;
  height: 25px;
  border: 1px solid var(--landing-border-color);
  border-radius: 5px;
  background-color: inherit;

  margin: 0;
}

.landing-user__modal-tags-slider-popout-element > label:hover {
  cursor: pointer;
  background-color: var(--landing-undefined-color);
}

.landing-user__modal-tags-slider-popout-element > span {
  font-weight: bold;
}

.landing-user__modal-tags-slider-popout-element
  > input[type='checkbox'][checked='checked']
  + label {
  border: 1px solid var(--landing-main-text-color);
  border-radius: 5px;
  background-color: var(--landing-main-text-color);
  background-image: url(../images/pages/profile/icon_yes.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.landing-user__modal-tags-slider-popout-element > span {
  margin: 0;
  margin-left: 5px;
}
/* END OF TAGS BLOCK */

/* CALENDAR BLOCK */

.pruffme__calendar-box {
  --pruffme-card-height: 30px;
  --pruffme-secondary-color: #9a9a9a;
}

.pruffme__calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 20px 0;
}

.pruffme__calendar-header-content-box {
  display: flex;
  align-items: center;
}

.pruffme__calendar-header-daytime {
  font-weight: bold;
}

.pruffme__calendar-header-interpunct {
  width: 10px;
  height: 10px;

  flex-shrink: 0;
  margin: 0 5px;

  background-image: url(../images/pages/profile/icon_Interpunct.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pruffme__calendar-header-button {
  width: 30px;
  height: 30px;

  background-color: #ffffff;
  border: 1px solid #eeeeee;

  flex-shrink: 0;

  border-radius: 20px;
  padding: 9px;

  margin-left: 5px;
  transition: background-color 0.2s ease-in-out;
}

.pruffme__calendar-header-button:first-child {
  margin-left: 0;
}

.pruffme__calendar-header-button:hover {
  background-color: #f9f9f9;
}

.pruffme__calendar-header-button-participant-box {
  display: flex;
  flex-direction: row-reverse;
  flex-grow: 1;
}

.pruffme__calendar-header-button-participant {
  padding: 10px 10px;

  width: 100%;
  max-width: 200px;
  flex: 1 1 200px;
  justify-self: end;

  color: #ffffff;

  background-color: #157ee1;
  border: 1px solid #157ee1;
  border-radius: 5px;
}

.pruffme__calendar-header-daytime {
  margin-left: 15px;
}

.pruffme__calendar-header-button-left,
.pruffme__calendar-header-button-right {
  width: 100%;
  height: 100%;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pruffme__calendar-header-button-left {
  background-image: url(../images/pages/profile/icon_arrow.svg);
  transform: rotate(180deg);
}

.pruffme__calendar-header-button-right {
  background-image: url(../images/pages/profile/icon_arrow.svg);
}

.pruffme__calendar-content-schedule {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 1fr;

  row-gap: 5px;
  column-gap: 10px;
  font-size: 10pt;

  padding: 5px 35px 20px 35px;
  border: 1px solid #eeeeee;
  border-radius: 5px;

  overflow-x: auto;
}

.pruffme__calendar-schedule-top-box {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 10px 0;
  min-width: 60px;
}

.pruffme__calendar-action-card {
  height: var(--pruffme-card-height);
  border: none;
  border-radius: 5px;
  color: #ffffff;

  background-color: #f9f9f9;
}

.pruffme__calendar-action-card.active {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #34a853;
}

.pruffme__calendar-action-card.active:disabled {
  background-color: var(--landing-undefined-color);
}

.pruffme__calendar-schedule-dayofweek {
  font-weight: bold;
}

.pruffme__calendar-schedule-daydate {
  margin-top: 6px;
  color: var(--pruffme-secondary-color);
}

.pruffme__calendar-time-card {
  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--pruffme-secondary-color);

  height: var(--pruffme-card-height);
  border: 1px solid #f9f9f9;
  border-radius: 15px;
}

.landing-user__calendar-content-box {
  margin-bottom: 20px;
}

.landing-user__calendar-day-edit-box {
  padding: 30px 0;
  border-top: 1px solid var(--landing-border-color);
}

.landing-user__calendar-day-edit-box:last-child {
  border-bottom: 1px solid var(--landing-border-color);
}

.landing-user__calendar-day-edit-header {
  display: flex;
  align-items: center;
}

.landing-user__calendar-day-edit-checkbox {
  width: 18px;
  height: 18px;

  background-color: #ffffff;

  border: 2px solid var(--landing-border-color);
  border-radius: 5px;

  transition: all 0.2s ease-in;

  margin: 0;
}

.landing-user__calendar-day-edit-checkbox.checked {
  border-color: #1375be;
  background-color: #1375be;
  background-image: url(../images/pages/profile/icon_yes.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.landing-user__calendar-day-edit-label {
  margin-left: 10px;
  font-weight: bold;

  user-select: none;
  cursor: pointer;
}

.landing-user__calendar-edit-header {
  margin-top: 25px;
}

.landing-user__calendar-edit-header-label {
  font-size: 14pt;
}

.landing-user__calendar-edit-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin: 10px 0;
  margin-bottom: 20px;
}

.landing-user__calendar-edit-header-duration > b {
  color: var(--landing-main-text-color);
}

.landing-user__calendar-edit-header-timezone {
  flex-shrink: 0;
  flex-basis: 200px;
}

.landing-user__calendar-day-edit-periods {
  display: none;
}

.landing-user__calendar-day-edit-spacer {
  display: inline-block;
  margin-left: 10px;
}

.landing-user__calendar-day-edit-range-box {
  margin: 15px 0;
}

.landing-user__calendar-day-edit-periods-add {
  border: none;
  background-color: inherit;
  color: var(--landing-main-text-color);
}

.landing-user__calendar-day-edit-periods-add:hover {
  text-decoration: underline;
}

.landing-user__calendar-edit-participant-box {
  display: flex;
  align-items: center;
  max-width: 50%;
  flex-wrap: wrap;
}

.landing-user__calendar-edit-participant-box > span {
  margin-left: 5px;
}

.landing-user__calendar-edit-participant-icon {
  width: 28px;
  height: 28px;

  background-image: url(../images/pages/profile/icon_participant.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.landing-user__calendar-edit-participant-button {
  display: inline;
  margin: 0;

  color: var(--landing-main-text-color);
  background-color: inherit;
  border: none;
}

.landing-user__modal-req-success-inner {
  width: 500px;
  max-width: 100%;
}

.landing-user__modal-req-success-picture {
  width: 100%;
  height: 200px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/pages/profile/picture_calendar.svg);
}

.landing-user__modal-req-success-label {
  text-align: center;
  margin-bottom: 20px;
}

.landing-user__modal-req-success-date {
  margin-bottom: 10px;
}

@media all and (max-width: 500px) {
  .pruffme__calendar-header {
    flex-direction: column;
  }

  .pruffme__calendar-header-content-box {
    margin-bottom: 10px;
    justify-content: space-between;
  }

  .landing-user__modal-calendar-participant-date-box {
    flex-direction: column;
    padding: 0;
    padding-bottom: 10px;
  }

  .landing-user__modal-calendar-button {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }

  .landing-user__modal-calendar-participant-date-text {
    max-width: max-content;
  }

  .landing-user__modal-calendar-participant-inner {
    padding-right: 15px;
  }
}

/* END OF CALENDAR BLOCK */

/* CALENDAR REQUEST BLOCK */
.landing-user__calendar-request-inner {
  padding: 20px;
}

.landing-user__calendar-request-header {
  padding-bottom: 0;
}

.landing-user__calendar-request-link-box {
  display: inline-block;
  margin-left: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid transparent;
}

.landing-user__calendar-request-link-box:first-child {
  margin-left: 0px;
}

.landing-user__calendar-request-category-link {
  text-decoration: none;
  color: inherit;
  padding: 0 10px;
}

.landing-user__calendar-request-category-link:focus,
.landing-user__calendar-request-category-link:hover {
  text-decoration: none;
  color: inherit;
}

.landing-user__calendar-request-link-box.active {
  border-bottom: 2px solid #000000;
}

.landing-user__calendar-request-section {
  border-top: 1px solid var(--landing-border-color);
  border-left: none;
  border-right: none;

  padding: 30px 0;
}

.landing-user__calendar-request-section:last-child {
  border-bottom: 1px solid var(--landing-border-color);
}

.landing-user__calendar-request-section-header {
  font-weight: bold;
  margin-bottom: 10px;
}

.landing-user__calendar-request-article {
  display: flex;
  margin-bottom: 20px;
}

.landing-user__calendar-request-article-period {
  flex-basis: 20%;
  flex-shrink: 0;

  font-weight: bold;
  padding-top: 8px;
}

.landing-user__calendar-request-article-inner {
  display: block;

  flex-basis: 80%;
}

.landing-user__calendar-request-article-header {
  display: flex;
  align-items: center;

  width: 100%;

  border: none;
  background-color: #ffffff;
  padding: 10px;

  border-radius: 50px;
}

.landing-user__calendar-request-article-header:hover {
  background-color: #f9f9f9;
}

.landing-user__calendar-request-article-name {
  flex: 10 1;

  text-align: start;
  font-weight: bold;
  margin-left: 20px;

  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-user__calendar-request-article-action-box {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;

  flex-grow: 1;
}

.landing-user__calendar-request-article-status {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 30px;
  padding: 5px 24px;

  border-radius: 45px;
}

.landing-user__calendar-request-article-status[data-status='init'] {
  background-color: #fef3ea;
  color: #f5872d;
}

.landing-user__calendar-request-article-status[data-status='accepted'] {
  background-color: #e8f9e8;
  color: #34a853;
}

.landing-user__calendar-request-article-status[data-status='declined'] {
  background-color: #fce6e6;
  color: #de0000;
}

.landing-user__calendar-request-article-status-icon {
  height: 18px;
  width: 18px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  display: none;
}

.landing-user__calendar-request-article-status-icon[data-status='init'] {
  background-image: url('../images/pages/profile/icon_time.svg');
}

.landing-user__calendar-request-article-status-icon[data-status='accepted'] {
  background-image: url('../images/pages/profile/icon_yes-black.svg');
}

.landing-user__calendar-request-article-status-icon[data-status='declined'] {
  background-image: url('../images/pages/profile/icon_time_past.svg');
}

.landing-user__calendar-request-article-field {
  display: flex;
  margin-bottom: 20px;
}

.landing-user__calendar-request-article-field-value {
  flex-basis: 80%;
}

.landing-user__calendar-request-article-comm-value {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 80%;
}

.landing-user__calendar-request-article-field-label {
  font-weight: bold;
  flex-basis: 20%;
}

.landing-user__calendar-request-article-comm-item {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.landing-user__calendar-request-article-comm-icon {
  width: 16px;
  height: 16px;
  margin-left: 5px;

  background-image: url('../images/pages/profile/icon_yes-black.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.landing-user__calendar-request-article-comm-item:first-child {
  margin-left: 0;
}

.landing-user__calendar-request-article-custom-field {
  margin-bottom: 20px;
}

.landing-user__calendar-request-article-textbox {
  padding: 10px;
  background-color: #f8f8f8;
  border-radius: 5px;

  margin-top: 7px;
}

.landing-user__calendar-request-article-content {
  display: none;
  padding: 20px 10px;
}

.landing-user__calendar-request-article-expand {
  width: 13px;
  height: 13px;

  background-image: url(../images/pages/profile/icon_arrow_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  transition: 0.2s ease-in-out;

  margin: 0 10px;
}

.landing-user__calendar-request-article-expand.rotated {
  transform: rotate(90deg);
}

.landing-user__calendar-request-article-expand-label {
  margin-left: 20px;
}

.landing-user__calendar-request-article-content-action-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.landing-user__calendar-request-article-content-action-box-right {
  display: flex;
  justify-content: space-between;
  min-width: 50%;
}

.landing-user__calendar-request-article-content-action-box-left {
  display: flex;
  align-content: center;
}

.landing-user__calendar-request-article-additional-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.landing-user__calendar-request-article-text-button {
  background-color: inherit;
  border: none;
  color: var(--pruffme-main-text-color);
}

.landing-user__calendar-request-article-text-button:hover {
  text-decoration: underline;
}

.landing-user__calendar-request-article-icon-button {
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: inherit;
  border: none;
}  

.landing-user__calendar-request-article-icon-button-icon {
  display: inline-block;
  width: 20px;
  height: 20px;

  margin-right: 5px;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.landing-user__calendar-request-article-icon-button-text {
  color: var(--pruffme-main-text-color);
}

.pruffme-icon-message {
  background-image: url(../images/pages/profile/icon_message.svg);
}

.pruffme-icon-notes {
  background-image: url(../images/pages/profile/icon_notes.svg);
}
/* END OF CALENDAR REQUEST BLOCK */

/* SCROLLBAR */
*::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

*::-webkit-scrollbar-button {
  display: block;
  height: 4px;
  width: 4px;
}

*::-webkit-scrollbar-button:end:increment,
*::-webkit-scrollbar-button:start:decrement {
  background: transparent;
  display: none;
}

*::-webkit-scrollbar-track-piece {
  background: rgba(9, 30, 66, 0.08);
}

*::-webkit-scrollbar-track-piece:vertical:start {
  border-radius: 4px 4px 0 0;
}

*::-webkit-scrollbar-track-piece:vertical:end {
  border-radius: 0 0 4px 4px;
}

*::-webkit-scrollbar-track-piece:horizontal:start {
  border-radius: 4px 0 0 4px;
}

*::-webkit-scrollbar-track-piece:horizontal:end {
  border-radius: 0 4px 4px 0;
}

*::-webkit-scrollbar-thumb:horizontal,
*::-webkit-scrollbar-thumb:vertical {
  background: rgba(9, 30, 66, 0.13);
  border-radius: 4px;
  display: block;
  height: 48px;
}
/* END OF SCROLLBAR */

@media all and (max-width: 800px) {
  .landing-user__inner {
    flex-direction: column-reverse;
  }

  .landing-user__header-picture {
    display: none;
  }

  .landing-user__side-menu {
    min-width: 100%;
  }

  .landing-user__subscriber-action-button {
    max-width: 110px;
    width: 110px;
    margin-right: 15px;
  }

  /* TEMPLATE MODAL */
  .landing-user__template-modal-inner {
    max-width: 95vw;
  }

  .landing-user__template-modal-content {
    margin: 0;
  }
  /* END OF TEMPLATE MODAL */

  /* USER PORTFOLIO COMPONENT */
  .landing-user__user-portfolio-box {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
  }
  /* END OF USER PORTFOLIO COMPONENT */

  /* CALENDAR REQUESTS BLOCK */
  .landing-user__calendar-request-article-status {
    height: auto;
    padding: 8px;
  }

  .landing-user__calendar-request-article-expand-label,
  .landing-user__calendar-request-article-status-text {
    display: none;
  }

  .landing-user__calendar-request-article-status-icon {
    display: block;
  }

  .landing-user__calendar-request-article-icon-button {
    padding: 8px;
  }

  .landing-user__calendar-request-article-icon-button-text {
    display: none;
  }

  .landing-user__calendar-request-article-icon-button-icon {
    margin: 0;
  }

  /* END OF CALENDAR REQUESTS BLOCK */
}

@media all and (max-width: 500px) {
  footer {
    margin-top: 50px;
  }

  .landing-user__subscriber-action-box {
    display: none;
  }

  .landing-user__modal-tags-content {
    display: block;
    position: relative;

    height: 60vh;
  }

  .landing-user__modal-tags-variants {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 30%;

    margin-right: 0;
    width: 100%;

    overflow-y: auto;
    overflow-y: overlay;
  }

  .landing-user__modal-tags-selected {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 75%;
    top: 0;

    display: flex;
    flex-wrap: wrap;
    justify-items: flex-start;
    align-items: flex-start;
    align-content: flex-start;

    overflow-y: auto;
    overflow-y: overlay;
  }

  .landing-user__user-editjob-title,
  .landing-user__user-job-title,
  .landing-user__user-education-field > label,
  .landing-user__user-editeducation-title {
    width: 40%;
  }

  .landing-user__user-editeducation-container,
  .landing-user__user-education-field > p,
  .landing-user__user-job-content,
  .landing-user__user-editjob-container {
    width: 60%;
  }
}
