@charset "UTF-8";
/*
Media query steps
0-390px :       xxs - Phone
390-700px :     xs - Tablet portrait
700-900px :    sm - Tablet landscape
900-1200px :    md - Tablet landscape
1200-1440px :   lg - Normal layout

Created media query mixins and the use in any place will be much more
@include media([step(xs,sm...)]) { [css for the media query] }
*/
/**********************/
/* colors variables */
/**********************/
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #b8b8b8;
  --color-light-rose: #faf3f2;
  --color-nude-rose: #ddc4bf;
  --color-chestnut: #994a44;
  --color-red: #fd1100;
}
/************************/
/* website custom fonts */
/************************/
@font-face {
  font-family: "Satoshi-Regular";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff"), url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2"), url("../fonts/Satoshi-Medium.woff") format("woff"), url("../fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Bold";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2"), url("../fonts/Satoshi-Bold.woff") format("woff"), url("../fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gambetta-Italic";
  src: url("../assets/fonts/Gambetta-Italic.woff2") format("woff2"), url("../assets/fonts/Gambetta-Italic.woff") format("woff"), url("../assets/fonts/Gambetta-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
/**********************/
/*    Base layouts    */
/**********************/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  font-size: 62.5%;
  color: var(--color-black);
  scroll-behavior: smooth;
}

body {
  font-family: "Satoshi-Regular", Verdana, sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  background-color: var(--color-white);
}

.container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1440px) {
  .container {
    padding: 0rem 5%;
  }
}
.container__vertpad {
  padding-top: 18rem;
}

.d-none {
  display: none;
}

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

/**********************/
/*   Links layouts    */
/**********************/
a {
  text-decoration: none;
  color: var(--color-black);
}

a:hover {
  text-decoration: none;
  color: var(--color-black);
}

a:visited,
a:active {
  color: var(--color-black);
  fill: var(--color-black);
}

a:disabled {
  opacity: 50%;
}

.settings__wrap {
  margin-bottom: 6rem;
  border: 1px var(--color-nude-rose) solid;
  border-radius: 4rem;
  padding: 8rem 8rem;
}
@media (max-width: 900px) {
  .settings__wrap {
    padding: 8rem 4rem;
  }
}
@media (max-width: 700px) {
  .settings__wrap {
    padding: 2rem 0rem;
    border: none;
  }
}
.settings__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 900px) {
  .settings__row {
    flex-direction: column;
  }
}
.settings__row__element {
  flex: 0 0 50%;
  max-width: 50rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 40rem;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .settings__row__element {
    min-height: auto;
  }
  .settings__row__element:not(:last-child) {
    margin-bottom: 6rem;
  }
}
.settings__content h3 {
  margin-bottom: 6rem;
}
@media (max-width: 900px) {
  .settings__content h3 {
    margin-bottom: 4rem;
  }
}
.settings__content h5 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.settings__buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 4rem;
  margin-top: 6rem;
}
@media (max-width: 900px) {
  .settings__buttons {
    margin-top: 3rem;
  }
}
@media (max-width: 700px) {
  .settings__buttons {
    justify-content: center;
  }
}
@media (max-width: 390px) {
  .settings__buttons {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
}

/************************/
/*    font  sizes       */
/************************/
h1 {
  font-size: 6.5rem;
  line-height: auto;
  font-weight: 100;
}

h2 {
  font-size: 5.3rem;
  line-height: auto;
  font-weight: 100;
}

h3 {
  font-size: 4.4rem;
  line-height: auto;
  font-weight: 100;
}

h4 {
  font-size: 3.8rem;
  line-height: auto;
  font-weight: 100;
}

h5 {
  font-size: 2.2rem;
  line-height: auto;
  font-weight: 100;
}

.body-large {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: auto;
  letter-spacing: 0%;
}

.body-medium {
  font-size: 1.8rem;
  line-height: auto;
  letter-spacing: 0%;
}

.body-s {
  font-size: 1.6rem;
  line-height: auto;
  letter-spacing: 0%;
}

button {
  font-size: 1.4rem;
  line-height: 120%;
  letter-spacing: 10%;
}

.caption {
  font-size: 1.2px;
  line-height: 130%;
  letter-spacing: 2%;
}

/* Italic versions */
h1.italic, h2.italic, h3.italic, h4.italic, h5.italic,
.body-large.italic, .body-medium.italic, .body-small.italic,
.button.italic, .caption.italic {
  font-family: "Gambetta-Italic", sans-serif;
  font-style: italic;
}

@media (max-width: 390px) {
  h1 {
    font-size: 4.4rem;
    line-height: 5.2rem;
    letter-spacing: 0%;
  }
  h2 {
    font-size: 3.8rem;
    line-height: 4.6rem;
    letter-spacing: 0%;
  }
  h3 {
    font-size: 3.6rem;
    line-height: 4.4rem;
    letter-spacing: 0%;
    font-weight: 100;
  }
  h4 {
    font-size: 3.2rem;
    line-height: 4rem;
    letter-spacing: 0%;
    font-weight: 100;
  }
  h5 {
    font-size: 2.2rem;
    line-height: 120%;
    letter-spacing: 0%;
    font-weight: 100;
  }
  .body-large {
    font-size: 1.9rem;
    line-height: 2.6rem;
    letter-spacing: 0%;
  }
  .body-medium {
    font-size: 1.6rem;
    line-height: 2.2rem;
    letter-spacing: 0%;
  }
  .body-small {
    font-size: 1.4rem;
    line-height: 2rem;
    letter-spacing: 0%;
  }
  .button {
    font-size: 1.4rem;
    line-height: 120%;
    letter-spacing: 10%;
    text-transform: uppercase;
  }
  .caption {
    font-size: 1.2rem;
    line-height: 130%;
    letter-spacing: 2%;
  }
}
/**********************/
/*  buttons styles    */
/**********************/
.btn-black {
  background-color: var(--color-black);
  min-width: 14rem;
  padding: 0 2rem;
  color: var(--color-white);
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--color-black);
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.btn-black:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-transp {
  background-color: transparent;
  min-width: 14rem;
  padding: 0 2rem;
  color: var(--color-black);
  height: 50px;
  border: 1px solid var(--color-black);
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.btn-transp:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Space between text and arrow */
}
.btn-arrow:after {
  content: "→"; /* Unicode thin right arrow → */
  font-size: 18px;
  font-weight: lighter;
  padding-bottom: 4px;
}

.btn-arrow-back {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Space between arrow and text */
}
.btn-arrow-back:before {
  content: "←"; /* Unicode thin left arrow ← */
  font-size: 18px;
  font-weight: lighter;
  padding-bottom: 4px;
}

.btn-large {
  min-width: 30rem;
}
@media (max-width: 390px) {
  .btn-large {
    min-width: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/**********************/
/*  inputs styles     */
/**********************/
/*
how to use the different inputs in the pages:

<!-- Normal input -->
<div class="input-container">
  <input type="email" id="email-input" placeholder= " " required />
  <label for="email-input" class="input-label">Vartotojo vardas (el. pašto adresas)</label>
</div>

<!-- Password input -->
 <div class="input-container password-input">
    <input type="password" id="password-input" placeholder= " "  required />
    <label for="password-input" class="input-label">Slaptažodis</label>
    <button type="button" class="toggle-password" onclick="togglePasswordVisibility()">👁</button>
  </div>

<!-- select input -->
  <div class="input-container">
      <select id="profession-select" required>
        <option value="" disabled selected hidden></option>
        <option value="it">Informacinės technologijos</option>
        <option value="marketing">Marketingas</option>
        <option value="finance">Finansai</option>
        <option value="education">Švietimas</option>
        <option value="healthcare">Sveikatos priežiūra</option>
      </select>
      <label for="profession-select" class="input-label">Profesinė sritis</label>
    </div>
*/
.input-container {
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
}
.input-container input,
.input-container select {
  width: 100%;
  height: 50px;
  padding: 16px 20px;
  border: 1px solid var(--color-nude-rose);
  border-radius: 50px;
  font-size: 16px;
  color: var(--color-black);
  transition: border-color 0.2s ease;
  z-index: 1;
  position: relative;
  background: transparent;
  outline: none;
}
.input-container input:focus,
.input-container select:focus {
  border-color: var(--color-nude-rose);
}
.input-container input::placeholder,
.input-container select::placeholder {
  opacity: 0;
}
.input-container textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--color-nude-rose);
  border-radius: 20px;
  font-size: 16px;
  color: var(--color-black);
  background: transparent;
  outline: none;
  resize: none;
  line-height: 1.5;
  transition: border-color 0.2s ease;
}
.input-container textarea:focus {
  border-color: var(--color-nude-rose);
}
.input-container textarea::placeholder {
  opacity: 0;
}
.input-container .input-label + textarea ~ .input-label,
.input-container textarea ~ .input-label {
  top: 16px;
  transform: none;
}
.input-container .input-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(var(--color-black), 0.7);
  padding: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 2;
  background: transparent;
}
.input-container .input-label.white-style {
  background-color: var(--color-white) !important;
  border-radius: 1rem;
  padding: 0 0.3rem;
}
.input-container input:focus + .input-label,
.input-container input.has-value + .input-label,
.input-container input[type=date]:focus + .input-label,
.input-container input[type=date]:not(:placeholder-shown) + .input-label,
.input-container select:focus + .input-label,
.input-container select.has-value + .input-label {
  top: -8px;
  left: 16px;
  font-size: 12px;
  transform: translateY(0);
  padding: 0 4px;
  color: var(--color-black);
  z-index: 3;
}
.input-container input:focus + .input-label::before,
.input-container input.has-value + .input-label::before,
.input-container input[type=date]:focus + .input-label::before,
.input-container input[type=date]:not(:placeholder-shown) + .input-label::before,
.input-container select:focus + .input-label::before,
.input-container select.has-value + .input-label::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 4px);
  height: 3px;
  background-color: var(--color-light-rose);
  z-index: -1;
}
.input-container input:focus + .input-label.white-style,
.input-container input:not(:placeholder-shown) + .input-label.white-style,
.input-container input[type=date]:focus + .input-label.white-style,
.input-container input[type=date]:not(:placeholder-shown) + .input-label.white-style,
.input-container select:focus + .input-label.white-style,
.input-container select:not([value=""]) + .input-label.white-style,
.input-container textarea:focus + .input-label.white-style,
.input-container textarea.has-value + .input-label.white-style {
  background-color: var(--color-white) !important;
  border-radius: 1rem;
  padding: 0 0.3rem;
  z-index: 4;
}
.input-container input:focus + .input-label.white-style::before,
.input-container input:not(:placeholder-shown) + .input-label.white-style::before,
.input-container input[type=date]:focus + .input-label.white-style::before,
.input-container input[type=date]:not(:placeholder-shown) + .input-label.white-style::before,
.input-container select:focus + .input-label.white-style::before,
.input-container select:not([value=""]) + .input-label.white-style::before,
.input-container textarea:focus + .input-label.white-style::before,
.input-container textarea.has-value + .input-label.white-style::before {
  display: none !important;
}
.input-container textarea:focus ~ .input-label,
.input-container textarea.has-value ~ .input-label {
  top: -8px;
  left: 16px;
  font-size: 12px;
  transform: translateY(0);
  padding: 0 4px;
  color: var(--color-black);
  z-index: 3;
}
.input-container textarea:focus ~ .input-label::before,
.input-container textarea.has-value ~ .input-label::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 4px);
  height: 3px;
  background-color: var(--color-light-rose);
  z-index: -1;
}
.input-container select {
  appearance: none;
  cursor: pointer;
  padding-right: 50px;
}
.input-container select:required:invalid {
  color: rgba(var(--color-black), 0.7);
}
.input-container select option {
  color: var(--color-black);
}
.input-container select option[value=""][disabled] {
  display: none;
}
.input-container:has(select) {
  position: relative;
}
.input-container:has(select)::after {
  content: "▼";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-nude-rose);
  pointer-events: none;
  font-size: 12px;
  z-index: 2;
}
.input-container.password-input {
  position: relative;
}
.input-container.password-input .toggle-password {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  z-index: 2;
  color: var(--color-black);
  opacity: 0.7;
}
.input-container.password-input .toggle-password:hover {
  opacity: 1;
}
.input-container.password-input .toggle-password:focus {
  outline: none;
}
.input-container.password-input input[type=password],
.input-container.password-input input[type=text] {
  padding-right: 50px;
}
.input-container.white-style input,
.input-container.white-style select,
.input-container.white-style textarea {
  background: white;
  border: 0;
}
.input-container.white-style .input-label::before {
  display: none !important;
}

.input-error {
  display: none;
  color: var(--color-red);
  margin-top: -2.1rem;
  margin-left: 2rem;
  text-align: left;
}

.indx__search__form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}
.indx__search__form .input-container {
  flex: 1 1 200px;
  margin-bottom: 0;
}
.indx__search__form .btn-black {
  align-self: center;
  margin-left: auto;
}

.custom-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  font-size: 1.8rem;
}
.custom-checkbox-label input[type=checkbox] {
  display: none;
}
.custom-checkbox-label .custom-checkbox {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--color-gray);
  background-color: var(--color-gray);
  border-radius: 0.5rem;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  transition: all 0.2s ease;
}
.custom-checkbox-label .custom-checkbox svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.4rem;
  height: 1.4rem;
  display: none;
}
.custom-checkbox-label .custom-checkbox svg use {
  fill: var(--color-chestnut);
  transition: fill 0.2s ease;
}
.custom-checkbox-label .custom-checkbox.white {
  border: 2px solid var(--color-white) !important;
  background-color: var(--color-white) !important;
}
.custom-checkbox-label .custom-checkbox.white svg use {
  fill: var(--color-chestnut);
}
.custom-checkbox-label input[type=checkbox]:checked + .custom-checkbox svg {
  display: block;
}
.custom-checkbox-label .custom-checkbox + span,
.custom-checkbox-label .custom-checkbox + div,
.custom-checkbox-label .custom-checkbox + p {
  font-size: 1rem;
  color: var(--color-gray);
}

/* Radio button styles */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.radio-item {
  display: flex;
  align-items: center;
}
.radio-item input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--color-nude-rose);
  border-radius: 50%;
  margin-right: 1rem;
  position: relative;
  cursor: pointer;
}
.radio-item input[type=radio]:checked {
  background-color: white;
  border: 1px solid var(--color-nude-rose);
}
.radio-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--color-chestnut);
  border-radius: 50%;
}
.radio-item label {
  font-size: 1.6rem;
  cursor: pointer;
}

.pagination {
  width: 100%;
  margin: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 2rem;
  font-size: 2.1rem;
}

/***********************/
/* general divs styles */
/***********************/
.d__round {
  border-radius: 8rem;
  padding: 2rem 5%;
}
@media (max-width: 390px) {
  .d__round {
    padding: 2rem 1.5rem;
  }
}
.d__semiround {
  border-radius: 8rem 0rem 8rem 0rem;
  padding: 2rem 5%;
}
@media (max-width: 390px) {
  .d__semiround {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 390px) {
  .d__d-round {
    border-radius: 4rem;
    padding: 1.5rem;
  }
  .d__semiround {
    border-radius: 4rem 0rem 4rem 0rem;
    padding: 1.5rem;
  }
}
.d__card__round {
  border-radius: 4rem;
  padding: 2rem;
}
.d__card__semiround {
  border-radius: 4rem 0rem 4rem 0rem;
  padding: 2rem;
}
@media (max-width: 390px) {
  .d__card__d-round {
    border-radius: 2rem;
    padding: 1.5rem;
  }
  .d__card__semiround {
    border-radius: 2rem 0rem 2rem 0rem;
    padding: 1.5rem;
  }
}
.d__rose-l {
  background-color: var(--color-light-rose);
}
.d__rose-m {
  background-color: var(--color-nude-rose);
}
.d__rose-d {
  background-color: var(--color-chestnut);
}

/******************/
/* members cards  */
/******************/
.mcard {
  position: relative;
  margin-bottom: 2rem;
  flex: 1 1 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
}
@media (max-width: 1200px) {
  .mcard {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}
@media (max-width: 900px) {
  .mcard {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.mcard__info {
  margin: 2rem 0 2rem 5rem;
  min-height: 32.5rem;
  background-color: var(--color-light-rose);
  border-radius: 4rem;
  padding: 3rem 4rem 6rem 4rem;
  height: calc(100% - 4.3rem);
}
.mcard__info h5 {
  margin-left: 3rem;
  margin-bottom: 4rem;
}
.mcard__info__aboutme {
  margin-bottom: 2rem;
}
.mcard__info__professions {
  text-transform: uppercase;
  font-size: 1.3rem;
}
.mcard__info__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.mcard__info__top svg {
  width: 3rem;
  height: 3rem;
  fill: var(--color-chestnut);
  margin-bottom: 4rem;
  cursor: pointer;
}
.mcard__img {
  aspect-ratio: 1/1;
  width: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: var(--color-nude-rose);
}
.mcard__img__user {
  height: 100%;
  width: auto;
}
.mcard__link {
  position: absolute;
  bottom: 0;
  left: calc(50% + 2.5rem);
  transform: translateX(-50%);
  width: 19rem;
}

/***************************/
/* Component: profile info */
/***************************/
.profinf {
  margin-top: 2rem;
}
.profinf__wrap {
  margin-bottom: 6rem;
  border: 1px var(--color-nude-rose) solid;
  border-radius: 4rem;
  padding: 4rem 8rem;
}
@media (max-width: 900px) {
  .profinf__wrap {
    padding: 4rem 4rem;
  }
}
@media (max-width: 700px) {
  .profinf__wrap {
    padding: 0rem 0rem;
    padding-bottom: 0rem;
    border: none;
  }
}
.profinf__intro {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media (max-width: 900px) {

  .profinf__intro {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.profinf__intro__img {
  margin-top: -6.5rem;
  aspect-ratio: 1/1;
  width: 23rem;
  height: 23rem;
  margin-right: 4rem;
  border-radius: 3rem;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .profinf__intro__img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
@media (max-width: 390px) {
  .profinf__intro__img {
    width: 100%;
  }
}
.profinf__intro__img img {
  width: 100%;
  height: 100%;
}
.profinf__intro__texts h3 {
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .profinf__intro__texts h3 {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 900px) {
  .profinf__intro__texts h3 {
    font-size: 3rem;
  }
}
@media (max-width: 900px) {
  .profinf__intro__texts h3 {
    font-size: 4.2rem;
    margin-top: 0rem;
  }
}
.profinf__intro__texts p {
  font-size: 2.2rem;
}
@media (max-width: 1200px) {
  .profinf__intro__texts p {
    font-size: 1.8rem;
  }
}
@media (max-width: 900px) {
  .profinf__intro__texts p {
    margin-bottom: 4rem;
  }
}
.profinf__profs {
  margin-top: 6rem;
}
.profinf__profs table {
  width: 100%;
}
.profinf__profs table tr {
  height: 3.5rem;
}
.profinf__profs table tr:not(:first-child):not(:last-child) td {
  border-bottom: 1px solid var(--color-nude-rose);
}
@media (max-width: 390px) {
  .profinf__profs table {
    font-size: 1.2rem;
  }
}
.profinf__profs table td, .profinf__profs table th {
  vertical-align: center;
}
@media (max-width: 700px) {
  .profinf__profs__hidexs {
    display: none;
  }
}
.profinf__profs__titles {
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.profinf__profs svg {
  width: 2.6rem;
  height: 2.6rem;
  fill: var(--color-nude-rose);
}
.profinf__text {
  margin-top: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-nude-rose);
}
.profinf__text h5 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.profinf__text p {
  margin-bottom: 2rem;
}
.profinf__text ul {
  margin-left: 2rem;
}
.profinf__contacts {
  padding-top: 3rem;
  width: 100%;
}
.profinf__contacts__wrap {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .profinf__contacts__wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  .profinf__contacts__wrap {
    flex-direction: column;
    gao: 2rem;
  }
}
.profinf__contacts__wrap__element {
  display: flex;
  flex-direction: column;
}
.profinf__contacts__wrap__element__social {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.profinf__contacts__wrap__element__social svg {
  width: 2rem;
  height: 2rem;
}
.profinf__contacts__wrap h5 {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.profinf__contacts__wrap p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 100;
}

/*********************************/
/*      Self profile component   */
/*********************************/
.selfp__wrap {
  margin-bottom: 6rem;
  border: 1px var(--color-nude-rose) solid;
  border-radius: 4rem;
  padding: 4rem 8rem;
}
@media (max-width: 700px) {
  .selfp__wrap {
    padding: 4rem 2rem;
  }
}
.selfp__wrap h2 {
  margin-bottom: 4rem;
}
.selfp__wrap__top {
  display: flex;
  flex-direction: row;
}
.selfp__wrap__top__persinfo {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .selfp__wrap__top__persinfo {
    flex-direction: column;
  }
}
.selfp__wrap__top__persinfo__elem {
  margin-bottom: 2rem;
}
.selfp__wrap__top__persinfo__elem__title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}
.selfp__wrap__top__persinfo__elem__social {
  padding-top: 0.2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.selfp__wrap__top__persinfo__elem__social svg {
  height: 2rem;
  width: 1.8rem;
}
.selfp__wrap__top__img {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1200px) {
  .selfp__wrap__top__img {
    display: none;
  }
}
.selfp__wrap__top__img p {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.selfp__wrap__top__img__cont {
  width: 16rem;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
}
.selfp__wrap__top__img__cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.selfp__profs {
  margin-top: 4rem;
}
.selfp__profs table {
  width: 100%;
}
.selfp__profs table tr {
  height: 3.5rem;
}
.selfp__profs table tr:not(:first-child):not(:last-child) td {
  border-bottom: 1px solid var(--color-nude-rose);
}
@media (max-width: 390px) {
  .selfp__profs table {
    font-size: 1.2rem;
  }
}
.selfp__profs table td, .selfp__profs table th {
  vertical-align: center;
}
@media (max-width: 900px) {
  .selfp__profs__hidesm {
    display: none;
  }
}
@media (max-width: 700px) {
  .selfp__profs__hidexs {
    display: none;
  }
}
.selfp__profs__titles {
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.selfp__profs svg {
  width: 2.6rem;
  height: 2.6rem;
  fill: var(--color-nude-rose);
}
.selfp__descr {
  margin-top: 5rem;
}
.selfp__descr ul {
  list-style-position: inside; /* Bullets go inside the content box */
  padding-left: 1rem; /* Optional: controls how far bullets go in */
  margin-left: 0;
}
.selfp__descr li {
  line-height: 1.7;
}
.selfp__descr__elem {
  margin-top: 3rem;
}
.selfp__edit {
  margin: 0 auto;
  margin-top: 6rem;
  width: 100%;
  max-width: 25rem;
}

/*********************************/
/*      Self profile subsections */
/*********************************/
.subsc {
  position: relative;
  background-color: var(--color-light-rose);
  margin-bottom: 6rem;
  border: 1px var(--color-light-rose) solid;
  border-radius: 4rem;
  padding: 4rem 8rem;
  padding-bottom: 5rem;
}
@media (max-width: 900px) {
  .subsc {
    padding: 4rem 4rem;
  }
}
@media (max-width: 700px) {
  .subsc {
    padding: 4rem 2rem;
    border: none;
  }
}
.subsc__list__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 700px) {
  .subsc__list__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .subsc__list__head__add {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.subsc__list__list {
  margin-top: 3rem;
}
.subsc__list__list table {
  width: 100%;
}
.subsc__list__list table thead {
  font-weight: 600;
}
.subsc__list__list table thead td {
  padding-bottom: 2rem;
}
@media (max-width: 900px) {
  .subsc__list__list table td:nth-child(3), .subsc__list__list table th:nth-child(3), .subsc__list__list table td:nth-child(4), .subsc__list__list table th:nth-child(4), .subsc__list__list table th:nth-child(5) {
    display: none;
  }
}
@media (max-width: 1200px) {
  .subsc__list__list table td:nth-child(2), .subsc__list__list table th:nth-child(2) {
    display: none;
  }
  .subsc__list__list table thead td:nth-child(7)::before {
    content: "IŠTR.";
  }
  .subsc__list__list table thead td:nth-child(6)::before {
    content: "MOD.";
  }
  .subsc__list__list table thead td:nth-child(5)::before {
    content: "ŽIŪR.";
  }
  .subsc__list__list table thead td:nth-child(7),
  .subsc__list__list table thead td:nth-child(6),
  .subsc__list__list table thead td:nth-child(5) {
    font-size: 0;
    position: relative;
  }
  .subsc__list__list table thead td:nth-child(5)::before,
  .subsc__list__list table thead td:nth-child(6)::before,
  .subsc__list__list table thead td:nth-child(7)::before {
    font-size: 1.4rem;
    display: block;
  }
}
.subsc__list__list svg {
  width: 2rem;
  height: 2rem;
  fill: var(--color-chestnut);
}
.subsc__busn__chbx {
  margin-left: 4rem;
  margin-bottom: 4rem;
}

.business-modal__content__wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8rem;
}
@media (max-width: 1200px) {
  .business-modal__content__wrap {
    flex-direction: column;
    gap: 0rem;
  }
}
.business-modal__content__wrap__element {
  flex: 1;
}
.business-modal__content__wrap__element .custom-checkbox-label {
  margin-top: 3.5rem;
}
.business-modal__actions {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 700px) {
  .business-modal__actions {
    flex-direction: column;
    gap: 2rem;
  }
}
.business-modal__errors {
  position: absolute;
  margin-top: -0.3rem;
  padding-right: 4rem;
  width: 100%;
  text-align: right;
}
.business-modal-delete-content {
  background-color: var(--color-nude-rose);
  border-radius: 4rem;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.business-modal-delete-content h3 {
  text-align: center;
}
@media (max-width: 700px) {
  .business-modal-delete-content {
    padding: 4rem 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 390px) {
  .business-modal-delete-content {
    width: 30rem;
  }
}

.offers-modal__content__wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8rem;
}
@media (max-width: 1200px) {
  .offers-modal__content__wrap {
    flex-direction: column;
    gap: 0rem;
  }
}
.offers-modal__content__wrap__element {
  flex: 1;
}
.offers-modal__content__wrap__element .custom-checkbox-label {
  margin-top: 3.5rem;
}
.offers-modal__actions {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 700px) {
  .offers-modal__actions {
    flex-direction: column;
    gap: 2rem;
  }
}
.offers-modal__errors {
  position: absolute;
  margin-top: -0.3rem;
  padding-right: 4rem;
  width: 100%;
  text-align: right;
}
.offers-modal-delete-content {
  background-color: var(--color-nude-rose);
  border-radius: 4rem;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.offers-modal-delete-content h3 {
  text-align: center;
}
@media (max-width: 700px) {
  .offers-modal-delete-content {
    padding: 4rem 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 390px) {
  .offers-modal-delete-content {
    width: 30rem;
  }
}

/***************************/
/* Component: photogallery */
/***************************/
.phgall {
  /* Customize scrollbar here */
}
.phgall__wrap {
  background-color: var(--color-light-rose);
  margin-bottom: 6rem;
  border: 1px var(--color-light-rose) solid;
  border-radius: 4rem;
  padding: 4rem 8rem;
  padding-bottom: 5rem;
}
@media (max-width: 900px) {
  .phgall__wrap {
    padding: 4rem 4rem;
  }
}
@media (max-width: 700px) {
  .phgall__wrap {
    padding: 4rem 0rem;
    border: none;
  }
}
.phgall__wrap h3 {
  margin-bottom: 1.5rem;
}
.phgall__list__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .phgall__list__head {
    flex-direction: column;
  }
}
.phgall .scroll-container {
  overflow: auto;
  white-space: nowrap;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
  max-width: 100%;
  white-space: nowrap;
  padding-bottom: 3rem;
}
.phgall .scroll-container img {
  height: 20rem;
  width: auto;
  border-radius: 2rem;
  margin-right: 1.8rem;
}
.phgall .scroll-container-edit {
  overflow: auto;
  white-space: nowrap;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
  max-width: 100%;
  white-space: nowrap;
  padding-bottom: 3rem;
}
.phgall .scroll-container-edit .image-container {
  position: relative;
  height: 20rem;
  width: auto;
  display: inline-block;
  border-radius: 2rem;
  margin-right: 1.8rem;
}
.phgall .scroll-container-edit .image-container .gallery-link {
  display: block;
  height: 100%;
}
.phgall .scroll-container-edit .image-container img {
  height: 20rem;
  width: auto;
  border-radius: 2rem;
  display: block;
}
.phgall .scroll-container-edit .image-container .move-btn,
.phgall .scroll-container-edit .image-container .delete-btn {
  position: absolute;
  top: 1.5rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 0.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  padding: 0;
}
.phgall .scroll-container-edit .image-container .move-btn:hover,
.phgall .scroll-container-edit .image-container .delete-btn:hover {
  background-color: rgb(255, 255, 255);
}
.phgall .scroll-container-edit .image-container .move-btn svg,
.phgall .scroll-container-edit .image-container .delete-btn svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--color-chestnut);
}
.phgall .scroll-container-edit .image-container .move-btn {
  right: 5rem;
}
.phgall .scroll-container-edit .image-container .delete-btn {
  right: 1.5rem;
}
.phgall .simplebar-content::after {
  margin-bottom: 1rem;
}
.phgall .simplebar-scrollbar::before {
  background-color: var(--color-white);
  border-radius: 1rem;
}
.phgall .simplebar-track.simplebar-horizontal {
  height: 1.2rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  margin: 0 2rem;
}
.phgall .simplebar-scrollbar.simplebar-visible::before {
  background-color: var(--color-chestnut);
}

/* Gallery Modal Styles */
@media (min-width: 768px) {
  .phgall-delete-modal .modal-dialog, .phgall-error-modal .modal-dialog {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .phgall-delete-modal .modal-dialog, .phgall-error-modal .modal-dialog {
    max-width: 90%;
    margin: 10px auto;
  }
}
.phgall-delete-modal .modal-content, .phgall-error-modal .modal-content {
  background-color: var(--color-light-rose);
  border-radius: 2rem;
  padding: 2rem;
}
.phgall-delete-modal .modal-content h3, .phgall-error-modal .modal-content h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.phgall-delete-modal__content, .phgall-error-modal__content {
  text-align: center;
  margin-bottom: 1.5rem;
}
.phgall-delete-modal__content p, .phgall-error-modal__content p {
  margin-top: 1rem;
}
.phgall-delete-modal__image-container, .phgall-error-modal__image-container {
  max-width: 100%;
  max-height: 300px;
  margin: 0 auto 15px;
  border-radius: 10px;
  overflow: hidden;
}
.phgall-delete-modal__image-container img, .phgall-error-modal__image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}
.phgall-delete-modal__buttons, .phgall-error-modal__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .phgall-delete-modal__buttons, .phgall-error-modal__buttons {
    flex-direction: column;
    gap: 5px;
  }
  .phgall-delete-modal__buttons button, .phgall-error-modal__buttons button {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* Specific styles for error modal */
.phgall-error-modal__file-list {
  max-height: 200px;
  overflow-y: auto;
  margin: 15px 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.phgall-error-modal__file-list ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.phgall-error-modal__file-list ul li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.phgall-error-modal__file-list ul li:last-child {
  border-bottom: none;
}
.phgall-error-modal__file-list ul li .file-name {
  font-weight: bold;
}
.phgall-error-modal__file-list ul li .file-error {
  color: #d9534f;
  font-size: 0.9em;
  margin-left: 5px;
}

/***************************/
/* Component: profile form */
/***************************/
.proform {
  /* Bar container */
}
.proform__wrap {
  margin-bottom: 6rem;
  border: 1px var(--color-nude-rose) solid;
  border-radius: 4rem;
  padding: 4rem 8rem;
}
@media (max-width: 900px) {
  .proform__wrap {
    padding: 0rem 4rem;
  }
  .proform__wrap h2 {
    text-align: center;
  }
}
@media (max-width: 700px) {
  .proform__wrap {
    padding: 0rem 0rem;
    border: none;
  }
}
.proform__wrap__subtitle {
  font-size: 2.2rem;
  color: var(--color-chestnut);
  margin-top: -1rem;
}
@media (max-width: 900px) {
  .proform__wrap__subtitle {
    text-align: center;
  }
}
.proform__wrap__info {
  margin-top: 4rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 900px) {
  .proform__wrap__info {
    flex-direction: column-reverse;
  }
}
.proform__wrap__info__left {
  flex: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.proform__wrap__info__left__inhalf {
  flex: 1 1 48%;
  max-width: 48%;
}
@media (max-width: 1200px) {
  .proform__wrap__info__left__inhalf {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.proform__wrap__info__left__social {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.proform__wrap__info__left__social svg {
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 390px) {
  .proform__wrap__info__left__social svg {
    display: none;
  }
}
.proform__wrap__info__left__social__descr {
  font-weight: 700;
  width: 11rem;
}
@media (max-width: 1200px) {
  .proform__wrap__info__left__social__descr {
    display: none;
  }
}
@media (max-width: 900px) {
  .proform__wrap__info__left__social__descr {
    display: block;
  }
}
@media (max-width: 700px) {
  .proform__wrap__info__left__social__descr {
    display: none;
  }
}
.proform__wrap__info__left__social .input-container {
  top: 1.1rem;
}
.proform__wrap__info__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proform__wrap__info__right p {
  font-weight: 700;
  margin-bottom: 2rem;
}
.proform__wrap__info__right__img {
  margin-bottom: 2rem;
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  border: 1px var(--color-nude-rose) solid;
  overflow: hidden;
  background-image: url("../images/userimg.webp");
  background-size: cover; /* or 'contain' depending on the use case */
  background-position: center; /* centers the image */
  background-repeat: no-repeat;
}
.proform__wrap__info__right__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.proform__wrap__info__right button {
  margin-bottom: 6rem;
}
.proform__wrap__info__right #required-elements {
  font-size: 3.5rem;
  color: var(--color-red);
  margin-bottom: 4rem;
}
.proform__wrap__info__right__completed {
  color: green !important;
}
@media (max-width: 900px) {
  .proform__wrap__info__right__indexes {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }
}
@media (max-width: 700px) {
  .proform__wrap__info__right__indexes {
    gap: 2rem;
  }
}
@media (max-width: 390px) {
  .proform__wrap__info__right__indexes {
    flex-direction: column;
  }
}
.proform__wrap__extras {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}
.proform__wrap__extras p {
  margin-top: 2rem;
  font-weight: 700;
}
.proform__wrap__extras__checklist {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}
.proform__wrap__extras__checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.proform__wrap__extras__checklist input[type=checkbox] {
  display: none;
}
.proform__wrap__extras__checklist label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.4;
  font-size: 1.8rem;
}
.proform__wrap__buttons {
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 70rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .proform__wrap__buttons {
    flex-direction: column;
    gap: 2rem;
  }
}
.proform__progress {
  /* Fill inside the bar */
  /* Percentage text */
  /* Color variations (only for color, not background of text) */
}
.proform__progress-bar {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  overflow: hidden;
}
.proform__progress-fill {
  height: 100%;
  transition: width 0.4s ease, background-color 0.4s ease;
}
.proform__progress-text {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  transition: color 0.4s ease;
  background-color: transparent; /* Ensure it's transparent */
}
.proform__progress-text.red {
  color: #ff0000;
}
.proform__progress-text.orange {
  color: #ffa500;
}
.proform__progress-text.green {
  color: green;
}
.proform__progress-fill.red {
  background-color: #ff0000;
}
.proform__progress-fill.orange {
  background-color: #ffa500;
}
.proform__progress-fill.green {
  background-color: green;
}

.proform__profile__image__modal__dialog {
  max-width: 500px;
  margin: 1.75rem auto;
}
.proform__profile__image__modal__content {
  background-color: var(--color-nude-rose);
  border-radius: 20px;
  border: none;
  padding: 1.5rem;
  color: #3a3a3a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  transform: translateY(10px);
  opacity: 0;
}
.proform__profile__image__modal__header {
  border-bottom: none;
  padding-bottom: 0;
}
.proform__profile__image__modal__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0;
}
.proform__profile__image__modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
}
.proform__profile__image__modal__body {
  margin-top: 1rem;
}
.proform__profile__image__modal__footer {
  border-top: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}
.proform__profile__image__input {
  border-radius: 9999px;
  padding: 0.75rem 1rem;
  border: none;
  background-color: #fff;
}
.proform__profile__image__input__wrapper {
  width: 100%;
  margin-top: 1rem;
}
.proform__profile__image__input__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 9999px;
  padding: 0;
  cursor: pointer;
  font-size: 1rem;
  color: #555;
  border: none;
  width: 100%;
  height: 100%;
}
.proform__profile__image__browse {
  background-color: var(--color-black);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 0.4rem 2.2rem;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  height: 4.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.proform__profile__image__browse:hover {
  background-color: #222;
}

#proform__file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70%;
  font-size: 1.8rem;
  padding: 0.75rem 1.25rem;
}

.modal.show .proform__profile__image__modal__content {
  transform: translateY(0);
  opacity: 1;
}

/**********************************/
/* Component: professions section */
/**********************************/
.professions__wrap {
  position: relative;
  background-color: var(--color-light-rose);
  margin-bottom: 6rem;
  border: 1px var(--color-light-rose) solid;
  border-radius: 4rem;
  padding: 4rem 8rem;
  padding-bottom: 5rem;
}
@media (max-width: 900px) {
  .professions__wrap {
    padding: 4rem 4rem;
  }
}
@media (max-width: 700px) {
  .professions__wrap {
    padding: 4rem 2rem;
    border: none;
  }
}
.professions__wrap__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 700px) {
  .professions__wrap__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .professions__wrap__head__add {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.professions__wrap__subtitle {
  font-size: 2.2rem;
  color: var(--color-chestnut);
  margin-top: -0.5rem;
}
.professions__wrap__list {
  margin-top: 3rem;
}
.professions__wrap__list table {
  width: 100%;
}
.professions__wrap__list table thead {
  font-weight: 600;
}
.professions__wrap__list table thead td {
  padding-bottom: 2rem;
}
@media (max-width: 900px) {
  .professions__wrap__list table td:nth-child(3), .professions__wrap__list table th:nth-child(3), .professions__wrap__list table td:nth-child(4), .professions__wrap__list table th:nth-child(4) {
    display: none;
  }
}
@media (max-width: 700px) {
  .professions__wrap__list table td:nth-child(2), .professions__wrap__list table th:nth-child(2) {
    display: none;
  }
  .professions__wrap__list table thead td:nth-child(6)::before {
    content: "IŠTR.";
  }
  .professions__wrap__list table thead td:nth-child(5)::before {
    content: "MOD.";
  }
  .professions__wrap__list table thead td:nth-child(5),
  .professions__wrap__list table thead td:nth-child(6) {
    font-size: 0;
    position: relative;
  }
  .professions__wrap__list table thead td:nth-child(5)::before,
  .professions__wrap__list table thead td:nth-child(6)::before {
    font-size: 1.4rem;
    display: block;
  }
}
.professions__wrap__list svg {
  width: 2rem;
  height: 2rem;
  fill: var(--color-chestnut);
}
.professions-modal__backdrop {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
  box-sizing: border-box;
}
.professions-modal__backdrop.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.professions-modal__content__wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8rem;
}
@media (max-width: 1200px) {
  .professions-modal__content__wrap {
    flex-direction: column;
    gap: 0rem;
  }
}
.professions-modal__content__wrap__element {
  flex: 1;
}
.professions-modal__content__wrap__element .custom-checkbox-label {
  margin-top: 3.5rem;
}
.professions-modal__form-group {
  margin-bottom: 1rem;
}
.professions-modal__actions {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 700px) {
  .professions-modal__actions {
    flex-direction: column;
    gap: 2rem;
  }
}
.professions-modal__errors {
  position: absolute;
  margin-top: 0;
}
.professions-modal-delete-content {
  background-color: var(--color-nude-rose);
  border-radius: 4rem;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.professions-modal-delete-content h3 {
  text-align: center;
}
@media (max-width: 700px) {
  .professions-modal-delete-content {
    padding: 4rem 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 390px) {
  .professions-modal-delete-content {
    width: 30rem;
  }
}

.member__header h1 {
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .member__header h1 {
    margin-bottom: 0;
  }
}
.member__header__line {
  border: none; /* remove default border */
  height: 2px; /* set thickness */
  background-color: var(--color-nude-rose); /* set color */
  margin: 0px auto;
  margin-bottom: 4rem;
}
@media (max-width: 700px) {
  .member__header__line {
    display: none;
    margin: 0;
  }
}
.member__header__wrap {
  position: relative;
  margin-bottom: 4rem;
}
.member__header__wrap__img {
  background-color: var(--color-nude-rose);
  position: absolute;
  top: 4rem;
  width: 11rem;
  height: 11rem;
  border-radius: 1rem;
  overflow: hidden;
}

@media (max-width: 700px) {
  .member__header__wrap__img {
    position: relative;
    margin: 0 auto;
    top: 2rem;
    aspect-ratio: 1/1;
    max-width: 20rem;
    width: 100%;
    height: auto;
  }
}
.member__header__wrap__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.member__header__wrap__elements {
  border-radius: 4rem 0rem 4rem 0rem;
  max-width: 70rem;
  min-height: 19rem;
  margin-left: 5.5rem;
  padding-left: 8rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 700px) {
  .member__header__wrap__elements {
    margin: 0;
    display: none;
  }
}
.member__header__wrap__elements h5 {
  font-weight: 600 !important;
  margin-bottom: 1rem;
}
.member__header__wrap__elements span {
  color: var(--color-chestnut);
}
.member__header__wrap__elements__row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.member__header__wrap__elements__row__details {
  background-color: var(--color-black);
  border-radius: 5rem;
  padding: 0.8rem 2.5rem;
  padding-top: 0.2rem;
  color: var(--color-white);
  fill: var(--color-white);
  width: fit-content;
  display: inline-flex;
  flex-direction: row;
  gap: 1.8rem;
}
.member__header__wrap__elements__row__details svg {
  height: 1.8rem;
  width: 1.8rem;
  stroke-width: 8;
}
.member__header__wrap__elements__row__details a:visited, .member__header__wrap__elements__row__details a:active {
  fill: var(--color-white);
}
.member__header__wrap__elements__row__social {
  margin-top: 0.2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.member__header__wrap__elements__row__social svg {
  height: 2.2rem;
  width: 2.2rem;
}
.member__header__wrap__elements__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.member__header__submenu {
  border-bottom: 1px var(--color-nude-rose) solid;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
  display: inline-block;
}
@media (max-width: 700px) {
  .member__header__submenu {
    max-width: 35rem;
    margin: 0 auto;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
  }
}
.member__header__submenu a {
  margin-right: 4rem;
  color: var(--color-chestnut);
}
.member__header__submenu a:visited {
  color: var(--color-chestnut);
}
.member__header__submenu a:last-child {
  margin-right: 0;
}
.member__header__submenu a.active {
  color: var(--color-black);
}

/******************************/
/* Component: c-view-businesses */
/*****************************/
.view-businesses-box {
  border: 2px solid var(--color-nude-rose);
  border-radius: 2em;
  padding: 4rem 8rem;
  padding-bottom: 5rem;
  margin-bottom: 2rem;
  background: var(--color-white);
  font-family: inherit;
}
@media (max-width: 900px) {
  .view-businesses-box {
    padding: 4rem 4rem;
  }
}
@media (max-width: 700px) {
  .view-businesses-box {
    padding: 4rem 2rem;
  }
}
.view-businesses-box .view-businesses-title {
  margin-bottom: 3rem;
}
.view-businesses-box .view-businesses-table {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 0;
}
.view-businesses-box .view-businesses-table .view-businesses-col {
  /* By default, all columns get flex: 1 */
  flex: 1 1 0;
  min-width: 0;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Make first two columns twice as large as the last two */
}
.view-businesses-box .view-businesses-table .view-businesses-col:nth-child(1), .view-businesses-box .view-businesses-table .view-businesses-col:nth-child(2) {
  flex: 2 1 0;
}
.view-businesses-box .view-businesses-table .view-businesses-col:nth-child(3), .view-businesses-box .view-businesses-table .view-businesses-col:nth-child(4) {
  flex: 1 1 0;
  align-items: center;
}
.view-businesses-box .view-businesses-table .view-businesses-col .col-title {
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
}
.view-businesses-box .view-businesses-table .view-businesses-col .col-list {
  margin-bottom: 0.3rem;
}
.view-businesses-box .view-businesses-table .view-businesses-col .col-icon {
  margin-bottom: 0.3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-businesses-box .view-businesses-table .view-businesses-col .col-icon svg {
  width: 2rem;
  height: 2rem;
  display: block;
  margin: 0 auto;
  fill: var(--color-chestnut);
}
.view-businesses-box .view-businesses-table .view-businesses-col .col-icon a svg {
  transition: filter 0.2s;
}
.view-businesses-box .view-businesses-table .view-businesses-col .col-icon a:hover svg {
  filter: brightness(0.7);
}

#view-businesses-list {
  width: 100%;
  border-collapse: collapse;
}
#view-businesses-list thead td {
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
}
#view-businesses-list tbody td {
  padding: 0.7rem 1rem;
  vertical-align: middle;
}
#view-businesses-list .text-center {
  text-align: center;
}
#view-businesses-list .view-icon svg,
#view-businesses-list a svg {
  width: 2rem;
  height: 2rem;
  fill: var(--color-chestnut);
  transition: filter 0.2s;
}
#view-businesses-list .view-icon:hover svg,
#view-businesses-list a:hover svg {
  filter: brightness(0.7);
}
#view-businesses-list svg[style*="opacity:0.5"] {
  fill: #bbb;
}
@media (max-width: 900px) {
  #view-businesses-list td:nth-child(2), #view-businesses-list th:nth-child(2) {
    display: none !important;
  }
}
@media (max-width: 700px) {
  #view-businesses-list td:nth-child(4), #view-businesses-list th:nth-child(4) {
    display: none !important;
  }
}
/*
.modal-view-details {
  padding: 1rem;
}

.modal-view-details-row {
  margin-bottom: 1.2rem;
  color: var(--color-black);
}

.modal-view-details .modal-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.modal-view-details-footer {
  justify-content: flex-end;
  padding-right: 3.5rem;
  padding-bottom: 2.5rem;
  border: none;
  background: transparent;
}
*/
/***************************/
/* Component: c-view-offers */
/***************************/
.view-offers-box {
  margin-top: 4rem;
  margin-bottom: 4rem;
  border: 2px solid var(--color-nude-rose);
  border-radius: 2em;
  padding: 4rem 8rem;
  padding-bottom: 5rem;
  background: var(--color-white);
  font-family: inherit;
}
@media (max-width: 900px) {
  .view-offers-box {
    padding: 4rem 4rem;
  }
}
@media (max-width: 700px) {
  .view-offers-box {
    padding: 4rem 2rem;
  }
}
.view-offers-box .view-offers-title {
  margin-bottom: 3rem;
}

.view-offers-table {
  width: 100%;
}

#view-offers-list {
  width: 100%;
  border-collapse: collapse;
}
#view-offers-list thead td {
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
}
#view-offers-list tbody td {
  padding: 0.7rem 1rem;
  vertical-align: middle;
}
#view-offers-list .text-center {
  text-align: center;
}
@media (max-width: 900px) {
  #view-offers-list td:nth-child(2), #view-offers-list th:nth-child(2) {
    display: none !important;
  }
}
@media (max-width: 700px) {
  #view-offers-list td:nth-child(3), #view-offers-list th:nth-child(3) {
    display: none !important;
  }
}
#view-offers-list .view-icon svg,
#view-offers-list a svg {
  width: 2rem;
  height: 2rem;
  fill: var(--color-chestnut);
  transition: filter 0.2s;
}
#view-offers-list .view-icon:hover svg,
#view-offers-list a:hover svg {
  filter: brightness(0.7);
}
#view-offers-list svg[style*="opacity:0.5"] {
  fill: #bbb;
}
/******************/
/*   header css   */
/******************/
.header {
  width: 100%;
  position: absolute;
  background-color: transparent;
  z-index: 1000;
}
.header__wrap {
  max-width: 144rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .header__wrap {
    padding: 4rem 5%;
  }
}
.header__dark {
  background-color: var(--color-nude-rose);
}
.header__light {
  background-color: var(--color-white);
}
.header__homeLink {
  display: block;
  z-index: 1000;
}
.header__homeLink__img {
  width: 16rem;
  height: auto;
}
.header__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.header__menu__link-active {
  margin-top: 1px;
  border-bottom: 1px var(--color-black) solid;
}
@media (max-width: 900px) {
  .header__menu {
    width: 100vw;
    position: absolute;
    margin: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    background-color: var(--color-nude-rose);
    padding-top: 15rem;
    padding-bottom: 10rem;
    left: 0;
    top: 0;
    z-index: 500;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}
.header__menu.open {
  opacity: 1;
  transform: translateY(0);
}

.mobile__menu {
  display: none;
}
@media (max-width: 900px) {
  .mobile__menu {
    z-index: 1000;
    display: block;
  }
}
.mobile__menu__btn {
  z-index: 999;
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  background-color: transparent;
  border: 1px solid black;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.mobile__menu__btn__line, .mobile__menu__btn__line2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  background-color: black;
  transform-origin: center center;
  transition: transform 0.3s ease, width 0.3s ease;
}
.mobile__menu__btn__line {
  transform: translate(-50%, -50%);
  width: 55%; /* Initial width */
  top: 43%;
}
.mobile__menu__btn__line2 {
  transform: translate(-50%, -50%);
  width: 40%; /* Initial width */
  top: 57%;
}
.mobile__menu__btn.open .mobile__menu__btn__line {
  transform: translate(-50%, -50%) rotate(45deg);
  width: 50%; /* Adjusted width to match */
  top: 50%;
}
.mobile__menu__btn.open .mobile__menu__btn__line2 {
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 50%; /* Adjusted width to match */
  top: 50%;
}

/******************/
/*   Footer css   */
/******************/
.footer {
  width: 100%;
  background-color: var(--color-nude-rose);
  border-radius: 8rem 8rem 0 0;
}
.footer__wrap {
  position: relative;
  max-width: 144rem;
  margin: 0 auto;
  padding: 8rem 5% 5rem 5%;
  min-height: 30rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .footer__wrap {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .footer__wrap {
    padding-bottom: 14rem;
  }
}
.footer__wrap h4 {
  font-size: 1.6rem;
  font-weight: 100;
  margin-bottom: 4rem;
}
.footer__wrap ul {
  font-size: 1.4rem;
  list-style: none;
  padding-left: 0;
}
.footer__wrap ul li {
  margin: 2rem 0;
}
.footer__wrap__left {
  width: 48%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer__wrap__left__social {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  margin-top: 9rem;
}
.footer__wrap__left__social svg {
  height: 2.4rem;
  width: 2.4rem;
}
@media (max-width: 900px) {
  .footer__wrap__left__social {
    margin-top: 4rem;
  }
}
@media (max-width: 700px) {
  .footer__wrap__left__social {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .footer__wrap__left {
    width: 55%;
  }
}
@media (max-width: 900px) {
  .footer__wrap__left {
    width: 100%;
  }
}
@media (max-width: 390px) {
  .footer__wrap__left {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4rem;
  }
}
.footer__wrap__right {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .footer__wrap__right {
    width: 100%;
    flex-direction: row;
    margin-top: 4rem;
  }
}
@media (max-width: 700px) {
  .footer__wrap__right {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.footer__wrap__right p {
  font-size: 2rem;
}
.footer__wrap__menu {
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .footer__wrap__menu {
    width: 48%;
  }
}
@media (max-width: 700px) {
  .footer__wrap__menu {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .footer__wrap__slogan {
    width: 48%;
  }
}
@media (max-width: 700px) {
  .footer__wrap__slogan {
    width: 100%;
  }
}
.footer__wrap__slogan__write {
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .footer__wrap__slogan__write {
    width: 48%;
  }
}
@media (max-width: 700px) {
  .footer__wrap__slogan__write {
    width: 100%;
  }
}
.footer__wrap__slogan__copy {
  font-size: 1.2rem !important;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .footer__wrap__slogan__copy {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
  }
}
/******************/
/* Page:index.php */
/******************/
.indx__hero {
  height: 90rem;
  padding-top: 18rem;
  padding-bottom: 7.6rem;
  background-image: url("../images/hero-main.webp");
  background-position: 80% calc(100% - 7rem); /* Position image at 50% width and 2rem from the bottom */
  background-size: auto 85%; /* Set image width to 50% of the parent and auto height */
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .indx__hero {
    padding-top: 21rem;
    height: 105rem;
    padding-top: 30rem;
    background-size: auto 91%;
  }
}
@media (max-width: 700px) {
  .indx__hero {
    padding-top: 28rem;
  }
}
.indx__hero__login {
  margin-left: 18rem;
}
@media (max-width: 1200px) {
  .indx__hero__login {
    margin-left: 10rem;
  }
}
@media (max-width: 900px) {
  .indx__hero__login {
    margin-left: 6rem;
  }
}
@media (max-width: 700px) {
  .indx__hero__login {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media (max-width: 390px) {
  .indx__hero__login {
    margin-left: 0rem;
    margin-right: 0rem;
  }
}
.indx__hero__login__content {
  max-width: 43rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4rem 4rem;
  text-align: center;
}
@media (max-width: 900px) {
  .indx__hero__login__content {
    opacity: 0.9;
  }
}
@media (max-width: 700px) {
  .indx__hero__login__content {
    padding: 6rem 2rem;
  }
}
.indx__hero__login__title {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  font-weight: 100;
}
.indx__hero__login__btn {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.indx__hero__login__passlost {
  margin-top: 2rem;
}
.indx__hero__login__passlost__link {
  border-bottom: 1px var(--color-chestnut) solid;
}
.indx__ideogram {
  margin-top: -8rem;
}
.indx__ideogram__wrap {
  padding: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6rem;
}
@media (max-width: 390px) {
  .indx__ideogram__wrap {
    padding: 8rem 2rem;
  }
}
.indx__ideogram__steps {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .indx__ideogram__steps {
    margin-left: 35%;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .indx__ideogram__steps {
    margin-left: 2rem;
  }
}
@media (max-width: 390px) {
  .indx__ideogram__steps {
    margin-left: 0;
  }
}
.indx__ideogram__steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 11.2rem;
  font-size: 1.8rem;
}
@media (max-width: 900px) {
  .indx__ideogram__steps .step {
    flex-direction: row;
    width: 100%;
  }
}
.indx__ideogram__steps .step__point {
  aspect-ratio: 1/1;
  width: 11.2rem;
  height: 11.2rem;
  max-width: 11.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.indx__ideogram__steps .step .d__rose-m {
  aspect-ratio: 1/1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.indx__ideogram__steps .step p {
  margin-top: 2rem;
  margin-left: -3rem;
  margin-right: -3rem;
}
@media (max-width: 900px) {
  .indx__ideogram__steps .step p {
    margin: 0;
    margin-left: 3rem;
  }
}
.indx__ideogram__steps .arrow {
  height: 11.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .indx__ideogram__steps .arrow {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }
}
.indx__ideogram__steps .arrow .icon {
  height: 3.9rem;
  width: 3.9rem;
}
@media (max-width: 900px) {
  .indx__ideogram__steps .arrow .icon {
    transform: rotate(90deg);
    margin-left: 3.5rem;
  }
}
.indx__ideogram__buttons {
  display: flex;
  flex-direction: row;
  gap: 6rem;
}
@media (max-width: 900px) {
  .indx__ideogram__buttons {
    flex-direction: column;
    margin-top: 2rem;
  }
}
.indx__search {
  padding: 4rem 0rem;
  width: 100%;
}
@media (max-width: 900px) {
  .indx__search {
    padding: 4rem 4rem;
  }
}
@media (max-width: 700px) {
  .indx__search {
    padding: 4rem 2rem;
  }
}
.indx__search h5 {
  margin-bottom: 3rem;
}
.indx__search__form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.indx__results {
  padding: 4rem 0rem;
}
@media (max-width: 1200px) {
  .indx__results {
    padding: 4rem 4rem;
  }
}
@media (max-width: 700px) {
  .indx__results {
    padding: 4rem 2rem;
  }
}
.indx__results__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 3rem;
}
.indx .step,
.indx .arrow {
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: opacity;
}
.indx .step.visible,
.indx .arrow.visible {
  opacity: 1;
}
/*******************/
/* Page:sugnup.php */
/*******************/
.sign__hero {
  height: 90rem;
  padding-top: 22rem;
  padding-bottom: 7.6rem;
  background-image: url("../images/hero-main.webp");
  background-position: 80% calc(100% - 7rem); /* Position image at 50% width and 2rem from the bottom */
  background-size: auto 85%; /* Set image width to 50% of the parent and auto height */
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .sign__hero {
    padding-top: 28rem;
    height: 105rem;
    background-size: auto 91%;
  }
}
@media (max-width: 700px) {
  .sign__hero {
    padding-top: 28rem;
  }
}
@media (max-width: 390px) {
  .sign__hero {
    padding-top: 26rem;
  }
}
.sign__hero__login {
  margin-left: 0rem;
}
@media (max-width: 900px) {
  .sign__hero__login {
    margin-left: 2rem;
  }
}
@media (max-width: 700px) {
  .sign__hero__login {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 390px) {
  .sign__hero__login {
    margin-left: 0rem;
    margin-right: 0rem;
  }
}
.sign__hero__login__content {
  max-width: 64rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4rem 4rem;
  text-align: center;
}
@media (max-width: 1200px) {
  .sign__hero__login__content {
    opacity: 0.9;
  }
}
@media (max-width: 700px) {
  .sign__hero__login__content {
    padding: 4rem 2rem;
  }
}
.sign__hero__login__content__row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .sign__hero__login__content__row {
    flex-direction: column;
  }
}
.sign__hero__login__title {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  font-weight: 100;
}
.sign__hero__login__btn {
  margin-top: 2rem;
}
@media (max-width: 1200px) {
  .sign__hero__login__btn {
    margin-top: 1rem;
  }
}
.sign__hero__login__passlost {
  margin-top: 2rem;
}
.sign__hero__login__passlost__link {
  border-bottom: 1px var(--color-chestnut) solid;
}

.contx {
  max-width: 144rem;
  margin: 0 auto;
}
.contx__hero {
  height: 90rem;
  padding-top: 14rem;
  padding-bottom: 7.6rem;
  background-image: url("../images/hero-main.webp");
  background-position: 90% calc(100% - 0rem); /* Position image at 50% width and 2rem from the bottom */
  background-size: auto 80%; /* Set image width to 50% of the parent and auto height */
  background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .contx__hero {
    background-image: none;
    height: 80rem;
  }
}
.contx__hero__form {
  padding-left: 12rem;
}
@media (max-width: 900px) {
  .contx__hero__form {
    width: 100%;
    padding-left: 0rem;
  }
}
@media (max-width: 700px) {
  .contx__hero__form {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.contx__hero__form__content {
  background-color: var(--color-white);
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4rem 6rem;
  text-align: center;
}
@media (max-width: 900px) {
  .contx__hero__form__content {
    max-width: none;
    margin: 0 6rem;
  }
}
@media (max-width: 700px) {
  .contx__hero__form__content {
    padding: 4rem 2rem;
    margin: 0 2rem;
  }
}
@media (max-width: 390px) {
  .contx__hero__form__content {
    padding: 4rem 1rem;
    margin: 0;
  }
}
.contx__hero__form__title {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  font-weight: 100;
}
.contx__hero__form__btn {
  margin-top: 1rem;
}
.contx__hero__form__passlost {
  margin-top: 2rem;
}
.contx__hero__form__passlost__link {
  border-bottom: 1px var(--color-chestnut) solid;
}

/**********************/
/*   info page  css   */
/**********************/
.info {
  background-color: var(--color-nude-rose);
  padding-top: 18rem;
  padding-bottom: 10rem;
}
.info__wrap {
  padding: 0 7.2rem;
}
@media (max-width: 1440px) {
  .info__wrap {
    padding: 0rem 5%;
  }
}
.info__body {
  background-color: var(--color-white);
  border-radius: 8rem 8rem 0 0;
  margin-top: -8rem;
  padding: 8rem 0rem;
}
@media (max-width: 900px) {
  .info__body {
    border-radius: 4rem 4rem 0 0;
    padding: 4rem 0rem;
  }
}
.info__body__wrap {
  padding: 0 7.2rem;
}
@media (max-width: 1440px) {
  .info__body__wrap {
    padding: 0rem 5%;
  }
}
.info__body p {
  margin: 2rem 0;
}

/*****************************/
/*   pw recovery page  css   */
/*****************************/
.pwr {
  background-color: var(--color-nude-rose);
  padding-top: 18rem;
  padding-bottom: 10rem;
}
.pwr__wrap {
  padding: 0 7.2rem;
}
@media (max-width: 1440px) {
  .pwr__wrap {
    padding: 0rem 5%;
  }
}
.pwr__body {
  background-color: var(--color-white);
  border-radius: 8rem 8rem 0 0;
  margin-top: -8rem;
  padding: 8rem 0rem;
}
@media (max-width: 900px) {
  .pwr__body {
    border-radius: 4rem 4rem 0 0;
    padding: 4rem 0rem;
  }
}
.pwr__body__wrap {
  max-width: 50rem;
  min-height: 25rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}
.pwr__body__wrap__title p {
  display: inline-block;
  border-bottom: 1px var(--color-chestnut) solid;
  padding-bottom: 1.5rem;
}
@media (max-width: 390px) {
  .pwr__body__wrap__title p {
    border-bottom: none;
  }
}
.pwr__body p {
  margin: 2rem 0;
}
.pwr__body form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/***********************/
/*   Member page css   */
/***********************/
.member {
  padding-top: 15rem;
}
.member__search {
  padding-bottom: 4rem;
  width: 100%;
}
@media (max-width: 900px) {
  .member__search {
    padding: 0rem 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 700px) {
  .member__search {
    padding: 0rem 2rem;
    padding-bottom: 4rem;
  }
}
.member__search__toggle {
  display: none;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .member__search__toggle {
    display: block;
  }
}
.member__search__toggle-btn {
  width: 100%;
  height: 50px;
  margin-top: 2rem;
  padding: 0 20px;
  background-color: var(--color-nude-rose);
  border: 1px solid var(--color-nude-rose);
  border-radius: 50px;
  text-align: left;
  font-weight: 600;
  color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-size: 16px;
}
.member__search__toggle-btn:after {
  content: "▼";
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease;
}
.member__search__toggle-btn.active:after {
  transform: rotate(180deg);
}
@media (max-width: 700px) {
  .member__search__collapsible {
    display: none;
  }
  .member__search__collapsible.active {
    display: block;
  }
}
.member__search h5 {
  margin-bottom: 3rem;
}
.member__search__form-wrapper {
  width: 100%;
}
.member__search form {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .member__search form {
    flex-direction: column;
    width: 100%;
  }
}
.member__search__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .member__search__form {
    width: 100%;
  }
}
.member__search__form__row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: nowrap;
}
.member__search__form__row--bottom {
  margin-top: auto;
}
@media (max-width: 1200px) {
  .member__search__form__row {
    flex-wrap: wrap;
  }
  .member__search__form__row--bottom {
    margin-top: 2rem;
  }
}
@media (max-width: 700px) {
  .member__search__form__row {
    flex-direction: column;
    width: 100%;
  }
}
.member__search__form .input-container {
  margin-bottom: 0;
}
.member__search__form-sm {
  flex: 1;
}
@media (max-width: 1200px) {
  .member__search__form-sm {
    min-width: 45%;
  }
}
@media (max-width: 700px) {
  .member__search__form-sm {
    width: 100%;
  }
}
.member__search__form-md {
  flex: 2;
}
@media (max-width: 1200px) {
  .member__search__form-md {
    min-width: 45%;
  }
}
@media (max-width: 700px) {
  .member__search__form-md {
    width: 100%;
  }
}
.member__search__form-lg {
  flex: 3;
}
@media (max-width: 1200px) {
  .member__search__form-lg {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .member__search__form-lg {
    width: 100%;
  }
}
.member__search__buttons {
  width: 20rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .member__search__buttons {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2rem;
  }
}
@media (max-width: 700px) {
  .member__search__buttons {
    flex-direction: column;
    width: 100%;
  }
  .member__search__buttons .btn-black,
  .member__search__buttons .btn-transp {
    width: 100%;
  }
}

/***********************/
/*   Offers page css   */
/***********************/
.offers {
  padding-top: 15rem;
}
.offers__list__form {
  margin-top: 3rem;
  margin-bottom: 4rem;
  max-width: 75rem;
  display: flex;
  gap: 2rem;
  flex-direction: row;
}
@media (max-width: 700px) {
  .offers__list__form {
    flex-direction: column;
  }
}
.offers__list__results {
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.offers__list__results table {
  width: 100%;
  margin-bottom: 2rem;
}
.offers__list__results table thead {
  font-weight: 600;
  text-transform: uppercase;
}
.offers__list__results table thead th {
  padding-bottom: 3rem;
}
.offers__list__results table tbody tr td {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-nude-rose);
}
.offers__list__results svg {
  fill: var(--color-chestnut);
  height: 2rem;
  width: 2rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .offers__list .offers__list__results table th:nth-child(1),
  .offers__list .offers__list__results table td:nth-child(1),
  .offers__list .offers__list__results table th:nth-child(4),
  .offers__list .offers__list__results table td:nth-child(4) {
    display: none !important;
  }
}
@media (max-width: 700px) {
  .offers__list .offers__list__results table th:nth-child(3),
  .offers__list .offers__list__results table td:nth-child(3) {
    display: none !important;
  }
}
@media (max-width: 390px) {
  .offers__list .offers__list__results table th:nth-child(5),
  .offers__list .offers__list__results table td:nth-child(5) {
    display: none !important;
  }
}
@media (max-width: 700px) {
  .offers__modal__title {
    text-align: left !important;
    font-size: 3.6rem !important;
  }
}
@media (max-width: 390px) {
  .offers__modal__title {
    text-align: center !important;
  }
}

.offer-modal-flex {
  display: flex;
  gap: 2rem;
  padding: 1.2rem 0.7rem;
}
@media (max-width: 900px) {
  .offer-modal-flex {
    flex-direction: column;
    gap: 1rem;
    padding: 0.7rem 0.3rem;
  }
}

.offer-modal-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}

.offer-modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.offer-modal-field strong {
  font-weight: 600;
  margin-bottom: 0.1em;
}
.offer-modal-field div {
  word-break: break-word;
  white-space: normal;
}

/*# sourceMappingURL=style.css.map */
