#CookiebotWidget :focus-visible, #CookiebotWidget:not(.CookiebotWidget-open) .Cookiebotwidget-logo{
    outline: none !important;
    padding: 0!important;
}

/* Utilities */
.font-heading {
    font-family: "Gilroy", sans-serif;
}

.text-grey {
    color: #1a1a1a;
}

/* Product Page */
.gift-cards input[type="radio"]:checked + label {
    background-color: #81e6d9;
}

/* Cart Table Styles */
.data-label-visible:before {
    content: attr(data-label);
    padding-right: 1rem;
}

.table-row-group {
    display: table-row-group;
}

@media (min-width: 768px) {
    .md\:table-row-group {
        display: table-row-group;
    }

    .md\:data-label-hidden:before {
        display: none;
    }
}

.trim > *:last-child,
.trim > *:last-child > *:last-child {
    margin-bottom: 0;
}

/* RTE */
.rte p {
    margin-bottom: 1rem;
}

.rte a {
    color: #4fd1c5;
}

    .rte a:hover,
    .rte a:focus {
        color: #000;
        text-decoration: underline;
    }

.rte ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.rte h2,
.rte h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

/* Side menu / Cart */

.m_sidecart {
    float: left;
    height: 100vh;
}

.fixed-nav {
    position: relative;
}

.fixed-nav__background, .fixed-nav__menu, .fixed-nav__menu-button_mobile {
    background: var(--grey-50);
}

.fixed-nav__background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f1f1f1;
}

.fixed-nav__menu-button {
    width: 100%;
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    height: 36px;
    cursor: pointer;
    display: block;
}

.fixed-nav__menu {
    display: none;
    right: 100%;
    position: fixed;
    overflow: auto;
    right: -440px;
    width: 440px;
    top: 85px;
    bottom: 0;
    padding: 32px;
    transition: right 4.3s linear;
    -webkit-transition: 4.3s right linear;
    z-index: 10;
    transition: 1s;
    border-left: 1px solid #f1f1f1;
    animation: m_navanimation 0.25s forwards 0s ease-out;
}

.fixed-nav__menu--open {
    right: 0px;
}

.fixed-nav__menu ul {
    padding: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .fixed-nav__menu ul li {
        position: relative
    }

    .fixed-nav__menu ul ul {
        height: auto;
        display: none;
        font-size: 14px;
        padding: 10px 20px
    }

        .fixed-nav__menu ul ul li {
            font-size: 22px
        }

.fixed-nav__menu--open {
    display: block;
    transition: right 4.3s linear;
    -webkit-transition: 4.3s right linear;
    transition: 1s;
}




.m_nav-search {
    height: 56px;
    width: 100%;
    position: absolute;
    display: none;
}

    .m_nav-search.open {
        display: block;
    }

    .m_nav-search input[type=search] {
        width: 100%;
        height: 100%;
        background: var(--grey-50);
        font-style: normal;
        font-weight: normal;
        font-size: var(--h200);
        line-height: 20px;
        text-transform: uppercase;
        color: var(--grey-500);
        border: none;
        padding-left: 100px;
        outline: none;
    }

input[type="search"]::-webkit-search-cancel-button {
    /* Remove default */
    -webkit-appearance: none;
    /* Now your own custom styles */
    height: 0px;
    width: 0px;
    background: transparent;

}


    .m_nav-search label {
        opacity: 1;
        /* transform: scale(.8); */
        cursor: pointer;
        pointer-events: all;
        position: absolute;
        left: 80px;
        top: 20px;
    }

.m_backdrop {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -100vw;
    margin-left: -100vw;
    background-color: rgba(0,0,0, 0.45);
    z-index: 9;
    width: 1000vw;
    height: 1000%;
}

/* Sweetcookie */
/* link styles */
 .cookie__body a {
    color:var(--orange-500) !important;
  }
 .cookie__body a:hover {
    color:var(--grey-700) !important;
  }

.cookie-box {
    max-width: 300px;
    position: fixed;
    z-index: 9999999999;
    left: 0;
    bottom: 0;
    margin: 24px;
    text-align: center;
    filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.1));
    animation-duration: .9s;
    -webkit-animation-duration: .9s;
    -moz-animation-duration: .9s;
    -o-animation-duration: .9s;
    -webkit-animation-name: slideUp;
    animation-name: slideUp;
}

.cookie__headline{
    margin-top:12px;
    font-weight:500;
}


.cookie-svg{
    fill:var(--orange-500);
    animation: bounce 2.2s infinite ease-in-out;
}

.cookie-svg path:first-child{
    fill-opacity:0.10;
    animation: bounce 2s infinite ease-in-out;
}

@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-10px);}
	60% {-o-transform: translateY(-5px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-10px);}
	60% {transform: translateY(-5px);}
}

.cookie__top{
    display:Flex;
}

.top__block, svg{
    fill:var(--grey-00);
}

.top__block{
    flex-grow: 1;
    border-radius: 4px 4px 0 0;
    background-color:var(--grey-00);
}

.cookie__body{
    display:grid;
    grid-gap:24px;
    justify-items: center;
    padding-left:32px;
    padding-right:32px;
    padding-bottom:36px;
    background-color:var(--grey-00);
    font-size:14px;
    line-height:18px;
    color: var(--grey-900);
}

.cookie-btn-wrap{
    display:grid;
    grid-gap:12px;
}

.cookiebtn{
    display:block;
    background:var(--grey-700);
    color:var(--grey-00);
    padding:12px 24px;
    text-decoration:none;
    transition: 0.2s ease-in-out;
    margin-right: 0!important;
}

.cookiebtn{
    color:#ffffff !important;
    background-color:var(--grey-700);
}

.cookiebtn span{
    color:#ffffff !important;
}

.cookiebtn:hover span{
    color:var(--grey-00) !important;
}

.cookiebtn:hover{
    color:var(--grey-00) ;
    background-color:var(--orange-500);
}

.no-concent{
    font-size:12px;
    text-decoration:none;
    display:block;
}

.cookie__close{
    width:32px;
    height:32px;
    position: absolute;
    right:0;
    top:0;
   background-color:var(--orange-500);
    border-radius: 100%;
}

.cookie__close:hover{
    transform:rotate(180deg);
    transition: 0.3s ease-out;
}

.cookie__close:before, .cookie__close:after{
    content:"";
    height:1px;
    position: absolute; 
    top:48%;
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
    background-color:white;
    width:16px;
    transform:rotate(-45deg)
}

.cookie__close:after{
    transform:rotate(45deg)
}
        

@keyframes m_navanimation {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.empty-state-container {
    display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
}

.smiley {
    background: #E3DFDD;
    border-radius: 500px;
    height: 110px;
    width: 110px;
    display: grid;
    justify-content: center;
    align-content: center;
}

.empty-state-container h1 {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 27px;
    line-height: 140%;
    color: #39312B;
    margin: 8px 0px;
}
.empty-state-container h3 {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 140%;
    color: #39312B;
    margin: 8px 0px;
    max-width: 400px;
    text-align: center;
}

.empty-state-container a {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 140%;
    text-decoration-line: underline;
    color: #E75100;
    margin: 8px 0px;
    cursor: pointer;    
}

.search-button {
    position: absolute;
    float: right;
    position: absolute !important;
    right: 50px;
    cursor: pointer;
    margin: 0 -4px;
    padding: 12px !important;
    border: none;
}

/* Form: Bliv ringet op */
.call-me-form .m_contact-form input[type=text], .call-me-form .m_contact-form input[type=email], .call-me-form .m_contact-form input[type=tel], .call-me-form .m_contact-form textarea{
    text-transform:none;
}


.creditcard{
    height:100%;
}

.header_logoBar {
    align-items: center;
    height: 2.5rem;
    display: inline-flex;
    background: #edeffa;
    width: 100%;
    gap: 1rem;
    padding: 0.4rem 0;
    justify-content: center;
    border-bottom: 1px solid #e1e1ff;
}

header#headertop {
    border-bottom: 1px solid #f5f5f5;
}
