/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: #001f3f; /* Deep blue base */
    overflow-x: hidden;  /* Prevent horizontal scrolling */
    width: 100%;
    position: relative;
}

.smoke-container {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    top: 0;
    left: 0;
}

.smoke {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(closest-side, rgba(255,255,255,0.15), transparent);
    opacity: 0.3; /* More visible smoke */
    filter: blur(80px); /* Soft blur */
    animation: smokeMove 30s ease-in-out infinite;
}

.smoke1 {
    animation-delay: 0s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.smoke2 {
    animation-delay: 15s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
}

@keyframes smokeMove {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-45%, -55%) scale(1.1) rotate(180deg);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
    }
}

/* Navigation Styles */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
}

.floating-btn, .language-floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #3b4c67;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.floating-btn {
    bottom: 20px;
    right: 20px;
    font-size: 30px;
}

.navbar-brand {
    text-align: center;
    color: white;
    padding: 10px 0 15px;
}

.navbar-brand img {
    width: 200px;
    height: auto;
    max-width: 100%;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background: #04213f;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.nav-menu ul {
    list-style: none;
    margin-top: 100px;
    padding: 0;
}

.nav-menu li {
    padding: 20px;
    text-align: center;
}

.nav-menu a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #408EC6;
}

.game-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-top: 60px;
}

.logo2 {
    display: block;
    margin: 10px auto 0;
    width: 120px;
    height: 90px;
}

.language-floating-btn {
    bottom: 90px;
    right: 20px;
    font-size: 18px;
    font-weight: bold;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Language Selection Styles */
.language-selection {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 100px;
    padding: 0 20px;
}

.lang-btn {
    background-color: #3b4c67;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #4b5e7c;
}

.lang-btn.active {
    background-color: #408EC6;
    border-color: #fff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.language-floating-btn:hover {
    transform: scale(1.1);
    background-color: #4b5e7c;
}

.language-floating-btn.active {
    background-color: #408EC6;
    border: 2px solid white;
}

.floating-btn:hover {
    transform: scale(1.1);
    background-color: #4b5e7c;
}

.floating-btn.active {
    background-color: #408EC6;
    border: 2px solid white;
}

/* Header section */
.text-header {
    width: 100%;
    text-align: center;
    color: #ffffff;
    padding: 20px 0;
    margin-bottom: 20px;
}

.text-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.6);
}

.text-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.6);
}

.logo {
    display: flex;
    justify-content: center;
    margin: 0 auto 30px;
    width: 100%;
}

.logo img {
    width: 250px;
    height: auto;
    max-width: 100%;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);

    border-radius: 15px;
    backdrop-filter: blur(5px);
    width: 100%;
    box-shadow: 0 10px 25px rgba(154, 189, 255, 0.2);
}

/* Game section */
.container-game {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
    height: auto;
    overflow: hidden; /* Prevent overflow */



}

.about-box {
    background-color: rgba(193, 229, 255, 0.5);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    width: 600px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(10px);
    height: auto;
    box-sizing: border-box; /* Ensure padding is included in width */
    border-radius: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(154, 189, 255, 0.2);

}

.about-box p {
    margin-bottom: 15px;

}

.about-box p:last-child {
    margin-bottom: 0;
}

#our-team {
    width: 100%;
    text-align: center;
    color: #ffffff;
    margin: 50px 0 20px;
    margin-top: 200px;

}

.our-team h3 {
    text-align: center;
    padding-top: 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.member {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 1rem;
}

/* Developers section */
.Developers {
    margin-top: 300px;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 30px 20px;
    color: #ffffff;
    overflow: hidden; /* Prevent overflow */

}

.Developers h3 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: left;

}

.Developers p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: left;
}

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

.developer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    flex-direction: row-reverse;
    width: 100%;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 0.7s ease-out, opacity 0.7s ease-out;

}

.developer-container img {
    width: clamp(100px, 10vw, 120px);
    height: clamp(100px, 10vw, 120px);
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    flex-shrink: 0;
}

.kaspar-fax, .melisa-fax {
    background-color: #6C5B7B;
    padding: 25px;
    border-radius: 10px;
    width: calc(100% - 160px);
    color: white;
    font-size: 16px;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Ensure padding is included in width */
    border-radius: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(154, 189, 255, 0.2);
}

.kaspar-fax p, .melisa-fax p {
    margin-bottom: 15px;
}

/* Designers section */
.section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px 20px;
    color: #ffffff;
    overflow: hidden; /* Prevent overflow */
}

.section h3 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: right;
    width: 100%;
}
.section p {
    font-size: 18px;
}

.alttext {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: right;
    width: 100%;
}

.designer-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: flex-end;
}

.designer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    width: 100%;
    transform: translateX(100px);
    opacity: 0;
    transition: transform 0.7s ease-out, opacity 0.7s ease-out;
}

.designer-container img {
    width: clamp(100px, 10vw, 120px);
    height: clamp(100px, 10vw, 120px);
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    flex-shrink: 0;
}

.niko-fax, .aino-fax {
    background-color: #6C5B7B;
    padding: 25px;
    border-radius: 10px;
    width: calc(100% - 160px);
    color: white;
    font-size: 16px;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Ensure padding is included in width */
    border-radius: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(154, 189, 255, 0.2);
}

.niko-fax p, .aino-fax p {
    margin-bottom: 15px;
}

/* Animation classes */
.developer-container.visible,
.designer-container.visible {
    transform: translateX(0);
    opacity: 1;
}

#gallery {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 20px 40px;
    background-color: #213440;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden; /* Prevent overflow */
    border-radius: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(154, 189, 255, 0.2);
}

.gallery-header {
    background-color: #213440;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.gallery-header h1 {
    margin: 0;
    font-size: 36px;
    color: white;
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    height: 450px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);

}

.slide {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
    animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-decoration: none;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.thumbnail-container {
    display: flex;
    gap: 15px;
    margin: 20px auto;
    padding: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 800px;
    scrollbar-width: thin;
    scrollbar-color: #38566b #213440;
}

.thumbnail-container::-webkit-scrollbar {
    height: 8px;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: #213440;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background-color: #38566b;
    border-radius: 20px;
}

.thumbnail {
    min-width: 100px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    opacity: 1;
    border-color: #4d92c8;
    transform: scale(1.05);
}

.thumbnail:hover {
    opacity: 0.9;
}

.slide-number {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

/* Download Section */
#Download {
    text-align: center;
    padding-top: 5rem;
}

.download-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    width: 80%;
    max-width: 800px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(154, 189, 255, 0.2);
}

.download-container p {
    color: white;
    font-size: 25px;
}

.textd {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 50px;
}

@media (min-width: 576px) {
    .button-group {
        flex-direction: row;
        justify-content: center;
    }
}

.download-btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Portal button style */
.portal-btn {
    background: linear-gradient(135deg, #05376a, #00bfff);
}

/* Itch.io button style */
.itch-btn {
    background: linear-gradient(135deg, #00bfff, #05376a);
}

footer {
    width: 100%;
    background-color: #132b50;
    padding: 30px 20px 40px; /* Top, side, bottom padding */
    text-align: center;
    margin-top: 60px;
    position: relative;
    color: white;
    box-sizing: border-box;
  }

  /* Headings */
  footer h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  footer h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  footer p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  /* Logos container */
  .footer-logos {
    position: relative;
    width: 100%;
    height: 120px; /* Controls overall logo zone height */
  }

  /* Left and right logos */
  .logo-left,
  .logo-right {
    position: absolute;
    /* top: 2rem; */
    width: 600px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 900px;
  }

  /* Align left and right */
  .logo-left {
    left: 0;
    padding-left: 20px;
  }
  .logo-right {
    right: 0;
    padding-right: 20px;
  }

  /* Center logo (Loot Goblins) */
  .center-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px; /* Change this */
    max-width: 100%; /* optional, keeps it responsive */
    height: auto;
    max-height: none;
    object-fit: contain;
  }


  @media (min-width: 769px) and (max-width: 1366px) {
    body {
        padding-top: 60px;
    }

    .text-header h1 {
        font-size: 36px;
    }

    .text-header h2 {
        font-size: 24px;
    }

    .logo img {
        width: 160px;
    }

    .container-game {
        width: 95%;
        gap: 20px;
    }

    .crane-img {
        width: 45%;
        max-width: 450px;
    }

    .about-box {
        width: 45%;
        padding: 20px;
        font-size: 15px;
    }

    .developer-container, .designer-container {
        gap: 20px;
    }

    .kaspar-fax, .melisa-fax, .niko-fax, .aino-fax {
        padding: 20px;
        font-size: 15px;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    #gallery {
        width: 95%;
    }

    .Developers, .section {
        width: 95%;
    }

    .our-team h3, .Developers h3, .section h3 {
        font-size: 32px;
    }


    .footer-logos img {
        width: 140px;
        height: auto;
        margin: 10px;
    }
}


/* Existing responsive design */
@media (max-width: 992px) {
    .text-header h1 {
        font-size: 36px;
    }

    .text-header h2 {
        font-size: 24px;
    }

    .container-game {
        flex-direction: column;
    }

    .about-box {
        width: 100%;
        margin-top: 20px;
    }

    .developer-container, .designer-container {
        gap: 15px;
    }

    .kaspar-fax, .melisa-fax, .niko-fax, .aino-fax {
        width: calc(100% - 145px);
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .game-name {
        font-size: 16px;
        margin-top: 30px;
    }

    .logo2 {
        width: 100px;
        height: 75px;
    }

    .text-header h1 {
        font-size: 30px;
    }

    .text-header h2 {
        font-size: 20px;
    }

    .Developers h3, .section h3, .gallery-header h1, .our-team h3 {
        font-size: 28px;
    }

    .developer-container, .designer-container {
        flex-direction: column;
        gap: 20px;
        /* Disable transformations on mobile to prevent sliding */
        transform: none !important;
        opacity: 1 !important;
    }

    .kaspar-fax, .melisa-fax, .niko-fax, .aino-fax {
        width: 100%;
    }

    .section {
        align-items: center;
    }

    .section h3, .alttext {
        text-align: center;
    }

    .designer-images {
        align-items: center;
    }
}

@media (max-width: 576px) {
    /* Base mobile improvements */
    body {
        padding-top: 50px;
        font-size: 14px;
    }

    .text-header h1, .text-header h2 {
        font-size: 24px;
        padding: 0 15px;
    }

    .logo img {
        width: 160px;
    }

    .video-container {
        width: 400px;
        max-width: 100%;

    }
    .about-box {
        padding: 15px;
        font-size: 14px;
        line-height: 1.4;
    }

    .Developers h3, .section h3, .gallery-header h1, .our-team h3 {
        font-size: 24px;
    }

    .Developers p, .alttext {
        font-size: 16px;
    }

    .developer-container img, .designer-container img, .container img {
        width: 100px;
        height: 100px;
    }

    .kaspar-fax, .melisa-fax, .niko-fax, .aino-fax {
        font-size: 14px;
        padding: 15px;
    }

    .nav-menu {
        width: 100%;
    }

    /* Fix floating buttons */
    .floating-btn, .language-floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn {
        font-size: 26px;
    }

    .language-floating-btn {
        font-size: 16px;
    }

    /* Improve slideshow for mobile */
    .slideshow-container {
        height: 300px;
    }

    /* Better navigation for thumbnails */
    .thumbnail {
        min-width: 80px;
        height: 50px;
    }

    /* Make download section more compact */
    .download-container {
        padding: 2rem;
        width: 90%;
    }

    .download-container p {
        font-size: 16px;
    }

    .download-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        margin-top: 30px;
    }

    /* Fix developer/designer sections */
    .developer-container, .designer-container {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Improve text boxes for team members */
    .kaspar-fax, .melisa-fax, .niko-fax, .aino-fax {
        width: 100%;
    }

    /* Better gallery sizing for mobile */
    #gallery {
        width: 95%;
        padding: 50px 10px 30px;
    }

    .gallery-header h1 {
        font-size: 22px;
    }

    /* Improve navigation controls for slideshow */
    .prev, .next {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }

    /* Better footer for mobile */
    footer {
        padding: 30px 15px;
    }

    footer h1 {
        font-size: 24px;
    }

    footer h2 {
        font-size: 18px;
    }

    footer p {
        font-size: 16px;
    }

    .footer-logos {
        gap: 150px;
        padding-top: 20px;
    }

    .footer-logos img {
        width: 150px;
        height: 50px;
    }
}

    /* Fix team grid for small screens */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .member {
        padding: 1rem;
    }

    /* Container improvements */
    .container-game {
        width: 100%;
        padding: 0 10px;
        margin: 20px auto;
    }


/* Extra small devices (phones under 400px) */
@media (max-width: 400px) {
    body {
        padding-top: 40px;
    }

    .text-header h1, .text-header h2 {
        font-size: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .member img {
        width: 100px;
        height: 100px;
    }

    .slideshow-container {
        height: 220px;
    }

    /* Make smaller navigation menu */
    .nav-menu li {
        padding: 15px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .floating-btn, .language-floating-btn {
        width: 45px;
        height: 45px;
        right: 10px;
    }

    .floating-btn {
        bottom: 10px;
        font-size: 24px;
    }

    .language-floating-btn {
        bottom: 65px;
        font-size: 14px;
    }

    /* Fix animations on small screens */
    .developer-container.visible,
    .designer-container.visible {
        transform: none !important;
    }

    /* Compact download section further */
    .download-container {
        padding: 1.5rem;
        width: 95%;
    }

    .download-container p {
        font-size: 14px;
    }

    /* Smaller gallery elements */
    .thumbnail {
        min-width: 70px;
        height: 45px;
    }
    .footer-logos {
        gap: 10px;
    }

    .footer-logos img {
        width: 40px;
        height: 40px;
    }

}
