:root {
  --font-family: system-ui, sans-serif;
  --btn-font-family: system-ui, sans-serif;
  --btn-border-radius: 5px;
  --btn-bg-color: black;
  --btn-font-color: white;
  --btn-border: 2px solid black;
  --web-container: 1410px;
  --web-width: 90%;
  --font-size-xl: 56px;
  --font-size-lg: 36px;
  --font-size-md: 27px;
  --font-size-sm: 17px;
  --font-size-xs: 15px;
  --font-size-btn: 14px;
  --font-size-xxs: 12px;
  --color-primary: black;
  --color-secondary: black;
  --color-tertiary: black;
  --color-quaternary: black;
  --color-black: #000;
  --color-gray: rgba(0, 0, 0, 0.05);
  --anti-flash-white: #f2f2f2;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  color: inherit;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  line-height: 1.5em;
  color: black;
}

.body {
  display: grid;
  min-height: 100vh;
  grid-template-rows: 1fr max-content;
}

img,
object,
embed {
  max-width: 100%;
}

video,
img {
  vertical-align: middle;
}

img {
  height: auto;
  border: none;
}

input,
textarea,
select {
  outline-style: none;
  resize: none;
}

a {
  text-decoration: none;
}

a:hover,
label:hover,
button:hover {
  cursor: pointer;
}

/* helper classes */
/* helper classes */
/* helper classes */

.container {
  margin: 0 auto;
  max-width: 1170px;
}

.btn {
  overflow: hidden;
  position: relative;
  padding: 10px 30px;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.4s;
  background-color: var(--btn-bg-color);
  color: var(--btn-font-color);
  border: var(--btn-border);
  border-radius: var(--btn-border-radius);
  font-size: var(--font-size-btn);
  font-family: var(--btn-font-family);
  font-weight: 600;
}

.btn:not([disabled]):hover {
  background: white;
  color: var(--color-black);
}

.btn[disabled] {
  filter: opacity(0.6);
  cursor: not-allowed;
}

span.ripple {
  position: absolute;
  border-radius: 40%;
  transform: scale(0);
  animation: ripple 0.45s linear;
  background-color: rgba(255, 255, 255, 0.9);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.article .container {
  margin: 50px auto;
  max-width: 700px;
  width: var(--web-width);
}
.article h1,
.contact .article h1 {
  margin-bottom: 0.5em;
}

.article p {
  margin-bottom: 1em;
}

.article p:empty {
  display: none;
  visibility: hidden;
}

/* preloader */
/* preloader */
/* preloader */
#loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: white;
}

.load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.load hr {
  animation: spin 2s ease infinite;
  border: 0 none;
  border-radius: 50%;
  height: 20px;
  left: 25%;
  position: absolute;
  top: 25%;
  width: 20px;
  background-color: var(--color-primary);
}

.load hr:first-child {
  animation-delay: -1.5s;
}

.load hr:nth-child(2) {
  animation-delay: -1s;
}

.load hr:nth-child(3) {
  animation-delay: -0.5s;
}

.load hr:nth-child(even) {
  background-color: var(--color-secondary);
}

@keyframes spin {
  0%,
  100% {
    transform: translate(0);
  }
  25% {
    transform: translate(160%);
  }
  50% {
    transform: translate(160%, 160%);
  }
  75% {
    transform: translate(0, 160%);
  }
}

/* header */
/* header */
/* header */

header {
  background: white;
}

.header .user-nav,
.header-wrap {
  max-width: var(--web-container);
  margin: 0 auto;
}

.header .user-nav {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: flex-end;
}

.header .user-nav .shop-nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 15px;
}

.header .user-nav .shop-nav li {
  display: flex;
  align-items: center;
}

.header .user-nav .shop-nav li i {
  font-size: var(--font-size-btn);
}

.header .user-nav .shop-nav li a {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s linear;
  font-size: var(--font-size-xxs);
  color: var(--color-tertiary);
}

.header .search {
  display: flex;
  height: 37px;
  width: 337px;
}

.header-wrap {
  padding: 20px 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.header .search input {
  display: block;
  width: 90%;
  border: 1px solid var(--color-tertiary);
  border-right: 0;
  padding: 10px 15px;
  align-items: center;
}

.header .search button {
  width: 10%;
  border: 1px solid var(--color-tertiary);
  border-left: 0;
  background-color: transparent;
  padding: 5px;
  align-items: center;
}

.nav-wrap {
  gap: 10px;
  display: flex;
}

.nav-wrap li {
  justify-content: flex-end;
  text-align: right;
}

.nav-container {
  position: relative;
}

header .header-wrap {
  display: flex;
  overflow: hidden;
  margin: 0 auto;
  width: var(--web-width);
  max-width: var(--web-container);
  padding: 10px 0;
}

.header .top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header .user-nav .shop-nav {
  display: flex;
  padding: 15px 0;
}

.header .user-nav-wrap {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.header .user-nav-wrap:has(.shop-nav) {
  background-color: var(--color-gray);
}

.header .user-nav-wrap .user-nav .shop-nav li i {
  padding-right: 5px;
}

.header .user-nav-wrap .user-nav .shop-nav li span {
  background: none;
}

@media (max-width: 576px) {
  .header .user-nav .shop-nav {
    padding: 15px 0;
  }

  .header .user-nav-wrap .user-nav .shop-nav {
    display: flex;
    justify-content: space-around;
  }

  .header .user-nav-wrap .user-nav .shop-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header .user-nav-wrap .user-nav .shop-nav li i {
    font-size: 20px;
    text-align: center;
  }

  .btn {
    padding: 10px;
  }
}

.desc-content {
  max-width: 700px;
  margin: 0 auto 70px auto;
}

section .type,
.sec11 .type {
  text-align: center;
  margin: 0 auto;
}
section .type p,
.sec11 .type p {
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 1px solid;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.4px;
  margin-bottom: 0.5em;
}

.header .container {
  padding: 20px 0;
}

.header .logo {
  display: block;
  z-index: 101;
}

.header .user-nav .top-bar {
  align-items: center;
  color: var(--anti-flash-white);
  padding: 0 5px;
}

.header .user-nav:has(.shop-nav) .top-bar {
  color: inherit;
  padding: 0 5px 0 20px;
}

.header label {
  width: 40px;
  height: 30px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.header .lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: var(--font-size-xxs);
  font-family: var(--font-family);
}

.header .nav-container span {
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: var(--color-primary);
  transition: all 0.2s ease-in-out;
}

.header .nav-container span:nth-child(1) {
  width: 34px;
}
.header .nav-container span:nth-child(3) {
  width: 24px;
}

.header label:hover span {
  width: 100%;
}

.header label {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
}

.header input {
  display: none;
}

.header input:checked ~ label span:nth-child(1) {
  width: 100%;
  transform: translateY(12.5px) rotate(45deg);
}

.header input:checked ~ label span:nth-child(2) {
  width: 0;
}

.header input:checked ~ label span:nth-child(3) {
  width: 100%;
  transform: translateY(-12.5px) rotate(-45deg);
}

.header .nav-wrap ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}

.header .nav-wrap li {
  padding: 5px;
}

.header .nav-wrap li a {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s linear;
  font-size: var(--font-size-xs);
  color: var(--color-secondary);
}

.header .nav-wrap li a:hover,
.header .nav-wrap li a.active {
  color: var(--color-primary);
}

/* slider */
/* slider */
/* slider */

.slider .pagination span {
  display: block;
  width: 30px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 1000px;
}

.slider .pagination span:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 1);
}

.slider .pagination span.active {
  background-color: var(--color-primary);
}

/* map00 map01 */
/* map00 map01 */
/* map00 map01 */

.map00 {
  background: linear-gradient(
    -90deg,
    #fff 50%,
    var(--color-secondary) 50%,
    var(--color-primary) 88%
  );
}

.map01 {
  background: linear-gradient(
    90deg,
    #fff 50%,
    var(--color-secondary) 50%,
    var(--color-primary) 88%
  );
}

.map00 .container,
.map01 .container {
  margin-top: 200px;
  margin-bottom: 200px;
  display: grid;
  height: 375px;
  grid-template-columns: repeat(2, 1fr);
}

.map00 .container > div,
.map01 .container > div {
  grid-row: 1 / span 1;
}

.map00 .title,
.map01 .title {
  margin-bottom: 1em;
  color: var(--color-tertiary);
  font-size: var(--font-size-lg);
}

.map00 .subtitle,
.map01 .subtitle {
  margin-bottom: 1em;
  font-weight: 600;
  color: var(--color-primary);
}

.map00 #map,
.map01 #map {
  margin-top: -70px;
  width: min-content;
}

.map00 #map {
  margin-right: auto;
}

.map01 #map {
  margin-left: auto;
}

.map00 iframe,
.map01 iframe {
  width: 526px;
  height: 515px;
}

.map00 a,
.map01 a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.map00 .container > div:first-child {
  grid-column: 2 / span 1;
}

.map00 hr,
.map01 hr {
  margin: 15px 0 10px 0;
  max-width: 75px;
  border: none;
  border-top: 1px solid black;
}

/* footer */
/* footer */
/* footer */

.footer {
  margin-top: 80px;
  background: linear-gradient(
    45deg,
    var(--color-secondary) 46%,
    var(--color-primary) 68%
  );
  color: white;
  padding: 45px 0 15px 0;
}

.footer .container {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
}

.footer .container:first-child a {
  text-decoration: underline;
}

.footer a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.footer .title {
  margin-bottom: 1em;
}

.footer .copyright {
  padding-top: 30px;
  grid-column: 1 / -1;
}

.footer .text,
.footer .copyright {
  font-weight: 300;
  font-size: var(--font-size-xs);
}

.container .copyright {
  padding: 20px 0 40px 0;
  text-align: center;
  font-family: var(--font-family);
  font-size: 14px;
  width: 90%;
  margin: 0 auto;
}
.container .copyright button {
  border: none;
  background: none;
  font-family: var(--font-family);
  font-size: 14px;
}

/* footer section */

.footer-01 {
  background: rgba(0, 0, 0, 0.8);
  padding: 70px 0 0 0;
  color: white;
}
.footer-01 .decor {
  height: 100%;
  padding: 70px 0 0 0;
  margin-top: -70px;
}
.footer-01 .container {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3.2%;
  max-width: var(--web-container);
  width: var(--web-width);
}
.footer-01 .container .box {
  padding: 0;
  color: inherit;
  width: 100%;
  margin: 0 auto;
}
.footer-01 .container .box a {
  color: inherit;
  text-decoration: none;
}
.footer-01 .container .box a:hover {
  text-decoration: underline;
}
.footer-01 .container .box h2 {
  text-align: left;
  font-weight: 600;
  font-size: var(--font-size-md);
  margin-bottom: 1em;
}
.footer-01 .container .box img {
  width: 260px;
  margin: 0 auto;
}
.footer-01 .container .box .text {
  text-align: left;
  margin-bottom: 2em;
}
.footer-01 .container .box .text ul {
  list-style: disc;
  margin-left: 1em;
}
.footer-01 .social {
  padding: 40px 0;
  font-size: 30px;
  max-width: var(--web-container);
  margin: 0 auto;
  border-top: 1px solid white;
  width: 90%;
}
.footer-01 .social ul {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  list-style: none;
}
.footer-01 .note {
  background: black;
  padding: 20px 0 40px 0;
}
.footer-01 .note .container {
  display: block;
  text-align: right;
  border: none;
  font-size: 14px;
}
.footer-01 .note .container #manage_cookies {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
}
@media (min-width: 992px) {
  .footer-01 .container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .footer-01 .container .box .text {
    margin-bottom: 2em;
  }
}

/* end footer section */

.breadcrumbs {
  margin: 35px 0;
  font-size: var(--font-size-xs);
  background: transparent;
  padding: 30px 0;
  color: black;
}

.breadcrumbs a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.banner .container {
  height: 90px;
}

.site-error {
  margin: 50px 0;
}

.site-error p {
  text-align: center;
  font-size: var(--font-size-md);
}

.site-error p:first-child {
  line-height: 1.5em;
  font-size: var(--font-size-xl);
  font-weight: 700;
  background: #121fcf;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-error .btn {
  margin-top: 30px;
}

.contact {
  margin: 50px 0;
}

.contact .container {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact form {
  width: 100%;
  gap: 20px;
  margin: auto;
  margin-top: 30px;
  max-width: 700px;
  padding: 40px 50px;
  background: rgba(0, 0, 0, 0.02);
}

.contact input,
.contact textarea {
  width: 100%;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 3px;
  border-radius: 3px;
}

.contact textarea {
  min-height: 200px;
}

.contact label {
  display: block;
  font-weight: 400;
}

.contact form > div {
  position: relative;
  margin-bottom: 30px;
}

.contact .error {
  top: 0;
  right: 0;
  color: red;
  font-size: 15px;
  position: absolute;
}

.contact .textarea {
  grid-column: 1 / span 2;
}

.contact .invalid {
  border: 1px solid red;
}

.contact .actions {
  gap: 10px;
  display: flex;
  grid-column: 1 / span 2;
  justify-content: flex-end;
}

.contact .rodo {
  gap: 10px;
  display: grid;
  font-size: 16px;
  grid-column: span 2;
  align-items: start;
  grid-template-columns: max-content 1fr;
}

.contact .rodo input {
  margin-top: 6px;
}

.contact .rodo a {
  text-decoration: underline;
}

.contact .rodo label {
  font-weight: 400;
  line-height: 1.5em;
}

.contact .rodo .error {
  left: 0;
  transform: translateY(-1.5em);
}

.sec04 .account {
  display: flex;
  justify-content: space-around;
  padding: 50px 0;
  gap: 30px;
  min-height: 80dvh;
}

.sec04 .account-card {
  display: flex;
  flex-direction: column;
  width: 250px;
  gap: 5px;
  font-size: var(--font-size-xxl);
  border-left: 1px solid var(--color-gray);
}

.sec04 .account-card a {
  padding: 10px;
  border-top-right-radius: var(--btn-border-radius);
  border-bottom-right-radius: var(--btn-border-radius);
  border-bottom: 1px solid var(--color-gray);
}

.sec04 .account-card a:hover {
  background: var(--color-gray);
  border-bottom: 1px solid transparent;
}

.sec04 .account-card a.active {
  background: var(--color-gray);
  border-bottom: 1px solid transparent;
}

.sec04 .profile-form-row input:focus {
  border-color: #333;
  outline: none;
}

.sec04 .profile-address-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: #fff;
  transition: box-shadow 0.3s;
}

.sec04 .profile-address-row:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sec04 .address-info p {
  margin: 0 0 5px 0;
  color: #333;
}

.sec04 .address-info p:last-child {
  margin-bottom: 0;
}

.sec04 .address-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sec04 .badge-default {
  background-color: #eee;
  color: #666;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.sec04 .btn-link {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
}

.sec04 .btn-link:hover {
  text-decoration: underline;
}

.sec04 .btn-delete {
  color: #dc3545;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.sec04 .btn-delete:hover {
  color: #a71d2a;
}

.sec04 .profile-form-row label {
  display: block;
  margin-bottom: 5px;
  color: #666;
  font-weight: 600;
}

.sec04 .profile-form-row input[type="text"],
.sec04 .profile-form-row input[type="email"],
.sec04 .profile-form-row input[type="tel"],
.sec04 .profile-form-row input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  transition: border-color 0.3s;
}

.sec04 .profile-form-row .password-requirements {
  margin-top: 5px;
  margin-bottom: 15px;
  color: #6c757d;
  font-size: 0.85rem;
}

.sec04 .profile-form-row .password-requirements ul {
  padding-left: 20px;
  margin: 0;
}

.sec04 .profile-form-row .password-requirements li {
  margin-bottom: 2px;
}

.sec04 .profile-form-row input:focus {
  border-color: #333;
  outline: none;
}

.sec04 .profile-set-img input[type="file"] {
  padding: 10px 0;
  width: 100%;
}

.sec04 .profile-form {
  display: flex;
  flex-direction: column;
  padding: 50px 50px;
  min-width: 500px;
  border-radius: 5px;
  gap: 20px;
}

.sec04 .profile-form-header {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.sec04 .profile-form-header span {
  font-size: var(--font-size-md);
  font-weight: 500;
}

.sec04 .profile-form-body form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec04 .profile-form-body .btn {
  width: 200px;
  margin: 30px auto 0 auto;
}

.sec04 .profile-form-row {
  margin-bottom: 15px;
}

.sec04 .profile-form-row input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  transition: border-color 0.3s;
}

.sec04 .profile-form-row input:focus {
  border-color: #333;
  outline: none;
}

.sec04 .profile-form-row input {
  width: 100%;
  font-size: var(--font-size-sm);
  padding: 10px 5px;
}

.sec04 .edit-account .profile-form-row {
  display: grid;
  grid-template-columns: 300px 50px;
  grid-template-rows: auto;
  grid-template-areas:
    "label label"
    "input i"
    "error error";
  max-width: 380px;
}
.sec04 .edit-account .profile-form-row label {
  grid-area: label;
  width: 100%;
  cursor: pointer;
}
.sec04 .edit-account .profile-form-row input {
  border: transparent;
  grid-area: input;
  border-radius: 5px;
  background-color: var(--color-gray);
  cursor: pointer;
  border: 1px solid var(--color-secondary);
}
.sec04 .edit-account .profile-form-row.editable i {
  font-size: 20px;
  grid-area: i;
  padding-top: 5px;
  cursor: pointer;
}
.sec04 .edit-account .editable-input[readonly] {
  border: transparent;
  background-color: transparent;
}

.sec04 .edit-account .formError {
  grid-area: error;
  width: 400px;
}
.sec04 .edit-account .editable-input {
  padding: 5px;
  font-size: 22px;
}
.sec04 .edit-account .editable-input.edit {
  cursor: text;
}

.sec04 .profile-view,
.sec04 .profile-form {
  padding: 20px;
}
.sec04 .profile-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
}
.sec04 .profile-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

@media (max-width: 768px) {
  .sec04 .profile-header {
    flex-direction: column;
  }

  .sec04 .profile-header:has(a) {
    flex-direction: row;
    align-items: center;
  }
}

.sec04 .profile-img-section {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.sec04 .profile-img-section img {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.sec04 .profile-placeholder {
  width: 150px;
  height: 150px;
  background: #f4f4f4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.sec04 .profile-info-list {
  font-size: 1.1em;
}
.sec04 .info-row {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.sec04 .info-row strong {
  color: #666;
  display: inline-block;
  width: 150px;
  font-weight: 600;
}
.sec04 .info-row span {
  color: #222;
  font-weight: 500;
}
.sec04 .profile-set-img .profile-form-row {
  margin-top: 15px;
}
.sec04 .profile-set-img .profile-form-row input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.sec04 .profile-body .profile-form-row {
  column-gap: 10px;
}

.sec04 .profile-body .profile-form-row.confirm-delete {
  display: flex;
  align-items: baseline;
}

.sec04 .profile-body .profile-form-row.confirm-delete label {
  user-select: none;
}

.sec04 .profile-body .profile-form-row.confirm-delete input {
  width: auto;
}

.sec04 .order-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.sec04 .order-table th {
  background-color: #f8f9fa;
  color: #333;
  font-weight: 600;
  text-align: left;
  padding: 12px 15px;
  border-bottom: 2px solid #eee;
}

.sec04 .order-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  color: #555;
  vertical-align: middle;
}

.sec04 .order-table tbody tr:hover {
  background-color: #fcfcfc;
}

.sec04 .order-table .value {
  font-weight: 600;
  color: #333;
}

.sec04 .order-table .details a {
  color: #007bff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.sec04 .order-table .details a:hover {
  background-color: #f0f7ff;
}

.sec04 .no-orders {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.sec04 .no-orders i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ddd;
}

.sec04 .no-orders p {
  margin: 0;
  font-size: 1.1rem;
}

@media only screen and (max-width: 1170px) {
  .sec04 .account {
    padding: 50px 30px;
  }
  .sec04 .account-cells {
    width: 100%;
  }
  .sec04 .account-info {
    flex-direction: column;
  }
  .footer-01 .note .container {
    text-align: left;
  }
  .sec04 .order-table td.address {
    max-width: 200px;
  }
  .sec04 .order-table td.email {
    max-width: 200px;
  }
}

@media only screen and (max-width: 992px) {
  .sec04 .container.account {
    padding-left: 5px;
    padding-right: 5px;
  }
  .sec04 .order-table {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .sec04 .account {
    flex-direction: column;
  }
  .sec04 .account-card {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .sec04 .order-table {
    display: block;
    padding: 0;
    width: 100%;
  }

  .sec04 .order-table thead {
    display: none;
  }

  .sec04 .order-table tbody {
    display: block;
    width: 100%;
  }

  .sec04 .order-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "id date"
      "value value"
      "address address"
      "info info";
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
  }

  .sec04 .order-table td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: none;
    padding: 5px 0;
  }

  .sec04 .order-table td:before {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    content: attr(data-label);
    margin-bottom: 4px;
  }

  .sec04 .order-table td.details:before {
    display: none;
  }

  .sec04 .id {
    grid-area: id;
  }

  .sec04 .value {
    grid-area: value;
    font-size: 1.1rem;
  }

  .sec04 .address {
    grid-area: address;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .sec04 .details {
    grid-area: info;
    margin-top: 10px;
    width: 100%;
  }

  .sec04 .order-table td.details a {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: var(--color-gray, #f8f9fa);
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
  }
}

@media only screen and (max-width: 576px) {
  .sec04 .account-card {
    flex-direction: column;
    padding-top: 30px;
  }
  .sec04 .account-profile {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }
  .sec04 .account-profile img {
    max-width: 50px;
    width: 100%;
    height: 50px;
  }
  .sec04 .account-settings {
    width: 100%;
    margin: 0;
    border-left: none;
    border-top: 1px solid var(--color-gray);
  }
  .sec04 .account-info .account-cell {
    min-width: 100%;
  }
  .sec04 .profile-form {
    min-width: auto;
    width: 100%;
    padding: 20px 10px;
  }
  .sec04 .edit-account .profile-form-row {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr 30px;
    width: 100%;
    max-width: 100%;
  }
  .sec04 .edit-account .formError {
    width: 100%;
  }
  .sec04 .order-table td {
    padding: 5px 10px;
  }
  .sec04 .order-table td.details {
    margin: 10px 10px 0 10px;
    padding: 5px 20px;
  }
  .sec04 .profile-address-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .sec04 .address-controls {
    width: 100%;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 480px) {
  .sec04 .profile-form-header.w-30 {
    max-width: 30%;
    padding: 0 0 0 10px;
  }
  .sec04 .profile-img-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sec04 .info-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .sec04 .info-row strong {
    margin-bottom: 5px;
    width: 100%;
  }
  .sec04 .order-table tr {
    grid-template-columns: 1fr;
    grid-template-areas:
      "id"
      "value"
      "date"
      "phone"
      "email"
      "address"
      "info";
    padding: 20px 0;
  }
  .sec04 .order-table td {
    padding: 8px 10px;
  }
}

.sec03 {
  margin-bottom: 100px;
}

.sec03 .container {
  column-gap: 50px;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.sec03 .container.formRight,
.sec03 .container.formLeft,
.sec03 .container.formBottom,
.sec03 .container.noList {
  grid-template-columns: 1fr;
}

.sec03 .list {
  grid-column: 1 / span 1;
  margin-top: 45px;
}

.sec03 .list .box0300 {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sec03 .list .box0300:last-child {
  border: none;
}
.sec03 .list .inner {
  background: rgba(0, 0, 0, 0.02);
  padding: 20px;
}

.sec03 .list > p {
  color: var(--color-tertiary);
  margin-bottom: 0.5em;
}

.sec03 .tags {
  margin-top: 50px;
}
.sec03 .tags a {
  text-decoration: underline;
}
.sec03 .tags a:hover {
  color: var(--color-tertiary);
}

.box0300 {
  gap: 10px;
  display: grid;
  grid-template-columns: 80px 1fr;
}

.box0300 .title {
  color: inherit;
  font-weight: 600;
  font-size: var(--font-size-sm);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.box0300.active .title {
  color: var(--color-primary);
}

.box0300 .text {
  font-size: var(--font-size-xs);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  .category hr {
    height: 1px;
    border: none;
    width: 140px;
    margin: 40px auto;
    background-color: var(--color-primary);
  }
  line-height: 1.3em;
}
.box0300 .text p strong {
  font-weight: 400;
}

.box0300 picture {
  height: 100px;
}

.box0300 img {
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  margin-top: 7px;
  max-width: 100%;
}

.sec10 {
  margin-bottom: 70px;
}
.sec10 .container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.sec10 .box1000 {
  background: white;
  padding: 40px;
}

.sec10 .box1000 h3 {
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: 1.2em;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
  height: 68px;
  text-align: center;
}
.sec10 .box1000 .image {
  overflow: hidden;
  text-align: center;
}

.sec10 .box1000 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec10 .box1000 .subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin-top: 1em;
}
.sec10 .box1000 .subtitle strong {
  font-weight: 400;
}

.sec10.tpl-02 .container {
  max-width: var(--web-container);
  grid-template-columns: 1fr;
}
.sec10.tpl-02 .glide {
  overflow: hidden;
}

.sec10.tpl-02 button.glide__arrow {
  background-color: rgba(0, 0, 0, 0.3);
}

.sec10.tpl-02 .box1000 {
  padding: 0;
}

.sec10.tpl-03 .container {
  max-width: var(--web-container);
  width: var(--web-width);
  grid-template-columns: 1fr;
}

.sec10.tpl-03 .article h1,
.sec10.tpl-03 .contact .article h1 {
  margin-bottom: 2em;
  text-align: center;
}

.sec10.tpl-03 .article-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  border-radius: 15px 15px 0 0;
}
.sec10.tpl-03 .article-top p {
  margin-bottom: 1em;
}
.sec10.tpl-03 .article-top h1 {
  text-align: left;
  margin-bottom: 2em;
  line-height: 1em;
}
.sec10.tpl-03 .article-top .abs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
}
.sec10 .image-frame .image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}
.sec10 .image-frame .image img {
  object-fit: contain;
}
.sec10.tpl-03 .article-top .image-frame .image {
  height: 100%;
  aspect-ratio: inherit;
}
.sec10.tpl-03 .article-top .image-frame .image img {
  height: 100%;
  object-fit: cover;
}

.sec10.tpl-03 .desc {
  display: flex;
  gap: 8px;
}
.sec10.tpl-03 .article-top img {
  border-radius: 0 15px 0 0;
}

.sec10.tpl-03 .box1000 h3 {
  text-align: left;
  height: unset;
}

.sec10.tpl-03 .search {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1em 0;
}

.sec10.tpl-03 .search .search_phrase {
  text-align: left;
}

.sec10.tpl-03 .search .search_tags {
  text-align: right;
}
.sec10.tpl-03 .search .search_phrase input {
  width: 100%;
  max-width: 300px;
  height: 40px;
}

.sec10.tpl-03 .search .search_phrase input,
.sec10.tpl-03 .search .search_tags .dropdown {
  border: 1px solid #ccc;
  background: white;
  padding: 0.5em 1.5em;
  border-radius: 5px;
}

.sec10.tpl-03 .box1000 {
  padding: 0;
}

.sec10.tpl-03 .rest_of_them {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
}
.sec10.tpl-03 .rest_of_them div img {
  border-radius: 10px;
}

.sec10.tpl-03 .dropdown {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.sec10.tpl-03 .dropdown-btn {
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  min-width: 160px;
  text-align: left;
}

.sec10.tpl-03 .dropdown-btn:after {
  content: "▼";
  float: right;
  margin-left: 6px;
}

.sec10.tpl-03 .dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-top: 4px;
  z-index: 1000;
  top: 100%;
}

.sec10.tpl-03 .dropdown-content button {
  display: block;
  padding: 10px 14px;
  color: #333;
  border-bottom: none;
  border: 1px solid #ccc;
  border-bottom: none;
  background: #fff;
  width: 100%;
}
.sec10.tpl-03 .dropdown-content button:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom: none;
}
.sec10.tpl-03 .dropdown-content button:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom: 1px solid #ccc;
}

.sec10.tpl-03 .dropdown-content button:hover {
  background: #f0f0f0;
}

.sec10.tpl-03 .dropdown.active .dropdown-content {
  display: block;
}

.sec14 {
  margin-bottom: 4em;
}

.sec14 .container {
  display: grid;
  gap: 3.2em;
}

.sec14 h1 {
  margin-bottom: 1.8em;
  text-align: center;
}

.sec14 .box1000 .title {
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: 1.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 1.2em;
  color: var(--color-secondary);
  text-decoration: underline;
}
.sec14 .box1000 .title:hover {
  color: var(--color-tertiary);
}

.sec14 .box1000 .subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin-top: 1em;
}

.social-media {
  display: flex;
  gap: 5px;
}

.social-media a {
  text-decoration: none;
  width: 30px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-tertiary);
  font-size: var(--font-size-xs);
  border-radius: 50%;
  border: 1px solid currentColor;
}

.social-media a:hover {
  color: var(--color-secondary);
}

.category.article .container {
  margin-bottom: 0;
}

.category.article h1 {
  text-align: center;
  margin-bottom: 1em;
}
.category.article p {
  text-align: center;
}
.category hr {
  height: 1px;
  border: none;
  width: 140px;
  margin: 40px auto;
  background-color: var(--color-primary);
}

.sec03 .formBottom.formBottom {
  place-content: center;
  grid-template-columns: min(100%, 700px);
}

.sec11 {
  padding-block: 50px;
}

.sec11 .container {
  position: relative;
}

.sec11 .carousel {
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 3.33%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.sec11 .container:hover .prev,
.sec11 .container:hover .next {
  opacity: 1;
}

.sec11 .prev,
.sec11 .next {
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  position: absolute;
  z-index: 10;
  padding: 10px 15px;
  border: none;
  font-size: 24px;
  height: max-content;
  border-radius: 50%;
  line-height: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.sec11 .prev {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}

.sec11 .next {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}

.box1100 {
  flex: 0 0 30%;
}

.box1100 {
  scroll-snap-align: center;
  text-align: center;
  padding-block: 20px;
  cursor: grab;
  user-select: none;
}

.box1100 .image {
  min-height: 150px;
  width: 100%;
  max-width: 150px;
  margin: auto;
  margin-bottom: 15px;
}

.box1100 img {
  aspect-ratio: 1 /1;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.box1100 .text {
  position: relative;
  font-size: var(--font-size-sm);
}

.box1100 .title {
  margin-top: 10px;
  font-weight: 700;
  font-size: var(--font-size-xs);
}

.box1101 .title {
  margin: 0 auto;
  text-align: center;
  width: 700px;
  max-width: 95%;
  font-weight: 600;
  line-height: 1.1em;
  font-size: var(--font-size-lg);
  margin-bottom: 1em;
}

.sec12 {
  margin-bottom: 110px;
}

.sec12 h1 {
  font-size: var(--font-size-lg);
}

.sec12 .container {
  max-width: 700px;
}

.box1200 {
  margin-top: 70px;
}

.box1200 .title {
  font-weight: 600;
  margin-bottom: 0.5em;
  font-size: var(--font-size-sm);
}

.box1200 .text {
  margin-bottom: 20px;
}

.box1200 table {
  width: 100%;
  margin: auto;
  border-collapse: collapse;
  border: 1px solid var(--color-tertiary);
}

.box1200 table th,
.box1200 table td {
  padding: 5px 15px;
  border: 1px solid var(--color-tertiary);
}

/* ****LANDING PAGE**** */

.sec20 h1 {
  text-align: center;
  padding: 2em 0;
}

.sec20 .desc {
  display: grid;
  text-align: justify;
}

.sec20 .desc p {
  justify-self: center;
  max-width: 750px;
  width: 90%;
}

.sec20 .desc p:last-child {
  padding: 0 0 3em 0;
}

.sec20 .box2000:not(.formLeft, .formRight, .formBottom) {
  display: flex;
}

.sec20 .box2000 h2 {
  margin-bottom: 2em;
}

.sec20 .box2000.unpair:not(.formLeft, .formRight, .formBottom) > .lp_cont {
  flex-direction: row-reverse;
}

.sec20 .box2000 .lp_cont {
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.sec20 .box2000 .lp_cont .lp_left,
.sec20 .box2000 .lp_cont .lp_right {
  flex: 1;
}

.sec20 .box2000 .lp_cont .lp_left {
  display: flex;
  justify-content: center;
}

.sec20 .box2000.single h2 {
  text-align: center;
}

.sec20 .box2000 .lp_cont .lp_left .inner {
  max-width: 705px;
  padding: 3em;
}

.sec20
  .box2000.single:not(.formLeft, .formRight, .formBottom)
  .lp_cont
  .lp_left
  .inner {
  padding: 3em 0;
  text-align: justify;
}

.sec20 .box2000 .lp_cont .articleForm form {
  margin-top: 0px;
}

.sec20 .box2000 .lp_cont .articleForm .formRow.label {
  text-align: center;
}

.sec20 .box2000 .lp_cont .articleForm {
  max-width: 705px;
  padding: 3em;
}

.sec20 .box2000 .lp_cont .articleForm h4 {
  text-align: center;
}

.sec20 .box2000 .lp_cont .lp_right img {
  width: 100%;
}

.sec20 .box2000 .articleForm form {
  background: none;
  padding: 40px 0;
  margin-top: 61px;
  position: sticky;
  top: 0;
}

/* Left/Right wyłączony na LP */

.sec20 .box2000.formBottom .lp_cont,
.sec20 .box2000.formRight .lp_cont,
.sec20 .box2000.formLeft .lp_cont {
  display: flex;
  flex-direction: column;
}

/* Zastąpić aby działał left/right 

.sec20 .box2000.formBottom .lp_cont {
    display: flex;
    flex-direction: column;
}

.sec20 .box2000.formLeft .lp_cont{
    flex-direction: row-reverse;
}

.sec20 .box2000:is(.formLeft, .formRight) > .lp_cont {
    padding: 3em 0;
    width: 100%;
} 

@media (min-width: 1024px) {

    .sec20 .box2000:is(.formRight) > .lp_cont .articleForm{
        padding-right: 5%;
    }
    .sec20 .box2000:is(.formLeft) > .lp_cont .articleForm{
        padding-left: 5%;
    }
*/

.container .meta {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.container .meta .author,
.container .meta .date {
  white-space: nowrap;
}

.container .meta .date {
  font-style: italic;
}

.container .meta .separator {
  color: #aaa;
  font-weight: 400;
}

.announcements-container,
.announcement {
  max-width: var(--web-container);
  margin: 50px auto;
}

.announcement-article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.announcement-separator {
  display: flex;
  align-items: center;
}

.announcement-separator span {
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1rem;
  white-space: nowrap;
  color: #444;
}

.announcement-separator::after {
  content: "";
  flex-grow: 1;
  height: 4px;
  background-color: #444;
  border-radius: 2px;
}

.announcement-article {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
  padding: 24px;
  transition: 0.2s ease;
  font-weight: 600;
  max-width: 400px;
}

.announcement-list {
  background-color: rgba(0, 0, 0, 0.04);
  margin: 20px 0;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
}

.announcement-wrapper {
  padding-bottom: 50px;
  display: flex;
  justify-self: space-between;
  gap: 50px;
  margin-top: 30px;
}

.announcement-wrapper .announcement-card,
.announcement-wrapper .announcement-form {
  width: 50%;
}

.announcement-wrapper .articleForm form {
  margin-top: 0;
}

.announcement-wrapper h4 {
  display: none;
}

.announcements-wrapper {
  display: grid;
  gap: 24px;
  margin-top: 30px;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
}

.announcement-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
  padding: 24px;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  height: 100%;
}

.announcements-wrapper .announcement-card:hover,
.announcement-article:hover {
  background-color: var(--color-gray);
  transition: 0.3s;
}

.announcement-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.announcement-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-secondary);
  margin-bottom: 0.2em;
}

.announcement-goto {
  display: none;
  text-decoration: underline;
  font-size: 15px;
}

.announcement-row {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 8px;
  align-items: center;
  font-size: 15px;
}

.announcement .announcement-row {
  grid-template-columns: auto;
}

.announcement-label {
  font-weight: 600;
  color: #222;
}

.announcement-value {
  position: relative;
  padding-right: 70px;
  min-height: 24px;
}

.announcement-id {
  margin-top: 12px;
  font-size: 13px;
  background: var(--color-gray);
  color: #6b7280;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  width: fit-content;
  position: absolute;
  right: 12px;
  top: 0;
}

@media (min-width: 1024px) {
  .formRight,
  .formLeft {
    display: grid;
  }

  .sec03 .formRight.formRight {
    grid-template-columns: 2.5fr 2fr;
  }

  .sec03 .formLeft.formLeft {
    grid-template-columns: 2fr 2.5fr;
  }

  .sec03 .formLeft .articleForm {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
  }
}

.articleForm form {
  background: rgba(0, 0, 0, 0.02);
  padding: 40px 50px;
  margin-top: 61px;
  position: sticky;
  top: 0;
}

.articleForm .formRow:not(:first-child) {
  margin-top: 20px;
}

.articleForm .formRow.checkbox {
  margin-top: 0px;
  margin-bottom: 0.5rem;
}

.articleForm .formRow > label {
  display: block;
}

.articleForm textarea {
  min-height: 100px;
}

.articleForm button[type="submit"] {
  margin-top: 35px;
}

.articleForm .optionList div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: start;
  margin-bottom: 0.5rem;
}

.articleForm .optionList input[type="checkbox"] {
  align-self: start;
  margin-top: 6px;
}

.articleForm .optionList label {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.articleForm .actions {
  text-align: right;
}

.articleForm .checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: start;
}

.articleForm .checkbox input {
  align-self: start;
  margin-top: 6px;
}

.articleForm .formRow div {
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
  transition: border-color 0.3s;
  align-items: start;
  user-select: none;
}

.articleForm .formRow div:has(input[type="radio"]) {
  align-items: baseline;
  margin-top: 6px;
}

.articleForm .formRow.rodo-01,
.articleForm .formRow.rodo-02 {
  padding: 0 10px;
}

.articleForm .formRow input[type="checkbox"],
.articleForm .formRow input[type="radio"] {
  border: 1px solid #a4a4a4;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 0 1px var(--color-tertiary);
  border: 2px solid white;
  padding: 0;
  border-radius: 0;
}
.articleForm .formRow input[type="checkbox"]:checked,
.articleForm .formRow input[type="radio"]:checked {
  background-color: #4cbb17;
}

.articleForm .formRow input[type="radio"] {
  border-radius: 50%;
}

.articleForm .formRow a:hover {
  text-decoration: underline;
}

@media not all and (min-resolution: 0.001dpcm) {
  .articleForm input[type="checkbox"],
  .articleForm input[type="radio"] {
    margin: initial;
    width: initial !important;
    margin-top: 7px;
  }
}

@media only screen and (max-width: 1200px) {
  .sec00 .container {
    padding: 70px 0;
  }
  .box0000 {
    grid-template-columns: 1fr max-content;
  }

  .box0000:nth-child(even) {
    grid-template-columns: max-content 1fr;
  }

  .box0000 .image {
    width: auto;
  }

  .box0000 img {
    transform: translate(0);
  }

  .box0000:nth-child(even) img {
    transform: translate(0);
  }

  .box0000 .desc {
    margin: 0 15px 0 0;
  }

  .box0000:nth-child(even) .desc {
    margin: 0 0 0 15px;
  }

  .sec02 .container {
    gap: 20px;
  }

  .sec02 .desc {
    padding: 0 75px 0 0;
  }

  .sec02.invert .desc {
    padding: 0;
  }

  .contact form {
    margin-top: 0;
  }

  .breadcrumbs .container {
    margin: 0 1em;
  }

  .sec14 {
    padding: 0 3em;
  }

  .sec14 .container h1 {
    margin: 0 0 60px 0;
    line-height: 1.2em;
  }

  .sec14 .box1000 .subtitle {
    -webkit-line-clamp: 3;
  }

  .container .meta {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding-left: 1em;
  }

  .announcement-wrapper {
    margin: 0 50px;
  }

  .announcement-wrapper .announcement-card,
  .announcement-wrapper .announcement-form {
    width: 100%;
  }

  .sec10.tpl-02 .glide__arrows {
    display: none;
  }

  /* .sec20 .box2000:is(.formLeft, .formRight) .lp_cont {
        gap: 0em;
    }
    .sec20 .box2000:is(.formLeft, .formRight) .lp_cont .articleForm {
        max-width: 50%;
    } */
}

@media only screen and (max-width: 1170px) {
  .slider .container,
  .banner .container {
    margin: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .sec11 .prev,
  .sec11 .next {
    display: none;
    visibility: hidden;
  }

  .sec20 .box2000:is(.formLeft, .formRight) .lp_cont {
    flex-direction: column;
  }
}

@media only screen and (max-width: 992px) {
  .header .user-nav-wrap {
    background-color: unset;
  }
  
  .header .user-nav {
    flex-direction: column-reverse;
  }

  .header .user-nav .top-bar {
    display: flex;
    width: 100%;
    color: var(--anti-flash-white);
    background-color: rgba(0, 0, 0, 0.8);
  }

  .header .user-nav:has(.shop-nav) .top-bar {
    color: var(--anti-flash-white);
  }

  .header label {
    display: flex;
    z-index: 101;
  }

  .header .top {
    gap: 30px;
  }

  .nav-wrap {
    position: absolute;
    left: 0;
    top: 0;
  }

  .header:has(input:checked) .nav-wrap {
    width: 100vw;
    z-index: 100;
    display: block;
  }

  .header .nav-wrap {
    top: 0;
    left: 0;
    width: 100vw;
    display: none;
    z-index: -1;
    position: absolute;
  }

  .header .nav-wrap ul {
    margin: auto;
    margin-top: auto;
    align-items: center;
    flex-direction: column;
    margin-top: 115px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-width: 1px 0;
    padding: 24px 0;
    background: #fcfcfc;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .header .nav-wrap li:not(:last-child) {
    margin: 10px 0;
  }

  .header .nav-wrap li a {
    color: black;
    font-size: 22px;
  }
  .slider .container {
    height: auto;
  }
  /*
    .slide div {
        padding: 50px 70px 0 70px;
    } */

  .slide .title {
    font-size: var(--font-size-lg);
    max-width: 500px;
  }

  .box0000 {
    grid-template-columns: 60% 39%;
    gap: 1%;
    margin: auto;
    padding: 0;
  }

  .box0000:nth-child(even) {
    grid-template-columns: 39% 60%;
  }

  .box0000 .bg {
    width: auto;
    background: none;
  }

  .box0000 img,
  .box0000:nth-child(even) img {
    transform: none;
  }

  .box0000 p,
  .box0001 p {
    margin-bottom: 0.5em;
  }

  .map00,
  .map01 {
    background: none;
  }

  .map00 .container,
  .map01 .container {
    height: initial;
    display: block;
    margin-block: 100px;
  }

  .map00 .container > div:first-child,
  .map01 .container > div:first-child {
    text-align: center;
  }

  .map00 #map,
  .map01 #map {
    margin: 30px 0 0 0;
    width: 100%;
  }

  .map00 iframe,
  .map01 iframe {
    height: 350px;
    width: 100%;
  }

  .map00 hr,
  .map01 hr {
    margin: 15px auto 10px auto;
  }

  .map00 .social-media,
  .map01 .social-media {
    justify-content: center;
  }

  .box0000 .desc {
    margin: 0 !important;
  }

  .article .container {
    margin-top: 90px;
    margin-bottom: 90px;
  }

  .box0100 {
    max-width: 700px;
    margin: auto;
  }

  .box0100 .title {
    margin-bottom: 0.5em;
  }
  .sec03 .list > p {
    margin: 0;
    grid-column: 1 / -1;
  }

  .sec10 .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec20 .box2000.unpair:not(.formLeft, .formRight, .formBottom) > .lp_cont,
  .sec20 .box2000 > .lp_cont {
    flex-direction: column;
  }

  .sec20 .box2000 .lp_cont .lp_left .inner {
    padding: 3em 0;
    width: 90%;
  }

  .sec20
    .box2000:is(.formLeft, .formRight, .formBottom)
    .lp_cont
    .lp_left
    .inner {
    width: 100%;
  }

  .sec20 .box2000:is(.formLeft, .formRight) .lp_cont .articleForm {
    max-width: 90%;
  }

  .announcement-wrapper {
    flex-direction: column;
    margin: 0 20px;
    gap: 20px;
  }

  .sec10.tpl-03 .rest_of_them {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .header .user-nav .shop-nav {
    justify-content: center;
  }

  .header .search button {
    width: 8%;
  }

  .slide .text {
    font-size: var(--font-size-xs);
  }

  .article .container {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .contact form {
    grid-template-columns: 1fr;
  }

  .contact form > div,
  .contact form .rodo,
  .contact form .actions,
  .contact form .textarea {
    grid-column: span 1;
  }

  .contact form .actions {
    justify-content: space-evenly;
  }

  .footer {
    padding: 15px 0;
  }

  .footer .title {
    margin-bottom: 0.5em;
  }

  .footer .container {
    grid-template-columns: 1fr;
  }

  .footer .container + .container {
    margin-top: 50px;
  }

  .footer .copyright {
    padding: 0;
  }

  .sec01 .container {
    grid-template-columns: 1fr;
  }

  .sec03 .list {
    grid-template-columns: repeat(2, 1fr);
    grid-row: 2 / span 1;
  }

  .box0000 {
    max-width: 500px;
  }

  .box0000,
  .box0000:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .box0000:not(:last-child) {
    margin-bottom: 70px;
  }

  .box0000 .image {
    display: block;
    margin: auto;
  }

  .box0000:nth-child(even) > div:first-child {
    grid-column: 1;
  }

  .box0000 .desc {
    grid-row: 2 / span 1;
  }
  .contact .container {
    grid-template-columns: 1fr;
  }

  .sec03 .container {
    grid-template-columns: 1fr;
  }

  .sec10 .container {
    grid-template-columns: repeat(1, 1fr);
  }

  .sec10 .box1000 .image img {
    width: 100%;
  }

  .sec14 {
    padding: 0 1em;
  }
  .sec14 .container {
    gap: 2.4em;
  }
  .sec14 .container h1 {
    margin: 0 0 60px 0;
    line-height: 1.2em;
  }

  .sec00:nth-child(2n + 1) .container .box0000 .desc {
    grid-column: 1 / -1;
  }

  .articleForm button[type="submit"] {
    width: 100%;
  }

  .sec01 .category-description {
    padding: 0 20px;
  }

  .sec11 .container {
    gap: 2%;
  }

  .box1100 {
    flex: 0 0 46%;
    scroll-snap-align: start;
  }

  .sec20 .box2000 .lp_cont .articleForm {
    width: 100%;
    padding: 1em;
  }

  .sec20
    .box2000:is(.formLeft, .formRight, .formBottom)
    .lp_cont
    .lp_left
    .inner {
    width: 90%;
  }

  .container .meta {
    font-size: 12px;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding-left: 0;
  }

  .announcement-article-list {
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
  }

  .announcement-list {
    padding: 30px 20px;
  }

  .announcement-article {
    max-width: 100%;
  }

  .announcement-goto {
    display: block;
  }

  .announcements-wrapper {
    grid-template-columns: 1fr;
  }

  .announcement-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .announcement .announcement-row {
    border: none;
  }

  .announcement-label {
    margin-bottom: 4px;
  }

  .announcement-value {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .announcement-id {
    align-self: flex-start;
  }

  .sec10.tpl-02 .glide {
    overflow: hidden;
  }

  .sec10.tpl-03 .article-top {
    grid-template-columns: 1fr;
  }

  .sec10.tpl-03 .article-top h1 {
    margin-bottom: 0;
  }

  .sec10.tpl-03 .article-top img {
    border-radius: 15px;
  }

  .sec10.tpl-03 .article-top .abs {
    padding: 5%;
  }
}

@media only screen and (max-width: 576px) {
  /* .slide div {
        padding: 50px 15px 0 15px;
    } */

  .slide .text {
    padding: 20px;
  }

  .box0000 .bg {
    width: 100%;
  }

  .map00 iframe,
  .map01 iframe {
    width: 100%;
  }

  .box0000 img {
    transform: none !important;
  }

  .box0000 .bg {
    background: none;
  }

  .slider button {
    display: none;
  }

  .sec03 {
    margin-bottom: 50px;
  }

  .sec03 .list {
    grid-template-columns: 1fr;
  }

  .slide .title {
    font-size: var(--font-size-md);
  }

  .articleForm h4 {
    padding-left: 15px;
  }

  .sec11 .container {
    gap: 2%;
  }

  .box1100 {
    flex: 0 0 98%;
    scroll-snap-align: center;
  }

  .box1100 .image {
    min-height: 50vw;
    max-width: 50vw;
  }

  .sec10.tpl-03 .article-top .desc {
    font-size: var(--font-size-xs);
  }

  .sec10.tpl-03 .search {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
  }

  .sec10.tpl-03 .rest_of_them {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .box0000 {
    grid-template-columns: 58% 38%;
    gap: 4%;
    margin: auto;
    padding: 0;
  }

  .sec00:nth-child(odd) .box0000 {
    grid-template-columns: 38% 58%;
  }
}

/* #manage_cookies {
    background-color: transparent;
    border: none;
    font: inherit;
}

#manage_cookies:hover {
    text-decoration: underline;
} */
