@charset "UTF-8";
*, *::befoore, *::after {
  box-sizing: inherit;
}

* {
  box-sizing: border-box;
}

/* version 2.1 */
body {
  margin: 0;
  padding: 0;
  font-family: arial, sans-serif;
}

.gbm {
  display: inline-block;
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  margin: 5px;
  cursor: pointer;
  transition: transform 0.2s;
}
.gbm:hover {
  transform: scale(1.05);
}

.pers_info_title {
  width: 98%;
  max-width: 100%;
  padding: 0em;
  margin: 1em 0;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  overflow: hidden;
}
.pers_info_title span {
  background-color: #FFF;
  padding: 0 1em;
  display: inline-block;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.pers_info_title i {
  background-color: #FFF;
  padding: 0 1em;
  cursor: pointer;
}
@media (max-width: 950px) {
  .pers_info_title {
    width: 98%;
    max-width: 98%;
    padding: 0 1%;
    box-sizing: border-box;
    display: block;
  }
  .pers_info_title i {
    display: inline-block;
  }
}

.pers_info_title:before {
  border-top: 4px solid #e7e7e7;
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}

.obj_galerija {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2em 0 0 0;
  padding: 0 1em;
  box-sizing: border-box;
}
.obj_galerija a {
  flex-basis: 150px;
  padding-bottom: 150px;
  margin: 0 0.5em 1em 0.5em;
}

#gal_preview_container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  touch-action: pan-y;
  margin: 1em 0;
  padding-right: 1em;
}
#gal_preview_container a {
  padding-top: 150px;
  padding-left: 150px;
  margin: 0 0 1em 1em;
  display: block;
  cursor: pointer;
  background-position: center center;
  background-size: cover;
  border-radius: 4px;
  box-sizing: border-box;
}
#gal_preview_container a.gal_preview_active {
  border: 3px solid #f8d85e;
  box-shadow: 0 0 10px rgba(248, 216, 93, 0.5);
  padding-top: 144px;
  padding-left: 144px;
}
@media (max-width: 950px) {
  #gal_preview_container {
    margin: 0.5em 0;
  }
  #gal_preview_container a {
    padding-top: 50px;
    padding-left: 50px;
    margin: 0 0 0.5em 0.5em;
  }
  #gal_preview_container a.gal_preview_active {
    border: 3px solid #f8d85e;
    box-shadow: 0 0 10px rgba(248, 216, 93, 0.5);
    padding-top: 44px;
    padding-left: 44px;
  }
}

#gal_preview_container.is-centered {
  justify-content: center;
  cursor: default;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  user-select: none;
  z-index: 5;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

#gallery_back {
  background-color: rgba(0, 0, 0, 0.9);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100001;
}
#gallery_back #gal_close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1em;
  color: #FFF;
  text-decoration: none;
  font-size: 2em;
  cursor: pointer;
  z-index: 100002;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gallery_back #gal_counter {
  position: absolute;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  font-size: 1.2em;
  font-weight: bold;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.5em;
  z-index: 100002;
  pointer-events: none;
}
@media (max-width: 950px) {
  #gallery_back #gal_counter {
    font-size: 1em;
    top: 0.5em;
  }
}
#gallery_back #gal_fullscreen {
  position: absolute;
  right: 2.5em;
  top: 0;
  padding: 1em;
  color: #FFF;
  text-decoration: none;
  font-size: 2em;
  cursor: pointer;
  z-index: 100002;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 950px) {
  #gallery_back #gal_fullscreen {
    right: 3em;
    font-size: 1.5em;
  }
}
#gallery_back #gal_fullscreen:hover {
  opacity: 0.8;
}
#gallery_back #gal_previous, #gallery_back #gal_next {
  position: absolute;
  left: 2vw;
  top: 50%;
  transform: translateY(-50%);
  padding: 2vw;
  color: #FFF;
  text-decoration: none;
  font-size: 3em;
  font-weight: bold;
  cursor: pointer;
  z-index: 100002;
}
#gallery_back #gal_next {
  left: unset;
  right: 2vw;
}

#galerija {
  height: 100vh;
}

#gal_slides_container {
  height: 80vh;
  margin-top: 2vh;
  display: inline-flex;
  overflow: hidden;
  transform: translateX(0);
  transition: transform 0.3s ease-out;
  cursor: grab;
}
#gal_slides_container .gal_slide {
  height: 100%;
  max-height: 100%;
  width: 100vw;
  min-width: 100vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  position: relative;
  overflow: visible;
}
#gal_slides_container .gal_slide picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  max-height: 100%;
  max-width: 100%;
  flex: 1 1 auto;
  align-self: center;
  margin: auto;
}
#gal_slides_container .gal_slide source {
  max-height: 100%;
  max-width: 100%;
}
#gal_slides_container .gal_slide .gal_image_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
}
#gal_slides_container .gal_slide img {
  display: block;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: auto;
}
#gal_slides_container .gal_slide .g_b_title {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  width: auto;
  max-width: 90%;
  margin: 0;
  padding: 0.5em 1em;
  text-align: center;
  z-index: 100003;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
  pointer-events: none;
  border-radius: 0.5em 0.5em 0 0;
}

.redzams-a {
  visibility: visible !important;
  position: absolute !important;
  z-index: 11100000000 !important;
}

.redzams {
  visibility: visible !important;
  position: relative !important;
}

.neredzams {
  visibility: hidden;
  position: absolute !important;
}

.show-mobile {
  visibility: hidden !important;
  position: absolute;
}
@media screen and (max-width: 950px) {
  .show-mobile {
    visibility: visible !important;
    position: relative;
  }
}

@media (min-width: 951px) {
  .redzams.show-mobile {
    visibility: hidden !important;
    position: absolute !important;
  }
}
#mmenu-show {
  display: none;
}

#menu-icon {
  cursor: pointer;
  float: right;
  padding: 0 1.5em;
  position: relative;
  user-select: none;
  display: none;
}
@media screen and (max-width: 950px) {
  #menu-icon {
    display: block;
    float: right;
    padding: 0 1.5em;
  }
}
#menu-icon i {
  background: #F8EECA;
  display: block;
  height: 4px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 28px;
}
#menu-icon i:before, #menu-icon i:after {
  background: #F8EECA;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
#menu-icon i:before {
  top: 10px;
}
#menu-icon i:after {
  top: -10px;
}

#mmenu-show:checked ~ #menu-icon i {
  background: transparent;
}

#mmenu-show:checked ~ #menu-icon i:before {
  transform: rotate(-45deg);
  top: 0;
}

#mmenu-show:checked ~ #menu-icon i:after {
  transform: rotate(45deg);
  top: 0;
}

#lapas_karte_shortcut {
  width: 100%;
  padding: 1em;
  background-color: #9ab36c;
  visibility: hidden;
  position: absolute;
}
#lapas_karte_shortcut a {
  font-size: 1.5em;
  border-radius: 5px;
  border: 1px solid #000;
  color: #000;
  background-color: #FFF;
  padding: 0.5em;
  display: inline-block;
}

dy {
  text-align: center;
  margin: 0;
}

a {
  text-decoration: none;
  color: #000;
}

#lapa {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#footer {
  min-height: 100px;
  background-color: #667958;
  flex-shrink: 0;
}
#footer .wrapper {
  padding: 1em;
  color: #F8EECA;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 100px;
}
#footer #viss {
  color: #99b684;
  align-self: flex-end;
  margin-top: auto;
}
#footer #viss a {
  color: #99b684;
  text-decoration: none;
}
#footer #viss a:hover {
  color: #FFF;
}

#lapas_galva {
  min-height: 200px;
  background-position: center center;
  background-size: 100% auto;
  position: relative;
}
#lapas_galva .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 200px;
}
#lapas_galva .wrapper .language-switcher {
  position: absolute;
  top: 1em;
  right: 1.5em;
  z-index: 10;
}
#lapas_galva .lapas_galva_virsraksts {
  font-size: 3rem;
  font-weight: bold;
  color: #FFF;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 1em 1em 1em 2em;
  z-index: 5;
  width: auto;
}
@media screen and (max-width: 1180px) {
  #lapas_galva .lapas_galva_virsraksts {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  #lapas_galva .lapas_galva_virsraksts {
    font-size: 2rem;
  }
}
@media screen and (max-width: 950px) {
  #lapas_galva .lapas_galva_virsraksts {
    font-size: 1.8rem;
    padding: 0.5em;
  }
}

#saturs {
  flex: 1;
  padding: 0 1rem;
  padding-bottom: 100px;
}
#saturs section {
  max-width: 100%;
}
#saturs section .objekts {
  width: 100%;
  display: inline-block;
  text-align: left;
}
#saturs section .objekts .obj_saturs {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  padding: 1em 1em;
  margin: 0 0 1em 0;
  line-height: 1.8;
  color: #333;
  box-sizing: border-box;
}
#saturs section .objekts .obj_saturs p {
  margin: 0 0 1rem 0;
  text-indent: 0;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
}
#saturs section .objekts .obj_saturs img {
  max-width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}
#saturs section .objekts .obj_saturs h2, #saturs section .objekts .obj_saturs h3, #saturs section .objekts .obj_saturs h4 {
  margin: 1rem 0;
  text-align: left;
}
#saturs section .objekts .obj_saturs ul, #saturs section .objekts .obj_saturs ol {
  margin: 0 0 1rem 0;
  padding-left: 2em;
}
#saturs section .objekts .obj_saturs ul li, #saturs section .objekts .obj_saturs ol li {
  line-height: 1.6;
  font-size: 1.4rem;
}
#saturs section .objekts .obj_saturs iframe {
  margin: 1em auto;
  display: block;
  max-width: 100%;
}
@media (max-width: 950px) {
  #saturs section .objekts .obj_saturs {
    padding: 1em 0.5em;
  }
  #saturs section .objekts .obj_saturs p {
    line-height: 1.6;
  }
}

.cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  flex-basis: 31%;
  float: left;
  height: 400px;
  margin: 0 1% 1em 1%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-decoration: none;
  display: block;
}
@media (max-width: 950px) {
  .card {
    flex-basis: 47%;
    height: 300px;
  }
}
@media (max-width: 460px) {
  .card {
    flex-basis: 98vw;
    height: 300px;
    margin-bottom: 1vw;
  }
}
.card span {
  display: block;
}
.card .card-cover {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60%;
  width: 100%;
  background: linear-gradient(180deg, rgba(200, 200, 200, 0), rgba(11, 24, 22, 0.05) 55%, rgba(220, 220, 220, 0.9) 90%);
}
.card .card-title {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1em;
  font-size: 1.5rem;
  color: #000;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 920px) {
  .card .card-title {
    font-size: 1.3rem;
  }
}
.card .card-title .card-title-price {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.3em 0.6em;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  margin-left: auto;
}
@media (max-width: 920px) {
  .card .card-title .card-title-price {
    font-size: 1rem;
  }
}
.card .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 200px;
}
.card .wrapper .language-switcher {
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 10;
}
.card .lapas_galva_virsraksts {
  font-size: 3rem;
  font-weight: bold;
  color: #FFF;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 1em 1em 1em 2em;
  z-index: 5;
  width: auto;
}
@media screen and (max-width: 1180px) {
  .card .lapas_galva_virsraksts {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .card .lapas_galva_virsraksts {
    font-size: 2rem;
  }
}
@media screen and (max-width: 950px) {
  .card .lapas_galva_virsraksts {
    font-size: 1.8rem;
    padding: 0.5em;
  }
}

.language-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-menu li {
  margin: 0;
}
.language-menu li a {
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s;
}
@media (max-width: 920px) {
  .language-menu li a {
    width: 30px;
    height: 30px;
  }
}
.language-menu li a:hover {
  transform: scale(1.1);
}
.language-menu li a .flag-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.language-menu li a .flag-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

h1 {
  width: 100%;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 1em 0 0.5em 0;
}
h1.lapas_galva_virsraksts {
  width: auto;
}

h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1em 0 0.5em 0;
  text-align: left;
}

h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0.8em 0 0.4em 0;
  text-align: left;
}

h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0.6em 0 0.3em 0;
  text-align: left;
}

.lasit_vairak {
  float: right;
}

.wrapper {
  margin: 0 auto;
  max-width: 1400px;
  text-align: left;
}

p {
  text-indent: 1rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
}

label {
  width: 100%;
  display: block;
}

input {
  padding: 0.4rem;
  width: 100%;
  margin: 0.2rem 0 1rem 0;
  cursor: pointer;
}

#reg_anketa input[type=radio] {
  width: 20px;
  height: 20px;
}

textarea {
  width: 100%;
  min-height: 100px;
  padding: 0.4rem;
}

input[type=submit] {
  cursor: pointer;
  min-width: 200px;
  max-width: 300px;
  padding: 1rem;
  margin: 1rem 0;
}

.vecums {
  max-width: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

#kontaktpersona_label, #banka_label {
  visibility: hidden;
  position: absolute;
}

#reg_anketa .not-filled {
  border: 3px solid #e35f5f;
}

table input {
  max-width: 100px;
  padding: 0.4rem;
  margin: 0;
}
table input[type=checkbox] {
  cursor: pointer;
}
table th, table td {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: left;
  font-size: 0.8rem;
}
table th {
  background-color: #eef8e1;
  text-align: center;
}

table tbody tr td:first-child {
  background-color: #eef8e1;
  /* Change this to your desired background color */
}

@media screen and (max-width: 1100px) {
  table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
  }

  /* Style the table headers to rotate the text */
  th {
    writing-mode: vertical-rl;
    /* Sets the text direction vertically */
    transform: rotate(180deg);
    /* Rotates the text for proper orientation */
    white-space: nowrap;
    /* Prevents wrapping */
    padding: 10px 5px;
    /* Adds some padding */
    text-align: left;
    /* Aligns text to the left */
    border: 1px solid #ccc;
    /* Adds a border for better visibility */
  }

  /* Style the table rows and cells */
  td {
    border: 1px solid #ccc;
    padding: 5px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  th, td {
    border: 1px solid #ccc;
    padding: 5px;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    display: none;
  }

  tr {
    margin-bottom: 10px;
    border: 1px solid #ccc;
  }

  td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #eee;
  }

  td:before {
    content: attr(data-label);
    flex-basis: 50%;
    text-align: left;
    font-weight: bold;
  }
}
#main-menu-container {
  background-color: #667958;
}
#main-menu-container nav {
  padding: 0px !important;
  margin: 0px !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#main-menu-container nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 950px) {
  #main-menu-container {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
  }
  #main-menu-container .navbar {
    flex-direction: column;
  }
}

#settings_container {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin: 0 1em 0 auto;
}
#settings_container li {
  margin: 0;
  list-style: none;
}
#settings_container a {
  color: #000;
  cursor: pointer;
  padding: 0.5em 0.3em;
  text-decoration: none;
}
#settings_container li:hover {
  background-color: #FFF;
}
@media screen and (max-width: 950px) {
  #settings_container {
    flex-direction: row;
    margin: 0;
    padding: 0;
    width: 100%;
  }
}

#main-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0 1%;
  margin: 0 0.4em;
  background-color: #667958;
}
#main-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
#main-menu > li {
  margin: 0.2em;
}
@media screen and (max-width: 1180px) {
  #main-menu > li {
    margin: 0.5em 0.4em;
  }
}
@media screen and (max-width: 1024px) {
  #main-menu > li {
    margin: 0.5em 0.3em;
  }
}
#main-menu > li.active {
  background-color: #bbb77a;
}
#main-menu > li.active a {
  color: #000;
}
#main-menu > li > a {
  color: #F8EECA;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 0.5em;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: block;
}
@media screen and (max-width: 1180px) {
  #main-menu > li > a {
    font-size: 1.2em;
    padding: 0.3em;
  }
}
@media screen and (max-width: 1024px) {
  #main-menu > li > a {
    font-size: 1.1rem;
    padding: 0.3em;
  }
}
#main-menu > li > a:hover {
  background-color: #a9cf54;
  color: #000;
}
#main-menu .i-caret-down,
#main-menu .i-cross {
  visibility: hidden;
  position: absolute;
}
#main-menu .submen {
  visibility: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 11000000;
  background-color: #618C3F;
  padding: 0.3em 0;
  margin: 0;
  top: calc(100% + 0px);
  right: -30px;
  min-width: 100%;
  max-width: calc(100vw - 40px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.redzams-a #main-menu .submen {
  visibility: visible;
}
#main-menu > li:hover .submen {
  visibility: visible;
}
#main-menu .submen > li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  background-color: #618C3F;
}
#main-menu .submen > li > a {
  color: #F8EECA;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 0.6em 0.6em;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 1180px) {
  #main-menu .submen > li > a {
    font-size: 1.1rem;
    padding: 0.5em 0.7em;
  }
}
@media screen and (max-width: 1024px) {
  #main-menu .submen > li > a {
    font-size: 1rem;
    padding: 0.5em 1.5em;
  }
}
@media screen and (max-width: 920px) {
  #main-menu .submen > li > a {
    font-size: 0.9rem;
    padding: 0.5em 1.5em;
  }
}
@media screen and (max-width: 950px) {
  #main-menu .submen > li > a {
    font-size: 1.2rem;
    padding: 0.5em 1.5em;
  }
}
#main-menu .submen > li > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#main-menu .submen .submen {
  display: none !important;
}
#main-menu > li > .submen.align-right-edge {
  left: auto;
  right: 0;
}
#main-menu #mobile_logo {
  visibility: hidden;
  position: absolute;
}
@media screen and (max-width: 950px) {
  #main-menu {
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  #main-menu #mobile_logo {
    visibility: visible;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: #667958;
    min-height: 60px;
    margin: 0;
    padding: 0;
  }
  #main-menu #mobile_logo div a {
    color: #F8EECA;
    padding: 13px 0 10px 1.5em;
    font-weight: bold;
    font-size: 1.3em;
    display: inline-block;
    text-wrap: inherit;
    width: 90%;
    margin: 0;
  }
  #main-menu #mobile_logo div a img {
    max-height: 60px;
  }
  #main-menu > li {
    visibility: hidden;
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #CCC;
    margin: 0;
    padding: 0;
    background-color: #667958;
  }
  #main-menu > li.redzams {
    visibility: visible;
    position: relative;
  }
  #main-menu > li.active {
    background-color: #618C3F;
    border-radius: 0;
  }
  #main-menu > li > a {
    width: 90%;
    margin: 0;
    padding: 0.5em 1.5em;
    display: inline-block;
    text-align: left;
    float: left;
    font-size: 1.2em;
    border-radius: 0;
  }
  #main-menu .i-caret-down,
#main-menu .i-cross {
    visibility: hidden;
    float: right;
    display: inline-block;
    padding: 0.3em 0 0.5em 3%;
    font-size: 1.5em;
    width: 10%;
    cursor: pointer;
    color: #FFF;
    position: relative;
  }
  #main-menu > li.redzams > .i-caret-down,
#main-menu > li.redzams > .i-cross,
#main-menu > li > .i-caret-down.redzams,
#main-menu > li > .i-cross.redzams {
    visibility: visible;
  }
  #main-menu .submen {
    visibility: hidden;
    position: absolute;
    background-color: #618C3F;
    display: flex;
    flex-direction: column;
    width: 100%;
    top: 100%;
    left: 0;
    max-width: 100%;
    padding: 0;
    box-shadow: none;
  }
  #main-menu .submen.redzams {
    visibility: visible;
    position: relative;
    display: flex;
  }
  #main-menu .submen .submen {
    display: none !important;
  }
  #main-menu > li:hover .submen {
    visibility: hidden;
  }
  #main-menu > li > a:hover {
    background-color: transparent;
  }
}

#search-container {
  width: 100%;
  visibility: hidden;
  position: absolute;
  background-color: #9AB36CFF;
}
#search-container .wrapper {
  padding: 0.5em 0;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#search-container input {
  padding: 0.25em;
  font-size: 1rem;
  width: 50%;
}
#search-container button {
  padding: 0 1.5em;
  cursor: pointer;
}
@media screen and (max-width: 950px) {
  #search-container input {
    padding: 0.25em;
    font-size: 1rem;
    width: 70%;
    float: left;
    position: relative;
  }
  #search-container button {
    width: 15%;
    float: left;
    position: relative;
  }
}

#chose_text_size_link {
  display: inline-block;
}
#chose_text_size_link div {
  float: left;
}
#chose_text_size_link div:nth-of-type(1) {
  font-size: 1em;
}
#chose_text_size_link div:nth-of-type(2) {
  font-size: 0.9em;
}
#chose_text_size_link div:nth-of-type(3) {
  font-size: 0.8em;
}

#chose_text_size_box {
  visibility: hidden;
  position: absolute;
  width: 80px;
  box-shadow: 0 2px 18px #00000026;
  padding: 0;
  z-index: 100001;
  background-color: #618C3F;
}
#chose_text_size_box li {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
}
#chose_text_size_box li a {
  padding: 0.5em 1em;
  display: block;
}
#chose_text_size_box li a:hover {
  background-color: #a9cf54;
}

.font_siz1 {
  font-size: 95% !important;
}

.font_siz2 {
  font-size: 104% !important;
}

.font_siz3 {
  font-size: 107% !important;
}

#chose_contrast_box {
  visibility: hidden;
  position: absolute;
  width: 50px;
  box-shadow: 0 2px 18px #00000026;
  margin: 4px 0 0 0px;
  padding: 0;
  z-index: 100001;
  background-color: #fff;
}
#chose_contrast_box li {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
}
#chose_contrast_box li a {
  padding: 0.5em 1em;
  display: block;
}

.contr1 {
  background-color: #FFF !important;
  color: #000 !important;
}

.contr2 {
  background-color: #000 !important;
  color: #FFF !important;
}

.contr3 {
  background-color: #FFFF00 !important;
  color: #000 !important;
}

.contr4 {
  background-color: #000 !important;
  color: #FFFF00 !important;
}

.img_left {
  float: left !important;
  margin: 0 1em 1em 0;
  clear: both;
}

.img_center {
  margin: auto !important;
  display: block;
  clear: both;
}

.img_right {
  float: right !important;
  margin: 0 0 1em 1em;
  clear: both;
}

.img_100 {
  width: 100% !important;
}

.img_50 {
  width: 50%;
}

.img_33 {
  width: 33%;
}

.img_20 {
  width: 20%;
}
@media screen and (max-width: 950px) {
  .img_20 {
    width: 50%;
    margin: 0.5em 0.5em 0.5em 0;
  }
}

@media screen and (max-width: 950px) {
  .img_50, .img_33 {
    width: 100%;
    margin: 0.5em auto 1em auto;
  }
  .img_50 img, .img_33 img {
    width: 100%;
  }
}

@media screen and (max-width: 950px) {
  figure.img_33 {
    display: contents;
  }
}

.obj_datums, .raksta_datums {
  background-image: url(../../../img/calendar.png);
  background-repeat: no-repeat;
  display: inline-block;
  min-height: 20px;
  padding: 0 25px;
  font-size: 1em;
  font-weight: bold;
  color: #5A471C;
  margin: 0.5em;
}

#pasakumu_navigacija {
  width: 100%;
  display: inline-block;
  padding-top: 1em;
}
@media screen and (max-width: 950px) {
  #pasakumu_navigacija {
    margin-top: 1em;
  }
}

#pasakumu_view {
  margin: 0 0 1em 0;
  display: inline-block;
  float: left;
  text-align: center;
}

#pasakumu_view li {
  float: left;
  list-style: none;
  margin-left: 1em;
}

#pasakumu_view li a {
  text-decoration: none;
  display: inline-block;
  color: #0f0f0f;
  padding: 0 0.2em;
}

#pasakumu_datumu_navigacija {
  margin: 0 0 1em 0;
  display: inline-block;
  float: right;
  text-align: center;
}

#pasakumu_datumu_navigacija li {
  float: left;
  list-style: none;
  margin-right: 1em;
}

#pasakumu_datumu_navigacija li a {
  text-decoration: none;
  padding: 0 0.5em;
  display: inline-block;
  color: #0f0f0f;
}

#pasakumu_datumu_navigacija .active {
  font-weight: bold;
  background-color: #E0E3E5;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  box-shadow: 0 0 1px #F5F4E0;
  padding-left: 1em;
  padding-right: 1em;
}

.tabs {
  margin-bottom: 24px;
  font-size: 14px;
}

.tabs ul {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  margin-top: -1px;
}

.tabs li {
  list-style: none;
}

.tabs li em, .tabs li.active a {
  border-bottom: 1px solid #fff;
}

.tabs li em, .tabs li.active a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  cursor: default;
  text-decoration: none;
}

.tabs em, .tabs a {
  border: 1px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  font-style: normal;
  padding: 7px 24px;
  position: relative;
  text-decoration: none;
  top: 1px;
}

.social_buttons {
  width: 100%;
  margin: 2em 0 1em 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
}
.social_buttons .social_buttons_label {
  font-weight: bold;
}
.social_buttons .social_buttons_icons {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.soc-btn-draugiem {
  padding-top: 5px;
}

.soc-btn-twitter {
  padding-top: 5px;
}

.soc-btn-facebook,
.soc-btn-twitter,
.soc-btn-mail {
  display: inline-block;
  padding: 0.5em;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.soc-btn-facebook svg,
.soc-btn-twitter svg,
.soc-btn-mail svg {
  fill: currentColor;
}
.soc-btn-facebook:hover,
.soc-btn-twitter:hover,
.soc-btn-mail:hover {
  background-color: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.soc-btn-facebook {
  color: #1877F2;
}
.soc-btn-facebook:hover {
  background-color: rgba(24, 119, 242, 0.1);
}

.soc-btn-twitter {
  color: #1DA1F2;
}
.soc-btn-twitter:hover {
  background-color: rgba(29, 161, 242, 0.1);
}

.soc-btn-mail {
  color: #666;
}
.soc-btn-mail:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.soc-btn-print {
  float: right;
  padding: 5px 5px 0 0;
  display: inline-block;
}

/*@font-face {*/
/*  font-family: 'i';*/
/*  src:  url('../fonts/i.eot?sy2tck');*/
/*  src:  url('../fonts/i.eot?sy2tck#iefix') format('embedded-opentype'),*/
/*  url('../fonts/i.ttf?sy2tck') format('truetype'),*/
/*  url('../fonts/i.woff?sy2tck') format('woff'),*/
/*  url('../fonts/i.svg?sy2tck#i') format('svg');*/
/*  !*src:  url('http://visitdobele.lv/client_pages/visitdobele.lv/fonts/i.eot?k6mp1t');*!*/
/*  !*src:  url('http://visitdobele.lv/client_pages/visitdobele.lv/fonts/i.eot?k6mp1t#iefix') format('embedded-opentype'),*!*/
/*  !*url('http://visitdobele.lv/client_pages/visitdobele.lv/fonts/i.ttf?k6mp1t') format('truetype'),*!*/
/*  !*url('http://visitdobele.lv/client_pages/visitdobele.lv/fonts/i.woff?k6mp1t') format('woff'),*!*/
/*  !*url('http://visitdobele.lv/client_pages/visitdobele.lv/fonts/i.svg?k6mp1t#i') format('svg');*!*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*  font-display: block;*/
/*}*/
@font-face {
  font-family: "i";
  src: url("../fonts/i.eot?ga7toa");
  src: url("../fonts/i.eot?ga7toa#iefix") format("embedded-opentype"), url("../fonts/i.ttf?ga7toa") format("truetype"), url("../fonts/i.woff?ga7toa") format("woff"), url("../fonts/i.svg?ga7toa#i") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=i-], [class*=" i-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "i" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a[href$=".pdf"]:before, a[href$=".PDF"]:before {
  content: "\e91a";
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "i" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  padding-right: 1em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a[href$=".docx"]:before, a[href$=".doc"]:before {
  content: "\e921";
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "i" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  padding-right: 1em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a[href$=".xls"]:before, a[href$=".xlsx"]:before {
  content: "\e910";
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "i" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  padding-right: 1em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a[href$=".zip"]:before {
  content: "\e923";
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "i" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  padding-right: 1em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*jamaina augstak vertibas */
.i-pinterest:before {
  content: "\e93b";
  color: #bd081c;
}

.i-whatsapp:before {
  content: "\e93c";
  color: #25d366;
}

.i-feel:before {
  content: "\e942";
}

.i-map:before {
  content: "\e943";
}

.i-kofers:before {
  content: "\e944";
}

.i-caret-down:before {
  content: "\e93e";
}

.i-caret-left:before {
  content: "\e93f";
}

.i-caret-right:before {
  content: "\e940";
}

.i-caret-up:before {
  content: "\e941";
}

.i-contrast:before {
  content: "\e93d";
}

.i-airbnb:before {
  content: "\e936";
  color: #ff5a5f;
}

.i-tiktok:before {
  content: "\e93a";
}

.i-search:before {
  content: "\e935";
}

.i-location:before {
  content: "\e90e";
}

.i-phone:before {
  content: "\e900";
}

.i-mail:before {
  content: "\e901";
}

.i-mail-light:before {
  content: "\e902";
}

.i-homepage:before {
  content: "\e903";
}

.i-facebook:before {
  content: "\e904";
}

.i-facebook-light:before {
  content: "\e905";
}

.i-youtube:before {
  content: "\e906";
}

.i-fax:before {
  content: "\e907";
}

.i-instagram-light:before {
  content: "\e908";
}

.i-twitter:before {
  content: "\e909";
}

.i-twitter-x:before {
  content: "\e946";
}

.i-twitter-light:before {
  content: "\e90a";
}

.i-linked-in:before {
  content: "\e90b";
}

.i-vimeo:before {
  content: "\e90c";
}

.i-vimeo-light:before {
  content: "\e90d";
}

.i-to-watch:before {
  content: "\e90f";
}

.i-excel:before {
  content: "\e910";
}

.i-excel-light:before {
  content: "\e911";
}

.i-foto-video:before {
  content: "\e912";
}

.i-bed:before {
  content: "\e913";
}

.i-img:before {
  content: "\e914";
}

.i-img-light:before {
  content: "\e915";
}

.i-cup:before {
  content: "\e916";
}

.i-link:before {
  content: "\e917";
}

.i-linked-in-light:before {
  content: "\e918";
}

.i-pargajieni:before {
  content: "\e919";
}

.i-pdf:before {
  content: "\e91a";
}

.i-pdf_light:before {
  content: "\e91b";
}

.i-powerpoint:before {
  content: "\e91c";
}

.i-powerpoint-light:before {
  content: "\e91d";
}

.i-eating:before {
  content: "\e91e";
}

.i-skiing:before {
  content: "\e91f";
}

.i-shoping-chart:before {
  content: "\e920";
}

.i-word:before {
  content: "\e921";
}

.i-word-light:before {
  content: "\e922";
}

.i-zip:before {
  content: "\e923";
}

.i-zip-light:before {
  content: "\e924";
}

.i-tic:before {
  content: "\e925";
}

.i-authorities:before {
  content: "\e926";
}

.i-monument:before {
  content: "\e945";
}

.i-pharmacy:before {
  content: "\e927";
}

.i-calendar:before {
  content: "\e928";
}

.i-ambulance:before {
  content: "\e929";
}

.i-star:before {
  content: "\e92a";
}

.i-waze:before {
  content: "\e92b";
}

.i-clock:before {
  content: "\e92c";
}

.i-auto-service:before {
  content: "\e92d";
}

.i-trasport:before {
  content: "\e92e";
}

.i-gas:before {
  content: "\e92f";
}

.i-money:before {
  content: "\e930";
}

.i-music:before {
  content: "\e931";
}

.i-wifi:before {
  content: "\e932";
}

.i-more:before {
  content: "\e933";
}

.i-google-map:before {
  content: "\e934";
}

.i-booking:before {
  content: "\e937";
}

.i-site-map:before {
  content: "\e938";
}

.i-accessibility:before {
  content: "\e939";
}

.i-accessibility2:before {
  content: "\e947";
}

.i-pets-allowed:before {
  content: "\e94c";
}

.i-pets-not-allowed:before {
  content: "\e94d";
}

.i-payment-card-not-accepted:before {
  content: "\e94e";
}

.i-map-filed:before {
  content: "\e94b";
}

.i-sphere:before {
  content: "\e9c9";
}

.i-eye:before {
  content: "\e9ce";
}

.i-heart:before {
  content: "\e9da";
}

.i-grin:before {
  content: "\e9e9";
}

.i-cross:before {
  content: "\ea0f";
}

.i-arrow-right:before {
  content: "\ea3c";
}

.i-arrow-left:before {
  content: "\ea40";
}

.i-audio:before {
  content: "\ea26";
}

.i-payment-card-accepted:before {
  content: "\e94f";
}

.registracijas_ank_poga {
  border-radius: 10px;
  background-color: #667958;
  color: #FFF;
  padding: 0.8rem;
  margin: 0.8rem;
  font-size: 1rem;
  display: inline-block;
}

.registracijas_ank_poga:hover {
  background-color: #33442d;
}

.grozs_container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.grozs_container h1 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
  color: #667958;
}
.grozs_container .grozs_wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .grozs_container .grozs_wrapper {
    flex-direction: column;
  }
}
.grozs_container .grozs_left {
  flex: 1;
  min-width: 0;
}
.grozs_container .grozs_right {
  flex: 0 0 300px;
}
@media (max-width: 1024px) {
  .grozs_container .grozs_right {
    flex: 1;
  }
}
.grozs_container .grozs_rindas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.grozs_container .grozs_rinda {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  background-color: #fff;
  flex-wrap: wrap;
}
@media (max-width: 950px) {
  .grozs_container .grozs_rinda {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
@media (max-width: 460px) {
  .grozs_container .grozs_rinda {
    padding: 0.75rem;
  }
}
.grozs_container .grozs_prece_preview {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 5px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 950px) {
  .grozs_container .grozs_prece_preview {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }
}
.grozs_container .grozs_prece_preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grozs_container .grozs_prece_nosaukums {
  flex: 1;
  font-weight: bold;
  min-width: 0;
  word-wrap: break-word;
}
.grozs_container .grozs_prece_daudzums {
  flex: 0 0 120px;
  min-width: 0;
}
@media (max-width: 950px) {
  .grozs_container .grozs_prece_daudzums {
    flex: 1 1 100%;
    width: 100%;
  }
}
.grozs_container .grozs_prece_daudzums input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-align: center;
}
@media (max-width: 460px) {
  .grozs_container .grozs_prece_daudzums input {
    padding: 0.75rem;
  }
}
.grozs_container .grozs_prece_cena {
  flex: 0 0 100px;
  text-align: right;
  font-weight: bold;
  min-width: 0;
}
@media (max-width: 950px) {
  .grozs_container .grozs_prece_cena {
    flex: 0 0 auto;
    text-align: left;
  }
}
.grozs_container .grozs_prece_summa {
  flex: 0 0 120px;
  text-align: right;
  font-weight: bold;
  color: #667958;
  min-width: 0;
}
@media (max-width: 950px) {
  .grozs_container .grozs_prece_summa {
    flex: 0 0 auto;
    text-align: left;
    font-size: 1.1rem;
  }
}
.grozs_container .grozs_prece_remove {
  flex: 0 0 auto;
}
@media (max-width: 950px) {
  .grozs_container .grozs_prece_remove {
    width: 100%;
    flex: 1 1 100%;
  }
}
.grozs_container .grozs_prece_remove button {
  padding: 0.5rem 1rem;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (max-width: 950px) {
  .grozs_container .grozs_prece_remove button {
    width: 100%;
    padding: 0.75rem;
  }
}
.grozs_container .grozs_prece_remove button:hover {
  background-color: #c82333;
}
.grozs_container .grozs_total {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.grozs_container .grozs_total .grozs_total_label {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #667958;
}
.grozs_container .grozs_total .grozs_total_summa {
  font-size: 1.5rem;
  font-weight: bold;
  color: #667958;
}
.grozs_container .grozs_actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.grozs_container .grozs_save button {
  width: 100%;
  padding: 1rem;
  background-color: #667958;
  color: #F8EECA;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.grozs_container .grozs_save button:hover {
  background-color: #618C3F;
}
.grozs_container .grozs_save button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.grozs_container .grozs_checkout button {
  width: 100%;
  padding: 1rem;
  background-color: #618C3F;
  color: #F8EECA;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.grozs_container .grozs_checkout button:hover {
  background-color: #667958;
}
.grozs_container .grozs_empty {
  text-align: center;
  padding: 3rem;
  color: #666;
  font-size: 1.2rem;
}

.checkout-form-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 1.5rem 0;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .checkout-form-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.checkout-form-left {
  flex: 2;
  min-width: 0;
}
@media (max-width: 1024px) {
  .checkout-form-left {
    flex: 1;
    width: 100%;
  }
}

.checkout-form-title {
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  color: #667958;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #667958;
}

.checkout-form-right {
  flex: 1;
  min-width: 0;
}
@media (max-width: 1024px) {
  .checkout-form-right {
    flex: 1;
    width: 100%;
  }
}

.checkout-form {
  width: 100%;
}
.checkout-form h3 {
  margin: 1.5rem 0 1rem 0;
  font-size: 1.5rem;
  color: #667958;
  font-weight: bold;
}
.checkout-form h3:first-child {
  margin-top: 0;
}
.checkout-form h4 {
  margin: 1rem 0 0.75rem 0;
  font-size: 1.2rem;
  color: #667958;
  font-weight: bold;
}
.checkout-form hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #e7e7e7;
}
.checkout-form .row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 950px) {
  .checkout-form .row {
    flex-direction: column;
    gap: 0;
  }
}
.checkout-form .col-half {
  flex: 1;
  min-width: 0;
}
@media (max-width: 950px) {
  .checkout-form .col-half {
    width: 100%;
  }
}
.checkout-form .col-full {
  width: 100%;
}
.checkout-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
  font-size: 1rem;
}
.checkout-form .req {
  color: #e35f5f;
  margin-left: 0.25rem;
}
.checkout-form input[type=text],
.checkout-form input[type=email],
.checkout-form input[type=tel] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  transition: border-color 0.3s;
}
.checkout-form input[type=text]:focus,
.checkout-form input[type=email]:focus,
.checkout-form input[type=tel]:focus {
  outline: none;
  border-color: #618C3F;
}
.checkout-form input[type=text]::placeholder,
.checkout-form input[type=email]::placeholder,
.checkout-form input[type=tel]::placeholder {
  color: #999;
}
.checkout-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s;
}
.checkout-form textarea:focus {
  outline: none;
  border-color: #618C3F;
}
.checkout-form textarea::placeholder {
  color: #999;
}
.checkout-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s;
}
.checkout-form select:focus {
  outline: none;
  border-color: #618C3F;
}
.checkout-form .delivery-options {
  margin-bottom: 1rem;
}
.checkout-form .radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.checkout-form .radio-option input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0 0.75rem 0 0;
  cursor: pointer;
}
.checkout-form .radio-option span {
  font-size: 1rem;
  color: #333;
}
.checkout-form .delivery-details {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.checkout-form .delivery-comments {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.checkout-form .company-section {
  margin-bottom: 1rem;
}
.checkout-form .checkbox-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  cursor: pointer;
}
.checkout-form .checkbox-option input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0.25rem 0.75rem 0 0;
  cursor: pointer;
  flex-shrink: 0;
}
.checkout-form .checkbox-option span {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}
.checkout-form .confirm-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e7e7e7;
}
.checkout-form .btn-checkout {
  width: 100%;
  padding: 1rem;
  background-color: #618C3F;
  color: #F8EECA;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
}
.checkout-form .btn-checkout:hover {
  background-color: #667958;
}
.checkout-form .btn-checkout:focus {
  outline: none;
}

.checkout-auth-form {
  background-color: #f8f9fa;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
}
@media (max-width: 1024px) {
  .checkout-auth-form {
    position: static;
  }
}
.checkout-auth-form h3 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  color: #667958;
  font-weight: bold;
}
.checkout-auth-form .auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.checkout-auth-form .auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}
.checkout-auth-form .auth-form input[type=email],
.checkout-auth-form .auth-form input[type=password],
.checkout-auth-form .auth-form input[type=text] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  margin: 0;
  transition: border-color 0.3s;
}
.checkout-auth-form .auth-form input[type=email]:focus,
.checkout-auth-form .auth-form input[type=password]:focus,
.checkout-auth-form .auth-form input[type=text]:focus {
  outline: none;
  border-color: #618C3F;
}
.checkout-auth-form .auth-form .auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.checkout-auth-form .auth-form .btn-auth {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.checkout-auth-form .auth-form .btn-auth.btn-login {
  background-color: #618C3F;
  color: #F8EECA;
}
.checkout-auth-form .auth-form .btn-auth.btn-login:hover {
  background-color: #667958;
}
.checkout-auth-form .auth-form .btn-auth.btn-register {
  background-color: #fff;
  color: #667958;
  border: 1px solid #667958;
}
.checkout-auth-form .auth-form .btn-auth.btn-register:hover {
  background-color: #f0f0f0;
}
.checkout-auth-form .auth-form .btn-auth:focus {
  outline: none;
}
.checkout-auth-form .auth-form .auth-links {
  margin-top: 0.75rem;
  text-align: center;
}
.checkout-auth-form .auth-form .auth-links a {
  color: #618C3F;
  text-decoration: none;
  font-size: 0.9rem;
}
.checkout-auth-form .auth-form .auth-links a:hover {
  text-decoration: underline;
}

.slud_content_wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 1.5rem 0;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .slud_content_wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.slud_content_left {
  flex: 2;
  min-width: 0;
}
@media (max-width: 1024px) {
  .slud_content_left {
    flex: 1;
    width: 100%;
  }
}

.slud_content_right {
  flex: 1;
  min-width: 0;
}
@media (max-width: 1024px) {
  .slud_content_right {
    flex: 1;
    width: 100%;
  }
}

.slud_cenas_container {
  margin: 0;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  position: sticky;
  top: 1rem;
}
@media (max-width: 1024px) {
  .slud_cenas_container {
    position: static;
    margin: 0;
  }
}
.slud_cenas_container h2 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #667958;
}
.slud_cenas_container .cena_item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  transition: box-shadow 0.3s;
}
.slud_cenas_container .cena_item:last-child {
  margin-bottom: 0;
}
.slud_cenas_container .cena_item:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 950px) {
  .slud_cenas_container .cena_item {
    padding: 0.75rem;
  }
}
.slud_cenas_container .cena_persona {
  font-size: 0.9rem;
  font-weight: bold;
  color: #618C3F;
  margin-bottom: 0.25rem;
}
.slud_cenas_container .cena_info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 460px) {
  .slud_cenas_container .cena_info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.slud_cenas_container .cena_daudzums {
  font-size: 1rem;
  color: #666;
  flex: 0 0 auto;
}
.slud_cenas_container .cena_cena {
  font-size: 1.2rem;
  font-weight: bold;
  color: #667958;
  text-align: right;
  flex: 0 0 auto;
}
@media (max-width: 460px) {
  .slud_cenas_container .cena_cena {
    text-align: left;
    font-size: 1.1rem;
  }
}
.slud_cenas_container .pirkt_section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
@media (max-width: 460px) {
  .slud_cenas_container .pirkt_section {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
}
.slud_cenas_container .daudzums_input {
  flex: 0 0 100px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-align: center;
  font-size: 1rem;
}
@media (max-width: 460px) {
  .slud_cenas_container .daudzums_input {
    width: 100%;
    flex: 1;
  }
}
.slud_cenas_container .daudzums_input:focus {
  outline: none;
  border-color: #667958;
  box-shadow: 0 0 0 2px rgba(102, 121, 88, 0.2);
}
.slud_cenas_container .pirkt_btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1.5rem;
  background-color: #667958;
  color: #F8EECA;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 460px) {
  .slud_cenas_container .pirkt_btn {
    width: 100%;
    flex: 1;
  }
}
.slud_cenas_container .pirkt_btn:hover:not(:disabled) {
  background-color: #618C3F;
  transform: translateY(-1px);
}
.slud_cenas_container .pirkt_btn:active:not(:disabled) {
  transform: translateY(0);
}
.slud_cenas_container .pirkt_btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}
.slud_cenas_container .pirkt_btn .pirkt_btn_text {
  display: inline-block;
}
.slud_cenas_container .pirkt_btn .pirkt_btn_loading {
  display: none;
}
.slud_cenas_container .pirkt_btn .pirkt_btn_loading::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #F8EECA;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.slud_cenas_container .pirkt_btn .pirkt_btn_success {
  display: none;
  color: #28a745;
}
.slud_cenas_container .pirkt_btn .pirkt_btn_success::before {
  content: "✓";
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #28a745;
  line-height: 1;
}

.notification_toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  max-width: 400px;
  opacity: 0;
  transform: translateX(400px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 460px) {
  .notification_toast {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
}
.notification_toast.notification_toast_show {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 460px) {
  .notification_toast.notification_toast_show {
    transform: translateY(0);
  }
}
.notification_toast.notification_toast_success {
  background-color: #28a745;
  color: #fff;
}
.notification_toast.notification_toast_error {
  background-color: #dc3545;
  color: #fff;
}
.notification_toast.notification_toast_info {
  background-color: #17a2b8;
  color: #fff;
}

.notification_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.notification_modal_overlay.notification_modal_show {
  opacity: 1;
}

.notification_modal {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.notification_modal_overlay.notification_modal_show .notification_modal {
  transform: scale(1);
}
.notification_modal .notification_modal_content {
  padding: 2rem;
  text-align: center;
}
.notification_modal .notification_modal_message {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.notification_modal .notification_modal_close {
  background-color: #618C3F;
  color: #F8EECA;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.notification_modal .notification_modal_close:hover {
  background-color: #667958;
}
.notification_modal .notification_modal_close:active {
  transform: scale(0.98);
}
.notification_modal .notification_modal_buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.notification_modal .notification_modal_confirm,
.notification_modal .notification_modal_cancel {
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  min-width: 100px;
}
.notification_modal .notification_modal_confirm:active,
.notification_modal .notification_modal_cancel:active {
  transform: scale(0.98);
}
.notification_modal .notification_modal_confirm {
  background-color: #28a745;
  color: #fff;
}
.notification_modal .notification_modal_confirm:hover {
  background-color: #218838;
}
.notification_modal .notification_modal_cancel {
  background-color: #6c757d;
  color: #fff;
}
.notification_modal .notification_modal_cancel:hover {
  background-color: #5a6268;
}
.notification_modal.notification_modal_success .notification_modal_message {
  color: #28a745;
}
.notification_modal.notification_modal_success .notification_modal_close {
  background-color: #28a745;
  color: #fff;
}
.notification_modal.notification_modal_success .notification_modal_close:hover {
  background-color: #218838;
}
.notification_modal.notification_modal_error .notification_modal_message {
  color: #dc3545;
}
.notification_modal.notification_modal_error .notification_modal_close {
  background-color: #dc3545;
  color: #fff;
}
.notification_modal.notification_modal_error .notification_modal_close:hover {
  background-color: #c82333;
}
.notification_modal.notification_modal_info .notification_modal_message {
  color: #17a2b8;
}
.notification_modal.notification_modal_info .notification_modal_close {
  background-color: #17a2b8;
  color: #fff;
}
.notification_modal.notification_modal_info .notification_modal_close:hover {
  background-color: #138496;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.objekts .kontakti {
  padding-inline-start: 1em;
}

.objekts .kontakti li {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  font-size: 1.4rem;
}

.objekts .kontakti li i {
  width: 40px;
  display: inline-block;
  margin-bottom: 0.3em;
  font-size: 1.4rem;
  color: #542c84;
}

.objekts .kontakti li a {
  text-decoration: none;
  color: #000;
  flex-shrink: 0;
}

.pers_head {
  width: 100%;
  padding: 1em 0;
}
@media screen and (max-width: 950px) {
  .pers_head {
    padding: 1em 0;
  }
}

.personas_logo {
  float: right;
  margin: 0 0 1em 1em;
  max-width: 500px;
  position: relative;
}
@media (max-width: 920px) {
  .personas_logo {
    margin: 0 0 1em 0;
    max-width: 100%;
  }
}

.persona {
  margin-bottom: 1em;
  width: 100%;
}

#map {
  width: 100%;
  height: 400px;
  background-color: #eee;
}

.leaflet-popup-content-wrapper {
  min-width: 250px;
}
.leaflet-popup-content-wrapper img {
  max-width: 100%;
}

.leaflet-popup-content a {
  font-size: 1.5em;
}

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