
html,
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ad--widget{
  padding: 0;
  background-color: transparent;
}

div.side_modal {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;

  width: 485px;
  max-width: 100vw;

  transform: translateX(100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;

  font-family: "FiraGO";
  font-style: normal;
  font-feature-settings: "case" on;

  overflow: hidden;
  z-index: 2147483647;

  will-change: transform;
  backface-visibility: hidden;
  isolation: isolate;
   -webkit-font-smoothing: antialiased;
}

div.side_modal.toggled {
  transform: translateX(0);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

div.side_modal div.side_modal_body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;

  padding: 0 30px 20px;
  background-color: var(--bg-color);

  overflow: hidden;
  box-sizing: border-box;

  -webkit-overflow-scrolling: touch;
}

div.side_modal div.side_modal_body div.close_side {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 10;
}

div.side_modal div.side_modal_body div.close_side::before,
div.side_modal div.side_modal_body div.close_side::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 50%;
  top: 50%;
  background-color: var(--text-color);
}

div.side_modal div.side_modal_body div.close_side::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

div.side_modal div.side_modal_body div.close_side::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

div.user_tabs_nav {
  flex-shrink: 0;
  padding-top: 55px;
  margin: 0 -30px;
  padding-left: 30px;
  padding-right: 30px;
}
div.user_tabs_nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
div.user_tabs_nav ul li {
  flex: 1;
}
div.user_tabs_nav ul li a {
  display: block;
  position: relative;
  padding: 15px 0;
  text-align: center;
}
div.user_tabs_nav ul li a::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--border-color);
}
div.user_tabs_nav ul li.tab_active a::before {
  height: 3px;
  bottom: -1px;
  background-color: #00e6cf;
}
div.user_tabs_wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
div.user_tabs_wrap div.user_tab_content {
  display: none;
}

/* ორივე ტაბის ფორმა გაიჭიმოს, რომ ღილაკი ჩავარდეს */
#user_tab1 form,
#user_tab2 form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

div.user_tabs_wrap div.user_tab_content.tab_active {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: hidden;
  padding-top: 20px;
  padding-bottom: 40px;
}

h3.side_modal_title {
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  flex-shrink: 0;
  margin: 8px 0 20px;
}
h3.side_modal_title span {
  padding: 0 15px;
  font-size: 18px;
  background-color: var(--bg-color);
  z-index: 2;
}
h3.side_modal_title::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-1px);
  background-color: var(--border-color);
  z-index: 1;
}
div.contact_modal div.side_modal_body div.close_side {
  top: 15px;
}
div.contact_modal h3.side_modal_title {
  margin-top: 70px;
  margin-bottom: 40px;
}
div.contact_modal div.form_item {
  margin-bottom: 25px;
}

div.contact_modal div.form_item:last-child {
  margin-top: 30px;
}

div.form_item {
  position: relative;
  margin-bottom: 0;
}
div.form_item * {
  position: relative;
}
div.form_item.shorter {
  margin-right: 0;
}
div.form_item label {
  display: block;
  margin-bottom: 5px;
  color: #777;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
div.form_item div.input_wrap em {
  display: block;
  position: absolute;
  left: 15px;
  top: 12px;
  z-index: 2;
}
div.form_item div.input_wrap img {
  display: block;
  position: absolute;
  left: 15px;
  top: 13px;
  z-index: 2;
}
div.form_item div.input_wrap em:before {
  color: #00e6cf;
  font-size: 20px;
}
div.form_item div.input_wrap input,
div.form_item div.input_wrap textarea {
  width: 100%;
  height: 45px;
  padding-left: 45px;
  padding-right: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.4s ease;
  z-index: 1;
}
div.form_item div.input_wrap input:focus,
div.form_item div.input_wrap textarea:focus {
  border: 1px solid #aaa;
  outline: 0;
}
div.form_item div.input_wrap textarea {
  height: 200px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 1370px) {
  div.form_item div.input_wrap textarea {
    height: 180px;
  }
}
div.form_item button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.4s ease;
}
div.form_item button:hover {
  border: 1px solid #aaa;
}
div.form_item button:focus {
  outline: 0;
}
div.form_item button span {
  margin-top: 2px;
  margin-right: 10px;
}
div.form_item button em:before {
  color: #00e6cf;
  font-size: 20px;
}

#sign_in_form {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 25px;
}

#sign_up_form {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 25px;
}

div.form_transparent_item {
  position: relative;
    margin-bottom: 0;
}

div.form_checkbox_item {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

#checkbox {
  height: 12px;
  margin: 0 !important;
  cursor: pointer;
  align-self: center;
}

div.remember {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
div.remember label {
  margin: 0;
  text-transform: lowercase;
  cursor: pointer;
  font-feature-settings: "case" off;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 360px) {
  div.remember label {
    font-size: 12px;
  }
}

div.remind_pass {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

div.remind_pass span {
  font-feature-settings: "case" off;
  font-size: 14px;
  cursor: pointer;
  opacity: 1;
}

@media (max-width: 360px) {
  div.remind_pass span {
    font-size: 12px;
  }
}
div.remind_pass a img {
  height: 15px;
  align-self: center;
  opacity: 0.6;
}

div.social_login {
  flex-shrink: 0;
  margin-bottom: 0;
}

div.social_login ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
div.social_login ul li {
  flex: 1;
  display: flex;
  justify-content: center;
}
div.social_login ul li a em::before {
  color: var(--text-color);
  font-size: 36px;
  transition: color 0.4s ease;
}
div.social_login ul li a em.fa-facebook-f:hover::before { color: #1877f2; }
div.social_login ul li a em.fa-google:hover::before      { color: #db4437; }

div.or {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  text-align: center;
}

div.or span {
  padding: 0 15px;
  background-color: var(--bg-color);
  z-index: 2;
}
div.or::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  z-index: 1;
}

div.form_transparent_item input {
  width: 100%;
  height: 40px;
  font-size: 14px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  border-radius: 3px;
  transition: all 0.4s ease;
}
div.form_transparent_item input:-webkit-autofill {
  padding-left: 10px;
}
div.form_transparent_item input:focus {
  outline: 0;
}
div.form_transparent_item button {
  width: 100%;
  height: 45px;
  font-size: 16px;
  color: var(--text-color);
  text-align: center;
  background-color: #00e6cf;
  border: none;
  border-radius: 4px;
  transition: all 0.4s ease;
  cursor: pointer;
  font-feature-settings: "case" on;
}

.form_transparent_item {
  position: relative;
}
.form_transparent_item .toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.form_transparent_item .toggle-btn svg.eye-open {
  width: 28px;
  height: 28px;
  fill: #777;
  stroke: none;
}
.form_transparent_item .toggle-btn svg.eye-closed {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #777;
  stroke-width: 1.8px;
}
.toggle-btn .eye-open   { display: block; }
.toggle-btn .eye-closed { display: none; }

.form_transparent_item.log_out button[type="submit"] {
  background-color: var(--text-color);
  color: white;
  font-feature-settings: "case" on;
}
.form_transparent_item.log_out button:hover {
  background-color: rgb(45, 45, 45);
  color: white;
}

div.form_double {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

form .form_transparent_item input::placeholder,
form .form_double input::placeholder {
  font-feature-settings: "case" on;
}
form .form_transparent_item input,
form .form_double input {
  text-transform: none;
}

h3.my_profile {
  width: fit-content;
  color: rgb(70, 70, 70);
  padding: 10px 80px;
  margin: 10px auto 30px;
  font-size: 18px;
  font-feature-settings: "case" on;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

div.already_done {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-height: 0;
  padding-bottom: 5px;
  margin-top: 0;
}

div.already_done div.trigger_user {
  width: 100%;
}


/* 1. კონტეინერი - შუაში მოაქცევს შიგთავსს */
#user_tab1 .already_done {
  justify-content: center;
  padding-top: 40px;
}

/* 2. ტექსტი - აიწევა ზემოთ */
#user_tab1 .already_done .already_intro {
  margin-top: -25px;
  margin-bottom: 0;
}

/* 3. ღილაკი - ჩამოიწევა ქვემოთ და დაშორდება ტექსტს */
#user_tab1 .already_done .trigger_user {
  margin-top: 26px;
}


#user_tab2 .already_done {
  justify-content: center;
  padding-top: 10px;
}

#user_tab2 .already_done .already_intro {
  margin-top: 0px; /* ტექსტს ოდნავ ზემოთ სწევს */
  margin-bottom: 0;
}

#user_tab2 .already_done .trigger_user {
  margin-top: 18px;   /* ღილაკს აახლოებს ტექსტთან */
}

/* -------------------------
    LOGIN TAB
------------------------- */

#user_tab1 .or {
  margin: 0 10% 32px;
}

#user_tab1 .form_checkbox_item {
  margin-top: 10px;
}

#user_tab1 .submiti {
  margin-top: 10px;
  margin-bottom: 0;
}

/* -------------------------
    REGISTER TAB
------------------------- */

#user_tab2 .or {
  margin: 0 10% 24px;
}

#user_tab2 .submiti {
  margin-top: 10px;
  margin-bottom: 0;
}

#user_tab1 .social_login,
#user_tab2 .social_login {
  margin-top: 30px;
}

div.already_done div.already_intro {
  margin-bottom: 0;
  font-size: 14px;
  font-family: "BPG Arial";
}
div.already_done div.trigger_user a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  transition: all 0.4s ease;
}
div.already_done div.trigger_user a:hover {
  border: 1px solid #aaa;
}

.form_transparent_item input.am-err {
  border-bottom: 1.5px solid #e53935;
  animation: am-shake 0.3s ease;
  font-size: 12.5px;
}
@keyframes am-shake {
  0%,100% { transform: translateX(0); }
  25%         { transform: translateX(-6px); }
  75%         { transform: translateX(6px); }
}

.header--mainbar {
  margin-bottom: 20px;
}
.header--mainbar .container {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.header--mainbar .container::before,
.header--mainbar .container::after {
  display: none;
}

.user-check {
  position: absolute;
  bottom: -2px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: #00e6cf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-check svg {
  width: 10px;
  height: 10px;
}
.user-logged-in-mobile a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-check-mobile {
  position: absolute;
  bottom: 29px;
  right: 14px;
  width: 14px;
  height: 13px;
  background: #00e6cf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-check-mobile svg {
  width: 9px;
  height: 9px;
}

@media (max-width: 568px) {
  div.side_modal.toggled {
    width: 100%;
  }
  div.side_modal div.side_modal_body {
    width: 100%;
    padding: 0 20px 20px;
  }
  div.user_tabs_nav {
    padding-top: 60px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  div.social_login ul li a em::before {
    font-size: 28px;
  }

  h3.my_profile {
    padding: 10px 40px;
   }

    #sign_in_form,
  #sign_up_form {
    gap: 18px;
  }
}

@media (max-height: 600px) {
  div.contact_modal h3.side_modal_title {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  div.contact_modal div.form_item {
    margin-bottom: 15px;
  }
  div.form_item div.input_wrap textarea {
    height: 100px;
  }
}


/* Flash Message */
.flash_success,
.flash_error {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    z-index: 9999;
    transition: opacity .3s ease;
}
.flash_success { background: #00b894; color: #fff; }
.flash_error   { background: #e74c3c; color: #fff; }

@media (max-width: 568px) {
    .flash_success,
    .flash_error {
        width: 90%;
        text-align: center;
        font-size: 14px;
        bottom: 20px;
    }
}


.header--mainbar .container .logo {
  display: flex;
  align-items: center;
  width: 230px;
  margin-right: 15px;
}

.header--mainbar .container .logo a {
  display: block;
  color: inherit;
  transition: none;
  position: relative;
}

.header--mainbar .container .logo a svg {
  width: 100%;
  height: auto;
  display: block;
  color: initial;
}

.header--mainbar .container .header_banner {
  display: flex;
  align-items: center;
  max-width: 550px;
}
.header--mainbar .container .header_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 15px;
}
.header--mainbar .container .header_right .weather_date {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 5px;
  padding-bottom: 5px;
  width: 325px;
  font-size: 12px;
  font-family: "FiraGO";
  font-style: normal;
  font-feature-settings: "case" on;
  border: 1px solid #00e6cf;
  border-top: none;
}
.header--mainbar .container .header_right .weather_date::after {
  display: block;
  position: absolute;
  content: "";
  width: 130px;
  height: 100%;
  right: 0;
  bottom: 0;
  transform: translate(1px, 1px);
  border-right: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  z-index: 1;
}
.header--mainbar .container .header_right .weather_date .weather {
  display: flex;
  align-items: flex-start;
  margin-right: 10px;
  z-index: 2;
}
.header--mainbar .container .header_right .weather_date .weather em {
  margin-top: 4px;
  margin-right: 5px;
}
.header--mainbar .container .header_right .weather_date .date {
  z-index: 2;
}
.header--mainbar .container .header_right .header_icons {
  position: relative;
}
.header--mainbar .container .header_right .header_icons * {
  transition: all 0.4s ease;
}
.header--mainbar .container .search_modal {
  position: absolute;
  width: 0;
  right: 65px;
  bottom: -8px;
  background-color: var(--bg-color);
  border-radius: 5px;
  transition: all 0.4s ease;
  z-index: 2;
  overflow: hidden;
}
.header--mainbar .container .search_modal.toggled {
  width: calc(100% - 328px);
}
.header--mainbar .container .search_modal input {
  width: 100%;
  height: 42px;
  font-size: 18px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 10px 85px 10px 12px;
  z-index: 1;
}
.header--mainbar .container .search_modal input:focus-visible {
  border-color: var(--border-color);
  outline: none;
}
.header--mainbar .container .search_modal input::placeholder {
  font-size: 18px;
}

.header--mainbar .container .search_modal button {
  display: flex;
  align-items: center;
  position: absolute;
  width: auto;
  height: auto;
  top: 8px;
  right: 10px;
  font-size: 14px;
  border: none;
  background-color: transparent;
  border-radius: 0;
  z-index: 2;
}
.header--mainbar .container .header_right .header_icons {
  transform: translateY(3px);
}
.header--mainbar .container .header_right .header_icons ul {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 1;
}
.header--mainbar .container .header_right .header_icons ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
}
.header--mainbar .container .header_right .header_icons ul li::after {
  display: block;
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--text-color);
}
/* .header--mainbar
  .container
  .header_right
  .header_icons
  ul
  li:nth-of-type(2)::after {
  background-color: #00e6cf;
} */
.header--mainbar .container .header_right .header_icons ul li:last-child {
  padding-right: 5px;
}
.header--mainbar
  .container
  .header_right
  .header_icons
  ul
  li:last-child::after {
  display: none;
}
.header--mainbar .container .header_right .header_icons ul li a {
  position: relative;
}
.header--mainbar .container .header_right .header_icons ul li a img {
  height: 30px;
}
.header--mainbar
  .container
  .header_right
  .header_icons
  ul
  li
  a.toggle_search::before,
.header--mainbar
  .container
  .header_right
  .header_icons
  ul
  li
  a.toggle_search::after {
  display: block;
  position: absolute;
  content: "";
  width: 1.2px;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  transition: all 0.4s ease;
  opacity: 0;
}
.header--mainbar
  .container
  .header_right
  .header_icons
  ul
  li
  a.toggle_search.toggled::before {
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}
.header--mainbar
  .container
  .header_right
  .header_icons
  ul
  li
  a.toggle_search.toggled::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 1;
}
.header--mainbar
  .container
  .header_right
  .header_icons
  ul
  li
  a.toggle_search.toggled
  img {
  opacity: 0;
}

.header--mainbar .container .resp_menu_toggle {
  display: none;
  position: absolute;
  width: 30px;
  height: 40px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 999;
}
.header--mainbar .container .resp_menu_toggle div {
  position: absolute;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background-color: var(--text-color);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
  opacity 0.25s ease, 
  width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.header--mainbar .container .resp_menu_toggle div:nth-of-type(1) {
  top: 7px;
  width: 80%;
}
.header--mainbar .container .resp_menu_toggle div:nth-of-type(2) {
  top: 18px;
  width: 100%;
  background-color: #00e6cf;
}
.header--mainbar .container .resp_menu_toggle div:nth-of-type(3) {
  top: 29px;
  width: 50%;
}
.header--mainbar .container .resp_menu_toggle.toggled div:nth-of-type(1) {
  top: 7px;
  transform: translateY(11px) rotate(45deg);
  width: 100%;
}
.header--mainbar .container .resp_menu_toggle.toggled div:nth-of-type(2) {
  opacity: 0;
  transition-delay: 0s;
}
.header--mainbar .container .resp_menu_toggle.toggled div:nth-of-type(3) {
  top: 29px;
  transform: translateY(-11px) rotate(-45deg);
  width: 100%;
}
.header--mainbar .container .resp_menu_toggle div:nth-of-type(1),
.header--mainbar .container .resp_menu_toggle div:nth-of-type(3) {
  transition-delay: 0s;
}
.header--mainbar .container .resp_menu_toggle div:nth-of-type(2) {
  transition-delay: 0.15s; 
}



.resp_menu_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  left: 10px;
  top: 71px;
  right: 10px;
  bottom: 0;
  transform: rotateY(-90deg);
  font-family: "FiraGO";
  font-style: normal;
  font-feature-settings: "case" on;
  z-index: 2147483646;
  background-color: transparent;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.resp_menu_wrap::-webkit-scrollbar {
  display: none;
}
.resp_menu_wrap.movin {
  transition: all 0.4s ease;
}
.resp_menu_wrap.toggled {
  transform: rotateY(0);
}


.resp_menu_wrap .resp_menu_top {
  width: calc(100vw - 20px);
  flex: none;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background-color: #000;
   padding: 0
}

.resp_menu_wrap .resp_search {
  position: relative;
  display: block;
  padding: 0 0 10px 0;
  background-color: var(--bg-color);
  flex: none;
  box-sizing: border-box;
}

.resp_menu_wrap .resp_search input {
  width: 100%;
  height: 40px;
  box-sizing: border-box;

  padding: 10px 65px 10px 12px;

  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;

  font-size: 18px;
  font-feature-settings: "case" off;
  display: block;
}
.resp_menu_wrap .resp_search input:focus,
.resp_menu_wrap .resp_search input:focus-visible {
  border-color: rgba(0, 0, 0, 0.40);
  outline: none;
}

.resp_menu_wrap .resp_search input::placeholder {
  font-size: 18px;
  font-feature-settings: "case" off;
}

.resp_menu_wrap .resp_search button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 40px;
  top: 0;
  right: 0;
  padding: 0 20px;
  background-color: #000;
  border: none;
  border-radius: 0;
}

.resp_menu_wrap .resp_search button img {
  width: 18px;
  height: 18px;
}

.resp_menu_wrap .resp_menu_container {
  background-color: #00e6cf;
  display: grid;
  grid-template-columns: 1fr 58px;
  grid-template-rows: 1fr;
  flex: 1;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}


.resp_menu_wrap .resp_menu_container .resp_menu_cats {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  flex: none;
}

@media (max-width: 420px) {
  .resp_menu_wrap .resp_menu_container {
    background-color: #00e6cf;
    display: grid;
    /* grid-template-columns: 6fr 2fr; */
  }
}

.resp_menu_wrap .resp_menu_container .category_list {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-self: stretch;
}

.resp_menu_wrap .resp_menu_container .category_list::-webkit-scrollbar {
  display: none;
}

.resp_menu_wrap .resp_menu_container div.resp_menu_cats {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  background-color: #000000;
  align-self: stretch;
}

.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li {
  padding: 0;
  width: 100%;
}

@media (max-width: 420px) {
  .resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li a img {
    height: 20px;
  }
}


.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}

.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li a,
.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li #theme-toggle-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
}

.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li a::after,
.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li #theme-toggle-mobile::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 1px;
  background-color: var(--menu-line);
  left: 50%;
  transform: translateX(-50%);
}


.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li a * {
  pointer-events: none;
}

/* მთვარე (Theme Toggle) */
.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li:nth-child(1) button svg {
  width: 24px;
  height: 22px;
}

/* იუზერი */
.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li:nth-child(2) a img {
  height: 25px;
}

/* მეილი */
.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li:nth-child(3) a img {
  height: 20px;
}

/* ფეისბუქი */
.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li:nth-child(4) a img {
  height: 32px;
}

/* PWA აპლიკაცია */
.resp_menu_wrap .resp_menu_container div.resp_menu_cats ul li:nth-child(5) a img {
  height: 30px;
}

@media (display-mode: standalone) {
    #pwa-install-btn {
        display: none !important;
    }
}

/* კატეგორიების სათაური (h3) */
.resp_menu_wrap .resp_menu_container h3.resp_menu_caption {
  display: flex;
  position: relative;
  margin: 0 10px;
  width: fit-content;
}


.resp_menu_wrap .resp_menu_container h3.resp_menu_caption:before,
.resp_menu_wrap .resp_menu_container h3.resp_menu_caption:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  bottom: 9px;
  background-color: #000000;
  z-index: 1;
}

.resp_menu_wrap .resp_menu_container h3.resp_menu_caption:before {
  left: 15px;
}

.resp_menu_wrap .resp_menu_container h3.resp_menu_caption:after {
  right: -34px;
}

.resp_menu_wrap .resp_menu_container h3.resp_menu_caption {
  padding-left: 50px;
  padding-top: 40px;
  color: #000;
  font-size: 16px;
  background-color: #00e6cf;
  z-index: 2;
  display: flex;
  position: relative;
  width: fit-content;
}

.resp_menu_wrap .resp_menu_container .resp_menu_ul {
  padding: 20px;
}

.resp_menu_wrap .resp_menu_container .resp_menu_ul > ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resp_menu_wrap .resp_menu_container .resp_menu_ul > ul > li {
  position: relative;
}

.resp_menu_wrap .resp_menu_container .resp_menu_ul > ul > li a {
  padding: 10px 0;
  color: #000000;
  display: block;
}


.resp_menu_wrap .resp_menu_container .resp_menu_ul > ul > li:last-child {
  border-bottom: none;
}


.resp_menu_wrap .resp_menu_container .resp_menu_ul > ul > li > a {
  display: block;
  position: relative;
  padding: 10px 0 6px;
  z-index: 2;
}

.resp_menu_wrap .resp_menu_container .resp_menu_ul > ul > li ul {
  display: none;
  padding: 5px 0;
  background-color: #ffffff;
  list-style: none;
  z-index: 3;
  margin: 0 -20px;
}


.resp_menu_wrap .resp_menu_container .resp_menu_ul > ul > li ul li a {
  display: block;
  padding: 6px 20px;
  font-size: 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.2);
  transition: none;
}


.resp_menu_wrap .resp_menu_container .resp_menu_ul > ul > li ul li:last-child a {
  border-bottom: none;
}

.resp_menu_wrap .resp_menu_container .resp_menu_ul > ul > li > em.fa {
  position: absolute;
  top: 8px;
  right: 0;
  color: #000000;
  font-size: 20px;
  transition: all 0.4s ease;
  z-index: 1;
}

/* მენიუს ქვედა ზოლი (Footer of Menu) */
.resp_menu_wrap .resp_menu_bot {
  width: 100%; /* calc-ის ნაცვლად 100% უფრო სტაბილურია */
  background-color: #00e6cf;
  border-top: 1px solid #000;
  flex: none; /* რომ არ აიბზიკოს */
}

.resp_menu_wrap .resp_menu_bot ul {
  display: grid;
  grid-template-columns: 3fr 2fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resp_menu_wrap .resp_menu_bot ul li {
  display: flex;
  align-items: center;
  padding: 10px 5px;
  color: var(--text-color);
}

.resp_menu_wrap .resp_menu_bot ul li:first-child {
  border-right: 1px solid var(--text-color);
  justify-content: flex-end;
  padding-right: 20px;
}

.resp_menu_wrap .resp_menu_bot ul li:last-child {
  padding-left: 20px;
}

.resp_menu_wrap .resp_menu_bot ul li a {
  display: flex;
  align-items: center;
}

.resp_menu_wrap .resp_menu_bot ul li a img {
  height: 25px;
  margin-right: 10px;
}

.resp_menu_wrap .resp_menu_bot ul li a span {
  margin-top: 2px;
  white-space: nowrap;
}

.resp_menu_wrap .resp_menu_bot ul li:last-child a img {
  height: 22px;
}

.sticky-wrapper {
  position: relative;
}
.sticky-wrapper.is-sticky nav .container {
  display: flex;
  align-items: center;
}
.logo_sticky {
  display: none;
}
.sticky-wrapper.is-sticky nav .container:before,
.sticky-wrapper.is-sticky nav .container:after {
  display: none;
}

.sticky-wrapper.is-sticky nav .container .logo_sticky {
  transform: translateY(1px);
  display: block;
  width: 100px;
}

.sticky-wrapper.is-sticky nav .container a#logo_areal {
  display: none;
}
.post_title {
  margin-bottom: 10px;
}


.post_tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 25px;
  padding-top: 25px;
}

.post_tools * {
  position: relative;
}

.post_tools .post_tools_left {
  display: flex;
  align-items: center;
}

.post_tools .post_tools_left .viewed {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.post_tools .post_tools_left .viewed em {
  margin-right: 5px;
}

.post_tools .post_tools_left .shares_wrap {
  display: flex;
  align-items: center;
}

.post_tools .post_tools_left .shares_wrap .share_icon img {
  width: 20px;
  height: 20px;
}

.post_tools .post_tools_left .shares_wrap ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.post_tools .post_tools_left .shares_wrap ul li {
  margin-right: 12px;
}

.post_tools .post_tools_left .shares_wrap ul li a {
  display: block;
}

.post_tools .post_tools_left .shares_wrap ul li a em {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #9d9d9d;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.post_tools .post_tools_left .shares_wrap ul li a em.social-icon svg {
  transition: all 0.4s ease;
  z-index: 2;
}

.post_tools .post_tools_left .shares_wrap ul li a em.social-icon svg * {
  fill: none;
  stroke: #9d9d9d;
  transition: all 0.4s ease;
}

.post_tools .post_tools_left .shares_wrap ul li a em::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(0);
  transform-origin: top;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.post_tools .post_tools_left .shares_wrap ul li a:hover em {
  border-color: transparent;
}

.post_tools .post_tools_left .shares_wrap ul li a:hover em svg * {
  fill: none;
  stroke: #ffffff;
}

.post_tools .post_tools_left .shares_wrap ul li a:hover em.icon-share::after {
  background-color: #00e6cf;
  transform: scale(1);
}

.post_tools .post_tools_left .shares_wrap ul li a em.icon-facebook::after {
  background-color: #1877f2;
}

.post_tools .post_tools_left .shares_wrap ul li a em.icon-copy::before {
  display: none;
}

.post_tools .post_tools_left .shares_wrap ul li a em.icon-copy::after {
  background-color: #9d9d9d;
}

.post_tools .post_tools_left .shares_wrap ul li a em.icon-mail::after {
  background-color: #c71610;
}

.post_tools .post_tools_left .shares_wrap ul li a:hover em::before {
  color: #fff;
}

.post_tools .post_tools_left .shares_wrap ul li a:hover em::after {
  transform: scale(1);
}

.post_tools .post_tools_right ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.post_tools .post_tools_right ul li {
  padding: 0 10px;
  position: relative;
}

.post_tools .post_tools_right ul li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background-color: #9d9d9d;
}

.post_tools .post_tools_right ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #9d9d9d;
}

.post_tools .post_tools_right ul li a .social-icon svg {
  stroke: #9d9d9d;
  fill: none;
  transition: all 0.4s ease;
  display: block;
  position: relative;
  z-index: 2;
}

.post_tools .post_tools_right ul li a .social-icon svg * {
  fill: none;
  stroke: #9d9d9d;
}

.post_tools .post_tools_right ul li a em.icon-print {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.post_tools .post_tools_right ul li a em.icon-print::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #9d9d9d;
  transform: scale(0);
  transform-origin: top;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 1;
}

.post_tools .post_tools_right ul li a,
.post_tools .post_tools_right ul li a:hover {
  border-color: #9d9d9d;
}

.post_tools .post_tools_right ul li a:hover em.icon-print::after {
  transform: scale(1);
}

.post_tools .post_tools_right ul li a:hover em.icon-print svg * {
  stroke: #ffffff;
}

.post_tools .post_tools_right ul li a.zoomin img,
.post_tools .post_tools_right ul li a.zoomout img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.post_tools .post_tools_right ul li a.zoomin:hover img,
.post_tools .post_tools_right ul li a.zoomout:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(130deg) brightness(95%) contrast(90%);
}

@media (max-width: 768px) {
    .post_tools {
        padding-top: 15px;
        margin-bottom: 25px;
        display: inline-flex;
        align-items: center;
        background: #f1f3f5;
        padding: 6px;
        border-radius: 50px;
        border: 1px solid #e9ecef;
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
        width: 100%;
        justify-content: center;
    }
    .post_tools .post_tools_left,
    .post_tools .post_tools_right {
        display: contents;
    }
    .post_tools .post_tools_left .shares_wrap,
    .post_tools .post_tools_left .shares_wrap ul,
    .post_tools .post_tools_right ul {
        display: contents;
    }
    .post_tools .post_tools_left .shares_wrap ul li,
    .post_tools .post_tools_right ul li {
        margin: 0 4px;
        padding: 0;
    }
    .post_tools .post_tools_right ul li + li::before {
        display: none;
    }
    .post_tools .post_tools_left .shares_wrap ul li a em {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: #fefefe;
        border: 1px solid #dcdcdc;
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    .post_tools .post_tools_right ul li a {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: #fefefe;
        border: 1px solid #dcdcdc;
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    .post_tools .post_tools_left .shares_wrap ul li a em.social-icon svg * {
        stroke: #666;
        fill: none;
    }
    .post_tools .post_tools_right ul li a .social-icon svg * {
        stroke: #666;
        fill: none;
    }
    .post_tools .post_tools_right ul li a.zoomin img,
    .post_tools .post_tools_right ul li a.zoomout img {
        filter: brightness(0) saturate(100%) invert(40%);
    }
    .post_tools .post_tools_left .shares_wrap ul li a em::after,
    .post_tools .post_tools_right ul li a em.icon-print::after {
        display: none;
    }
    .post_tools .post_tools_right ul li a:hover {
        border-color: #dcdcdc;
    }
    .post_tools .post_tools_right ul li a:hover em.icon-print::after {
        transform: scale(0);
    }

   .post_tools .post_tools_right ul li a:hover em.icon-print svg * {
    stroke: #666;
        }
.post_tools .post_tools_right ul li a.is-active em.icon-print svg * {
    stroke: #fff;
        }

    /* touch active */
    .post_tools .post_tools_left .shares_wrap ul li a.is-active em,
    .post_tools .post_tools_right ul li a.is-active em.icon-print {
        border-color: transparent;
    }
    .post_tools .post_tools_left .shares_wrap ul li a.is-active em.icon-share {
        background: #00a8a8;
        border-color: #00a8a8;
    }
    .post_tools .post_tools_left .shares_wrap ul li a.is-active em.icon-facebook {
        background: #1877F2;
        border-color: #1877F2;
    }
    .post_tools .post_tools_left .shares_wrap ul li a.is-active em.icon-mail {
        background: #c71610;
        border-color: #c71610;
    }
    .post_tools .post_tools_left .shares_wrap ul li a.is-active em.icon-copy {
        background: #555;
        border-color: #555;
    }
    .post_tools .post_tools_right ul li a.is-active em.icon-print {
        background: #222;
        border-color: #222;
    }
    .post_tools .post_tools_left .shares_wrap ul li a.is-active em.social-icon svg * {
        stroke: #fff;
    }
    .post_tools .post_tools_right ul li a.is-active .social-icon svg * {
        stroke: #fff;
    }
    .post_tools .post_tools_right ul li a.is-active img {
        filter: brightness(0) invert(1);
    }
    .post_tools:not(.post_tools_bottom) .post_tools_left .shares_wrap ul li:has(em.icon-mail) {
        display: none;
    }
    .post_tools .post_tools_right ul li a.zoomin img,
    .post_tools .post_tools_right ul li a.zoomout img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
    .post_tools .post_tools_right ul li a em.icon-print svg {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
    }
    .post_tools a {
        -webkit-tap-highlight-color: transparent;
    }

    .post_tools.ptop--30 {
        padding-top: 6px;
    }

.post_tools .post_tools_right ul li a em.icon-print,
.post_tools .post_tools_right ul li a:hover em.icon-print,
.post_tools .post_tools_right ul li a:active em.icon-print,
.post_tools .post_tools_right ul li a.is-active em.icon-print {
    color: #9d9d9d !important;
}

.post_tools .post_tools_right ul li a em.icon-print svg,
.post_tools .post_tools_right ul li a em.icon-print svg * {
    fill: none !important;
    stroke: currentColor !important;
}

  }

.table_wrap {
  overflow-x: auto;
}
div.hero_grid {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  margin-top: 25px;
}
div.hero_grid * {
  position: relative;
}
div.hero_grid:before,
div.hero_grid:after {
  display: none;
}
div.hero_grid article a.cat {
  display: flex;
  align-items: center;
  position: absolute;
  height: 22px;
  left: 15px;
  top: 15px;
  padding: 2px 10px 0;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}
div.hero_grid article a.cat:hover {
  background-color: rgba(0, 230, 207, 0.8);
}
div.hero_grid article a.main_link {
  display: block;
  height: 445px;
  z-index: 1;
}

div.hero_grid article a.news_title {
    font-family: "FiraGO";
    font-feature-settings: "case" on;
    font-size: 15px;
    line-height: 1.3;
    margin-top: 10px;
    display: block;
    color: var(--title-color);
    transition: color 0.2s ease;
}

div.hero_grid article a.main_link img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
}


div.hero_grid article a.main_link:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: black; */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 80%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 0;
  z-index: 2;
  transition: 0.3s;
}

div.hero_grid article a.main_link:hover::before {
  opacity: 0.6;
}
@media (max-width: 576px) {
  div.hero_grid article a.main_link:before {
    display: none;
  }
}
div.hero_grid div.other_articles {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  div.hero_grid {
    gap: 20px;
  }
}
div.hero_grid div.other_articles article a.main_link {
  height: 215px;
}
div.hero_grid article a.main_link:hover span.news_title {
  opacity: 1;
}
div.category_grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  margin-top: 10px;
}
div.category_grid * {
  position: relative;
}
div.category_grid:before,
div.category_grid:after {
  display: none;
}
div.category_grid article a.cat {
  display: flex;
  align-items: center;
  position: absolute;
  height: 22px;
  left: 15px;
  top: 15px;
  padding: 2px 10px 0;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}
div.category_grid article a.cat:hover {
  background-color: rgba(0, 230, 207, 0.8);
}
div.category_grid article a.main_link {
  display: block;
  height: 285px;
  margin-bottom: 10px;
  z-index: 1;
}
div.category_grid article a.main_link img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
}
div.category_grid article h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
div.category_grid article h3 a {
  display: block;
  font-weight: 400;
  line-height: 1.3;
  font-feature-settings: "case" on;
}

div.category_grid div.other_articles {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
div.category_grid div.other_articles article a.main_link {
  height: 125px;
}

div.category_grid article a.main_link:hover span.news_title {
  opacity: 0.7;
}
div.bottom_blocks {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  font-family: "FiraGO";
  font-style: normal;
}
div.bottom_blocks * {
  position: relative;
}
div.bottom_blocks article a.main_link {
  display: block;
  padding-top: 78.6%;
  margin-bottom: 10px;
  z-index: 1;
}

div.bottom_blocks article a.main_link.no_image {
  border: 1px solid var(--border-color);
}

div.bottom_blocks article a.main_link img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
}
div.bottom_blocks article h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
div.bottom_blocks article h3 a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  font-feature-settings: "case" on;
}

div.post--img a.thumb {
  display: block;
  position: relative;
  padding-top: 70%;
}
div.post--img a.thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
div.side_image {
  margin-bottom: 30px;
}
div.side_image figure {
  margin-bottom: 15px;
}
div.side_image figure a {
  display: block;
}
div.side_image figure a img {
  width: 100%;
}
li.columnebi:nth-child(odd) div.post--item div.post--img div.side_image {
  margin-right: 10px;
}
li.columnebi:nth-child(even) div.post--item div.post--img div.side_image {
  margin-left: 10px;
}
div.pd--30-0.less_padding {
  padding-bottom: 0;
}
div.side_image div.side_image_texts h3.side_image_title {
  font-weight: 400;
  margin: 0 0 5px;
}
div.side_image div.side_image_texts h3.side_image_title a {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
div.side_image div.side_image_texts div.post--action {
  margin: 0;
}
div.side_image div.side_image_texts div.post--action a {
  margin: 0;
  padding: 0;
}
.post_tools .post_tools_right {
  display: flex;
  align-items: center;
}
.post_tools .post_tools_right div.viewed {
  margin-right: 10px;
}
ul.pagination.float--right {
  display: flex;
  justify-content: center;
  float: none;
}



div.article_inside p a {
  display: inline-block;
  position: relative;
  transition: all 0.4s ease;
  z-index: 2;
}

div.article_inside p a {
  all: unset;
}

div.article_inside p a,
div.article_inside p a:visited {
    color: #00B3A1;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    font-weight: 500;
    font-size: 1.1rem;
    transition: border-bottom-color 0.12s linear;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    outline: none;
    background: transparent;
    box-shadow: none;
    touch-action: manipulation;
}

@media (hover: hover) and (pointer: fine) {
    div.article_inside p a:hover {
        border-bottom: 1.5px solid var(--text-color);
        transition: border-bottom 0.2s ease;
    }
}

div.article_inside p a:focus-visible {
    border-bottom: 1.5px solid var(--text-color);
    outline: none;
}

@media (hover: none), (max-width: 768px) {
    div.article_inside p a {
        border-bottom: 1.5px solid rgba(26, 167, 163, 0.7);
        transition: border-bottom-color 0.12s linear;
    }

    div.article_inside p a:active {
        border-bottom: 1px solid var(--text-color) !important;
        transition: none !important;
    }
}



div.article_inside p a {
  position: relative;
}

div.article_inside p a::before {
  z-index: 0;
}
div.article_inside p a:hover {
  
}

div.article_inside blockquote {
  position: relative;
  margin-top: 54px;
  margin-bottom: 34px;
  margin-right: 0;
  margin-left: 14px;
  padding-left: 40px;
  padding-right: 30px;
  color: #777;
  font-style: normal;
  background-color: #f8f8f8;
  border-left: 6px solid #444;
  border-radius: 10px 0 0 10px;
}
div.article_inside blockquote::before {
  display: none;
}
div.article_inside blockquote::after {
  display: block;
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: 22px;
  top: 0;
  transform: translateY(-100%);
  background: url("../assets/icon/quote.svg") left top no-repeat;
}
.arrows_next_prev {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.arrows_next_prev * {
  transition: all 0.4s ease;
}
.arrows_next_prev span.divider {
  margin-left: 2px;
  margin-right: 2px;
  transform: translateY(1px);
  color: #9d9d9d;
}
.arrows_next_prev a svg {
  width: 18px;
  height: 10px;
}
.arrows_next_prev a svg path {
  fill: #9d9d9d;
}

div.post--items ul.nav {
  margin-bottom: 20px;
}

div.post--items ul.nav.authors {
  margin-left: -8px;
  margin-right: -8px;
}
div.widget_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border-color);
}
div.widget_title h2 {
  color: var(--text-color) !important;
  flex: 1;
  font-size: 20px;
  font-family: "FiraGO";
  font-style: normal;
  font-feature-settings: "case" on;
}
#backToTop {
  right: 20px;
  bottom: 10px;
}
.bump svg {
  animation: bump 0.2s ease;
}
@keyframes bump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1200px) {
  .header--mainbar .container .logo {
    width: 170px;
  }
  .header--mainbar .container .header_right .weather_date {
    width: 270px;
    font-size: 10px;
  }
  .header--mainbar .container .header_right .weather_date::after {
    width: 93px;
  }
  .header--mainbar .container .search_modal {
    right: 50px;
    bottom: -10px;
  }
  .header--mainbar .container .search_modal.toggled {
    width: calc(100% - 231px);
  }
  .header--mainbar .container .search_modal input {
    height: 35px;
  }
  .header--mainbar .container .search_modal button {
    top: 5px;
    font-size: 12px;
  }
  .header--mainbar .container .header_right .header_icons ul li {
    padding: 0 15px;
  }
  .header--mainbar .container .header_right .header_icons ul li::after {
    height: 25px;
  }
  .header--mainbar .container .header_right .header_icons ul li a img {
    height: 20px;
  }
  div.hero_grid article a.main_link {
    height: 405px;
  }
  div.hero_grid div.other_articles article a.main_link {
    height: 195px;
  }
  div.bottom_blocks {
    grid-gap: 25px;
  }
  li.columnebi:nth-child(odd) div.post--item div.post--img div.side_image {
    margin-right: 0;
  }
  li.columnebi:nth-child(even) div.post--item div.post--img div.side_image {
    margin-left: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .post--item:hover .no-photo-placeholder,
  a.main_link:hover .no-photo-placeholder {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }

  .post--item:hover .pen-svg,
  a.main_link:hover .pen-svg {
    opacity: 1;
    transform: scale(1.1);
  }
}


@media (max-width: 990px) {

  .for_head {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-color);
  }

  .header--mainbar {
    padding: 0;
    margin: 0;
  }

  .header--mainbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .header--mainbar .container .logo {
    transform: none;
  }

  .header--mainbar .container .resp_menu_toggle {
    display: block;
  }

  .header--mainbar .container .header_banner,
  .header--mainbar .container .header_right,
  .navi {
    display: none;
  }

  hr.hr_line_up,
  hr.hr_line_down {
    display: none;
  }

  .post--info .meta > li {
    display: block;
    float: none;
    width: auto;
  }

  div.hero_grid {
    grid-template-columns: 1fr;
  }

  div.hero_grid article a.main_link,
  div.hero_grid div.other_articles article a.main_link,
  div.category_grid article a.main_link,
  div.category_grid div.other_articles article a.main_link {
    position: relative;
    display: block;
    height: auto;
    padding-top: 0;
    aspect-ratio: 16 / 11;
    overflow: hidden;
  }

  div.category_grid {
    grid-gap: 20px;
    grid-template-columns: 1fr;
  }

  div.category_grid div.other_articles article:nth-of-type(1):after,
  div.category_grid div.other_articles article:nth-of-type(2):after {
    display: none;
  }

  div.bottom_blocks {
    grid-gap: 20px;
  }

  div.article_inside p a::before {
    width: calc(100% + 20px);
    opacity: 0;
  }


  #backToTop {
    display: none;
  }
}

@media (max-width: 576px) {
  .main--sidebar .widget + .widget{
    margin-top: 40px;
  }

.main-page-sidebar .ad-sidebar-wrapper {
        display: none !important;
    }

    .main--sidebar .ad-sidebar-wrapper {
        display: block;
    }

  .main--sidebar .widget .ad--widget{
    margin-bottom: 0;
  }
  .main--sidebar.pbottom--30{
       padding-bottom: 10px;
    
  }
  div.side_modal.toggled {
    width: 100vw;
    min-height: 700px;
  }
  div.side_modal.toggled div.side_modal_body {
    width: 100vw;
  }
  div.form_item.shorter {
    margin-right: 0;
  }
  .resp_menu_wrap .resp_menu_bot ul li a {
    font-size: 14px;
  }
  .resp_menu_wrap .resp_menu_bot ul li a img {
    height: 20px;
  }
  .resp_menu_wrap .resp_menu_bot ul li:last-child a img {
    height: 17px;
  }
  .post_tools .post_tools_left .viewed {
    margin-right: 5px;
    font-size: 12px;
  }
  .post_tools .post_tools_left .shares_wrap ul li:nth-of-type(2) {
    display: block;
  }
  .post_tools .post_tools_left .shares_wrap.bottom ul li:nth-of-type(2) {
    display: block;
  }
  .post_tools .post_tools_right ul li a img {
    height: 15px;
  }
  .post_tools .post_tools_right ul li a img.print {
    height: 20px;
  }
  div.hero_grid div.other_articles {
    display: block;
  }
  /* div.hero_grid article a.main_link,
  div.hero_grid div.other_articles article a.main_link {
    padding-top: 0;
  } */
  /* div.hero_grid article a.main_link img {
    position: relative;
    height: auto;
    left: auto;
    top: auto;
    object-fit: contain;
  } */
  div.hero_grid article a.main_link span.news_title {
    display: none;
    position: relative;
    left: 10px;
    right: auto;
    bottom: 5px;
    margin-top: 10px;
    color: #fff;
    line-height: 1.3;
  }
  div.hero_grid article span.news_title.mobile {
    display: block;
  }
  div.hero_grid div.other_articles article {
    /* display: none; */
    margin-bottom: 20px;
  }

  div.hero_grid div.other_articles article a img {
    /* height: 90%; */
    object-fit: cover;
  }

  div.hero_grid div.other_articles article:first-child {
    display: block;
  }
  div.article_inside blockquote {
    margin-left: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 420px) {
  .resp_menu_wrap .resp_menu_bot ul li a {
    font-size: 12px;
  }
  .resp_menu_wrap .resp_menu_bot ul li a img {
    height: 17px;
  }
  .resp_menu_wrap .resp_menu_bot ul li:last-child a img {
    height: 14px;
  }
}
@media (max-width: 360px) {
  div.side_modal.toggled {
    width: 100vw;
  }
  div.side_modal.toggled div.side_modal_body {
    width: 100vw;
  }
}

.footer_inside {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 15px;
}

.footer_inside > ul.nav {
  display: flex;
  align-items: center;
  padding: 28px 0;
  margin-right: -24%;
  margin-bottom: 0 !important;
}

.footer_inside > ul.nav > li a {
  font-size: 14px;
}

.footer_inside .text span {
  font-size: 13px;
  margin-left: 2px;
}

.footer_inside .text a {
  position: relative;
  margin-right: 16px;
  font-size: 13px;
}

.footer_inside .text a:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background-color: #fff;
  opacity: 0.5;
  top: 2px;
  right: -10px;
}

@media (max-width: 1568px) {
  .footer_inside > ul.nav {
    margin-right: -8%;
  }
}

@media (max-width: 1280px) {
  .footer_inside > ul.nav {
    padding: 22px 0 10px 0;
  }
}

/* .footer_inside > ul.nav li:last-child {
  border-left: 1px transparent;
  margin-left: 22px;
} */

.footer_inside > a.top_ge {
  position: relative;
  margin-right: -24%;
  padding-bottom: 20px;
  right: 13.9%;
}

@media (max-width: 1568px) {
  .footer_inside > a.top_ge {
    margin-right: -7%;
  }
}

.footer--copyright::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 25.5vw;
  background-color: #00e6cf;
  z-index: 0;
  pointer-events: none;
}

.footer--copyright > .container {
  position: relative;
  z-index: 1;
}

.footer_inside > a.top_ge::before {
  content: none;
}
.double-list div.post--img a.thumb{
  padding-top: 56.25%;
}
.ad--widget img{
  width: 100%;
  margin-top: 0;
}
/* @media (max-width: 1366px) {
  .footer_inside > ul.nav {
    margin-right: 114px;
  }
} */

@media (max-width: 1280px) {
  .main_header_menu{
    font-size: 13px;
  }
  .footer_inside {
    padding-top: 22px;
  }
  .footer_inside > ul.nav {
    margin-right: 0;
  }
  .footer_inside > a.top_ge {
    padding-bottom: 14px;
  }
  .footer--copyright::after {
    top: auto;
    width: 100%;
    height: 80px;
  }
  /* .footer_inside > ul.nav li a.top_ge::before {
    display: none;
  } */
}
@media (max-width: 992px) {
  .main_header_menu{
    font-size: 16px;
  }
  .pd--20-0-40{
    padding: 0 0 20px;
  }
  .ptop--30{
    padding-top: 10px;
  }
}

/* .footer_inside a {
  padding: 20px 0;
}

@media (max-width: 568px) {
  .footer_inside a {
    padding: 10px 0 20px 0;
  }
} */

.btn-primary {
  background-color: black;
  border-color: black;
}

.btn-primary:hover {
  /* color: #000; */
  background-color: #00e6cf;
  border-color: #00e6cf;
}

#backToTop {
    position: fixed;
    z-index: 200005;
}

#backToTop a {
    display: block;
    position: relative;
    z-index: 200006;
}

#backToTop a:hover {
    background-color: transparent;
}


@media (max-width: 1280px) {
  .footer_inside {
    flex-direction: column;
    align-items: center;
  }

  .footer_inside .text {
    order: 2;
  }

  .footer_inside ul.nav {
    order: 1;
  }

  .footer_inside a.top_ge {
    order: 3;
    right: 0;
    outline: 1px solid #00e6cf;
    outline-offset: -1px;
    margin-top: 20px;
    margin-right: 0;
  }
}

@media (max-width: 568px) {
  .footer--copyright .container {
    padding-left: 0;
    padding-right: 0;
  }
  .footer_inside {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0;
    background-color: #00e6cf;
  }
  .footer_inside ul.nav {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 25px 15px;
    background-color: #000000;
    order: 1;
  }
  .footer_inside .text {
    background: transparent;
    flex: 1;
    margin: 0;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    order: 2;
    color: #000;
  }
  .footer_inside a.top_ge {
    background: transparent;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin: 0;
    order: 3;
    right: 0;
  }
  .footer_inside a.top_ge::before {
    display: none;
  }
  .footer--copyright::after {
    display: none;
  }
}

@media (max-width: 568px) {
  .authors {
    margin-top: -10px;
  }
}

@media (max-width: 420px) {
  .authors {
    margin-top: -15px;
  }
}

.authors > li {
  padding: 0 8px;
}
.authors .post--content{
  margin-left: 2px;
}
.author_inside li {
  margin-top: 0;
}

.main_article article {
  font-feature-settings: "case" on;
}

.modal-content {
  font-feature-settings: "case" on;
}

.modal-content .modal-header {
  border-bottom: none !important;
}

.modal-content .modal-header .close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 32px;
  height: 32px;
  color: transparent;
  opacity: 1;
}
@media (max-width: 420px) {
  .modal-content .modal-header .close {
    top: 10px;
  }
}
.modal-content .modal-header .close:hover {
  opacity: 0.7;
}
.modal-content .modal-header .close:before,
.modal-content .modal-header .close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 26px;
  width: 1px;
  background-color: var(--text-color);
}
@media (max-width: 420px) {
  .modal-content .modal-header .close:before,
  .modal-content .modal-header .close:after {
    height: 20px;
  }
}
.modal-content .modal-header .close:before {
  transform: rotate(45deg);
}
.modal-content .modal-header .close:after {
  transform: rotate(-45deg);
}

.modal-content .modal-header .modal-title {
  position: relative;
  width: fit-content;
  margin: 50px auto 0 auto;
  font-size: 20px;
  font-feature-settings: "case" on;
}
@media (max-width: 568px) {
  .modal-content .modal-header .modal-title {
    font-size: 18px;
  }
}

.modal-content .modal-header .modal-title::before,
.modal-content .modal-header .modal-title::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 1px;
  background-color: var(--border-color);
}

@media (max-width: 568px) {
  .modal-content .modal-header .modal-title::before,
  .modal-content .modal-header .modal-title::after {
    width: 20%;
  }
}
@media (max-width: 360px) {
  .modal-content .modal-header .modal-title::before,
  .modal-content .modal-header .modal-title::after {
    width: 10%;
  }
}

.modal-content .modal-header .modal-title::before {
  left: -50%;
}
.modal-content .modal-header .modal-title::after {
  right: -50%;
}

@media (max-width: 568px) {
  .modal-content .modal-header .modal-title::before {
    left: -25%;
  }
}
@media (max-width: 360px) {
  .modal-content .modal-header .modal-title::before {
    left: -15%;
  }
}

@media (max-width: 568px) {
  .modal-content .modal-header .modal-title::after {
    right: -25%;
  }
}
@media (max-width: 360px) {
  .modal-content .modal-header .modal-title::after {
    right: -15%;
  }
}

.modal-content .modal-body p {
  margin: 30px 5px 60px;
    text-align: left;
  font-size: 16px;
     
}
@media (max-width: 568px) {
  .modal-content .modal-body p {
     margin: 20px 5px 60px;
   text-align: left;
     font-size: 14px;

  }
}

.modal-content .modal-body a .btn.btn-danger {
  margin: 0 7%;
}
@media (max-width: 568px) {
  .modal-content .modal-body a .btn.btn-danger {
    margin: 0;
  }
}
.modal-content .modal-body a .btn.btn-danger,
.modal-content .modal-body .btn.btn-success {
  width: 40%;
  padding: 5px 0;
  border-radius: 5px;
  margin-bottom: 50px;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}
.modal-content .modal-body .btn.btn-success {
  background-color: #00e6cf;
  border-color: #00e6cf;
  color: black;
}

@media (max-width: 568px) {
  .modal-content .modal-body a .btn.btn-danger {
    margin-bottom: 20px;
  }
}
@media (max-width: 568px) {
  .modal-content .modal-body .btn.btn-success {
    margin-bottom: 30px;
  }
}
.modal-content .modal-body a .btn.btn-danger {
  background-color: black;
  border-color: black;
}
.modal-content .modal-footer {
  border-top: none;
  font-size: 15px;
  text-align: center;
}

@media (max-width: 420px) {
  .modal-content .modal-footer {
    font-size: 12px;
  }
}

@media (max-width: 568px) {
  .modal-content .modal-body a .btn.btn-danger,
  .modal-content .modal-body .btn.btn-success {
    width: 100%;
    display: block;
  }
}

.modal-content .modal-body a .btn.btn-danger:hover {
  background-color: rgb(45, 45, 45);
  color: white;
}

.modal-content .modal-body .btn.btn-success:hover {
  color: #000;
  background-color: #6bfff0;
}

/* .custom_b_modal,
.custom_pop_up {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.custom_b_modal.visible,
.custom_pop_up.visible {
  visibility: visible;
  opacity: 1;
} */




body.modal-open {
    overflow: hidden !important;
}

.modal.show {
    display: block !important; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) !important; 
    
    margin: 0;
    width: 95%;
    max-width: 600px;
    z-index: 1060;
}

.modal-content {
    background: #fff;
    border: none;
    max-height: 90vh; 
    overflow-y: auto;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}


.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5 !important;
    z-index: 1040;
    transform: translateZ(0);
}


@media (max-width: 768px) {
    .modal-dialog {
        width: 92%;
        max-width: 400px;
    }
}

.post--item a {
  font-size: 15px;
}

.side_image_desc p a {
  padding-top: 5px;
  /* margin-left: 5px; */
  font-feature-settings: "case" off;
  color: var(--text-color);
  opacity: 0.8;
}

.side_image_desc p a:hover {
  color: var(--text-color) !important;
}

#sign_in_form div.form_transparent_item input {
  text-transform: lowercase;
  font-feature-settings: "case" off;
}

div.sarchevi {
  width: 100%;
  padding: 40px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div.sarchevi .alhpabet_header {
  padding: 8px 50px;
  border-radius: 5px 5px 0 0;
  background-color: #00e6cf;
}

div.sarchevi .alhpabet_header span {
  font-size: 16px;
  color: var(--text-color);
  font-feature-settings: "case" on;
}

div.sarchevi .lang_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  border-top: 1px solid #00e6cf;
  border-left: 1px solid var(--text-color);
  border-right: 1px solid #00e6cf;
  border-bottom: 1px solid var(--text-color);
}

div.sarchevi .lang_container .alphabet_geo,
div.sarchevi .lang_container .alphabet_eng {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

div.sarchevi .lang_container .alphabet_geo a,
div.sarchevi .lang_container .alphabet_eng a {
  font-feature-settings: "case" on;
  transition: 0.2s;
}

div.sarchevi .selected_letter {
  position: relative;
  /* background-image: url(public/assets/img/abc_news_letter.png); */
}

div.sarchevi .selected_letter img {
  width: 100%;
  height: 100%;
}
div.sarchevi .selected_letter span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 20px;
  color: var(--text-color);
}

@media (max-width: 1280px) {
  div.sarchevi .lang_container .alphabet_geo,
  div.sarchevi .lang_container .alphabet_eng {
    gap: 6px;
  }
}

@media (max-width: 1024px) {
  div.sarchevi .lang_container .alphabet_geo,
  div.sarchevi .lang_container .alphabet_eng {
    flex-wrap: wrap;
  }

  div.sarchevi {
    padding: 40px 0 0 0;
  }

  div.sarchevi .alhpabet_header span {
    font-size: 14px;
  }
  div.sarchevi .lang_container {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  div.sarchevi .alhpabet_header {
    text-align: center;
  }
}


/* გადახდის ბანერის კონტეინერი */
.post--single .post--content .subscription-box {
    max-width: 100%;
    margin: 40px auto;
    padding: 40px 20px;
    text-align: center;
    border: 1.5px dashed #00e6cf;
    border-radius: 6px;
    background: #fafafa;
    box-sizing: border-box;
    transition: background 0.4s ease;
}

.post--single .post--content .subscription-box:hover {
    background: #f5f5f5;
}

/* ბოქლომის მართვა */
.subscription-box .lock-icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -15px;
    margin-bottom: 25px;
    width: 80px;
    height: 80px;
    opacity: 0.6;
}

/* სათაური */
.post--single .post--content .subscription-box h4 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* ტექსტი */
.post--single .post--content .subscription-box p {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 35px;
}

/* ღილაკი */
a.custom_btn_new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "FiraGO", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    font-feature-settings: "case" on !important;
    height: 45px;
    min-width: 250px;
    background: linear-gradient(135deg, #00e6cf 0%, #00c4b0 100%);
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    line-height: 1;
    padding: 0 20px !important;
    vertical-align: middle;
}

.custom_btn_new:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


@media (max-width: 767px) {

.post--single .post--content .subscription-box {
        border-radius: 6px;
    }
    .post--single .post--content .subscription-box h4 {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    .post--single .post--content .subscription-box p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    a.custom_btn_new {
        font-size: 15px !important;
        min-width: 200px;
        width: auto;
        height: 40px;
    }
    .subscription-box .lock-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {

    .post--single .post--content .subscription-box {
        border-width: 1px;
        margin: 20px 0;
        padding: 25px 15px;
        border-radius: 6px;
    }
    .subscription-box .lock-icon {
        margin-top: 0;
    }
    div.category_grid { grid-gap: 0; }
    .nav li a { padding-bottom: 0; }
    .main-content--section.pbottom--30 { padding-bottom: 0; }
    .ad--widget, .main_article article { margin-bottom: 20px; }
    .main_article .ad--widget { margin-bottom: 20px; }
    .ad--widget img { margin: 0; }
    div.hero_grid article a.main_link { display: block; height: auto; }
    div.hero_grid article a.main_link img { position: absolute; width: 100%; height: 100%; left: 0; top: 0; object-fit: cover; z-index: 1; }
}



.aura-overlay {
            position: fixed; 
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex; 
            align-items: center; 
            justify-content: center;
            z-index: 200001;
            padding: 10px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .aura-overlay.active { 
            opacity: 1;
            visibility: visible;
        }

        .aura-window {
            background: #fff; width: 100%; max-width: 600px;
            border-radius: 10px; overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .aura-overlay.active .aura-window {
            transform: scale(1);
        }

        .aura-overlay.closing {
            opacity: 0;
        }
        .aura-overlay.closing .aura-window {
            transform: scale(0.9);
        }

        .aura-header {
            background: #00e6cf; 
            color: #fff; 
            padding: 18px 20px;
            display: flex; 
            align-items: center; 
            justify-content: center;
            position: relative;
            font-family: "FiraGO";
            font-style: normal;
            font-feature-settings: "case" on;
        }

        .header-left { 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            font-size: 18px; 
            font-weight: 400; 
        }
        
        .lari-circle { 
            width: 26px; 
            height: 26px; 
            border: 1px solid #fff; 
            border-radius: 50%; 
            display: flex; align-items: center; 
            justify-content: center; 
            font-size: 14px; 
        }
        
        .close-btn {
            background: none; 
            border: none; 
            padding: 0; 
            color: #fff; 
            cursor: pointer;
            position: absolute; 
            right: 5px; 
            top: 5px;
            transform: none;
            width: 40px; 
            height: 40px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            outline: none;
        }

        .close-btn svg {
            width: 35px;
            height: 35px;
        }

        .aura-body { padding: 10px 25px 40px 25px; }

       .info-msg { 
               text-align: center; 
               margin-top: 20px;
               margin-bottom: 30px; 
               font-size: 16px; 
               color: #444; 
              line-height: 1.5; 
               }

        .info-msg b { color: #00e6cf; }

        .p-table { width: 100%; display: flex; flex-direction: column; gap: 20px; }

        .p-row {
            display: grid;
            grid-template-columns: 1fr 1fr 2fr; 
            align-items: center;
            justify-items: center;
            padding: 20px 20px;
            background: #f5f5f5;
            border-radius: 10px; 
            border: 1px solid #eee; 
            transition: 0.2s;
        }
        .p-row:hover { border-color: #e7e7e7; background: #efefef; }


        .price-wrapper {
            display: contents;
        }

        .p-duration, .p-price { font-size: 16px; font-weight: 500; color: #111; }
        .p-price { color: #121212; }

        .p-methods { display: flex; gap: 10px; justify-content: center; }
        
        .p-btn {
            height: 40px; min-width: 115px;
            border: 1px solid #ddd; border-radius: 8px;
            background: #fff; display: flex; align-items: center; 
            justify-content: center; padding: 0 10px;
            text-decoration: none; color: #333; font-size: 12px; font-weight: bold;
        }
        .visa-mc-container { display: flex; align-items: center; gap: 5px; }
        .visa-svg { height: 35px; width: auto; }
        .mastercard-svg { height: 25px; width: auto; }
        .g-gray { color: #5f6368; margin-left: 4px; }

        .p-footer { margin-top: 15px; text-align: center; }

        .auth-btn { 
            background: #00e6cf; border: none; color: #fff; 
            padding: 10px 40px; border-radius: 8px; cursor: pointer; font-weight: 500; margin-top: 20px;
        }



        /* ===== MOBILE ===== */
  
@media (max-width: 600px) {


.p-table {
        gap: 0;
    }

    .aura-body {
        padding-left: 15px;
        padding-right: 15px;
    }

    .p-row {
        display: flex;
        flex-direction: column;
        background: transparent;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        border: 1px solid #eee;
        border-radius: 10px;
        margin-bottom: 15px;
    }

.p-row:hover { 
  border-color: #bbb; 
  background: transparent;
}

    .price-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 10px 16px;
        background: #f5f5f5;
        border-bottom: 1px solid #eee;
        border-radius: 10px 10px 0 0;
        width: 100%;
        box-sizing: border-box;
    }

    .p-duration {
        font-size: 17px;
        font-weight: 500;
        text-align: center;
        background: transparent;
        padding: 0;
    }

    .p-price {
        font-size: 17px;
        font-weight: 500;
        color: #121212;
        text-align: center;
        background: transparent;
        padding: 0;
    }

    .p-methods {
        display: flex;
        gap: 8px;
        padding: 8px 12px;
        background: transparent;
        width: 100%;
        box-sizing: border-box;
    }

    .p-btn {
        flex: 1;
        height: 38px;
        padding: 0 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    .visa-svg {
        height: 32px;
    }

    .mastercard-svg {
        height: 24px;
    }

.aura-body {
        padding-bottom: 20px;
    }

    .p-footer {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .auth-btn {
        margin-top: 0;
        margin-bottom: 0;
    }


    .header-left {
        font-size: 16px;
    }

.aura-overlay {
        padding: 16px;
    }

.aura-window {
        max-height: 90vh;
        overflow-y: auto;

    }

.close-btn {
    width: 34px;
    height: 34px;
}
.close-btn svg {
    width: 32px;
    height: 32px;

    }
}


.paid-toc-block {
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px 0;
    max-width: 100%;
    width: 100%;
    background: #f8f8f8;
}
.paid-toc-header {
    background: #00e6cf;
    color: #fff;
    font-family: "FiraGO", sans-serif !important;
    font-feature-settings: "case" on !important;
    font-size: 17px !important;
    font-weight: 400;
    padding: 14px 20px;
    text-align: center;
}
.paid-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}
.paid-toc-item {
    padding: 10px 20px;
    background: #f8f8f8;
    border-bottom: 1px solid #efefef;
    font-size: 14px;
    color: #333;
}
.paid-toc-item:last-child {
    border-bottom: none;
}

@media (max-width: 767px) {
    .paid-toc-block {
        max-width: 100%;
        margin: 15px 0;
    }
    .paid-toc-header {
        font-size: 15px;
        padding: 12px 15px;
    }
    .paid-toc-item {
        padding: 9px 15px;
        font-size: 13px;
    }
}


.msgavsi_temebi{

  font-family: "FiraGO";
  font-style: normal;
  font-size: 15px !important;
  font-feature-settings: "case" on !important;
}


.post--related .related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "FiraGO", sans-serif;
}

.post--related .related-grid > li {
    min-width: 0;
}

.post--related .related-grid img {
    width: 100%;
    height: auto;
    display: block;
}

.post--related .related-grid::before,
.post--related .related-grid::after {
    display: none;
}
