@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
:root {
    --text-color--: #161616;
    --text-color-light--: #494949;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: var(--text-color--);
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: var(--text-color--);
}

h4 {
    font-size: 20px;
    color: var(--text-color--);
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: var(--text-color-light--);
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    padding: 40px 0;
}



/*------------------------------------------------------------------------------ desctop ------------------------------------------------------------------*/

/* Header Start */

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #eceff0fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration:  none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color--);
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #00aeff;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #00aeff;
    position: absolute;
    bottom: -4px;
    left: 20px;
    transition: 3s ease;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

/* home */
#hero {
    background-image: url(/asseets/img/hero.png);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: top 80% right 0;
    padding: 0px 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h1 {
    color: #00aeff;
    font-size: 82px;
}

#hero button {
    margin-top: 6rem;
    border: none;
    background: #161616;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
}

#hero button:hover {
    background: #00aeff;
    color: #fff;
    transition: 0.3s ease;
}

#sm-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sm-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 120px;
    background-image: url(/asseets/img/kakut.png);
    min-width: 1100px;
    height: 35vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

#sm-banner .banner-box2 {
    background-image: url(/asseets/img/kahvipöytä.png);
}

#sm-banner h2 {
    color: #242424;
    font-size: 40px;
    font-weight: 800;
}

#sm-banner button {
    background: rgb(22, 24, 37);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 11px;
}

#sm-banner .banner-box:hover button {
    background: #00aeff;
    border: 1px solid #00aeff;
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 button {
    background: rgb(22, 24, 37);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 11px;
}

#banner3 .banner-box:hover button {
    background: #00aeff;
    border: 1px solid #00aeff;
}

#banner3 .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 120px;
    background-image: url(/asseets/img/kausi.png);
    min-width: 30%;
    height: 35vh;
    background-size: cover;
    background-position: center;
    padding:20px;
    margin-bottom: 20px;
    background-position: 80%;
}

#banner3 .banner-box2 {
    background-image: url(/asseets/img/muut.png);
    background-position: 80%;
}

#banner3 .banner-box3 {
    background-image: url(/asseets/img/ruokasa.png);
    background-position: 80%;
}


#banner3 h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 120px;
    background-image: url(/asseets/img/banner.png);
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
}

#banner h4 {
    color: #fff;
    font-size: 32px;
}

#banner h2 {
    color: #fff;
    font-size: 80px;
    padding: 15px 0;
}

#banner button {
    background: #ffffff;
    color: #000000;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

#banner button:hover {
    background-color: #ffffffb0;
    color: #00aeff;
    transform: 3s ease;
    transition: 0.3s ease;
}

.container {
    display: flex;
    margin-left: 12rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .container h1 {
    font-size: 50px;
    font-weight: 700;
    color: #161616;
    margin-bottom: 20px;
  }
  
  
  .accordion-container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-right: 24rem;
  }
  
  .accordion-item {
    border-bottom: 1px solid black;
    margin-bottom: 20px;
  }
  
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .accordion-header h2 {
    font-size: 32px;
    font-weight: bold;
  }
  
  .toggle-btn {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .accordion-content {
    display: none;
    margin-top: 24px;
  }
  .accordion-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
  }

  p.blurred {
    filter: blur(4px);
    
  }
  
  .accordion-content.open {
    display: block;
  }

#social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10rem;
}

#social h1 {
    font-size: 50px;
    font-weight: 700;
    color: #161616;
    margin-bottom: 40px;
    text-align: center;
    margin-top: 10rem;
}

#social img {
    justify-content: center;
    align-items: center;
}

#social button {
    background-color: #141414;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}
  
/* Product */
#popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  #popup-content {
    background: white;
    padding: 25px;
    margin: 15% auto;
    width: 450px;
    text-align: center;
    border-radius: 15px;
  }

  #close-btn {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #00aeff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  #close-btn:hover {
    background: #6bd0ff;
    color: black;
  }
.category-nav {
    font-family: 'Courier New', monospace; /* sama fiilis kuin kuvassa */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .category-nav a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .category-nav a:hover,
  .category-nav a.active {
    color: #00aeff;
  }
  
  .category-nav span {
    color: #ccc;
  }

#product1 {
    text-align: center;
}

#product1 .pro-container {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 23%;
    min-height: 250px;
    padding: 10px 12px;
    border: 1px solid #dde0e0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #00aeff;
    font-size: 18px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 22px;
}

#product1 .pro .des i {
    font-size: 18px;
    color: #fffb25;
    margin-top: 7px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 23px;
    font-weight: bold;
    color: #00aeff;
}
#product1 .pro .cart {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50px;
    background-color: #cff3ff;
    color: #00aeff;
    font-size: 20px;
    border: 1px solid #eceff0;
    position: absolute;
    bottom: 20px;
    right: 10px;
}


#pegination {
    text-align: center;
}

#pegination a {
    text-decoration: none;
    background-color: #00aeff;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 800;
}

#pegination a i {
    font-size: 16px;
    font-weight: 800;
}

#pegination a:hover {
    background-color: #e4e4e4;
    color: #00aeff;
    transition: 0.3s ease;
}

#pegination a.active {
    background-color: #141414;
    color: #fff;
}
#pegination a.active:hover {
    background-color: #afafaf;
    color: #fff;
}


/* Single Product Page */

#prodetails {
    display: flex;
    margin-top: 25px;
    margin-bottom: 10rem;
}
#prodetails h4 {
    margin-top: 60px;
}
#prodetails span {
    font-size: 20px;
    padding: 10px 0;
}
#prodetails a {
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    padding: 10px 0;
    font-weight: 700;
}
#prodetails a:hover {
    color: #00aeff;
    transition: 0.3s ease;
}

#prodetails .single-pro-image {
    width: 40%;
    margin-right: 50px;
}

.small-img-group {
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}

#prodetails .single-pro-details {
    width: 50%;
    padding-top: 30px;
}

#prodetails .single-pro-details h4 {
    padding: 40px 0 20px 0;
    font-size: 42px;
    color: #1a1a1a;
}

#prodetails .single-pro-details h2 {
    font-size: 32px;
    font-weight: 400;
}

#prodetails .single-pro-details select{
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#prodetails .single-pro-details select:focus {
    outline: none;
}

#prodetails .single-pro-details input {
    width: 8%;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#prodetails .single-pro-details input:focus {
    outline: none;
}

#prodetails .single-pro-details button {
    background: #00aeff;
    color: #fff;
}

#prodetails .single-pro-details span {
    line-height: 25px;
}

/* abaut */
#page-header2 {
    background-image: url(/asseets/img/ABAUT.png);
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
}

#me {
    display: flex;
    margin-bottom: 60px;
}

#me h2 {
    color: black;
    font-size: 50px;
    margin-top: 25rem;
    margin-left: 5rem;
    margin-bottom: 3rem;
}

#me h6 {
    width: 50%;
    color: black;
    font-size: 20px;
    margin-top: 2rem;
    margin-left: 5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
}

#me img {
    width: auto;
    height: 80vh;
    padding: 0px 80px;
    margin-top: 60px;
}

/* contact */
#contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12rem;
    margin-bottom: 10rem;
    background: #ccc;
    padding: 120px 80px;
    border-radius: 20px;
}

#contact-details .details {
    width: 40%;
}

#contact-details .details span,
#form-details form span {
    font-size: 32px;
}

#contact-details .details h2,
#form-details form h2 {
    font-size: 80px;
    font-weight: 800;
    line-height: 5rem;
    padding: 20px 0 20px 0;
    margin-bottom: 40px;
    margin-top: 20px;
}

#contact-details .details h3 {
    font-size: 20px;
    margin-bottom: 32px;
}

#contact-details .details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i {
    font-size: 14px;
    padding-right: 22px;
}

#contact-details .details li p {
    margin: 0;
    font-size: 20px;
}

#contact-details .map {
    width: 55%;
    height: 400px;
}

#contact-details .map iframe {
    width: 100%;
    height: 125%;
}

#form-details {
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
}

#form-details form {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#form-details form input,
#form-details form textarea {
    width: 100%;
    padding: 15px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e4e4e4;
}

#form-details form button {
    background: #00aeff;
    color: #fff;
}


/* Footer */
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    padding: 50px 80px;
}

footer col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logo {
    margin-bottom: 30px;
}

footer h4 {
    font-size: 24px;
    padding-bottom: 20px;
    margin-top: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 16px;
    text-decoration: none;
    color: var(--text-color--);
    margin-bottom: 10px;
    display: block;
    
}

footer .follow {
    margin-top: 20px;
}

footer .follow i {
    color: #3a3a3a;
    padding-right: 4px;
    font-size: 20px;
}

footer .follow i:hover,
footer .follow a:hover {
    color: #00aeff;
}

footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 80px;
}




/*-------------------------------------------------------------------------- Mobile ----------------------------------------------------------------------*/

@media (max-width: 799px) {
    .section-p1 {
        padding: 40px 80px;
    }

    /* Header Start */

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px; /* Tämä piilottaa navbarin alkuun */
        height: 100vh;
        width: 300px;
        background-color: #e8eef0;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: right 0.3s ease;  /* Lisätty siirtymä */
    }

    #navbar.active {
        right: 0;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    /* home */
    #hero {
        height: 70vh;
        padding: 0px 80px;
        background-position: top 30% right 40%;
    }  

    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
        padding: 30px;
    }

    #banner3 {
        padding: 0px 40px;
    }

    #banner3 h2 {
        text-shadow: white 0px 0px 10px;
    }

    #banner3 span {
        font-weight: 600;
    }
    

    #social img {
        width: 100%;
        height: 100%; 
    }

  
  
  
    .container h1 {
        text-align: center;
        margin-top: 80px;
        margin-bottom: 120px;
    }

    
    

    /* Product */
      
    #product1 .pro-container {
        justify-content: center;
    }

    #product1 .pro {
        width: 50%;
        margin: 15px 0;
    }

    /* abaut */
    #page-header2 {
        width: 100%;
        height: 30vh;
        padding: 0px 80px;
        background-position: center;
    }

    #me img {
        width: auto;
        height: 50vh;
        padding: 0px 13px;
        margin-top: 60px;
    }

    #me h2 {
        margin-top: 5rem;
        margin-left: 10px;
        margin-bottom: 1rem;
    }

    #me h6 {
        width: 80%;
        margin-top: 2rem;
        margin-left: 10px;
        margin-bottom: 3rem;
    }

    .container{
        margin: 0 auto;
    }
}





@media (max-width: 477px) {

    .section-p1 {
        padding: 40px 20px; /* Set padding to 20px on left and right */
    }

    /* Header Start */
    #header {
        padding: 10px 20px;  /* Set padding to 20px on left and right */
    }

    .accordion-container {
    width: 100%;
    max-width: 400px;
    margin: 0 240px 0 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
  }

    /* home */
    #hero {
        padding: 0 20px; /* Set 20px padding on left and right */
        background-position: top 30% right 50%;
    }

    #banner {
        height: 45vh;
        padding: 0 20px; /* Set 20px padding on left and right */
    }

    #banner h4 {
        font-size: 16px;
        line-height: 20px;
    }
    #banner h2 {
        font-size: 48px;
        font-weight: 800;
    }

    #sm-banner .banner-box {
        height: 40vh;
    }

    #sm-banner .banner-box2 {
        margin-top: 20px;
    }

    #banner3 {
        padding: 0 20px;  /* Set 20px padding on left and right */
        margin-top: none;
    }

    #banner3 .banner-box {
        min-width: 100%;
        margin: 0 0 20px;
        height: 40vh;
    }

    

    /* About */
    #page-header2 {
        width: 100%;
        height: 25vh;
        padding: 0px 20px;  /* 20px padding on left and right */
        background-position: center;
    }

    #me {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px 20px;  /* Set padding to 20px on left and right */
    }

    #me img {
        width: auto;
        height: 50vh;
        padding: 0px 13px;
        margin-top: 60px;
    }

    #me h2 {
        margin-top: 5rem;
        margin-left: 0rem;
        margin-bottom: 1rem;
    }

    #me h6 {
        width: 80%;
        margin-top: 2rem;
        margin-left: 5px;
        margin-bottom: 3rem;
    }

    /* Product */
    .category-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        border: #3a3a3a 1px solid;
        padding: 10px 0;
        border-radius: 20px;
        margin: 0 40px;
    }

    .category-nav a {
        font-size: 1.5rem;
    }

    .category-nav span {
        display: none;
    }

    #prodetails {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #prodetails .single-pro-image {
        width: 100%;
        margin-right: 0px;
    }

    #prodetails .single-pro-details {
        width: 100%;
    }

    #product1 .pro-container {
        justify-content: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    #product1 .pro {
        width: 50%;  /* Increase width of product boxes */
        margin: 20px 0 0 0;
    }

    #product1 .pro .des h4 {
        font-size: 16px;
    }

    #contact-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    #contact-details .details {
        width: 100%;
    }

    #contact-details .details span {
        font-size: 20px;
    }

    #contact-details .details h2 {
        font-size: 24px;
        font-weight: 800;
        line-height: 2rem;
        margin-bottom: 40px;
        margin-top: 20px;
    }

    #contact-details .map {
        width: 100%;
        height: 200px;
        margin-top: 80px;
    }

    #contact-details .map iframe {
        width: 100%;
        height: 125%;
    }

    #form-details {
        padding: 0px 20px;  /* Set padding to 20px on left and right */
    }

    #form-details form span {
        font-size: 20px;
        margin-top: 42px;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 477px) {
    #popup-content {
        width: 80%;  /* Make the popup content 80% of the screen width */
        margin: 20% auto;  /* Center the popup with more margin on top */
        padding: 15px; /* Reduce padding for smaller screens */
    }

    #close-btn {
        padding: 8px 12px; /* Make the close button smaller */
    }
}


/*Banneri muotoiluja*/
@media (max-width: 930px) {
    #banner {
        height: 320px;
        padding: 0 20px;
    }
    #banner h2 {
        line-height: 80px;
    }
}

@media (max-width: 1900px) {
    .accordion-container {
        width: 80%;
        margin-left: 120px;
    }
}

@media (max-width: 1300px) {
    .container {
        flex-direction: column;
        margin: 0 auto;
        padding: 0 20px; /* Ensure left and right padding of 20px */
        width: 100%; /* Full-width */
    }
    .container h1 {
        text-align: center;
        margin-top: 80px;
        margin-bottom: 120px;
    }
}

/* Keskitys mobiilille */
@media (max-width: 768px) {

  .accordion-container {
    margin: 0 auto !important;
    max-width: 90%;
    padding: 1.5rem;
  }

  .accordion-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .accordion-item {
    text-align: center;
  }

  .toggle-btn {
    align-self: center !important;
  }
}

.contact-form-wrapper {
  max-width: 500px;
  margin: 50px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
  text-align: center;
  color: #00aeff;
  margin-bottom: 10px;
}

.contact-form-wrapper p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
  color: #555;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #00aeff;
  box-shadow: 0 0 10px rgba(0, 174, 255, 0.2);
}

.contact-form-wrapper button {
  width: 100%;
  padding: 15px;
  background: #00aeff;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-wrapper button:hover {
  background: #008ecc;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 20px;
}

.custom-checkbox input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #00aeff;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.custom-checkbox input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 13px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(40deg);
  top: 1px;
  left: 5px;
  opacity: 0;
  transition: 0.2s;
}

.custom-checkbox input[type="checkbox"]:checked {
  background: #00aeff;
  border-color: #00aeff;
}

.custom-checkbox input[type="checkbox"]:checked::after {
  opacity: 1;
}

#formStatus {
  text-align: center;
  font-weight: 600;
  margin-top: 15px;
  color: green;
}