* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper{
  max-width: 1141px;
  margin: 75px auto 150px;
}

.start {
  position: fixed;
  text-align: right;
  right: 37px;
  bottom: 400px;
  z-index: 10;
}

.rules-h1{
  color: #191919;
  font-size: 20px;
  margin-bottom: 36px;
  font-weight: 700;
}

.rules-wrapper{
  margin: 0 auto 150px;
}

body{
  background-color: #FDFCF9;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

.div-burger-a{
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display:  none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: transparent;
}

header {
  background-color: #FDFCF9;
  position: fixed; 
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.3);
}

.header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px auto;
}

.header-ul{
  display:flex;
  flex-direction:row;
  gap:36px;
  text-decoration: none;
}

.header-right{
  display:flex;
  flex-direction:row;
  gap:24px;
}

.search-toggle{
  background: transparent;
  border: transparent;
  cursor: pointer;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 98;
}
.overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.search-dropdown {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1140px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: top 0.35s ease, opacity 0.3s ease;
  z-index: 99;
}
.search-dropdown.open {
  top: 100px;
  opacity: 1;
}

.search-pill {
  flex: 1;
  background: #FDFCF9;
  border: 1px solid #ACACAC;
  border-radius: 28px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
}

.icon-gr {
  margin-right: 11px;
}

.search-pill input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}

.search-pill input::placeholder {
  color: #ACACAC;
}

.right-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.chip {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #FDFCF9;
  background: #FDFCF9;
  color: #C8C8C8;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.chip.active {
  color: #191919;
  border-color: #E3E3E3;
}

.search-submit {
  background: #191919;
  color: #FFFFFF;
  border: none;
  border-radius: 300px;
  padding: 17px 28px;
  font-size: 16px;
  cursor: pointer;
}

/* უზერ მოდალი */

.icon-btn{
  background-color: transparent;
  border: transparent;
  cursor: pointer;
}

.user-modal {
  position: absolute;
  top: 84px; 
  right: 40px;
  background-color: #FDFCF9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  z-index: 100;
  border: 1px solid #D7D7D7;
  max-width: 281px;
  width: 100%;
}

.user-modal.hidden {
  display: none;
}

.div-user-img-info{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px;
}

.user-name-mail{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-img{
  width: 50px;
  height: 50px;
  border-radius: 300px;
  object-fit: cover;
}

.user-name{
  font-size: 14px;
  color: #191919;
  font-weight: 500;
}

.user-mail{
  font-size: 12px;
  color: #ACACAC; 
}

.line-user{
  height: 0.5px;
  width: 100%;
  background-color: #D7D7D7;
}

.div-header-modal-nav{
  padding: 3px 20px;
}

.li-user{
  padding: 20px 0;
}

.user-a{
  font-size: 14px;
  color: #191919;
}

.button-log-out{
  background-color: transparent;
  border-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  color: #191919;
  font-size: 14px;
}

/* შეტყობინების მოდალი */

.notification{
  background: transparent;
  border: transparent;
  cursor: pointer;
}

.notification-modal {
  position: absolute;
  top: 84px;
  right: 90px;
  background-color: #FDFCF9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  z-index: 100;
  border: 1px solid #D7D7D7;
  max-width: 281px;
  width: 100%;
  max-height: 368px;
  display: flex;
  flex-direction: column;
}

.notification-modal.hidden {
  display: none;
}

.notif-title {
  font-size: 16px;
  font-weight: 700;
  color: #191919;
  padding: 20px 0 16px 20px;
  border-bottom: 0.5px solid #D7D7D7;
}

.notif-list {
  list-style: none;
  overflow-y: auto;
}

.not-p{
  font-size: 13px;
  color: #191919;
  font-weight: 700;
}

.not-what{
  font-size: 12px;
  color: #191919;
  font-weight: 500;
}
.not-time {
  font-size: 10px;
  color: #ACACAC;
}

.notif-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8.5px 15px;
  transition: all 0.3s ease;
  background-color: #FDFCF9;
}

.notif-item:hover{
  background-color: pink;
}

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

.notif-avatar-wrapper {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.notif-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.notif-heart {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.notif-list::-webkit-scrollbar {
  width: 6px;
}
.notif-list::-webkit-scrollbar-thumb {
  background: #ACACAC;
  border-radius: 3px;
}

/* საიდბარი */

.sidebar {
  position: fixed;
  top: 0px;
  left: -340px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: #FDFCF9;
  overflow: hidden;
  transition: left 0.3s ease;
  z-index: 999;
}

.div-burger-header{
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 20px 45px 20px 16px;
  border-bottom: 0.5px solid #D7D7D7;
}

.li-burger{
  padding: 20px 16px;
  border-bottom: 0.5px solid #D7D7D7;
}

.div-icons-burger{
  display: flex;
  gap: 12px;
  padding: 20px;
}

.burger-toggle{
  cursor: pointer;
}

/* ფუტერი */

.footer{
  background-color: #282624;
}

.div-footer {
  padding: 70px 0 30px;
  margin: 0px auto;
}

.footer-nav-logo{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo-p{
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.footer-div-p{
  width: 441px;
  line-height: 28px;
  font-size: 16px;
  color: #FFFFFF;
}

.footer-nav{
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.h4-nav-footer{
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 50px;
}

.footer-ul li{
  color: #F8F8F8;
  font-size: 14px;
}

.footer-ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.div-under{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.p-footer-down{
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.div-social{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

/* რეგისტრაცი/შესვლა */

.enter-header{
  position: absolute;
  padding-left: 72px;
  padding-top: 24px;
  border-bottom: none;
}

.enter-footer{
  position: absolute;
  padding-left: 74px;
  font-size: 14px;
  bottom: 24px;
}

.enter-section{
  display: flex;
  justify-content: center;
  margin: 100px 0 124px;
}

.container {
  max-width: 370px;
  width: 100%;
}

.enter-reg {
  margin-bottom: 36px;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}

.tabs {
  display: flex;
  margin-bottom: 18px;
}

.tab {
  flex: 1;
  padding-bottom: 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #6b7280;
  border-bottom: 2px solid #e5e7eb; 
}

.tab.active {
  color: #000000;
  border-color: #000000;
}

.form { 
  display: none; 
  flex-direction: column; 
}

.form.active { 
  display: flex; 
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.field input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ACACAC;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}

.field h3{
  font-size: 14px;
  font-weight: 400;
}

.field input:focus { 
  border-color: #c7cad1; 
}

.div-enter-flex{
  display: flex;  
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

label.inline {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 400;
}

label.aprove{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  cursor: pointer;
  margin: 10px 0;
  font-weight: 400;
}

.span-aprove{
  color: #1B7CDE;
}

input[type="checkbox"] {
  accent-color: black;
  cursor: pointer;
}

.primary{
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
  background: #282624;
  color: #FFFFFF;
  font-weight: 700;
}


.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ACACAC;
  font-weight: 700;
}

.divider {
  position: relative;
  text-align: center;
  margin: 16px 0;
  color: rgba(40, 38, 36, 0.3);
  font-size: 12px;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: rgba(40, 38, 36, 0.3);
}

.divider::before { 
  left: 0; 
}

.divider::after { 
  right: 0; 
}

.helper {
  font-size: 13px;
  color: #374151;
  text-align: center;
}

.helper a { 
  color: #1B7CDE; 
  text-decoration: none; 
  font-size: 14px;
  font-weight: 400;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px;
}

.password-wrapper img {
  position: absolute;
  right: 12px;
  cursor: pointer;
}

.error-message {
  display: none;
  align-items: center;
  font-size: 12px;
  color: #FF4343;
  margin-top: 4px;
}
input.error {
  border: 1px solid #FF4343 !important;
}

.error-icon{
  margin-right: 5px;
}

/* პაროლის შეცვლა */

.section-password {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.password-container {
  max-width: 360px;
  width: 100%;
}

.div-password{
 text-align: center;
}

.h2-steps {
  font-size: 20px;
  margin: 24px 0;
}

.p-steps {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  margin-bottom: 36px;
}

.field-password{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 36px 0 20px;
}

.field-password h3{
  font-size: 14px;
  font-weight: 400;
}

.password-field h3{
  font-size: 14px;
  font-weight: 400;
}

.email-input {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  font-size: 14px;
}

.email-input:focus { 
  border-color: #c7cad1; 
}

.return-btn {
  width: 100%;
  padding: 15px;
  background: #282624;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
}

.showemail{
  color: #282624;
}

.back-link {
  display: block;
  margin-top: 36px;
  font-size: 14px;
  color: #565656;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
}

.code-inputs {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.code {
  width: 78px;
  height: 80px;
  text-align: center;
  font-size: 40px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  background-color: #FDFCF9;
}

.password-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  text-align: left;
}

.password-field input {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}

.password-field input:focus { 
  border-color: #c7cad1; 
}

.small-text {
  margin-top: 36px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.a-small-text{
  font-size: 16px;
  color: #000000;
}

.hidden {
  display: none;
}

/* მთავარი გვერდი */

.hero {
  background: #E3E3E3;
  padding: 195px 0 185px;
}

.hero-content {
  max-width: 1140px;
  margin: 0 auto;
}

.hero-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.hero-text {
  width: 500px;
  font-size: 20px;
  margin-bottom: 24px;
}

.hero-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 16px 0;
  gap: 5px;
  font-size: 16px;
  background: #282624;
  color: #FFFFFF;
  border-radius: 8px;
  border: none;
}

/* Slider Section */

.main-wrapper{
  margin: 75px auto 150px;
}

.slider-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.slider-section-title {
  font-size: 24px;
}

.a-slider{
  font-size: 14px;
  font-weight: bold;
}

.slider-container {
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
}

.slider-card {
  max-width: 367px;
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.slider-card.active {
  display: block;
  opacity: 1;
}

.slider-card-cover {
  max-width: 367px;
  width: 100%;
  border-radius: 8px;
}

.card-description{
  padding-top: 20px;
}

.slider-card-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  margin-bottom: 10px;
}

.slider-card-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.slider-card-text {
  font-size: 16px;
  color: #191919;
  font-weight: 400;
  margin-bottom: 10px;
}

.img-user{
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.slider-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #000000;
}

.div-date{
  color: #7B7B7B;
  font-weight: 500;
}

.div-images{
  display: flex;
  flex-direction: row;
  gap: 12px;
  color: #7B7B7B;
  font-weight: 500;
}

.span-images{
  display: flex;
  align-items: center;
  color: #7B7B7B;
  font-size: 14px;
  gap: 5px;
}

.slider-card-meta img {
  cursor: pointer;
}

/* Arrows */

.slider-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.slider-btn {
  position: absolute;
  top: 45%;
  cursor: pointer;
  border: transparent;
  background: transparent;
}

.slider-btn.prev { left: -65px; }
.slider-btn.next { right: -65px; }

/* პიროვნებები */

.card {
  padding: 22px;
  border: 1px solid #B8B8B8;    
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.autor-img-h3{
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-img{
  width: 120px;
  height: 120px;
  border-radius: 300px;
  object-fit: cover;
}

.name {
  font-size: 16px;
}

.autor-p{
  font-size: 16px;
  color: #191919;
}

/* პოპულარული */

.favourite-wrapper{
  margin: 75px auto 42px;
}

.popular-margin{
  margin: 114px 0 0;
}

.div-popular{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.slider-card-popular{
  max-width: 360px;
  width: 100%;
  border-radius: 8px;
}

.h1-popular{
  font-size: 24px;
  margin-bottom: 20px;
}

.favorite-card{
  max-width: 360px;
  width: 100%;
  border-radius: 8px;
}

/* მეტის ნახვა */

.see-all-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 150px;
}

.see-all-a {
  display: inline-block;
}

.button{
  border: 1px solid #ACACAC;
  color: #191919;
  font-weight: 700;
  background-color: #F8F8F8;
  padding: 17.5px 21.5px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 10px;
}

/* faq */

.faq-wrapper{
  margin: 114px auto 258px;
}

.faq-div-h1-img{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq-container {
  margin: 50px auto;
}

.faq-item {
  border-bottom: 1px solid #B8B8B8;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  text-align: left;
  width: 100%;
  padding: 24px 0;
  cursor: pointer;
  font-weight: bold;
}

.faq-content {
  padding: 0px 0px 24px;
  display: none;
  font-size: 14px;
  color: #565656;
}

.arrow {
  width: 14px;
  height: 6px;
  transition: transform 0.3s ease;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}

/* ჩვენს შესახებ */

.about-wrapper{
  margin: 150px auto 56px;
}

.slider-section{
  margin: 0px auto 150px;
}

.about-h1{
  font-size: 32px;
  margin-bottom: 42px;
}

.about-p{
  font-size: 16px;
  line-height: 22px;
}

.span-about-p{
  font-weight: 700;
}

.img-about{
  width: 100%;
  height: 321px;
  border-radius: 8px;
  margin-top: 24px;
}

.slider-container-about {
  position: relative;
}

.slider-track-about {
  display: flex;
  gap: 20px;
}

.slider-card-about {
  flex: 0 0 calc(33.333% - 20px);
  display: none;
  opacity: 0;
  transition: opacity 0.1s ease;
  background-color: #FAFAFA;
  padding: 36px 24px;
  border-radius: 8px;
}

.slider-div-about{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.user-about{
  border-radius: 300px;
  width: 43px;
  height: 43px;
}

.about-h3-h4{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-h3{
  color: #191919;
  font-size: 16px;
}

.about-h4{
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
}

.p-slider-about{
  color: #191919;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 32px;
}

.a-slider-linkdin{
  display: flex;
  align-items: center;
  gap: 6px;
}

.span-slider-about{
  color:#1B7CDE;
  font-size: 14px;
}

.img-slider-link{
  width: 8.5px;
  height: 8.5px;
}

/* პარამეტრები */

.settings-wrapper{
  margin: 114px auto 150px;
}

.h1-settings{
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 72px;
}

.settings-container {
  display: flex;
}

.settings-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.settings-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.settings-tab {
  color: #191919;
  cursor: pointer;
  transition: 0.2s;
  font-size: 15px;
  text-align: left;
  font-weight: 400;
}

.settings-tab.active {
  font-weight: 700;
}

.divider-setting {
  width: 1px;
  background: #ACACAC;
  margin: 0 24px;
  border-radius: 0.5px;
}

.settings-content {
  flex: 1;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.div-profile-flex{
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.div-profile{
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 366px;
  width: 100%;
}

.div-password-settings{
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-about{
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 628px;
  width: 100%;
}

.form-label {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}

.password-wrapper-settings{
  max-width: 366px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  background: #FAFAFA;
  color: #191919;
  font-weight: 400;
}

.form-about{
  width: 100%;
  height: 386px;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  padding: 20px 16px;
  font-size: 14px;
  background: #FAFAFA;
}

.form-short{
  width: 100%;
  height: 123px;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  background: #FAFAFA;
}

.form-input:focus,
.form-short:focus,
.form-textarea:focus,
.form-about:focus {
  border-color: #313131;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-about::placeholder {
  color: #B8B8B8;
}

.avatar-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}

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

.avatar-img {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-edit-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #191919;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type="file"] {
  display: none;
}

.label-user{
  color: #565656;
  font-size: 14px;
  font-weight: 400;
}

.btn {
  border: 1px solid #ACACAC;
  width: 180px;
  height: 49px;
  font-weight: 700;
  border-radius: 8px;
  font-size: 14px;
  background: #FDFCF9;
  cursor: pointer;
}

.btn-primary {
  background: #191919;
  width: 180px;
  height: 49px;
  font-weight: 700;
  border-radius: 8px;
  font-size: 14px;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}

.btn-primary[disabled] {
  cursor: not-allowed;
  background-color: #EDEDED;
  color: #ACACAC;
} 

.btn[disabled] {
  cursor: not-allowed;
  border: 1px solid #B8B8B8;
  color: #ACACAC;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.actions-password {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.error-counter{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.char-counter {
  font-size: 14px;
  color: #7B7B7B;
  font-weight: 400;
}

.toggle-password {
  position: absolute;
  right: 17.5px;
  cursor: pointer;
  user-select: none;
}

#newPasswordError, #confirmPasswordError {
  font-size: 14px;
  margin-top: 8px;
}

.delete-settings{
  color: #FF4343;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: transparent;
  cursor: pointer;
  margin-top: 78px;
}

/* ანგარიშის წაშლი მოდალი */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 72px 117px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.modal-text {
  font-size: 20px;
  font-weight: 700;
  color: #191919;
  margin-top: 24px;
}

.modal-text-2{
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin: 24px 0px 36px;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* მომხმარებლის პროფილი */

.user-wrapper{
  margin: 114px auto 150px;
}

.div-user{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.img-user-inner{
  width: 89px;
  height: 89px;
  border-radius: 300px;
  object-fit: cover;
}

.h1-user{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.user-p{
  color: #252525;
  font-size: 16px;
  text-align: center;
  max-width: 724px;
  width: 100%;
  margin-bottom: 12px;
}

.a-user-link{
  font-size: 14px;
  color: #1B7CDE;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.div-user-info{
  display: flex;
  align-items: center;
  gap: 14px;
  color: #7B7B7B;
}

.user-info{
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-user {
  border-top: 0.5px solid #ACACAC;
  border-bottom: 1px solid #ACACAC;
  padding: 26px 0;
  display: flex;
  gap: 24px;
  margin: 42px 0 30px;
}

.nav-item {
  cursor: pointer;
  font-weight: 400;
  color: #191919;
}

.active {
  color: #191919;
  font-weight: 700;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.h2-user{
  font-size: 24px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 20px;
}

.div-reader{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.div-about{
  color: #191919;
  font-size: 16px;
  font-weight: 400;
}

.div-saved{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.div-liked{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.div-work{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.div-road{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.div-create{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #B8B8B8;
  border-radius: 8px;
  max-width: 360px;
  width: 100%;
  height: 448px;
}

.create-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.h3-create{
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin-top: 8px;
}

.p-create{
  font-size: 16px;
  font-weight: 400;
  color: #7B7B7B;
}

.hidden-option{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 196px 0 250px;
  color: #B8B8B8;
  font-size: 24px;
  font-weight: 500;
}

.button-tell{
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: 1px solid #ACACAC;
  padding: 18px 21px;
  color: #191919;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}

/* წესები და პირობების რეკომენდაცია */

.recommendation{
  background-color: #F2F2F2;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 76px 0 56px;
  font-size: 14px;
  font-weight: 500;
}