/* GENERAL SETTINGS */

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

html {
    font-size: 100%;
}

body {
    background:
        url('../images/graphics/raster-01.png');

    background-repeat: repeat;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 1);
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    /* 16px  */
    font-style: normal;
    font-weight: 500;
    line-height: 1.25em;
    /* 20px */
    color: rgba(255, 255, 255, 1);
    height: 100vh;
/*    cursor: pointer;*/
}

.spacer-black {
    display: none;
    width: 100%;
    height: 75px;
    background-color: rgba(0, 0, 0, 1);
}

.spacer-first-transparent {
    display: block;
    width: 100%;
    height: 200px;
    background-color: rgba(255, 255, 255, 0);
}

.spacer-transparent {
    display: block;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 0);
}

.spacer-up {
    display: block;
    width: 100%;
    height: 50px;
    background:
        linear-gradient(0deg,
            rgba(105, 100, 95, 0.75)0%,

            rgba(105, 100, 95, 0)100%);
}

.spacer-down {
    display: block;
    width: 100%;
    height: 50px;
    background:
        linear-gradient(180deg,
            rgba(105, 100, 95, 0.75)0%,
            rgba(105, 100, 95, 0)100%);
}

/* NAV BAR TOP */
.navbar {
    background-color: rgba(0, 0, 0, 0.75);
    height: auto;
    position: fixed;
    top: 0px;
    z-index: 2;
    width: 100%;
    padding: 10px 12px 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#topnav {
    background-color: rgba(0, 0, 0, 0.8);
    height: auto;
    position: fixed;
    top: 0px;
    z-index: 2;
    width: 100%;
    padding: 10px 12px 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/*#topnav-one {
    height: 30px;
}*/

#topnav #left {
    text-align: center;
    float: left
}

#topnav #left a {
    color: rgba(200, 200, 200, 1);
    text-decoration: none;
}

#topnav #left h1 {
    font-size: 1em;
    /* 16px */
    padding-top: 4px;
}

#topnav #left span {
    font-size: 14px;
    cursor: pointer;
    margin-left: 30px;
    text-align: left;
}

#topnav #middle {
    text-align: center;
    padding-top: 10px;
   
}

#topnav #right a{
   text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.750rem;
    padding-right: 15px;
}
.lang-btn {
    all: unset; /* 🛡️ This resets all browser default button styles */
    /* background-color: black; */
    color: white;
    padding: 4px;
    cursor: pointer;
    font-size: 0.750rem;
    font-family: inherit;
}

.lang-btn:hover {
    background-color: #333; /* Optional: slightly lighter black on hover */
}

#topnav #right {
    text-align: right;
    padding-top: 10px;
    padding-right: 10px;
}

#topnav #right span {
    font-size: 1.25rem;
    cursor: pointer;
    margin-left: 10px;
    text-align: left;
    font-weight: bold;
}

/* SIDENAV */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 80px;
    text-align: center;
}

.sidenav a {
    padding: 8px;
    text-decoration: none;
    font-size: 20px;
    color: rgba(200, 200, 200, 1);
    display: block;
    transition: 0.3s;
    line-height: 24px;
}

.sidenav a:hover {
    color: rgba(120, 120, 120, 1);
    font-size: 22px
}

.sidenav .closebtn {
    /*  position: absolute;*/
    top: 0;
    /*  right: 25px;*/
    font-size: 14px;
    /*  margin-left: 50px;*/
}

.sidenav .closebtn:hover {
    /*  position: absolute;*/
    top: 0;
    /*  right: 25px;*/
    font-size: 14px;
    /*  margin-left: 50px;*/
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

/* CONTAINER */
.container {
    width: 100%;
    padding-top: 100px;
    height: 100%;
}

.inner-one {
    max-width: 700px;
    padding: 80px 0;
    margin: auto;
}

.inner-one img {
    padding: 0 25px;
    width: 800px;
    max-width: 100%;
}

.inner-two {
    max-width: 200px;
    margin: 40px auto 80px auto;
}

.inner-two img {
    max-width: 100%;
    transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -moz-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    -o-transform: rotate(150deg);
}

/* forest - FIELDS - SEA*/
#anchor-forest,
#anchor-fields,
#anchor-sea {
    width: 100%;
}

#forest,
#fields,
#sea {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

#forest {
    background-image: url(../images/forest-50.jpg);
}

#fields {
    background-image: url(../images/field-02-50.jpg);
}

#sea {
    background-image: url(../images/sea-site.jpg);
}

#forest-wide,
#fields-wide,
#sea-wide {
    max-width: 1280px;
    margin: auto;
    padding: 80px 40px 60px 40px;
}

#forest-one .pages-txt,
#fields-one .pages-txt,
#sea-one .pages-txt {
    max-width: 600px;
    margin: auto;
    padding: 100px 25px 0 25px;
}

#forest-one .pages-txt h1,
#fields-one .pages-txt h1,
#sea-one .pages-txt h1 {
    font-size: 2em;
    /*32px */
    margin-bottom: 20px;
    line-height: normal;
}

#forest-one .pages-txt p,
#fields-one .pages-txt p,
#sea-one .pages-txt {
    line-height: 2em;
    /* 32px */
}

#forest-two .pages-img,
#fields-two .pages-img,
#sea-two .pages-img {
    display: block;
    max-width: 600px;
    margin: auto;
}

#forest-two .pages-img img,
#fields-two .pages-img img,
#sea-two .pages-img img {
    max-width: 100%;
    border: 2px solid rgba(150, 150, 150, 1)
}


/* ABOUT */
#anchor-about {
    width: 100%;
}

#about {
    display: block;
    background-color: rgba(0, 0, 0, 0.75);
}

#about-wide {
    max-width: 1280px;
    margin: auto;
    padding: 60px 40px;
}

#about-one {
    padding-right: 40px;
}

#about-one .pages-txt h1 {
    font-size: 2em;
    /* 32px */
    margin-bottom: 20px;
    line-height: normal;
}

#about-one .pages-txt p {
    line-height: 2em;
    /* 32px */
}

#about-one .pages-txt span {
    font-style: italic;
}

#about-two p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    /* 16px */
    margin-bottom: 20px;
    line-height: normal;
    font-style: italic;
}

#about-two {
    text-align: center;
    padding-top: 80px;
}

#about-two img {
    max-width: 100%
}

/* BUY ART */

#anchor-buy {
    width: 100%;
}

#buy {
    display: block;
    background-color: rgba(0, 0, 0, 0.75);
}

#buy-wide {
    max-width: 1280px;
    margin: auto;
    padding: 60px 40px;
}

#buy-int-one {
    padding-bottom: 0;
}

.int-one .pages-img img,
.int-two .pages-img img,
.int-three .pages-img img,
.int-four .pages-img img {
    max-width: 100%
}

#buy-text {
    padding-top: 40px;
}

#buy-text .pages-txt h1 {
    font-size: 2em;
    /* 32px */
    margin-bottom: 20px;
    line-height: normal;
}

#buy-text .pages-txt p {
    line-height: 2em;
    margin-bottom: 1em;
    /* 32px */
}

#buy-int-two {
    padding-top: 40px;
    display: none
}
#buy-available {
    max-width: 800px;
    margin: 30px auto 0 auto;
}

#buy-available img {
    width: 400px;
    margin: auto;
    border: 1px solid rgba(50,50,50,1);
}

/* Only affects .section.group inside #buy-available */
#buy-available .section.group {
    display: flex;
}

/* Only affects .col inside #buy-available */
#buy-available .col {
    flex: 1;
    display: flex;
}

/* Only affects #int-one inside #buy-available */
#buy-available #int-one {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Only affects .pages-txt inside #buy-available */
#buy-available .pages-txt {
    text-align: center;
    line-height: 2rem;
    font-style: italic;

    /* Flex centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* VIDEO */
#anchor-video {
    width: 100%;
}

#video {
    display: block;
    background-color: rgba(0, 0, 0, 0.75);
}

#video-wide {
    max-width: 1280px;
    margin: auto;
    padding: 60px 40px;
}

#video-one,
#video-two,
#video-three{
    display: block;
}


#video-one .pages-txt h1 {
    font-size: 2em;
    /* 32px */
    margin-bottom: 20px;
    line-height: normal;
}

#video-two{
    text-align: center;
}

/* Container to position overlay */
.video-container {
  position: relative;
  display: inline-block;
  max-width: 1024px;
  width: 100%;
}

/* Proper scaling for the video */
#scrollVideo {
  width: 100%;
  height: auto; /* maintain aspect ratio */
  aspect-ratio: 16 / 9; /* fallback when metadata not loaded */
  display: block;
  border: 1px solid #757575;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Overlay covers the video */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.5s ease; /* smooth fade */
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-overlay.reappear {
  opacity: 1;
  pointer-events: auto;
}

/* White circular play icon */
.play-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(190, 190, 190, 0.85);
  position: relative;
}

/* Centered play triangle */
.play-button::before {
  content: '';
  position: absolute;
  left: 26px;  /* moved proportionally from 34px */
  top: 18px;   /* moved proportionally from 24px */
  border-style: solid;
  border-width: 16px 0 16px 24px; /* scaled down from 20/30 */
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.25);
}

/* --- Rewind button --- */
.rewind-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none; /* prevents clicks when hidden */
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.3s ease;
}

.rewind-btn.show {
  opacity: 1;
  pointer-events: auto; /* clickable only when visible */
}

.rewind-btn:hover {
  background: rgba(0,0,0,0.6);
  transform: scale(1.1);
}

#video-three{
    text-align: center;
    margin-top: 20px;
}

#video-three p {
  font-size: 0.75em;
  display: inline-block;
  margin: 0 15px;
  cursor: pointer;
  color: rgba(255,255,255,0.5); /* inactive color */
  transition: color 0.3s ease;
  user-select: none;
  background-color: rgba(0,0,0,1);
}

#video-three p.active {
  color: rgba(255,255,255,1); /* active video is white */
  background-color: rgba(0,0,0,1);
}

/* MAGAZINE */
#anchor-magazine {
    width: 100%;
}

#magazine-wide {
    max-width: 1280px;
    margin: auto;
    padding: 60px 40px;
}

#magazine {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-image: url(../images/magazine-back.jpg);
}

#magazine-one,
#magazine-three {
    display: block
}

#magazine-one .pages-txt {
    max-width: 600px;
    margin: auto;
    padding: 25px 0;
}

#magazine-three .pages-txt {
    max-width: 600px;
    margin: auto;
    padding: 25px 0 20px 25px;
}

#magazine-one .pages-txt h1,
#magazine-three .pages-txt h1 {
    font-size: 2em;
    /*32px */
    margin-bottom: 20px;
    line-height: normal;
}

#magazine-one .pages-txt p,
#magazine-three .pages-txt p {
    line-height: 2em;
    /* 32px */
}

#magazine-two {
    display: block
}

#magazine-two .pages-img {
    display: block;
    max-width: 400px;
    margin: auto;
    padding: 0 25px;
   }

#magazine-two .pages-img img {
    max-width: 100%;
    border: 1px solid rgba(165, 165, 165, 1);
}
#magazine-three button{       
    font-size: 0.8125em;
    /* 13px */
    border: 1px solid rgba(104, 104, 104, 1);
    background: rgba(95, 95, 75, 1);
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif !important;
    width: 100%;
    margin-top: 30px;    
}

#magaz {
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    max-width: 300px;
}

#magaz input[type="email"],
#magaz input[type="name"]{
    background: rgba(125, 125, 105, 1);
    border: 1px solid rgba(104, 104, 104, 1);
    padding: 5px 10px;
    color: rgba(255, 255, 255, 1);
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125em;
    /* 13px */
    margin: 10px 0;
    text-align: center;
}

#magaz input[type="submit"] {
    font-size: 0.8125em;
    /* 13px */
    border: 1px solid rgba(104, 104, 104, 1);
    background: rgba(95, 95, 75, 1);
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif !important;
    width: 100%;
}

#magaz #magaz-err {
    margin: 0 0 10px 0;
    background: transparent;
    border: 0px;
    padding: 0 10px;
    color: rgba(255, 0, 0, 1);
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125em;
        /* 12px */
    text-align: center;
    height: 18px;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 1);
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 1);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(255, 255, 255, 1);
}

/* CONTACT */
#anchor-contact {
    width: 100%;
}

#contact {
    display: block;
    background-color: rgba(0, 0, 0, 0.75);
}

#contact-wide {
    max-width: 1280px;
    margin: auto;
    padding: 60px 40px;
}

#contact #contact-one {
    padding-right: 40px;
}

#contact #contact-one h1 {
    font-size: 2em;
    /* 32px */
    margin-bottom: 20px;
    line-height: normal;
}

#contact #contact-one h6 {
    font-size: 0.8em;
    margin: 20px 0;
    line-height: 2em;
    /* 32px */
}

#contact #contact-one p {
    line-height: 2em;
    /* 32px */
}

.contact-form {
    display: flex;
    max-width: 400px;
    margin: 55px auto 0 auto;
    background: rgba(0, 0, 0, 0.8);
    /*    padding: 30px;*/
    flex-direction: column;
    width: 100%;
}

.input-fields {
    display: flex;
    width: 100%;
}

.input-fields label {
    width: 105px;
    padding: 10px;
    margin: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125em
        /* 13px */
}

.input-fields .input,
.input-fields textarea {
    margin: 10px 0;
    background: rgba(125, 125, 105, 1);
    border: 0px;
    padding: 5px 10px;
    color: rgba(255, 255, 255, 1);
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125em
        /* 13px */
}

#contact #contact-err {
    margin: 0 0 12px 0;
    background: transparent;
    border: 0px;
    padding: 0 10px;
    color: rgba(255, 0, 0, 1);
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125em;
        /* 12px */
    text-align: center;
    height: 32px;
}

textarea {
    height: 100px;
    resize: none;
    overflow: auto;
    -ms-overflow-style: none;
}

.input-fields::-webkit-scrollbar {
    display: none;
}

.contact-form input[type="submit"] {
    font-size: 0.8125em;
    /* 13px */
    border: 0;
    background: rgba(95, 95, 75, 1);
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif !important;
    width: 100%;
   }

/* FOOTER */

footer {
    /*    margin-bottom: 30px;*/
    background-color: rgba(0, 0, 0, 1);
    font-size: 0.875em;
    /* 14px */
}

footer #foot-one {
    max-width: 600px;
    margin: auto;
    text-align: center;
    padding-top: 20px;
}

footer h2 {
    color: rgba(255, 255, 255, 1);
}

footer h1 {
    color: rgba(255, 255, 255, 1);
}

footer p {
    color: rgba(255, 255, 255, 1);
    font-size: 0.875em;
    /* 14px */
    line-height: 2em;
    /* 32 px */
    padding-top: 0;
}

footer a:any-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    font-size: 0.875em;
    /* 14px */
    line-height: 2.75em;
    /* 44 px */
    padding-top: 0;
}

footer #foot-two {
    padding: 30px 20px;
    font-size: 0.875em;
    /* 14px */
    max-width: 1200px;
    margin: auto;
    text-align: center
}

/* BACK TO TOP */

/*.reset-top {}*/

.cd-top {
    display: inline-block;
    height: 40px;
    width: 25px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: rgba(125, 125, 105, 1) url(../images/graphics/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
    transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
}

.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
    transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
}

.cd-top.cd-top--show {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-top--fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}

.cd-top:hover {
    background-color: rgba(125, 125, 105, 1);
    opacity: 1;
}

/* Slideshow container */
.slideshow-container {
    max-width: 600px;
    position: relative;
    margin: auto;

}

/* Hide the images by default */
.mySlides1,
.mySlides2,
.mySlides3 {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 1.125em;
    /* 18px */
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.slideshow-container .text {
    display: none;
    color: rgba(193,185,167,0.5);
    font-size: 0.975em;
    /* 15px*/
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: right;
    font-style: italic;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.slideshow-container:hover .text {
    display:block;
  
}



/* Number text (1/3 etc) */
.slideshow-container .numbertext {
    display: none;
    color: #f2f2f2;
    font-size: 0.750em;
    /* 12px */
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    padding: 0 4px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2.5s;
    animation-name: fade;
    animation-duration: 2.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}


/* PRIVACY POLICY */
#privacy,
#ptc{
    display: block;
    background-color: rgba(0, 0, 0, 0.75);
    color: rgba(200,200,200,1)
}

#privacy-one .pages-txt,
#ptc-one .pages-txt{
    max-width: 950px;
    margin: auto;
    padding: 40px;
}

#privacy-one .pages-txt h1,
#ptc-one .pages-txt h1{
    font-size: 1.125em;
    /* 18px */
    margin-top: 20px;
    line-height: normal;
}
#privacy-one .pages-txt h2,
#ptc-one .pages-txt h2{
    font-size: 1em;
    /* 16px */
    margin-top: 20px;
    line-height: normal;
}

#privacy-one .pages-txt p,
#ptc-one .pages-txt p{
    
    font-size: 0.875em;
    /* 14px */
    line-height: 1.5em;
    /* 24px */
}

  .cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    font-family: sans-serif;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .cookie-banner p {
    margin: 0;
    flex: 1 1 auto;
    max-width: 500px;
  }

  .cookie-banner a {
    color: #00c3ff;
    text-decoration: underline;
  }

  .cookie-btn {
    background: #00c3ff;
    color: #000;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    flex-shrink: 0;
  }

  .cookie-btn:hover {
    background: #009fcc;
  }

  @media (max-width: 600px) {
    .cookie-banner {
      flex-direction: column;
      text-align: center;
    }

    .cookie-btn {
      width: 100%;
      max-width: 200px;
    }
  }

