@keyframes fadeIn {
  0% {
    /*transform: translateY(100%);*/
    opacity: 0;
  }
  100% {
    /*transform: translateY(0%);*/
    opacity: 1;
  }
}

@keyframes mulShdSpin {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 
    2em -2em 0 0em, 3em 0 0 -1em, 
    2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 -1em, -3em 0 0 -1em, 
    -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 
    3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 -1em, -3em 0 0 -1em, 
    -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 
    2em -2em 0 0, 3em 0 0 0.2em, 
    2em 2em 0 0, 0 3em 0 -1em, 
    -2em 2em 0 -1em, -3em 0 0 -1em, 
    -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, 
     -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, 
     -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, 
     -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 
    3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 
    3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

@keyframes dotSpinner {
  0% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
  }
  25% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 2px;
  }
  50% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 2px,  -38px 0 0 -2px;
  }
  75% {
    box-shadow: 14px 0 0 2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
  }
  100% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
  }
}

@layer webshop {
    :root {
        --webshop-color-primary-lightest: var(--color-primary-blue-200);
        --webshop-color-primary-lighter: var(--color-primary-blue-400);
        --webshop-color-primary: var(--color-primary-blue-500);
        --webshop-color-primary-darker: var(--color-primary-blue-600);
        --webshop-color-primary-darkest: var(--color-primary-blue-900);
        --product-card-background-color: #f3ead8;
        --webshop-color-link: var(--color-text-onlight-link-hover);
        --carousel-item-count: 1;
        --card-gap: 1em;
        --tile-count: 2;
        --small-tile-count: 4;
        --product-card-border-radius: 0.375em;
    }
    body {
        --side-padding: calc(((100vw - 1170px) / 2) + 10px);
    }
    button {
        cursor: pointer;
    }
    h3 {
        color: var(--color-heading);
    }
    h3 a:hover {
       color: var(--webshop-color-link); 
    } 
    .pt-form-field {
        display: flex;
        flex-direction: column;
        gap: 0.25em;
    }
    .pt-form-field input {
        padding-block: 0.5em;
        padding-inline: 0.75em;    
        border: 0.05em dashed var(--color-neutral-700);
        height: 2rem;
    }
    .pt-form-field input:focus {
        outline: 1.5px dashed;
        outline-color: var(--color-primary-blue-800);
    }
    .pt-icon-field .pt-icon {
        right: 0;
        padding: 0.4rem;
        color: var(--color-neutral-1000);
    }
    .pt-btn {
        font-family: 'bitterregular', serif;
        font-size: 1em;
        color: var(--color-text-ondark);
        text-shadow: 1px 1px 1.5px var(--color-primary-blue-1100);
        border: 0;
        padding: 0.75em 2em;
        border-radius: 0.3em;
        position: relative;
    }
    .pt-btn:before {
        content: '';
        border: 1px dashed var(--color-text-ondark);
        border-radius: 0.25em;
        position: absolute;
        top: 3px;
        bottom: 3px;
        left: 4px;
        right: 4px;
        pointer-events: none;
    }
    .pt-btn-emphasis-high {
        background-color: var(--btn-primary-bckg-color);
        color: var(--btn-primary-color);
    }
    .pt-btn-emphasis-high:hover {
        background-color: var(--btn-primary-bckg-color-hover);
    }
    .pt-btn-emphasis-high:active {
        background-color: var(--btn-primary-bckg-color-active);
    }
    .pt-btn-emphasis-high:disabled {
        background-color: var(--btn-primary-bckg-color-disabled);
    }
    .pt-btn-emphasis-medium {
        background-color: var(--btn-secondary-bckg-color);
        color: var(--btn-secondary-color);
    }
    .pt-btn-emphasis-medium:hover {
        background-color: var(--btn-secondary-bckg-color-hover);
    }
    .pt-btn-emphasis-medium:disabled {
        background-color: var(--btn-secondary-bckg-color-disabled);
    }
    .pt-btn-emphasis-low {
        color: var(--btn-tertiary-color);
        background-color: var(--btn-tertiary-bckg-color);
    }
    .pt-btn-emphasis-low:hover {
        background-color: var(--btn-tertiary-bckg-color-hover);
    }
    .pt-btn-emphasis-low:disabled {
        background-color: var(--btn-tertiary-bckg-color-disabled);
    }
    .pt-list .pagination {
        padding-block-start: 1em;
        display: flex;
        justify-content: center;
        gap: 0.25em;
    }
    .pt-list .pagination > * {
        padding: 0.25em;
        height: 2.25em;
        width: 2em;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .pt-list .pagination a {
        color: var(--color-text-onlight);
    }
    .pt-list .pagination .active {
        background-color: var(--color-secondary-green-700);
        color: var(--color-text-ondark);
        border-radius: 0.5em;
    }
    .pt-list .pagination .separator {
        width: 1em;
    }
    header.webshop-header {
        max-width: 100%;
        position: relative;
        padding-bottom: 5px;
        background-color: var(--webshop-color-primary);
        /* background-image: url(../images/noisy_bg.png), url(../images/header_bg.png); */
        background-image: url(../images/noisy_bg.png), url(../images/header_bg.png), linear-gradient(165deg, var(--webshop-color-primary) 50%, oklch(from var(--webshop-color-primary) calc(l * 1.1) c h) 100%);
        background-repeat: repeat, no-repeat, repeat;
        background-position: 0px 0px, top center , 0px 0px;
        background-blend-mode: multiply, normal, normal;
        background-size: contain, 1920px, contain;
        background-clip: content-box;
        width: 100vw;
        border-image:  url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23ddd' stroke-width='2' stroke-dasharray='4%2c4.3' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
        border-image-slice: 2;
        border-width: 0 0 3px 0;
        border-style: solid;
        display: grid;
        grid-template-columns: minmax(8px, var(--side-padding)) repeat(10, 1fr) minmax(8px, var(--side-padding));
        grid-template-rows: auto 1fr auto;
        grid-template-areas: 
            'lmargin logo sitemenu sitemenu sitemenu sitemenu sitemenu sitemenu login login cart rmargin'
            'lmargin menu menu menu menu menu menu menu search search search rmargin'
            'lmargin slider slider slider slider slider slider slider slider slider slider rmargin';
        .top-logo {
            grid-area: logo;
        }
        .top-cart {
            grid-area: cart;
            position: relative;
        }
        .main-menu {
            grid-area: sitemenu;
        }
        #site-navigation {
            grid-area: sitemenu;
        }
        .webshop-nav {
            grid-area: menu;
        }
        .top-slider {
            grid-area: slider;
        }
        .search-form {
            grid-area: search;
            display: flex;
        }
        .top-logo {
            margin-top: 10px;
        }
        img#top-logo {
            width: 80px;
        }
        img#top-logo:hover {
            width: 80px;
            filter: grayscale(0.8) contrast(0.8) brightness(1.3);
        }
        .dropdown-menu-toggle {
            display: inline;
            margin-bottom: 0;
            font-weight: normal;
            background-color: transparent;
            border: 0;
        }
        .dropdown {
            margin-top: 4px !important;
        }
        .dropdown-menu > li {
            text-align: center;
            display: block;
            border-top: 1px solid #efece7;
        }
        .dropdown-menu > li:first-child {
            border-top: none;
        }
        .dropdown-menu > li > a {
            clear: both;
            color: var(--color-text-onlight);
            display: block;
            font-weight: normal;
            line-height: 1.92857;
            font-size: 0.85rem;
            padding: 0px 15px;
            white-space: nowrap;
            text-shadow: none;
        }
        .dropdown-menu > li > form > button {
            display: block;
            width: 100%;
            text-align: center;
            background-color: rgb(254 254 251);
            border-top-color: #e0dcd4;
            clear: both;
            color: var(--color-text-onlight);
            font-weight: normal;
            line-height: 1.92857;
            font-size: 1.3rem;
            padding: 0px 15px;
            white-space: nowrap;
            text-shadow: none;
            border: none;
        }
        .dropdown-menu > li > form > button:hover {
            color: #e6874e;
        }
        .dropdown-menu > li.logout {
            background: url(../images/th_bg.png) 0px 0px repeat;
            border-top-color: #e0dcd4;
        }
        .dropdown-menu > li > a:hover,
        .dropdown-menu > li > a:focus {
            background-color: transparent !important;
            color: #e6874e;
            text-decoration: none;
        }
        .dropdown-menu > li > a:hover,
        .dropdown-menu > li > form > button:focus {
            background-color: transparent !important;
            color: #e6874e;
            text-decoration: none;
        }
        .webshop-nav {
            margin-bottom: 1.6rem;
            position: relative;
            border-bottom: 1px solid transparent;
        }
        .webshop-nav > ul {
            display: flex;
            flex-direction: row;
            align-items: center;
            height: 4.375rem;
        }
        .webshop-nav .dropdown-menu {
            flex-direction: column;
        }
        .webshop-nav > ul > li {
            list-style-type: none;
            text-align: center;
            flex: 1 1 auto;
            border-right: 1px solid rgba(10, 21, 28, 0.1);
        }
        .webshop-nav .dropdown-menu {
            transition: all 0.5s ease;
        }
        .webshop-nav > ul > li > a, .webshop-nav button, .webshop-nav > ul > li > label {
            font-family: "bitterregular";
            display: block;
            position: relative;
            font-size: 1.1rem;
            color: #ffffff;
            margin-top: 0px;
            transition: all 0.25s ease 0s;
            text-shadow: 1px 1px 1.5px rgba(5, 18, 21, 0.85);
        }
        .webshop-nav > ul > li:last-child {
            border: none;
        }
        .webshop-nav ul .dropdown-menu > li > a {
            padding: 7px 15px;
        }
        .webshop-nav button:hover, .webshop-nav > ul > li > a:hover
        .webshop-nav button:focus, .webshop-nav > ul > li > a:focus {
            background-color: transparent;
            text-decoration: none;
            color: #4f7475;
            text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
        }
        .webshop-nav > ul, .search-form {
            border-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3Cpattern%20id%3D%22a%22%20patternUnits%3D%22userSpaceOnUse%22%20width%3D%223.5%22%20height%3D%223.5%22%20patternTransform%3D%22rotate(35)%22%3E%3Cpath%20stroke%3D%22%230B2124%22%20stroke-width%3D%223%22%20d%3D%22M0%200v3.5%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22url(%23a)%22%20opacity%3D%22.3%22%2F%3E%3C%2Fsvg%3E");
            border-image-slice: 2;
            border-width: 3px 0 3px 0;
            border-style: solid;
        }
        
        /*TOP BAG==========================================================================*/
        .top-ribbon {
            background: url(../images/bag_ribbon.png) bottom center no-repeat;
            height: 95px;
            width: 95px;
            text-align: center;
            position: absolute;
            right: 0;
            z-index: 10;
            transition: all 0.15s linear 0s;
        }
        .top-ribbon:before {
            content: "";
            background: url(../images/top_cart_bg.png) 0px 0px repeat;
            position: absolute;
            top: -8px;
            height: 8px;
            left: 8px;
            right: 8px;
            display: block;
        }
        .cart-number {
            font-family: "bitterregular";
            color: #d56c2d;
            text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
            background: url(../images/bag_icon_top.png) top center no-repeat;
            padding: 34px 0px 0px 0px;
            font-size: 1.1em;
            position: relative;
            top: 40px;
            transition: all 0.15s linear 0s;
        }
        .mobile {
            display: none;
        }
        .cart-number:hover {
            color: #d56c2d;
        }
        .top-ribbon:hover {
            height: 100px;
        }
        .top-ribbon:hover .cart-number {
            top: 45px;
        }
        
        /*LOGIN & USER MENU==========================================================================*/

        #login-menu, #user-menu {
            grid-area: login;
            justify-self: end;
            color: rgb(254 254 251);
            text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
            font-family: "Roboto", Helvetica, Arial, sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            min-width: 140px;
            text-align: center;
            padding-top: 5px;
            height: fit-content;
            border-bottom: 3px solid transparent;
        }
        #user-menu {
            display: flex;
        }
        #user-menu .dropdown-menu-toggle::before {
            font-family: FontAwesome6;
            content: "\f007";
            margin-inline-end: 0.5em;
        }
        #login-menu > ul > li:first-child::after {
            content: " /"
        }
        .dropdown-menu-toggle input {
            display: none;
        }
        label:has(+ .dropdown-menu) a::before, label:has(+ .dropdown-menu):before, button:has(+ .dropdown-menu)::before{
            font-family: FontAwesome6;
            content: "\f0c9";
            margin-inline-end: 0.5em;
        }
        #login-menu .dropdown-menu-toggle {
            display: none   ;
        } 
        #login-menu li {
            display: inline-block;
        } 
        #user-menu li {
            display: block;
            padding: 4px 1px;
        }
        #login-menu li a,
        #user-menu > a {
            color: #fdfcf2;
            transition: all 0.25s ease 0s;
        }
        #login-menu li a:hover {
            color: #4f7475;
            text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
        }
        #user-menu .spinner, #login-menu .spinner {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: block;
            margin:3px auto;
            position: relative;
            color: rgb(254, 254, 251);
            box-sizing: border-box; 
            animation: dotSpinner 2s linear infinite;
        }
        #user-menu .pt-btn-action-logout {
            background: none;
            font-family: "Roboto", Helvetica, Arial, sans-serif;
            text-shadow: none;
            color: var(--btn-primary-bckg-color);
        }
        /*SEARCH==========================================================================*/
        .search-form {
            height: 4.375rem;
            position: relative;
            padding: 12px 0 12px 20px;
        }
        .form-control[name='search']{
            border: 1px dashed #699b9c;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.4);
            height: 40px;
            color: #5e8586;
            box-shadow: none;
        }
        .form-control[name='search']::placeholder {
            color: #7f737f;
        }
        .form-control[name='search']:focus {
            border-color: #7f737f;
            box-shadow: none;
            outline: 0 none;
        }
        /*SLIDER==========================================================================*/
        .promotion-slider {
            grid-area: slider;
            position: relative;
            margin-block-end: 1rem;
            overflow: hidden;
        }
        .promotion-slider-item {
            display: none;
            min-width: 100%;
            overflow-y: hidden;
            color: transparent;
            backface-visibility: hidden;
            max-height: 600px;
        }
        .pt-carousel-track .promotion-slider-item  {
            display: block;
        }
        .promotion-slider-item img{
            width: 100%;
        }
        .promotion-slider .pt-carousel-navigation {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: space-between;
            pointer-events: none;
            button {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 0;
                color: var(--color-neutral-1200);
                text-shadow: none;
                border-radius: 50%;
                border:0;
                background-color: var( --color-neutral-400);
                background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230px%22%20height%3D%2230px%22%20viewBox%3D%220%200%201024%201024%22%20class%3D%22icon%22%3E%3Cpath%20d%3D%22M338.752%20104.704a64%2064%200%20000%2090.496l316.8%20316.8-316.8%20316.8a64%2064%200%200090.496%2090.496l362.048-362.048a64%2064%200%20000-90.496L429.248%20104.704a64%2064%200%2000-90.496%200z%22%2F%3E%3C%2Fsvg%3E");
                background-repeat: no-repeat;
                background-position: center;
                background-size: 60% 60%;
                opacity: 0.7;
                pointer-events: auto;
            }
            button:before {
                display: none;
            }
            button.pt-btn-prev {
                background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230px%22%20height%3D%2230px%22%20viewBox%3D%220%200%201024%201024%22%20class%3D%22icon%22%3E%3Cpath%20d%3D%22M685.248%20104.704a64%2064%200%20010%2090.496L368.448%20512l316.8%20316.8a64%2064%200%2001-90.496%2090.496L232.704%20557.248a64%2064%200%20010-90.496l362.048-362.048a64%2064%200%200190.496%200z%22%2F%3E%3C%2Fsvg%3E");
            }
        }
        .promotion-slider .pt-carousel-indicators {
            display: flex;
            gap: 1em;
            justify-content: center;
            margin-block-start: 0.5em;
        }
        .promotion-slider .pt-carousel-indicator{
            width: 1em;
            height: 1em;
            border-radius: 100%;
            border: 2px solid var(--color-neutral-800);
        }
        .promotion-slider .pt-carousel-indicator.active{
            background-color: var(--color-neutral-800);
            background-clip: content-box;
            padding: 0.1em;
        }

    }
    header.webshop-header:after {
        background: linear-gradient(-45deg, rgba(254, 254, 251, 1) 45%, rgba(11, 33, 36, 0.15) 55%, rgba(254, 254, 251, 0) 70%), linear-gradient(45deg, rgba(254, 254, 251, 1) 45%, rgba(11, 33, 36, 0.15) 55%, rgba(254, 254, 251, 0) 70%);
        background-position: top;
        background-repeat: repeat-x;
        background-size: 9px 9px;
        content: " ";
        display: block;
        position: absolute;
        bottom: 5px;
        left: 0px;
        width: 100%;
        height: 4.5px;
    }
    /*DIALOGS -------------------------------------------------*/

    .pt-dialog {
        font-family: 'bitterregular', serif;
        border-radius: 0.5em;
        border: 1px solid var(--color-neutral-600);
        animation: fadeIn 0.5s ease-in forwards;
        background-color: var(--color-neutral-100);
        z-index: 1000!important;
    }

    .pt-dialog .pt-dialog-header {
        margin-block-end: 1em;
        padding-block: 0.5em;
        color: white;
        text-shadow: 1px 1px 1.5px var(--color-primary-blue-1100);
        padding-inline: 1em;
        background-color: var(--color-primary-blue-600);
    }
    .pt-dialog .pt-dialog-content {
        padding-inline: 1em;
        margin-block-end: 1em;
    }
    .pt-dialog .pt-dialog-footer {
        display:flex;
        padding-block: 0.5em;
        padding-inline: 1em;
        gap: 0.5em;
        justify-content: flex-end;
    }

    .pt-dialog .pt-btn-action-close {
        width: 1.15em;
        height: 1.15em;
        background-color: var(--color-neutral-400)!important;
    }
    .pt-dialog .pt-btn-action-close:focus {
        outline: none;
    }
    .pt-dialog .pt-btn-action-close:before {
        display: none;
    }
    .pt-dialog .pt-btn-action-close .pt-icon{
        width: 1em;
        height: 1em;
        top: 0.1em;
        left: 0.1em;
        /* padding: 0; */
        position: absolute;
    }
    .pt-dialog.login {
        top: 15% !important;
        transform: translate(-50%) !important;
        .login-btn {
            cursor: pointer;
        }
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 0.75em;
            margin-block-start: 1em;
            width: 300px;
            max-width: 95vw;
        }
        .login-form .login-error {
            margin-block: 0.5em;
            color: var(--color-error);
        }
        .login-form .login-info {
            margin-block: 0.5em;
            color: var(--color-info);
        }
    }
    .pt-dialog.product-price-info {
        h4 {
            text-align: left;
            margin-block-start: 0.25em;
            margin-block-end: 1.25em;
        }
        dl {
            display: grid;
            grid-template-columns: max-content auto;
            font-size: 0.9em;
        }
        dt {
            text-align: left;
            font-weight: bold;
        }
        dd {
            margin-inline-start: 1em;
            text-align: right;
        }
        dd.saleprice-info, dt:has(+ dd.saleprice-info) {
            color: var(--color-warning);
            margin-block-start: 0.5em;
            font-weight: bold;
            font-size: 1rem;
        }
    }
    .pt-dialog.product-added-info{
        max-height: 80vh;
        div {
            height: 100%;
            display: flex;
            flex-direction: column;
            max-height: inherit;
            overflow: hidden;
            flex-direction: column;
        }
        .pt-dialog-content {
            overflow-y: auto;
            flex: 1 1 auto;
            display: grid;
            column-gap: 1em;
            grid-template-areas: 'image title'
            'image cartinfo'
            'shippinginfo shippinginfo';
        }
        .pt-dialog-content figure {
            grid-area: image;
            width: 120px;
            height: 150px;
        }
        .pt-dialog-content .title {
            grid-area: title;
        }
        .pt-dialog-content .cart-info {
            grid-area: cartinfo;
            width: 30em;
            padding-inline: 2em;
        }
        .pt-dialog-footer a {
            align-self: end;
            color: var(--webshop-color-link);
        }
    }

    /*MAIN CONTENT ----------------------------------- */
    main {
        max-width: 1150px;
        width: calc(100% - 1em);
        margin: auto;
        min-height: 100vh;
        .pt-carousel-track {
            padding: 0.0em;
        }
        .slide {
            flex: 0 0 20em;
            height: 12em;
            border: 1px solid;
            padding: 10px;
            box-sizing: border-box;
            display: flex;
            border-radius: 0.25em;
            justify-content: flex-start;
            align-items: flex-start;
        }   
        .pt-carousel.single-slide .pt-carousel-track {
            padding-inline: 3em;
            gap: 6em;
        }
        .pt-carousel.single-slide .slide {
            flex: 0 0 100%;
        }
        .pt-carousel-navigation {
            --offset: max(-1.75em, min(-0.75em, (0px - var(--side-padding))));
            position: absolute;
            top: 0;
            transform: translateY(9em);
            left: var(--offset);
            right: var(--offset);
            display: flex;
            justify-content: space-between;
            padding: 0.5em;
            pointer-events: none;
            .pt-btn {
                width: 2.5em;
                height: 2.5em;
                border-radius: 50%;
                border:0;
                padding:0 !important;
                color: var( --color-neutral-1200);
                background-color: var(--color-neutral-700);
                opacity: 0.5;
                pointer-events: auto;
            }
            .pt-btn::before {
                display: none;
            }
            .pt-btn.pt-btn-state-disabled {
                color: var(--color-neutral-900);
            }
        }
        .pt-carousel-indicators {
            display: flex;
            gap: 0.5em;
            justify-content: center;
        }
        .pt-carousel .pt-carousel-indicator {
            width: 0.7em;
            height: 0.7em;
            border: 2px solid;
            border-radius: 100%;
            color: rgba(137, 43, 226, 0.284);
        }
        .pt-carousel .pt-carousel-indicator.active {
            background-color: rgba(137, 43, 226, 0.284);
        }
    }
    main.productlist-collection {
        section.simple-list {
            display: grid;
            grid-template-areas:
                'heading heading'
                'desc link'
                'list list';
            grid-template-columns: 1fr auto;
        } 
        section.simple-list > .card-list {
            grid-area: list;
        }
    } 
    main.productlist {
        section.simple-list {
            display: flex;
            flex-direction: column;
        } 
        section.simple-list > .card-list.ordered-list .pt-card {
            flex: 0 0 100%;
            min-height: 24em;
            display: grid;
            grid-template-areas: "rank image title" "rank image icons" "rank image description" "rank image price" "rank image actions";
            grid-template-columns: 4rem 1fr 3fr;
            background-image: none;
        }
        section.simple-list > .card-list.ordered-list .pt-card.product-card-loader {
            display: flex;
        }
        section.simple-list > .card-list.ordered-list  .pt-card .pt-card-image-container {
            grid-area: image;
            background-color: transparent;
        }
        section.simple-list > .card-list.ordered-list  .pt-card .pt-card-title {
            grid-area: title;
            font-size: 1.25em;
            height: auto;
            margin-block-end: 1em;
        }
        section.simple-list > .card-list.ordered-list  .pt-card .product-icons {
            grid-area: icons;
            border: none;
            margin: 0;
            padding: 0;
            height: auto;
        }
        section.simple-list > .card-list.ordered-list  .pt-card .description {
            grid-area: description;
            font-size: 0.9em;
            font-family: Roboto, Helvetica, Arial, sans-serif;
            padding: 1em 3em;
        }
        section.simple-list > .card-list.ordered-list  .pt-card .product-price {
            grid-area: price;
        }
        section.simple-list > .card-list.ordered-list  .pt-card .pt-card-actions {
            grid-area: actions;
        }
        section.simple-list > .card-list.ordered-list  .pt-card .pt-card-rank {
            grid-area: rank;
        }
    }
    main.productlist-collection, main.productlist {
        display: flex;
        flex-wrap: wrap;
        justify-items: stretch;
        flex-direction: row;
        gap: var(--card-gap);
        container-type: inline-size;
        > section {
            margin-block-start: 1.25em;
        }
        section > h2 {
            color: var(--color-primary-blue-800);
            font-size: 1.825rem;
        }
        section > h2:has(+ p) {
            margin-block-end: 0.5rem;
        }
        > section > p {
            color: var(--color-primary-blue-800)
        }
        > section > a {
            color: var(--webshop-color-link)
        }
        section.carousel-list {
            flex: 0 0 100%;
            display: grid;
            grid-template-areas:
                'heading heading'
                'desc link'
                'list list';
            font-family: 'bitterregular', serif;
            grid-template-columns: 1fr auto;
            --carousel-item-count: 5;
            --carousel-gap: var(--card-gap);
        }
        .pt-carousel-track:has(.model-list-tile) {
            --carousel-item-count: 4;
        }
        > section h2 {
            grid-area: heading;
        }
        > section p {
            grid-area: desc;
        }
        > section a {
            grid-area: link;
            align-self: end;
        }
        > section  > a:after {
            content: "\2192";
        }
        .simple-list .card-list {
            margin-block-start: 1em;
        }
        .pt-carousel {
            grid-area: list;
            margin-block-start: 1em;
        }
        section.simple-list {
            flex: 0 0 100%;
            font-family: 'bitterregular', serif;
            --row-card-count: 5;
        } 
        section.simple-list > .card-list {
            container-type: inline-size;
        }
        section.simple-list > .card-list .items {
            display: flex;
            flex-wrap: wrap;
            gap: var(--card-gap);
        }
        section.simple-list > .card-list.ordered-list > .items {
            flex-direction: column;
        }
        section.simple-list > .card-list .pt-card {
            flex: 0 0 calc(100% / var(--row-card-count) - (var(--card-gap) * (1 - (1 / var(--row-card-count)))));
        }
        .pt-card.product-card-loader {
            height: 31.5em;
            background-color: #cec8be;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .pt-card.product-card-loader::before {
            content: '';
            font-size: 10px;
            width: 1em;
            height: 1em;
            border-radius: 50%;
            position: relative;
            text-indent: -9999em;
            animation: mulShdSpin 1.3s infinite linear;
            transform: translateZ(0);
        }
        .pt-card {
            background-image: url(../images/noisy_bg.png);
            background-color: var(--product-card-background-color);
            background-blend-mode: multiply, normal, normal;
            background-size: 30%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: var(--color-text-onlight);
            border-radius: var(--product-card-border-radius);
            text-align: center;
            position: relative;
        }
        .pt-card-image-container {
            padding: 0.5em;
            background-color: #dfd6c7;
            align-content: center;
            height: 18em;
            border-top-left-radius: var(--product-card-border-radius);
            border-top-right-radius: var(--product-card-border-radius);
        }
        .pt-card-image-container img {
            max-height: 100%;
            margin: auto;
        }
        .pt-card-image-container.toy, .pt-card-image-container.stationery, .pt-card-image-container.pen {
            background-color: white;
            border: 0.5em solid #dfd6c7;
        }
        .pt-card-title {
            font-family: 'bitterregular';
            font-size: 1em; 
            display: block;
            line-height: 1.25em;
            padding-inline: 0.5em;
            margin-block: 0.5em;
            text-align: center;
            height: 3.75em;
            overflow: hidden;
        }
        .pt-card-actions {
            text-align: center;
            padding: 0.5em 0.5em 1em 0.5em;
            height: 4rem;
        }
        .pt-card-actions .pt-btn {
            background-color: var(--webshop-color-primary-darker);
        }
        .pt-card-actions .pt-btn-state-disabled {
            background-color: var(--color-neutral-700);
        }
        .product-icons {
            display: flex;
            justify-content: center;
            gap: 0.25em;
            padding-block-end: 1em;
            border-block-end: 1px dashed var(--color-neutral-600);
            height: 3.5em;
        }
        .product-icons > li {
            display: inline-block;
            margin-inline-end: 0.25em;
            text-align: center;
            border: 1px dashed var(--webshop-color-primary-darker);
            border-radius: 3px;
            width: 2.5em;
            height: 2.5em;
        }
        .product-icons > li > * {
            text-indent: -999em;
            display: inline-block;
            height: 1.75em;
            width: 1.75em;
            margin: 5px;
        }
        .product-icons .book-icon {
            background: url(../images/book_icon.png) top center no-repeat;
        }
        .product-icons .ebook-icon {
            background: url(../images/ebook_icon.png) top center no-repeat;
        }
        .product-icons .toy-icon {
            background: url(../images/game_icon.png) top center no-repeat;
        }
        .product-icons .filmstrip-icon {
            background: url(../images/dia_icon.png) top center no-repeat;
        }
        .product-icons .e-audiobook-icon {
            background: url(../images/e-audiobook_icon.png) top center no-repeat;
        }
        .product-icons .cd-icon {
            background: url(../images/cd_icon.png) top center no-repeat;
        }
        .product-icons .dvd-icon {
            background: url(../images/dvd_icon.png) top center no-repeat;
        }
        .product-icons .voucher-icon {
            background: url(../images/voucher_icon.png) top center no-repeat;
        }
        .product-icons .age-icon {
            font-size: 0.8rem;
            text-indent: 0;
            color: #6e9fa0;
            font-family: "Roboto Slab", serif !important;
            text-align: center;
            display: flex;
            height: 100%;
            width: 100%;
            margin: 0;
            align-items: center;
            justify-content: center;
        }
        .product-price {
            height: 3rem;
        }
        .product-price .original-price {
            text-decoration: line-through;
            font-size: 0.9em;
            color: var(--color-neutral-800)
        }
        .product-price .saleprice {
            color: var(--webshop-color-link)
        }
        .add-to-cart.pt-btn-state-loading {
            opacity: 0.5;
            cursor: not-allowed;
        }
        span.info-icon {
            display: inline-block;
            background-color: var(--color-info);
            color: var(--color-text-ondark);
            border-radius: 50%;
            width: 1.5em;
            height: 1.5em;
            font-size: 0.7em;
            margin-inline: 0.5em;
            text-align: center;
            line-height: 1em;
            padding: 0.3em;
        }
        .toplist-rank {
            position: absolute;
            top: 0.4em;
            left: 0.4em;
            font-size: 1.5em;
            font-family: 'bitterregular';
            width: 2em;
            height: 2em;
            background-color: var(--color-brand-1000);
            border-radius: 50%;
            color: white;
            opacity: 75%;
            align-content: center;
        }
        .model-list-tile {
            --card-size: calc((100cqw / var(--small-tile-count)) - (var(--card-gap) / var(--small-tile-count) * (var(--small-tile-count) - 1)));
            flex: 0 0 var(--card-size);
            height: var(--card-size);
            padding: calc(var(--card-size) / 16);
            gap: 0.7em;
            border-radius: 0.5em;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            background-size: cover;
            margin-block-start: 1em;
        }
        .model-list-tile.large-tile {
            --card-size: calc((100cqw / var(--tile-count)) - (var(--card-gap) / var(--tile-count) * (var(--tile-count) - 1)));
        } 
        .model-list-tile.info-top {
            justify-content: flex-start;
        }
        .model-list-tile.info-bottom {
            justify-content: flex-end;
        }
        .model-list-tile h3 {
            font-size: calc(var(--card-size) / 14);
            margin-block-start: 0.5em;
        }
        .model-list-tile .pt-btn {
            background-color: var(--color-primary-red-600);
            align-self: center;
        }
        .model-list-tile:nth-of-type(2n-1) {
            background-color: var(--color-secondary-green-500);
        }
        .model-list-tile:nth-of-type(2n) {
            background-color: var(--color-primary-blue-500);
        }
    }
    @media screen and (max-width: 992px) {
        header.webshop-header {
            grid-template-areas:
            'lmargin logo sitemenu sitemenu sitemenu sitemenu sitemenu sitemenu login login cart rmargin'
            'lmargin menu menu menu menu menu menu menu menu search search rmargin'
            'lmargin slider slider slider slider slider slider slider slider slider slider rmargin';;
            img#top-logo {
                width: 70px;
            }
            #site-navigation ul > li {
                font-size: 2.2rem;
            }
            .webshop-nav > ul > li > a, .webshop-nav > ul > li > label {
                font-size: 1em;
            }
            .top-ribbon {
                height: 85px;
                width: 65px;
            }
            .cart-number {
                font-size: 0.9em;
            }
            .search-form {
                padding-left: 8px;
            }
            .search-form .form-control {
                height: 36px;
                font-size: 13px;
            }
            .btn-searchbutton {
                height: 36px;
                padding: 5px 7px;
                font-size: 13px;
            }
            #login-menu, #user-menu {
                grid-column-start: 8;
                grid-column-end: 11;
            }
        }
        main.productlist-collection, main.productlist {
            font-size: 14px;
            section.carousel-list {
                --carousel-item-count: 4;
            }
            section.simple-list {
                --row-card-count: 4;
            }
            .pt-btn {
                padding-inline: 1em;
            }
            .model-list-tile .pt-btn {
                padding-block: 0.5em;
            }
        }
    }
    @media screen and (max-width: 768px) {
        :root {
            --card-gap: 0.75em;
        }
        body > footer{
            background: url(../images/footer_bg_m.webp) repeat-x;
        }
        .pt-list  .pagination {
            font-size: 20px;
        }
        header.webshop-header {
            grid-template-columns: 5px 1fr 4fr 2fr 1fr 5px;
            grid-template-rows: auto auto 1fr;
            grid-template-areas:
            'lmargin logo search login cart rmargin'
            'lmargin sitemenu sitemenu sitemenu sitemenu rmargin'
            'lmargin menu menu menu menu rmargin'
            'lmargin slider slider slider slider rmargin';
            #login-menu, #user-menu {
                grid-area: login;
                align-self: center;
                position: relative;
            }
            .webshop-header .search-form {
                margin-top: 10px;
                height: auto;
            }
            .btn-searchbutton {
                padding: 5px 15px;
            }
            #login-menu > ul{
                display: none;
                left: 50%;
                right: auto;
                text-align: center;
                position: absolute;
                transform: translate(-50%, 0);
                border: 1px solid rgba(0, 0, 0, 0.15);
                border-radius: 4px;
                background-clip: padding-box;
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
                z-index: 1000;
                width: 200px;
                margin: 2px 0 0;
                top: 95%;
                background-color: rgb(254 254 251);
            }
            #login-menu > ul > li{
                text-align: center;
                display: block;
                border-bottom: 1px solid #efece7;
            }
            #login-menu .login-btn, #login-menu .registration-link {
                color: var(--color-text-onlight);
                display: block;
                font-weight: normal;
                line-height: 3em;
                padding: 0px 15px;
                white-space: nowrap;
                text-shadow: none;
                font-size: 1.35em;
            }
            #login-menu .spinner {
                display: none;
            }
            .webshop-header .dropdown-menu > li > a, .webshop-header .dropdown-menu > li > form > button  {
                font-size: 1.25em;
            } 
            #login-menu > ul > li a:hover{
                color: #e6874e;
            }
            #login-menu .dropdown-menu-toggle {
                display: block;
            }
            #login-menu .dropdown-toggle {
                margin-top: 10px;
                font-size: 1.6rem;
                min-width: auto;
                border-bottom: 3px solid transparent;
            }
            #login-menu .dropdown-menu-toggle::before {
                font-family: FontAwesome6;
                content: "\f007";
                font-size: 1.6rem;
            }
            #login-menu > ul > li:first-child::after {
                content: "";
            }
            #login-menu li a {
                color: rgb(83, 70, 83);
                font-weight: normal;
            }
            #user-menu .dropdown-menu-toggle::before {
                font-size: 1.6rem;
            }
            #user-menu .username {
                display: none;
                position: absolute;
                border: 1px solid rgba(0, 0, 0, 0.15);
                width: 200px;
                z-index: 1010;
                height: 3rem;
                top: 2.6rem;
                padding: 0.3rem 0;
                left: 50%;
                right: auto;
                background-color: rgb(101 91 101);
                transform: translate(-50%, 0);
            }
            #user-menu .dropdown-menu {
                width: 200px;
                top: 5rem;
            }
            @media screen and (hover) {
                #login-menu:hover > ul, #login-menu > ul:hover {
                    display: block;
                }
                #user-menu:hover > .username {
                    display: block;
                }
                .username:hover > .dropdown-menu {
                    display: block;
                }
            }
            @media screen and (pointer: coarse) {
                /*#user-menu .dropdown-menu-toggle:focus, #login-menu .dropdown-menu-toggle:focus {
                    color: rgb(79, 116, 117);
                    text-shadow: 1px 1px 1px rgba(254, 254, 251, 0.7);
                }
            #user-menu .dropdown-menu-toggle:focus ~ ul, #login-menu .dropdown-menu-toggle:focus ~ ul {
                    display: block;
                }
                #user-menu .dropdown-menu-toggle:focus ~ .username, #login-menu .dropdown-menu-toggle:focus ~ .username {
                    display: block;
                }*/
                .dropdown-menu-toggle:has(input:checked)  {
                    color: rgb(79, 116, 117);
                    text-shadow: 1px 1px 1px rgba(254, 254, 251, 0.7);
                }
                .dropdown-menu-toggle:has(input:checked) ~ .username{
                    display: block!important;
                }
                .webshop-nav li, .login-menu li, .user-menu li {
                    line-height: 3rem;
                }
                .webshop-nav > ul > li > .dropdown-menu-toggle:checked {
                    color: rgb(79, 116, 117);
                    text-shadow: 1px 1px 1px rgba(254, 254, 251, 0.7);
                }
                .webshop-nav ul > li{
                    font-size: 1.25rem;
                }
                .webshop-nav ul > li > ul > li > a {
                    font-size: 1.1rem;
                }
                /* .webshop-nav:focus > ul {
                    display: block;
                    visibility: visible;
                    opacity: 1;
                    transition: all 0.5s ease;
                } */
                .dropdown-menu-toggle:has(input:checked) ~ ul {
                    display: block!important;
                    visibility: visible;
                    opacity: 1;
                    transition: all 0.5s ease;
                }
            }
            .top-ribbon {
                top: -2px;
                height: 90px;
            }
            .webshop-nav {
                margin-bottom: 0.8rem;
                align-self: center;
            }
            .webshop-nav > ul {
                border-bottom: none;
                height: 5rem;
            }
            .search-form {
                border: none;
            }
            #site-navigation ul {
                padding-top: 0;
            }
            #site-navigation ul > li {
                line-height: normal;
            }
        }
        main.productlist-collection, main.productlist {
            section.carousel-list {
                grid-template-areas:
                    'heading heading'
                    'desc desc'
                    '. link'
                    'list list';
            }
            section.simple-list {
                grid-template-areas:
                    'heading heading'
                    'desc desc'
                    '. link'
                    'list list';
            }
        }
        main.productlist-collection .pt-carousel-track:has(.model-list-tile) {
            --carousel-item-count: 2;
        }
    }
    @media screen and (max-width: 600px) {
        :root {
            --tile-count: 1;
            --small-tile-count: 2;
        }
        header.webshop-header {
            grid-template-columns: 5px 45px 10fr 1fr 1fr 1fr 5px;
            grid-template-areas:
            'lmargin logo search login menu cart rmargin'
            'lmargin sitemenu sitemenu sitemenu sitemenu sitemenu rmargin'
            'lmargin slider slider slider slider slider slider';
            z-index: 900;
            column-gap: 0.25em;
            img#top-logo {
                height: 45px;
                width: 45px;
            }
            #user-menu, #login-menu {
                grid-area: login;
                min-width: 12vw;
                padding-top: 0;
                min-width: 0;
            }
            #user-menu .dropdown-menu-toggle::before {
                font-size: 1.6rem;
                margin-inline-end: 0;
            } 
            #user-menu .dropdown-menu, #user-menu .username {
                width: 60vw;
            }
            #login-menu .dropdown-menu-toggle::before {
                font-size: 1.6rem;
            }
            #login-menu .dropdown-toggle  {
                margin: 0;
            }
            #user-menu .spinner, #login-menu .spinner {
                display: none;
            }
            .login-menu {
                top: 40px;
            }
            #login-menu > ul {
                display: none;
            }
            #site-navigation ul {
                padding: 0;
            }
            #site-navigation ul > li {
                line-height: 1.5em;
                font-size: 1.85em;
            }
            .top-ribbon {
                display: none;
            } 
            .top-cart {
                align-self: center;
                text-align: center;
                min-width: 12vw;
            }
            .top-cart::before {
                font-family: FontAwesome6;
                content: "\f290";
                font-size: 1.6rem;
                color: rgb(254 254 251);
                text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
                display: block;
                margin-bottom: 0.3em;
            }
            .top-cart:has(.cart-live)::before {
                color: rgb(230, 135, 78, 0.9);
            }
            .search-form {
                margin: 0;
                justify-self: center;
                align-self: center;
                padding: 0.75em 0.25em;
                width: 100%;
            }
            .search-form .form-control {
                height: 40px;
            }
            .btn-searchbutton {
                height: 40px;
                padding: 3px 11px;
            }
            .btn-searchbutton .glyphicon-search {
                font-size: 16px;
            }
            .webshop-nav {
                position: relative;
                text-align: center;
                height: auto;
                min-width: 10vw;
                color: rgb(254 254 251);
            }
            .webshop-nav::before {
                background: none;
            }
            .webshop-nav .dropdown-menu-toggle::before {
                font-family: FontAwesome6;
                content: "\f0c9";
                text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
                font-size: 1.6rem;
                display: block;
                margin-top: 0.3em;
            }
            @media screen and (hover) {
                .webshop-nav:hover > ul {
                    display: block;
                }
            }
            @media screen and (pointer: coarse) {
                .webshop-nav:focus {
                    color: rgb(79, 116, 117);
                }
            }
            .webshop-nav::after {
                background: none;
            }
            .webshop-nav > ul {
                position: absolute;
                display: none;
                left: 50%;
                right: auto;
                text-align: center;
                transform: translate(-75%, 0);
                border: 1px solid rgba(0, 0, 0, 0.15);
                border-radius: 4px;
                background-clip: padding-box;
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
                z-index: 1020;
                width: 60vw;
                height: auto;
                margin: 2px 0 0;
                top: 95%;
                background-color: rgb(254 254 251);
            }
            .webshop-nav > ul > li{
                text-align: left;
                display: block;
                border-bottom: 1px solid #efece7;
            }
            .webshop-nav > ul > li a, .webshop-nav > ul .dropdown-menu-toggle {
                color: var(--color-text-onlight);
                display: block;
                font-weight: normal;
                padding: 0px 15px;
                white-space: nowrap;
                text-shadow: none;
            }
            .webshop-nav > ul .dropdown-menu {
                border: 0;
                position: relative;
                box-shadow: none;
                -webkit-box-shadow: none;
                float: none;
            }
            .webshop-nav > ul .dropdown-menu li {
                text-align: left;
                text-shadow: none;
            }
            .webshop-nav > ul > li label {
                color: rgb(140, 133, 140);
                text-shadow: none;
            }
            .webshop-nav > ul .dropdown-menu > li > a {
                padding: 0.2rem 3rem;
            }
            .webshop-nav > ul > li a, .webshop-nav > ul > li label {
                font-family: "Roboto";
            }
            .webshop-nav > ul .dropdown-menu-toggle::before {
                content: none;
            }
            .webshop-nav > ul .dropdown-menu-toggle::after {
                content: "›";
                font-family: "Roboto";
                font-size: 2rem;
                display: inline-block;
                transform: rotate(90deg);
                transition: all 0.4s ease 0s;
                margin-left: 10px;
            }  
            .webshop-nav > ul .dropdown-menu-toggle:has(input:checked)::after {
                transform: rotate(0deg);
                transition: all 0.4s ease 0s;
            }
            .webshop-nav > ul > li > label  {
                display: inline-flex;
                flex-direction: row-reverse;
            }
            .top-slider {
                margin: 0!important;
            }
        }
        main.productlist-collection, main.productlist {
            section.carousel-list {
                --carousel-item-count: 2;
            }
            section.simple-list {
                --row-card-count: 2;
            }
            section.simple-list > .card-list.ordered-list  .pt-card {
                grid-template-areas:
                "rank title"
                "image description"
                "image price"
                "icons actions";
                grid-template-columns: 2fr 3fr;
                .pt-card-image-container {
                    height: auto;
                }
            }
        }
        .pt-dialog.product-added-info {
            max-width: 95vw;
            .pt-dialog-content figure {
                width: 7em;
                height: auto;
            }
            h2 {
                font-size: 1.25em;
                margin-block-end: 0.5em;
            }
            .pt-dialog-content .cart-info {
                padding: 0;
                width: 15em;
            }
        }
    }
    /*PAGE-SEARCH ----------------------------------- */
     
    .page-search-form-box {
        margin: 30px 10% 0 10%;
        width: calc(100% - 20%);
    }   
    .page-search-form {
        padding: 10px 0;
        border-radius: 3px;
        width: 100%;
        float: left;
    }
    .page-search {
        border: 1px dashed #699b9c;
        border-radius: 2px;
        background: #fdfbf2;
        height: 50px;
        color: #5e8586;
        box-shadow: none;
        font-size: 16px;
    }
    .page-search::placeholder {
        color: #7f737f;
    }
    .page-search:focus {
        border-color: #7f737f;
        box-shadow: none;
        outline: 0 none;
    }
    .page-search-form .btn-searchbutton {
        height: 50px;
    }

    /*FOOTER==========================================================================*/

    body > footer {
        margin-block-start: 2em;
        background: url(../images/footer_bg.webp) repeat-x;
        min-height: 135px;
        /*padding-bottom: 100px;
        padding-top: 100px;*/
    }
    .footer-container {
        border-top: 2px dotted #c8c7bf;
        padding-top: 20px;
        color: #ada89c;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.9);
        font-size: 1.3rem;
        font-family: "bitterregular";
    }
    .footer-menu {
        list-style: none;
    }
    .footer-menu li {
        display: inline-block;
        padding: 0 20px 0 0;
    }
    .footer-menu li a {
        color: #ada89c;
        transition: all 0.35s ease 0s;
    }
    .footer-menu li a:hover {
        color: #8c887d;
    }
    @media screen and (max-width: 768px) {
        body > footer{
            background: url(../images/footer_bg_m.webp) repeat-x;
        }
    }
    /* Old mainpage link - to be deleted after filters implementation */
    .old-main-link {
        max-width: 1150px;
        width: calc(100% - 1em);
        margin: auto;
        text-align: center;
        font-family: "bitterregular", serif;
        color: var(--color-neutral-900);
        margin-block: 1.5em;
        h3 {
            font-size: 1.5em;
            margin-block-end: 1.25em;
        }
        p {
            line-height: 1.8em;
        }
        .pt-btn {
            font-size: 1em;
            color: var(--color-text-ondark);
            text-shadow: 1px 1px 1.5px var(--color-primary-blue-1100);
            border: 0;
            padding: 0.75em 2em;
            border-radius: 0.3em;
            background-color: var(--color-primary-red-600);
            display: block;
            margin-block-start: 1em;
            width: fit-content;
            margin-inline: auto;
            position: relative;
        }
        .pt-btn:before {
            content: '';
            border: 1px dashed var(--color-text-ondark);
            border-radius: 0.25em;
            position: absolute;
            top: 3px;
            bottom: 3px;
            left: 4px;
            right: 4px;
            pointer-events: none;
        }
    }
}