html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

@media all and (min-width: 960px) {
    .mobile-nav-not-logged {
        display: none;
    }
}

@media all and (max-width: 960px) {
    .main-nav {
        display: none;
    }

    .main-header {
        display: none;
    }

}

.sidenav {
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: -300px;
    background-color: #1e175a;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.sidenav a {
    padding: 8px 8px 10px 22px;
    text-decoration: none;
    font-size: 30px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.inside-link {
    padding: 5px 5px 5px 5px !important;
    font-size: 25px !important;
    margin-left: 20px !important;

}

.sidenav .contact-button {
    text-decoration: none;
    font-size: 25px;
    transition: 0.3s;
    display: block;
    margin-left: 15px;
    margin-top: 15px;
}

.contact-button {
    /* background: linear-gradient(135deg, #EF114A, #C3012D); */
    background: linear-gradient(135deg, var(--color-primary), var(--global-color-accent));
    /* color:#ffffff; */
    color: var(--global-color-background);
    border-radius: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 700;
    font-size: 17px;
    margin-top: -10px;
    margin-bottom: -10px;
    border: none;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.borgir {
    color: #EE114C;
    position: absolute;
    right: 15px;
}

:root {
    --color-primary: #EF114A;
    --color-secondary: #120C41;
    --color-tertiary: #2A2977;
    --color-neutral: #5E4B66;
    --color-4: #fbe4ef;
    --color-5: #800f2f;
    --color-6: #fc6d26;
    --color-6-accent: #e6540d;
    --color-7: #a91079;
    --color-8: #692808;
    --global-color-text: #2B233D;
    --global-color-text-alt: #2c2c2c;
    /* --global-color-accent: #EF114A; */
    --global-color-accent: #C3012D;
    --global-color-4f80b5c: #C957C7;
    --global-color-54a30c4: #120C41;
    --global-color-e7f174c: #2A2977;
    --global-color-204af2b: #F2F2F2;
    --global-color-background: #fdf6f9;
    --global-color-background-dark: #e6e0e2;
    --global-font-family: 'Roboto', sans-serif;
    /*old*/
    /* --primary-color: #EF114A;
    --secondary-color: #120C41;
    --tertiary-color: #2A2977;
    --neutral-color: #5E4B66;
    --background-color: #F2F2F2;
    --text-color: #2c2c2c; */
    --active-color: var(--color-primary);
    --hover-color: var(--color-tertiary);
    --accent-color: var(--color-secondary);
    --neutral: var(--color-neutral);
    --background-color: var(--global-color-background);
    --text-color: var(--global-color-text-alt);
}

/* .text-primary { color: #yourPrimaryColor !important; }
.text-secondary { color: #yourSecondaryColor !important; }
.text-tertiary { color: #yourTertiaryColor !important; }
*/
.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-tertiary {
    background-color: var(--tertiary-color) !important;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-family: var(--global-font-family);
    /* background: #fdf6f9; */
    /* color: #333; */
    /* color: var(--global-color-54a30c4); */
    background: var(--global-color-background);
}

.main-content {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    flex: 1;
}

.main-header {
    /* background: linear-gradient(135deg, #120C41, #a91079); */
    background: linear-gradient(135deg, var(--global-color-54a30c4) 75%, var(--global-color-4f80b5c));
    color: var(--global-color-background);
    /* color: white; */
    padding: 2rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* background-color: #120C41; */
    background-color: var(--color-secondary);
    padding: 1rem;
}

.navmenu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
}

.logo-cherry {
    height: 55px;
}

nav a {
    /* color: #fdf6f9; */
    color: var(--global-color-background);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

nav a:hover {
    /* color: #EE114A; */
    color: var(--color-primary);
}

nav button {
    /* background: linear-gradient(135deg, #EF114A, #C3012D); */
    background: linear-gradient(135deg, var(--color-primary), var(--global-color-accent));
    /* color:#ffffff; */
    color: var(--global-color-background);
    border-radius: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 700;
    font-size: 17px;
    margin-top: -10px;
    margin-bottom: -10px;
    border: none;
}

nav button:hover {
    /* background: linear-gradient(135deg, #C3012D, #EF114A); */
    background: linear-gradient(135deg, var(--color-primary), var(--global-color-accent));
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4rem 2rem;
    /* background-color: #fbe4ef; */
    background-color: var(--color-4);
}

.hero img {
    max-width: 500px;
    width: 100%;
    border-radius: 1rem;
    margin: 1rem;
}

.hero-text {
    max-width: 600px;
    margin: 1rem;
}

.hero-text h2 {
    font-size: 2rem;
    color: var(--color-5);
    /* color: #800f2f; */
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.section {
    padding: 3rem 2rem;
    /* background-color: #fff0f6; */
    background-color: var(--global-color-background);
}

.section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    /* color: #a91079; */
    color: var(--color-7);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product {
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 1rem;
    /* background-color: #ffe0ef; */
    background-color: var(--global-color-background);
    transition: transform 0.3s;
}

.product:hover {
    transform: scale(1.03);
}

.product img {
    max-width: 100%;
    border-radius: 0.5rem;
}

.product h4 {
    margin: 0.5rem 0;
    /* color: #800f2f; */
    color: var(--color-5);
}

.product p {
    font-size: 0.9rem;
    color: #333;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #120C41;
    color: white;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

form input {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    /* background-color: #fc6d26; */
    background-color: var(--color-6);
    color: white;
    padding: 10px 15px;
    border: none;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    /* background-color: #e6540d; */
    background-color: var(--color-6-accent);
}

form button.table-button:disabled {
    background: linear-gradient(135deg, #cacaca98, #cacaca00);
    color: var(--color-8);
    border: solid 1px var(--color-8);
    cursor: default;
}

p {
    text-align: center;
    font-size: 14px;
}

a {
    /* color: #fc6d26; */
    color: var(--color-6);
    text-decoration: none;
}


.negative {
    background-color: rgb(180, 0, 0);
    opacity: 0.8;
}

.positive {
    background-color: rgb(21, 180, 0);
    opacity: 0.8;
}

.dropbtn {
    transition: color 0.3s ease;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    /* background-color: #231C58; */
    background-color: var(--color-secondary);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    /* color: #EE114A; */
    color: var(--color-primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    /* color: #EE114A; */
    color: var(--color-primary);
}

.dropdown-icon {
    height: 25px;
}

.cookie-wrapper {
    position: fixed;
    bottom: 50px;
    right: -10000px;
    max-width: 345px;
    width: 100%;
    background: #FFF;
    border-radius: 8px;
    padding: 15px 25px 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.show {
    right: 20px;
}

.cookie-wrapper .data {
    margin-top: 16px;
}

.cookie-wrapper .data p {
    color: #333;
    font-size: 16px;
}

.cookie-data p a {
    color: #4070f4;
    text-decoration: none;
}

.cookie-data p a:hover {
    text-decoration: none;
}

.cookie-buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-button {
    padding: 8px 0;
    width: calc(50% - 10px);
    border: none;
    border-radius: 4px;
    background: #4070f4;
    color: #FFF;
    transition: all 0.3s ease;
}

.cookie-button:hover {
    background: #244297;
    transition: ease-in-out;
}

.cookie-header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.cookie-header i {
    color: #4070f4;
    font-size: 32px;
}

.cookie-header h2 {
    color: #4070f4;
    font-size: 32px;
}

.icon-cookie {
    width: 25px;
}


.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    text-align: left;
    padding: 8px;
    word-wrap: break-word;
}

div.container.justify-content-center.cookies-info {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.cookie-box {

    white-space: pre;
    overflow-x: auto;
}

.cookie-box .key {
    color: var(--color-secondary);
    font-weight: bold;
}

.cookie-box .value {
    color: var(--global-color-e7f174c);
}

div.container.justify-content-center.cookies-info>p {
    text-align: left;
    text-justify: auto;
}