/* CSS variables */
:root {
  --main-dark-blue-color: #0F1435;
  --main-green-color: #24C046;
  --main-green-hover-color: #15AA35;
  --main-yellow-color: #FFDB2A;
  --main-red-color: #E8190C;
  --main-background-color: #E8EDF9;
  --main-input-color: #E8ECF4;
  --header-background-color: #0A0D28;
  --light-text-color: #9498AB;
  --light-gray-color: #C3CEE4;
  --content-color: #585C73;
  --icon-color: #69768F;
  --main-border: 1px solid #E8ECF4;
  --dots-border: 1px solid #C3CEE4;
  --main-border-color: #E8ECF4;
  --user-box-bg: #F6F7F9;
  --comment-input-color: #F5F7FC;
  --time-marker-color: #C4C4C4;
  --input-range-fill: #24C046;
  --input-range-background: #E8ECF4;
  --blue-background: #B4DCFE;
  --proxima-font: "ProximaNova", sans-serif;
}

/* Fonts */
@font-face {
  font-family: "ProximaNova";
  src: local("ProximaNova-Semibold"), url("../fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DMSans";
  src: local("DMSans-Regular"), url("../fonts/DMSans-Regular.woff2") format("woff2"), url("../fonts/DMSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DMSans";
  src: local("DMSans-Medium"), url("../fonts/DMSans-Medium.woff2") format("woff2"), url("../fonts/DMSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DMSans";
  src: local("DMSans-Bold"), url("../fonts/DMSans-Bold.woff2") format("woff2"), url("../fonts/DMSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Global CSS reset */
html {
  box-sizing: border-box;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: var(--main-background-color);
  height: 100%;
  position: relative;
  margin: 0;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-family: "DMSans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font: inherit;
}

ul {
  list-style: none;
}

img,
picture {
  max-width: 100%;
  height: auto;
}

i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

input,
textarea {
  width: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  background-clip: padding-box;
  font-family: inherit;
  border: none;
  border-radius: 0;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  font: inherit;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  font: inherit;
}
input::placeholder,
textarea::placeholder {
  transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  font: inherit;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

input[type=submit] {
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px #fff inset !important;
}

a,
a:visited {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

/* Global CSS rules */
.overlay {
  background-color: var(--main-background-color);
  height: 20px;
  width: 100%;
  position: relative;
  z-index: 88;
  position: fixed;
  top: 80px;
}

/* Containers rules */
.main-container {
  padding: 100px 0;
  transition: padding 0.3s;
}
.main-container.is-active {
  padding-left: 305px;
}

.container {
  margin: 0 auto;
  max-width: 1670px;
  padding: 0 15px;
}

.df-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

/* Global box */
.global-box {
  padding: 30px clamp(15px, 2vw, 25px) 35px;
  border-radius: 6px;
  background-color: #fff;
  color: var(--main-dark-blue-color);
}
.global-box__top {
  margin-bottom: 25px;
}
.global-box__top .box-title {
  margin-bottom: 0;
}
.global-box__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Hover rules */
.link-hover {
  position: relative;
  padding: 3px 0;
}
.link-hover::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  background-color: #222;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all 0.2s;
}
.link-hover:hover::after {
  width: 100%;
}

/* Popup */
.popup-global {
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  transform: translateY(20%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s;
}
.popup-global.is-active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.popup-triangle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 9px;
  right: 19px;
  top: -16px;
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

.custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: #555 #fff;
  transition: scrollbar-color 0.3s ease-out;
}
.custom-scroll::-webkit-scrollbar {
  width: 5px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 50px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.notification-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E8EDF9;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: var(--main-dark-blue-color);
  padding: 1px 13px;
  margin-left: auto;
}

.box-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 24px;
  color: var(--main-dark-blue-color);
  margin-bottom: 25px;
}

.content-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 11px;
}

.view-all {
  font-weight: 500;
  font-size: 14px;
  color: var(--light-text-color);
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.view-all a {
  transition: color 0.3s;
}
.view-all:hover a {
  color: var(--main-green-color);
}

.time-box {
  font-weight: 400;
  font-size: 16px;
  color: var(--light-text-color);
  display: flex;
  align-items: center;
}
.time-box__count {
  margin-right: 5px;
}
.time-box__count-dotted {
  display: inline-block;
  position: relative;
  padding-left: 12px;
}
.time-box__count-dotted::before {
  position: absolute;
  content: "";
  background-color: var(--time-marker-color);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.post-info {
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: var(--main-border);
  font-size: 15px;
  color: var(--content-color);
}

.audio-player {
  margin-bottom: 25px;
}
.audio-player .plyr--audio .plyr__controls {
  background-color: #F6F7F9;
  border: 1px solid #E8ECF4;
  box-sizing: border-box;
  border-radius: 6px;
}
.audio-player .plyr--full-ui input[type=range] {
  border-radius: 10px;
  color: var(--main-green-color);
  cursor: pointer;
}
.audio-player .plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before {
  background-color: var(--main-green-color);
}
.audio-player .plyr__volume input[type=range] {
  color: var(--main-dark-blue-color);
}
.audio-player .plyr--audio .plyr__tab-focus,
.audio-player .plyr--audio .plyr__control:hover,
.audio-player .plyr--audio .plyr__control[aria-expanded=true] {
  background: transparent;
  color: var(--main-dark-blue-color);
}
.audio-player .plyr__control svg {
  width: 12px;
  height: 13px;
  color: var(--main-dark-blue-color);
}
.audio-player .plyr__controls__item.plyr__menu .plyr__control svg,
.audio-player .plyr__controls__item.plyr__volume .plyr__control svg {
  width: 18px;
  height: 18px;
}

.comment-input {
  margin-top: 20px;
  display: none;
}
.comment-input.is-shown {
  display: block;
}
.comment-input__inner {
  display: grid;
  grid-template: 1fr/auto 1fr;
  align-items: center;
  gap: 15px;
}
.comment-input .user__avatar-img {
  width: 43px;
  height: 43px;
}
.comment-input__form {
  background-color: var(--comment-input-color);
  border-radius: 8px;
  padding-right: 15px;
  height: 43px;
}
.comment-input__form form {
  display: flex;
  align-items: center;
}
.comment-input__form input[type=text] {
  background-color: transparent;
  padding: 13px 15px;
}
.comment-input__form input[type=text]::-moz-placeholder {
  color: var(--light-text-color);
  font-size: 16px;
}
.comment-input__form input[type=text]:-ms-input-placeholder {
  color: var(--light-text-color);
  font-size: 16px;
}
.comment-input__form input[type=text]::placeholder {
  color: var(--light-text-color);
  font-size: 16px;
}
.comment-input__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Burger css */
.burger {
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  z-index: 100;
}
.burger__main {
  position: absolute;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: center;
}
.burger__main span {
  display: block;
  width: 100%;
  height: 2px;
}
.burger__main span:nth-child(1) {
  transition-delay: 0.5s;
}
.burger__main span:nth-child(2) {
  transition-delay: 0.625s;
}
.burger__main span:nth-child(3) {
  transition-delay: 0.75s;
  width: 17px;
}
.burger__toggle {
  width: 22px;
  height: 22px;
  position: relative;
  cursor: pointer;
}
.burger__toggle span {
  position: relative;
  background: #DBE2F0;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
}
.burger__cross {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
}
.burger__cross span:nth-child(1) {
  height: 0%;
  width: 2px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  transition-delay: 0s;
}
.burger__cross span:nth-child(2) {
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition-delay: 0.25s;
}
.burger__toggle.is-active .burger__main span {
  width: 0;
}
.burger__toggle.is-active .burger__main span:nth-child(1) {
  transition-delay: 0s;
}
.burger__toggle.is-active .burger__main span:nth-child(2) {
  transition-delay: 0.125s;
}
.burger__toggle.is-active .burger__main span:nth-child(3) {
  transition-delay: 0.25s;
}
.burger__toggle.is-active .burger__cross span:nth-child(1) {
  height: 100%;
  transition-delay: 0.625s;
}
.burger__toggle.is-active .burger__cross span:nth-child(2) {
  width: 100%;
  transition-delay: 0.375s;
}

/* Burger css end */
/* Header */
.header {
  background-color: var(--header-background-color);
  color: #DBE2F0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 0;
  height: 80px;
}
.header__logo {
  display: flex;
  align-items: center;
  margin-right: clamp(10px, 7vw, 140px);
  font-size: 33px;
  font-weight: 700;
  width: 175px;
  height: 100%;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/main-logo.svg);
}
.header__logo--mobile {
  display: none;
  position: relative;
  z-index: 100;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/mobile-logo.svg);
  width: 35px;
  height: 100%;
}
.header__menu-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}
.header__nav-create {
  position: relative;
  flex-shrink: 0;
}
.header__nav-create .popup-button {
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px 10px 0;
  cursor: pointer;
}
.header__nav-create .popup-button::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 6px;
  background-image: url(../img/icons/angle-down-gray.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.header__nav-create-popup {
  position: absolute;
  right: 0;
  top: 70px;
  background-color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 25px 20px;
  color: var(--content-color);
}
.header__nav-create-popup ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.header__nav-create-popup a {
  transition: color 0.2s;
}
.header__nav-create-popup a:hover {
  color: var(--main-green-color);
}
.header__search {
  width: clamp(200px, 20vw, 350px);
  margin: 0 clamp(20px, 2vw, 40px) 0 auto;
}
.header__search--mobile {
  display: none;
  width: 42px;
  height: 42px;
  background-image: url(../img/icons/search-icon.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-color: transparent;
  background-size: 23px;
  cursor: pointer;
}
.header__search--mobile.is-active {
  background-image: url(../img/icons/search-close-icon.svg);
  background-size: 16px;
}
.header__search form {
  display: grid;
  grid-template: 1fr/40px 1fr auto;
  align-items: center;
  background-color: rgba(245, 247, 252, 0.1);
  border-radius: 6px;
}
.header__search form button {
  cursor: pointer;
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/icons/close-gray-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.header__search form button.is-active {
  opacity: 1;
  pointer-events: all;
}
.header__search input[type=submit] {
  width: 42px;
  height: 100%;
  flex-shrink: 0;
  background-image: url(../img/icons/search-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}
.header__search input[type=text] {
  font-size: 15px;
  line-height: 24px;
  color: var(--main-input-color);
  padding: 12px 0 12px 0;
  background: transparent;
}
.header__search input[type=text]::-moz-placeholder {
  color: var(--main-input-color);
  font-size: 15px;
  line-height: 24px;
}
.header__search input[type=text]:-ms-input-placeholder {
  color: var(--main-input-color);
  font-size: 15px;
  line-height: 24px;
}
.header__search input[type=text]::placeholder {
  color: var(--main-input-color);
  font-size: 15px;
  line-height: 24px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 40px);
  margin-right: clamp(15px, 3vw, 50px);
}
.header__actions li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__fullscreen {
  font-size: 21px;
}
.header__apps {
  font-size: 22px;
}
.header__language-wrap {
  position: relative;
}
.header__language-wrap a {
  border-radius: 50%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  color: #000;
  font-size: 12px;
  width: 25px;
  height: 25px;
}
.header__language-french {
  background-image: url(../img/icons/lang-fr.png);
}
@supports (background-image: url(../img/icons/lang-fr.webp)) {
  .header__language-french {
    background-image: url(../img/icons/lang-fr.webp);
  }
}
.header__language-english {
  background-image: url(../img/icons/lang-fr.png);
}
@supports (background-image: url(../img/icons/lang-fr.webp)) {
  .header__language-english {
    background-image: url(../img/icons/lang-fr.webp);
  }
}
.header__language-russian {
  background-image: url(../img/icons/lang-fr.png);
}
@supports (background-image: url(../img/icons/lang-fr.webp)) {
  .header__language-russian {
    background-image: url(../img/icons/lang-fr.webp);
  }
}
.header__language-ukrainian {
  background-image: url(../img/icons/lang-fr.png);
}
@supports (background-image: url(../img/icons/lang-fr.webp)) {
  .header__language-ukrainian {
    background-image: url(../img/icons/lang-fr.webp);
  }
}
.header__language-popup {
  position: absolute;
  background-color: #fff;
  padding: 25px 20px;
  top: 60px;
  right: -17px;
}
.header__language-popup ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--content-color);
  font-weight: 500;
}
.header__language-popup ul a {
  min-width: 50px;
  border-radius: 0;
  width: 100%;
  padding-left: 35px;
  display: flex;
  align-items: center;
  background-position: left center;
  font-size: 15px;
  transition: color 0.2s;
}
.header__language-popup ul a:hover {
  color: var(--main-green-color);
}
.header__notifications {
  position: relative;
}
.header__notifications a {
  display: flex;
}
.header__notifications-button {
  font-size: 25px;
  cursor: pointer;
}
.header__notifications-popup {
  position: absolute;
  top: 60px;
  background-color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 25px 0 0;
  color: var(--content-color);
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.09);
  width: clamp(290px, 90vw, 391px);
  right: -18px;
}
.header__notifications-popup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #9498AB;
  margin-bottom: 15px;
  padding: 0 25px;
}
.header__notifications-popup-top h4 {
  font-weight: 700;
  font-size: 19px;
  line-height: 24px;
  color: var(--main-dark-blue-color);
}
.header__notifications-popup-top a {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  transition: color 0.3s;
}
.header__notifications-popup-top a:hover {
  color: var(--main-green-color);
}
.header__notifications-list {
  display: flex;
  flex-direction: column;
}
.header__notifications-photo {
  border-radius: 6px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
}
.header__notifications-photo img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
}
.header__notifications-link {
  display: flex;
  gap: 15px;
  padding: 15px 25px;
  transition: background-color 0.2s;
}
.header__notifications-link:hover {
  background-color: #F8F9FC;
}
.header__notifications-name {
  padding-top: 7px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #0F1435;
  margin-bottom: 5px;
}
.header__notifications-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #585C73;
}
.header__notifications-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--main-red-color);
  top: -6px;
  right: -7px;
  font-weight: 700;
  font-size: 11px;
}
.header__notifications-all {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #585C73;
}
.header__notifications-all a {
  padding: 15px 15px 17px;
  border-top: var(--main-border);
  width: 100%;
  text-align: center;
  justify-content: center;
  transition: color 0.3s;
}
.header__notifications-all a:hover {
  color: var(--main-green-color);
}
.header__user {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  margin-right: clamp(5px, 2vw, 14px);
}
.header__user::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-image: url(../img/icons/angle-down-gray.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.header__user-avatar {
  width: 48px;
  height: 48px;
}
.header__settings {
  height: 23px;
  width: 23px;
  cursor: pointer;
}
.header__settings.popup-button {
  font-size: 23px;
}
.header__settings-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__settings-wrap {
  position: relative;
}
.header__settings-wrap .user__box {
  padding-bottom: 20px;
  border-bottom: var(--main-border);
  margin-bottom: 22px;
}
.header__settings-wrap a {
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__settings-wrap a:hover {
  color: var(--main-green-color);
}
.header__settings-popup {
  background-color: #fff;
  padding: 25px 20px;
  position: absolute;
  top: 60px;
  right: -17px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--main-dark-blue-color);
  display: flex;
  flex-direction: column;
  font-weight: 500;
}
.header__settings-button {
  margin-bottom: 16px;
}
.header__settings-help {
  margin-bottom: 22px;
}
.header__settings-border {
  border-bottom: var(--main-border);
  margin-bottom: 23px;
}
.header--white {
  background-color: #fff;
  color: #69768F;
}
.header--white .header__nav {
  color: var(--main-dark-blue-color);
}
.header--white .header__logo {
  background-image: url(../img/dark-logo.svg);
}
.header--white .header__logo--mobile {
  background-image: url(../img/mobile-logo-dark.svg);
}
.header--white .header__nav-create .popup-button::after {
  background-image: url(../img/icons/angle-dark-down.svg);
}
.header--white .header__search {
  background: #F8F9FC;
  border-radius: 6px;
  color: #9498AB;
}
.header--white .header__search.is-active {
  background-color: var(--main-dark-blue-color);
  border-radius: 0;
}
.header--white .header__search input[type=submit] {
  background-image: url(../img/icons/search-icon-dark.svg);
}
.header--white .header__search input[type=text] {
  color: #9498AB;
}
.header--white .header__search input[type=text]::-moz-placeholder {
  color: #9498AB;
}
.header--white .header__search input[type=text]:-ms-input-placeholder {
  color: #9498AB;
}
.header--white .header__search input[type=text]::placeholder {
  color: #9498AB;
}
.header--white .header__search--mobile {
  background-image: url(../img/icons/search-icon-dark.svg);
}
.header--white .header__search--mobile.is-active {
  background-image: url(../img/icons/search-close-icon.svg);
}
.header--white .header__notifications-counter {
  color: #fff;
}
.header--white .header__user::after {
  background-image: url(../img/icons/angle-down-dark.svg);
}
.header--white .user__avatar-img.blue-bg::after {
  background-color: #fff;
}
.header--white .burger__toggle span {
  background-color: #69768F;
}

.main__user-box {
  background-color: var(--user-box-bg);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 35px;
}
.main__user-box .user__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  white-space: inherit;
}
.main__user-box .user__avatar-img {
  max-width: 51px;
  max-height: 51px;
}
.main__user-box .action-dots {
  padding-right: 0;
}
.main__user-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(20px, 4vw, 40px);
}
.main__user-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 0 20px 0;
  position: relative;
  border-bottom: var(--main-border);
  transition: color 0.2s;
}
.main__user-links a span:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
.main__user-links a span svg {
  fill: var(--content-color);
  transition: fill 0.2s;
}
.main__user-links a:hover {
  color: var(--main-green-color);
}
.main__user-links a:hover svg {
  fill: var(--main-green-color);
}
.main__actions {
  padding: 0;
  min-height: 261px;
}
.main__actions.is-active {
  position: sticky;
  top: 100px;
  z-index: 99;
  min-height: auto;
  border-radius: 0;
  background-color: var(--main-background-color);
}
.main__actions.is-active .main__actions-post form {
  background-color: #fff;
  border-radius: 0 0 6px 6px;
}
.main__actions.is-active .main__actions-tabs {
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 6px 6px 0 0;
}
.main__actions.is-active .main__actions-post form textarea {
  height: 35px;
}
.main__actions.is-active .actions-overlay {
  background-color: var(--main-background-color);
  height: 20px;
  width: 100%;
}
.main__actions-tabs {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 23px;
}
.main__actions-tabs::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-border-color);
}
.main__actions-icon {
  font-size: 20px;
}
.main__actions-tab {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px clamp(10px, 1vw, 20px);
  height: 61px;
  position: relative;
  color: var(--light-text-color);
  transition: color 0.2s;
}
.main__actions-tab::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-border-color);
  z-index: 2;
  transition: background-color 0.3s;
}
.main__actions-tab.is-active, .main__actions-tab:hover {
  color: var(--main-dark-blue-color);
}
.main__actions-tab.is-active:after, .main__actions-tab:hover:after {
  background-color: var(--main-green-color);
}
.main__actions-tab i {
  font-size: 21px;
}
.main__actions-tab--profile::after {
  background-color: transparent;
}
.main__actions-post form {
  padding: 20px;
  color: var(--content-color);
}
.main__actions-post form textarea {
  padding: 0 10px 10px 0;
  height: 76px;
  border-bottom: var(--main-border);
  resize: none;
  margin-bottom: 16px;
  font: inherit;
  transition: height 0.3s;
}
.main__actions-post form textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: var(--content-color);
}
.main__actions-post form textarea:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: var(--content-color);
}
.main__actions-post form textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: var(--content-color);
}
.main__actions-post--profile {
  background-color: #fff;
  border-radius: 0px 0px 6px 6px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .main__actions-post--profile {
    position: sticky;
    top: 149px;
    z-index: 50;
  }
  .main__actions-post--profile::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 20px;
    background-color: var(--main-background-color);
    left: 0;
    bottom: -20px;
  }
}
.main__actions-post--profile textarea.is-active {
  height: 45px;
  padding-top: 10px;
}
.main__actions-box {
  display: none;
}
.main__actions-box.is-active {
  display: block;
}
.main__actions-box .new-post-actions {
  display: flex;
  align-items: center;
  gap: 19px;
}
.main__actions-box .new-post-actions div {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.main__actions-box .new-post-actions input[type=submit] {
  margin-left: auto;
  display: inline-flex;
  width: auto;
  background-color: var(--main-green-color);
  transition: background-color 0.2s;
  color: #fff;
  padding: 9px 22px 9px 40px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  background-image: url(../img/icons/post-it-icon.svg);
  background-repeat: no-repeat;
  background-position: 20px center;
}
.main__actions-box .new-post-actions input[type=submit]:hover {
  background-color: #15AA35;
}
.main__actions--profile {
  background-color: #fff;
  min-height: auto;
  border-radius: 6px 6px 0px 0px;
  margin-bottom: 6px;
}
.main__actions--profile .main__actions-tabs {
  margin-bottom: 0;
}

/* Settings */
.settings__inner {
  display: grid;
  grid-template: 1fr/1fr auto;
  gap: 20px;
  align-items: flex-start;
}
.settings__item-top {
  padding-bottom: 25px;
  border-bottom: 1px solid #C3CEE4;
}
.settings__item-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--content-color);
  margin-bottom: 33px;
}
.settings__item li {
  padding-bottom: 20px;
  border-bottom: var(--main-border);
  display: grid;
  grid-template: 1fr/minmax(160px, 1fr) 1fr 1fr;
  gap: 15px;
}
.settings__item-change {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--main-dark-blue-color);
}
.settings__item-name {
  font-weight: 500;
}
.settings__save-button {
  display: flex;
  justify-content: center;
}
.settings__save-button button {
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  background-color: #DBDCE7;
  padding: 14px 73px 15px;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.settings__save-button button:hover {
  background-color: var(--main-green-color);
}
.settings__menu {
  padding: 15px 15px 15px 0;
  width: clamp(200px, 20vw, 360px);
}
.settings__menu-list {
  display: flex;
  flex-direction: column;
}
.settings__menu-button {
  display: flex;
  cursor: pointer;
  padding: 15px 0 15px 25px;
  font-weight: 500;
  font-size: 16px;
  color: var(--content-color);
  position: relative;
  transition: color 0.2s;
}
.settings__menu-button:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 0%;
  background-color: var(--main-green-color);
  transition: height 0.2s;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.settings__menu-button.is-active {
  color: var(--main-green-color);
}
.settings__menu-button.is-active:before {
  height: 100%;
}

/* Login */
.entrance {
  background-color: var(--blue-background);
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--content-color);
}
.entrance__container {
  padding: clamp(10px, 4vw, 50px) 10px;
  display: grid;
  grid-template: 1fr/clamp(450px, 35vw, 460px) clamp(250px, 35vw, 460px);
}
.entrance__container--registration {
  grid-template: 1fr/1fr;
}
.entrance__left {
  background-color: #fff;
  padding: clamp(40px, 4vw, 59px) clamp(20px, 4vw, 52px) clamp(40px, 4vw, 47px) clamp(20px, 4vw, 45px);
  border-radius: 6px 0px 0px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.entrance__logo {
  margin-bottom: 14px;
}
.entrance__text {
  font-size: 16px;
  color: var(--content-color);
  max-width: 355px;
  text-align: center;
  margin-bottom: 32px;
}
.entrance__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  margin-bottom: 40px;
}
.entrance__form input[type=text] {
  color: var(--main-dark-blue-color);
}
.entrance__form input[type=text]::-moz-placeholder {
  color: var(--light-text-color);
}
.entrance__form input[type=text]:-ms-input-placeholder {
  color: var(--light-text-color);
}
.entrance__form input[type=text]::placeholder {
  color: var(--light-text-color);
}
.entrance__form input[type=submit] {
  font-weight: 700;
  font-size: 16px;
}
.entrance__actions {
  margin: 5px 0 4px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.entrance__forgot {
  color: var(--content-color);
  transition: color 0.2s;
}
.entrance__forgot:hover {
  color: var(--main-dark-blue-color);
}
.entrance__socials {
  width: 100%;
  border-top: 1px solid #DBE2F0;
  padding-top: 40px;
  position: relative;
}
.entrance__socials-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 15px;
  white-space: nowrap;
}
.entrance__socials-links {
  margin-bottom: 30px;
}
.entrance__socials-links ul {
  display: grid;
  grid-template: 1fr/repeat(3, 1fr);
  gap: 15px;
}
.entrance__socials-links a {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
}
.entrance__socials-links li {
  height: 62px;
  background: #F8F9FC;
  border-radius: 6px;
}
.entrance__socials-links li:nth-child(1) a {
  background-size: 14px;
  background-image: url(../img/icons/facebook-icon.svg);
}
.entrance__socials-links li:nth-child(2) a {
  background-size: 25px;
  background-image: url(../img/icons/twitter-icon.svg);
}
.entrance__socials-links li:nth-child(3) a {
  background-size: 23px;
  background-image: url(../img/icons/google-icon.svg);
}
.entrance__to a span {
  font-weight: 700;
  color: var(--main-dark-blue-color);
}
.entrance__right {
  border-radius: 0 6px 6px 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/login-img.webp);
}
.entrance__right::before, .entrance__right::after {
  position: absolute;
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: clamp(50px, 7vw, 88px);
  height: clamp(50px, 7vw, 88px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}
.entrance__right::before {
  bottom: clamp(50px, 8vw, 101px);
  left: clamp(18px, 3vw, 57px);
  background-image: url(../img/icons/add-icon.svg);
}
.entrance__right::after {
  top: clamp(50px, 8vw, 126px);
  right: 18px;
  background-image: url(../img/icons/gesture-icon.svg);
}

/* Custom select */
.select {
  display: inline-block;
  position: relative;
  color: inherit;
  width: 100%;
}
.select__hidden {
  display: none;
  visibility: hidden;
}
.select__styled {
  padding: 13px 35px 12px 17px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 35px;
  position: relative;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: var(--main-border);
  color: var(--light-text-color);
  width: 100%;
}
.select__styled::after {
  position: absolute;
  content: "";
  background-image: url(../img/icons/select-angle.svg);
  width: 12px;
  height: 7px;
  background-repeat: no-repeat;
  background-position: center;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
.select__styled.active::after {
  transform: rotate(180deg) translateY(50%);
}
.select__options {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #E4E9EB;
  border-radius: 7px;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 100%;
  font-weight: 400;
}
.select__options li {
  margin: 0;
  padding: 12px 17px;
  color: var(--light-text-color);
  transition: background-color 0.2s, color 0.2s;
}
.select__options li:first-child {
  border-radius: 6px 6px 0 0;
}
.select__options li:last-child {
  border-radius: 0 0 6px 6px;
}
.select__options li:hover {
  color: #fff;
  background-color: var(--main-green-color);
}
.select__options li[rel=hide] {
  display: none;
}

/* Custom multiple select */
.select-multiple {
  padding: 5px;
  outline: none;
  scrollbar-width: thin;
  scrollbar-color: var(--main-green-color) #fff;
  transition: scrollbar-color 0.2s ease-out;
  border: var(--main-border);
  max-height: 110px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 32px;
  color: var(--light-text-color);
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.select-multiple option {
  padding: 5px;
}
.select-multiple::-webkit-scrollbar {
  width: 5px;
}
.select-multiple::-webkit-scrollbar-track {
  background: transparent;
}
.select-multiple::-webkit-scrollbar-thumb {
  background: var(--main-green-color);
  border-radius: 50px;
}
.select-multiple::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Input wrap */
.input-wrap {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--main-dark-blue-color);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Inputs global rules */
.input-global {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--light-text-color);
  padding: 13px clamp(7px, 1vw, 17px) 12px;
  border-radius: 6px;
  border: var(--main-border);
}
.input-global::-moz-placeholder {
  font-size: 15px;
  line-height: 24px;
  color: var(--light-text-color);
}
.input-global:-ms-input-placeholder {
  font-size: 15px;
  line-height: 24px;
  color: var(--light-text-color);
}
.input-global::placeholder {
  font-size: 15px;
  line-height: 24px;
  color: var(--light-text-color);
}

/* Helping text input */
.helping-text__info {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  color: var(--light-text-color);
  margin-top: 8px;
}
.helping-text__info a {
  color: var(--main-green-color);
}

/* Password input */
.password-input__wrap {
  border-radius: 6px;
  border: var(--main-border);
  display: grid;
  grid-template: 1fr/1fr auto;
  align-items: center;
  overflow: hidden;
}
.password-input__wrap input {
  border: none;
}
.password-input__show-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: clamp(30px, 3vw, 54px);
  transition: transform 0.2s;
}
.password-input__show-btn.is-hidden {
  transform: scale(0);
}
.password-input__show-icon {
  color: var(--light-text-color);
}
.password-input__show-icon.is-hidden {
  display: none;
}

/* Upload file */
.file-input {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.file-input__input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.file-input__wrapper {
  display: grid;
  grid-template: 1fr/auto 1fr;
}
.file-input__text {
  border: var(--main-border);
  border-left: 0;
  padding: 13px 18px 12px 18px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #9498AB;
  border-radius: 0 6px 6px 0;
}
.file-input__button {
  background-color: #F8F9FC;
  border: var(--main-border);
  border-radius: 6px 0px 0px 6px;
  color: var(--content-color);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  padding: 13px 16px 12px 17px;
  transition: color 0.2s, background-color 0.2s;
}
.file-input__button:hover {
  background-color: var(--main-green-color);
  color: #fff;
}

/* Date input */
.date-input__wrap {
  border: var(--main-border);
  display: grid;
  grid-template: 1fr/auto 1fr;
  align-items: center;
  padding-left: 14px;
  color: var(--light-text-color);
  border-radius: 6px;
  overflow: hidden;
}
.date-input__wrap input {
  border: none;
}
.date-input__wrap i {
  font-size: 16px;
}

.kalendae {
  margin: 0;
  background-color: #fff;
  padding: 26px 0 0;
  border: none;
  border-radius: 0;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.2) !important;
}

.kalendae .k-title,
.kalendae .k-header,
.kalendae .k-days {
  width: 100%;
}

.kalendae .k-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  height: auto;
  font-family: var(--font-main);
  padding: 0 16px;
}

.kalendae .k-header {
  background-color: #F3F5F9;
  padding: 14px 16px;
  display: grid;
  grid-template: 1fr/repeat(7, 1fr);
  align-items: center;
  justify-items: center;
  font-family: var(--font-second);
  color: var(--content-color);
  text-align: center;
}

.kalendae .k-header span {
  font-weight: 400;
}

.kalendae .k-days {
  font-size: 15px;
  line-height: 38px;
  padding: 18px 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(38px, 1fr));
  row-gap: 5px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.kalendae .k-days span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.kalendae .k-days span.k-in-month.k-active.k-today {
  text-decoration: none;
  background-color: #F8F9FC;
}

.kalendae .k-days span.k-selected.k-active,
.kalendae .k-days .k-active span.k-selected {
  background-color: transparent;
}

.kalendae .k-days span.k-in-month.k-active {
  border: none;
  transition: color 0.2s, background-color 0.2s;
}

.kalendae .k-days span.k-in-month.k-active:hover {
  color: #fff;
  background-color: var(--main-green-color);
}

.kalendae .k-calendar {
  width: clamp(280px, 35vw, 400px);
}

.kalendae .k-caption {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  order: 1;
  display: flex;
  align-items: center;
  gap: 3px;
}

.kalendae .k-btn-previous-year,
.kalendae .k-btn-next-year {
  display: none;
}

.kalendae .k-btn-previous-month {
  left: 0;
  width: 11px;
  height: 17px;
  background-image: url(../img/icons/calendar-prev.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 11px;
  position: static;
}

.kalendae .k-btn-next-month {
  right: 0;
  width: 11px;
  height: 17px;
  background-image: url(../img/icons/calendar-next.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 11px;
  position: static;
  order: 2;
}

.kalendae .k-btn-previous-month:after {
  content: "";
  opacity: 0;
}

.kalendae .k-btn-next-month:after {
  content: "";
  opacity: 0;
}

.time-input__wrap {
  border: var(--main-border);
  display: grid;
  grid-template: 1fr/auto 1fr;
  align-items: center;
  padding-left: 14px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--light-text-color);
  border-radius: 6px;
}
.time-input__wrap input {
  border: none;
}
.time-input__wrap i {
  font-size: 18px;
}

.number-input {
  position: relative;
  border: var(--main-border);
  display: grid;
  grid-template: 1fr/1fr auto;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--light-text-color);
  border-radius: 6px;
  overflow: hidden;
}
.number-input input[type=number]::-webkit-inner-spin-button,
.number-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.number-input input[type=number] {
  -moz-appearance: textfield;
  border: none;
}
.number-input .quantity input:focus {
  outline: 0;
}
.number-input .quantity-nav {
  height: 100%;
  display: grid;
  grid-template: 1fr 1fr/auto;
}
.number-input .quantity-button {
  cursor: pointer;
  width: 50px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-repeat: no-repeat;
  background-size: auto;
}
.number-input .quantity-button.quantity-up {
  background-position: center bottom 4px;
  background-image: url(../img/icons/angle-up-icon.svg);
}
.number-input .quantity-button.quantity-down {
  background-position: center top 4px;
  background-image: url(../img/icons/angle-down-icon.svg);
}

/* Textarea */
.textarea-box {
  resize: none;
  height: 111px;
}

/* Range input */
.input-range input[type=range] {
  -webkit-appearance: none;
  -moz-apperance: none;
  border-radius: 6px;
  height: 5px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0.2, var(--input-range-fill)), color-stop(0.2, var(--input-range-background)));
  cursor: pointer;
}
.input-range input[type=range]::-webkit-slider-runnable-track {
  height: 5px;
}
.input-range input[type=range]::-webkit-slider-thumb {
  background: var(--main-green-color);
  cursor: pointer;
  width: 16px;
  height: 16px;
  -webkit-appearance: none;
  margin-top: -5px;
  border: none;
  border-radius: 50%;
}
.input-range input[type=range]::-moz-range-track {
  height: 5px;
}
.input-range input[type=range]::-moz-range-thumb {
  background: var(--main-green-color);
  cursor: pointer;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 0px;
  margin: 0px;
  border: none;
}

/* Switch input */
.switch-input {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--content-color);
}
.switch-input__wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--content-color);
}
.switch-input__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #C3CEE4;
  transition: 0.4s;
  border-radius: 15px;
}
.switch-input__slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: transform 0.4s, background-color 0.2s;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}
.switch-input__slider:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 8px;
  bottom: 8px;
  background-color: #EFF5FB;
  transition: transform 0.4s, background-color 0.2s;
  border-radius: 50%;
}
.switch-input__checkbox {
  display: none;
}
.switch-input__checkbox:checked + .switch-input__slider {
  background-color: var(--main-green-color);
}
.switch-input__checkbox:focus + .switch-input__slider {
  box-shadow: 0 0 1px var(--main-green-color);
}
.switch-input__checkbox:checked + .switch-input__slider:before {
  transform: translateX(23px);
}
.switch-input__checkbox:checked + .switch-input__slider:after {
  transform: translateX(23px);
}
.switch-input--sm {
  width: 36px;
  height: 20px;
}
.switch-input--sm .switch-input__slider {
  background-color: #E8EDF9;
}
.switch-input--sm .switch-input__slider:before {
  width: 16px;
  height: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #C2CADE;
}
.switch-input--sm .switch-input__checkbox:checked + .switch-input__slider:before {
  transform: translateX(16px);
  background-color: #fff;
}
.switch-input--sm .switch-input__slider:after {
  display: none;
}
.switch-input--md {
  width: 47px;
  height: 26px;
}
.switch-input--md .switch-input__slider {
  background-color: #E8EDF9;
}
.switch-input--md .switch-input__slider:before {
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #C2CADE;
}
.switch-input--md .switch-input__checkbox:checked + .switch-input__slider:before {
  transform: translateX(21px);
  background-color: #fff;
}
.switch-input--md .switch-input__slider:after {
  display: none;
}
.switch-input--lg {
  width: 56px;
  height: 31px;
}
.switch-input--lg .switch-input__slider {
  background-color: #E8EDF9;
}
.switch-input--lg .switch-input__slider:before {
  width: 25px;
  height: 25px;
  left: 3px;
  bottom: 3px;
  background-color: #C2CADE;
}
.switch-input--lg .switch-input__checkbox:checked + .switch-input__slider:before {
  transform: translateX(25px);
  background-color: #fff;
}
.switch-input--lg .switch-input__slider:after {
  display: none;
}
.switch-input--ic {
  width: 56px;
  height: 31px;
}
.switch-input--ic .switch-input__slider {
  background-color: #E8EDF9;
}
.switch-input--ic .switch-input__slider:before {
  width: 25px;
  height: 25px;
  left: 3px;
  bottom: 3px;
  background-color: #C2CADE;
}
.switch-input--ic .switch-input__slider:after {
  border-radius: 0;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  background-color: transparent;
  width: 6px;
  height: 7px;
  left: 12px;
  top: 12px;
}
.switch-input--ic .switch-input__checkbox:checked + .switch-input__slider:before {
  transform: translateX(25px);
  background-color: #fff;
}
.switch-input--ic .switch-input__checkbox:checked + .switch-input__slider:after {
  transform: translateX(25px);
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 2px solid #24C046;
  left: 10px;
  top: 10px;
  border-radius: 50%;
}

/* Check & radio inputs */
.radio-input {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  padding: 13px 0;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--main-dark-blue-color);
}
.radio-input__radio {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  opacity: 0;
}
.radio-input__style {
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
  border: 2px solid #E8ECF4;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 8px;
  flex-shrink: 0;
}
.radio-input__style::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  background-color: transparent;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.radio-input__radio:checked + .radio-input__style::before {
  background-color: var(--main-green-color);
  width: 11px;
  height: 11px;
}
.radio-input__radio:checked + .radio-input__style {
  border-color: var(--main-green-color) !important;
}

.check-input {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 22px;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--main-dark-blue-color);
}
.check-input__check {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  opacity: 0;
}
.check-input__check:checked + .check-input__style {
  border-color: var(--main-green-color);
}
.check-input__check:checked + .check-input__style::before {
  background-color: var(--main-green-color);
}
.check-input__style {
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  background-color: #fff;
  margin-right: 13px;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.check-input__style::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/icons/check-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  top: 0%;
  left: 0%;
  transition: background-color 0.2s;
}

.floating-input {
  position: relative;
  font-weight: 500;
}
.floating-input input {
  padding: 16px 15px 15px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--content-color);
}
.floating-input input::-moz-placeholder {
  opacity: 0;
}
.floating-input input:-ms-input-placeholder {
  opacity: 0;
}
.floating-input input::placeholder {
  opacity: 0;
}
.floating-input label {
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: top 0.1s, opacity 0.2s;
  pointer-events: none;
  font-size: 15px;
  line-height: 24px;
  color: #0F1435;
}
.floating-input label.is-hidden {
  opacity: 0 !important;
}

.floating-input input:not(:-moz-placeholder-shown) + label {
  top: 10px;
  font-size: 13px;
  color: var(--light-text-color);
}

.floating-input input:not(:-ms-input-placeholder) + label {
  top: 10px;
  font-size: 13px;
  color: var(--light-text-color);
}

.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label {
  top: 10px;
  font-size: 13px;
  color: var(--light-text-color);
}

/* Static input */
.static-input {
  display: grid;
  grid-template: 1fr/auto 1fr;
  align-items: center;
  padding: 0;
  height: 51px;
}
.static-input span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  flex-shrink: 0;
  background-color: #F8F9FC;
  border: var(--main-border);
  border-right: none;
  height: 100%;
  border-radius: 6px 0 0 6px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--content-color);
  padding-bottom: 2px;
}
.static-input input {
  display: inline-block;
  border-left: none;
  border-radius: 0 6px 6px 0;
}

/* Dropdown input */
.dropdown-input {
  display: grid;
  grid-template: 1fr/auto 1fr;
  align-items: center;
  padding: 0;
  position: relative;
  height: 51px;
}
.dropdown-input__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #F8F9FC;
  border: var(--main-border);
  height: 100%;
  border-radius: 6px 0 0 6px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--content-color);
  padding: 0 39px 0 17px;
  gap: 13px;
  cursor: pointer;
}
.dropdown-input__button::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 7px;
  background-image: url(../img/icons/angle-down-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
.dropdown-input__button.is-active:after {
  transform: translateY(-50%) rotate(180deg);
}
.dropdown-input input {
  border-left: none;
  border-radius: 0 6px 6px 0;
}
.dropdown-input__popup {
  background-color: #fff;
  border: var(--main-border);
  border-radius: 6px;
  color: var(--content-color);
  overflow: hidden;
  position: absolute;
  top: 110%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 30%;
  z-index: -1;
  opacity: 0;
  transform: translateY(10%);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.3s, z-index 0.2s ease-in-out;
}
.dropdown-input__popup.is-active {
  z-index: 10;
  opacity: 1;
  transform: translateY(0%);
  pointer-events: all;
}
.dropdown-input__popup ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dropdown-input__popup ul a {
  width: 100%;
  padding: 5px 10px;
  transition: color 0.2s, background-color 0.2s;
}
.dropdown-input__popup ul a:hover {
  background-color: var(--main-green-color);
  color: #fff;
}

/* Button input */
.button-input {
  display: grid;
  grid-template: auto/1fr auto;
  align-items: center;
  height: 51px;
}
.button-input input {
  border-right: 0;
  border-radius: 6px 0 0 6px;
}
.button-input__button {
  border-radius: 0px 6px 6px 0px;
  background-color: var(--main-green-color);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #F8F9FC;
  padding: 0 26px 0 30px;
  font-family: inherit;
  transition: background-color 0.2s;
}
.button-input__button:hover {
  background-color: var(--main-green-hover-color);
}

/* Contacts form */
.form {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.form__top {
  display: grid;
  grid-template: 1fr/1fr 1fr;
  gap: clamp(15px, 2vw, 30px);
}
.form__bottom {
  display: grid;
  grid-template: 1fr/1.65fr 1fr 0.5fr;
  gap: clamp(15px, 2vw, 30px);
}
.form__button {
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  padding: 14px 25px 15px 25px;
  background-color: var(--main-green-color);
  border-radius: 6px;
  color: #fff;
  font-family: inherit;
  transition: background-color 0.2s;
}
.form__button:hover {
  background-color: var(--main-green-hover-color);
}

.popover {
  position: relative;
}
.popover__btn {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.3px;
  padding: 7px 20px;
  background-color: #E8EDF9;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}
.popover__btn.is-active {
  background-color: var(--main-green-color);
  color: #fff;
}
.popover__btn:hover {
  background-color: var(--main-green-color);
  color: #fff;
}
.popover__popup {
  position: absolute;
  display: inline-block;
  background: #FFFFFF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.02), 0px 5px 40px rgba(0, 0, 0, 0.09);
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  min-width: 227px;
  padding: 11px 5px 10px 15px;
  color: var(--light-text-color);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transform: scaleX(0);
  transition: all 0.2s;
}
.popover__popup.is-active {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
  transform: scaleX(1);
}
.popover--popup-top .popover__popup {
  bottom: 120%;
  left: 0;
}
.popover--popup-top .popup-triangle::after {
  top: auto;
  bottom: -16px;
  left: 20px;
  transform: rotate(180deg);
}
.popover--popup-bottom .popover__popup {
  top: 120%;
  left: 0;
}
.popover--popup-bottom .popup-triangle::after {
  top: auto;
  top: -16px;
  left: 20px;
  transform: rotate(0);
}
.popover--popup-right .popover__popup {
  left: 105%;
  top: 50%;
  transform: scaleX(0) translateY(-50%);
}
.popover--popup-right .popover__popup.is-active {
  transform: scaleX(1) translateY(-50%);
}
.popover--popup-right .popup-triangle::after {
  top: 50%;
  bottom: auto;
  left: -16px;
  transform: rotate(-90deg) translateX(50%);
}
.popover--popup-left .popover__popup {
  right: 105%;
  top: 50%;
  transform: scaleX(0) translateY(-50%);
}
.popover--popup-left .popover__popup.is-active {
  transform: scaleX(1) translateY(-50%);
}
.popover--popup-left .popup-triangle::after {
  top: 50%;
  bottom: auto;
  right: -16px;
  left: auto;
  transform: rotate(90deg) translateX(-50%);
}

/* Tooltips */
.tooltip {
  position: relative;
}
.tooltip:hover .tooltip__popup {
  opacity: 1;
  z-index: 1;
  transform: scaleX(1);
}
.tooltip__popup {
  position: absolute;
  display: inline-block;
  background-color: var(--main-dark-blue-color);
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  max-width: 200px;
  padding: 4px 10px;
  color: #F8F9FC;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transform: scaleX(0);
  transition: all 0.3s;
}
.tooltip__popup::after {
  border-bottom-color: var(--main-dark-blue-color);
}
.tooltip__popup--yellow {
  background-color: #FFDB2A;
  color: var(--main-dark-blue-color);
}
.tooltip__popup--yellow::after {
  border-bottom-color: #FFDB2A;
}
.tooltip__popup--white {
  background-color: #fff;
  color: var(--main-dark-blue-color);
}
.tooltip__popup--white::after {
  border-bottom-color: #fff;
}
.tooltip--popup-top .tooltip__popup {
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip--popup-top:hover .tooltip__popup {
  bottom: 120%;
  transform: translateX(-50%);
}
.tooltip--popup-top .popup-triangle::after {
  top: auto;
  bottom: -16px;
  left: 50%;
  transform: rotate(180deg) translateX(50%);
}
.tooltip--popup-bottom .tooltip__popup {
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip--popup-bottom:hover .tooltip__popup {
  top: 120%;
  transform: translateX(-50%);
}
.tooltip--popup-bottom .popup-triangle::after {
  top: auto;
  top: -16px;
  left: 50%;
  transform: rotate(0) translateX(-50%);
}
.tooltip--popup-right .tooltip__popup {
  left: 115%;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip--popup-right:hover .tooltip__popup {
  left: 105%;
  transform: translateY(-50%);
}
.tooltip--popup-right .popup-triangle::after {
  top: 50%;
  bottom: auto;
  left: -16px;
  transform: rotate(-90deg) translateX(50%);
}
.tooltip--popup-left .tooltip__popup {
  right: 115%;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip--popup-left:hover .tooltip__popup {
  right: 105%;
  transform: translateY(-50%);
}
.tooltip--popup-left .popup-triangle::after {
  top: 50%;
  bottom: auto;
  right: -16px;
  left: auto;
  transform: rotate(90deg) translateX(-50%);
}
.tooltip__btn {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.3px;
  padding: 7px 20px;
  background-color: #E8EDF9;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}
.tooltip__btn:hover {
  background-color: var(--main-green-color);
  color: #fff;
}
.tooltip.is-interactive .tooltip__popup {
  pointer-events: all;
}
.tooltip--clickable.tooltip--popup-top .tooltip__popup {
  bottom: 120%;
}
.tooltip--clickable.tooltip--popup-top.is-active .tooltip__popup {
  opacity: 1;
  z-index: 1;
}
.tooltip--clickable.tooltip--popup-bottom .tooltip__popup {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip--clickable.tooltip--popup-bottom.is-active .tooltip__popup {
  top: 120%;
  opacity: 1;
  z-index: 1;
  transform: translateX(-50%);
}
.tooltip--clickable.tooltip--popup-left .tooltip__popup {
  transform: translateY(-50%);
  right: 105%;
}
.tooltip--clickable.tooltip--popup-left.is-active .tooltip__popup {
  opacity: 1;
  z-index: 1;
}
.tooltip--clickable.tooltip--popup-right .tooltip__popup {
  transform: translateY(-50%);
  left: 105%;
}
.tooltip--clickable.tooltip--popup-right.is-active .tooltip__popup {
  opacity: 1;
  z-index: 1;
}
.tooltip--clickable:hover .tooltip__popup {
  opacity: 0;
  z-index: -1;
}

/* Text tooltip */
.text-vs-tooltips {
  color: var(--content-color);
  font-size: 16px;
  line-height: 24px;
}

.text-tooltip {
  position: relative;
  display: inline-block;
}
.text-tooltip__button {
  color: var(--main-dark-blue-color);
  transition: color 0.2s;
}
.text-tooltip__button:hover {
  color: var(--main-green-color);
}
.text-tooltip:hover .text-tooltip__popup {
  opacity: 1;
  z-index: 1;
  transform: scaleX(1);
}
.text-tooltip__popup {
  position: absolute;
  display: inline-block;
  background-color: var(--main-dark-blue-color);
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  max-width: 200px;
  padding: 4px 10px;
  color: #F8F9FC;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transform: scaleX(0);
  transition: all 0.2s;
}
.text-tooltip__popup::after {
  border-bottom-color: var(--main-dark-blue-color);
}
.text-tooltip--popup-top .text-tooltip__popup {
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
}
.text-tooltip--popup-top:hover .text-tooltip__popup {
  bottom: 120%;
  transform: translateX(-50%);
}
.text-tooltip--popup-top .popup-triangle::after {
  top: auto;
  bottom: -16px;
  left: 50%;
  transform: rotate(180deg) translateX(50%);
}
.text-tooltip--popup-bottom .text-tooltip__popup {
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
}
.text-tooltip--popup-bottom:hover .text-tooltip__popup {
  top: 120%;
  transform: translateX(-50%);
}
.text-tooltip--popup-bottom .popup-triangle::after {
  top: auto;
  top: -16px;
  left: 50%;
  transform: rotate(0) translateX(-50%);
}
.text-tooltip--popup-right .text-tooltip__popup {
  left: 115%;
  top: 50%;
  transform: translateY(-50%);
}
.text-tooltip--popup-right:hover .text-tooltip__popup {
  left: 105%;
  transform: translateY(-50%);
}
.text-tooltip--popup-right .popup-triangle::after {
  top: 50%;
  bottom: auto;
  left: -16px;
  transform: rotate(-90deg) translateX(50%);
}
.text-tooltip--popup-left .text-tooltip__popup {
  right: 115%;
  top: 50%;
  transform: translateY(-50%);
}
.text-tooltip--popup-left:hover .text-tooltip__popup {
  right: 105%;
  transform: translateY(-50%);
}
.text-tooltip--popup-left .popup-triangle::after {
  top: 50%;
  bottom: auto;
  right: -16px;
  left: auto;
  transform: rotate(90deg) translateX(-50%);
}

/* Tooltip animations */
.tooltip-anim {
  position: relative;
}
.tooltip-anim__btn {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.3px;
  padding: 7px 20px;
  background-color: var(--main-green-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  color: #fff;
}
.tooltip-anim__btn:hover {
  background-color: var(--main-green-hover-color);
}
.tooltip-anim__popup {
  position: absolute;
  display: inline-block;
  background-color: var(--main-dark-blue-color);
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  max-width: 200px;
  padding: 4px 10px;
  color: #F8F9FC;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s;
}
.tooltip-anim__popup::after {
  border-bottom-color: var(--main-dark-blue-color);
  left: 50%;
  transform: translateX(-50%);
}
.tooltip-anim:hover .tooltip-anim__popup {
  opacity: 1;
  z-index: 1;
}
.tooltip-anim--top .tooltip-anim__popup {
  top: 80%;
}
.tooltip-anim--top:hover .tooltip-anim__popup {
  top: 120%;
}
.tooltip-anim--bottom .tooltip-anim__popup {
  top: 150%;
}
.tooltip-anim--bottom:hover .tooltip-anim__popup {
  top: 120%;
}
.tooltip-anim--fade:hover .tooltip-anim__popup {
  opacity: 1;
  z-index: 1;
}
.tooltip-anim--scale .tooltip-anim__popup {
  transform: scale(0) translateX(-50%);
  transform-origin: 0 0;
}
.tooltip-anim--scale:hover .tooltip-anim__popup {
  transform: scale(1) translateX(-50%);
}
.tooltip-anim--width .tooltip-anim__popup {
  transform: scaleX(0) translateX(-50%);
  transform-origin: 0 0;
}
.tooltip-anim--width:hover .tooltip-anim__popup {
  transform: scaleX(1) translateX(-50%);
}
.tooltip-anim--rotate .tooltip-anim__popup {
  transform: rotate(-50deg) translateX(-50%);
}
.tooltip-anim--rotate:hover .tooltip-anim__popup {
  transform: rotate(0deg) translateX(-50%);
}

/* Embed video */
.embed-video {
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  height: clamp(250px, 25vw, 369px);
  transform: translateY(0px);
}
.embed-video iframe {
  border: 0px;
  border-width: 0px;
  width: 100%;
  height: 100%;
}

.gallery-controlled {
  height: 410px;
}
.gallery-controlled__item {
  border-radius: 6px;
  overflow: hidden;
  height: 410px;
}
.gallery-controlled__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 6px;
}
.gallery-controlled__item-prev {
  cursor: pointer;
  width: 80px;
  height: 60px;
}
.gallery-controlled .swiper-button-prev,
.gallery-controlled .swiper-button-next {
  height: 38px;
  width: 19px;
  outline: none;
}
.gallery-controlled .swiper-button-prev::after,
.gallery-controlled .swiper-button-next::after {
  content: "";
  height: 38px;
  width: 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gallery-controlled .swiper-button-next::after {
  background-image: url(../img/icons/angle-right.svg);
}
.gallery-controlled .swiper-button-prev::after {
  background-image: url(../img/icons/angle-left.svg);
}
.gallery-controlled__pagination {
  bottom: clamp(10px, 3vw, 36px) !important;
}
.gallery-controlled__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 2px solid #fff;
  opacity: 1;
}
.gallery-controlled__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-green-color);
  border-color: var(--main-green-color);
}
.gallery-controlled--control {
  max-width: 250px;
  top: -90px;
}

/* Buttons */
.button {
  font-weight: 700;
  border-radius: 4px;
  color: #fff;
  font-family: "DMSans", sans-serif;
  letter-spacing: -0.2px;
}
.button--green {
  background-color: #24C046;
}
.button--blue {
  background-color: #0F1435;
}
.button--light-blue {
  background-color: #2434C0;
}
.button--orange {
  background-color: #E05B11;
}
.button--purple {
  background-color: #AA24C0;
}
.button--sm {
  font-size: 13px;
  line-height: 17px;
  padding: 9px 16px;
}
.button--md {
  font-size: 14px;
  line-height: 24px;
  padding: 9px 20px;
}
.button--lg {
  font-size: 15px;
  line-height: 24px;
  padding: 14px 35px;
}
.button--ic {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 24px;
  padding: 9px 20px;
}
.button--ic i {
  font-size: 12px;
}

/* Progress bars */
.progress-bar {
  -webkit-appearance: none;
  -moz-apperance: none;
  border-radius: 6px;
  height: 5px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0.2, var(--input-range-fill)), color-stop(0.2, var(--input-range-background)));
  cursor: pointer;
}
.progress-bar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 7px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}
.progress-bar::-webkit-slider-runnable-track {
  height: 5px;
}
.progress-bar::-webkit-slider-thumb {
  background-color: transparent;
  cursor: pointer;
  width: 16px;
  height: 16px;
  -webkit-appearance: none;
  margin-top: -5px;
  border: none;
  border-radius: 50%;
  opacity: 0;
}
.progress-bar::-moz-range-track {
  height: 5px;
}
.progress-bar::-moz-range-thumb {
  background-color: transparent;
  cursor: pointer;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 0px;
  margin: 0px;
  border: none;
  opacity: 0;
}

/* Tabs */
.tabs__buttons {
  display: flex;
}
.tabs__button {
  position: relative;
  top: 1px;
  display: flex;
  padding: 10px 25px;
  border-radius: 6px 6px 0 0;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--light-text-color);
  transition: color 0.2s, border-color 0.2s;
}
.tabs__button:hover {
  color: var(--main-green-color);
}
.tabs__button.is-active {
  border-color: #DBE2F0;
  border-bottom: 1px solid #fff;
  color: var(--main-dark-blue-color);
}
.tabs__items {
  z-index: 1;
  border: 1px solid #DBE2F0;
  padding: 25px 20px;
  border-radius: 0 6px 6px 6px;
}
.tabs__items.is-active {
  border-radius: 6px;
}
.tabs__item {
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--content-color);
}
.tabs__item.is-active {
  display: flex;
}
.tabs--vertical {
  display: flex;
}
.tabs--vertical .tabs__buttons {
  flex-direction: column;
  min-width: clamp(125px, 10vw, 150px);
}
.tabs--vertical .tabs__button {
  top: 0;
  left: 1px;
  border-radius: 6px 0 0 6px;
}
.tabs--vertical .tabs__button.is-active {
  border: 1px solid #DBE2F0;
  border-right: 1px solid #fff;
  z-index: 11;
}
.tabs--vertical .tabs__items {
  padding: 20px 25px;
}

/* ACcordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion__btn {
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #DBE2F0;
  border-radius: 6px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.accordion__btn-decor {
  position: relative;
  width: 15px;
  height: 15px;
}
.accordion__btn-decor::before, .accordion__btn-decor::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 15px;
}
.accordion__btn-decor::before {
  background-image: url(../img/icons/plus-icon.svg);
}
.accordion__btn.is-active .accordion__btn-decor::before {
  background-image: url(../img/icons/minus-icon.svg);
}
.accordion__item {
  display: none;
}
.accordion__item.is-shown {
  display: block;
}
.accordion__inner {
  padding: 22px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--content-color);
}
.accordion--bg {
  background-color: #F0F3F9;
  border-radius: 4px;
  padding-bottom: 12px;
}
.accordion--bg .accordion__btn {
  background-color: transparent;
  border: none;
}
.accordion--bg .accordion__item {
  padding: 0 20px;
}
.accordion--bg .accordion__inner {
  border-radius: 4px;
  background-color: #fff;
}

/* Offcanvas */
.offcanvas {
  position: fixed;
  background-color: #fff;
  width: clamp(280px, 35vw, 400px);
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  padding: 30px 20px;
  transform: translateX(-200%);
  transition: transform 0.6s ease-in-out;
}
.offcanvas.is-active {
  transform: translateX(0%);
}
.offcanvas__button {
  display: inline-block;
  cursor: pointer;
  padding: 9px 20px;
  background-color: #0F1435;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.offcanvas__button:after {
  content: "";
  background: #f7f7f7;
  display: block;
  position: absolute;
  width: 200%;
  height: 200%;
  top: -5%;
  left: 0;
  border-radius: 75px;
  margin-left: -28%;
  opacity: 0;
  transition: all 0.75s ease-in-out;
}
.offcanvas__button:active:after {
  width: 0px;
  opacity: 1;
  transition: 0s;
}
.offcanvas__close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}
.offcanvas__close span {
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/close-gray-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}
.offcanvas__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f143544;
  z-index: 1000;
  transition: opacity 0.3s, z-index 0.3s;
  display: none;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 4px;
}
.pagination__item {
  color: var(--main-dark-blue-color);
}
.pagination__link {
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  background-color: #E8EDF9;
  border: 1px solid #E8EDF9;
  border-radius: 5px;
  min-width: 39px;
  transition: color 0.2s, background-color 0.2s;
  height: 100%;
}
.pagination__link i {
  font-size: 9px;
}
.pagination__link:hover {
  background-color: var(--main-green-color);
  color: #fff;
}
.pagination--bordered .pagination__link {
  background-color: transparent;
  border: 1px solid #DBE2F0;
}
.pagination--bordered .pagination__link:hover {
  background-color: var(--main-green-color);
  color: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:first-child) {
  padding-left: 13px;
  margin-left: 10px;
  background-image: url(../img/icons/breadcrumbs-angle.svg);
  background-repeat: no-repeat;
  background-position: left center;
}
.breadcrumbs__item:last-child {
  color: #9497AB;
}
.breadcrumbs__item:last-child a {
  cursor: default;
}
/* Headings */
.heading {
  font-weight: 700;
  color: #0F1435;
}
.heading--1 {
  font-size: 27px;
  line-height: 28px;
  margin-bottom: 13px;
}
.heading--2 {
  font-size: 23px;
  line-height: 26px;
  margin-bottom: 12px;
}
.heading--3 {
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 11px;
}
.heading--4 {
  font-size: 19px;
  line-height: 22px;
  margin-bottom: 9px;
}
.heading--5 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
}

.subheading {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #585C73;
}

/* Blockquote */
.blockquote {
  font-size: 17px;
  line-height: 29px;
  color: #0F1435;
  margin: 0;
  position: relative;
  padding-left: 43px;
}
.blockquote:before {
  position: absolute;
  content: "";
  width: 22px;
  height: 16px;
  left: 0;
  top: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/icons/blockquote-icon.svg);
}
.blockquote__wrap--bg {
  background-color: #F2F5FB;
  border-radius: 4px;
  padding: 20px 23px;
}

/* Listings */
.list {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 18px;
  color: #585C73;
  gap: 15px;
}
.list--dotted li {
  padding-left: 15px;
  position: relative;
}
.list--dotted li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 0;
  top: 7px;
  background-color: #0F1435;
}
.list--num {
  list-style: none;
  counter-reset: item;
}
.list--num li {
  display: block;
  margin-left: 1.7em;
}
.list--num li::before {
  color: #0F1435;
  content: counter(item) ". ";
  counter-increment: item;
  position: absolute;
  margin-left: -1.7em;
}

/* List group */
.list-group {
  width: 100%;
}
.list-group__item {
  border: 1px solid #DBE2F0;
  color: var(--content-color);
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
}
.list-group__item + .list-group__item {
  border-top: none;
}
.list-group__item:first-child {
  border-radius: 6px 6px 0 0;
}
.list-group__item:last-child {
  border-radius: 0 0 6px 6px;
}
.list-group__item.is-active {
  border-color: var(--main-green-color);
}
.list-group__item.is-active .list-group__link {
  background-color: var(--main-green-color);
  color: #fff;
}
.list-group__item.is-active i {
  color: #fff;
}
.list-group__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
}
.list-group__link i {
  color: var(--icon-color);
  font-size: 14px;
}
.list-group__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #E8EDF9;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  min-width: 28px;
  height: 21px;
  text-align: center;
  color: #0F1435;
  padding: 0 10px;
}
.list-group__badge--dark {
  background-color: #69768F;
  color: #fff;
}
.list-group__badge--red {
  background-color: var(--main-red-color);
  color: #fff;
}
.list-group--badges .list-group__link {
  justify-content: space-between;
}
.list-group--checkboxes .check-input {
  font-weight: 400;
  color: var(--content-color);
}
.list-group--checkboxes .check-input__style {
  margin-right: 10px;
}

/* Avatars */
.avatar {
  border-radius: 6px;
  overflow: hidden;
}
.avatar--sm {
  border-radius: 4px;
  width: 25px;
  height: 25px;
}
.avatar--md {
  width: 43px;
  height: 43px;
}
.avatar--lg {
  width: 51px;
  height: 51px;
}
.avatar--xl {
  width: 61px;
  height: 61px;
}

/* Notifications */
.notification {
  background: #FFFFFF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.02), 0px 5px 40px rgba(0, 0, 0, 0.09);
  border-radius: 4px;
  padding: 17px 16px;
  width: clamp(280px, 25vw, 310px);
}
.notification__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  margin-bottom: 16px;
  border-bottom: var(--main-border);
}
.notification__user {
  display: flex;
  align-items: center;
  gap: 11px;
}
.notification__user-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #0F1435;
}
.notification__time {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 15px);
  color: #9498AB;
}
.notification__close {
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}
.notification__close:hover {
  color: var(--main-dark-blue-color);
}
.notification__message {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #9498AB;
}
.notification--bordered {
  border: var(--main-border);
}
.notification--small {
  padding: 19px 15px 18px;
}
.notification--small .notification__message {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notification--small.green-bg {
  background-color: var(--main-green-color);
}
.notification--small.green-bg .notification__message {
  color: #fff;
}
.notification__button {
  margin-top: 14px;
}

/* Alerts */
.alert {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 19px 17px;
}
.alert__icon {
  font-size: 18px;
}
.alert__message {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.alert__close {
  width: 20px;
  height: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s;
  margin-left: auto;
}
.alert__close:hover {
  color: var(--main-dark-blue-color);
}
.alert--success {
  background: #EAF7EE;
  border: 1px solid #C3E3CB;
  color: #53745A;
}
.alert--danger {
  background: #FCEDE9;
  border: 1px solid #EBCAC3;
  color: #9F3434;
}
.alert--warning {
  background: #FEF7EA;
  border: 1px solid #F5DEB7;
  color: #938956;
}
.alert--info {
  background: #E6EFFA;
  border: 1px solid #B3CCEB;
  color: #536698;
}
.alert--primary {
  background: #F0F3F9;
  border: 1px solid #D9DFEC;
  color: #585C73;
}

/* Modals */
.modal {
  width: clamp(280px, 90vw, 587px);
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  overflow-y: auto;
}
.modal__wrap {
  z-index: 1001;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  max-height: 90%;
  max-width: 95%;
  overflow-y: auto;
}
.modal__inner {
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  padding: 34px clamp(15px, 3vw, 30px) 39px;
}
.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  color: #9497AB;
  transition: color 0.2s;
  width: 20px;
  height: 20px;
  font-size: 15px;
}
.modal__close:hover {
  color: var(--main-dark-blue-color);
}
.modal__top {
  padding-bottom: 20px;
  border-bottom: var(--main-border);
  margin-bottom: 36px;
}
.modal__content {
  margin-bottom: 20px;
  overflow-y: auto;
  max-height: 380px;
  scrollbar-color: #0F1435 #fff;
}
.modal__content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.modal__content::-webkit-scrollbar-thumb {
  background: #0F1435;
}
.modal__content::-webkit-scrollbar-thumb:hover {
  background: #0F1435;
}
.modal__content-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__content-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #585C73;
}
.modal__buttons {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}
.modal__button {
  transition: color 0.2s, background-color 0.2s;
}
.modal__button-cancel {
  background-color: #EBF0F9;
  color: #0F1435;
}
.modal__button-cancel:hover {
  color: #fff;
  background-color: #0F1435;
}
.modal__button-save {
  background-color: var(--main-green-color);
  color: #fff;
}
.modal__button-save:hover {
  background-color: #15AA35;
}
.modal--large {
  width: clamp(280px, 90vw, 929px);
}
.modal--small {
  width: clamp(280px, 90vw, 500px);
}
.modal--full {
  width: clamp(280px, 90vw, 1640px);
}

/* Portlets */
.portlet {
  width: clamp(280px, 90vw, 363px);
}
.portlet__top {
  border: 1px solid #DBE2F0;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background-color: #F0F3F9;
  color: #0F1435;
}
.portlet__top h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: inherit;
}
.portlet__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.portlet__close {
  cursor: pointer;
}
.portlet__actions-min {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.portlet__actions-min::before, .portlet__actions-min::after {
  position: absolute;
  content: "";
  background-color: #000;
  border-radius: 2px;
}
.portlet__actions-min:before {
  width: 1.7px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s;
}
.portlet__actions-min::after {
  height: 1.7px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.portlet__actions-min.is-active:before {
  transform: translateX(-50%) scaleY(0);
}
.portlet__content {
  padding: 18px 10px 18px 18px;
  border: 1px solid #DBE2F0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  font-size: 15px;
  line-height: 23px;
  color: #585C73;
}
.portlet--blue .portlet__top {
  background-color: #0F1435;
  color: #fff;
  border-color: #0F1435;
}
.portlet--blue .portlet__actions-min::after, .portlet--blue .portlet__actions-min::before {
  background-color: #fff;
}
.portlet--green .portlet__top {
  background-color: var(--main-green-color);
  color: #fff;
  border-color: var(--main-green-color);
}
.portlet--green .portlet__actions-min::after, .portlet--green .portlet__actions-min::before {
  background-color: #fff;
}
.portlet--red .portlet__top {
  background-color: var(--main-red-color);
  color: #fff;
  border-color: var(--main-red-color);
}
.portlet--red .portlet__actions-min::after, .portlet--red .portlet__actions-min::before {
  background-color: #fff;
}

/* Ribbons */
.ribbon-card {
  width: clamp(280px, 90vw, 357px);
  background: #FFFFFF;
  border: 1px solid #DBE2F0;
  border-radius: 4px;
  padding: 66px 3px 20px 32px;
  position: relative;
}
.ribbon-card__content {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #585C73;
}
.ribbon-card__ribbon {
  position: absolute;
  top: 18px;
  left: -6px;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  padding: 6px 10px 6px 13px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.09);
  border-radius: 0px 4px 4px 0px;
}
.ribbon-card__ribbon::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-color: transparent;
  border-width: 0 5px 5px 0;
  left: 0px;
  bottom: -5px;
}
.ribbon-card__ribbon span {
  display: inline-block;
  position: relative;
  padding-left: 19px;
  background-image: url(../img/icons/ribbon-icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 13px;
}
.ribbon-card__ribbon--green {
  background-color: var(--main-green-color);
}
.ribbon-card__ribbon--green::after {
  border-right-color: var(--main-green-color);
}
.ribbon-card__ribbon--gray {
  background-color: #3B3F59;
}
.ribbon-card__ribbon--gray::after {
  border-right-color: #3B3F59;
}
.ribbon-card__ribbon--light-gray {
  background-color: #9498AB;
}
.ribbon-card__ribbon--red {
  background-color: var(--main-red-color);
}
.ribbon-card__ribbon.vertical {
  box-shadow: none;
  border-radius: 0;
  transform: rotate(-45deg);
  width: 110%;
  text-align: center;
  left: -47%;
  top: 7%;
  font-size: 14px;
  line-height: 24px;
}
.ribbon-card__ribbon.vertical span {
  background-image: none;
  padding-left: 0;
}
.ribbon-card--overflow {
  overflow: hidden;
  padding: 42px 8px 40px 40px;
}

/* Columns wrap */
.columns__wrap-container {
  max-width: 1670px;
  padding: 0 15px;
  margin: 0 auto;
  display: grid;
  grid-template: 1fr/clamp(300px, 25vw, 360px) minmax(450px, 820px) clamp(300px, 25vw, 420px);
  gap: 20px;
  width: 100%;
}
.columns__wrap-container.two-columns {
  grid-template: 1fr/1fr 1fr;
}
.columns__wrap-container.one-column {
  grid-template: 1fr/1fr;
}
.columns__left-inner, .columns__right-inner {
  position: fixed;
  top: 100px;
  height: 100%;
}
.columns__left-inner {
  width: clamp(300px, 25vw, 360px);
}
.columns__right-inner {
  width: clamp(300px, 25vw, 420px);
}
.columns__content {
  height: 85vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 4px;
  transition: scrollbar-color 0.3s ease-out;
  margin-right: -5px;
  /* For firefox */
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  /* For chrom and safari */
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.columns__content::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
  visibility: hidden;
}
.columns__content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
  visibility: hidden;
}
.columns__content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  visibility: hidden;
}
.columns__content::-webkit-scrollbar-thumb:hover {
  background: #555;
  border-radius: 10px;
}
.columns__content:hover {
  scrollbar-color: var(--content-color) var(--main-background-color);
}
.columns__content:hover::-webkit-scrollbar {
  visibility: visible;
}
.columns__content:hover::-webkit-scrollbar-track {
  visibility: visible;
}
.columns__content:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}
.columns__content:hover::-webkit-scrollbar-thumb:hover {
  visibility: visible;
}

.action-dots {
  display: inline-flex;
  gap: 4px;
  padding: 11px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
  margin-left: auto;
}
.action-dots span {
  display: block;
  border-radius: 50%;
  background-color: var(--light-gray-color);
  width: 4px;
  height: 4px;
  transition: background-color 0.2s;
}
.action-dots--bordered {
  border: var(--dots-border);
}
.action-dots:hover {
  border-color: var(--main-green-color);
}
.action-dots:hover span {
  background-color: var(--main-green-color);
}
.action-dots__wrap {
  position: relative;
  margin-left: auto;
}
.action-dots__popup {
  display: none;
  position: absolute;
  right: -10px;
  top: 145%;
  background: #FFFFFF;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: clamp(220px, 80vw, 240px);
  padding: 28px 23px 23px 23px;
  font-size: 16px;
  line-height: 24px;
  color: var(--content-color);
  z-index: 20;
}
.action-dots__popup-buttons {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #585C73;
  font-weight: 400;
}
.action-dots__popup-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.action-dots__popup-buttons a:hover {
  color: var(--main-green-color);
}
.action-dots__popup--block, .action-dots__popup--post, .action-dots__popup--comment {
  padding: 19px 22px 15px;
}
.action-dots.is-active {
  opacity: 1 !important;
}

/* User box */
.user__box {
  display: flex;
  align-items: center;
  gap: 13px;
}
.user__box.online-status.is-online .user__avatar::before {
  content: "";
  background-color: var(--main-green-color);
}
.user__box.online-status.is-offline .user__avatar::before {
  content: "";
  background-color: var(--light-gray-color);
}
.user__box.online-status .user__avatar-img::after {
  position: absolute;
  content: "";
}
.user__box.online-status .user__avatar-img img {
  vertical-align: bottom;
}
.user__avatar {
  max-width: 90px;
  max-height: 90px;
  position: relative;
}
.user__avatar::before {
  position: absolute;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  right: 0;
  top: 0;
  z-index: 2;
}
.user__avatar-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.user__avatar-img::after {
  border-radius: 50%;
  top: -4px;
  right: -4px;
  width: 15px;
  height: 15px;
}
.user__avatar-img.white-bg::after {
  background-color: #fff;
}
.user__avatar-img.blue-bg::after {
  background-color: var(--header-background-color);
}
.user__name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user__nickname {
  font-weight: 400;
  font-size: 14px;
  color: var(--content-color);
}

/* Cards */
.card__img {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
  min-height: clamp(150px, 15vw, 262px);
  display: flex;
}
.card__img img {
  border-radius: 6px;
  width: 100%;
}
.card__text {
  font-size: 16px;
  line-height: 24px;
  color: #585C73;
}
.card__button {
  margin-top: 20px;
}
.card__slider {
  margin-bottom: 25px;
}
.card__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #0F1435;
  margin-top: 15px;
}
.card__link a {
  display: inline-flex;
  padding-left: 23px;
  position: relative;
}
.card__link a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/icons/link-icon.svg);
}
.card__slide {
  width: 100%;
  padding: 0 10px;
  overflow: hidden;
}
.card__slide img {
  border-radius: 6px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card--horizontal {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px;
}
.card--horizontal .card__img {
  margin-bottom: 0;
  height: 100%;
  min-width: 171px;
  min-height: auto;
}
.card--horizontal .card__img img {
  -o-object-fit: cover;
  object-fit: cover;
}
.card--title-top .card__title {
  margin-bottom: 20px;
}
.card--gallery {
  padding: 30px clamp(5px, 1vw, 15px) 35px;
}
.card--gallery .card__content {
  padding: 0 10px;
}
.card--gallery .carousel__button {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.card--gallery .carousel__button svg {
  display: none;
}
.card--gallery .carousel__button.is-next {
  right: 20px;
  background-image: url(../img/icons/arrow-right.svg);
}
.card--gallery .carousel__button.is-prev {
  left: 20px;
  background-image: url(../img/icons/arrow-left.svg);
}

/* File upload and emoji */
.file-and-emoji {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--light-text-color);
}
.file-and-emoji .file-upload {
  font-size: 22px;
  position: relative;
  z-index: 5;
  transition: color 0.2s;
  cursor: pointer;
  width: 25px;
  height: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-and-emoji .file-upload:hover {
  color: var(--main-dark-blue-color);
}
.file-and-emoji .file-upload input {
  opacity: 0;
  cursor: pointer;
  width: 25px;
  height: 100%;
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.file-and-emoji .add-emoji {
  cursor: pointer;
  font-size: 22px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-and-emoji .add-emoji:hover {
  color: var(--main-dark-blue-color);
}

/* May know */
.may-know .user__avatar-img {
  max-width: 51px;
  max-height: 51px;
}
.may-know .user__name {
  font-weight: 500;
}

/* Liked pages */
.liked-pages {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.liked-pages__page-image {
  max-width: 34px;
  max-height: 34px;
  border-radius: 4px;
  overflow: hidden;
}
.liked-pages a {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Add friend */
.add-friend {
  border: var(--main-border);
  border-radius: 4px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: background-color 0.2s, border-color 0.2s;
  background-color: transparent;
}
.add-friend i {
  font-size: 10px;
  color: var(--icon-color);
  transition: color 0.2s;
}
.add-friend:hover {
  background-color: var(--main-green-color);
  border-color: transparent;
}
.add-friend:hover i {
  color: #fff;
}

/* Events */
.events {
  display: flex;
  flex-direction: column;
}
.events__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.events__actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 14px;
  color: var(--light-text-color);
}
.events__content.is-empty {
  display: flex;
  justify-content: center;
}
.events__content-plug {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 25px;
}
.events__content-plug img {
  max-width: 55px;
  max-height: 55px;
  margin-bottom: 18px;
}

/* Featured Video */
.featured-video__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
.featured-video__content-plug, .featured-video__content-video {
  display: flex;
  min-height: 187px;
  position: relative;
  margin-bottom: 17px;
}
.featured-video__content-plug {
  background-image: url(../img/video/1.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
.featured-video__content-plug::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/icons/play-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20%;
}
.featured-video__content-text {
  line-height: 23px;
}
.featured-video__content-text p {
  font-weight: 700;
  font-size: 18px;
}
.featured-video__content-text span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: var(--light-text-color);
}

/* Trending news */
.trending-news__link {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trending-news__img {
  max-width: 65px;
  max-height: 65px;
  width: 100%;
  height: 100%;
}
.trending-news__text p {
  font-weight: 500;
  font-size: 17px;
  line-height: 23px;
  margin-bottom: 3px;
}
.trending-news__text span {
  display: block;
  font-size: 14px;
  color: var(--light-text-color);
  font-weight: 400;
}
.trending-news--two .trending-news__link {
  padding-left: 30px;
  position: relative;
}
.trending-news--two .trending-news__link::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 19px;
  background-image: url(../img/icons/flash-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 0;
}

/* Request */
.request__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.request__list ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.request__list ul li {
  background: rgba(233, 234, 241, 0.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 5px;
}
.request__user {
  display: flex;
  align-items: center;
  gap: 13px;
}
.request__user-photo {
  border-radius: 6px;
  overflow: hidden;
  max-width: 51px;
  max-height: 51px;
  width: 100%;
  height: 100%;
}
.request__user-name p {
  font-size: 17px;
  line-height: 23px;
  font-weight: 500;
}
.request__user-name span {
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  color: var(--content-color);
}
.request__actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 4px;
}
.request__actions button {
  border: 0;
  background-color: #fff;
  border-radius: 6px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
}
.request__actions-accept {
  background-image: url(../img/icons/accept-icon.svg);
}
.request__actions-reject {
  background-image: url(../img/icons/reject-icon.svg);
}

/* Your groups */
.your-groups__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.your-groups__top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: var(--light-text-color);
  transition: color 0.2s;
}
.your-groups__top-actions a:hover {
  color: var(--main-green-color);
}
.your-groups__view-all {
  margin-top: 0;
}
.your-groups__link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.your-groups__image {
  max-width: 55px;
  max-height: 55px;
  width: 100%;
  height: 100%;
}
.your-groups__name p {
  font-weight: 500;
  font-size: 17px;
  line-height: 23px;
}
.your-groups__name span {
  font-size: 14px;
  line-height: 23px;
  color: var(--content-color);
  font-weight: 400;
}

/* Contacts */
.contacts__top {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.contacts__notification-count {
  color: #fff;
  background-color: var(--icon-color);
  margin-left: 20px;
}
.contacts__search {
  margin-left: auto;
  display: flex;
  font-size: 18px;
}
.contacts__list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contacts__person {
  display: flex;
  align-items: center;
}
.contacts__person .user__avatar-img {
  max-width: 51px;
  max-height: 51px;
}
.contacts__person .user__name {
  font-size: 17px;
  font-weight: 500;
}

/* Commercial */
.commercial__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.commercial__link {
  display: flex;
  align-items: center;
  gap: 18px;
}
.commercial__img {
  max-width: 100px;
  max-height: 100px;
  width: 100%;
  height: 100%;
}
.commercial__text p {
  font-weight: 500;
  font-size: 17px;
  line-height: 23px;
}
.commercial__text span {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: var(--light-text-color);
}

/* Stories */
.stories {
  min-width: 0;
}
.stories__slide {
  width: 152px;
  height: 235px;
  border-radius: 6px;
  overflow: hidden;
}
.stories__item {
  position: relative;
  width: auto;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stories__item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 110%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 54.69%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
  transition: all 0.3s;
}
.stories__item:hover::after {
  transition: all 0.3s;
  height: 100%;
}
.stories__item--add::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%);
}
.stories__item--add:hover .stories__item-new::before {
  background-color: var(--main-green-hover-color);
}
.stories__item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.stories__item-avatar {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  overflow: hidden;
  z-index: 10;
  margin: 20px;
}
.stories__item-name {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.stories__item-new {
  position: relative;
  z-index: 3;
  background-color: #fff;
  border-radius: 6px 6px 0 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin: auto -1px -1px -1px;
}
.stories__item-new::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background-color: var(--main-green-color);
  border-radius: 6px;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  background-image: url(../img/icons/add-story-plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  transition: background-color 0.2s;
}

/* Hot news */
.hot-news__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.hot-news__list {
  gap: 24px;
}
.hot-news__list-link {
  display: flex;
  align-items: center;
  gap: 25px;
}
.hot-news__image {
  max-width: 250px;
  width: 100%;
  min-height: 187px;
  border-radius: 6px;
  overflow: hidden;
}
.hot-news__content-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 10px;
}
.hot-news__content-author {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.hot-news__content-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--content-color);
  margin-bottom: 12px;
  font-weight: 400;
}
.hot-news__author-photo {
  max-width: 23px;
  max-height: 23px;
  border-radius: 6px;
  overflow: hidden;
}
.hot-news__post-info {
  padding: 0;
  border: none;
}

/* Post */
.post__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
}
.post__header-user .user__avatar-img {
  width: 43px;
  height: 43px;
}
.post__header-time {
  color: var(--light-text-color);
  font-weight: 400;
  padding-left: 14px;
  position: relative;
}
.post__header-time::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #C4C4C4;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.post__header--vertical {
  padding-bottom: 24px;
  border-bottom: var(--main-border);
  margin-bottom: 24px;
}
.post__header .user__name {
  display: flex;
  align-items: center;
  gap: 11px;
}
.post__title {
  font-weight: 700;
  font-size: 23px;
  line-height: clamp(24px, 2vw, 26px);
  margin-bottom: 23px;
}
.post__title a:hover {
  color:#008ae0
} 
.post__image {
  margin-bottom: 20px;
}
.post__text {
  font-weight: 400;
  line-height: 24px;
  color: var(--content-color);
  margin-bottom: 15px;
}
.post__actions {
  color: var(--content-color);
}
.post__actions-top {
  margin-bottom: 15px;
}
.post__actions-bottom {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: var(--main-border);
  font-weight: 500;
  gap: 20px;
}
.post__actions-buttons {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 35px);
}
.post__actions-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.post__actions-button i {
  font-size: 19px;
}
.post__actions-button:hover {
  color: var(--main-dark-blue-color);
}
.post__actions-right {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 44px);
}
.post__actions-dislike {
  margin-right: auto;
}
.post__ratings, .post__reactions {
  display: flex;
  align-items: center;
}
.post__ratings {
  gap: clamp(10px, 1vw, 17px);
}
.post__ratings-likes, .post__ratings-dislikes {
  padding-left: 23px;
  position: relative;
}
.post__ratings-likes:before, .post__ratings-dislikes:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
}
.post__ratings-likes::before {
  background-image: url(../img/icons/likes-icon.svg);
}
.post__ratings-dislikes::before {
  background-image: url(../img/icons/dislikes-icon.svg);
}
.post__reactions {
  gap: 11px;
}
.post__reactions-comments {
  cursor: pointer;
}
.post__reactions-shares {
  padding-left: 14px;
  position: relative;
}
.post__reactions-shares::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  left: 0;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--content-color);
}
.post--grid-view .post__image {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.post--grid-view .post__image-md, .post--grid-view .post__image-sm div {
  border-radius: 6px;
  overflow: hidden;
}
.post--grid-view .post__image-sm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post--grid-view .post__image img {
  height: 100%;
  width: 100%;
}
.post__vertical-content {
  margin-bottom: 22px;
}
.post__vertical-item {
  display: flex;
  gap: 23px;
  align-items: center;
}
.post__vertical-file {
  width: clamp(150px, 15vw, 205px);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.post__vertical-text p {
  font-weight: 400;
  color: var(--content-color);
  line-height: 24px;
}
.post__audio-content {
  margin-bottom: 12px;
}
.post__vote-content {
  margin-bottom: 22px;
}
.post__vote-content form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 22px;
  background-color: #F6F7F9;
  border-radius: 6px;
  padding: 0 20px;
}
.post__vote-label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  padding: 13px 0;
}
.post__vote-label + .post__vote-label {
  border-top: var(--main-border);
}
.post__vote-radio {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  opacity: 0;
}
.post__vote-style {
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
  border: var(--main-border);
  border-radius: 50%;
  background-color: #fff;
  margin-right: 12px;
}
.post__vote-style::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  background-color: transparent;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.post__vote-radio:checked + .post__vote-style::before {
  background-color: var(--main-green-color);
  width: 11px;
  height: 11px;
}
.post__vote-radio:disabled + .post__vote-style {
  border-color: #ccc;
}
.post__video-link {
  display: flex;
  margin-bottom: 22px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.post__video-link::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/icons/play-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 11px;
}

/* Comments */
.comments {
  margin-top: 25px;
}
.comments__name {
  font-weight: 500;
}
.comments__comment-wrap {
  display: flex;
  gap: 15px;
  padding-right: clamp(20px, 4vw, 60px);
  position: relative;
}
.comments__comment-wrap.is-commented {
  position: relative;
  overflow: hidden;
  padding-bottom: 15px;
}
.comments__comment-wrap.is-commented::before {
  position: absolute;
  content: "";
  background-color: var(--main-background-color);
}
.comments__comment-wrap.is-commented::before {
  width: 1px;
  height: 500%;
  left: 21px;
  top: 50px;
}
.comments__comment-wrap .action-dots {
  opacity: 0;
  transition: opacity 0.3s;
}
.comments__comment-wrap .action-dots span {
  background-color: var(--content-color);
}
.comments__comment-wrap:hover .action-dots {
  opacity: 1;
}
.comments__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.comments__item {
  display: flex;
  flex-direction: column;
}
.comments__item-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.comments__content-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.comments__time {
  font-weight: 400;
  font-size: 15px;
  color: var(--light-text-color);
}
.comments__text {
  color: var(--content-color);
  font-weight: 400;
  line-height: clamp(17px, 2vw, 23px);
  margin-bottom: 8px;
  font-size: clamp(14px, 1vw, 16px);
}
.comments__avatar {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
}
.comments__avatar--reply {
  width: 37px;
  height: 37px;
}
.comments__reactions {
  display: flex;
  align-items: center;
  color: var(--light-text-color);
  font-size: 15px;
  gap: 7px;
  min-height: 22px;
}
.comments__reactions span {
  display: flex;
  cursor: pointer;
  transition: color 0.2s;
}
.comments__reactions span:hover {
  color: var(--main-dark-blue-color);
}
.comments__reactions-like.is-liked {
  color: var(--main-green-color);
}
.comments__reactions-reply {
  padding-left: 11px;
  position: relative;
}
.comments__reactions-reply::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background-color: #84879C;
  left: 0;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
}
.comments__reactions-likes {
  padding-left: 28px;
  position: relative;
}
.comments__reactions-likes::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icons/comments-likes-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.comments__show-replies {
  font-size: 15px;
  color: var(--content-color);
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: color 0.2s;
  font-weight: 500;
}
.comments__show-replies i {
  font-size: 15px;
}
.comments__show-replies span {
  padding-top: 2px;
}
.comments__show-replies:hover {
  color: var(--main-dark-blue-color);
}
.comments__replies {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.comments__replies-item {
  position: relative;
  padding-left: 58px;
}
.comments__replies-item::before, .comments__replies-item::after {
  position: absolute;
  content: "";
  background-color: var(--main-background-color);
}
.comments__replies-item::before {
  width: 1px;
  height: 50000px;
  left: 21px;
  top: -49978px;
}
.comments__replies-item::after {
  height: 1px;
  width: 29px;
  left: 21px;
  top: 21px;
}
.comments__replies .comments__text {
  font-size: clamp(14px, 1vw, 15px);
}

/* Profile card */
.profile-card__photo {
  margin-bottom: clamp(15px, 2vw, 28px);
  display: flex;
  justify-content: center;
}
.profile-card__photo img {
  max-width: 90px;
  max-height: 90px;
  width: 100%;
  height: 100%;
}
.profile-card__name {
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 5px;
  text-align: center;
}
.profile-card__username {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: var(--content-color);
  margin-bottom: 22px;
  text-align: center;
}
.profile-card__buttons {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 40px;
}
.profile-card__buttons a {
  border-radius: 7px;
  height: 44px;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 25px 5px 22px;
}
.profile-card__buttons a i {
  font-size: 15px;
}
.profile-card__buttons-add-friends {
  background-color: var(--main-green-color);
  color: #fff;
}
.profile-card__buttons-add-friends:hover {
  background-color: var(--main-green-hover-color);
}
.profile-card__buttons-message-to {
  background-color: #E8ECF4;
}
.profile-card__buttons-message-to:hover {
  background-color: #d4d9e6;
}
.profile-card__about {
  padding-bottom: 17px;
  border-bottom: var(--main-border);
  margin-bottom: 19px;
}
.profile-card__about h5 {
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 9px;
}
.profile-card__about p {
  color: var(--content-color);
  font-size: 15px;
  line-height: 24px;
}
.profile-card__contacts {
  margin-bottom: 30px;
}
.profile-card__contacts ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.profile-card__contacts li {
  display: grid;
  grid-template: 1fr/90px 1fr;
  gap: 15px;
  font-size: 15px;
  color: var(--content-color);
}
.profile-card__contacts li span:nth-child(1) {
  font-weight: 500;
}
.profile-card__contacts a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-card__socials ul {
  display: grid;
  grid-template: 1fr/repeat(3, 1fr);
  gap: 7px;
}
.profile-card__socials ul a {
  background: #F8F9FC;
  border-radius: 6px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s;
}
.profile-card__socials ul a:hover {
  background-color: #d4d9e6;
}
.profile-card__socials ul a img {
  max-width: 21px;
  max-height: 21px;
}

/* Messages */
.messages__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.messages__top i {
  font-size: 21px;
}
.messages__filter {
  background: #F6F7F9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 24px;
}
.messages__filter i {
  color: var(--icon-color);
  font-size: 15px;
}
.messages__filter input {
  padding: 12px;
  background-color: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-text-color);
}
.messages__list .user__avatar {
  max-width: 51px;
  max-height: 51px;
}
.messages__content-name {
  font-size: 17px;
  font-weight: 500;
}
.messages__content-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 165px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-text-color);
}
.messages__media {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-text-color);
}
.messages__info {
  margin-left: auto;
}
.messages__info .notification-count {
  background-color: var(--main-red-color);
  color: #fff;
}
.messages__info-date {
  font-size: 13px;
  line-height: 20px;
  color: var(--light-text-color);
}

/* Friends */
.friends-box__top {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 25px);
  margin-bottom: 25px;
}
.friends-box__title-wrap {
  display: flex;
  align-content: inherit;
  gap: 5px;
}
.friends-box__count {
  display: flex;
  font-weight: 700;
  font-size: 21px !important;
  line-height: 24px;
}
.friends-box__filter {
  background: #F6F7F9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  margin-left: auto;
  width: clamp(200px, 17vw, 310px);
}
.friends-box__filter i {
  color: var(--icon-color);
  font-size: 15px;
}
.friends-box__filter input {
  padding: 12px;
  background-color: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-text-color);
}
.friends-box__requests {
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.friends-box__action-dots {
  margin-left: 0;
}
.friends-box__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 11px;
}
.friends-box__list li {
  border: var(--main-border);
  box-sizing: border-box;
  border-radius: 6px;
  padding: clamp(10px, 2vw, 20px);
}
.friends-box__avatar {
  max-width: clamp(50px, 6vw, 75px);
  max-height: clamp(50px, 6vw, 75px);
  flex-shrink: 0;
}
.friends-box__user {
  display: flex;
  flex-direction: column;
}
.friends-box__user-info {
  font-size: 15px;
  font-weight: 400;
  color: var(--content-color);
}
.friends-box__remove-popup {
  position: absolute;
  right: -11px;
  top: 35px;
  z-index: 55;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03), 0px 2px 40px rgba(0, 0, 0, 0.09);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.friends-box__remove-popup div {
  display: flex;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 16px;
  background-color: transparent;
  gap: 10px;
  color: var(--icon-color);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.friends-box__remove-popup div:hover {
  color: var(--main-dark-blue-color);
}
.friends-box__remove-friend {
  position: relative;
}
.friends-box__remove-friend:hover .friends-box__remove-popup {
  opacity: 1;
  pointer-events: all;
}

/* Photos */
.photos-box__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--icon-color);
  gap: 15px;
  margin-bottom: 30px;
}
.photos-box__top i {
  font-size: 20px;
}
.photos-box__add-new {
  display: flex;
  align-items: center;
  gap: 10px;
}
.photos-box__list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 10px;
}
.photos-box__list ul li {
  display: flex;
  cursor: pointer;
  transition: transform 0.3s;
}
.photos-box__list ul li:hover {
  transform: scale(0.95);
}
.photos-box__list ul a {
  width: 100%;
}
.photos-box__list ul a img {
  width: 100%;
}

/* Settings */
.settings-box__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--main-border);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.settings-box__item {
  padding-bottom: 35px;
  border-bottom: var(--main-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.settings-box__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.settings-box__item h5 {
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.settings-box__item label {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
}
.settings-box__item label span {
  color: var(--light-text-color);
  font-weight: 400;
}
.settings-box__item label a {
  color: var(--main-green-color);
}
.settings-box__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.settings-box__form input,
.settings-box__form textarea {
  padding: 11px 17px;
  border: var(--main-border);
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--light-text-color);
}
.settings-box__form textarea {
  min-height: 80px;
  resize: none;
}
.settings-box__form-inner {
  display: grid;
  grid-template: 1fr/1fr 1fr;
  gap: clamp(10px, 2vw, 20px);
}
.settings-box__form-social-inner {
  display: grid;
  grid-template: 1fr/47px 1fr;
  align-items: center;
  border: var(--main-border);
  border-radius: 6px;
  overflow: hidden;
}
.settings-box__form-social-inner i {
  font-size: 15px;
}
.settings-box__form-social-inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F9FC;
  height: 100%;
}
.settings-box__form-social-inner input {
  border: none;
  padding-left: 14px;
}

/* Radio */
.radio {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  color: #fff;
  z-index: 99;
}
.radio__inner {
  margin: 0 auto;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
}
.radio__btn {
  cursor: pointer;
  display: flex;
  width: clamp(50px, 6vw, 75px);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: #0F1435;
  background-image: url(../img/icons/radio-btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px;
  z-index: 99;
}
.radio__btn.is-active {
  background-image: url(../img/icons/search-close-icon.svg);
}
.radio__show-list {
  width: 30px;
  height: 30px;
  background-image: url(../img/icons/angle-top.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px;
  cursor: pointer;
  margin-left: auto;
  transition: transform 0.2s;
  margin-left: clamp(30px, 4vw, 44px);
}
.radio__show-list.is-active {
  transform: rotate(180deg);
}
.radio__box {
  padding: 0 15px;
  width: 0px;
  background-color: #0F1435;
  transition: width 1s;
  width: 100%;
  transform: translateX(200%);
  transition: transform 0.6s ease-in-out;
  z-index: 98;
}
.radio__box.is-active {
  transform: translateX(0%);
}
.radio__info {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
  padding-left: clamp(0px, 9vw, 100px);
}
.radio__title {
  font-size: clamp(12px, 1vw, 16px);
  line-height: clamp(14px, 1.5vw, 20px);
}
.radio__title-name {
  font-weight: 500;
}
.radio__title-wave {
  font-weight: 700;
}
.radio__cover {
  border-radius: 6px;
  width: clamp(30px, 4vw, 49px);
  height: clamp(30px, 4vw, 49px);
  flex-shrink: 0;
}
.radio__cover img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  border-radius: 6px;
}
.radio__player {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.radio__pause {
  background-color: #242846;
  border-radius: 6px;
  width: clamp(30px, 4vw, 49px);
  height: clamp(30px, 4vw, 49px);
  margin-left: clamp(10px, 10vw, 85px);
  margin-right: clamp(10px, 12vw, 185px);
  position: relative;
}
.radio__pause::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: clamp(9px, 1vw, 12px);
  background-image: url(../img/icons/radio-play.svg);
}
.radio__pause.is-pause::before {
  background-image: url(../img/icons/radio-pause.svg);
}
.radio__slider {
  width: 80px;
  height: 6px;
  position: relative;
  background-color: #fff;
  cursor: pointer;
}
.radio__slider .ui-widget-header {
  background-color: #FFDB2A;
  border-radius: 10px;
  height: 6px;
  top: -1px;
}
.radio__slider .ui-widget-content {
  border: none;
  background-color: #FFFFFF;
  border-radius: 10px;
}
.radio__volume-slider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.radio__volume-button {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url(../img/icons/volume-icon.svg);
}
.radio__volume-button.is-active {
  background-image: url(../img/icons/volume-mute-icon.svg);
}
.radio__share {
  cursor: pointer;
  font-size: 21px;
}
.radio__share-box {
  position: relative;
  margin-left: clamp(30px, 4vw, 44px);
  margin-right: auto;
}
.radio__share-popup {
  position: absolute;
  background-color: #fff;
  padding: 24px 17px;
  bottom: 175%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  display: none;
}
.radio__share-popup::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 9px;
  right: 50%;
  top: auto;
  bottom: -16px;
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  transform: rotate(180deg) translateX(-50%);
}
.radio__share-popup ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.radio__share-link {
  display: inline-flex;
  width: 15px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.radio__share-item:nth-child(1) a {
  background-image: url(../img/icons/telegram-icon.svg);
}
.radio__share-item:nth-child(2) a {
  background-image: url(../img/icons/whatsapp-icon.svg);
}
.radio__share-item:nth-child(3) a {
  background-image: url(../img/icons/twitter-icon.svg);
}
.radio__share-item:nth-child(4) a {
  background-image: url(../img/icons/facebook-icon.svg);
}
.radio__playlist {
  position: absolute;
  bottom: -200%;
  left: -10px;
  width: calc(100% + 95px);
  background-color: #242949;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 27px 90px 27px 25px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 10px;
  transition: bottom 0.5s;
}
.radio__playlist.is-active {
  bottom: 100%;
}
.radio__playlist-link {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 15px);
}
.radio__playlist-cover {
  border-radius: 6px;
  width: clamp(30px, 4vw, 49px);
  height: clamp(30px, 4vw, 49px);
}
.radio__playlist-cover img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  border-radius: 6px;
}
.radio__playlist-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: clamp(12px, 1vw, 16px);
  line-height: clamp(14px, 1.5vw, 20px);
}
.radio__playlist-name {
  font-weight: 500;
}
.radio__playlist-wave {
  font-weight: 700;
  color: #9BA0AC;
}