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

body { overflow-x: hidden; width: 100%; }
body.no-scroll { overflow: hidden; }

@-moz-document url-prefix() {
  .locations-body, .all-locations-list {
    scrollbar-width: thin;
    scrollbar-color: #D5D5D5 #F1F1F1;
    scroll-behavior: smooth;
  }
}

.locations-body::-webkit-scrollbar, .all-locations-list::-webkit-scrollbar {
  width: 10px; 
}
.locations-body::-webkit-scrollbar-thumb, .all-locations-list::-webkit-scrollbar-thumb {
  background: #E6E6E6; 
  border-radius: 3px;
}

:root {
  --main-blue: #0E6DEF;
  --dark-blue: #1E293B;
  --light-blue: #BBD8FF;
  --text-color: #64748B;
  --text-color1: #94A3B8;
  --bg-color: #F0F7FF;
  --bg-color1: #F8FAFC;
  --dark-bg-color: #0A1628;
  --black: #313131;
  --brand-red: #EF4444;
  --hover-color: rgba(14, 109, 239, 0.8);
}

.loading-screen {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.Container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}

.content, .content1 {
  display: flex;
  width: 100%;
  max-width: 1312px; 
}

.content1 { flex-direction: column; }

header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 1px 24px 0px rgba(14, 109, 239, 0.07);
  padding: 31.5px 20px !important;
  position: sticky;
  top: 0;
  z-index: 2000;
  transition: all 0.3s ease;
}

.header-content {
  align-items: center;
  gap: 50px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 141px;
}

.menu {
  display: flex;
  gap: 20px;
  a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font: 15px 'Helvetica Roman';
    line-height: 20px;
    transition: all 0.3s ease;
    &:hover, &.active { color: var(--main-blue); }
  }
}

.header-actions { display: flex; gap: 8px; margin-left: auto; }
.lang-change { 
  font: 12px 'Helvetica Medium';
  line-height: 15px;
  position: relative; 
}
 
.lang-toggle {
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 6px;
  color: var(--main-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 61px; height: 37px;
  i { font-size: 10px; }
}

.lang-menu {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 6px;
  box-shadow: 0px 1px 24px 0px rgba(14, 109, 239, 0.07);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0;
  gap: 6px;
  position: absolute;
  left: 0;
  top: 100%; width: 61px;
  transition: all 0.3s ease;
  z-index: 2000;
  padding: 10px 0;
}

.lang-menu a {
  color: #222222;
  text-decoration: none;
  transition: all 0.3s ease;
  &:hover { color: var(--main-blue); }
}

.lang-menu.active, .user-actions.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

.header-actions > a {
  background: var(--main-blue);
  border-radius: 6px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px 'Helvetica Medium';
  line-height: 20px;
  width: 126px; height: 36px;
  transition: all 0.3s ease;
  i { display: none; }
  &:hover { background: var(--hover-color); }
}

#menu-toggle-button { display: none; }

.dropdownMenu {
  background: white;
  padding: 0 20px;
  position: fixed;
  top: 100px;
  width: 100%; height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: height 0.5s ease;
  z-index: 2000;
}

.dropdownMenu.visible, .dropdownMenu.active { height: 435px; }

.dropdownMenu > a {
  border-bottom: 1px solid rgba(14, 109, 239, 0.06);
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  font: 14px 'Helvetica Roman';
  line-height: 20px;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 4px;
  &:first-child { padding-top: 25px; }
  &:last-child {
    background: var(--main-blue);
    border-radius: 12px;
    border-bottom: none;
    color: white;
    justify-content: center;
    padding: 18px 0;
    margin: 19px 0 0;
  }
}

.intro-section {
  height: 450px;
  padding: 0;
  overflow: hidden;
}

.intro-left, .tracking-form { opacity: 0; }
.intro-left.show { animation: slideFromLeft .8s ease forwards; }
.tracking-form.show { animation: slideFromRight .8s ease forwards; }

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-110%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(110%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.intro-left {
  background: white;
  position: relative;
  padding-left: calc(50% - 656px);
  padding-top: 105px;
  width: 52%; height: 100%;
  p:first-child {
    font: 50px 'Helvetica Bold';
    line-height: 55px;
    text-transform: uppercase;
    margin-bottom: 6px;
    span:first-child { color: black; margin-right: 10px; }
    span:last-child { color: var(--main-blue); }
  }
  p:nth-child(2) {
    color: #8A96A5;
    font: 40px 'ALK Sanet';
    line-height: 55px;
    margin-bottom: 29px;
    letter-spacing: -2.88px;
    font-feature-settings: 'case' 1;
  }
}

.intro-links {
  display: flex;
  gap: 11px;
  a:first-child {
    background: var(--main-blue);
    color: white;
  }
  a:last-child {
    border: 1px solid var(--main-blue);
    color: var(--main-blue);
    svg { fill: var(--main-blue); }
  }
}

.intro-links a, .news-preview .head > a, .join-us a, .start-links a,
.support-block a {
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 600 15px 'Noto Sans Georgian';
  line-height: 23px;
  width: 205px; height: 51px;
  transition: all 0.3s ease;
  &:hover { background: var(--dark-blue); }
}

.intro-links a:last-child:hover { background: transparent; }

.intro-left > img {
  position: absolute;
  right: 135px; bottom: 25px;
}

.tracking-form {
  background: var(--dark-bg-color);
  padding: 120px 0 0 40px;
  padding-right: calc(50% - 656px);
  width: 48%; height: 100%;
  position: relative;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: url('../images/intro-decor.png') no-repeat center center / cover;
    position: absolute;
    width: 100%; height: 100%;
    right: 0; opacity: 0.3;
    top: 0;
    z-index: 1;
  }
  &::before {
    content: '';
    background: radial-gradient(86.02% 86.02% at 70% 50%, rgba(14, 109, 239, 0.22) 0%, rgba(0, 0, 0, 0) 60%);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.tracking-form .head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  div:first-child {
    background: rgba(14, 109, 239, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(14, 109, 239, 0.3);
    width: 40px; height: 40px;
  }
  div:last-child {
    width: calc(100% - 60px);
    p { margin-bottom: 0; }
    p:first-child {
      color: white;
      font: 21px 'Helvetica Medium';
      line-height: 29px;
      letter-spacing: 0.49px;
      text-transform: uppercase;
    }
    p:last-child {
      color: rgba(255, 255, 255, 0.6);
      font: 14px 'Helvetica Medium';
      line-height: 20px;
      letter-spacing: 0.32px;
    }
  }
}

.tracking-search {
  display: grid;
  grid-template-columns: 465fr 105fr;
  gap: 15px;
  margin-bottom: 13px;
  button {
    background: var(--main-blue);
    border-radius: 16px;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; height: 52px;
    font: 13px 'Helvetica Medium';
    line-height: 19px;
  }
}

.tracking-search > div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  height: 52px;
  position: relative;
  input {
    background: transparent;
    border: none;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.3);
    font: 13px 'Helvetica Roman';
    line-height: 19px;
    padding: 0 12px 0 43px;
    width: 100%; height: 100%;
    &:focus { outline: none; }
  }
  img {
    position: absolute;
    left: 16px; top: 18px;
  }
}

#tracking-hint {
  color: rgba(255, 255, 255, 0.25);
  font: 11px 'Helvetica Roman';
  line-height: 16px;
  padding-left: 5px;
}

.news-preview {
  background: var(--bg-color);
  padding: 95px 20px 85px;
  .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 45px ;
    p { margin-bottom: 0; }
    div p:first-child {
      color: var(--main-blue);
      font: 12px 'Helvetica Medium';
      line-height: 16px;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }
    div p:last-child {
      color: var(--dark-blue);
      font: 30px 'Helvetica Bold';
      line-height: 48px;
    }
    a {
      background: var(--main-blue);
      color: white;
    }
  }
}

.news-swiper { width: 100% !important; padding-bottom: 40px !important; }

.swiper1 .swiper-pagination-bullet {
  background: var(--light-blue);
  border-radius: 0 !important;
  width: 8px; height: 3px;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper1 .swiper-pagination-bullet-active { 
  background: var(--main-blue); 
  width: 28px;
}

.news-card.swiper-slide { width: 421px !important; }
.news-card {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 16px;
  box-shadow: 0px 1px 12px 0px rgba(14, 109, 239, 0.04);
  text-decoration: none;
  > img {
    border-radius: 16px 16px 0 0;
    width: 100%; height: 200px;
    object-fit: cover;
  }
}

.date {
  color: var(--text-color);
  font: 11px 'Helvetica Roman';
  line-height: 16px;
  margin-bottom: 12px;
}

.news-card .desc {
  padding: 24px;
  .title {
    color: var(--dark-blue);
    display: -webkit-box;
    font: 16px 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 12px;
    text-transform: uppercase;
    height: 66px;
    line-clamp: 3;
    overflow: hidden;
  }
  .intro {
    color: var(--text-color);
    display: -webkit-box;
    font: 14px 'Helvetica Roman';
    line-height: 23px;
    height: 92px;
    overflow: hidden;
    line-clamp: 4;
    margin-bottom: 18px;
  }
}

.see-all {
  color: var(--main-blue);
  font: 12px 'Helvetica Medium';
  line-height: 16px;
}

.partner-prev {
  background: #F9FCFF;
  padding: 65px 20px;
  .content1 > p:first-child {
    color: var(--main-blue);
    font: 12px 'Helvetica Medium';
    line-height: 16px;
    text-transform: uppercase;
    text-align: center;
  }
  .content1 > p:nth-child(2) {
    color: var(--dark-blue);
    font: 30px 'Helvetica Bold';
    line-height: 48px;
    text-align: center;
    margin-bottom: 45px;
  }
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.partner-card {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font: 14px 'Campton Medium';
  line-height: 20px;
  padding: 24px 10px;
  div:first-child {
    background: var(--bg-color);
    border-radius: 8px;
    color: var(--main-blue);
    font-family: 'Campton Bold';
    width: 40px; height: 40px;
    margin-bottom: 8px;
    img { width: 20px; }
  }
  > p {color: var(--dark-blue); margin-bottom: 8px; }
}

.tag {
  background: var(--bg-color);
  border-radius: 8px;
  color: var(--main-blue);
  font: 14px 'Campton Medium';
  line-height: 20px;
  padding: 2px 8px;
}

.join-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  > span {
    color: var(--dark-blue);
    font: 16px 'Helvetica Roman';
    line-height: 24px;
    text-transform: uppercase;
  }
  a {
    background: var(--main-blue);
    color: white;
    width: 220px;
  }
}

.start-now {
  padding: 86px 20px;
  .content1 {
    background: var(--dark-bg-color);    
    border-radius: 24px;
    align-items: center;
    max-width: 900px;
    padding: 57px 64px;
    position: relative;
    > * { position: relative; z-index: 2; }
    &::after {
      content: '';
      background: radial-gradient(86.02% 86.02% at 70% 50%, rgba(14, 109, 239, 0.22) 0%, rgba(0, 0, 0, 0) 60%);
      position: absolute;
      inset: 0;
      z-index: 1;
    }
  }
}

.start-now .content1 {
  > p:first-child {
    color: #60A5FA;
    font: 600 11px 'Noto Sans Georgian';
    line-height: 16px;
    letter-spacing: 1.98px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  > p:nth-child(2) {
    color: white;
    font: 36px 'Helvetica Bold';
    line-height: 50px;
    letter-spacing: -1.44px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  > p:nth-child(3) {
    color: white;
    font: 15px 'Noto Sans Georgian';
    line-height: 24px;
    margin-bottom: 40px;
  }
}

.start-links {
  display: flex;
  gap: 12px;
  a {
    color: white;
    height: 55px; width: 200px;
  }
  a:first-child { background: var(--main-blue); }
  a:last-child {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.stats {
  background: var(--main-blue);
  padding: 40px 20px;
  .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.stats .content div {
  display: flex;
  flex-direction: column;
  align-items: center;
  p { margin-bottom: 0; text-align: center; }
  p:first-child {
    color: white;
    font: 48px 'Helvetica Bold';
    line-height: 48px;
  }
  p:last-child {
    color: rgba(247, 247, 244, 0.6);
    font: 12px 'Helvetica Roman';
    line-height: 16px;
    letter-spacing: 0.6px;
  }
  &:nth-child(2) {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
}

footer {
  background-color: var(--dark-blue);
  padding: 64px 20px !important;
}

.footer-content hr {
  border-color: rgba(255, 255, 255, 0.06);
  margin: 30px 0;
  opacity: 1;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-right: 80px;
  > div:first-child {
    max-width: 400px;
    div {
      color: #D7D7D7;
      font: 14px 'Noto Sans Georgian';
      line-height: 23px;
    }
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 197px;
  margin-bottom: 20px;
}

.footer-menu > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
  a {
    color: white;
    text-decoration: none;
    font: 14px 'Noto Sans Georgian';
    line-height: 21px;
  }
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  a {
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    width: 30px; height: 30px;
    transition: all 0.3s ease;
    &:hover { background: var(--main-blue); }
  }
}

.footer-bottom {
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 12px 'Noto Sans Georgian';
  line-height: 18px;
  gap: 10px; 
}

.owner {
  display: flex;
  align-items: center;
  gap: 4px;
  div {
    background: #00D492;
    border-radius: 50%;
    width: 8px; height: 8px;
  }
  a { color: var(--main-blue); text-decoration: none; }
}

.page-head {
  background: var(--dark-bg-color);
  height: 300px;
  padding-top: 80px ;
  position: relative;
  overflow: hidden;
  > * { position: relative; z-index: 2; }
  p:first-child {
    color: #60A5FA;
    font: 600 16px 'Noto Sans Georgian';
    line-height: 20px;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-transform: uppercase;
  }
  p:nth-child(2) {
    color: white;
    font: 700 40px 'Noto Sans Georgian';
    line-height: 55px;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    max-width: 700px;
    span:last-child { margin-left: 10px; color: var(--main-blue); }
  }
  p:nth-child(3) {
    color: rgba(255,255,255,0.6);
    font: 16px 'Noto Sans Georgian';
    line-height: 28px;
    margin-bottom: 0;
  }
}

.page-head::after, .page-head::before {
  content: '';
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(14, 109, 239, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}
.page-head::after {
  width: 350px; height: 350px;
  top: 50px; left: -60px;
}
.page-head::before {
  width: 500px; height: 500px;
  top: -150px; right: 190px;
}

.faq-cont {
  padding: 50px 20px 95px;
  .content1 { max-width: 1150px; }
}

.faq-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.faq-filter input[type="checkbox"] {
  display: none;
}

.faq-filter label {
  cursor: pointer;
  background: #F1F5F9;
  border-radius: 8px;
  color: var(--text-color);
  font: 13px 'Noto Sans Georgian';
  line-height: 19px;
  padding: 9px 30px;
  transition: all 0.3s ease;
}

.faq-filter > div:has(input:checked) label, .faq-filter label:hover {
  background: var(--main-blue);
  color: white;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item { 
  background: white;
  border-radius: 16px;
  box-shadow: 0px 1px 8px 0px rgba(14, 109, 239, 0.04);
  transition: all 0.3s ease;
  &.show { box-shadow: 0px 1px 24px 0px rgba(14, 109, 239, 0.1); }
} 

.faq-item.show .question {
  border-radius: 16px 16px 0 0;
  border-bottom-color: white;
  div {
    background: var(--main-blue);
    color: white;
    i { transform: rotate(180deg); }
  }
}

.question {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 16px;
  cursor: pointer;
  padding: 24px;
  transition: all 0.3s ease;
  span {
    color: var(--dark-blue);
    font: 600 15px 'Noto Sans Georgian';
    line-height: 20px;
    width: calc(100% - 42px);
  }
}

.question > div {
  background:  rgba(14, 109, 239, 0.08);
  border-radius: 50%;
  color: var(--main-blue);
  font-size: 12px;
  width: 32px; height: 32px;
  transition: all 0.3s ease;
  i { transition: all 0.3s ease; }
}

.answer {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.answer-content {
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-top: none;
  border-radius: 0 0 16px 16px;
  color: var(--text-color);
  font: 14px 'Noto Sans Georgian';
  line-height: 22px;
  padding: 0 24px 24px;
}

.support-block {
  background: var(--bg-color);
  border-radius: 20px;
  padding: 32px;
  max-width: 880px;
  width: 100%;
  margin: 80px auto 0;
  p { text-align: center; }
  p:first-child {
    color: var(--dark-blue);
    font: 600 18px 'Noto Sans Georgian';
    line-height: 27px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  p:nth-child(2) {
    color: var(--text-color);
    font: 14px 'Noto Sans Georgian';
    line-height: 21px;
    margin-bottom: 24px;
  }
  a {
    background: var(--main-blue);
    color: white;
    width: 190px; height: 46px;
    margin: 0 auto;
  }
}

.faq-prev {
  background: #F9FCFF;
  padding: 100px 20px;
  .content {
    align-items: flex-start;
    gap: 125px;
    max-width: 1155px;
    > div:first-child {
      width: 180px;
      text-transform: uppercase;
      p:first-child {
        color: var(--dark-blue);
        font: 22px 'Helvetica Medium';
        line-height: 30px;
        margin-bottom: 0;
      }
      p:last-child {
        color: var(--main-blue);
        font: 30px 'Helvetica Medium';
        line-height: 43px;
        margin-bottom: 0;
      }
    }
  }
}

.faq-prev .faq { width: calc(100% - 305px); }

.locations-prev {
  background: #F1F5F9;
  padding: 127px 20px 70px;
  .content {
    align-items: flex-start;
    gap: 50px;
    > div { width: calc(50% - 25px); }
  }
}

.locations-left {
  > p:first-child {
    color: var(--main-blue);
    font: 500 11px 'Helvetica Medium';
    line-height: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  > p:nth-child(2) {
    color: var(--dark-blue);
    font: 30px 'Helvetica Bold';
    line-height: 40px;
    margin-bottom: 16px;
    max-width: 300px;
  }
}

.search-location {
  display: grid;
  grid-template-columns: 408fr 216fr;
  gap: 10px;
  margin-bottom: 12px;
}

.search-location > div:first-child {
  position: relative;
  width: 100%; height: 46px;
  input {
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(14, 109, 239, 0.12);
    color: rgba(30, 41, 59, 0.5);
    font: 14px 'Helvetica Roman';
    line-height: 21px;
    padding: 0 16px 0 40px;
    width: 100%; height: 100%;
    &:focus { outline: none; }
  }
  img {
    position: absolute;
    top: 15px; left: 16px;
    filter: grayscale(100%);
  }
}

.search-location > div:nth-child(2) {
  position: relative;
  img {
    position: absolute;
    left: 16px; top: 17px;
    width: 13px;
  }
}

.search-location .select2-container .select2-selection--single { 
  border: 1px solid rgba(14, 109, 239, 0.12) !important;
  border-radius: 8px !important;
  height: 46px !important;
  width: 100% !important;
}

.search-location .select2-container .select2-selection--single .select2-selection__rendered {
  color: var(--dark-blue) !important;
  max-width: 100% !important;
  font: 14px 'Helvetica Medium' !important;
  line-height: 20px !important;
  padding: 12px 10px 0 36px !important;
  height: 100%;
}

.search-location .select2-container--default .select2-selection--single .select2-selection__arrow {
  background: url(../images/select-arrow.svg) no-repeat center center;
  background-size: contain;
  width: 7px !important;
  height: 5px !important;
  right: 17px !important;
  top: 50% !important;
  transform: translateY(-50%);
}
  
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}

.select2-dropdown {
  background: white !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 12px !important;
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1) !important;
  padding: 5px 5px 13px;
}

.select2-results {
  color: #1E293B !important;
  font: 13px 'Helvetica Medium';
  line-height: 20px;
}

.select2-results__option {
  border-radius: 8px;
  padding: 10px 0 10px 12px !important;
}

.select2-container--default .select2-results__option--selected {
  background: white !important;
  color: #1E293B !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #F0FBFF !important;
  color: #1E293B !important;
}

.select2-results__option--disabled { display: none !important; }
.select2-container--default .select2-results > .select2-results__options { max-height: unset !important; }

.locations-swiper {
  width: 100% !important;
  padding-bottom: 40px !important;
}

.loc-slide {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 14px;
  .icon {
    background: rgba(14, 109, 239, 0.08);
    border-radius: 12px;
    width: 32px; height: 32px;
    svg { fill: var(--main-blue); }
  }
}

.loc-slide > div.soon .icon svg { fill: var(--text-color1); }

.loc-slide > div {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  > div:last-child { width: calc(100% - 44px); }
}

.loc-slide .name {
  p {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 17px;
    margin-bottom: 0;
  }
  > div {
    color: var(--text-color1);
    display: flex;
    align-items: center;
    gap: 3px;
    font: 11px 'Helvetica Roman';
    line-height: 16px;
    div {
      background: var(--text-color1);
      border-radius: 50%;
      width: 2px; height: 2px;
    }
  }
}

.location-content {
  background: transparent;
  border-radius: 24px;
  position: relative;
  > a {
    border-radius: 16px;
    text-decoration: none;
    height: 50px;
    position: absolute;
    bottom: 20px; z-index: 2;
  }
}

.location-content > a:nth-child(2) {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.19);
  color: var(--main-blue);
  gap: 8px;
  font: 14px 'Helvetica Medium';
  line-height: 21px;
  width: 125px; right: 250px;
}

.location-content > a:nth-child(3) {
  background: var(--main-blue);
  color: white;
  gap: 10px;
  font: 15px 'Helvetica Medium';
  line-height: 23px;
  width: 215px; right: 20px;
}

.map-container {
  border-radius: 24px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%; height: 500px;
  overflow: hidden;
  transform: scale(0);
  opacity: 0;
  transition:
    transform 0.8s cubic-bezier(.22, 1, .36, 1),
    opacity 0.8s ease;
}

.map-container.show {
  transform: scale(1);
  opacity: 1;
}

.custom-info-window {
  background: white;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  min-width: 220px;
  padding: 1px 20px 26px;
}

.location-district {
  color: var(--text-color);
  font: 12px 'Helvetica Medium';
  line-height: 16px;
  margin-bottom: 20px;
}

.location-name {
  color: var(--main-blue);
  font: 14px 'Helvetica Medium';
  line-height: 20px;
  margin-bottom: 0;
}

.location-tags {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  div {
    display: flex;
    align-items: center;
    gap: 4px;
    i { color: var(--main-blue); font-size: 10px; }
    span {
      color: var(--text-color);
      font: 12px 'Helvetica Medium';
      line-height: 16px;
    }
  }
}

.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18) !important;
  overflow: visible;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  max-height: none !important;
}

.gm-style .gm-style-iw-c button {
  background: var(--bg-color) !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  width: 28px !important;
  height: 28px !important;
  top: 6px !important; right: 6px !important;
  span { width: 14px !important; mask-repeat: no-repeat !important; }
}

.gm-style .gm-style-iw-c button span { margin: 7px !important; }
.gm-style .gm-style-iw-tc::after { background: #fff !important; }
.gm-style .gm-style-iw-tc { display: none; }

.slider {
  position: relative;
  height: 400vh;
}

.slider-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 115px;
  will-change: transform;
}

.slide-text {
  width: 570px;
  .name {
    color: var(--main-blue);
    font: 20px 'Helvetica Bold';
    line-height: 36px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  .info {
    color: var(--black);
    font: 16px 'Helvetica Roman';
    line-height: 26px;
    margin-bottom: 44px;
  }
}

.slide-num {
  font: 700 72px 'Fraunces';
  line-height: 72px;
  margin-bottom: 30px;
}

.slide1 {
  background: white;
  z-index: 1;
  .slide-num { color: rgba(14, 109, 239, 0.2); }
  > img { width: 400px; }
  .name { font-size: 30px; line-height: 40px; }
}

.slide1 .slide-text > p:first-child {
  color: var(--black);
  font: 30px 'Helvetica Thin';
  line-height: 36px;
  margin-bottom: 30px;
}

.slide2 {
  background: #F9FCFF;
  transform: translateX(0) translateY(100%);
  z-index: 2;
  .slide-num { color: var(--dark-blue); }
  > img { width: 500px; }
}

.slide3 {
  background: var(--dark-blue);
  z-index: 3;
  width: 45%;
  left: auto; right: 0;
  transform: translateX(100%);
  .slide-num, .info { color: white; }
}

.slide4 {
  background: var(--main-blue);
  transform: translate(100%, 100%);
  z-index: 4;
  .slide-num, .name, .info { color: white; }
  > img { width: 600px; }
  a {
    border: 1px solid white;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: 600 15px 'Noto Sans Georgian';
    line-height: 23px;
    width: 190px; height: 53px;
  }
}

.mission-cont {
  padding: 150px 20px 95px;
  .content {
    align-items: center;
    gap: 80px;
    max-width: 1280px;
    > div { width: calc(50% - 40px); }
  }
}

.mission-left {
  > p:first-child {
    color: var(--main-blue);
    font: 13px 'Helvetica Medium';
    line-height: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  > p:nth-child(2) {
    color: var(--dark-blue);
    font: 34px 'Helvetica Bold';
    line-height: 40px;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    max-width: 435px;
    span:last-child { color: var(--main-blue); }
  }
  .desc {
    color: var(--text-color);
    font: 15px 'Helvetica Roman';
    line-height: 27px;
  }
}

.mission-right {
  background: var(--dark-bg-color);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 75px;
  padding: 40px;
  position: relative;
  &::after {
    content: '';
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(14, 109, 239, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
  }
}

.year {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  > div:first-child {
    background: var(--main-blue);
    border-radius: 50%;
    color: white;
    font: 11px 'Helvetica Medium';
    line-height: 17px;
    width: 40px; height: 40px;
    position: relative;
    &::after {
      content: '';
      background: rgba(14, 109, 239, 0.3);
      height: 36px; width: 1px;
      position: absolute;
      left: 50%; top: 45px;
    }
  }
  > div { width: calc(100% - 60px); } 
  p:first-child {
    color: white;
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    margin-bottom: 4px;
  }
  p:nth-child(2) {
    color: rgba(255, 255, 255, 0.5);
    font: 13px 'Helvetica Roman';
    line-height: 20px;
    margin-bottom: 0;
  }
}

.year:last-child > div:first-child::after { content: none; }

.values-cont, .perks-cont {
  background: var(--bg-color);
  padding: 96px 20px;
  .content1 {
    max-width: 1150px;
    > p:first-child {
      color: var(--main-blue);
      font: 11px 'Helvetica Medium';
      line-height: 17px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px;
      text-align: center;
    }
    > p:nth-child(2) {
      color: var(--dark-blue);
      font: 32px 'Helvetica Bold';
      line-height: 48px;
      letter-spacing: -1px;
      text-transform: uppercase;
      margin-bottom: 55px;
      text-align: center;
    }
  }
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 16px;
  box-shadow: 0px 1px 12px 0px rgba(14, 109, 239, 0.04);
  padding: 24px;
  > div:first-child {
    background: rgba(14, 109, 239, 0.08);
    border-radius: 12px;
    width: 44px; height: 44px;
    margin-bottom: 20px;
  }
  > p:nth-child(2) {
    color: var(--dark-blue);
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  > div:last-child {
    color: var(--text-color);
    font: 13px 'Helvetica Roman';
    line-height: 22px;
  }
}

.team-cont {
  padding: 95px 20px;
  .content1 { max-width: 1150px; }
}

.team-cont .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 55px;
  p { margin-bottom: 0; }
  div p:first-child {
    color: var(--main-blue);
    font: 14px 'Helvetica Medium';
    line-height: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  div p:last-child {
    color: var(--dark-blue);
    font: 32px 'Helvetica Bold';
    line-height: 48px;
    letter-spacing: -1px;
    text-transform: uppercase;
    max-width: 290px;
  }
  > p {
    color: var(--text-color);
    font: 15px 'Helvetica Roman';
    line-height: 24px;
    max-width: 405px;
    text-align: end;
  }
}

.team-swiper { width: 100% !important; padding-bottom: 40px !important; }
.team-slide {
  width: 270px !important;
  div:first-of-type, img {
    background: var(--dark-blue);
    border-radius: 16px;
    width: 100%; height: 358px;
    object-fit: cover;
    margin-bottom: 16px;
  }
  .name {
    color: var(--dark-blue);
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    margin-bottom: 4px;
  }
  .pos {
    color: var(--text-color1);
    font: 13px 'Helvetica Roman';
    line-height: 19px;
    margin-bottom: 0;
  }
}

.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.perks-card {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 16px;
  padding: 24px;
  > div:first-child {
    background: var(--main-blue);
    border-radius: 2px;
    width: 32px; height: 4px;
    margin-bottom: 20px;
  }
  > p:nth-child(2) {
    color: var(--dark-blue);
    font: 600 16px 'Noto Sans Georgian';
    line-height: 24px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  > div:last-child {
    color: var(--text-color);
    font: 14px 'Noto Sans Georgian', 'Helvetica Roman';
    line-height: 23px;
  }
}

.terms-page {
  padding: 50px 20px 150px;
  .content {
    align-items: flex-start;
    gap: 30px;
    max-width: 1150px;
  }
}

.side-nav {
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 8px;
  width: 260px;
}

.side-nav a {
  background: transparent;
  border-radius: 10px;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  font: 13px 'Helvetica Medium';
  line-height: 19px;
  padding: 11px 16px;
  transition: all 0.3s ease;
  &:hover, &.active {
    background: rgba(14, 109, 239, 0.08);
    color: var(--main-blue);
  }
}

.page-content { width: calc(100% - 290px); }
.page-title {
  color: var(--dark-blue);
  font: 26px 'Helvetica Bold';
  line-height: 39px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.terms-text {
  background: var(--bg-color1);
  border: 1px solid rgba(14, 109, 239, 0.06);
  border-radius: 16px;
  color: var(--text-color);
  font: 14px 'Helvetica Roman';
  line-height: 25px;
  padding: 32px 50px 32px 32px;
  margin-bottom: 48px;
}

.support-box {
  background: var(--dark-bg-color);
  border-radius: 20px;
  padding: 32px 50px 32px 32px;
  p:first-child {
    color: white;
    font: 16px 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  p:nth-child(2) {
    color: rgba(255,255,255,0.6);
    font: 14px 'Helvetica Roman';
    line-height: 21px;
    margin-bottom: 20px;
  }
  a {
    background: var(--main-blue);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    font: 14px 'Helvetica Medium';
    line-height: 21px;
    width: 181px; height: 45px;
  }
}

.contact-page {
  padding: 50px 20px 150px;
  .content {
    align-items: flex-start;
    gap: 60px;
    max-width: 1150px;
  }
}

.contact-form {
  width: 670px;
  > p:first-child {
    color: var(--main-blue);
    font: 11px 'Helvetica Medium';
    line-height: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  > p:nth-child(2) {
    color: var(--dark-blue);
    font: 28px 'Helvetica Bold';
    line-height: 42px;
    text-transform: uppercase;
    max-width: 260px;
  }
  > div {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  button {
    background: var(--main-blue);
    border: none;
    border-radius: 14px;
    color: white;
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    width: 100%; height: 55px;
    transition: all 0.3s ease;
    &:hover { background: var(--dark-blue); }
  }
}

.contact-form label, .common-form label {
  color: var(--dark-blue);
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  margin-bottom: 7px;
  span { color: var(--main-blue); }
}

.contact-form input, .contact-form textarea, .common-form input {
  background: var(--bg-color1);
  border-radius: 12px;
  border: 1px solid rgba(14, 109, 239, 0.12);
  color: var(--text-color1);
  font: 14px 'Helvetica Roman';
  line-height: 21px;
  padding-left: 16px;
  width: 100%; height: 47px;
  &:focus { outline: none; }
}

.contact-form textarea { 
  resize: none; 
  height: 130px; 
  padding-top: 15px;
}

.form-group {
  display: flex;
  flex-direction: row !important;
  gap: 20px;
  > div { width: calc(50% - 10px); }
}

.contact-right {
  width: calc(100% - 730px);
}

.contact-info {
  background: var(--bg-color1);
  border: 1px solid rgba(14, 109, 239, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  margin-bottom: 16px;
  &:nth-child(4) { margin-bottom: 32px; }
  > div:first-child {
    background: rgba(14, 109, 239, 0.1);
    border-radius: 12px;
    width: 44px; height: 44px;
  }
  > div:last-child {
    width: calc(100% - 60px);
    p { margin-bottom: 0; }
    p:first-child {
      color: var(--text-color1);
      font: 11px 'Helvetica Roman';
      line-height: 17px;
      text-transform: uppercase;
      letter-spacing: 0.28px;
    }
    p:nth-child(2), a {
      color: var(--dark-blue);
      text-decoration: none;
      font: 14px 'Helvetica Medium';
      line-height: 21px;
    }
    p:nth-child(3) {
      color: var(--text-color1);
      font: 12px 'Helvetica Roman';
      line-height: 18px;
    }
  }
}

.map-cont {
  background: var(--dark-bg-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%; height: 220px;
  position: relative;
  overflow: hidden;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: url('../images/intro-decor.png') no-repeat center center / cover;
    position: absolute;
    width: 100%; height: 100%;
    right: 0; opacity: 0.3;
    top: 0;
    z-index: 1;
  }
  &::before {
    content: '';
    background: radial-gradient(56.4% 108.09% at 50% 50%, rgba(14, 109, 239, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.map-cont > div {
  background: var(--main-blue);
  border-radius: 50%;
  width: 40px; height: 40px;
  margin-bottom: 12px;
}

.map-cont p:nth-child(2) {
  color: white;
  font: 14px 'Helvetica Medium';
  line-height: 21px;
  margin-bottom: 0;
}

.map-cont p:last-child {
  color: rgba(255, 255, 255, 0.5);
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  margin-bottom: 0;
}

.auth-page {
  display: flex;
  width: 100%; height: 100dvh;
}

.auth-left {
  background: var(--dark-bg-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 35%; height: 100%;
  position: relative;
  overflow: hidden;
  padding: 32px 10px 32px 64px;
  > * { position: relative; z-index: 2; }
  .decor {
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(14, 109, 239, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
  }
  .decor:nth-last-child(2) {
    width: 400px; height: 400px;
    top: -80px; right: -25px;
  }
  .decor:last-child {
    width: 300px; height: 300px;
    left: -40px; bottom: 0;
  }
  &::after {
    content: '';
    background: url('../images/auth-bg.png') no-repeat center center / cover;
    position: absolute;
    width: 100%; height: 100%;
    right: 0; 
    top: 0;
    z-index: 1;
  }
  .logo { width: unset; }
}

.auth-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-title {
  color: white;
  p:first-child {
    color: #60A5FA;
    font: 16px 'Helvetica Medium';
    line-height: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  p:nth-child(2) {
    font: 36px 'Helvetica Bold';
    line-height: 41px;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    max-width: 365px;
    span:nth-child(2) { color: var(--main-blue); }
  }
  p:nth-child(3) {
    font: 14px 'Helvetica Roman';
    line-height: 23px;
    margin-bottom: 0;
  }
}

.services {
  display: flex;
  flex-direction: column;
  gap: 15px;
  > div {
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    font: 14px 'Helvetica Roman';
    line-height: 21px;
    div {
      background: rgba(14, 109, 239, 0.15);
      border-radius: 12px;
      width: 40px; height: 40px;
    }
    span { width: calc(100% - 56px); }
  }
}

.auth-copyright {
  color: rgba(255, 255, 255, 0.25);
  font: 12px 'Helvetica Roman';
  line-height: 18px;
}

.auth-right {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65%;
  position: relative;
  overflow: hidden;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: url('../images/auth-bg1.png') no-repeat center center / cover;
    position: absolute;
    width: 626px; height: 100%;
    right: -100px;
    top: 0;
    z-index: 1;
  }
}

.auth-content {
  width: min(453px, 90%);
}

.auth-content > p:first-child {
  color: var(--dark-blue);
  font: 28px 'Helvetica Bold';
  line-height: 42px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.auth-content > p:nth-child(2):not(.step-title), 
.step-one-only > p:first-child {
  color: var(--text-color1);
  font: 14px 'Helvetica Medium';
  line-height: 21px;
  margin-bottom: 32px;
  a { 
    color: var(--main-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    &:hover { color: var(--dark-bg-color); }
  }
}

.auth-tabs {
  background: #F1F5F9;
  border-radius: 12px;
  display: flex;
  gap: 5px;
  padding: 4px;
  position: relative;
  margin-bottom: 24px;
  &::after {
    content: '';
    background: white;
    border-radius: 10px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 4px; top: 4px;
    width: calc(50% - 6px); height: 40px;
    z-index: 1;
    transition: all 0.3s ease;
  }
}

.auth-tabs.active::after { left: 50%; }

.auth-tabs button {
  background: transparent;
  border-radius: 10px;
  border: none;
  color: var(--text-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  transition: all 0.3s ease;
  width: 220px; height: 40px;
  position: relative; z-index: 2;
  &.active { color: var(--dark-blue); }
}

.form-group1 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  label {
    color: var(--dark-blue);
    font: 12px 'Helvetica Medium';
    line-height: 18px;
  }
  input {
    background: var(--bg-color1);
    border: 1px solid rgba(14, 109, 239, 0.12);
    border-radius: 12px;
    color: var(--text-color1);
    font: 14px 'Helvetica Medium';
    line-height: 21px;
    padding-left: 16px;
    width: 100%; height: 54px;
    &:focus { outline: none; }
  }
}

.phone-cont {
  display: grid;
  grid-template-columns: 80fr 365fr;
  gap: 8px;
  position: relative;
  div {
    background: var(--bg-color1);
    border: 1px solid rgba(14, 109, 239, 0.12);
    border-radius: 12px;
    gap: 8px;
    width: 100%; height: 54px;
    span:last-child {
      color: var(--text-color);
      font: 13px 'Helvetica Medium';
      line-height: 20px;
    }
  }
  input { height: 54px !important; }
}

.send-code-btn.retry {  
  background: transparent;
  border: none;
  color: var(--brand-red);
  font: 12px 'Helvetica Roman';
  line-height: 16px;
  margin-bottom: 20px;
}

.sms-code { margin-bottom: 0; }
.sms-code-inputs {
  display: flex;
  gap: 8px;
}

.sms-code-inputs input {
  width: 44px; height: 54px;
  padding-left: 0;
  text-align: center;
  outline: none;
  &:focus { border-color: var(--main-blue); }
}

.send-code {
  background: white;
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  cursor: pointer;
  position: absolute;
  top: 13px; right: 20px;
  font: 10px 'Helvetica Roman';
  line-height: 13px;
  text-transform: uppercase;
  width: 100px; height: 30px;
}

.submit-btn {
  background: var(--main-blue);
  border: none;
  border-radius: 14px;
  color: white;
  font: 15px 'Helvetica Medium';
  line-height: 23px;
  width: 100%; height: 55px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  &:hover { background: var(--dark-bg-color); }
}

.success-msg {
  color: green;
  display: none;
  font: bold 12px 'BPG Mrgvlovani Caps 2010';
  line-height: 16px;
  margin-bottom: 20px;
  &.show { display: block; }
}

.form-group1 > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  a {
    color: var(--main-blue);
    text-decoration: none;
    font: 12px 'Helvetica Medium';
    line-height: 18px;
    transition: all 0.3s ease;
    &:hover { color: var(--dark-bg-color); }
  }
}

.pass-cont {
  position: relative;
  input { padding-right: 45px; }
}

.eye-icon {
  cursor: pointer;
  position: absolute;
  top: 12.5px; right: 16px;
}

.auth-options {
  color: var(--text-color1);
  display: flex;
  align-items: center;
  gap: 16px;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  margin-bottom: 24px;
  div {
    background: rgba(14, 109, 239, 0.08);
    width: calc(50% - 20px); height: 1px;
  }
}

.google-auth {
  background: transparent;
  border: 1px solid rgba(14, 109, 239, 0.15);
  border-radius: 14px;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font: 14px 'Helvetica Medium';
  line-height: 21px;
  width: 100%; height: 50px;
  transition: all 0.3s ease;
  &:hover { background: rgba(14, 109, 239, 0.15); }
}

.registration-progress {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
} 

.progress-step {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  > span {
    color: rgba(255,255,255,0.25);
    font: 14px 'Helvetica Roman';
    line-height: 21px;
    transition: all 0.3s ease;
  }
}

.progress-circle {
  background: rgba(255,255,255,0.05);
  border: 2px solid transparent;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  width: 36px; height: 36px;
  transition: all 0.3s ease;
}

.progress-step.active {
  > span { color: white; }
}

.progress-step.active .progress-circle {
  background: rgba(14, 109, 239, 0.2);
  border-color: var(--main-blue);
  color: #60A5FA;
}

.progress-step.completed { color: var(--main-blue); }
.progress-step.completed .progress-circle {
  background: var(--main-blue);
  border-color: var(--main-blue);
  color: #fff;
}

.check-mark {
  display: none;
  font-size: 18px;
  line-height: 1;
}

.progress-step.completed .step-number { display: none; }
.progress-step.completed .check-mark {
  display: block;
  animation: checkPop 0.4s ease;
}

@keyframes checkPop {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-30deg);
  }
  70% {
    transform: scale(1.25) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.form-step {
  display: none;
  &.active {
    display: block;
    animation: stepEnter 0.4s ease;
  }
  &.enter-from-right { animation: enterFromRight 0.45s ease; }
  &.enter-from-left { animation: enterFromLeft 0.45s ease; }
}

@keyframes stepEnter {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enterFromRight {
  from {
    opacity: 0;
    transform: translateX(45px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes enterFromLeft {
  from {
    opacity: 0;
    transform: translateX(-45px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reg-step {
  color: var(--main-blue);
  font: 14px 'Helvetica Medium';
  line-height: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-title {
  color: var(--dark-blue);
  font: 26px 'Helvetica Bold';
  line-height: 39px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-group2 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  input {
    background: var(--bg-color1);
    border: 1px solid rgba(14, 109, 239, 0.12);
    border-radius: 12px;
    color: var(--text-color1);
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    padding-left: 16px;
    width: 100%; height: 48px;
    transition: all 0.3s ease;
    &:focus {
      outline: none;
      box-shadow: 0px 1px 12px 0px rgba(14, 109, 239, 0.04); 
    }
    &.invali { border-color: #d92d20; }
  }
}

.form-group2 label {
  color: var(--dark-blue);
  font: 12px 'Helvetica Medium';
  line-height: 18px;
}

.field-error {
  color: #d92d20;
  display: none;
  font: 10px 'BPG Mrgvlovani Caps 2010';
  line-height: 13px;
  &.show { display: block; }
}

.id-hint {
  color: var(--text-color1);
  font: 11px 'Helvetica Roman';
  line-height: 16px;
}

.next-btn {
  background: var(--main-blue);
  border: none;
  border-radius: 14px;
  color: white;
  font: 15px 'Helvetica Medium';
  line-height: 22px;
  width: min(100%, calc(100% - 112px)); height: 54px;
}

.form-navigation {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 24px;
  > .next-btn:only-child { width: 100% !important; }
}

.back-btn {
  background: transparent;
  border: 1px solid rgba(14, 109, 239, 0.15);
  border-radius: 14px;
  color: var(--text-color1);
  font: 14px 'Helvetica Medium';
  line-height: 21px;
  width: 100px; height: 54px;
  transition: all 0.3s ease;
  &:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
  }
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.terms-label {
  color: var(--text-color1);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  a { color: var(--main-blue); text-decoration: none; }
  input {
    border-radius: 5px;
    margin-top: 4px; 
    width: 18px; height: 18px;
  }
}

.step-one-only {
  overflow: hidden;
  opacity: 1;
  transition: all 0.35s ease;
}

.step-one-only.hidden {
  max-height: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}


.password-strength {
  display: none;
  margin-top: 10px;
  &.show {
    display: block;
    animation: strengthAppear 0.3s ease;
  }
}

@keyframes strengthAppear {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.strength-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 6px;
  span {
    background: #E2E8F0;
    border-radius: 20px;
    height: 4px;
    transition: all 0.3s ease;
  }
}

.strength-info {
  font: 11px 'Helvetica Roman';
  line-height: 16px;
  margin-bottom: 20px;
}

.password-requirements {
  color: var(--text-color);
  display: grid;
  gap: 6px;
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  margin: 0; padding: 0;
  list-style: none;
}

.password-requirements li {
  position: relative;
  padding-left: 17px;
  transition: color 0.2s ease;
  &.valid { color: #16803c; }
}

.password-requirements li::before {
  content: "○";
  position: absolute;
  left: 0; top: 0;
}
.password-requirements li.valid::before { content: "✓"; }


.password-strength.weak .strength-bars span:nth-child(1) { background: #d92d20; }
.password-strength.weak #strengthText { color: #d92d20; }

.password-strength.fair .strength-bars span:nth-child(-n + 2) { background: #F59E0B; }
.password-strength.fair #strengthText { color: #F59E0B; }

.password-strength.good .strength-bars span:nth-child(-n + 3) { background: #d3a000; }
.password-strength.good #strengthText { color: #a77f00; }

.password-strength.strong .strength-bars span { background: #16803c; }
.password-strength.strong #strengthText { color: #16803c; }

.success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 0 20px;
  > p:nth-child(2) {
    font: 30px 'Helvetica Bold';
    line-height: 35px;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    max-width: 225px;
    text-align: center;
    span:last-child { color: var(--main-blue); }
  }
  > p:nth-child(3) {
    color: var(--text-color1);
    font: 14px 'Helvetica Roman';
    line-height: 21px;
    margin-bottom: 32px;
    max-width: 420px;
    text-align: center;
  }
  a {
    background: var(--main-blue);
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font: 600 15px 'Noto Sans Georgian';
    line-height: 23px;
    padding: 16px 53px;
    transition: all 0.3s ease;
    &:hover { background: var(--dark-bg-color); }
  }
}

.success > div:first-child {
  background: rgba(14, 109, 239, 0.08);
  border-radius: 50%;
  width: 80px; height: 80px; 
  margin-bottom: 24px;
}

.success-circle, .success-check { fill: none; }

.success-circle {
  stroke-dasharray: 101;
  stroke-dashoffset: 101;
  animation: drawCircle 0.9s ease forwards;
}
.success-check {
  stroke-dasharray: 27;
  stroke-dashoffset: 27;
  animation: drawCheck 0.5s ease 0.85s forwards;
}

.success-icon { 
  overflow: visible;
  animation: iconPop 0.35s ease 1.25s both; 
}

@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

@keyframes iconPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.prices-page {
  padding: 50px 20px 90px;
  .content1 { max-width: 1150px; }
}

.tarifft-title {
  color: var(--text-color1);
  display: flex;
  align-items: center;
  gap: 24px;
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
  div {
    background: rgba(14, 109, 239, 0.08);
    width: calc(50% - 145px); height: 1px;
  }
}

.table-container {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
}

.prices-table {
  min-width: 1150px !important;
  margin-bottom: 0 !important;
}

.prices-table thead { background: var(--dark-blue); }
.prices-table thead th {
  background: transparent;
  text-transform: uppercase;
  padding: 16px 23px;
  &:first-child {
    color:rgba(255, 255, 255, 0.5);
    font: 11px 'Helvetica Medium';
    line-height: 18px;
    letter-spacing: 1.5px;
  }
  &:nth-child(2), &:nth-child(3) {
    color:white;
    font: 11px 'Helvetica Medium';
    line-height: 18px;
  }
  &:nth-child(3) { color: var(--main-blue); }
}

.prices-table tbody td {
  background: transparent;
  color: var(--dark-blue) !important;
  font: 14px 'Helvetica Medium';
  line-height: 21px;
  padding: 17px 23px;
}

.prices-table tbody th {
  background-color: transparent;
  color: var(--text-color);
  font: 14px 'Helvetica Roman';
  line-height: 20px;
  padding: 17px 23px;
}

.prices-table tr:nth-child(even) { background: var(--bg-color1); }

.prices-offer {
  color: var(--text-color1);
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  margin: 40px 0 0;
  text-align: center;
  a {
    color: var(--main-blue);
    text-decoration: none;
  }
}

.prices-service {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.prices-left {
  width: calc(100% - 380px);
}

.form-title {
  color: var(--text-color1);
  font: 14px 'Helvetica Medium';
  line-height: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-type {
  background: #F1F5F9;
  border-radius: 14px;
  display: flex;
  gap: 6px;
  padding: 4px;
  width: 240px; height: 50px;
  margin-bottom: 30px;
}

.service-type input[type="radio"], .notifications-type input[type="radio"],
.locker-sizes input[type="radio"], .amount-type input[type="radio"],
.parcel-filter input[type="radio"] { display: none; }

.service-type label {
  background: transparent;
  border-radius: 11px;
  color: var(--text-color1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px 'Helvetica Medium';
  line-height: 21px;
  transition: all 0.3s ease;
  user-select: none;
  width: calc(50% - 3px);
}

.service-type label:hover, .service-type input[type="radio"]:checked + label {
  background: var(--main-blue);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  color: white;
}

.service-type input[type="radio"]:focus-visible + label {
  outline: 2px solid var(--main-blue);
  outline-offset: 2px;
}

.billing-cont {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 340px;
}

.billing {
  background: var(--dark-bg-color);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 32px 32px 30px;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: radial-gradient(122.84% 105.42% at 80% 20%, rgba(14, 109, 239, 0.22) 0%, rgba(0, 0, 0, 0) 60%);
    width: 220px; height: 220px;
    position: absolute;
    top: 0; right: 0;
    z-index: 1;
  }
  > p:first-child {
    color: rgba(255, 255, 255, 0.5);
    font: 12px 'Helvetica Roman';
    line-height: 18px;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    text-transform: uppercase;
  }
  > hr {
    border-color: rgba(255, 255, 255, 0.08);
    opacity: 1;
    margin: 14px 0;
  }
}

.price-num {
  color: white;
  font: 40px 'Helvetica Bold';
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.locker-type {
  color: rgba(255, 255, 255, 0.4);
  font: 13px 'Helvetica Roman';
  line-height: 19px;
  margin-bottom: 20px;
}

.billing-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  span:first-child {
    color: rgba(255, 255, 255, 0.5);
    font: 13px 'Helvetica Roman';
    line-height: 19px;
  }
  span:nth-child(2) {
    color: white;
    font: 13px 'Helvetica Medium';
    line-height: 19px;
  }
}

.billing-info:last-of-type {
  span:first-child {
    color: white;
    font: 14px 'Helvetica Medium';
    line-height: 21px;
  }
  span:nth-child(2) {
    color: var(--main-blue);
    font: 18px 'Helvetica Medium';
    line-height: 27px;
  }
}

.billing-btn {
  background: var(--main-blue);
  border: 1px solid transparent;
  border-radius: 14px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 15px 'Helvetica Medium';
  line-height: 22px;
  text-decoration: none;
  margin-top: 25px;
  width: 100%; height: 55px;
  transition: all 0.3s ease;
  &:hover {
    background: rgba(14, 109, 239, 0.8);
    border: 1px solid var(--dark-blue);
  }
}

.price-offer1 {
  background: rgba(0, 212, 146, 0.08);
  border: 1px solid rgba(0, 212, 146, 0.2);
  border-radius: 14px;
  padding: 16px;
  p { margin-bottom: 0; }
  p:first-child {
    color: #00A86B;
    font: 13px 'Helvetica Medium';
    line-height: 20px;
  }
  p:nth-child(2) {
    color: var(--text-color1);
    font: 12px 'Helvetica Roman';
    line-height: 19px;
  }
}

.locker-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.locker-sizes label {
  background: transparent;
  border: 1px solid rgba(14, 109, 239, 0.15);
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 98px; height: 68px;
  user-select: none;
  transition: all 0.3s ease;
  span { transition: all 0.3s ease; }
  span:first-child {
    color: var(--dark-blue);
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    text-transform: uppercase;
  }
  span:nth-child(2) {
    color: var(--text-color1);
    font: 11px 'Helvetica Medium';
    line-height: 17px;
  }
}

.locker-sizes label:hover, .locker-sizes input[type="radio"]:checked + label {
  background: var(--main-blue);
  border-color: var(--main-blue);
  box-shadow: 0px 4px 16px 0px rgba(14, 109, 239, 0.3);
  span:first-child, span:nth-child(2) { color: white; }
}

.days-num {
  color: var(--main-blue);
  font: 16px 'Helvetica Medium';
  line-height: 24px;
  width: 70px; text-align: end;
  margin: -32px 0 7px auto;
}

.day-range {
  color: var(--text-color1);
  font: 11px 'Helvetica Roman';
  line-height: 17px;
  margin-bottom: 32px;
}

.included-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  > div {
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 12px;
    font: 13px 'Helvetica Roman';
    line-height: 20px;
  }
  > div > div {
    background: rgba(0, 212, 146, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
  }
}

.locations-page { 
  padding: 35px 20px 140px;
  .content1 > .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
    > div:first-child {
      p:first-child {
        color: var(--main-blue);
        font: 12px 'Helvetica Medium';
        line-height: 16px;
        letter-spacing: 2.4px;
        text-transform: uppercase;
        margin-bottom: 12px;
      }
      p:last-child {
        color: var(--dark-blue);
        font: 30px 'Helvetica Bold';
        line-height: 48px;
        margin-bottom: 0;
        text-transform: uppercase;
      }
    }
    > div:last-child {
      background: rgba(14, 109, 239, 0.07);
      border: 1px solid rgba(14, 109, 239, 0.19);
      border-radius: 6px;
      color: var(--main-blue);
      font: 14px 'Helvetica Medium';
      line-height: 20px;
      display: flex;
      gap: 6px;
      padding: 8px 16px;
    }
  }
}

.locations-page .search-location {
  grid-template-columns: 963fr 320fr;
  gap: 30px;
}

.cabinet-page { display: flex; }

.cabinet-nav-cont {
  background: var(--dark-bg-color);
  border-right: 1px solid rgba(74, 158, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding: 40px 12px;
  width: 240px; height: calc(100vh + 100px);
  position: sticky; top: 100px;
  hr {
    border-color: rgba(74, 158, 255, 0.1);
    margin: 0 0 12px;
    opacity: 1; width: 100%;
  }
}

.profile-owner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  min-width: 200px;
  > div:first-child {
    background: linear-gradient(135deg, #0E6DEF 0%, #0A46A3 100%);
    border-radius: 50%;
    color: white;
    font: 18px 'Helvetica Medium';
    line-height: 28px;
    width: 44px; height: 44px;
  }
  p:first-child {
    color: white;
    font: 14px 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 2px;
  }
  p:nth-child(2) {
    color: rgba(255, 255, 255, 0.45);
    font: 11px 'Helvetica Roman';
    line-height: 14px;
    margin-bottom: 0;
  }
}

.owner-balance {
  background: rgba(14, 109, 239, 0.12);
  border: 1px solid rgba(14, 109, 239, 0.2);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  margin-bottom: 45px;
  min-width: 200px;
  > * { position: relative; z-index: 2; }
  p:first-child {
    color: rgba(255, 255, 255, 0.45);
    font: 10px 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 10px;
  }
  p:nth-child(2) {
    color: white;
    font: 22px 'Helvetica Bold';
    line-height: 25px;
    margin-bottom: 10px;
  }
  a {
    background: var(--main-blue);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font: 11px 'Helvetica Medium';
    line-height: 17px;
    letter-spacing: 0.2px;
    width: 100%; height: 30px;
    transition: all 0.3s ease;
    &:hover { background: var(--hover-color); }
  }
  &::before {
    content: '';
    background: radial-gradient(141.42% 141.42% at 0% 0%, rgba(74, 158, 255, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    border-radius: 12px;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  margin-bottom: 40px;
}

.link, .link1 {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px; 
  transition: all 0.3s ease;
  width: 100%;
  img { 
    filter: grayscale(100%);
    transition: all 0.3s ease; 
  }
  > span {
    color: rgba(255, 255, 255, 0.6);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    transition: all 0.3s ease;
  }
  div:nth-child(3) {
    background: var(--main-blue);
    border-radius: 9px;
    color: white;
    font: 10px 'Helvetica Medium';
    line-height: 15px;
    padding: 1px 7px;
    margin-left: auto;
  }
}

.link.active, .link:hover {
  background: rgba(14, 109, 239, 0.15);
  border-color: rgba(14, 109, 239, 0.25);
  img { filter: unset; }
  span { color: #4A9EFF; }
}

.link1 { border-radius: 0; }
.link1.active, .link1:hover {
  background: var(--main-blue);
  img { filter: brightness(0) invert(1); }
  span { color: white !important; }
}

.link-children {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 28px;
}

.log-out {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 13px 'Helvetica Roman';
  line-height: 20px;
  padding: 10px 12px;
  width: 100%;
  transition: all 0.3s ease;
  margin-bottom: 100px;
  overflow-y: auto;
  svg {
    transform: rotate(180deg);
    fill: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
  }
  &:hover {
    color: var(--brand-red);
    svg { fill: var(--brand-red); }
  }
}

.logged-user { position: relative; }
.user-actions-toggle {
  background: var(--main-blue);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font: 14px 'Helvetica Medium';
  line-height: 20px;
  gap: 7px;
  width: 60px; height: 37px; 
}

.user-actions {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 16px;
  box-shadow: 0px 1px 24px 0px rgba(14, 109, 239, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: absolute;
  right: 0;
  top: 100%; width: 220px;
  transition: all 0.3s ease;
  z-index: 2000; 
}

.user-actions .profile-owner {
  border-bottom: 1px solid rgba(14, 109, 239, 0.07);
  padding: 14px 16px;
  margin-bottom: 0;
  div:first-child {
    background: var(--main-blue);
    font-size: 14px;
    line-height: 21px;
    width: 36px; height: 36px;
  }
  p:first-child { color: var(--dark-bg-color); }
  p:last-child { color: var(--text-color1); }
}

.link1 div:nth-child(2), .user-actions .log-out div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  span { transition: all 0.3s ease; }
  span:first-child {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
  }
  span:nth-child(2) {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
  }
}

.user-actions .log-out {
  border-top: 1px solid rgba(14, 109, 239, 0.07);
  margin-bottom: 0;
  svg { transform: unset; fill: var(--brand-red); }
  div span:first-child { color: var(--brand-red); }
}

.cabinet-container {
  background: #F1F5F9;
  padding: 18px 64px 150px 32px;
  width: calc(100% - 240px);
  > hr:nth-child(2) {
    border-color: rgba(14, 109, 239, 0.06);
    opacity: 1;
    margin: 18px 0 24px -32px;
    width: calc(100vw - 240px);  
  }
}

.cabinet-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 18px 'Helvetica Medium';
  line-height: 27px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  img { width: 18px; }
}

.cabinet-content { max-width: 1105px; }

.parcel-filter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.parcel-filter label {
  background: var(--bg-color1);
  border: 1px solid rgba(14, 109, 239, 0.07);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px; 
  width: 100%; height: 112px;
  user-select: none;
  transition: all 0.3s ease;
  padding: 20px;
  span { transition: all 0.3s ease; }
  span:first-child {
    color: var(--dark-blue);
    font: 28px 'Helvetica Bold';
    line-height: 28px;
  }
  span:nth-child(2) {
    color: var(--text-color);
    font: 12px 'Helvetica Medium';
    line-height: 18px;
  }
  span:nth-child(3) {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
  }
}

.parcel-filter label:hover, .parcel-filter input[type="radio"]:checked + label {
  background: var(--dark-bg-color);
  border-color: var(--dark-bg-color);
  span:first-child { color: #4A9EFF; }
  span:nth-child(2) { color: rgba(255, 255, 255, 0.7); }
}

.parcel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.parcel-card {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  > div:first-child {
    background: rgba(14, 109, 239, 0.07);
    border-radius: 12px;
    width: 48px; height: 48px;
  }
  .name {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 160px;
    span:first-child {
      color: var(--dark-blue);
      font: 14px 'Helvetica Medium';
      line-height: 21px;
    }
    span:nth-child(2) {
      color: var(--text-color1);
      font: 11px 'Helvetica Roman';
      line-height: 17px;
    }
  }
}

.parcel-card.taken .tag { margin-left: auto; }

.parcel-details {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-width: 250px;
  p:first-child {
    color: var(--text-color1);
    font: 10px 'Helvetica Roman';
    line-height: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  p:last-child {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 0;
  }
}

.parcel-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}

.loc-link {
  background: var(--main-blue);
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  box-shadow: 0px 4px 12px 0px rgba(14, 109, 239, 0.45);
  text-decoration: none;
  width: 40px; height: 40px;
}

.pay-link {
  background: var(--main-blue);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  position: relative;
  overflow: hidden;
  width: 92px; height: 40px;
}

.pay-link::after {
  content: "";
  position: absolute;
  top: -50%; left: -70%;
  width: 35%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(20deg);
  animation: glass-shine 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glass-shine {
  0% { left: -70%; }
  50%, 100% { left: 140%; }
}

.copyCode {
  background: linear-gradient(135deg, #3A3A3A 0%, #2A2A2A 100%);
  border: none;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  gap: 6px;
  width: 143px; height: 40px;
  img { filter: grayscale(100%); }
}

.copy-container {
  background: rgba(255,255,255,0.97);
  border-radius: 24px;
  border: 1px solid rgba(14, 109, 239, 0.18);
  box-shadow: 0px 2px 8px 0px rgba(14, 109, 239, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 28px;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, 120px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 400px;
  &.show {
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
  }
}

.close-copy-container {
  background: rgba(14, 109, 239, 0.06);
  border: 1px solid rgba(187, 216, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px; top: 16px;
  transition: all 0.3s ease;
  width: 30px; height: 30px;
  svg { fill: #BBD8FF; transition: all 0.3s ease; }
  &:hover {
    background: rgba(14, 109, 239, 0.2);
    transform: rotate(90deg) scale(1.17);
    svg { fill: rgba(14, 109, 239, 0.45); }
  }
}

.copy-container > div:nth-child(2) {
  background: linear-gradient(135deg, rgba(14, 109, 239, 0.1) 0%, rgba(74, 158, 255, 0.08) 100%);
  border: 1px solid rgba(14, 109, 239, 0.15);
  border-radius: 14px;
  width: 48px; height: 48px;
  margin-bottom: 14px;
  img { width: 21px; }
}

.copy-container > p:nth-child(3) {
  color: var(--dark-blue);
  font: 14px 'Helvetica Medium';
  line-height: 21px;
  margin-bottom: 4px;
  text-align: center;
  text-transform: uppercase;
}

.copy-container > p:nth-child(4) {
  color: var(--text-color1);
  font: 11px 'Helvetica Roman';
  line-height: 17px;
  margin-bottom: 28px;
}

.copy-container .auth-options {
  width: 100%;
  font-family: 'Helvetica Roman';
  div { width: calc(50% - 45px); }
}

.QR {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.18);
  border-radius: 22px;
  box-shadow: 0px 4px 20px 0px rgba(14, 109, 239, 0.1);
  padding: 10px;
  width: 168px; height: 168px;
  margin-bottom: 15px;
  img {
    border: 1px solid var(--main-blue);
    border-radius: 18px;
    padding: 28px;
  }
}

.copy-container > p:last-child {
  color: var(--text-color1);
  font: 10px 'Helvetica Roman';
  line-height: 15px;
  letter-spacing: 0.2px;
  text-decoration: none;
  margin-bottom: 0;
}

.copyCode1 {
  background: linear-gradient(135deg, #1D7CF0 0%, #0E6DEF 50%, #0A5ED4 100%);
  border: none;
  border-radius: 14px;
  color: white;
  gap: 7px;
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  width: 100%; height: 48px;
  margin-bottom: 24px;
}
 
#copiedCode {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
  span {
    background: linear-gradient(160deg, rgba(14, 109, 239, 0.05) 8.49%, rgba(14, 109, 239, 0.02) 91.51%);
    box-shadow: 0px 2px 10px 0px rgba(14, 109, 239, 0.12);
    border: 1px solid var(--main-blue);
    border-radius: 12px;
    color: var(--main-blue);
    text-align: center;
    padding: 12px 5px;
    font: 700 28px 'Noto Sans Georgian';
    line-height: 28px;
  }
}

.notifications-type {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.notifications-type label {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 20px;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  transition: all 0.3s ease;
  user-select: none;
  padding: 6px 14px;
}

.notifications-type label:hover, .notifications-type input[type="radio"]:checked + label {
  background: var(--main-blue);
  border-color: var(--main-blue);
  color: white;
}

.read-all {
  background: transparent;
  border: none;
  color: var(--main-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  margin: -45px 0 25px auto;
}

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  button {
    background: white;
    border-radius: 5px;
    border: 1px solid var(--light-blue);
    color: var(--main-blue);
    cursor: pointer;
    font: 12px 'BPG Mrgvlovani'; 
    line-height: 16px;
    width: 30px; height: 30px;
    transition: all 0.3s ease;
    &:hover, &.active {
      background: var(--main-blue);
      border-color: var(--main-blue);
      color: white;
    }
  }
}

.noti-card {
  background: rgba(14, 109, 239, 0.03);
  border: 1px solid rgba(14, 109, 239, 0.2);
  border-radius: 16px;
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px 16px 18px;
  transition: all 0.3s ease;
}

.noti-card.visited {
  background: white;
  border-color: white;
  opacity: 1;
  > div:first-child { background: #ECF4FE; }
  .new-noti { display: none; }
}

.noti-card > div:first-child {
  background: white;
  border-radius: 12px;
  width: 44px; height: 44px;
  transition: all 0.3s ease;
}

.noti-card .desc {
  width: calc(100% - 180px);
  p:first-child {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 2px;
  }
  p:nth-child(2) {
    color: var(--text-color);
    font: 12px 'Helvetica Roman';
    line-height: 19px;
    margin-bottom: 2px;
  }
}

.new-noti {
  color: var(--main-blue);
  font: 10px 'Helvetica Roman';
  line-height: 15px;
  margin-left: 8px;
}

.noti-card .time {
  color: var(--text-color1);
  font: 11px 'Helvetica Roman';
  line-height: 17px;
  margin: 0 0 0 auto;
}

.delete-noti {
  background: transparent;
  border: none;
  color: var(--text-color1);
  font-size: 18px;
  margin-top: -4px;
  width: 24px; height: 24px;
}

.tag {
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font: 11px 'Helvetica Roman';
  line-height: 15px;
  padding: 4px 10px;
  div {
    border-radius: 50%;
    width: 6px; height: 6px;
  }
}

.tag1 { background: rgba(14, 109, 239, 0.08); color: var(--main-blue); div { background: var(--main-blue); } }
.tag2 { background: rgba(245, 158, 11, 0.08); color: #D97706; div { background: #D97706; } }
.tag3 { background: rgba(34, 197, 94, 0.08) ; color: #16A34A; div { background: #16A34A; } }
.tag4 { background: rgba(168, 85, 247, 0.08); color: #9333EA; div { background: #9333EA; } }
.tag5 { background: rgba(100, 116, 139, 0.08); color: var(--text-color); div { background: var(--text-color); } }
.tag6 { background: rgba(239, 68, 68, 0.08); color: var(--brand-red); div { background: var(--brand-red); } }
.tag7 { background: var(--main-blue); color: white; }


.noti-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px; 
  margin-bottom: 24px;
}

.go-back {
  color: var(--dark-bg-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  transition: all 0.3s ease;
  &:hover { color: var(--hover-color); }
}

.noti-actions div {
  display: flex;
  align-items: center;
  gap: 4px;
  > * {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  button {
    background: white;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    color: var(--brand-red);
    font: 11px 'helvetica Medium';
    line-height: 17px;
    gap: 6px;
    width: 83px; height: 34px;
    img { transition: all 0.3s ease; }
    &:hover {
      background: var(--brand-red);
      color: white;
      img { filter: brightness(0) invert(1); }
    }
  }
}

.noti-actions div a {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.15);
  border-radius: 10px;
  color: var(--dark-bg-color);
  text-decoration: none;
  font-size: 10px;
  width: 34px; height: 34px;
  &:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: white;
  }
}

.curr-noti {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.noti-left {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.08);
  border-radius: 20px;
  width: 820px;
  padding: 30px 34px 65px 28px;
  position: relative; overflow: hidden;
  &::before {
    content: '';
    background: var(--main-blue);
    height: 6px; width: 100%;
    position: absolute;
    top: 0; left: 0;
  }
}

.noti-left .head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  > div:first-child {
    background: #ECF4FE;
    border-radius: 16px;
    width: 56px; height: 56px;
    img { width: 23px; }
  }
  > div:nth-child(2) span:nth-child(2) {
    color: var(--text-color1);
    font: 10px 'Helvetica Roman';
    line-height: 15px;
    margin-left: 8px;
  }
  .name {
    color: var(--dark-bg-color);
    font: 20px 'Helvetica Bold';
    line-height: 26px;
    margin: 2px 0 0;
  }
  .tag { display: inline; }
}

.noti-left .intro {
  background: var(--bg-color1);
  border: 1px solid rgba(14, 109, 239, 0.06);
  border-radius: 14px;
  color: var(--dark-blue);
  font: 14px 'Helvetica Roman';
  line-height: 25px;
  padding:  18px 20px;
  margin-bottom: 24px;
}

.noti-left > p:nth-child(3) {
  color: var(--dark-bg-color);
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  margin-bottom: 12px;
}

.noti-left ul {
  list-style: none;
  margin: 0;
  padding: 0;
  li {
    border-bottom: 1px solid rgba(14, 109, 239, 0.06);
    padding: 11px 0;
  }
  li:first-child span:last-child { color: var(--main-blue); }
}

.noti-left ul li, .metadata div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  span:first-child {
    color: var(--text-color);
    font: 12px 'Helvetica Roman';
    line-height: 18px;
  }
  span:nth-child(2) {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
  }
}

.noti-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: calc(100% - 840px);
  > div {
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    > p {
      color: var(--dark-bg-color);
      font: 12px 'Helvetica Medium';
      line-height: 18px;
      margin-bottom: 0;
    }
  }
}

.other-noti a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  position: relative;
  div:first-child {
    background: rgba(14, 109, 239, 0.08);
    border-radius: 9px;
    width: 32px; height: 32px;
    img { width: 18px; }
  }
  div:nth-child(2) { width: calc(100% - 45px); }
  p { margin-bottom: 0; }
  p:first-child {
    color: var(--dark-bg-color);
    font: 12px 'Helvetica Roman';
    line-height: 18px;
  }
  p:nth-child(2) {
    color: var(--text-color1);
    font: 10px 'Helvetica Roman';
    line-height: 15px;
  }
}

.other-noti a.unread {
  p:first-child { font-family: 'Helvetica Medium'; }
  &::after {
    content: '';
    background: var(--main-blue);
    border-radius: 50%;
    width: 7px; height: 7px;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
  }
}

.deleteModal h1 {
  color: var(--dark-bg-color);
  font: 18px 'Helvetica Bold';
  line-height: 24px;
  text-transform: uppercase;
}

.deleteModal button {
  font: 13px 'Helvetica Medium';
  line-height: 19px;
  text-transform: uppercase;
}

.promo-code-info {
  background: #ECF4FE;
  border: 1px solid var(--main-blue);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px;
  margin-bottom: 24px;
  p { margin-bottom: 0; text-align: center; }
  p:first-child {
    color: var(--main-blue);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
  }
  p:nth-child(2) {
    color: var(--main-blue);
    font: bold 26px 'Noto Sans Georgian';
    line-height: 39px;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  p:nth-child(3) {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
  }
  a:last-child {
    background: rgba(14, 109, 239, 0.1);
    border-radius: 7px;
    color: var(--main-blue);
    text-decoration: none;
    font: 10px 'Helvetica Medium';
    line-height: 15px;
    padding: 4px 8px;
  }
}

.copy-code {
  background: var(--main-blue);
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  width: 100%; height: 44px;
  transition: all 0.3s ease;
  &:hover { background: var(--hover-color); }
}

.personal-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  > div {
    background: white;
    border: 1px solid rgba(14, 109, 239, 0.1);
    border-radius: 20px;
    padding: 24px;
    > p:first-child {
      color: var(--dark-blue);
      font: 15px 'Helvetica Medium';
      line-height: 23px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
  }
  .common-form > div { max-width: 660px; margin-bottom: 16px; }
  button {
    background: var(--main-blue);
    border: none;
    border-radius: 12px;
    color: white;
    font: 14px 'Helvetica Medium';
    line-height: 21px;
    width: 122px; height: 49px;
    transition: all 0.3s ease;
    &:hover { background: var(--hover-color); }
  }
}

#tel-hint {
  color: var(--text-color1);
  font: 11px 'Helvetica Roman';
  line-height: 17px;
  margin: 8px 0 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
  input { opacity: 0; width: 0; height: 0; }
} 
  
.slider1 {
  background: #E2E8F0;
  border-radius: 12px;
  cursor: pointer;
  position: absolute;
  inset: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
  
.slider1::before {
  content: '';
  background: white;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  width: 20px; height: 20px;
  left: 2px; bottom: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
  
input:checked + .slider1::before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
}

input:checked + .slider1 { background: var(--main-blue); }

.push-noti {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 450px;
  p:first-child {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 2px;
  }
  p:last-child {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 0;
  }
}

.pass-change-link {
  color: var(--main-blue);
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  &:hover { color: var(--hover-color); }
}

.payment-details {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  > div {
    background: white;
    border: 1px solid rgba(14, 109, 239, 0.08);
    border-radius: 16px;
    padding: 18px 20px;
    width: 300px;
    div {
      background: rgba(14, 109, 239, 0.07);
      border-radius: 10px;
      width: 38px; height: 38px;
      margin-bottom: 12px;
    }
    p:nth-child(2) {
      color: var(--dark-blue);
      font: bold 20px 'Noto Sans Georgian';
      line-height: 30px;
      margin-bottom: 2px;
    }
    p:nth-child(3) {
      color: #475569;
      font: 12px 'Helvetica Medium';
      line-height: 18px;
      margin-bottom: 2px;
    }
    p:nth-child(4) {
      color: var(--text-color1);
      font: 11px 'Helvetica Roman';
      line-height: 17px;
      margin-bottom: 0;
    }
  }
}

.user-cards {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.08);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  margin-bottom: 20px;
  .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    p:first-child {
      color: var(--dark-bg-color);
      font: 15px 'Helvetica Medium';
      line-height: 23px;
      margin-bottom: 2px;
    }
    p:last-child {
      color: var(--text-color1);
      font: 12px 'Helvetica Roman';
      line-height: 18px;
      margin-bottom: 0;
    }
  }
}

.add-card-btn {
  background: var(--main-blue);
  border-radius: 12px;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  width: 175px; height: 35px;
  transition: all 0.3s ease;
  &:hover { background: var(--hover-color); }
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-item {
  background: var(--dark-bg-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  div:first-child {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    width: 56px; height: 48px;
    img { width: 35px; }
  }
  div:nth-child(2) { width: calc(100% - 130px); }
  p:first-child {
    color: white;
    font: 600 14px 'Noto Sans Georgian';
    line-height: 21px;
    margin-bottom: 2px;
  }
  p:nth-child(2) {
    color: rgba(255, 255, 255, 0.4);
    font: 11px 'Noto Sans Georgian';
    line-height: 17px;
    margin-bottom: 0;
  }
}

.card-item button {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  cursor: pointer;
  width: 34px; height: 34px;
  transition: all 0.3s ease;
  img { transition: all 0.3s ease; }
  &:hover { 
    background: var(--brand-red);
    img { filter: brightness(0) invert(1); }
  }
}

.transaction-history {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 20px;
  margin-bottom: 20px;
  .notifications-type { margin-bottom: 0; }
  .head { padding: 24px; }
  .head > span {
    color: var(--dark-blue);
    font: 14px 'Helvetica Medium';
    line-height: 21px;
  }
  > hr {
    border-color: rgba(14, 109, 239, 0.1);
    opacity: 1;
    margin: 0;
  }
}

.transaction-item {
  border-bottom: 1px solid rgba(14, 109, 239, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  > div:first-child {
    background: rgba(14, 109, 239, 0.07);
    border-radius: 50%;
    width: 38px; height: 38px;
    svg { stroke: var(--main-blue); }
  }
  &:last-child { border-bottom: none; }
}

.transaction-item > div:nth-child(2) {
  width: calc(100% - 160px);
  p:first-child {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 2px;
  }
  p:nth-child(2) {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 0;
  }
}

.transaction-item > div:nth-child(3) {
  margin-left: auto;
  text-align: end;
  p:first-child {
    color: var(--dark-blue);
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    margin-bottom: 2px;
  }
  p:last-child {
    color: var(--text-color1);
    font: 10px 'Helvetica Roman';
    line-height: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0;
  }
}

.transaction-item.returned {
  > div:first-child {
    background: rgba(34, 197, 94, 0.1);
    svg { transform: rotate(180deg); stroke: #16A34A; }
  }
  > div:last-child p:first-child { color: #16A34A; }
}

.transaction-item.canceled {
  > div:first-child {
    background: rgba(239, 68, 68, 0.1);
    svg { fill: var(--brand-red); }
  }
  > div:last-child p:first-child { color: var(--brand-red); }
}

#export {
  background: transparent;
  border: none;
  color: var(--main-blue);
  cursor: pointer;
  display: flex;
  margin-left: auto;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  &:hover { color: var(--hover-color) }
}

.new-card-form, .new-locker-form {
  background: var(--bg-color1);
  border: 1px solid rgba(14, 109, 239, 0.08);
  border-radius: 12px;
  padding: 16px;
  .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font: 12px 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 14px;
    span:first-child { color: var(--dark-bg-color); }
  }
  > button {
    background: var(--main-blue);
    border-radius: 10px;
    border: none;
    color: white;
    font: 13px 'Helvetica Roman';
    line-height: 17px;
    width: 140px; height: 40px;
    transition: all 0.3s ease;
    &:hover { background: var(--hover-color); }
  }
}

.new-card-form .head button:not(.open-saved-cards),
.new-locker-form .head button {
  background: rgba(239, 68, 68, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  svg { fill: var(--brand-red); }
}

.new-card-form > div:not(.head, .card-item),
.new-locker-form > div:not(.head, .add-locker-btns) {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  position: relative;
  img {
    background: white;
    position: absolute;
    top: 36px; right: 8px;
    z-index: 2;
    width: 25px;
  }
}

.new-card-form label, .new-locker-form label {
  color: #475569;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  margin-bottom: 6px;
  span { color: var(--brand-red); }
}

.new-card-form input, .new-locker-form input {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.15);
  border-radius: 10px;
  color: rgba(0,0,0,0.5);
  font: 13px 'Helvetica Roman';
  line-height: 20px;
  padding: 0 10px 0 13px;
  width: 100%; height: 40px;
  &:focus { outline: none; }
}

.user-cards .new-card-form {
  display: none;
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  width: calc(100% - 40px);
  &.active { display: block; }
}

.balance-page {
  display: flex;
  gap: 30px;
  > * { width: calc(50% - 15px); }
}

.balance-right {
  background: linear-gradient(135deg, #0A1628 0%, #0E3D7A 60%, #0E6DEF 100%);
  border-radius: 24px;
  box-shadow: 0px 12px 40px 0px rgba(14, 109, 239, 0.25);
  padding: 32px 32px 85px;
  position: sticky;
  top: 120px;
  p:first-child {
    color: rgba(255,255,255,0.5);
    font: 12px 'Helvetica Medium';
    line-height: 18px;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  p:nth-child(2) {
    color: white;
    font: 44px 'Helvetica Bold';
    line-height: 44px;
    margin-bottom: 10px;
  }
  p:nth-child(3) {
    color: rgba(255,255,255,0.4);
    font: 12px 'Helvetica Roman';
    line-height: 18px;
    margin-bottom: 0;
  }
}

.balance-form {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  > div:first-child p:first-child {
    color: var(--dark-bg-color);
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    margin-bottom: 4px;
  }
  > div:first-child p:nth-child(2) {
    color: var(--text-color1);
    font: 12px 'Helvetica Roman';
    line-height: 18px;
    margin-bottom: 0;
  }
}

.balance-form label {
  color: #475569;
  font: 11px 'Helvetica Medium';
  line-height: 17px;
  margin-bottom: 8px;
}

.amount-input {
  display: flex;
  flex-direction: column;
  input {
    background: var(--bg-color1);
    border: 1px solid rgba(14, 109, 239, 0.15);
    border-radius: 10px;
    color: rgba(10, 22, 40, 0.5);
    font: 18px 'Helvetica Medium';
    line-height: 23px;
    padding-left: 30px;
    width: 100%; height: 52px;
    &:focus { outline: none; }
  }
}

.amount-type {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 8px;
}

.amount-type label {
  background: var(--bg-color1);
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 10px;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  transition: all 0.3s ease;
  user-select: none;
  padding: 8px 10px;
  margin-bottom: 0;
}

.amount-type label:hover, .amount-type input[type="radio"]:checked + label {
  background: var(--main-blue);
  border-color: var(--main-blue);
  color: white;
}

.method-buttons {
  display: flex;
  gap: 8px;
}

.method-buttons button {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 14px;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font: 11px 'Helvetica Medium';
  line-height: 17px;
  width: calc(50% - 4px); height: 56px;
  transition: all 0.3s ease;
  img { width: 18px; filter: grayscale(100%); transition: all 0.3s ease; } 
  &.active {
    background: var(--main-blue);
    border-color: var(--main-blue);
    color: white;
    img { filter: brightness(0) invert(1); }
  }
}

.bank-btn {
  border-radius: 14px;
  border: none;
  color: white;
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  text-transform: uppercase;
  width: 100%; height: 48px;
}

.card-types {
  display: flex;
  flex-direction: column;
  gap: 8px;
  label {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    width: calc(100% - 26px);
    > div {
      border-radius: 4px;
      width: 34px; height: 22px;
    }
    > span {
      color: var(--dark-blue);
      font: 13px 'Helvetica Medium';
      line-height: 20px;
    }
    > img {
      display: none;
      margin-left: auto;
    }
  }
}

.card-types > div {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}
.card-types > div:has(input:checked) {
  background: rgba(14, 109, 239, 0.04);
  border: 1px solid var(--main-blue);
  label > img { display: unset; }
}

.visa-type label > div {
  background: #1A56DB;
  img {
    filter: brightness(0) invert(1);
    width: 25px;
  }
}
.mastercard-type label > div { background: #252525; }

.pay-with-new-card {
  background: transparent;
  border: 1px dashed rgba(14, 109, 239, 0.3);
  border-radius: 12px;
  color: var(--main-blue);
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  width: 100%; height: 44px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  &:hover { border-color: var(--hover-color); }
}

.send-page {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.send-form { width: calc(100% - 284px); }

.send-steps {
  display: flex;
  align-items: center;
  gap: 8px; 
  margin-bottom: 20px;
  > div {
    display: flex;
    align-items: center;
    gap: 6px;
    div {
      background: rgba(14, 109, 239, 0.1);
      border-radius: 50%;
      color: var(--text-color1);
      font: 700 10px 'Noto Sans Georgian';
      line-height: 15px;
      width: 20px; height: 20px;
    }
    span {
      color: var(--text-color1);
      font: 12px 'Helvetica Roman';
      line-height: 18px;
    }
  }
  i { color: #CBD5E1; font-size: 10px; }
}

.send-steps > div.active {
  div { background: var(--main-blue); color: white; }
  span { color: var(--main-blue); } 
}

.send-steps > div.done {
  div { background: #22C55E; }
  span { color: #22C55E; } 
  img { filter: brightness(0) invert(1); }
}

.send-block {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 16px;
  &:last-child { margin-bottom: 0; }
  .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    span {
      color: var(--dark-bg-color);
      font: 15px 'Helvetica Medium';
      line-height: 22px;
      white-space: nowrap;
    }
    div {
      background: rgba(14, 109, 239, 0.1);
      height: 1px;
      flex: 1;
    }
  }
}

.send-type > div:nth-child(2) {
  display: flex;
  gap: 12px;
  > div { width: calc(50% - 6px); }
}

.send-type-card {
  background: var(--bg-color1);
  border: 2px solid #D5E5FA;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px;
}

.send-type-card:has(input:checked) {
  border-color: var(--main-blue);
  label {
    img { filter: unset; } 
    p:nth-child(3) { color: var(--main-blue); }
  }
}

.send-type-card label {
  cursor: pointer;
  width: calc(100% - 30px);
  img {
    filter: grayscale(100%);
    margin-bottom: 8px;
  }
  p:nth-child(2) {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 2px;
  }
  p:nth-child(3) {
    color: #475569;
    font: 12px 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 0;
  }
}

#size-block, #sender-fields, #terms-fields,
#receiver-fields, #receiver-locker-section { display: none; }

#size-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.size-card, .size-card label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.size-card {
  background: var(--bg-color1);
  border: 2px solid rgba(14, 109, 239, 0.12);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.size-card:has(input:checked) {
  background: rgba(14, 109, 239, 0.04);
  border-color: var(--main-blue);
  label > div:first-child {
    background: rgba(14, 109, 239, 0.1);
    img { filter: unset; }
  }
}

.size-card label {
  cursor: pointer;
  width: calc(100% - 34px);
  > div:first-child {
    background: rgba(14, 109, 239, 0.05);
    border-radius: 8px;
    width: 36px; height: 36px;
    transition: all 0.3s ease;
    img { filter: grayscale(100%); transition: all 0.3s ease; }
  }
  > div:nth-child(2) { width: calc(100% - 127px); } 
  .title {
    color: var(--dark-bg-color);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
  }
  .dimensions {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
  }
  .price {
    color: var(--dark-blue);
    font: 16px 'Helvetica Medium';
    line-height: 24px;
    transition: all 0.3s ease;
    margin-left: auto;
  }
}

.send-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.send-fields label {
  color: #475569;
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  margin-bottom: 6px;
  span { color: var(--brand-red); }
}

.send-fields input:not([type="radio"]):not([type="checkbox"]), .locker-toggle {
  background: var(--bg-color1);
  border: 1px solid rgba(14, 109, 239, 0.15);
  border-radius: 10px;
  color: rgba(30, 41, 59, 0.5);
  font: 13px 'Helvetica Roman';
  line-height: 20px;
  padding-left: 13px;
  width: 100%; height: 40px !important;
  &:focus { outline: none; }
}

.send-fields .phone-cont div {
  border-radius: 10px;
  height: 40px;
  span:last-child { font-size: 12px; }
}

.check {
  background: transparent;
  border: 1px solid #767676;
  border-radius: 2px;
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition: all 0.3s ease;
  position: relative;
  width: 16px; height: 16px;
  overflow: hidden;
}

.check:checked {
  background: var(--dark-bg-color);
  border-color: var(--dark-bg-color);
  &::after {
    content: '';
    border: solid white;
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 2px; left: 5px;
    width: 5px; height: 9px;
    transform: rotate(45deg);
  }
}

.locker-selector { position: relative; }
.locker-toggle {
  cursor: pointer;
  padding: 0 13px;
  i { color: var(--text-color1); font-size: 12px; }
}

.sender-locker-list {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.15); 
  border-radius: 14px;
  box-shadow: 0px 8px 32px 0px rgba(10, 22, 40, 0.12);
  display: none;
  width: 100%; 
  padding: 10px;
  position: absolute;
  left: 0; top: 75px;
  z-index: 2;
  > div:first-child { margin-bottom: 15px; }
  > div:first-child span {
    color: var(--text-color1);
    font: 10px 'Helvetica Roman';
    line-height: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
  > div:first-child button {
    background: rgba(239, 68, 68, 0.3);
    border: none;
    border-radius: 50%;
    width: 24px; height: 24px;
    svg { fill: var(--brand-red); }
  }
}

.sender-locker-list.active { display: block; }
.locker-item, .locker-item label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.locker-item { border-radius: 12px; padding: 12px 20px 12px 12px; }
.locker-item:has(input:checked) {
  background: rgba(14, 109, 239, 0.06);
}

.locker-item label {
  cursor: pointer;
  width: calc(100% - 28px);
  > div:first-child {
    background: rgba(14, 109, 239, 0.05);
    border-radius: 8px;
    width: 34px; height: 34px;
  }
  p:first-child {
    color: var(--dark-bg-color);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 2px;
  }
  p:last-child {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 0;
  }
  button {
    background: transparent;
    border: none;
    margin-left: auto;
  }
}

#terms-fields label {
  color: #475569;
  font: 12px 'Helvetica Roman';
  line-height: 20px;
  a { color: var(--main-blue); }
}

#terms-fields hr {
  border-color: rgba(14, 109, 239, 0.07);
  opacity: 1;
  margin: 12px 0;
}

#terms-fields > p {
  color: var(--text-color1);
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  margin-bottom: 10px;
}

.summary-cont {
  border-radius: 16px;
  width: 260px;
}

.summary { position: sticky; top: 120px; }

.summary .head {
  background: var(--dark-bg-color);
  border-radius: 16px 16px 0 0;
  padding: 16px 20px;
  p:first-child {
    color: rgba(255,255,255,0.5);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
  p:nth-child(2) {
    color: white;
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 0;
  }
}

.summary-body {
  background: white;
  border-radius: 0 0 16px 16px;
  padding: 20px;
  > button {
    background: var(--hover-color);
    border-radius: 12px;
    border: none;
    color: white;
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    width: 100%; height: 44px;
    margin: 20px 0 8px;
  }
  > p:last-child {
    color: var(--text-color1);
    text-align: center;
    font: 10px 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 0;
  }
}

.chosen-parcel {
  border-bottom: 1px solid rgba(14, 109, 239, 0.07);
  display: flex;
  padding-bottom: 12px;
  margin-bottom: 12px;
  p:first-child, p:nth-child(3) {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    margin: 0;
  }
  p:nth-child(2) {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    margin: 2px 0;
  }
  > span {
    color: var(--main-blue);
    font: 700 14px 'Noto Sans Georgian';
    line-height: 21px;
  }
}

.summary-info {
  display: flex;
  span:first-child {
    color: var(--dark-bg-color);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
  }
  span:last-child {
    color: var(--main-blue);
    font: 700 18px 'Noto Sans Georgian';
    line-height: 27px;
  }
}

.summary-info1 {
  border-bottom: 1px solid rgba(14, 109, 239, 0.07);
  display: flex;
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  span:first-child { color: var(--text-color); }
  span:last-child {
    color: var(--dark-blue);
    font-family: 'Helvetica Medium';
  }
}

.discount-code-check {
  display: flex;
  label {
    color: var(--text-color);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
  }
}

.discount-code-check:has(input:checked) + .discount-code-input {
  display: block;
}

.discount-code-input {
  background: var(--bg-color1);
  border-radius: 10px;
  border: 1px solid rgba(14, 109, 239, 0.15);
  color: rgba(30, 41, 59, 0.5);
  display: none;
  font: 12px 'Helvetica Roman';
  line-height: 18px;
  padding-left: 12px;
  width: 100%; height: 40px;
  &:focus { outline: none; }

}

.send-history { margin-bottom: 40px; }
.send-history .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  .notifications-type, > p { margin-bottom: 0; }
  p { gap: 12px; }
  p span:first-child {
    color: var(--dark-bg-color);
    font: 15px 'Helvetica Medium';
    line-height: 23px;
  }
  p span:last-child {
    background: rgba(14, 109, 239, 0.1);
    border-radius: 11px;
    font: 700 11px 'Noto Sans Georgian';
    line-height: 17px;
    color: var(--main-blue);
    padding: 2px 8px;
  }
}

.order-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  div {
    border-bottom: 1px solid rgba(14, 109, 239, 0.06);
    padding: 10px 0;
  }
  span:first-child {
    color: var(--text-color);
    font: 12px 'Helvetica Roman';
    line-height: 18px;
  }
  span:last-child {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
  }
}

.order-details + a {
  color: var(--main-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  transition: all 0.3s ease;
  &:hover { color: var(--hover-color); }
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.payment-methods > div, .payment-methods label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-methods > div {
  background: var(--bg-color1);
  border-radius: 12px;
  border: 2px solid rgba(14, 109, 239, 0.12);
  padding: 13px 16px;
  p:first-child {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 2px;
  }
  p:last-child {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 0;
  }
}

.payment-methods > div:has(input:checked) {
  background: rgba(14, 109, 239, 0.04);
  border-color: var(--main-blue);
}

.payment-methods label {cursor: pointer; width: calc(100% - 32px); }
.payment-methods label div { width: calc(100% - 30px); }

.payment-content {
  background: rgba(14, 109, 239, 0.04);
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 12px;
  padding: 14px;
  display: none;
  animation: fade .25s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#bank-content {
  p {
    color: var(--dark-blue);
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 10px;
  }
  div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  button {
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(14, 109, 239, 0.12);
    color: var(--dark-blue);
    font: 12px 'Helvetica Medium';
    line-height: 18px;
    transition: all 0.3s ease;
    height: 36px;
    &:hover { color: white; }
  }
  button:first-child:hover { background: #00A3E0; border-color: #00A3E0; }
  button:nth-child(2):hover { background: #FC671A;; border-color: #FC671A;; }
  button:last-child:hover { background: #2A2A2A; border-color: #2A2A2A; }
}

#card-content { 
  position: relative; 
  > p:first-child {
    color: var(--dark-bg-color);
    font: 12px 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 12px;
  }
}

.payment-content .new-card-form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.successful-send {
  display: flex;
  flex-direction: column;
  align-items: center;
  > p:nth-child(2) {
    color: var(--dark-bg-color);
    font: 20px 'Helvetica Bold';
    line-height: 30px;
    margin-bottom: 6px;
  }
  > p:nth-child(3) {
    color: var(--text-color);
    font: 13px 'Helvetica Roman';
    line-height: 20px;
    margin-bottom: 24px;
  }
} 

.successful-send > div:first-child {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  width: 72px; height: 72px;
  margin-bottom: 20px;
}

.checkmark path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw-check 0.8s ease forwards;
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

.successful-send .promo-code-info {
  background: var(--bg-color);
  border: 1px dashed rgba(14, 109, 239, 0.25);
  width: 100%;
  p:first-child {
    color: var(--text-color);
    text-transform: uppercase;
  }
  .copy-code {
    background: transparent;
    color: var(--main-blue);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
  }
}

.successful-send .order-details {
  background: var(--bg-color1);
  border: 1px solid rgba(14, 109, 239, 0.08);
  border-radius: 12px;
  width: 100%; gap: 0;
  margin-bottom: 24px;
  > div { padding: 11px 16px; }
}

.next-steps {
  width: 100%;
  margin-bottom: 24px;
  > p {
    color: var(--dark-bg-color);
    font: 12px 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 12px;
  }
  > div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    &:last-child { margin-bottom: 0; }
    div {
      background: rgba(14, 109, 239, 0.08);
      border-radius: 13px;
      color: var(--main-blue);
      font: 700 11px 'Noto Sans Georgian';
      line-height: 17px;
      padding: 3px 8px;
    }
    span {
      color: #475569;
      font: 12px 'Helvetica Roman';
      line-height: 18px;
    }
  }
}

.final-step-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  a {
    border-radius: 12px;
    text-decoration: none;
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    transition: all 0.3s ease;
    height: 44px;
    &:hover {
      background: var(--hover-color) !important;
      border-color: var(--hover-color) !important;
      color: white !important;
    }
  }
  a:first-child {
    border: 1px solid rgba(14, 109, 239, 0.1);
    color: var(--main-blue);
  }
  a:last-child {
    background: var(--main-blue);
    color: white;
  }
}

.my-locker-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  > div {
    background: white;
    border: 1px solid rgba(14, 109, 239, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 20px;
    img { width: 20px; }
    p { margin-bottom: 0; }
    p:nth-child(2) {
      color: var(--dark-blue);
      font: 18px 'Helvetica Medium';
      line-height: 27px;
    }
    p:last-child {
      color: var(--text-color);
      font: 12px 'Helvetica Roman';
      line-height: 18px;
    }
  }
}

.locker-page {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.my-locker-form {
  position: relative;
  width: calc(100% - 304px);
  .head {
    margin-bottom: 16px;
    > span {
      color: var(--dark-bg-color);
      font: 14px 'Helvetica Medium';
      line-height: 21px;
    }
  }
}

.add-new-locker-btn {
  background: var(--main-blue);
  border: none;
  border-radius: 12px;
  color: white;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  width: 153px; height: 34px;
  transition: all 0.3s ease;
  &:hover { background: var(--hover-color); }
}

.locker-card {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 12px;
  &:last-child { margin-bottom: 0; }
  > div:first-child {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    > div:first-child {
      background: rgba(14, 109, 239, 0.05);
      border-radius: 12px;
      width: 45px; height: 45px;
      img { filter: grayscale(100%); }
    }
  }
  hr {
    border-color: rgba(14, 109, 239, 0.06);
    margin: 16px 0;
    opacity: 1;
  }
}

.main-locker-card {
  border-color: rgba(14, 109, 239, 0.3);
  position: relative;
  .tag {
    position: absolute;
    top: 14px; right: 25px;
  }
  > div:first-child > div:first-child {
    background: rgba(14, 109, 239, 0.1);
    img { filter: unset; } 
  }
}

.locker-det {
  width: calc(100% - 61px);
  p:first-child {
    color: var(--dark-blue);
    font: 14px 'Helvetica Medium';
    line-height: 21px;
    margin-bottom: 4px;
  }
  p:nth-child(2), p:nth-child(4) {
    color: var(--text-color);
    font: 12px 'Helvetica Roman';
    line-height: 18px;
    margin-bottom: 2px;
  }
  p:nth-child(3) {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 4px;
  }
  p:nth-child(4) { margin-bottom: 10px; }
  p:nth-child(5) {
    color: var(--text-color1);
    font: 10px 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 0;
    span:nth-child(even) { color: var(--text-color); margin-right: 10px; }
  }
}

.locker-card-actions {
  display: flex;
  gap: 8px;
  button {
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    img { transition: all 0.3s ease; }
  }
}

.loc-coords { display: none; }

.set-main-locker {
  border: 1px solid rgba(14, 109, 239, 0.2);
  color: var(--main-blue);
  &:hover {
    background: var(--main-blue);
    color: white;
    img { filter: brightness(0) invert(1); }
  }
}

.edit-locker {
  border: 1px solid rgba(14, 109, 239, 0.12);
  color: var(--text-color);
  &:hover {
    background: var(--text-color);
    color: white;
    img { filter: brightness(0) invert(1); }
  }
}

.delete-locker {
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--brand-red);
  margin-left: auto;
  &:hover {
    background: var(--brand-red);
    color: white;
    img { filter: brightness(0) invert(1); }
  }
}

.editLockers .modal-content { border-radius: 24px; border: none; }

.editLockers .modal-header {
  background: var(--dark-bg-color);
  border-radius: 24px 24px 0 0;
  padding: 20px 24px;
  p:first-child {
    color: rgba(255,255,255,0.45);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  p:last-child {
    color: white;
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    margin-bottom: 0;
  }
  button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 auto;
    width: 32px; height: 32px;
    svg {
      fill: rgba(255, 255, 255, 0.7);
      width: 20px; height: 20px;
    }
  }
}

.editLockers .modal-body {
  padding: 24px 24px 42px;
}

.locker-on-map {
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 14px;
  height: 100px;
  margin-bottom: 20px;
  position: relative;
  iframe {
    border-radius: 14px;
    height: 100%;
  }
  > a {
    background: var(--main-blue);
    border-radius: 7px;
    color: white;
    text-decoration: none;
    font: 10px 'Helvetica Medium';
    line-height: 15px;
    position: absolute;
    bottom: 10px; right: 10px;
    padding: 4px 8px;
    z-index: 2;
  }
}

.edit-locker-form label {
  color: #475569;
  font: 11px 'Helvetica Medium';
  line-height: 17px;
  margin-bottom: 6px;
}

.edit-locker-form input {
  background: var(--bg-color1);
  border: 1px solid rgba(14, 109, 239, 0.15);
  border-radius: 10px;
  color: black;
  font: 13px 'Helvetica Roman';
  line-height: 19px;
  width: 100%; height: 40px;
  padding-left: 12px;
  &:focus { outline: none; }
}

.edit-locker-form input[readonly] {
  cursor: not-allowed;
  color: #BDBDBD;
}

.edit-locker-btns, .add-locker-btns {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 140fr 278fr;
  gap: 12px;
  button {
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 13px 'Helvetica Medium';
    line-height: 20px;
    height: 44px;
    transition: all 0.3s ease;
  }
  button:first-child {
    background: var(--bg-color1);
    border: 1px solid rgba(14, 109, 239, 0.15);
    color: var(--text-color);
    &:hover { background: var(--hover-color); color: white; }
  }
  button:last-child {
    background: var(--main-blue);
    color: white;
    &:hover { background: var(--hover-color); color: white; }
  }
}

.add-locker-btns {
  margin-top: 16px;
  button { height: 38px; }
}

.successful-send-cont {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(14, 109, 239, 0.08);
  display: flex;
  gap: 30px;
  width: 100%; padding: 40px;
  > div:last-child { width: calc(100% - 380px); }
}

.successful-send-cont .copy-container {
  border-radius: 17px;
  position: static;
  transform: unset;
  opacity: 1; visibility: visible;
  width: 350px;
  z-index: 0;
  padding: 20px;
}
.successful-send-cont .close-copy-container { display: none; }

.new-locker-form {
  background: white;
  border-color: rgba(14, 109, 239, 0.2);
  border-radius: 20px;
  box-shadow: 0px 4px 9.5px 0px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 60px; left: 0;
  width: 100%;
  z-index: 4;
  display: none;
  &.active { display: block; }
}

.locker-page-right { width: 280px; }

.frequently-used {
  background: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  > p {
    color: var(--dark-bg-color);
    font: 12px 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 0;
  }
  > div {
    display: flex;
    align-items: center;
    gap: 12px;
    > div:first-child {
      background: #F1F5F9;
      border-radius: 50%;
      color: var(--text-color1);
      display: flex;
      align-items: center;
      justify-content: center;
      font: 700 10px 'Noto Sans Georgian';
      line-height: 15px;
      width: 22px; height: 22px;
    }
    > div:last-child {
      width: calc(100% - 34px);
      p:first-child {
        color: var(--dark-blue);
        font: 12px 'Helvetica Medium';
        line-height: 18px;
        margin-bottom: 0;
      }
      p:last-child {
        color: var(--text-color1);
        font: 10px 'Helvetica Roman';
        line-height: 15px;
        margin-bottom: 0;
      }
    }
  }
}

.frequently-used > div:first-of-type > div:first-child {
  background: rgba(14, 109, 239, 0.1);
  color: var(--main-blue);
}

.news-page { padding: 40px 20px 100px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.news {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 40px;
}

.curr-news {
  width: 66%;
  .date { 
    font-size: 14px; 
    line-height: 19px;
    margin-bottom: 15px;
  }
  .title {
    color: var(--dark-bg-color);
    font: 26px 'Helvetica Medium';
    line-height: 33px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  hr {
    border-color: var(--text-color1);
    margin: 30px 0;
  }
}

.curr-news .text {
  color: var(--black);
  font: 16px 'Helvetica Roman';
  line-height: 28px;
  * { font-family: 'Helvetica Roman' !important; }
}

.news-image {
  border-radius: 20px;
  width: 100%; height: 450px;
  object-fit: cover;
  margin-bottom: 20px;
}

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

.share-media {
  display: flex;
  align-items: center;
  gap: 10px;
  p {
    color: var(--dark-bg-color);
    display: flex;
    align-items: center;
    gap: 5px;
    font: 14px 'Helvetica Roman';
    line-height: 18px;
    margin-bottom: 0;
    svg { fill: var(--dark-bg-color); }
  }
  div {
    background: var(--dark-blue);
    border-radius: 10px;
    cursor: pointer;
    width: 30px; height: 30px;
    transition: all 0.3s ease;
    &:hover { background: var(--main-blue); }
  }
}

.other-news {
  width: calc(34% - 30px);
  > p {
    color: var(--dark-bg-color);
    font: 20px 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.four-steps, .tariffs, .start-sending {
  padding: 95px 20px;
  .content1 { align-items: center; }
  .content1 > p { text-transform: uppercase; text-align: center; }
  .content1 > p:first-child {
    color: var(--main-blue);
    font: 14px 'Helvetica Medium';
    line-height: 17px;
    letter-spacing: 2px;
  }
  .content1 > p:nth-child(2) {
    color: var(--dark-blue);
    font: 32px 'Helvetica Bold';
    line-height: 48px;
    margin-bottom: 50px;
    letter-spacing: -1px;
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%; max-width: 1150px;
}

.steps > div {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 20px;
  box-shadow: 0px 1px 12px 0px rgba(14, 109, 239, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  div:first-child {
    background: var(--main-blue);
    border-radius: 16px;
    color: white;
    font: 18px 'Helvetica Medium';
    line-height: 27px;
    width: 56px; height: 56px;
  }
}

.step-desc {
  width: calc(100% - 80px);
  p:first-child {
    color: var(--dark-blue);
    font: 17px 'Helvetica Medium';
    line-height: 25px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  p:nth-child(2) {
    color: var(--text-color);
    font: 14px 'Helvetica Roman';
    line-height: 24px;
    margin-bottom: 4px;
  }
  p:nth-child(3) {
    color: var(--text-color1);
    font: 13px 'Helvetica Roman';
    line-height: 21px;
    margin-bottom: 0;
  }
}

.tracking-cont {
  background: var(--bg-color);
  padding: 95px 20px;
  .content { 
    align-items: flex-start;
    gap: 80px;
    max-width: 1150px;
  }
}

.tracking-left {
  width: calc(50% - 40px);
  p:first-child {
    color: var(--main-blue);
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  p:nth-child(2) {
    color: var(--dark-blue);
    font: 32px 'Helvetica Bold';
    line-height: 48px;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    span { color: var(--main-blue); }
  }
  p:nth-child(3) {
    color: var(--text-color);
    font: 15px 'Helvetica Roman';
    line-height: 27px;
    margin-bottom: 32px;
  }
  > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 17px;
    div {
      color: var(--dark-blue);
      display: flex;
      align-items: center;
      gap: 12px;
      font: 14px 'Helvetica Roman';
      line-height: 21px;
      img { width: 20px; }
    }
  }
}

.tracking-right {
  background: var(--dark-bg-color);
  border-radius: 20px;
  width: calc(50% - 40px);
  padding: 32px;
  position: relative;
  overflow: hidden;
  &::before {
    content: '';
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(14, 109, 239, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
  }
}

.tracking-right > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  div:first-child {
    background: rgba(14, 109, 239, 0.2);
    border: 1px solid rgba(14, 109, 239, 0.3);
    border-radius: 12px;
    width: 44px; height: 44px;
  }
  p { margin: 0; }
  p:first-child {
    color: white;
    font: 16px 'Helvetica Medium';
    line-height: 24px;
    text-transform: uppercase;
  }
  p:nth-child(2) {
    color: rgba(255, 255, 255, 0.5);
    font: 12px 'Helvetica Roman';
    line-height: 18px;
  }
}

.tracking-res {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 24px;
  > div {
    display: flex;
    align-items: center;
    gap: 12px;
    div {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      width: 8px; height: 8px;
    }
    span:nth-child(2) {
      color: rgba(255, 255, 255, 0.5);
      font: 13px 'Helvetica Medium';
      line-height: 20px;
    }
    span:nth-child(3) {
      color: rgba(255, 255, 255, 0.35);
      font: 11px 'Helvetica Roman';
      line-height: 17px;
      margin-left: auto;
    }
  }
}

.tracking-res > div:last-child {
  div { background: #00D492; }
  span:nth-child(2) { color: white; }
  span:nth-child(3) { color: white; }
}

.locker-info {
  padding: 65px 20px;
  .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1150px;
    justify-content: center;
  }
}

.locker-info .content > div {
  background: var(--bg-color);
  border-radius: 20px;
  padding: 32px;
  p:first-child {
    color: var(--main-blue);
    font: 28px 'Helvetica Bold';
    line-height: 42px;
    margin-bottom: 8px;
  }
  p:nth-child(2) {
    color: var(--dark-blue);
    font: 16px 'Helvetica Medium';
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  p:last-child {
    color: var(--text-color);
    font: 14px 'Helvetica Roman';
    line-height: 23px;
    margin-bottom: 0;
  }
}

.sending-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1150px;
  justify-content: center;
  position: relative;
  &::before {
    content: '';
    background: rgba(14, 109, 239, 0.15);
    width: 100%; height: 1px;
    position: absolute;
    z-index: 1; top: 29px;
  }
}

.sending-steps > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; z-index: 2;
  div {
    background: var(--main-blue);
    border-radius: 50%;
    color: white;
    font: 18px 'Helvetica Medium';
    line-height: 27px;
    width: 56px; height: 56px;
    margin-bottom: 24px;
  }
  p { text-align: center; }
  p:nth-child(2) {
    color: var(--dark-blue);
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  p:nth-child(3) {
    color: var(--text-color);
    font: 13px 'Helvetica Roman';
    line-height: 22px;
    margin-bottom: 0;
  }
}

.tariffs { background: var(--bg-color); }
.tariff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1150px; width: 100%;
}

.tariff-cards > div {
  background: white;
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 20px;
  position: relative;
  padding: 32px;
  p:first-child {
    color: var(--main-blue);
    font: 32px 'Helvetica Bold';
    line-height: 48px;
    margin-bottom: 4px;
  }
  p:nth-child(2) {
    color: var(--dark-blue);
    font: 17px 'Helvetica Medium';
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  p:nth-child(3) {
    color: var(--text-color1);
    font: 16px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 24px;
  }
  > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    img { width: 18px; }
    div {
      color: var(--text-color);
      display: flex;
      align-items: center;
      gap: 12px;
      font: 13px 'Helvetica Roman';
      line-height: 20px;
    }
  }
}

.tariff-cards > div.popular {
  background: var(--dark-bg-color);
  border-color: var(--main-blue);
  p:first-child, p:nth-child(2) { color: white; }
  > div div { color: rgba(255, 255, 255, 0.8); }
  .tag {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
  }
}

.start-sending .send-type {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: 100%; max-width: 1190px;
  gap: 20px;
  > div:nth-child(2) { gap: 20px; }
  .send-type-card { 
    text-decoration: none; 
    width: calc(50% - 10px);
    transition: all 0.3s ease; 
  }
}

.start-sending .send-type-card label {
  img { width: 68px; }
  p:nth-child(2) {
    font-size: 17px;
    line-height: 27px;
  }
  p:nth-child(3) {
    font-size: 18px;
    line-height: 28px;
  }
}

.start-sending .send-type-card:hover {
  border-color: var(--main-blue);
  label {
    img { filter: unset; } 
    p:nth-child(3) { color: var(--main-blue); }
  }
}

.locker-page-cont { padding: 50px 20px 150px; }
.locker-page-cont .content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.curr-locker {
  width: calc(100% - 545px);
  .name {
    color: var(--dark-blue);
    font: 30px 'Helvetica Bold';
    line-height: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .text {
    color: #475569;
    font: 16px 'Helvetica Roman';
    line-height: 26px;
    margin-bottom: 40px;
    * { font-family: 'Helvetica Roman' !important; }
  }
}

.locker-num {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  span:first-child {
    color: var(--main-blue);
    font: 12px 'Helvetica Medium';
    line-height: 16px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
  }
}

.locker-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  a {
    border-radius: 12px;
    color: white;
    text-decoration: none;
    gap: 10px;
    font: 14px 'Helvetica Roman';
    line-height: 21px;
    text-transform: uppercase;
    height: 50px;
    transition: all 0.3s ease;
    img { filter: brightness(0) invert(1); }
  }
  a:first-child {
    background: var(--main-blue);
    width: 185px;
    &:hover { background: var(--hover-color); }
  }
  a:last-child {
    background: var(--black);
    width: 295px;
    &:hover { background: var(--hover-color); }
  }
}

.locker-features {
  background: #F5F5F5;
  border: 1px solid rgba(14, 109, 239, 0.08);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  > p {
    color: var(--dark-bg-color);
    font: 16px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 20px;
  }
  > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  > div div {
    color: #475569;
    display: flex;
    align-items: center;
    gap: 12px;
    font: 18px 'Helvetica Roman';
    line-height: 20px;
  }
}

.curr-locker-img {
  border-radius: 20px;
  width: 515px; height: 402px;
  object-fit: cover;
}

.main-map {
  display: grid;
  grid-template-columns: 963fr 320fr;
  gap: 30px;
}

#map { 
  border-radius: 20px;
  width: 100%; height: 520px; 
}

.custom-info-window .actions {
  display: flex;
  align-items: center;
  gap: 25px;
  a:first-child {
    background: var(--main-blue);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'Helvetica Roman';
    line-height: 21px;
    width: 99px; height: 30px;
    transition: all 0.3s ease;
    &:hover { background: var(--hover-color); }
  }
  a:last-child {
    color: var(--main-blue);
    text-decoration: none;
    font: 10px 'Helvetica Medium';
    line-height: 13px;
    transition: all 0.3s ease;
    &:hover { color: var(--hover-color); }
  }
}

.all-locations {
  border: 1px solid rgba(14, 109, 239, 0.12);
  border-radius: 12px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  .head {
    border-bottom: 1px solid rgba(14, 109, 239, 0.12);
    color: var(--text-color);
    display: flex;
    gap: 4px;
    font: 12px 'Helvetica Roman';
    line-height: 16px;
    padding: 12px 16px;
  }
}

.all-locations-list {
  height: 470px;
  overflow-y: auto;
}

.no-results {
  color: var(--dark-bg-color);
  font: 15px 'Helvetica Medium';
  line-height: 20px;
  text-transform: uppercase;
  padding: 12px 16px;
}

.location-card {
  border-bottom: 1px solid rgba(14, 109, 239, 0.12);
  padding: 14px 16px;
  .location-tags { margin-bottom: 0; }
}

.tracking-page {
  background: var(--dark-bg-color);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  .content1 { position: relative; z-index: 2; } 
  .decor {
    content: '';
    background: radial-gradient(64.03% 80.04% at 50% 50%, rgba(14, 109, 239, 0.2) 0%, rgba(14, 109, 239, 0) 70%);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
  }
  .decor:nth-child(2) {
    width: 350px; height: 350px;
    bottom: -50px; left: -50px;
  }
  .decor:nth-child(3) {
    width: 450px; height: 450px;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .decor:nth-child(4) {
    width: 300px; height: 300px;
    left: 90%; top: 30%;
    transform: translate(-50%, -50%);
  }
}

.tracking-page .content1 {
  align-items: center;
  p:first-child {
    background: rgba(14, 109, 239, 0.15);
    border: 1px solid rgba(14, 109, 239, 0.3);
    border-radius: 15px;
    color: #60A5FA;
    gap: 8px;
    font: 11px 'Helvetica Medium';
    line-height: 17px;
    width: 187px; height: 30px;
    margin-bottom: 24px;
  }
  p:nth-child(2) {
    color: white;
    font: 46px 'Helvetica Bold';
    line-height: 70px;
    margin-bottom: 16px;
    span:last-child { color: var(--main-blue); }
  }
  p:nth-child(3) {
    color: white;
    font: 15px 'Helvetica Roman';
    line-height: 24px;
    margin-bottom: 40px;
  }
}

.main-tracking-form {
  position: relative;
  > img:first-child {
    position: absolute;
    left: 24px; top: 22px;
    width: 18px;
  }
  input {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-color);
    font: 15px 'Helvetica Roman';
    line-height: 23px;
    padding: 0 155px 0 55px;
    width: 575px; height: 63px;
    &:focus { outline: none; }
  }
}

.main-tracking-form button {
  background: var(--main-blue);
  border: none;
  border-radius: 16px;
  color: white;
  font: 14px 'Helvetica Medium';
  line-height: 21px;
  padding: 12px 24px;
  gap: 8px;
  position: absolute;
  top: 9px; right: 8px;
  &:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .fa-rotate { display: none; }
  &.loading .fa-arrow-right { display: none; }
  &.loading .fa-rotate { 
    display: inline-block; 
    animation: spin .8s linear infinite; 
  }
}

.tracking-content {
  display: none;
  &.visible { display: flex; flex-direction: column; }
}

@keyframes spin { to { transform: rotate(360deg); } }

.tracking-steps {
  padding: 100px 20px;
  .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 768px; width: 100%;
  }
}

.tracking-step {
  border: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 16px;
  box-shadow: 0px 1px 12px 0px rgba(14, 109, 239, 0.04);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  > div:first-child {
    background: rgba(14, 109, 239, 0.07);
    border-radius: 16px;
    color: var(--main-blue);
    font-size: 15px;
    width: 36px; height: 36px;
  }
  > div:nth-child(2) {
    width: calc(100% - 52px);
    p:first-child {
      color: var(--dark-blue);
      font: 14px 'Helvetica Medium';
      line-height: 21px;
      margin-bottom: 4px;
    }
    p:nth-child(2) {
      color: var(--text-color);
      font: 12px 'Helvetica Roman';
      line-height: 20px;
      margin-bottom: 0;
    }
  }
}

.tracking-content .head {
  background: white;
  border-bottom: 1px solid rgba(14, 109, 239, 0.1);
  border-radius: 0 0 16px 16px;
  box-shadow: 0px 1px 16px 0px rgba(14, 109, 239, 0.05);
  padding: 24px 20px;  
  width: 100%;
  .content {
    align-items: flex-start;
    justify-content: space-between;
  }
}

.tracking-content .head .content > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  p:first-child {
    color: var(--text-color1);
    font: 11px 'Helvetica Roman';
    line-height: 17px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  p:nth-child(2) {
    color: var(--dark-blue);
    font: 22px 'Helvetica Bold';
    line-height: 33px;
    margin-bottom: 12px;
  }
}

#refresh {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(14, 109, 239, 0.2);
  color: var(--main-blue);
  font: 13px 'Helvetica Medium';
  line-height: 20px;
  gap: 10px;
  transition: all 0.3s ease;
  width: 125px; height: 42px;
  &:hover {
    background: var(--hover-color);
    color: white;
  }
  &.loading .fa-rotate { animation: spin .8s linear infinite; }
}

.tracking-details {
  padding: 20px 20px 105px;
  .content {
    align-items: flex-start;
    gap: 40px;
  }
}

.tracking-details-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - 540px);
  > div {
    border: 1px solid rgba(14, 109, 239, 0.1);
    box-shadow: 0px 1px 16px 0px rgba(14, 109, 239, 0.05);
    border-radius: 16px;
    padding: 24px;
    > p:first-child {
      color: var(--main-blue);
      font: 12px 'Helvetica Medium';
      line-height: 18px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 26px;
    }
  }
}

.moving-history {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  &::before {
    content: '';
    background: linear-gradient(180deg, #0E6DEF 88.93%, #E2E8F0 88.94%);
    width: 2px; height: calc(100% - 35px);
    position: absolute;
    left: 17px; top: 0;
    z-index: 0;
  }
  > * { position: relative; z-index: 1; }
}

.moving-history-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  > div:first-child {
    background: var(--main-blue);
    border-radius: 50%;
    width: 36px; height: 36px;
    img { filter: brightness(0) invert(1); }
  }
}

.moving-history-item > div:nth-child(2) {
  div:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    span:first-child {
      color: var(--dark-blue);
      font: 15px 'Helvetica Medium';
      line-height: 23px;
    }
  }
  > p:nth-child(2) {
    color: var(--text-color);
    font: 13px 'Helvetica Roman';
    line-height: 20px;
    margin-bottom: 4px;
  }
  > p:nth-child(3) {
    color: var(--text-color1);
    display: flex;
    align-items: center;
    gap: 4px;
    font: 12px 'Helvetica Roman';
    line-height: 18px;
    margin-bottom: 0;
  }
}

.parcel-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.parcel-info-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  > div:first-child {
    background: rgba(14, 109, 239, 0.07);
    border-radius: 12px;
    color: var(--main-blue);
    font-size: 12px;
    width: 32px; height: 32px;
    img {
      filter: brightness(0) saturate(100%) invert(26%) sepia(97%) 
      saturate(2088%) hue-rotate(207deg) brightness(97%) contrast(93%); 
      width: 16px; 
    }
  }
  > div:nth-child(2) {
    width: calc(100% - 44px);
    p:first-child {
      color: var(--text-color1);
      font: 11px 'Helvetica Roman';
      line-height: 17px;
      letter-spacing: 0.28px;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    p:nth-child(2) {
      color: var(--dark-blue);
      font: 14px 'Helvetica Roman';
      line-height: 21px;
      margin-bottom: 0;
    }
  }
}

.tracking-details-right {
  border-radius: 16px;
  border: 1px solid rgba(14, 109, 239, 0.12);
  box-shadow: 0px 1px 16px 0px rgba(14, 109, 239, 0.06);
  width: 500px;
}

.tracking-details-right .head {
  background: var(--dark-bg-color);
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  > div:first-child {
    background: rgba(14, 109, 239, 0.25);
    border-radius: 16px;
    width: 40px; height: 40px;
    img { width: 18px; }
  }
  div:nth-child(2) {
    width: calc(100% - 150px);
    p:first-child {
      color: white;
      font: 15px 'Helvetica Medium';
      line-height: 23px;
      margin-bottom: 0;
    }
    p:nth-child(2) {
      color: var(--text-color);
      font: 12px 'Helvetica Roman';
      line-height: 18px;
      margin-bottom: 0;
    }
  }
  .tag { margin-left: auto; }
}

.tracking-details-body {
  padding: 24px 24px 35px;
  > p:first-child {
    color: #475569;
    font: 14px 'Helvetica Roman';
    line-height: 19px;
    margin-bottom: 24px;
  }
  > a {
    background: var(--main-blue);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    gap: 8px;
    font: 13px 'Helvetica Roman';
    line-height: 20px;
    width: 100%; height: 45px;
    transition: all 0.3s ease;
    &:hover { background: var(--hover-color); }
  }
}