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

body { 
  background: var(--bg-color) !important;
  overflow-x: hidden; 
}
body.no-scroll { overflow: hidden; }

@-moz-document url-prefix() {
  html, .inner, .cabinet-nav {
    scrollbar-width: thin;
    scrollbar-color: #D5D5D5 #F1F1F1;
  }
}

html::-webkit-scrollbar, .inner::-webkit-scrollbar
.cabinet-nav::-webkit-scrollbar {
  width: 5px; 
}

html::-webkit-scrollbar-thumb, .inner::-webkit-scrollbar-thumb
.cabinet-nav::-webkit-scrollbar-thumb {
  background: #E6E6E6; 
  height: 87px;
  border-radius: 3px;
}

:root {
  --primary-color: #1492E6;
  --secondary-color: #158EFF;
  --hover-color: #26A0F1;
  --header-text: #434343;
  --border-color: #E2E8F0;
  --bg-color: #F8FAFB;
  --bg-color1: #F3F9FF;
  --text-color: #2E2E2E;
  --text-color1: #686868;
  --dark-grey: #5C5F62;
}

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

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

.content1 { flex-direction: column; }

/*** Remove valid/invalid feedback effects ***/
.was-validated .form-control:valid,
.was-validated .form-control:invalid {
  background-image: none !important;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid,
.was-validated .bootstrap-select select:valid+.dropdown-toggle {
  border-color: #D9D9D9 !important;
}

.was-validated .form-control:valid:focus,
.was-validated .form-select:valid:focus {
  box-shadow: none !important;
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple]):not([size]) {
  --bs-form-select-bg-icon: none !important;
}

.form-floating > .form-control {
  min-height: unset !important;
}
/***************************************/

header {
  background: #F8F8F8;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  height: 90px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1000;
  padding: 0px 80px 0 82px;
} 

.header-content {
  display: flex;
  align-items: center;
  gap: 118px;
  height: 100%;
}

#menu-toggle-button { display: none; }
.dropdownMenu {
  background: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 90px;
  width: 100%;
  height: 0;
  overflow-y: auto; 
  overflow-x: hidden;
  z-index: 1000;
  transition: height 0.5s ease;
}

.dropdownMenu.visible, .dropdownMenu.active { height: calc(100vh - 90px); }

.find-product {
  background: #F2F2F2;
  display: flex;
  align-items: center;
  width: 100%;
  input {
    background: transparent;
    border: none;
    color: #757575;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding-left: 40px;
    width: calc(100% - 50px); height: 50px;
    &:focus { outline: none; }
  }
  button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50px; height: 50px;
  }
}

.mob-cat  {
  border-bottom: 1px solid #E9E9E9;
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 39px;
  font: 14px 'BPG Mrgvlovani';
  line-height: 19px;
}

.mob-child {
  background: white;
  display: flex;
  position: fixed;
  top: 90px; right: -100%;
  height: calc(100% - 90px); width: 100%;
  overflow: auto;
  transition: all 0.3s ease;
  z-index: 4;
  &.show { right: 0; }
}

.mob-child-left, .mob-grandchild-left {
  color: #1993FF;
  display: flex;
  justify-content: center;
  padding-top: 52px;
  position: sticky;
  top: 0;
  width: 53px; height: 100%;
}
.mob-grandchild-left { background: rgba(23, 144, 255, 0.9); color: white; }

.mob-child-right, .mob-grandchild-right {
  background: rgba(23, 144, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 20px 10px 15px;
  width: calc(100% - 53px);
}
.mob-grandchild-right { background: white; padding: 0; }

.mobChildMenu {
  background: rgba(255, 255, 255, 0.09);
  border: none;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 14px 'BPG Mrgvlovani';
  line-height: 19px;
  height: 55px;
  padding: 0 20px;
}

.mob-grandchild {
  background: white;
  display: flex;
  position: fixed;
  top: 90px; right: -100%;
  height: calc(100% - 90px); width: 100%;
  overflow: auto;
  transition: all 0.3s ease;
  z-index: 4;
  &.show { right: 0; }
}

.mobGrandchildName {
  border-bottom: 1px solid var(--border-color);
  color: black;
  font: 20px 'Campton Medium', 'Helvetica Medium';
  line-height: 24px;
  margin-bottom: 0;
  padding: 44px 20px 20px;
}

.moblinkgrid {
  gap: 30px !important;
  a { width: 100% !important; gap: 20px !important; }
  .desc { max-width: calc(100% - 55px) !important; }
}

.mobServices {
  background: white;
  padding: 45px 50px 45px 20px;
}

.mobServices > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  > div { border-radius: 10px; min-height: 190px; }
}

.mobServices > p, .mobModules > p, .mobPayments > p {
  color: black;
  font: 20px 'Campton Medium', 'Helvetica Medium';
  line-height: 24px;
  margin-bottom: 20px;
}

.mobModules {
  padding: 44px 0 20px 20px;
}

.mobModules-swiper {
  height: 470px;
  a { width: 230px !important; }
  a:first-child { border-radius: 20px 0 0 20px; }
  a:last-child { border-radius: 0 20px 20px 0; }
}

.mobPayments {
  width: 100% !important;
  > p {
    border-bottom: 1px solid  #E9E9E9;
    padding: 44px 20px 30px 20px;
    margin-bottom: 0;
  }
}

.mob-grandchild-right > div { display: none; }
.mob-grandchild-right > div.show { display: block; }

.mob-actions {
  margin-top: auto;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mob-socials {
  display: flex;
  gap: 15px;
  a {
    background: #A3D4FF;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center; 
    font-size: 12px;
    width: 30px; height: 30px;
  }
}

.dropdownMenu .warningLink {
  width: calc(100% - 40px);
  margin: 0 auto 80px;
  &:hover { background: #0C82FF; }
}

.mob-register {
  background: var(--primary-color);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px 'BPG Mrgvlovani';
  line-height: 19px;
  width: calc(100% - 40px); height: 40px;
  margin: 20px auto 0;
}

.logo { display: flex; }

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menuItem {
  cursor: pointer;
  position: relative;
}

.menuItem.active .prodMenu, .menuItem.active .aboutUsMenu,
.menuItem.active .assistMenu { display: flex; }

.menuHead, .menuItem > a {
  color: var(--header-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font: 14px 'BPG Mrgvlovani';
  line-height: 19px;
  padding: 35px 0;
  transition: all 0.3s ease;
  svg { fill: var(--header-text); transition: all 0.3s ease; }
}

.menuItem:hover .menuHead, .menuItem:hover > a, .menuItem.active .menuHead {
  color: var(--primary-color); 
  svg { fill: var(--primary-color); }
}

.prodMenu {
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  display: none;
  position: absolute;
  max-width: 1206px;
  left: -216px; top: 100%;
}

.leftSide {
  background: rgba(20, 146, 230, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 300px;
  padding: 30px 15px 35px;
  border-radius: 0 0 0 10px;
}

.childMenu {
  background: transparent;
  border-radius: 5px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 14px 'BPG Mrgvlovani';
  line-height: 19px;
  height: 55px;
  padding: 0 20px;
  transition: all 0.3s ease;
  svg {
    opacity: 0;
    transition: all 0.3s ease;
  }
}

.childMenu.active, .childMenu:hover {
  background: rgba(255,255,255,0.2);
  svg { opacity: 1; }
}

.warningLink {
  background: var(--primary-color);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 10px 'BPG Mrgvlovani';
  line-height: 13px;
  height: 40px;
  padding: 0 20px;
  margin: 45px auto 0;
  transition: all 0.3s ease;
  &:hover { background: rgba(213, 238, 255, 0.3); }
}

.rightSide {
  background: white;
  border-radius: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  width: 100vw; max-width: 906px;
  > .linkgrid { margin-bottom: 25px; }
}

.topSide {
  padding: 17px 20px 25px;
  &.active { 
    background: #F2F4F6; 
    padding: 33px 20px 31px;
  }
}

.topSide.active .linkgrid a:nth-child(3) img { filter: unset; }
.topSide.active .linkgrid a:nth-child(5) img { filter: unset; }

.offer {
  background: #EBF7FF;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  margin-bottom: 35px;
  > span {
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
  }
  > a {
    background: linear-gradient(180deg, #29a7ff 0.00%, #128aff 100.00%);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font: 13px 'Campton Medium', 'Helvetica Roman';
    line-height: 16px;
    transition: all 0.3s ease;
    width: 300px; height: 45px;
    &:hover { background: linear-gradient(180deg, #27A5FF 0.00%, #107DF1 100.00%); }
  }
}

.interestingLinks {
  border-radius: 0 0 10px 0;
  padding: 31px 20px 37px;
  background: white;
  > p:first-child {
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 20px;
  }
  &.active { 
    background: #F2F4F6; 
    padding: 20px 20px 18px;
  }
}
.interestingLinks .text { max-width: 160px; }

.linkgrid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 6px;
  a {
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 212px;
    position: relative;
    &:hover img { filter: brightness(0) saturate(100%) invert(61%) sepia(64%) saturate(4266%) 
        hue-rotate(178deg) brightness(100%) contrast(90%); }
  }
}

.linkgrid a span:last-child { 
  color: white;
  display: none; 
  font: 10px 'Campton Medium', 'Helvetica Bold';
  line-height: 13px;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.linkgrid a.soon::after {
  content: '';
  background: rgb(20, 146, 230, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(1px);
  filter: brightness(0.) drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.07));
  position: absolute;
  width: 220px; height: 90px;
  top: -8px; left: -10px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
.linkgrid a.soon:hover::after { opacity: 1; }
.linkgrid a.soon:hover span:last-child { display: flex; }

.icon {
  background: #F6F9FE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px; height: 33px;
  transition: all 0.3s ease;
  img { object-fit: contain; }
}
.interestingLinks.active .icon { background: white; }

.linkgrid .desc {
  max-width: 169px;
  p { transition: all 0.3s ease; }
  p:first-child {
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 19px;
    margin-bottom: 5px;
  }
  p:last-child {
    color: #B8B8B8;
    font: 12px 'Campton Medium', 'Helvetica Roman';
    line-height: 16px;
    margin-bottom: 0;
  }
}

.linkgrid a:hover .desc {
  p:first-child { color: var(--primary-color); }
  p:last-child { color: var(--dark-grey); }
} 

.cloudMenu {
  > p {
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 25px;
  }
  > div {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .linkgrid a { width: 203px; }
  .desc { max-width: 160px; }
}

.vpsl {
  background: linear-gradient(0deg, #304a7d 0.00%, #18253f 100.00%);
  border-radius: 5px;
  padding: 15px 24px 20px;
  max-width: 199px;
  p {
    color: white;
    font: 12px 'Campton Medium', 'Helvetica Roman';
    line-height: 14px;
    margin-bottom: 35px;
  }
  a {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.37);
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    text-decoration: none;
    height: 30px;
    position: relative;
    transition: all 0.3s ease;
    span { position: relative; z-index: 2; }
    &::after {
      content: '';
      background: linear-gradient(90deg, #6073ec 0.00%, var(--hover-color) 100.00%);
      border-radius: 10px;
      position: absolute;
      inset: 0;
      opacity: 0;
      z-index: 1;
      transition: all 0.3s ease;
    }
    &:hover::after { opacity: 1; }
    &:hover { border-color: transparent; }
  }
}

.icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  div {
    background: linear-gradient(90deg, #6073ec 0.00%, var(--hover-color) 100.00%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px; height: 33px;
  }
}

.servicegrid {
  background: white;
  border-radius: 0 0 10px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px 20px;
  width: 100vw;
  max-width: 906px;
  padding: 38px 27px;
  > div { border-radius: 10px; max-height: 185px; }
}

#service1 {
  background: linear-gradient(90deg, #CDE9F9 0.00%,#E7F3FA 100.00%);
  padding: 20px;
  position: relative;
  span:first-child {
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 19px;
    margin-right: 3px;
  }
  span:last-child {
    color: transparent;
    font: 19px 'Gilroy GEO';
    line-height: 25px;
    -webkit-text-stroke: 0.5px black;
    transition: all 0.3s ease;
  }
  img { position: absolute; transition: all 0.3s ease; object-fit: contain; }
  img:first-of-type { top: 35px; right: 15px; z-index: 2; width: 59px; height: 63px;}
  img:last-child { bottom: 20px; left: 22px; z-index: 2; width: 51px; height: 51px; }
  img:nth-of-type(2) {
    left: 50%; transform: translateX(-50%);
    bottom: 40px; z-index: 1;
    width: 156px; height: 89px;
  }
}

#service1:hover {
  span:last-child { color: var(--primary-color); -webkit-text-stroke-color: var(--primary-color); }
  img:nth-of-type(2) { transform: translateX(-50%) rotate(-9deg); }
}

#service2 {
  background: linear-gradient(0deg, #39497D 0.00%, #623A6B 100.00%);
  padding: 20px 30px;
  position: relative;
  transition: all 0.3s ease;
  > p {
    color: white;
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 0;
  }
  > span {
    color: white;
    font: 8px 'Campton Medium', 'Helvetica Roman';
    line-height: 10px;
    opacity: 0;
    transition: all 0.3s ease;
  }
  div {
    position: absolute;
    top: 50px; left: 40px;
    transition: all 0.3s ease;
    span {
      color: white;
      margin-left: 100px;
      font: 15px 'Gilroy GEO';
      line-height: 20px;
    }
  }
  img {    
    width: 169px; height: 86px;
    object-fit: contain;
  }
}

#service2:hover {
  background: linear-gradient(0deg, #283B6C 0.00%, #561F63 100.00%);
  > span { opacity: 1; } 
  div { top: 63px; }
}

#service3 {
  background: linear-gradient(90deg, #CDE9F9 0.00%,#E7F3FA 100.00%);
  padding: 20px 25px 15px;
  p {
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 19px;
    margin-bottom: 17px;
  }
  img {
    width: 217px; height: 116px;
    object-fit: contain;
  }
}

#service4 {
  background: linear-gradient(90deg, #FFFFFF 0.00%,#ECECEC 100.00%);
  border: 1px solid #F2F2F2;
  padding: 13px 15px 13px 30px;
  font: 12px 'Campton Medium', 'Helvetica Medium';
  line-height: 16px;
  position: relative;
  p:first-child { margin-bottom: 3px; }
  div { display: flex; gap: 5px; margin-bottom: 5px;}
  img:first-of-type {
    width: 167px; height: 107px;
    object-fit: contain;
  }
  img:last-child {
    position: absolute;
    width: 120px; height: 73px;
    object-fit: contain;
    right: 16px; bottom: 36px;
  }
}

#service4 .typeTarget {
  background: black;
  color: white;
  display: flex; 
  gap: 5px; 
  width: 96px;
  padding-left: 6px;
  overflow: hidden;
  white-space: nowrap;
  span:last-child { color: #61E6CA; }
}

#service4:hover .typeTarget {
  animation: typing 1.5s steps(20, end) forwards;
}

@keyframes typing {
  from { width: 0; }
  to { width: 96px; }
}

#service5 {
  background: linear-gradient(90deg, #CDE9F9 0%, #E7F3FA 100%), url('../../img/bg.png');
  background-size: cover, cover; 
  background-position: center, right center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
  padding: 22px 30px 19px;
  img { transition: all 0.3s ease; object-fit: contain; }
  img:first-child { width: 164px; height: 21px; }
  img:last-child { border-radius: 5px; width: 206px; height: 112px; }
}

#service5:hover {
  background: linear-gradient(90deg, #CDE9F9 0%, #E7F3FA 100%);
  img:last-child { transform: scale(0.9); }
}

#service6 {
  background: linear-gradient(90deg, #FAB6D1 0%, #FCE4F0 100%);
  padding: 20px 30px 0;
  p:first-child {
    font: 12px 'Campton Light', 'Helvetica Light';
    line-height: 15px;
    margin-bottom: 0;
  }
  p:nth-child(2) {
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    margin-bottom: 5px;
  }
  > div {
    position: relative;
    img {
      border-radius: 5px;
      opacity: 0.47;
      object-fit: contain;
      width: 187px;
      transition: all 0.3s ease;
    }
    div {
      background: white;
      border-radius: 50%;
      color: #EE3359;
      display: flex;
      align-items: center;
      justify-content: center;
      font: 12px 'BPG Mrgvlovani';
      line-height: 17px;
      width: 45px; height: 45px;
      position: absolute;
      top: 50%; right: 8px;
      transform: translateY(-50%);
      -webkit-text-stroke: 0.5px #EE3359;
      transition: all 0.3s ease;
    }
  }
}

#service6:hover {
  img { opacity: 1; width: 100%; }
  > div div { right: 50%; transform: translate(50%, -50%); }
}

.modules {
  border-radius: 0 0 10px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 475px; width: 100vw; max-width: 906px;
}

.moduleCard {
  color: unset;
  position: relative;
  width: 100%; height: 100%;
}

.moduleCard:first-child { background: linear-gradient(90deg, #E6F2FA 0%, #CFEAF9 100%); }
.moduleCard:nth-child(2) { background: linear-gradient(90deg, #FCE2EE 0%, #FABBD5 100%); }
.moduleCard:nth-child(3) { background: linear-gradient(90deg, #3C487C 0%, #5D3C6D 100%); color: white; }
.moduleCard:last-child { background: linear-gradient(90deg, #4768E5 0%, #2539A8 100%); color: white; }

.titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  transform: rotate(-90deg) translate(-50%, 50%);
  transform-origin: left bottom;
  width: 84px;
  position: absolute;
  bottom: 50%; left: 50%;
  transition: all 0.3s ease;
}
.moduleCard:nth-child(even) .titles { width: 48px; left: 47%; }

.titles p:first-child {
  font: 40px 'Campton Medium', 'Helvetica Bold';
  line-height: 45px;
  margin: 0;
  transition: all 0.3s ease;
}

.titles p:nth-child(2) {
  font: 30px 'Campton Medium', 'Helvetica Roman';
  line-height: 36px;
  margin: 0;
  transition: all 0.3s ease;
}

.image {
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
  top: 120px; left: 50%;
  transform: translateX(-50%);
  img { max-width: 118px; object-fit: contain; }
}

.moduleCard:nth-child(3) .image, .moduleCard:last-child .image {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px); height: 200px;
}

.more {
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  svg { transition: all 0.3s ease; }
  path {
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }
}

.moduleCard:first-child .more { color: var(--primary-color); svg { stroke: var(--primary-color); } }
.moduleCard:nth-child(2) .more { color: var(--dark-grey); svg { stroke: var(--dark-grey); } }
.moduleCard:nth-child(2) .more:hover { color: black; svg { stroke: black; } }
.moduleCard:nth-child(3) .more, .moduleCard:last-child .more { color: white; svg { stroke: white; } }

.moduleCard:hover .titles, .moduleCard.swiper-slide .titles {
  transform: translate(-50%, -50%);
  top: 90px; bottom: unset;
  width: unset;
  p:first-child { font-size: 20px; line-height: 24px; }
  p:nth-child(2) { font-size: 16px; line-height: 20px; }
}
.moduleCard:nth-child(even):hover .titles, .moduleCard.swiper-slide:nth-child(even) .titles { transform: translate(-47%, -50%); }

.moduleCard:hover .image, .moduleCard.swiper-slide .image { opacity: 1; top: 155px; }
.moduleCard:hover .more, .moduleCard.swiper-slide .more { opacity: 1; }
.more:hover { gap: 20px; }

.productMenu, .mobPayments {
  background: white;
  border-radius: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  height: 475px; width: 320px;
  a {
    border-bottom: 1px solid #E9E9E9;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 18px;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 19px;
    padding-left: 30px;
    width: 100%; height: 25%;
    transition: all 0.3s ease;
  }
  a:last-child { border: none; }
  svg { fill: var(--dark-grey); transition: all 0.3s ease;}
}

.productMenu a:hover {
  color: var(--primary-color);
  svg { fill: var(--primary-color); }
}

.productMenu div {
  background: #F6F9FE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
}

.aboutUsMenu {
  background: white;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  display: none;
  justify-content: space-between;
  position: absolute;
  left: -40px; top: 100%;
  padding: 33px 45px 33px 40px;
  min-width: 455px;
  &::before {
    content: '';
    background: #E9E9E9;
    width: 1px; height: calc(100% - 66px);
    position: absolute;
    right: 200px; top: 33px;
  }
}

.menuSection {
  > p {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    margin-bottom: 30px;
  }
  ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    li { display: flex; }
    a {
      color: var(--dark-grey);
      text-decoration: none;
      font: 14px 'Campton Medium', 'Helvetica medium';
      line-height: 17px;
      transition: all 0.3s ease;
      &:hover { color: var(--primary-color); }
    }
  }
}

.assistMenu {
  background: white;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  display: none;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  left: -40px; top: 100%;
  padding: 30px 40px;
  width: 275px;
  a, button {
    background: transparent;
    border: none;
    color: var(--dark-grey);
    text-decoration: none;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    transition: all 0.3s ease;
    text-align: start;
    &:hover { color: var(--primary-color); }
  }
}

.language-change {
  display: flex;
  align-items: center;
  gap: 8px;
  span:first-of-type {
    color: var(--dark-grey);
    font: 12px 'Campton Medium';
    line-height: 16px;
    min-width: 25px;
  }
}

.switch {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 18px;
  input { opacity: 0; width: 0; height: 0; }
}
  
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #E9E9E9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  &::before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(180deg, #29a7ff 0.00%, #128aff 100.00%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
  
input:checked + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

.headerActions {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  margin-left: auto;
  > a:first-child {
    color: var(--header-text);
    -webkit-text-stroke: 0.5px var(--header-text);
    text-decoration: none;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
  }
  &::after, &::before {
    content: '';
    background: #E9E9E9;
    width: 1px; height: 36px;
    top: 5px;
    position: absolute;
  }
  &::after { left: 168px; }
  &::before { right: 129px; }
}

.login {
  background: linear-gradient(180deg, #29a7ff 0.00%, #128aff 100.00%);
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px 'BPG Mrgvlovani';
  line-height: 19px;
  width: 105px; height: 45px;
  transition: all 0.3s ease;
  &:hover { background: linear-gradient(180deg, #27A5FF 0.00%, #107DF1 100.00%); }
}

main {
  display: flex;
  align-items: flex-start;
  padding-bottom: 50px;
}

.nav-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 310px;
}      

.nav-item, .mob-nav-item {
  background: white;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 15px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.nav-item:last-child .nav-list { border-top: none; }
.nav-item:nth-child(2), .nav-item:last-child { border-radius: 0 15px 15px 0; }

.nav-item.show .nav-head i { transform: rotate(180deg); }

.nav-head, .mob-nav-head {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 21px 28px 17px;
  > div:first-child {
    background: linear-gradient(180deg, #32B1FF 0.00%, #067BFF 100.00%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
  }
  > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    span:first-child {
      color: var(--text-color);
      font: 16px 'Campton Medium', 'Helvetica Medium';
      line-height: 20px;
    }
    span:nth-child(2) {
      color: var(--dark-grey);
      font: 10px 'Campton Medium', 'Helvetica Roman';
      line-height: 12px;
    }
  }
  button {
    background: transparent;
    border: none;
    color: #D1D1D1;
    display: flex;
    font-size: 14px;
    margin-left: auto;
    i { transition: all 0.3s ease; }
  }
}

.nav-cont {
  overflow: hidden;
  transition: height 0.3s ease;
}

.nav-list, .mob-nav-list {
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.nav-list a, .dropdown-profile > a {
  color: #3A3A3A;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 33px;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 18px;
  padding: 0 10px 0 32px;
  min-height: 50px;
  position: relative;
  transition: all 0.3s ease;
  div {
    min-width: 15px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.nav-list a::after {
  content: '';
  background: linear-gradient(180deg, #2DABFF 0.00%, #0D83FF 100.00%);
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 50px;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-list a.active, .nav-list a:hover {
  background: var(--bg-color);
  gap: 43px;
  &::after { opacity: 1; }
}

.main-content {
  padding: 32px 20px 0 50px;
  width: calc(100% - 310px);
}

.main-title {
  color: #3A3A3A;
  font: 30px 'Campton Medium', 'Helvetica Medium';
  line-height: 35px;
  margin-bottom: 30px;
}

.card-grid1, .card-grid2, .card-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 275px);
  gap: 20px 30px;
  max-width: 1360px;
}
.card-grid2, .card-grid3 { grid-template-columns: repeat(2, 433px); }

.card {
  background: white;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.19);
  padding: 37px 30px 25px;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  &:hover { box-shadow: 0 0 14px rgba(0, 0, 0, 0.29); }
}

.card::after, .card::before {
  content: '';
  background: url('../images/icons/dot.png') 50% / cover no-repeat;
  position: absolute;
  top: 15px;
  width: 6px; height: 6px;
  z-index: 1;
}
.card::after { left: 15px; }
.card::before { right: 15px; }

.card-head {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 8.5px;
  margin-bottom: 16.5px;
  .title {
    font: 20px 'Campton Medium', 'Helvetica Roman';
    line-height: 24px;
  }
}

.price {
  display: flex;
  align-items: flex-end;
  margin: 0;
  font-family: 'Campton Medium', 'Helvetica Roman';
  span:first-child { font-size: 30px; line-height: 36px; }
  span:nth-child(2) { font-size: 14px; line-height: 17px; padding-bottom: 5px; }
  span:last-child { font-size: 10px; line-height: 12px; padding: 0 0 6px 5px; }
}

.services {
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin-bottom: 20px;
  font: 10px 'Campton Light';
  line-height: 13px;
  margin-bottom: 27px;
  padding: 0;
}

.services1, .services2 {
  flex-wrap: wrap;
  align-items: space-between;
  height: 151px;
  column-gap: 80px;
  position: relative;
  &::after {
    content: '';
    background: var(--border-color);
    width: 1px; height: 100%;
    position: absolute;
    left: 161px; top: 0;
  }
  li { max-width: 155px; }
}

.services2 { 
  column-gap: 55px; 
  height: 111px; 
  &::after { left: 180px; }
}

.card-grid3 .card:first-child .services2,
.card-grid3 .card:nth-child(2) .services2 { 
  height: 72px;
} 

.card1 { position: relative; }
.card1 .services2 {
  column-gap: 55px;
  height: 151px;
  &::after { left: 180px; }
}

.order-btn, .order-btn1 {
  background: linear-gradient(180deg, #2BA9FF 0.00%, #0B81FF 100.00%);
  border: none;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 40px;
  font: 11px 'BPG Mrgvlovani';
  line-height: 15px;
}

.order-btn1 {
  background: #F3F3F3;
  color: black;
  position: relative;
  transition: all 0.3s ease;
  > * { position: relative; z-index: 2; }
}

.order-btn1::after, .plugin-card label::after  {
  content: '';
  background: linear-gradient(180deg, #2BA9FF 0.00%, #0B81FF 100.00%);
  border-radius: 10px;
  position: absolute;
  inset: 0; opacity: 0;
  transition: all 0.3s ease;
}

.order-btn1:hover, .plugin-card.active label {
  color: white;
  &::after { opacity: 1; }
}

.currency-form {
  padding: 0 19px 22px 17px;
  height: 67px;
}
.currency-form1 { height: 50px; }

.announce-months-form {
  border-top: 1px solid var(--border-color);
  padding: 17.5px 30px 24px;
}

.currency-form .select2-container { height: 45px !important; width: 100% !important; }
.currency-form1 .select2-container, .announce-months-form .select2-container  { height: 50px !important; width: 100% !important; }
.billing-cycle-cont .select2-container { height: 50px !important; width: 100% !important; }
.inputDomainContact-form .select2-container { height: 40px !important; width: 350px !important; }
.add-fund-form .select2-container { height: 40px !important; width: 100% !important; }

.currency-form .select2-container .select2-selection--single,
.currency-form1 .select2-container .select2-selection--single,
.announce-months-form .select2-container .select2-selection--single,
.inputDomainContact-form .select2-container .select2-selection--single,
.add-fund-form .select2-container .select2-selection--single { 
  background: white !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 10px !important;
  height: 45px !important;
}

.currency-form1 .select2-container .select2-selection--single,
.announce-months-form .select2-container .select2-selection--single,
.billing-cycle-cont  .select2-container .select2-selection--single {
  border-color: #D9D9D9 !important;
  display: flex;
  align-items: center;
  height: 50px !important;
}

.billing-cycle-cont  .select2-container .select2-selection--single {
  border-radius: 10px;
}

.inputDomainContact-form .select2-container .select2-selection--single,
.add-fund-form .select2-container .select2-selection--single {
  border-radius: 10px;
  height: 40px !important;
}

.currency-form .select2-container .select2-selection--single .select2-selection__rendered,
.currency-form1 .select2-container .select2-selection--single .select2-selection__rendered,
.announce-months-form .select2-container .select2-selection--single .select2-selection__rendered,
.billing-cycle-cont .select2-container .select2-selection--single .select2-selection__rendered,
.inputDomainContact-form .select2-container .select2-selection--single .select2-selection__rendered,
.add-fund-form  .select2-container .select2-selection--single .select2-selection__rendered {
  color: var(--text-color) !important;
  display: flex !important;
  align-items: center;
  max-width: 96% !important;
  font: 14px 'Campton Medium', 'Helvetica Medium' !important;
  line-height: 17px !important;
  padding-left: 21px !important;
  height: 100%;
}
  
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}

.select2-dropdown {
  background: rgba(255, 255, 255, 0.9) !important;
  border: none !important;
  border-radius: 0 0 10px 10px !important;
}

.select2-results {
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
}

.select2-results__option {
  padding: 15px 0 15px 20px !important;
}

.select2-container--default .select2-results__option--selected, 
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--border-color) !important;
  color: black !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:last-child {
  border-radius: 0 0 10px 10px;
}

.select2-results__option--disabled { display: none !important; }

.currency-form .select2-container--default .select2-selection--single .select2-selection__arrow,
.currency-form1 .select2-container--default .select2-selection--single .select2-selection__arrow,
.announce-months-form .select2-container--default .select2-selection--single .select2-selection__arrow,
.billing-cycle-cont .select2-container--default .select2-selection--single .select2-selection__arrow,
.inputDomainContact-form .select2-container--default .select2-selection--single .select2-selection__arrow,
.add-fund-form .select2-container--default .select2-selection--single .select2-selection__arrow  {
  background: url(../images/select-arrow.svg) no-repeat center center;
  background-size: contain;
  width: 8.5px !important;
  height: 5px !important;
  right: 20px !important;
  top: 23px !important;
  transform: translateY(-50%);
}
.currency-form1 .select2-container--default .select2-selection--single .select2-selection__arrow,
.announce-months-form .select2-container--default .select2-selection--single .select2-selection__arrow,
.billing-cycle-cont .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 25px !important;
}

.inputDomainContact-form .select2-container--default .select2-selection--single .select2-selection__arrow,
.add-fund-form .select2-container--default .select2-selection--single .select2-selection__arrow  {
  top: 20px !important;
}

footer {
  background: linear-gradient(133deg, #434a56 0.00%, #121418 100.00%);
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 80px 20px 40px !important;
  position: relative;
  z-index: 999;
}

.footer-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1206px; 
}

.footer-content .language-change span:first-child { color: white; }
.footer-content .slider { background: rgba(243, 244, 246, 0.12); }

.footer-logo {
  border-bottom: 1px solid #6A6E71;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.socials {
  display: flex;
  gap: 15px;
  a {
    background: rgba(255,255,255,0.18);
    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: #d12626; }
  }
}

.footertop {
  border-bottom: 1px solid rgba(106, 110, 113, 0.21);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 10px;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.footermenu {
  p:first-child {
    color: white;
    font: 20px 'Gilroy GEO';
    line-height: 26px;
    margin-bottom: 20px;
  }
  ul { gap: 10px; max-width: 237px; }
  a {
    color: white;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    transition: all 0.3s ease;
    &:hover { color: var(--hover-color); }
  }
}

.footermenu ul, .middleitem ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  li { display: flex; }
}

.footermiddle .head {
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 16px 'BPG Mrgvlovani';
  line-height: 22px;
  margin-bottom: 25px;
}

.footermiddle {
  border-bottom: 1px solid #6A6E71;
  padding-bottom: 45px;
  margin-bottom: 40px;
}

.middlemenu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 10px;
}

.middleitem li {
  color: white;
  cursor: pointer;
  font: 12px 'BPG Mrgvlovani';
  line-height: 16px;
}

.middleitem > p, .ip p {
  color: white;
  font: 14px 'BPG Mrgvlovani';
  line-height: 19px;
  margin-bottom: 5px;
}

.copiedTag {
  color: #22b067;
  opacity: 0;
  pointer-events: none;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; }
}

.hiddenText { display: none; }

.ip span {
  color: var(--primary-color);
  font: 16px 'BPG Mrgvlovani';
  line-height: 22px;
}

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

.owner {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font: 14px 'Campton Medium', 'Helvetica Roman';
  line-height: 17px;
  a { color: unset; text-decoration: none; transition: all 0.3s ease;}
  a:hover { color: var(--primary-color); }
}

.owner > div {
  display: flex;
  gap: 35px;
  position: relative;
  &::after, &::before {
    content: '';
    background: white;
    width: 5px; height: 1px;
    position: absolute;
    top: 8px;
  }
  &::after { left: 103px; }
  &::before { right: 70px; }
}

.iso {
  display: flex;
  align-items: center;
  gap: 10px;
  img { width: 42px; }
  a:last-child img { width: 30px; height: 70px; object-fit: contain; }
}

.description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  > div {
    position: relative;
  };
}

.description .num {
  background: linear-gradient(180deg, #2CAAFF 0.00%, #0E85FF 100.00%);
  border-radius: 5px 0 0 5px;
  color: white;
  display: flex;
  align-items: center;
  padding-left: 7px;
  font: 12px 'Campton Medium', 'Helvetica Roman';
  line-height: 16px;
  width: 30px; height: 55px;
}

.description .desc {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  font: 12px 'Campton Medium', 'Helvetica Roman';
  line-height: 16px;
  height: 55px; width: calc(100% - 21px);
  padding: 0 15px 0 18px;
  position: absolute;
  left: 21px; top: 0;
}

.card-note {
  position: absolute;
  bottom: 90px; right: 170px;
}

.toggle-button, .transfer-details .info div {
  background: linear-gradient(180deg, #2AA8FF 0.00%, #0C82FF 100.00%);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
}

.hidden-info {
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.19);
  color: #0D83FF;
  display: none;
  font: 10px 'Campton Medium';
  line-height: 12px;
  padding: 16px 18px;
  width: 180px;
  position: absolute; bottom: 25px;
  p { margin: 0; }
  &.visible { display: block; }
}

.plugin-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  select { display: none; }
}

.plugin-card label {
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 3px rgba(0,0,0,0.1);
  color: black;
  cursor: pointer;
  text-decoration: none;
  font: 16px 'Campton Medium', 'Helvetica Roman';
  padding: 15px 25px;
  transition: all 0.3s ease;
  position: relative;
  > * { position: relative; z-index: 2; }
  &:hover { background: #D5EEFF; }
}

.plugin-card input { display: none; }

.bank-service {
  color: var(--text-color);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 0;
  font: 14px 'Campton Medium';
  line-height: 18px;
  list-style: none;
  margin-bottom: 27px;
  padding: 0;
  li { max-width: 155px; display: flex; }
}

.bank {
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 15.5px;
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  span { max-width: 175px; }
}

.bank div {
  background: rgba(255, 255, 255, 0.71);
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 8px 11px;
  max-height: 42px;
}

.bank > img {
  border-radius: 5px;
  width: 55px; height: 42px;
}

.card-head:has(.bank) {
  align-items: center;
  padding-bottom: 18.5px;
  margin-bottom: 15.5px;
}

.transfer {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  > * { 
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: calc(50% - 15px); 
    max-width: 430px;
    padding: 30px 31px;
  }
}

.transfer-form {
  > p {
    color: var(--text-color);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 20px;
  }
  input {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-shadow: inset 0px 3px 3px rgba(0,0,0,0.16);
    color: #979797;
    font: 16px 'Campton Light', 'Helvetica Light';
    line-height: 20px;
    padding-left: 15px;
    width: 100%; height: 40px;
    &::placeholder{ color: #979797; }
    &:focus { outline: none; }
    &:first-of-type { margin-bottom: 10px; }
    &:nth-of-type(2) { margin-bottom: 25px; }
  }
  button { cursor: pointer;  }
}

.transfer-details > p {
  color: var(--primary-color);
  font: 20px 'Campton Medium', 'Helvetica Medium';
  line-height: 24px;
  margin-bottom: 20px;
}

.transfer-details .info {
  color: var(--dark-grey);
  display: flex;
  gap: 22px;
  p { max-width: calc(100% - 54px); margin-bottom: 0; }
  div { cursor: unset; width: 32px; height: 32px; }
  img { width: 2.83px; }
}

.transfer-details .info:first-of-type {
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 24px;
  margin-bottom: 26px;
  div { margin-top: 12px; }
}

.transfer-details .info:nth-of-type(2) {
  align-items: center;
  font: 12px 'Campton Medium', 'Helvetica Medium';
  line-height: 16px;
}

.promo {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 30px;
  width: 100%;
  > p {
    color: var(--text-color);
    font: 18px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 20px;
  }
  input {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: inset 0px 3px 3px rgba(0,0,0,0.16);
    color: #979797;
    font: 16px 'Campton Light', 'Helvetica Light';
    line-height: 20px;
    padding-left: 15px;
    width: 100%; height: 40px;
    margin-bottom: 20px;
    &::placeholder{ color: #979797; text-align: center; }
    &:focus { outline: none; }
  }
  button { cursor: pointer; max-width: 220px; }
}

.billing {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px 30px;
  width: 280px;
  > p {
    color: var(--primary-color);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 22.5px;
  }
  button { cursor: pointer; }
}

.bill-info {
  color: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 14px 'Campton Medium', 'Helvetica Roman';
  line-height: 17px;
  &:nth-of-type(1) { margin-bottom: 15px; }
  &:nth-of-type(2) { 
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 19.5px;
    margin-bottom: 15.5px; 
  }
  &:nth-of-type(3) { margin-bottom: 20px; }
}

.table-title {
  color: #3A3A3A;
  font: 20px 'Campton Medium';
  line-height: 24px;
  margin-bottom: 30px;
}

.table-cont, .table-cont1 {
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  width: 100%;
  max-width: 885px;
  overflow-x: auto;
}

.table-cont1 { 
  border-radius: 0 0 20px 20px;
  position: relative;
  max-width: 925px; 
  margin-bottom: 30px;
}

.domain-table {
  background: white;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  width: 100%;
}

.domain-table thead {
  color: var(--text-color);
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  th { padding: 25px 0; text-align: start; }
}

.domain-table thead th:first-child {
  padding-left: 50px;
  width: 190px
}

.domain-table thead th:nth-child(2) { width: 215px; }
.domain-table thead th:nth-child(3) { width: 240px; }

.domain-table tbody {
  td { padding: 10px 0; }
  td:first-child {
    color: var(--dark-grey);
    font: 18px 'Campton Medium';
    line-height: 23px;
    padding-left: 50px;
    width: 190px
  }
  p:first-child {
    color: var(--text-color);
    font: 16px 'Campton Medium';
    line-height: 21px;
    margin-bottom: 5px;
  }
  p:last-child {
    color: #7A92A8;
    font: 14px 'Campton Light';
    line-height: 18px;
    margin-bottom: 0;
  }
}

.domain-table tbody tr:nth-child(odd) {
  position: relative;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: var(--bg-color);
    position: absolute;
    inset: 0; z-index: 1;
  }
}

.domain-table tbody tr:last-child {
  td { padding: 20px 0; }
  td:first-child { padding-left: 50px; }
  &::after { border-radius: 0 0 20px 20px; }
}

.choose-domain {
  background: url('../images/domain-bg.png') no-repeat center center / cover;
  border-radius: 20px;
  color: white;
  width: 100%;
  max-width: 885px;
  padding: 30px 20px 40px 40px;
  position: relative;
  margin-bottom: 30px;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: linear-gradient(rgba(56, 76, 190, 0.902) 0%, rgba(79, 114, 242, 0.902) 100%);
    border-radius: 20px;
    position: absolute;
    inset: 0; z-index: 1;
  }
}

.choose-domain > p:first-child {
  font: 30px 'Campton Medium', 'Helvetica Roman';
  line-height: 35px;
  margin-bottom: 7px;
}

.choose-domain > p:nth-child(2) {
  font: 16px 'Campton Medium', 'Helvetica Roman';
  line-height: 24px;
  margin-bottom: 30px;
}

.domain-form {
  background: rgba(255, 255, 255, 0.23);
  border: 1px solid rgba(255, 255, 255, 0.31);
  border-radius: 10px;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 300fr 170fr;
  gap: 10px;
  padding: 10px 15px;
  max-width: 510px;
  button {
    cursor: pointer;
    font-size: 14px;
    line-height: 19px;
  }
}

.inputCont {
  position: relative;
  span {
    color: black;
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
    position: absolute;
    left: 20px; top: 9px;
  }
}

.search {
  background: white;
  border: none;
  border-radius: 10px;
  color: #BCBCBC;
  font: 16px 'BPG LE Studio 02 Caps';
  line-height: 21px;
  padding: 0 20px 0 69px;
  width: 100%; height: 40px;
  &:focus { outline: none; }
}

/* login styles */
.login-cont {
  padding: 55px 20px;
}

.login-form {
  background: white;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  padding: 40px 35px 46px 30px;
  width: 600px;
  > p:first-of-type {
    color: var(--text-color);
    font: 30px 'Campton Medium', 'Helvetica Bold';
    line-height: 40px;
    text-align: center;
    margin: 20px;
  }
}

.forgot-pass {
  color: #CFCFCF;
  font: 12px 'BPG Mrgvlovani';
  line-height: 16px;
  margin-bottom: 28px;
  a {
    color: unset;
    text-decoration: none;
  }
}

.login-btn, .login-form > a:last-child {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px 'BPG Mrgvlovani Caps 2010';
  line-height: 19px;
  width: 100%; height: 40px;
  transition: all 0.3s ease;
}

.login-btn {
  background: var(--primary-color);
  border: none;
  color: white;
  margin-bottom: 10px;
  &:hover { background: var(--hover-color); }
}

.login-form > a:last-child {
  background: white;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  text-decoration: none;
  &:hover {
    background: #404040;
    border-color: #404040;
    color: white;
  }
}
/* login styles */


.register-cont { 
  padding: 55px 20px; 
  .content {
    justify-content: space-between;
    gap: 30px;
  }
}

.register-form {
  background: white;
  border-radius: 20px;
  width: calc(100% - 425px);
  padding: 40px 35px 46px 30px;
  > p:first-of-type {
    color: var(--text-color);
    font: 30px 'Campton Medium', 'Helvetica Bold';
    line-height: 40px;
    margin: 0;
  }
  hr {
    border-color: #DFDFDF;
    margin: 28px 0 20px;
    opacity: 1;
  }
}

.form-title {
  color: var(--primary-color);
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 22px;
  margin-bottom: 15px;
}

.invalid-feedback span {
  color: #D90236;
  font: 10px 'BPG Mrgvlovani';
  line-height: 13px;
  padding-left: 5px;
}

.common-form {
  label {
    color: #8D8D8D;
    font: 12px 'Campton Medium', 'Helvetica Roman';
    line-height: 16px;
  }
  input {
    border-color: #D9D9D9;
    border-radius: 10px;
    color: var(--text-color);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    height: 50px !important;
    padding-left: 20px !important;
  }
  .form-floating > label, .form-floating > .form-control {
    padding-left: 20px !important;
  }
  select {
    border-color: #D9D9D9;
    border-radius: 10px;
    color: var(--text-color);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px !important;
    padding-left: 20px !important;
    height: 50px !important;
    min-height: 50px !important;
    padding-top: 22px !important;
  }
}

.fullname, .phone-mail-cont {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  > div { width: calc(50% - 7.5px); }
}

.phone-mail-cont { 
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px; 
}

.phone-input > span:first-child {
  color: #8D8D8D;
  font: 10px 'Campton Medium', 'Helvetica Roman';
  line-height: 12px;
}

.phone {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  button {
    background: transparent;
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Campton Medium', 'Helvetica Medium' !important;
    line-height: 19px;
    padding-left: 18px !important;
    height: 50px;
    width: 125px !important;
  }
}

.phone .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 124px !important;
}

.phone .bootstrap-select .dropdown-menu {
  min-width: 220px;
}

.phone button:hover {
  border-color: #DBDBDB;
  background: transparent;
}

.phone .bootstrap-select .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

.register-phone { width: 100%; }
.register-phone input {
  font: 14px 'BPG Mrgvlovani' !important;
  line-height: 19px !important;
}

.country-select, .city-select {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
}

.additional-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
  margin-bottom: 30px;
}

.profile-title {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  margin-bottom: 20px;
}

.register-pass { margin-bottom: 10px; }
.confirm-pass { margin-bottom: 30px; }

.eye-icon {
  position: absolute;
  right: 20.5px;
  top: 23px;
  transform: translateY(-50%);
  cursor: pointer;
}

.was-validated .form-control:invalid ~ .eye-icon {
  top: 23px;
}
  
.eye-icon img {
  width: 14.5px;
  height: 11.5px;
}

.service-agreement {
  color: var(--primary-color);
  font: 12px 'BPG Mrgvlovani';
  line-height: 16px;
  display: flex;
  margin-bottom: 20px;
  a { color: unset; }
}

.form-check {
  display: flex !important;
  align-items: center;
}

.agree-terms {
  margin-bottom: 40px;
  .form-check {
    padding-left: 20px !important;
    margin-bottom: 0 !important;
  }
  label {
    color: black;
    font-size: 10px;
    line-height: 13px;
    margin-top: 2px;
    font-family: "BPG Mrgvlovani";
  }
  .invalid-feedback { margin-left: -20px;}
}

.check1, .agree-terms input {
  width: 20px !important; height: 20px !important;
  padding-left: unset !important;
  margin: 6px 10px 0 0;
  background: transparent;
  border: 1px solid var(--text-color) !important;
  border-radius: 3px !important;
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition: all 0.3s ease;
  position: relative;
  &:checked { 
    background: var(--primary-color); 
    border-color: var(--primary-color) !important;
    &::after {
      content: '';
      position: absolute;
      top: 4px; left: 7px;
      width: 4px;
      height: 8px;
      border: solid white;
      border-width: 0 1px 1px 0;
      transform: rotate(45deg);
    }
  }
}

.check1 { margin: 0; }

.register-btn {
  background: #E9E9E9;
  border: none;
  border-radius: 10px;
  color: black;
  font: 14px 'Campton Medium', 'Helvetica Roman';
  line-height: 19px;
  margin-bottom: 20px;
  width: 300px; height: 50px;
  transition: all 0.3s ease;
  &:hover {
    background: var(--primary-color);
    color: white;
  }
}

.account-log {
  color: #2B2B2B;
  font: 12px 'BPG Mrgvlovani';
  line-height: 16px;
  margin-bottom: 0;
  a { color: var(--primary-color); text-decoration: none; }
}

.login-prompt-cont {
  width: 395px; height: 100%;
  position: relative;
}

.login-prompt {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  position: sticky;
  top: 130px;
  p:first-child {
    color: #212121;
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 15px;
  }
  p:nth-child(2) {
    color: #212121;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 30px;
  }
  a {
    background: linear-gradient(180deg, #29a7ff 0.00%, #128aff 100.00%);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    transition: all 0.3s ease;
    width: 100%; height: 45px;
  }
}

.personal-cabinet { 
  min-height: 100vh; 
  padding-bottom: 80px;
}

.cabinet-nav {
  background: white;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  gap: 0;
  position: fixed;
  top: 89px; left: 0;
  height: 100vh; width: 310px;
  overflow-y: auto;
}

.cabinet-nav .nav-list > a:last-child { margin-bottom: 100px; }

.cabinet-head, .profile-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 21px 28px 17px;
  > div:first-child {
    background: linear-gradient(180deg, #32B1FF 0.00%, #067BFF 100.00%);
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 26px;
    width: 45px; height: 45px;
  }
  > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    span:first-child {
      color: black;
      font: 20px 'Campton Bold', 'Helvetica Bold';
      line-height: 20px;
    }
    span:nth-child(2) {
      color: #7B7B7B;
      font: 14px 'Campton Medium';
      line-height: 18px;
    }
  }
}

.cabinet-container {
  padding: 30px 0 0 360px;
  width: calc(100% - 20px);
}

.cabinet-content {
  width: 100%;
  max-width: 925px;
}

.cabinet-content1 {
  display: flex;
  flex-direction: column;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.tile {
  background: linear-gradient(180deg, #192641 0.00%, #304a7d 100.00%);
  border-radius: 10px;
  color: unset;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px 25px 22px 30px;
  > span {
    color: white;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
  }
}

.tile .num {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 36px 'Campton Medium';
  line-height: 40px;
  div {
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
  }
  img {
    transition: transform 0.5s ease;
    transform-origin: center;
  }
}

.tile:hover .num img {
  transform: rotate(180deg) scaleY(-1);
}

.user {
  background: linear-gradient(180deg, #28a6ff 0.00%, #138cff 100.00%);
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 105px; height: 45px;
  position: relative;
  transition: all 0.3s ease;
  > div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 26px;
    width: 100%; height: 100%;
  }
  &.active .dropdown-profile { display: block; }
}

.dropdown-profile {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  display: none;
  padding: 30px 30px 25px;
  position: absolute;
  top: calc(100% + 35px); right: 0;
  width: 325px;
  &::after {
    content: "";
    position: absolute;
    bottom: 100%; right: 30px;
    margin-left: -5px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent rgba(255, 255, 255, 0.98) transparent;
  }
}

.profile-head {
  padding: 0;
  margin-bottom: 25px;
}

.dropdown-profile > a {
  border-radius: 10px;
  gap: 15px;
  padding: 0 10px 0 15px;
  min-height: 40px;
  &:hover {
    background: #F9F9F9;
    div img { filter: unset; }
  }
  div img { filter: brightness(0) invert(0.8); transition: all 0.3s ease; }
}

.dropdown-profile > a:last-child {
  color: #D12528;
  div img { filter: unset; }
}

.user-details {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
}

.user-left {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 80px;
  height: 160px; width: calc(100% - 234px);
  padding: 0 40px;
  position: relative;
  &::after {
    content: '';
    background: var(--border-color);
    width: 1px; height: 100px;
    position: absolute;
    top: 30px; left: 50%;
  }
}

.user-note {
  position: absolute;
  right: 21px; bottom: 26px;
}

.note-toggle-button {
  background: #F0F8FE;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px; height: 31px;
}

.hidden-note {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: none;
  align-items: center;
  justify-content: center;
  font: 10px 'Campton Medium', 'Helvetica Medium';
  line-height: 12px;
  width: 90px; height: 30px;
  position: absolute; bottom: 35px;
  right: 0;
  a {
    color: var(--primary-color);
    text-decoration: none;
  }
  &.visible { display: flex; }
}

.user-left .name, .user-name > div {
  display: flex;
  align-items: center;
  gap: 30px;
  > div:first-child {
    background: linear-gradient(180deg, #2DABFF 0.00%, #0D83FF 100.00%);;
    border-radius: 50%;
    color: white;
    font: 33px 'Campton Medium';
    line-height: 35px;
    width: 75px; height: 75px;
  }
  > div:last-child {
    color: black;
    font: 20px 'Campton Bold', 'Helvetica Medium';
    display: flex;
    flex-direction: column;
    span:first-child { color: #B8B8B8;  font: 16px 'Campton Medium', 'Helvetica Roman'; }
    span:last-child { max-width: 160px; line-height: 20px; }
  }
}

.user-left .address {
  font: 14px 'Campton Medium';
  line-height: 18px;
  > p {
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  div {
    color: #7B7B7B;
    p { margin-bottom: 0; }
  }
}

.user-balance {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 22px;
  width: 225px; height: 160px;
  > p:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 14px 'Helvetica Medium';
    line-height: 17px;
    margin-bottom: 7px;
  }
  a {
    background: linear-gradient(180deg, #29a7ff 0.00%, #128aff 100.00%);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 19px;
    transition: all 0.3s ease;
    width: 100%; height: 40px;
  }
}

#balance {
  color: #7B7B7B;
  font: 26px 'Campton Medium', 'Helvetica Medium';
  line-height: 33px;
  margin-bottom: 7px;
  span { font-size: 20px; }
}

.client-home-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 8px;
}

.client-card {
  background: white;
  border-top: 2px solid var(--primary-color);
  border-radius: 0 0 20px 20px;
  padding: 30px 40px 0;
  min-height: 240px;
  > div:first-child {
    color: #3A3A3A;
    display: flex;
    align-items: center;
    gap: 15px;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 25px;
    div {
      background: #F0F8FE;
      border-radius: 5px;
      width: 46px; height: 46px;
    }
  }
  &:last-child { grid-column: 1 / 3; }
}

.client-card .text {
  color: var(--header-text);
  font: 16px 'Campton Medium', 'Helvetica Roman';
  line-height: 20px;
  a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    &:hover { color: var(--hover-color); }
  }
}
 
.client-card .domain-form {
  background: var(--border-color);
  box-shadow: none;
  padding: 8px 10px;
  grid-template-columns: 1fr;
  margin-bottom: 10px;
  .search { height: 34px; }
  .inputCont span { top: 7px; }
}

.card-buttons {
  display: flex;
  gap: 5px;
  button, a {
    border: none;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    width: calc(50% - 2.5px); height: 40px;
  }
  button:first-child { background: linear-gradient(180deg, #2BA9FF 0.00%, #0B81FF 100.00%); }
  a:last-child { background: linear-gradient(180deg, #FC65AD 0.00%, #FD328E 100.00%); }
}

.client-card .cont {
  display: flex;
  flex-direction: column;
  gap: 40px;
  span {
    color: #3A3A3A;
    font: 16px 'Campton Medium', 'Helvetica Roman';
    line-height: 20px;
  }
  a {
    background: linear-gradient(180deg, #2BA9FF 0.00%, #0B81FF 100.00%);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 19px;
    width: 260px; height: 40px;
  }
}

.edit-form-card {
  background: white;
  border-top: 2px solid var(--primary-color);
  border-radius: 0 0 20px 20px;
  padding: 30px 40px 40px;
  width: 100%;
  margin-bottom: 20px ;
}

.email-params {
  background: white;
  border-top: 2px solid var(--primary-color);
  border-radius: 0 0 20px 20px;
  padding: 35px 40px;
  margin-bottom: 30px;
}

.agree-terms1 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0;
}

.edit-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  button {
    border: none;
    border-radius: 10px;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 19px;
    transition: all 0.3s ease;
    height: 40px;
  }
  button:first-child {
    background: linear-gradient(180deg, #29a7ff 0.00%, #128aff 100.00%);
    color: white; width: 260px;
    &:hover { background: linear-gradient(180deg, #27A5FF 0.00%, #107DF1 100.00%); }
  }
  button:last-child {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--header-text); width: 100px;
    &:hover { background: #F6F6F6; }
  }
}

.invoice-info, .service-info {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
}

.invoice-msg, .filter-invoice {
  background: linear-gradient(180deg, #192641 0.00%, #304a7d 100.00%);
  border-radius: 10px;
  padding: 16px 30px 0;
  height: 160px;
  width: calc((100% - 243px) / 2);
  > p {
    color: white;
    font: 16px 'Camton Light', 'Helvetica Light';
    line-height: 20px;
    margin-bottom: 0;
    max-width: 270px;
  }
}

.invoice-msg .name, .filter-invoice .name, 
.filter-service .name {
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  font: 14px 'BPG Mrgvlovani Caps 2010';
  line-height: 19px;
  margin-bottom: 20px;
  div {
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    width: 46px; height: 46px;
  }
  span { max-width: calc(100% - 61px); }
}

.filter-invoice select, .filter-service select { display: none; }

.invoice-status, .service-status {
  color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font: 12px 'Campton Medium', 'Helvetica Roman';
  line-height: 14px;
}

.status-option {
  display: flex;
  align-items: center;
  gap: 17px;
  label { cursor: pointer; }
}

.check {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.19);
  border-radius: 50% !important;
  cursor: pointer;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  width: 20px; height: 20px;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 2px;
  &:checked::after {
    content: '';
    display: block;
    width: 10px; height: 10px;
    background: linear-gradient(180deg, #29a7ff 0.00%, #128aff 100.00%);
    border-radius: 50%;
    position: absolute;
    top: 4px; left: 4px;
    transition: background 0.3s ease;
  }
}

.common-table {
  background: white;
  border-top: 2px solid var(--primary-color);
  border-radius: 0 0 20px 20px;
  width: 100%;
}

.common-table thead {
  color: var(--text-color);
  font: 15px 'Campton Medium', 'Helvetica Roman';
  line-height: 20px;
}

.common-table th {
  cursor: pointer;
  position: relative;
  &::after, &::before {
    font-family: 'Font Awesome 5 Free';
    color: var(--border-color);
    position: absolute;
    top: 26px;
    transition: all 0.3s ease;
  }
  &::after { content: '\f176'; right: 20px; }
  &::before { content: '\f175'; right: 10px; }
}

.invoice-table { width: 925px; }
.invoice-table th:first-child { 
  padding: 25px 35px; 
  &::after { right: 40px; }
  &::before { right: 30px; }
}


.invoice-table th:nth-child(2) { padding: 25px 12px; }
.invoice-table th:nth-child(3) { padding: 25px 28px 25px 7px; }
.invoice-table th:nth-child(4) { padding: 25px 17px; }

.invoice-table th:nth-child(5) { 
  padding: 25px 66px 25px 38px; 
  &::after { right: 71px; }
  &::before { right: 61px; }
}

.common-table th.sort-asc::after { color: var(--primary-color); }
.common-table th.sort-desc::before { color: var(--primary-color); }

.common-table tbody td {
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  &.unpaid, &.waiting { color: #D12528; }
  &.paid { color: var(--primary-color); }
  &.refunded { color: #02A559; }
  &.canceled { color: var(--header-text); }
}

.invoice-table tbody td:first-child { padding: 23px 35px 21px; }
.invoice-table tbody td:nth-child(2) { padding: 23px 12px 21px; }
.invoice-table tbody td:nth-child(3) { padding: 23px 28px 21px 7px; }
.invoice-table tbody td:nth-child(4) { padding: 23px 17px 21px; }
.invoice-table tbody td:nth-child(5) { padding: 23px 25px 21px 38px; }

.invoice-table tbody tr:last-child td:first-child { padding: 33px 35px 31px; }
.invoice-table tbody tr:last-child td:nth-child(2) { padding: 33px 12px 31px; }
.invoice-table tbody tr:last-child td:nth-child(3) { padding: 33px 28px 31px 7px; }
.invoice-table tbody tr:last-child td:nth-child(4) { padding: 33px 17px 31px; }
.invoice-table tbody tr:last-child td:nth-child(5) { padding: 33px 25px 31px 38px; }

.common-table tbody tr:nth-child(2n+1) {
  position: relative;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: var(--bg-color);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}
.common-table tbody tr:last-child::after { border-radius: 0 0 20px 20px; }

.search-invoice {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 13px;
  position: absolute;
  right: 15px; top: 16px;
  width: 40px; height: 40px;
  transition: all 0.3s ease;
  z-index: 2;
  &:hover {
    background: #FCFCFC;
    border-color: var(--border-color);
    top: 13px;
    width: 333px; height: 50px;
    button img { filter: unset; }
  }
}

.search-invoice input {
  background: transparent;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  font: 12px "Helvetica Light";
  line-height: 16px;
  width: calc(100% - 70px);
  height: 26px;
  position: absolute;
  left: 40px; top: 11px;
  transition: all 0.3s ease;
  &::placeholder { color: var(--text-color); }
  &:focus { outline: none; }
}

.search-invoice button {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  img { 
    margin-left: -1px;
    filter: brightness(0) invert(1); 
    transition: all 0.3s ease;
  }
}

.invoice-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.invoice-quantity-select {
  display: flex;
  align-items: center;
  gap: 10px;
  span {
    color: var(--header-text);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 19px;
  }
  select {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--primary-color);
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 19px;
    width: 70px; height: 40px;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    &:focus { outline: none; }
  }
}

.invoice-pagination {
  display: flex;
  gap: 10px;
  button {
    background: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    border: none;
    border-radius: 10px;
    color: var(--header-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 19px;
    width: 100px; height: 50px;
    transition: all 0.3s ease;
    &:hover {
      background: var(--primary-color);
      color: white;
    }
  }
}

.filter-service, .user-name {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 16px 30px 0;
  height: 160px;
  width: calc((100% - 243px) / 2);
  .name {
    color: var(--header-text);
    margin-bottom: 0;
    div { background: var(--bg-color); }
  }
  .check { border-color: #B7BEC8; }
}

.service-status {
  color: var(--header-text);
  margin-top: -10px;
  > div {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 10px;
  }
}

.user-name {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-table { width: 925px; }
.service-table th:first-child { 
  padding: 25px 30px; 
  width: 292px;
  &::after { right: 160px; }
  &::before { right: 150px; }
}

.service-table th:nth-child(2) { padding: 25px 21px; width: 171px; }
.service-table th:nth-child(3) { padding: 25px 14px 25px 26px; width: 287px; }
.service-table th:nth-child(4) { 
  padding: 25px 17px; 
  &::after { right: 80px; }
  &::before { right: 70px; }
}

.service-table tbody td { padding: 21px 0; }

.service-table tbody td:first-child {
  padding-left: 35px;
  p:first-child { margin-bottom: 1px; }
  p:last-child { color: var(--primary-color); margin-bottom: 0; }
  a { color: unset; text-decoration: none; }
}

.service-table tbody td:nth-child(2) {
  padding-left: 21px;
  p:first-child { margin-bottom: 1px; }
  p:last-child {
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 15px;
    margin-bottom: 0;
  }
}

.service-table tbody td:nth-child(3) { padding-left: 26px; }
.service-table tbody td:nth-child(4) { padding-left: 17px; }

.order-steps, .order-steps1 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 40px;
  margin-bottom: 20px;
  div {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    color: var(--header-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Helvetica Medium';
    line-height: 17px;
    width: 44px; height: 44px;
    img { display: none; }
  }
  div.current {
    background: linear-gradient(180deg, #29a7ff 0.00%, #128aff 100.00%);
    border: none;
    color: white;
    font-size: 20px; line-height: 24px;
    width: 60px; height: 60px;
  }
  div.done {
    background: #00C950;
    border-color: #00C950;
    span { display: none; }
    img { display: flex; }
  }
}

.domain-selection-options {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  max-width: 925px;
  padding: 45px 105px 55px 45px;
  > p:first-child {
    color: var(--header-text);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 30px;
  }
}

.domain-selection-option {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  .check { border-color: var(--primary-color); }
  label {
    color: var(--header-text);
    cursor: pointer;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    width: calc(100% - 35px);
  }
}

.option-data {
  display: none;
  margin: 15px 0 20px 33px;
  &.active { display: block; }
}

.option-form {
  display: grid;
  grid-template-columns: 460fr 70fr 185fr;
  gap: 12px;
  margin-bottom: 10px;
  .inputCont {
    width: 100%; height: 50px;
    input { 
      border: 1px solid var(--border-color);
      border-radius: 10px;
      height: 50px; 
    }
    span { top: 14px; }
  }
  .order-btn { 
    border-radius: 10px;
    font-size: 14px;
    line-height: 19px;
    height: 50px; 
  }
}

.domain-modules {
  color: var(--header-text);
  font: 14px 'BPG LE Studio 02 Caps';
  line-height: 19px;
  position: relative;
  > * {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    align-items: center;
    width: 100%;
  }
  .selected {
    cursor: pointer;
    display: flex;
    justify-content: center;
    height: 50px;
    -webkit-text-stroke: 0.5px var(--header-text);
  }
  ul {
    background: white;
    display: none;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 20px 0;
    margin: 0;
    position: absolute;
    z-index: 2;
    top: 60px; left: 0;
    li { cursor: pointer; }
  }
}

.domain-modules.active ul { display: flex; }

.domain-search-result {
  display: flex;
  flex-direction: column;
  gap: 10px;
  > div {
    border-radius: 10px;
    padding: 23px 30px;
  }
}

.domain-available {
  background: var(--bg-color1);
  border: 1px solid #D4EAFF;
  > p:first-child {
    color: var(--primary-color);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 10px;
  }
  > p:nth-child(2) {
    color: var(--dark-grey);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 0;
  }
}

.domain-unavailable {
  background: #FDF7F7;
  border: 1px solid #F7DBDC;
  > p:first-child {
    color: #D12528;
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 0;
  }
  > p:nth-child(2) {
    color: var(--dark-grey);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.order-config {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 925px;
}

.order-config-left {
  width: calc(100% - 315px);
  > div {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    padding: 35px 35px 35px 47px;
    margin-bottom: 15px;
  }
}

.config-msg {
  p:first-child {
    color: var(--header-text);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 8px;
  }
  p:nth-child(2) {
    color: var(--text-color1);
    font: 14px 'Campton Light', 'Helvetica Light';
    line-height: 18px;
    margin-bottom: 2px;
  }
  p:last-child {
    color: var(--primary-color);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 0;
  }
}

.product-info {
  > p:first-child {
    color: var(--text-color);
    font: 20px 'Campton Medium', "Helvetica Medium";
    line-height: 24px;
    margin-bottom: 0;
  }
  hr {
    border-color: var(--border-color);
    opacity: 1;
    margin: 9px 0 20px;
  }
  ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 12px;
    font: 12px 'Campton Light', 'Helvetica Light';
    line-height: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
    height: 130px; max-width: 360px;
  }
  > p:last-of-type {
    color: var(--text-color1);
    font: 14px 'Campton Light', 'Helvetica Light';
    line-height: 19px;
    margin-bottom: 20px;
  }
}

.addon-products {
  > p:first-child {
    color: var(--primary-color);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 20px;
  }
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.addon-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px 20px 0;
  min-height: 140px;
  position: relative;
  > p:first-of-type {
    color: var(--header-text);
    display: -webkit-box;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    height: 30px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 19px;
  }
  .prices {
    color: var(--text-color);
    font: 12px 'Campton Medium', 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 0;
    span {
      color: var(--primary-color);
      font-size: 14px 'Campton Medium';
      line-height: 18px;
    }
  }
}

.addon-label {
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  margin: 0 0 8px;
  transition: all 0.3s ease;
  label { cursor: pointer; max-width: calc(100% - 20px); }
}

.addon-card:has(input:checked) > div:first-child {
  pointer-events: auto;
  opacity: 1;
}

.addon-card:has(input:checked) .addon-label { margin-top: 10px; }

.addon-card > div:first-child {
  background: var(--primary-color);
  border-radius: 10px 10px 0 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 8px 'Campton Medium', 'Helvetica Roman';
  line-height: 10px;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  width: calc(100% + 1px); height: 24px;
  transition: opacity 0.3s ease;
}

.assistance-msg {
  background: var(--bg-color1) !important;
  border: 1px solid #D4EAFF !important;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0 !important;
  padding: 25px 10px 25px 27px !important;
  div {
    background: white;
    border-radius: 50%;
    width: 24px; height: 24px;
  }
  p {
    color: var(--dark-grey);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 21px;
    margin: 0;
    max-width: calc(100% - 39px);
    a { 
      color: var(--primary-color);
      text-decoration: none;
      transition: all 0.3s ease;
      &:hover { color: var(--hover-color); }
    }
  }
}

.continue-btn {
  background: var(--header-text);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font: 14px 'BPG Mrgvlovani';
  line-height: 19px;
  width: 230px; height: 50px;
  position: relative;
  > * { position: relative; z-index: 2; }
  &::after {
    content: '';
    background: linear-gradient(180deg, #29a7ff 0.00%, #128aff 100.00%);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}
.continue-btn:hover::after { opacity: 1; }

.order-summery {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 23px 30px 27px;
  width: 280px;
  > p:first-child {
    color: var(--header-text);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 20px;
  }
  hr {
    border-color: var(--border-color);
    opacity: 1;
    margin: 10px 0 20px;
  }
}

.product-name {
  color: var(--primary-color);
  font: 16px 'Campton Bold', 'Helvetica Bold';
  line-height: 21px;
  margin-bottom: 4px;
}

.product-group {
  color: var(--header-text);
  font: 14px 'Campton Italic';
  line-height: 19px;
  margin-bottom: 25px;
}

.continue-btn1 {
  font-size: 12px;
  line-height: 16px;
  width: 100%;
  margin-bottom: 10px;
  &::after { opacity: 1; }
}

.order-info {
  color: var(--dark-grey);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font: 14px 'Campton Medium', 'Helvetica Roman';
  line-height: 18px;
  margin-bottom: 10px;
  span:first-child { width: 100px; } 
  &:last-of-type { margin-bottom: 30px; align-items: center; }
}

#total {
  color: var(--primary-color);
  font-size: 26px;
  line-height: 30px;
}

.previous-btn {
  background: #F1F5F9;
  border-radius: 10px;
  color: var(--header-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 12px 'BPG Mrgvlovani';
  line-height: 16px;
  width: 100%; height: 50px;
  transition: all 0.3s ease;
  &:hover { background: var(--border-color); }
}

.domain-config-msg {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 35px 30px 30px 47px;
  max-width: 925px;
  margin-bottom: 15px;
  > p:first-child {
    color: var(--header-text);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 8px;
  }
  > div {
    color: var(--text-color1);
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 15px;
  }
  > p:last-child {
    color: var(--primary-color);
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 18px;
    margin-bottom: 0;
  }
}

.step3-summery {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  padding: 24px 60px 34px 47px;
  max-width: 925px;
  position: relative;
  &::after {
    content: '';
    background: var(--border-color);
    width: 1px; height: 140px;
    position: absolute;
    top: 24px; right: 345px;
  }
}

.step3-summery-left {
  width: calc(100% - 222px);
  max-width: 470px;
  > div:first-child {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
}

.summery-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  > p { margin-bottom: 0; }
  > p:first-child {
    color: var(--header-text);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;  
  }
  > p:nth-child(2) {
    color: var(--text-color1);
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 18px;
  }
  > p:nth-child(3) {
    color: var(--text-color);
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 18px;
    span:first-child { color: var(--primary-color); }
  }
}

.summery-group:nth-child(2) {
  > p:nth-child(2) { color: #00C950; }
}

.step3-summery-right {
  width: 222px;
}

.hide-info {
  color: var(--header-text);
  display: flex;
  align-items: center;
  gap: 15px;
  font: 16px 'Campton Medium', 'Helvetica Roman';
  line-height: 20px;
  label { cursor: pointer; max-width: calc(100% - 35px); }
}

.cart-left {
  width: calc(100% - 315px);
}

.cart {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 26px 30px;
  margin-bottom: 60px;
  position: relative;
  > p:first-child {
    color: var(--primary-color);
    font: 18px 'Campton Medium', 'Helvetica Roman';
    line-height: 22px;
    margin-bottom: 20px;
  }
}

#btnEmptyCart {
  background: var(--secondary-color);
  border: none;
  border-radius: 0 0 20px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 12px 'Campton Light', 'Helvetica Roman';
  line-height: 15px;
  position: absolute;
  right: 30px; bottom: -40px;
  width: 205px; height: 40px;
}

.cart-head {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  display: flex;
  gap: 50px;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  padding-bottom: 12.5px;
  span:first-child { width: 100%; max-width: 217px; }
}
.mob-cart-head { display: none; }

.cart-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  > div:first-of-type { 
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%; 
    max-width: 217px; 
  }
}

.item-name {
  color: var(--text-color);
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 21px;
}

.item-group {
  color: var(--text-color1);
  font: 12px 'Campton Medium', 'Helvetica Medium';
  line-height: 16px;
}

.item-domain {
  color: var(--primary-color);
  font: 12px 'Campton Light', 'Helvetica Roman';
  line-height: 15px;
}

.item-personal {
  color: var(--text-color);
  display: block;
  font: 10px 'Campton Light', 'Helvetica Roman';
  line-height: 12px;
  margin-top: 4px;
}

.item-price {
  width: 170px;
  margin-left: 50px;
  span:first-child {
    color: var(--primary-color);
    font: 16px 'Campton Medium';
    line-height: 20px;
  }
  span:nth-child(2) {
    color: #979797;
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 16px;
  }
}

.item-price1 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.edit-cart {
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font: 12px 'Campton Medium', 'Helvetica Medium';
  line-height: 16px;
  margin-left: 30px;
}

.cart-item button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  svg { transition: all 0.3s ease; }
  &:hover svg { fill: #636363; }
}

.additional-item {
  background: #F4F6F9;
  border-bottom: 1px solid var(--primary-color);
  padding: 20px;
  .item-price { margin-left: 30px; }
  &:last-of-type { border-bottom: none; }
}

.item-cycle-cont {
  position: relative;
  > div:first-child {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 14px 'Campton Medium';
    line-height: 18px;
    padding: 0 15px 0 19px;
    width: 100px; height: 40px;
    margin-bottom: 2px;
    p { margin: 0; }
  }
  span {
    display: block;
    font-size: 9px !important;
    line-height: 11px !important;
  }
}

.item-cycle-cont ul {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 0 20px 20px 20px;
  color: var(--text-color);
  display: none;
  list-style: none;
  font: 14px 'Campton Medium';
  line-height: 18px;
  position: absolute;
  z-index: 3;
  width: 160px; left: 0;
  top: 75%;
  padding: 0; margin: 0;
  li {
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    padding: 15px 0 15px 19px;
    &:last-child { border-bottom: none; }
  }
}

.item-cycle-cont.active {
  > div:first-child { border-radius: 10px 10px 10px 0; }
  ul { display: block; }
}

.final-step {
  max-width: 925px;
  > div, > form {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}

.warning-msg {
  padding: 35px 30px 40px 47px;
  margin-bottom: 15px;
  > p:first-child {
    color: var(--header-text);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 8px;
  }
  div {
    color: var(--text-color1);
    font: 14px 'Campton light', 'Helvetica Roman';
    line-height: 17px;
    b, strong { color: black; }
  }
}

.existing-account {
  padding: 29px 20px 35px 47px;
  margin-bottom: 20px;
  > p:first-child {
    color: var(--header-text);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 25px;
  }
  > div {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .check { border-color: var(--primary-color); }
}

.existing-account label {
  display: flex;
  align-items: center;
  gap: 120px;
  position: relative;
  p { margin-bottom: 0; }
  div:first-child {
    p:first-child {
      font: 16px 'Campton Bold', 'Helvetica Bold';
      line-height: 20px;
    }
    p:last-child {
      color: var(--primary-color);
      font: 12px 'Campton Medium', 'Helvetica Medium';
      line-height: 16px;
    }
  }
  div:last-child {
    color: #7B7B7B;
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 16px;
  }
  &::after {
    content: '';
    background: var(--border-color);
    width: 1px; height: 48px;
    position: absolute;
    top: 0; left: 50%;
  }
}

.additional-account {
  color: var(--header-text);
  display: flex;
  align-items: center;
  gap: 35px;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  padding: 22px 47px;
  margin-bottom: 15px;
  label { cursor: pointer; width: calc(100% - 55px); }
  .check { border-color: var(--primary-color); }
}

.additionalAcc-form {
  padding: 40px 30px 47px 47px;
  display: none;
  margin-bottom: 20px;
  &.active { display: block; }
}

.payment-details {
  padding: 38px 42px 35px 47px;
  margin-bottom: 15px;
  > p:first-child {
    color: var(--header-text);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 20px;
  }
  .continue-btn { width: 230px; }
  hr {
    border-color: var(--border-color);
    opacity: 1;
    margin: 30px 0;
  }
}

#totalDueToday {
  color: var(--header-text);
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  margin-bottom: 15px;
  span {
    color: var(--primary-color);
    font-size: 20px;
  }
}

#paymentMsg {
  color: var(--text-color1);
  font: 14px 'Campton Light', 'Helvetica Roman';
  line-height: 17px;
  margin-bottom: 25px;
  a {
    color: var(--primary-color);
    font-family: 'Campton Medium', 'Helvetica Medium';
    text-decoration: none;
  }
}

.payment-method {
  color: var(--header-text);
  display: flex;
  align-items: center;
  gap: 15px;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 18px;
  margin-bottom: 20px;
  .check { border-color: var(--primary-color); }
}

.payment-details .form-check {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 15px;
  label {
    color: var(--text-color);
    font: 16px 'Campton Light', 'Helvetica Roman';
    line-height: 20px;
    a { color: unset; text-decoration: none; }
  }
  &:last-of-type { margin-bottom: 30px; }
}

.inputDomainContact {
  padding: 38px 30px 38px 47px;
  margin-bottom: 15px;
  > p:first-child {
    color: var(--header-text);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 5px;
  }
  > p:nth-child(2) {
    color: var(--text-color1);
    font: 14px 'Campton Light', 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 15px;
  }
}

.addingnew-form {
  display: none;
  padding-top: 20px;
  &.active { display: block; }
}

.success-msg {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 100px;
  margin-top: 70px;
  max-width: 925px;
  > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  p {
    color: var(--header-text);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
  a { width: 230px; margin-bottom: 0; }
  .order-steps { padding: 0; }
}


.order-steps1 { padding: 0; margin-bottom: 40px; }
.order-steps1 .step {
  background: linear-gradient(180deg, #29a7ff 0%, #128aff 100%);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.order-steps1 .step span {
  position: absolute;
  color: white;
  transition: opacity 0.3s ease;
}

.order-steps1 .step img {
  position: absolute;
  width: 20px;
  opacity: 0;
  transform: scale(0.5);
  display: unset;
}

.order-steps1.animate .step {
  animation: stepDone 0.6s ease forwards;
}

.order-steps1.animate .step span {
  animation: hideNumber 0.3s ease forwards;
  animation-delay: inherit;
}

.order-steps1.animate .step img {
  animation: checkIn 0.4s ease forwards;
  animation-delay: inherit;
}

.order-steps1.animate .step:nth-child(1) { animation-delay: 0.2s; }
.order-steps1.animate .step:nth-child(2) { animation-delay: 0.5s; }
.order-steps1.animate .step:nth-child(3) { animation-delay: 0.8s; }
.order-steps1.animate .step:nth-child(4) { animation-delay: 1.1s; }
.order-steps1.animate .step:nth-child(5) { animation-delay: 1.4s; }

@keyframes stepDone {
  0% { background: #e6e6e6; }
  60% { background: #02e45c; }
  100% { background: #00C950; }
}

@keyframes checkIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes hideNumber {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.assistance-msg1 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  margin-bottom: 20px !important;
  padding: 18px 10px 18px 30px !important;
  img { transform: scale(1.1); }
}

.add-fund-form > .assistance-msg {
  padding: 30px 50px !important;
  margin-bottom: 0;
}

.add-funds {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  > div { width: calc(50% - 5px); }
}

.fund-deposit {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 48px 40px 40px;
  > div {
    border-bottom: 1px solid var(--border-color);
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    padding-bottom: 23.5px;
    margin-bottom: 23.5px;
    p { 
      margin-bottom: 0;
      span:first-child { color: var(--primary-color); }
    }
    &:last-of-type { margin-bottom: 35.5px; }
  }
  > p:last-child {
    color: var(--header-text);
    font: 16px 'Campton Light', 'Helvetica Light';
    line-height: 20px;
    margin-bottom: 0;
  }
}

.fund-form {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
  padding: 28px 40px 30px;
  button {
    background: linear-gradient(180deg, #27A5FF 0.00%, #107DF1 100.00%);
    border: none;
    border-radius: 10px;
    color: white;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    width: 100%; height: 40px;
  }
}

.fund-form > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  label {
    color: var(--header-text);
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 15px;
  }
  input {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #8D8D8D;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    padding-left: 20px;
    width: 100%; height: 40px;
    &:focus { outline: none; }
  }
  .invalid-feedback { margin-top: 0; }
}

.management-cont {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
  padding: 40px 30px 45px 40px;
  > p:first-child {
    color: #3A3A3A;
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 45px;
  }
  hr {
    border-color: var(--border-color);
    opacity: 1;
    margin: 0 0 20px;
  }
}

#usersFound {
  color: #B7BEC8;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 18px;
  margin-bottom: 18px;
}

.management-head {
  background: var(--bg-color1);
  border-radius: 10px;
  color: var(--header-text);
  display: flex;
  align-items: center;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 18px;
  padding-left: 30px;
  height: 40px;
  margin-bottom: 20px;
  p { margin-bottom: 0; }
  p:first-child { width: 460px; }
}

.manage-user-cont {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
  &:last-child { margin-bottom: 0; }
}

.manage-user {
  display: flex;
  align-items: center;
  position: relative;
}

.manage-user-data {
  display: flex;
  align-items: center;
  width: 490px;
}

.owner-label {
  background: var(--secondary-color);
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 18px;
  width: 75px; height: 40px;
}

.user-login-info {
  padding-left: 15px;
  p:first-child {
    color: var(--primary-color);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 4px;
  }
  p:last-child {
    color: #B7BEC8;
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 16px;
    margin-bottom: 0;
  }
}

.user-actions {
  display: flex;
  gap: 10px;
  > button {
    border: none;
    border-radius: 10px;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
    height: 40px;
    transition: all 0.3s ease;
    &:disabled {
      cursor: not-allowed;
      opacity: 0.51;
    }
  }
}

.manage-perm-btn, .user-actions > button:first-child,
.keep-user {
  background: white;
  border: 1px solid var(--border-color) !important;
  color: var(--header-text);
  width: 185px;
  &:hover { background: var(--bg-color1); }
}

.remove-access-btn, .user-actions > button:last-child,
.remove-user {
  background: #D12528;
  color: white;
  width: 167px;
}

.account-cat {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.invite-user {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 310px; height: 66px;
  padding: 20px 40px;
  &.active {
    width: 100%; height: unset;
    .invite-body { display: block; }
  }
}

.invite-head {
  color: #3A3A3A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 20px 'Campton Medium', 'Helvetica Medium';
  line-height: 24px;
  transition: all 0.3s ease;
}

.invite-body {
  display: none;
  padding-top: 25px;
  > input {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #B7BEC8;
    font: 14px 'Campton Light', 'Helvetica Light';
    line-height: 18px;
    padding-left: 20px;
    margin-bottom: 19px;
    width: 100%; height: 40px;
    &:focus { outline: none; }
  }
  .order-btn {
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
    width: 180px;
  }
}

.choose-permissions {
  display: flex;
  gap: 25px;
  font: 12px 'Campton Medium', 'Helvetica Medium';
  line-height: 15px;
  margin-bottom: 25px;
  input { border-color: var(--border-color); }
}

.permissions-list, .added-user-actions {
  color: var(--text-color);
  display: none;
  flex-direction: column;
  gap: 15px;
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 21px;
  margin-bottom: 30px;
  div {
    display: flex;
    gap: 17px;
    label { 
      cursor: pointer;
      max-width: calc(100% - 37px); 
    }
  }
  input { border-color: var(--border-color) !important; }
  &.active { display: flex; }
}

.remove-access-form {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -10px; bottom: 0;
  width: 400px; height: 205px;
  &.active { display: flex; }
}

.remove-access-form > p {
  color: var(--dark-grey);
  font: 18px 'Campton Medium', 'Helvetica Medium';
  line-height: 22px;
  max-width: 290px;
  text-align: center;
  margin-bottom: 30px;
  span { color: var(--primary-color); }
}

.remove-access-form svg {
  cursor: pointer;
  fill: #B7BEC8;
  position: absolute;
  right: 30px; top: 30px;
  transition: all 0.3s ease;
  &:hover { fill: #D12528; }
}

.keep-user, .remove-user {
  border: none;
  border-radius: 10px;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 18px;
  transition: all 0.3s ease;
  width: 127px; height: 40px;
}
.keep-user { margin-right: 6px; }

.manage-user-cont.active .added-user-actions { display: flex; }
.added-user-actions { 
  margin-bottom: 0; 
  .order-btn {
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
    width: 180px;
  }
}

.additional-account1, .existing-account1 {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.existing-account1 {
  position: relative;
  .user-note { right: 38px; bottom: 31px; }
}

.additional-account1 svg {
  margin-left: auto;
  transition: all 0.3s ease;
}

.additional-account1 label { width: calc(100% - 100px); }

.edit-form1 {
  display: none;
  margin-bottom: 40px;
  &.active { display: block; }
}

.add-contact-form {
  display: none;
  &.active { display: block; }
}

.add-contact-form .edit-form-card {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.add-contact-form .email-params, .edit-form1 .email-params,
.edit-form1 .edit-form-card { box-shadow: 0 3px 6px rgba(0,0,0,0.16); }

.security {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 40px 40px 60px;
  > p:first-child {
    color: #3A3A3A;
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 15px;
  }
  > p:nth-child(2) {
    color: var(--secondary-color);
    font: 26px 'Campton Medium', 'Helvetica Medium';
    line-height: 32px;
    margin-bottom: 25px;
  }
}

.security .msg {
  background: var(--bg-color1);
  border: 1px solid #D4EAFF;
  border-radius: 5px;
  color: var(--dark-grey);
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 21px;
  padding: 29px 45px 29px 30px;
  margin-bottom: 25px;
}

.security .msg1 {
  color: var(--dark-grey);
  font: 14px 'Campton Light', 'Helvetica Light';
  line-height: 18px; 
  padding-left: 30px;
}

.sign-change {
  color: var(--dark-grey);
  display: flex;
  align-items: center;
  font: 12px 'Campton Medium', 'Helvetica Medium';
  line-height: 16px; 
  padding-left: 30px;
  margin-bottom: 35px;
  p { margin-bottom: 0; }
  .switch { margin: 0 15px 0 10px; }
}

.email-table th:first-child { 
  padding: 25px 30px; 
  width: 280px;
  &::after { right: 60px; }
  &::before { right: 50px; }
}

.email-table th:nth-child(2) { 
  padding: 25px 21px;
  width: 210px; 
  &::after { right: 70px; }
  &::before { right: 60px; }
}
.email-table th:nth-child(3)::after,
.email-table th:nth-child(3)::before { content: none; }

.email-table tbody td { padding: 21px 0; }

.email-table tbody td:first-child {
  padding-left: 35px;
  p:first-child { margin-bottom: 1px; }
  p:last-child { color: var(--primary-color); margin-bottom: 0; }
}

.email-table tbody td:nth-child(2) {
  padding-left: 21px;
  p:first-child { margin-bottom: 1px; }
  p:last-child {
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 15px;
    margin-bottom: 0;
  }
}

.email-table tbody td:nth-child(3) { 
  padding-right: 85px; 
  a {
    color: var(--text-color1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-left: auto;
    max-width: 80px;
    &:hover {
      color: var(--primary-color); 
      gap: 14px; 
    }
  }
}

.email-table tbody tr:last-child td:first-child,
.email-table tbody tr:last-child td:nth-child(2) { padding-top: 33px; padding-bottom: 33px; }

.profile-form, .security-settings, .security-settings1 {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 40px;
  margin-bottom: 20px;
  > p:first-child {
    color: var(--primary-color);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 26px;
    margin-bottom: 12px;
  }
  .edit-btns { justify-content: flex-start; }
  &:nth-of-type(2) { margin-bottom: 0; }
}

.new-pass-cont {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  button {
    background: white;
    border: none;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--header-text);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    width: 190px; height: 50px;
    transition: all 0.3s ease;
    &:hover { background: #F6F6F6; }
  }
}

.new-pass { width: calc(100% - 200px); }

.pass-tips {
  background: var(--bg-color1);
  border: 1px solid #D4EAFF;
  border-radius: 5px;
  padding: 28px 20px;
  margin-bottom: 15px;
  .text {
    color: var(--dark-grey);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
  }
}

.pass-tips > div:first-child {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 7px;
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 21px;
  margin-bottom: 19px;
  div {
    background: var(--primary-color);
    border-radius: 50%;
    width: 24px; height: 24px;
    img { filter: brightness(0) invert(1); }
  }
}

.security-settings, .security-settings1 {
  margin-bottom: 0;
  min-height: 640px;
  .text {
    color: var(--dark-grey);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
  }
}

.user-details1 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  .user-name { border-radius: 20px; }
}

.service-upgrade {
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 25px 20px;
  width: calc(100% - 586px);
  min-width: 300px;
  button {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    transition: all 0.3s ease;
    width: 100%; height: 50px;
    i { color: var(--secondary-color); }
    &:hover { background: #F6F6F6; }
  }
}

.overdue-invoice {
  background: #FDF7F7;
  border: 1px solid #F7DBDC;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 15px 40px;
  margin-bottom: 20px;
  p {
    color: #D12528;
    font: 18px 'Campton Medium', 'Helvetica Medium';
    line-height: 21px;
    margin-bottom: 0;
  }
  a {
    background: white;
    border-radius: 10px;
    color: var(--dark-grey);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
    width: 180px; height: 40px;
    transition: all 0.3s ease;
    &:hover {
      background: var(--header-text);
      color: white;
    }
  }
}

.service-details, .service-details1 {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  margin-bottom: 30px;
}

.service-details .details, .service-details1 .details1 {
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  width: calc(100% - 305px);
  div {
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    height: 40px; 
    margin-bottom: 10px;
  }
  div:last-child { margin-bottom: 0; }
  div:nth-child(odd) { background: var(--bg-color1); }
  div:nth-child(even) { color: #686868; }
}

.service-details1 .details1 { width: calc(100% - 465px); }

.service-status-cont, .service-status-cont1 {
  position: relative;
  width: 275px; min-height: 389px;
  .stat {
    border-radius: 20px 20px 0 0;
    color: white;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    text-align: center;
    position: absolute;
    top: 0; left: 0;
    padding-top: 14px;
    height: 71px; width: 100%;
  }
  .waiting { background: #F89406; }
  .active { background: var(--primary-color); }
  .card {
    border: 1px solid var(--primary-color) !important;
    position: absolute;
    top: 44px;
    ul {
      font-size: 12px;
      line-height: 16px;
      gap: 18px;
      margin-bottom: 0; 
    }
  }
}

.service-status-cont1 {
  width: 435px;
  .card ul { height: 172px; gap: 10px; }
}

.hosting-info {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 0;
  padding: 40px 40px 30px;
  > p:first-child {
    color: var(--primary-color);
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 26px;
    margin-bottom: 30px;
  }
  hr {
    border-color: var(--border-color);
    margin: 35px 0 30px;
    opacity: 1;
  }
}

.hosting-info .info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  div div {
    background: var(--bg-color1);
    border-radius: 10px;
    font: 18px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    padding: 14px 30px;
    margin-bottom: 18px;
  }
  div p {
    color: var(--primary-color);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 21px;
    padding-left: 30px;
    margin-bottom: 0;
  }
}

.hosting-info-links, .hosting-info-links1,
.hosting-info-links2 {
  display: flex;
  justify-content: center;
  gap: 10px;
  a {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--dark-grey);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    width: 200px; height: 50px;
    transition: all 0.3s ease;
    &:hover { background: #F6F6F6; }
  }
  a:first-child {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
  }
}

.hosting-info-links1 {
  > div { display: flex; gap: 10px; }
  justify-content: space-between;
  > a {
    background: var(--bg-color1) !important;
    border-color: var(--bg-color1) !important;
    color: var(--header-text) !important;
  }
}

.hosting-info-links2 a { 
  height: 40px; width: 50%;
}

.mob-nav-container {
  box-shadow: 0 3px 6px rgb(0, 0, 0, 0.16);
  border-radius: 0 15px 15px 0;
  display: none;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 80px;
  transform: translateX(0);
  transition: transform 0.4s ease, max-width 0.4s ease;
  z-index: 998;
  overflow: hidden;
  &:first-child { border-radius: 0 0 15px 0; }
}

.mob-nav-container.show {
  transform: translateX(0);
  max-width: calc(100% - 10px);
}

.mob-nav-container:first-child.show { max-width: 100%; }

.mob-cabinet-nav {
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.mob-cabinet-nav .mob-nav-list > div:last-child { 
  margin-bottom: 200px; 
}

.mob-nav-head {
  width: 100%;
  position: relative;
  > div:first-child { flex-shrink: 0; }
  > div:nth-child(2) {
    width: 140px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  } 
  button {
    background: #F8F8F8;
    border-radius: 50%;
    color: var(--primary-color);
    align-items: center;
    justify-content: center;
    font-size: 12px;
    width: 35px; height: 35px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
}

.mob-nav-list {
  position: relative;
  > div {
    display: flex;
    align-items: center;
    height: 50px;
    position: relative;
    div {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 80px; height: 50px;
      flex-shrink: 0;
    }
    &.active::after {
      content: '';
      background: linear-gradient(180deg, #2DABFF 0.00%, #0D83FF 100.00%);
      position: absolute;
      left: 0; top: 0;
      width: 4px; height: 50px;
      transition: all 0.3s ease;
    }
  }
  a {
    color: #3A3A3A;
    text-decoration: none;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
}

.mob-nav-item  { border: none; }

.mob-nav-item.show .mob-nav-head div:nth-child(2),
.mob-nav-item.show .mob-nav-head button,
.mob-nav-item.show .mob-nav-list a {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  flex-shrink: 0;
}

.seeMore, .mob-invoices, .mobile-filter-tgl, .mob-questions  { display: none; }

.mob-invoice-card, .mob-service-card, .mob-question-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 25px 30px;
}

.mob-invoice-card > div, .mob-service-card > div, .mob-question-card > div {
  border-bottom: 1px solid #E3E3E3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 11px;
  span:first-child {
    color: #444444;
    font: 12px 'Campton Light', 'Helvetica Roman';
    line-height: 15px;
    max-width: 75px;
  }
  span:last-child {
    color: var(--text-color);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 21px;
  }
}

.mob-invoice-card > div:last-child,
.mob-service-card > div:last-child,
.mob-question-card > div:last-child {
  align-items: center;
  border-bottom: none;
  padding-bottom: 0;
  div {
    border-radius: 10px;
    color: white;
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 17px;
    padding: 9px 17px;
  }
  div.unpaid { background: #D12528; }
  div.paid { background: var(--secondary-color); }
  div.refunded { background: #02A559; }
  div.canceled { background: var(--text-color); }
  div.waiting { background: #E19600; }
}

.mob-service-card > div p {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 0;
  span:first-child {
    color: var(--text-color);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 21px;
  }
  span:last-child {
    color: var(--primary-color);
    font: 10px 'Campton Medium', 'Helvetica Medium';
    line-height: 13px;
  }
}

/* mobile filter */
.mobile-search-items {
  height: 100%;
  > div:last-child {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
  }
  .reset {
    background: transparent;
    border: none;
    color: #D12528;
    display: block;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 15px;
    margin-top: auto;
    width: 200px !important;
    height: unset !important;
    padding-left: 0 !important;
  }
}

.mobile-filter-btn {
  background: var(--primary-color);
  border: none;
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  width: 100%; height: 45px;
  margin-bottom: 100px;
}

.mobile-filter {
  background: white;
  border-radius: 10px 10px 0 0;
  padding: 30px 20px 60px;
  position: fixed;
  bottom: -100%;
  left: 0;
  height: calc(100% - 42px);
  width: 100vw;
  transition: all 0.3s ease;
  z-index: 1002;
  &.active { bottom: 0; }
  hr {
    border-color: var(--border-color);
    margin: 25px -20px;
    opacity: 1;
  }
}

.mobile-filter-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  margin-bottom: 20px;
  p {
    color: var(--header-text);
    -webkit-text-stroke: 0.5px var(--header-text);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    display: flex;
    gap: 10px;
    line-height: 19px;
    margin-bottom: 0;
  }
  button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
}

.filter-search {
  position: relative;
  input {
    color: black;
    box-shadow: inset 0px 3px 3px rgba(0,0,0,0.16);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0 65px 0 25px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px;
    width: 100%;
    &:focus { outline: none; }
  }
  div {
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%; right: 20px;
    transform: translateY(-50%);
    width: 35px; height: 35px;
    img { filter: brightness(0) invert(1); }
  }
}

.mob-emails { 
  display: none; 
  > div { border-bottom: 1px solid var(--border-color); }
}

.mob-emails-title {
  color: var(--secondary-color);
  font: 12px 'Campton Medium', 'Helvetica Medium';
  line-height: 15px;
  margin-bottom: 5px;
  padding-left: 20px;
}

.mob-email-item {
  background: white;
  color: unset;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  transition: all 0.3s ease;
  &:hover { background: #F8F8F8; }
  > p:first-child {
    color: var(--text-color);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 21px;
    margin-bottom: 0;
  }
  > p:nth-child(2) {
    color: #6D6D6D;
    display: -webkit-box;
    font: 12px 'Campton Light', 'Helvetica Roman';
    line-height: 15px;
    height: 15px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    margin-bottom: 10px;
  }
  span {
    color: #6D6D6D;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
  }
}

.curr-email {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 40px 40px 35px 50px;
  margin-bottom: 30px;
}

.curr-email-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
  a {
    color: #787878;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font: 16px 'Campton Light', 'Helvetica Roman';
    line-height: 21px;
    transition: all 0.3s ease;
    &:hover { color: var(--secondary-color); }
  }
}

.email-text {
  color: var(--header-text);
  font: 14px 'Campton Medium', 'Helvetica Roman';
  line-height: 20px;
  margin-bottom: 30px;
  * { font-family:  'Campton Medium', 'Helvetica Roman' !important; }
  a { color: #1592E6 !important; }
}

.endnote {
  color: #707070;
  display: flex;
  flex-direction: column;
  align-items: center;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 18px;
  p { margin-bottom: 0; }
  a { color: unset; text-decoration: none; }
}

.goBackEmails {
  color: var(--secondary-color);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font: 16px 'Campton Light', 'Helvetica Light';
  line-height: 25px;
  transition: all 0.3s ease;
  &:hover { color: #48A7FF; }
}

.overdue-warning {
  background: #FFFAEC;
  border: 1px solid #FCEDC3;
  border-radius: 10px;
  color: var(--header-text);
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  padding: 25px 32px;
  margin-bottom: 30px;
  p { margin-bottom: 0; }
}

.shortcuts {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 40px 30px 30px;
  margin-bottom: 20px;
  p:first-child {
    color: black;
    font: 18px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 10px;
  }
  p:nth-child(2) {
    color: #787878;
    font: 12px 'Campton Light', 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 0;
  }
  > div:first-child { margin-bottom: 30px; } 
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 10px;
}

.shortcut-grid a {
  background: #F8F9FA;
  border-radius: 15px;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  padding: 20px 5px;
  font: 12px 'Campton Medium', 'Helvetica Medium';
  div {
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
  }
}

.shortcut-grid a:first-child div { background: var(--secondary-color); }
.shortcut-grid a:nth-child(2) div { background: #00A970; }
.shortcut-grid a:nth-child(3) div { background: #A02CFF; }
.shortcut-grid a:nth-child(4) div { background: #F28800; }
.shortcut-grid a:nth-child(5) div { background: #00A5CA; }
.shortcut-grid a:nth-child(6) div { background: #564BFB; }
.shortcut-grid a:nth-child(7) div { background: #EE1887; }
.shortcut-grid a:nth-child(8) div { background: #F2B100; }
.shortcut-grid a:nth-child(9) div { background: #FA5400; }
.shortcut-grid a:nth-child(10) div { background: #00A998; }
.shortcut-grid a:last-child div { background: #8B4CFF; }

.service-inner-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px;
  margin-bottom: 15px;
  .head {
    display: flex;
    align-items: center;
    gap: 11px;
    font: 18px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 20px;
    div {
      border-radius: 10px;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
      width: 46px; height: 46px;
    }
    span { max-width: calc(100% - 57px); }
  }
}

.quick-email-form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  button {
    background: #1993FF;
    border: none;
    border-radius: 10px;
    color: white;
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 15px;
    width: 175px; height: 50px;
    transition: all 0.3s ease;
    &:hover { background: #3BA3FF; }
  }
}

.quick-email-form > div {
  width: calc((100% - 195px) / 2);
  label { color: var(--text-color) !important; }
  input { background: #FAFAFB; }
}

.quick-email-pass {
  position: relative;
  .eye-icon { top: 53px; }
}

.billing-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  div {
    background: #FAFAFB;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    font: 12px 'Campton Medium', 'Helvetica Roman';
    line-height: 15px;
    height: 60px;
    padding-left: 20px;
  }
  span { color: #7C8591; }
  span:last-child { color: var(--text-color); }
}

.add-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.add-info-block {
  border: 1px solid transparent;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  > div:first-child {
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    width: 46px; height: 46px;
  }
  > div:last-child {
    display: flex;
    flex-direction: column;
  }
  span:first-child {
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 16px;
  }
  span:last-child {
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
  }
}

.service-summery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  > div {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 30px;
  }
  .title {
    color: black;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 30px;
  }
}

.service-name .desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  > div:first-child {
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    width: 46px; height: 46px;
    margin-bottom: 14px;
  }
  p:first-of-type {
    color: var(--text-color);
    font: 12px 'Campton Light', 'Helvetica Medium';
    line-height: 15px;
    margin-bottom: 5px;
  }
  p:nth-child(3) {
    color: var(--text-color);
    font: 18px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 5px;
  }
  a:last-child {
    color: var(--secondary-color);
    font: 13px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
  }
}

.statistics .title1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 35px;
  span:first-child {
    color: black;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
  }
  span:last-child { 
    color: var(--secondary-color); 
    font: 10px 'Campton Medium', 'Helvetica Medium';
    line-height: 13px;
  }
}

.pie-chart-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.pie-chart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  > span:first-child {
    color: var(--text-color);
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 15px;
    text-align: center;
  }
  > span:last-child {
    color: #979797;
    font: 14px 'Campton Light', 'Helvetica Roman';
    line-height: 20px;
    text-align: center;
  }
}

.circle {
  position: relative;
  width: 130px; height: 130px;
  .text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 30px 'Campton Medium';
    line-height: 30px;
  }
  svg { transform: rotate(-90deg); }
  circle { fill: none; stroke-width: 10; }
  .bg { stroke: #F3F4F6; }
}

.progress {
  stroke: var(--secondary-color);
  stroke-linecap: round;
  stroke-dasharray: 339;
  stroke-dashoffset: 339;
  transition: stroke-dashoffset 1.5s ease;
}

.addons-extras {
  > p:first-child {
    color: black;
    font: 18px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
  }
  a:last-child {
    background: var(--bg-color1);
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
    gap: 10px;
    width: 100%; height: 40px;
  }
}

.addons-card {
  background: #F4F5F7;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%; height: 60px;
  margin-bottom: 15px;
}

.addons-card > div {
  display: flex;
  align-items: center;
  gap: 15px;
  > div:first-child {
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    width: 35px; height: 35px;
  }
  > div:last-child { display: flex; flex-direction: column; }
  span:first-child {
    color: var(--text-color);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
  }
  span:last-child {
    color: #7C8591;
    font: 10px 'Campton Medium', 'Helvetica Medium';
    line-height: 13px;
  }
}

.info-toggle {
  background: white;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  display: flex;
  height: 50px; width: 100%;
  button {
    background: white;
    border: none;
    color: #707070;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 21px;
    padding: 12px 22px 12px 32px;
    min-height: 50px;
    position: relative;
    transition: all 0.3s ease;
  }
  button:first-child { border-radius: 20px 0 0 0; }
  button:hover, button.active {
    background: #EFF6FF;
    color: var(--secondary-color);
    &::after { background: var(--secondary-color); }
  }
  button::after {
    content: '';
    background: white;
    width: 100%; height: 3px;
    position: absolute;
    bottom: 0; left: 0;
    transition: all 0.3s ease;
  }
}

.service-info-cont,
.add-info-cont {
  display: none;
}

.service-info-cont.active,
.add-info-cont.active {
  display: block;
}

.service-info-cont1 {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 26px 30px 40px;
  margin-bottom: 20px;
  .shortcut-grid:nth-child(3) { margin-bottom: 50px; }
}

.service-info-cont1 .shortcut-grid a {
  background: white;
  border: 1px solid var(--border-color);
}

.service-info-cont1 .shortcut-grid:nth-child(3) a:first-child div { background: #12A171; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(2) div { background: var(--secondary-color); }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(3) div { background: #EC2E37; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(4) div { background: #F28800; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(5) div { background: #9810FB; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(6) div { background: #4F39F6; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(7) div { background: var(--bg-color1); }
.service-info-cont1 .shortcut-grid:nth-child(3) a:first-child span { color: #12A171; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(2) span { color: var(--secondary-color); }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(3) span { color: #EC2E37; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(4) span { color: #F28800; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(5) span { color: #9810FB; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(6) span { color: #4F39F6; }
.service-info-cont1 .shortcut-grid:nth-child(3) a:nth-child(7) span { color: #0092BF; }

.service-info-cont1 .shortcut-grid:last-child a:first-child div { background: #F3F4F6; }
.service-info-cont1 .shortcut-grid:last-child a:nth-child(2) div { background: var(--bg-color1); }
.service-info-cont1 .shortcut-grid:last-child a:nth-child(3) div { background: var(--bg-color1); }
.service-info-cont1 .shortcut-grid:last-child a:nth-child(4) div { background: #FEF3C6; }
.service-info-cont1 .shortcut-grid:last-child a:nth-child(5) div { background: var(--bg-color1); }
.service-info-cont1 .shortcut-grid:last-child a:nth-child(6) div { background: var(--bg-color1); }
.service-info-cont1 .shortcut-grid:last-child a:nth-child(7) div { background: var(--bg-color1); }
.service-info-cont1 .shortcut-grid:last-child a:nth-child(8) div { background: #D0FAE5; }
.service-info-cont1 .shortcut-grid:last-child a:nth-child(9) div { background: #D0FAE5; }
.service-info-cont1 .shortcut-grid:last-child a:nth-child(10) div { background: #F3F4F6; }

.service-info-cont .title {
  color: black;
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 21px;
  margin-bottom: 20px;
}

.namesaver-block {
  background: #FAFAFB;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 220px;
  font: 12px 'Campton Medium', 'Helvetica Medium';
  line-height: 15px;
  margin-bottom: 25px;
  padding: 16px 20px;
  span:first-child { color: #707070; }
  span:last-child { color: black; }
  > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    > div {
      display: flex;
      gap: 5px;
      div {
        background: #DBEAFE;
        border-radius: 10px;
        color: var(--secondary-color);
        padding: 7px 11px;
      }
    }
  }
}

.add-info-cont {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 26px 30px 40px;
}

.service-info-cont2 {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px;
  margin-bottom: 20px;
}

.info-block {
  background: #FAFAFB;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: #7C8591;
  font: 12px 'Campton Medium', 'Helvetica Medium';
  line-height: 16px;
  margin-bottom: 30px;
  > div {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 45px 14px 20px;
    &:last-child { border-bottom: none; }
    p { margin: 0; gap: 15px; }
    img {
      filter: brightness(0) saturate(100%) invert(54%) sepia(8%) saturate(553%) 
      hue-rotate(175deg) brightness(94%) contrast(87%);
      width: 16px;
    }
  }
}

.running {
  background: #D0FAE5;
  border-radius: 15px;
  color: #007A59;
  width: 105px; height: 30px;
  padding-left: 40px;
  position: relative;
  &::after {
    content: '';
    background: #007A59;
    border-radius: 50%;
    width: 7px; height: 7px;
    position: absolute;
    left: 25px; top: 11px;
  }
}

.resource-usage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px ;
}

.resource-usage-card {
  background: #FAFAFB;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  > div:first-child {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 17px;
    div:first-child {
      border-radius: 10px;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
      width: 46px; height: 46px;
    }
    div:last-child {
      display: flex;
      flex-direction: column;
    }
    span:first-child {
      color: black;
      font: 16px 'Campton Medium', 'Helvetica Medium';
      line-height: 21px;
    }
    span:last-child {
      color: #7C8591;
      font: 12px 'Campton Medium', 'Helvetica Medium';
      line-height: 16px;
    }
  }
} 

.resource-usage-card:first-child > div:first-child div:first-child,
.resource-usage-card:first-child .range div:nth-child(2) { background: var(--secondary-color); }
.resource-usage-card:nth-child(2) > div:first-child div:first-child,
.resource-usage-card:nth-child(2) .range div:nth-child(2)  { background: #A334FF; }
.resource-usage-card:nth-child(3) > div:first-child div:first-child,
.resource-usage-card:nth-child(3) .range div:nth-child(2) { background: #F79000; }
.resource-usage-card:nth-child(4) > div:first-child div:first-child,
.resource-usage-card:nth-child(4) .range div:nth-child(2) { 
  background: #00A46D; 
  img { filter: brightness(0) invert(1); }
}

.range {
  position: relative;
  div:first-child {
    background: #E5E7EB;
    border-radius: 6px;
    width: 100%; height: 11px;
    margin-bottom: 3px;
  }
  div:nth-child(2) {
    background: blueviolet;
    border-radius: 6px 0 0 6px;
    position: absolute;
    left: 0; top: 0;
    height: 11px;
  }
  span:last-child {
    color: #7C8591;
    font: 12px 'Campton Medium', 'Helvetica Medium';
    line-height: 16px;
    display: flex;
    justify-content: flex-end;
  }
}

.notification-btn {
  margin-left: auto;
  display: inline-flex;
  position: relative;
  width: 40px; height: 40px;
  div {
    background: #F8F8F8;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    color: #6D6D6D;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 20px; height: 20px;
    position: absolute;
    top: 0; right: 0;
  }
  img {
    position: absolute;
    bottom: 0; left: 0;
  }
}

.page-title {
  color: var(--text-color);
  font: 26px 'Campton Medium', 'Helvetica Medium';
  line-height: 33px;
  margin-bottom: 20px;
}

.support-cont {
  background: var(--bg-color);
  padding: 50px 20px 110px;
  .content1 > p:nth-child(2) {
    color: #7B7B7B;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 30px;
    max-width: 750px;
  }
}

.request-list {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  padding: 40px;
}

.request-list a {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 90px;
  padding: 0 35px 0 30px;
  transition: all 0.3s ease;
  &:hover { background: var(--bg-color1); }
  div:first-child {
    background: #1690FF;
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
  }
  div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: calc(100% - 60px);
    span:first-child {
      color: var(--text-color);
      font: 16px 'Campton Medium', 'Helvetica Medium';
      line-height: 20px;
    }
    span:last-child {
      color: #7B7B7B;
      font: 14px 'Campton Medium', 'Helvetica Medium';
      line-height: 17px;
    }
  }
}

.assist-form {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 40px;
  max-width: 795px;
  textarea {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    resize: none;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    height: 195px !important;
  }
  .fullname { margin-bottom: 10px; }
  select:first-of-type { margin-bottom: 20px; }
}

.assist-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
  button {
    border: none;
    border-radius: 10px;
    font: 14px 'Campton Light', 'Helvetica Roman';
    line-height: 17px;
    width: 200px; height: 50px;
    transition: all 0.3s ease;
  }
  button:first-child {
    background: var(--secondary-color);
    color: white;
    &:hover { background: var(--hover-color); }
  }
  button:last-child {
    background: var(--bg-color1);
    color: black;
    &:hover { background: #EFF7FF; color: var(--text-color); }
  }
}

.file-upload-container { margin-bottom: 10px; }
.file-input { display: none; }

.custom-file-upload {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  div:first-child {
    background: white;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    height: 50px; width: calc(100% - 40px);
  }
  div:last-child {
    background: white;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px; height: 50px;
    transition: all 0.3s ease;
    &:hover { background: var(--bg-color1); }
  }
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.file-item {
  display: flex;
  gap: 5px;
  &:first-child { margin-top: 20px; }
  div {
    background: white;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    padding-left: 20px;
    width: calc(100% - 40px); height: 50px;
  }
  button {
    background: white;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    width: 35px; height: 50px;
    transition: all 0.3s ease;
    i { transition: all 0.3s ease; }
    &:hover { 
      background: var(--bg-color1); 
      i { color: #D90236; }
    }
  }
}

.accepted-types {
  color: #8D8D8D;
  font: 12px 'Campton Light', 'Helvetica Roman';
  line-height: 16px;
  padding-left: 20px;
  margin-bottom: 0;
}

.knowledge-cont {
  background: var(--bg-color);
  padding: 50px 20px 110px;
}

.knowledge-base-page {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.knowledge-base-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 305px;
}

.knowledge-links {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
}

.knowledge-head {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  padding: 17px 30px;
  > i {
    color: #787878;
    font-size: 10px;
    transition: all 0.3s ease;
  }
  span { color: var(--secondary-color); }
  div {
    display: flex;
    align-items: center;
    gap: 15px;
    i { color: #979797; font-size: 15px; }
  }
}

.knowledge-body {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  > a:not(.support-link, .ticket-info) {
    background: white;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    padding: 10px 30px;
    transition: all 0.3s ease;
    span:nth-child(2) { color: var(--secondary-color); }
    &:hover { background: var(--bg-color1); }
    &:first-child { padding-top: 23px; border-top: 1px solid var(--border-color); }
    &:last-child { border-radius: 0 0 20px 20px; padding-bottom: 23px; }
  }
}

.knowledge-links.active .knowledge-body { max-height: 1000px; }
.knowledge-links.active .knowledge-head > i { transform: rotate(180deg); }

.knowledge-base-right { width: calc(100% - 335px); }
.knowledge-search, .question-search {
  position: relative;
  width: 100%; height: 60px;
  margin-bottom: 10px;
  input {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font: 12px 'Campton Light', 'Helvetica Light';
    line-height: 15px;
    width: 100%; height: 100%;
    padding: 0 80px 0 30px;
    &:focus { outline: none; }
  }
  button {
    background: #1690FF;
    border-radius: 15px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px; right: 30px;
    width: 40px; height: 40px;
    img { filter: brightness(0) invert(1); }
  }
}
.question-search { display: none; }

.knowledge-cat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-bottom: 15px;
}

.knowledge-cat a {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  width: 100%;
  padding: 23px 20px 23px 27px;
  transition: all 0.3s ease;
  &:hover { background: rgba(21, 142, 255, 0.1); }
  i { color: var(--secondary-color); font-size: 20px; }
  div {
    background: var(--bg-color1);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 16px;
    margin-left: auto;
    width: 100px; height: 35px;
  }
}

.articles {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
}

.article-head {
  color: var(--secondary-color);
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  padding: 22px 30px;
}

.article-item {
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 30px;
  &:first-child { border-top: 1px solid var(--border-color); }
  &:last-child { padding-bottom: 30px; }
  div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: calc(100% - 46px);
    span:first-child {
      color: black;
      font: 14px 'Campton Medium', 'Helvetica Medium';
      line-height: 17px;
    }
    span:last-child {
      color: #979797;
      font: 12px 'Campton Light', 'Helvetica Roman';
      line-height: 15px;
    }
  }
}

.current-article {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  margin-bottom: 20px;
  > div:first-child {
    color: black;
    display: flex;
    align-items: center;
    gap: 30px;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
    padding: 22px 30px;
    span { width: calc(100% - 46px); }
  }
}

.article-text {
  border-top: 1px solid var(--border-color);
  color: var(--text-color);
  font: 14px 'Campton Medium', 'Helvetica Roman';
  line-height: 17px;
  padding: 30px 30px 60px;
  * { font-family: 'Campton Medium', 'Helvetica Roman'; }
  img {
    display: flex;
    width: 100%;
    max-width: 685px;
    height: auto;
  }
}

.knowledge-base-right .goBackEmails {
  justify-content: unset;
  margin-top: 35px;
}

.filter-questions {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  > div:first-child {
    color: var(--secondary-color);
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    padding: 17px 30px;
  }
}

.question-status {
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  .check { border-color: var(--border-color) !important; }
  .status-option { 
    padding: 5px 5px 5px 30px;
    &:last-child { padding-bottom: 20px; }
  }
}

.question-table { width: 871px; }
.question-table th:first-child { 
  padding: 25px 0 25px 35px; 
  width: 230px;
  &::after { right: 40px; }
  &::before { right: 30px; }
}

.question-table th:nth-child(2) { padding: 25px 12px; width: 200px; }
.question-table th:nth-child(3) { padding: 25px 28px 25px 7px; }
.question-table th:nth-child(4) { 
  padding: 25px 35px;
  &::after { right: 71px; }
  &::before { right: 61px; }
}

.question-table tbody td:first-child { padding: 23px 0 21px 35px; width: 230px; }
.question-table tbody td:nth-child(2) { padding: 23px 12px 21px; width: 200px; }
.question-table tbody td:nth-child(3) { padding: 23px 7px 21px 7px; }
.question-table tbody td:nth-child(4) { padding: 23px 25px 21px 38px; }

.question-table tbody tr:last-child td:first-child { padding: 33px 10px 31px 35px; }
.question-table tbody tr:last-child td:nth-child(2) { padding: 33px 12px 31px; }
.question-table tbody tr:last-child td:nth-child(3) { padding: 33px 7px 31px 7px; }
.question-table tbody tr:last-child td:nth-child(4) { padding: 33px 25px 31px 38px; }

.mob-question-card a, .question-table td a {
  color: var(--secondary-color);
  text-decoration: none;
}

.mob-question-card > div span:last-child { 
  max-width: 170px; 
  text-align: end;
}
.mob-question-card > div:last-child { text-align: center; }

.call-modal .modal-content {
  border-radius: 20px;
  --bs-modal-border-color: var(--secondary-color);
}

.call-modal .modal-header {
  border-bottom: none !important;
  padding: 40px 30px 0;
}

.call-modal h1 {
  font: 20px 'Campton Medium', 'Helvetica Medium';
  line-height: 26px;
}

.call-form {
  padding: 25px 30px 35px;
  button:last-child {
    background: var(--secondary-color);
    border-radius: 10px;
    border: none;
    color: white;
    font: 14px 'Campton Light', 'Helvetica Roman';
    line-height: 17px;
    transition: all 0.3s ease;
    width: 100%; height: 50px;
    &:hover { background: var(--hover-color); }
  }
}

.ticket-info {
  color: unset;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16.5px 30px;
  position: relative;
  span:first-child {
    color: #979797;
    font: 10px 'Campton Medium', 'Helvetica Roman';
    line-height: 13px;
  }
  span:nth-child(2) {
    color: var(--text-color);
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 18px;
  }
  &:first-child {
    border-top: 1px solid var(--border-color);
    padding-top: 27.5px;
  }
  &:last-child { padding-bottom: 25px; }
}

#ago {
  position: absolute;
  color: #979797;
  font: 10px 'Campton Medium', 'Helvetica Roman';
  line-height: 13px;
  margin: 0;
  right: 30px; bottom: 26px;
}

.knowledge-body hr {
  border-color: var(--border-color);
  margin: 0 30px;
  opacity: 1;
}

.ticket-actions {
  display: flex;
  gap: 6px;
  margin: 0 30px 35px;
  > * {
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 18px;
    height: 50px; width: calc(50% - 3px);
    transition: all 0.3s ease;
  }
  a {
    background: var(--secondary-color);
    border-radius: 10px;
    text-decoration: none;
    svg { fill: white; }
    &:hover { background: var(--hover-color); }
  }
  button {
    background: #D12528;
    border: none;
    i { font-size: 7px; }
    &:hover { background: #E23A3D; }
  }
}

.ticket-actions1 {
  margin: 0 0 30px;
  > * { width: 120px; }
  a {
    background: #F3F9FF;
    border: 1px solid var(--secondary-color);
    color: var(--text-color);
    svg { fill: var(--text-color); transition: all 0.3s ease ; }
    &:hover {
      color: white;
      svg { fill: white; }
    }
  }
}

.view-ticket, .ticket-reply {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
}

.ticket-head {
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px 30px 20px;
  span:first-of-type {
    color: black;
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 17px;
  }
  span:last-child {
    color: var(--secondary-color);
    font: 20px 'Helvetica Medium';
    line-height: 24px;
  }
}

.ticket-body {
  padding: 30px 30px 37px;
  .name {
    display: flex;
    gap: 9px;
    font: 16px 'Campton Bold', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 30px;
    span:first-child { color: #979797; }
    span:last-child { color: var(--text-color); }
  }
}

.posted-by {
  color: var(--text-color);
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  margin-bottom: 30px;
}

.ticket-msg {
  color: var(--text-color);
  font: 16px 'Campton Bold';
  line-height: 20px;
  padding: 0 20px;
  margin-bottom: 30px;
  hr {
    border-color: var(--border-color);
    margin: 22px 0 18px;
    opacity: 1;
  }
  span:last-child { font-family: 'Helvetica Roman'; }
}

.ticket-attachments {
  padding: 0 20px;
  > div:first-child {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 7px;
    i { font-size: 20px; }
  }
  hr {
    border-color: var(--border-color);
    max-width: 250px;
    margin: 0 30px;
    opacity: 1;
  }
  .ticket-info:last-child { padding-bottom: 0; }
}

.ticket-reply {
  padding: 30px 50px 40px 30px;
  margin: 0;
  > p:first-of-type {
    color: black;
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 30px;
  }
  .fullname { margin-bottom: 15px; }
  textarea {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    color: #8D8D8D;
    font: 14px 'Campton Medium', 'Helvetica Roman';
    width: 100%; height: 250px;
    resize: none;
    padding: 16px 20px 0;
    margin-bottom: 20px;
    &:focus { outline: none; }
  }
  > div:nth-of-type(2) {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 20px;
    i { font-size: 20px; }
  }
}

.cc-recipient {
  border-top: 1px solid var(--border-color);
  padding: 23px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  button {
    background: var(--secondary-color);
    border: none;
    border-radius: 10px;
    color: white;
    font: 14px 'Campton Medium', 'Helvetica Roman';
    line-height: 18px;
    height: 50px;
    transition: all 0.3s ease;
    &:hover { background: var(--hover-color); }
  }
}

.support-links {
  border-top: 1px solid var(--border-color);
  padding: 5px 12px 20px;
  hr { margin: 0 18px; }
}

.support-link {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  padding: 22.5px 25px 22.5px 30px;
  transition: all 0.3s ease;
  &:last-child { border-bottom: none; }
  &:hover, &.active { background: #DEEFFF; border-radius: 10px; }
}

.ticket-created {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--text-color);
  padding: 40px 50px 60px;
  > p:first-child {
    font: 20px 'Campton Medium', 'Helvetica Medium';
    line-height: 26px;
    margin-bottom: 20px;
  }
  > p:nth-child(3) {
    font: 16px 'Campton Light', 'Helvetica Light';
    line-height: 21px;
    margin-bottom: 50px;
  }
  > div {
    background: #DEEFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font: 16px 'Campton Medium', 'Helvetica Medium';
    line-height: 21px;
    margin-bottom: 20px;
    padding: 18px;
    span:first-child { color: var(--secondary-color); }
  }
  > a {
    background: var(--secondary-color);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Campton Light', 'Helvetica Roman';
    line-height: 17px;
    margin: 0 auto;
    width: 250px; height: 50px;
    transition: all 0.3s ease;
    &:hover { background: var(--hover-color); }
  }
}

.fileManagerLink {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 20px;
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  padding: 28px 30px;
  margin-bottom: 20px;
  i { color: #979797; font-size: 20px; }
  span { color: var(--secondary-color); }
}

.popular-downloads {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 23px 30px;
}

.popular-downloads > div:first-child {
  display: flex;
  align-items: center;
  gap: 15px;
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  margin-bottom: 25px;
  i { color: #979797; font-size: 20px; }
  span { color: var(--secondary-color); }
}

.file-to-download {
  color: unset;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  &:last-child { margin-bottom: 0; }
  > p:first-child {
    color: #979797;
    display: inline-flex;
    font: 10px 'Campton Medium', 'Helvetica Medium';
    line-height: 13px;
    margin-bottom: 0;
  }
  > p:nth-child(2) {
    color: var(--text-color);
    font: 14px 'Campton Medium', 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 8px;
  }
  > p:nth-child(3) {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
    font: 10px 'Campton Medium', 'Helvetica Medium';
    line-height: 13px;
    margin-bottom: 15px;
    img { width: 13px; }
  }
  > span:last-child {
    color: var(--text-color);
    font: 10px 'Campton Medium', 'Helvetica Medium';
    line-height: 13px;
  }
}

.announcements {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 50px 50px 30px;
  margin-bottom: 20px;
  > p:first-child {
    color: var(--text-color);
    font: 18px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 25px;
  }
}

.announcement {
  color: unset;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  &:last-child { margin-bottom: 0; }
  .name {
    color: var(--secondary-color);
    font: 22px 'Campton Medium', 'Helvetica Medium';
    line-height: 26px;
    margin-bottom: 10px;
  }
  .intro {
    color: var(--text-color);
    font: 12px 'Campton Light', 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 10px;
  }
}

.announce-date {
  color: #979797;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 14px 'Campton Medium', 'Helvetica Medium';
  line-height: 17px;
  margin-bottom: 15px;
  i { font-size: 20px; }
}

.continue {
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 5px;
  font: 12px 'Campton Light', 'Helvetica Roman';
  line-height: 15px;
  transition: all 0.3s ease;
  &:hover { gap: 10px; }
}

.pagination {
  display: flex;
  gap: 5px;
  & button {
    background: white;
    border: 1px solid #E8F0F7;
    border-radius: 5px;
    color: #7A92A8;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: normal;
    line-height: 18px;
    width: 40px; height: 40px;
    transition: all 0.3s ease;
    &.active, &:hover { 
      background: var(--secondary-color); 
      border-color: var(--secondary-color);
      color: white;
    }
    &:first-child, &:last-child { font-size: 18px; }
  }
}

.curr-announcement {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 40px 50px 50px 30px;
  margin-bottom: 25px;
  .name {
    color: var(--secondary-color);
    font: 30px 'Campton Light', 'Helvetica Roman';
    line-height: 36px;
    margin-bottom: 22px;
  }
  .text {
    color: var(--text-color);
    font: 12px 'Campton Light', 'Helvetica Roman';
    line-height: 18px;
    * { font-family: 'Campton Light', 'Helvetica Roman' !important; }
    b, strong { font-family: 'Campton Medium', 'Helvetica Medium' !important; }
    a { color: var(--secondary-color); text-decoration: none; }
  }
}

.media-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  .goBackEmails { margin-top: 0; }
}

.share {
  display: flex;
  align-items: center;
  gap: 20px;
  > span {
    color: #2B2B2B;
    font: 12px 'Campton Light', 'Helvetica Roman';
    line-height: 16px;
  }
  div {
    display: flex;
    gap: 10px;
    > * {
      background: #F2F2F2;
      border-radius: 50%;
      color: var(--secondary-color);
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      width: 35px; height: 35px;
      transition: all 0.3s ease;
    }
    img { 
      filter: brightness(0) saturate(100%) invert(40%) sepia(95%) saturate(2116%) 
      hue-rotate(192deg) brightness(101%) contrast(101%); 
      transition: all 0.3s ease;
    }
    > *:hover {
      background: var(--secondary-color);
      color: white;
      img { filter: unset; }
    }
  }
}
.copy-link.copied { transform: scale(1.2); }

.network-issues {
  background: #DEEFFF;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font: 16px 'Campton Medium', 'Helvetica Medium';
  line-height: 20px;
  padding: 28px 30px;
  margin-bottom: 20px ;
  span { max-width: calc(100% - 36px); }
}

.server-status {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  padding: 30px 50px 35px 30px;
  margin-bottom: 13px;
  > p:first-child {
    color: var(--text-color);
    font: 18px 'Campton Medium', 'Helvetica Medium';
    line-height: 22px;
    margin-bottom: 15px;
  }
  > div:nth-child(2) {
    color: var(--text-color);
    font: 12px 'Campton Light', 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 30px;
  }
}

.service-table-cont {
  max-width: 790px;
  overflow-x: scroll;
}

.server-table {
  color: var(--text-color);
  font: 14px 'Campton Light', 'Helvetica Light';
  line-height: 18px;
  width: 100%;
  min-width: 700px;
  a { 
    color: var(--secondary-color); 
    font-family: 'Campton Medium', 'Helvetica Medium';
  }
}

.server-table tr > * { padding: 11px 0; text-align: center; }
.server-table tr th:first-child { 
  border-radius: 10px 0 0 10px;
  padding-left: 20px; 
  width: 150px;
  text-align: start;
}

.server-table tbody tr:nth-child(odd) {
  > * { background: #EFF7FF; }
  > td:last-child { border-radius: 0 10px 10px 0; }
}

#littlemsg {
  font: 12px 'Campton Medium', 'Helvetica Roman';
  margin: 0 0 27px 30px;
}

.reset-pass > p:nth-child(2) {
  color: var(--text-color);
  font: 14px 'Campton Light', 'Helvetica Light';
  line-height: 19px;
}