﻿

:root {
    --black: #191A1B;
    --white: #ffffff;
    --green: #117A29;
    --red: #D10014;
    --orange: #EFC74D;
    --darkwhite: #F7F7F7;
    --iceblue: #E4F3F6;
    --darkblue: #143546;
    --turkos: #1A96AD;
    --dturkos: #207598;
    --darkgrey: #484748;
    --grey: #848484;
    --lightlightgrey: #F5F5F5;
    --lightgrey: #D1D1D1;
    --success: #42AF5B;
    --darksuccess: #0C4819;
    --lightsuccess: #AAE5B8;
    --danger: #D10014;
    --darkdanger: #85010E;
    --lightdanger: #FFCCD1;
    --warning: #EFC74D;
    --darkwarning: #745700;
    --lightwarning: #FFF1C7;
}

html {
    scroll-padding-top: 160px; /* height of sticky header */
}

body {
    color: #191A1B;
    box-sizing: content-box;
    font-family: 'Roboto', sans-serif;
}

header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 2;
    transition: all 0.3s;
}

.container {
    max-width: 1400px;
}

a {
    text-decoration: none;
    color: var(--dturkos);
}

.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
}

    .btn:hover {
        border-color: none;
    }

    .btn:focus, .btn-regular:focus, .btn-turkos:focus, .btn-iceblue:focus, .btn:focus-visible {
        border: 2px solid var(--iceblue);
        
    }

.no-btn {
    border: none;
    background: none;
    line-height: unset;
}


.btn-border-blue {
    border: 2px solid var(--darkblue);
    color: var(--darkblue);
    text-transform: uppercase;
}


.btn-border-turkos {
    border: 2px solid var(--dturkos);
    color: var(--dturkos);
    padding: 10px 22px;
}

    .btn-border-turkos:hover {
        border: 2px solid var(--dturkos);
        color: var(--dturkos);
        padding: 10px 22px;
        opacity: 0.8;
    }

    .btn-border-turkos.active, :not(.btn-check) + .btn:active {
        background: linear-gradient(267deg, var(--dturkos) -0.95%, var(--dturkos) 99.5%);
        color: var(--white);
        transition: 0.3s;
        border: 2px solid var(--dturkos);
        padding: 10px 22px;
    }

.btn-border-grey {
    border: 2px solid var(--grey);
    color: var(--grey);
    padding: 10px 22px;
}

    .btn-border-grey:hover {
        border: 2px solid var(--grey);
        color: var(--grey);
        padding: 10px 22px;
        opacity: 0.8;
    }

.btn-regular {
    background: linear-gradient(267deg, var(--darkblue) -0.95%, var(--darkblue) 99.5%);
    color: var(--white);
    transition: 0.3s;
}

    .btn-regular:hover {
        background: linear-gradient(267deg, var(--turkos) -0.95%, var(--darkblue) 99.5%);
        color: var(--white);
        transition: 0.3s;
    }

    .btn-regular:active {
        background: linear-gradient(267deg, var(--dturkos) -0.95%, var(--dturkos) 99.5%);
        color: var(--white) !important;
    }

    .btn-regular:disabled {
        background: linear-gradient(267deg, var(--lightgrey) -0.95%, var(--lightgrey) 99.5%);
        color: var(--grey) !important;
        border: unset;
        opacity: unset
    }

.btn-turkos {
    background: linear-gradient(267deg, var(--dturkos) -0.95%, var(--dturkos) 99.5%);
    color: var(--white);
    transition: 0.3s;
    border: none;
}

    .btn-turkos:hover {
        background: linear-gradient(267deg, var(--dturkos) -0.95%, var(--darkblue) 99.5%);
        border: none;
        color: var(--white);
        transition: 0.3s;
    }

.btn-iceblue {
    background: linear-gradient(267deg, var(--iceblue) -0.95%, var(--iceblue) 99.5%);
    color: var(--black);
    transition: 0.3s;
}

    .btn-iceblue:hover {
        background: linear-gradient(267deg, var(--turkos) -0.95%, var(--darkblue) 99.5%);
        color: var(--white);
        transition: 0.3s;
    }

/*PRIMARY COLORS*/
.black {
    color: var(--black)
}

.white {
    color: var(--white)
}

.green {
    color: var(--green);
}

.red {
    color: var(--red);
}

.orange {
    color: var(--orange);
}

.darkblue {
    color: var(--darkblue)
}

.iceblue {
    color: var(--iceblue)
}

.turkos {
    color: var(--turkos)
}

.dturkos {
    color: var(--dturkos)
}

.darkgrey {
    color: var(--darkgrey)
}

.grey {
    color: var(--grey)
}

.lightgrey {
    color: var(--lightgrey)
}
/* PRIMARY COLORS END*/


/*PRIMARY BACKGROUND COLORS*/
.bg-black {
    background-color: var(--black)
}

.bg-white {
    background-color: var(--white)
}

.bg-darkblue {
    background-color: var(--darkblue)
}

.bg-iceblue {
    background-color: var(--iceblue)
}

.bg-turkos {
    background-color: var(--turkos)
}

.bg-dturkos {
    background-color: var(--dturkos)
}

.bg-darkgrey {
    background-color: var(--darkgrey)
}

.bg-grey {
    background-color: var(--grey)
}

.bg-lightgrey {
    background-color: var(--lightgrey)
}

/*PRIMARY BACKGROUND COLORS END*/
/*STATUS COLORS*/
.success {
    color: var(--success)
}

.darksuccess {
    color: var(--darksuccess)
}

.lightsuccess {
    color: var(--lightsuccess)
}

.danger {
    color: var(--danger)
}

.darkdanger {
    color: var(--darkdanger)
}

.lightdanger {
    color: var(--lightdanger)
}

.warning {
    color: var(--warning)
}

.darkwarning {
    color: var(--darkwarning)
}

.lightwarning {
    color: var(--lightwarning)
}
/*STATUS COLORS END*/

/*STATUS BACKGROUND COLORS*/
.bg-success {
    background-color: var(--success)
}

.bg-darksuccess {
    background-color: var(--darksuccess)
}

.bg-lightsuccess {
    background-color: var(--lightsuccess)
}

.bg-danger {
    background-color: var(--danger)
}

.bg-darkdanger {
    background-color: var(--darkdanger)
}

.bg-lightdanger {
    background-color: var(--lightdanger)
}

.bg-warning {
    background-color: var(--warning)
}

.bg-darkwarning {
    background-color: var(--darkwarning)
}

.bg-lightwarning {
    background-color: var(--lightwarning)
}
/*STATUS BACKGROUND COLORS END*/

/*FONTS*/
.font-300 {
    font-weight: 300;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.font-600 {
    font-weight: 600;
}

.font-700 {
    font-weight: 700;
}

.font-800 {
    font-weight: 800;
}

.font-900 {
    font-weight: 900;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-13 {
    font-size: 13px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-15 {
    font-size: 15px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-18 {
    font-size: 18px;
}

.line-height-16 {
    line-height: 16px;
}

h1, .h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2, .h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

h3, .h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

h4, .h4 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

h5, .h5 {
    font-size: 1.5rem;
    font-weight: 500;
}

h6, .h6 {
    font-size: 1.13rem;
    font-weight: 700;
}
/*FONTS END*/

/*BORDER*/
.box-shadow {
    box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
}

.border-5 {
    border-radius: 5px;
}

.border-radius {
    border-radius: 5px;
}

/*BORDER END*/
/*COMPARE*/
#compare {
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 5;
    box-shadow: 0px 0px 10px 0px rgba(20, 53, 70, 0.15);
}


    #compare:hover {
        -webkit-box-shadow: 0px 0px 10px 0px rgba(171, 171, 171, 1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(171, 171, 171, 1);
        box-shadow: 0px 0px 10px 0px rgba(171, 171, 171, 1);
    }

.compare-x {
    font-size: 1.5rem;
}

    .compare-x.bi-x-circle-fill {
        color: var(--turkos);
        font-size: 1.5rem;
    }


#compare .product-card-img img {
    width: 100px;
    border-right: 1px solid var(--lightgrey);
    object-fit: contain;
    height: 100%;
    max-height: 100px;
}

/*#compare .bg-darkblue {
    border-radius: 0 5px 0 0;
   
}*/


#compareMessageModal .modal-header {
    border-bottom: none;
}


#compare .compare-columns.bg-white {
    border-right: 1px solid var(--lightgrey);
}

#compare a span {
    font-size: 1.5rem;
}

#compare .compare-box {
    display: flex;
}

    #compare .compare-box .compare-columns {
        flex: 0 0 auto;
        width: 50%;
    }
/*COMPARE END*/

.form-check-input:checked {
    background-color: var(--darkblue);
    border-color: var(--darkblue);
}

.divider {
    height: 2px;
    background: var(--black)
}

.bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
    font-weight: 500 !important
}

.form-inputs {
    position: relative;
}


    .form-inputs .form-control:focus {
        box-shadow: none;
        border: none;
        border: 1px solid #dee2e6;
    }

    .form-inputs i, .form-inputs svg {
        position: absolute;
        right: 16px;
        top: 10px;
    }

.form-control.input-validation-error, .form-select.input-validation-error {
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + .75rem);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23dc3545" class="bi bi-exclamation-circle" viewBox="0 0 16 16"><path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/><path d="M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0z"/></svg>');
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

    .form-control.input-validation-error:focus, .form-select.input-validation-error:focus {
        border-color: var(--bs-form-invalid-border-color);
        box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25);
    }

.field-validation-error.alert-danger {
    background-color: #f8d7da;
    color: #58151c;
    border: 1px solid #f1aeb5;
    border-radius: 5px;
    padding: 16px;
    margin-top: 24px;
}



.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 2;
}

.sticky-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    height: 80px;
    width: 100%;
    background: white;
    border-top: 2px solid var(--turkos);
}

.border-header {
    border-top: 0.5px solid #D1D1D1;
}

#myHeader {
    background-color: var(--white);
    box-shadow: 0px 8px 8px -5px rgba(0,0,0,0.18);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.8);
}

.navbar-expand-lg {
    flex-wrap: wrap
}

#navbarNav, #navbarNav1 {
    justify-content: center;
}

.navbar .nav-link {
    color: var(--darkblue);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}


.nav-icons span {
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nav-icons i {
    font-size: 1.6rem;
}

.navbar-expand-lg .navbar-nav .nav-item {
    padding: 0rem 2rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 1rem 0rem;
}

    .navbar-expand-lg .navbar-nav .nav-link.active, .dropdown-item.active {
        border-bottom: 3px solid var(--turkos);
        width: fit-content;
        background-color: unset;
        color: var(--black);
    }

.navbar-toggler[aria-expanded="false"]::after {
    font-family: "bootstrap-icons";
    content: "\F479";
    border: none;
    color: var(--darkblue);
    font-size: 40px;
}

.navbar-toggler[aria-expanded="true"] {
    border: none;
    color: var(--darkblue);
    font-size: 35px;
}


.navbar-toggler {
    border: none;
    padding: 0;
    display: flex;
    align-self: center;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 3px;
    background-color: var(--darkblue);
    margin: 7px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 12px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -8px) rotate(45deg);
}


.rounded-circle {
    padding: 3px 7px;
}

.mega-menu {
    position: static;
}

    .mega-menu .dropdown-menu {
        display: block;
        width: 100%;
        /*box-shadow: none;*/
        column-count: 1;
        left: 0;
        border-radius: 0;
        border: none;
        box-shadow: inset 0px 8px 8px -5px rgba(0,0,0,0.1), 0px 8px 8px -5px rgba(0,0,0,0.1);
    }

.dropdown-menu[data-bs-popper] {
    margin-top: 0;
}

.mega-menu .dropdown-menu a {
    display: block;
    padding: 6px 0 6px 0;
}

.mega-menu .dropdown-menu .dropdown-item-heading {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

/*.mega-menu .dropdown-menu .dropdown-item-heading:after {
        content: '';
        display: block;
        width: 35px;
        height: 3px;
        margin-top: 7px;
        background-color: var(--turkos);
    }*/

.mega-menu .dropdown-menu .dropdown-item {
    color: var(--black);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    white-space: unset;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: unset;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show,
[aria-current="page"] {
    color: var(--darkblue);
}



.dropdown-content {
    display: none;
    top: 100%;
    position: absolute;
    background-color: var(--iceblue);
    min-width: 175px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 7%);
    z-index: 1;
    border-top: 2px solid var(--turkos);
    padding: 10px 0;
}

    .dropdown-content a {
        font-size: 14px;
        margin: 4px 0;
    }

    .dropdown-content i {
        font-size: 1rem;
        color: rgb(20, 53, 70);
    }

.dropdown:hover .dropdown-content {
    display: block;
    margin-top: 0;
}

.dropdown-content a:hover {
    text-decoration: underline;
}


/*MOBIL MENY*/
#mobile-menu {
    background-color: var(--white);
    box-shadow: 0px 8px 8px -5px rgba(0,0,0,0.1);
}
    /*    #mobile-menu .navbar-collapse {
        max-height: 100vh;
        overflow-y: auto;
    }*/

    #mobile-menu .dropdown-menu {
        border: none;
        padding-left: 25px;
        background-color: transparent;
    }

    #mobile-menu .navbar-nav {
        box-shadow: inset 0px 8px 8px -5px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

.dropdown-submenu ul.dropdown-menu {
    border: none;
    padding-left: 20px;
}

.navbar-expand-lg .navbar-nav .nav-link.mobile-nav-link {
    margin: 0rem 2rem;
    padding: 0.8rem 0;
}

.navbar-expand-lg .navbar-nav .dropdown-submenu .nav-link.mobile-nav-link {
    margin: 0rem 1rem;
    padding: 0.8rem 0;
}

#mobile-menu a.nav-link {
    padding: 0.8rem 0 0.5rem 0;
}

#mobile-menu li.nav-link.dropdown-toggle {
    margin: 0rem 2rem;
    padding: 0.8rem 0 0.5rem 0;
}


/*MOBIL MENY SLUT*/



/*MINA SIDOR */
.list-group-item {
    border: none;
    background-color: var(--white);
    padding: 8px 16px;
    z-index: 1;
}

    .list-group-item.active {
        background-color: var(--dturkos);
        border-color: var(--dturkos);
        z-index: 1;
    }

p.list-group-item {
    font-size: 1.4rem;
}

a.list-group-item {
    font-size: 1.2rem;
}
/*MINA SIDOR END */
.censit-rubrik, .censit-rubrik-xl {
    font-weight: 700;
}
    /* LINJE TILL RUBRIK */
    .censit-rubrik:after {
        content: "";
        display: block;
        width: 35px;
        height: 4px;
        margin-top: 10px;
        margin-bottom: 10px;
        background-color: var(--turkos);
    }

    .censit-rubrik-xl:after {
        content: "";
        display: block;
        width: 85px;
        height: 6px;
        margin-top: 10px;
        margin-bottom: 10px;
        background-color: var(--turkos);
    }

.censit-rubrik-margin:after {
    content: "";
    display: block;
    width: 35px;
    height: 4px;
    margin-bottom: 10px;
    background-color: var(--turkos);
}

.censit-rubrik-center:after {
    content: "";
    display: block;
    width: 35px;
    height: 4px;
    margin: 10px auto;
    background-color: var(--turkos);
}

.banner {
    color: var(--white);
}

.banner-firstpage {
    height: 500px;
    color: var(--white);
}

.banner-preamble {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}
.banner-box .btn-regular:hover, .banner-box .btn-regular:active, .banner-box .btn-regular:focus-visible{
    background:none;
    background-color:transparent!important;
    border:1px solid white;

}
.breadcrumbs {
    padding-top: 12px;
}

    .breadcrumbs a {
        color: var(--dturkos);
        font-family: Inter;
        font-size: 16px;
        font-weight: 500;
    }

    .breadcrumbs span {
        color: var(--grey);
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 500;
        margin: 0 5px
    }

    .breadcrumbs p {
        color: var(--darkgrey);
        font-family: Inter;
        font-size: 16px;
        font-weight: 500;
    }

.category-card {
    box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
    border-radius: 5px;
    height: 100%;
    cursor: pointer;
    /*    position: relative;*/
}

    .category-card:hover, .contact-card:hover, .news-card:hover {
        -webkit-box-shadow: 0px 0px 10px 0px rgba(171,171,171,1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(171,171,171,1);
        box-shadow: 0px 0px 10px 0px rgba(171,171,171,1);
    }

    .category-card .category-description {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .category-card a {
        position: absolute;
        bottom: 24px;
    }

.category-img img {
    height: 200px;
    object-fit: contain;
    border-radius: 5px 5px 0 0;
    border-bottom: 2px solid var(--lightgrey);
}

.category-box {
    border-radius: 0 0 5px 5px;
    min-height: 280px;
    max-height: 100%;
    position: relative;
}

.news-box {
    border-radius: 5px 5px 0 0;
    min-height: 213px;
    max-height: 100%;
}

    .news-box .ingress {
        font-size: 18px;
        font-weight: 300;
    }

.news-description {
    font-weight: 300;
}

.shortdescription-news {
    font-size: 18px;
}

.news-img {
    border-radius: 0 0 5px 5px;
    border-top: 10px solid var(--turkos);
}

.news-img-thumb {
    border-radius: 0 0 5px 5px;
    border-top: 10px solid transparent;
}

    .news-img img, .news-img-thumb .img {
        border-radius: 0 0 5px 5px;
        object-fit: cover;
        max-height: 200px;
        min-height: 200px;
    }

.news-card {
    box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
    border-radius: 5px;
    height: 100%;
    cursor: pointer;
}


.category-filter {
    border-radius: 5px;
    box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.10);
    overflow-y: auto;
}

.filter-chips {
    padding: 7px 14px;
    background-color: var(--iceblue);
    border-radius: 50px;
    display: flex;
}

.filter-child {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 175px;
}

.clear-chips, .filter-chips a {
    cursor: pointer
}

.support-box {
    border-radius: 5px;
    color: var(--darkblue);
    background: var(--iceblue);
}

.contact-card {
    box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
    border-radius: 5px;
}

.contact-img {
    /*    height: 200px;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px 5px 0 0;
}

    .contact-img img {
        border-bottom: 2px solid var(--turkos);
        height: 200px;
        object-fit: contain;
    }
/*    .contact-img img, .category-img img {
        width: -webkit-fill-available;
        border-bottom: 2px solid var(--lightgrey);
    }*/
/*ACCORDION*/
.accordion-button {
    padding: 8px 0;
    font-size: 18px;
    font-weight: 700;
    z-index: 0;
}

    .accordion-button:hover, {
        z-index: unset;
    }

.accordion-body {
    padding: 5px 0;
}

.accordion-button:not(.collapsed) {
    color: inherit;
    background-color: unset;
    box-shadow: unset;
}

.accordion-button:focus {
    border-color: unset;
    box-shadow: unset;
    z-index: 0;
}

.accordion-item, .accordion-item:last-of-type {
    border: unset;
    border-bottom: 2px solid var(--black);
    border-radius: 0;
    padding: 8px 0 8px 0;
}

.accordion-button::after {
    margin-left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-arrow-down-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-arrow-down-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
}


/*ACCORDION END*/

/*CUSTOM CHECKBOX*/
.censit-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .censit-checkbox input:disabled ~ span.checkmark {
        border: 1px solid var(--lightgrey);
    }

    .censit-checkbox input:disabled ~ span {
        color: var(--lightgrey);
    }

    .censit-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: var(--white);
    border: 1px solid var(--black)
}

.censit-checkbox:hover input ~ .checkmark {
    border: 1px solid var(--black)
}

.censit-checkbox input:checked ~ .checkmark {
    background-color: var(--white);
    border: 1px solid var(--turkos)
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.censit-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.censit-checkbox .checkmark:after {
    left: 5px;
    top: 0px;
    width: 6px;
    height: 11px;
    border: solid var(--turkos);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*CUSTOM CHECKBOX END*/

/*FOOTER*/
footer {
    font-size: 14px;
}

.footer-link {
    vertical-align: middle;
    padding: 24px 4px 24px 0px;
}

.footer-container a, .footer-anchor {
    padding-bottom: 6px;
}
/*FOOTER END*/

/*RANGE SLIDER*/
.price-input-container {
    width: 100%;
}

.price-input .price-field {
    display: flex;
}

.price-field span {
    font-size: 17px;
    width: 100%;
    margin-bottom: 16px;
}

.price-field input {
    flex: 1;
    width: 29px;
    font-size: 15px;
    font-family: "DM Sans", sans-serif;
    text-align: center;
    border: 0px;
    color: var(--black);
}

.price-input {
    width: 100%;
    font-size: 19px;
    color: var(--black);
}

/* Remove Arrows/Spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hideFilter {
    display: none;
}



.slider-container {
    width: 100%;
    height: 6px;
    position: relative;
    background: #e4e4e4;
    border-radius: 5px;
}

    .slider-container .price-slider {
        height: 12px;
        top: -3px;
        left: 0;
        right: 0;
        position: absolute;
        border-radius: 5px;
        background: var(--turkos);
    }

.range-input {
    position: relative;
}

    .range-input input {
        position: absolute;
        width: 100%;
        height: 5px;
        background: none;
        top: -5px;
        pointer-events: none;
        cursor: pointer;
        -webkit-appearance: none;
    }

.range-border-container {
    position: relative;
    left: 5px;
}

.range-border {
    position: relative;
    top: 24px;
}

    .range-border::before {
        content: '|';
        position: absolute;
        left: calc(50% - 0.25ch);
        bottom: 20px;
        color: var(--black);
    }


/* Styles for the range thumb in WebKit browsers */
input[type="range"]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 70%;
    background: white;
    border: 1px solid var(--turkos);
    pointer-events: auto;
    -webkit-appearance: none;
}

/*RANGE SLIDER END*/

/*PRODUCT CARD*/
.product-row {
    cursor: pointer;
    box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
    border-radius: 5px;
    border: none;
    color: var(--black);
    margin: 8px 0;
}

    .product-row:hover {
        -webkit-box-shadow: 0px 0px 10px 0px rgba(171,171,171,1);
        -moz-box-shadow: 0px 0px 10px 0px rgba(171,171,171,1);
        box-shadow: 0px 0px 10px 0px rgba(171,171,171,1);
    }

    .product-row .product-card-img img {
        width: 130px;
        border-right: 1px solid var(--lightgrey);
        object-fit: contain;
        height: 100%;
        max-height: 130px;
    }

    .product-row i.bi-arrow-left-right {
        font-size: 1.5rem;
        float: right;
    }

    .product-row .product-card-name {
        max-width: 150px;
        word-break: break-word;
    }

    .product-row .attribut-col {
        width: 100%;
        max-width: min-content;
        min-width: min-content;
    }


.wrapper-price {
    display: grid;
    grid-template-columns: minmax(auto, 80px) 1fr;
    grid-template-areas:
        " . cardprice "
        ". moms ";
    margin-bottom: 12px;
}

.cardprice {
    grid-area: cardprice;
}

.oldprice {
    grid-area: oldprice;
}

.moms {
    grid-area: moms;
}

/*PRODUCT CARD END*/

/*LigthGallery Start*/
.lg-container.lg-inline .lg-outer .lg-toolbar {
    display: none;
}

.lg-image {
    cursor: -moz-zoom-in !Important;
    cursor: -webkit-zoom-in !Important;
    cursor: zoom-in !Important;
}

/*LigthGallery END*/
/*TAB-BOX*/
.tab-box {
    padding: 0;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
    -moz-box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
    box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
}

.tab-content {
    color: var(--black);
}
/*.tab-content > .active {
    padding: 36px 48px;
}*/
.tab-border {
    border-bottom: 2px solid var(--turkos);
}

.nav-pills {
    background-color: var(--iceblue);
}

    .nav-pills .nav-link {
        color: var(--darkblue);
        padding: 20px 20px;
        text-align: left;
        font-weight: 500;
        width: 100%;
        border-radius: 0;
    }

        .nav-pills .nav-link:hover {
            background: linear-gradient(267deg, var(--turkos) -0.95%, var(--darkblue) 99.5%);
            width: 100%;
            color: white;
            border-radius: 0;
        }

        .nav-pills .nav-link.active {
            width: 100%;
            padding: 20px 20px;
            border-radius: 0;
            background-color: var(--darkblue);
            color: var(--white);
            position: relative;
        }

            .nav-pills .nav-link.active:nth-of-type(1) {
                border-top-left-radius: 5px;
            }
            /*            .nav-pills .nav-link.active:nth-of-type(3) {
                border-bottom-left-radius: 5px;
            }*/
            .nav-pills .nav-link.active::after {
                content: '';
                position: absolute;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
                border-right: 10px solid transparent;
                border-left: 10px solid var(--darkblue);
                right: -20px;
                transition: border-color .15s ease-in-out;
            }
/*.tab-content > .active p {
    padding: 24px 0;
}*/
.column-count {
    column-count: 3;
}

.tab-box-icon {
    border-radius: 15px;
    background: var(--gradient-1, linear-gradient(238deg, #1A96AD 5.88%, #143546 87.54%));
    width: 100px;
    height: 100px;
}

.tab-box-text {
    font-size: 13px;
}

.blue-box {
    background-color: var(--iceblue);
}

/*#info-img{
    width: 200px;
}*/
.product-detail-tabs .tab-pane > table {
    width: 100%;
}

    .product-detail-tabs .tab-pane > table tr td {
        vertical-align: baseline;
    }

    .product-detail-tabs .tab-pane > table tr {
        border-bottom: .5px solid var(--grey);
        display: flex;
        flex-wrap: wrap;
        /* justify-content: space-between;*/
    }


.td {
    width: 400px;
}
/*TAB-BOX END*/
/*PAGINERING*/
.page-item:first-child .page-link {
    z-index: 0;
}

.pagination > li > a {
    background-color: var(--lightlightgrey);
    color: var(--darkgrey);
    border: var(--lightlightgrey);
    font-size: 14px;
}

    .pagination > li > a:focus,
    .pagination > li > a:hover,
    .pagination > li > span:focus,
    .pagination > li > span:hover,
    .page-link.active {
        color: var(--darkgrey);
        background-color: var(--lightlightgrey);
        border-color: var(--lightlightgrey);
    }

.pagination > .active > a, .pagination .active {
    color: white;
    background-color: var(--darkblue) !Important;
    border: solid 1px var(--darkblue) !Important;
    border-radius: 0.375em !important;
}

    .pagination > .active > a:hover {
        background-color: var(--darkblue) !Important;
        border: solid 1px var(--darkblue);
    }

.last-page {
    display: none;
}

.active > .page-link {
    z-index: 1;
}
/*PAGINERING END*/
/*PRODUKT DETALJ*/
.card-product-list > a {
    padding: 0
}

.card-product-list .badge, .card-product-list .rating {
    margin-left: 0;
}

.card.card-product .badge-info {
    background-color: #195A57;
}

.card.card-product .badge-success {
    background-color: #40B8B2;
}

.card-product .badge {
    border-radius: unset !important;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    text-transform: uppercase;
    padding: 8px;
}

    .card-product .badge:first-child {
        border-radius: 10px 0 0 0 !important
    }

.product-description {
    font-size: 18px;
}

.product-stock {
    border-top: 1px solid var(--lightgrey);
    padding: 8px 0;
    margin-top: 8px;
    border-bottom: 1px solid var(--lightgrey);
}

.card .price .del {
    color: $pink;
    font-size: 22px;
}

.card-product-list .card-body {
    min-height: 100px !important;
    bottom: 0 !important;
    position: absolute !important;
    right: 0 !important;
}

.card-img, .card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card-body {
    overflow: hidden !important;
}

    .card-body .del {
        color: pink;
    }

    .card-body .product-detail-image {
        border: 1px solid lightgrey;
        border-radius: 10px;
    }

.quantity-input {
    outline: none;
    user-select: none;
    text-align: center;
    width: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
}

.quantity-btn {
    background: transparent;
    border: none;
    outline: none;
    margin: 0;
    padding: 0px 8px;
    cursor: pointer;
}


.quantity-control {
    border-radius: 5px;
    padding: .5rem;
    /*margin: auto 12px;*/
    border: 2px solid #1A96AD;
}

/*#product-price {
    font-size: 22px;
}*/
.product-specifications .icons i {
    font-size: 24px;
}

.product-seoTitle {
    font-size: 2rem;
}

#myTabContent.tab-content:not(.card-body) {
    /*  padding: 3rem;*/
    /*    border: 1px solid var(--lightgrey);*/

    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#myTab {
    border-bottom: unset;
}

.tab-content:not(.card-body) {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border-top: 0;
}

.product-detail-tabs .nav-tabs .nav-link {
    border: 1px solid var(--lightgrey);
    background-color: var(--lightgrey);
    border-radius: 5px 5px 0px 0px;
    border-bottom: 0;
    padding: 0.5rem 2rem;
    color: var(--darkblue);
    margin-right: 8px;
    box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
    font-weight: 500;
}

    .product-detail-tabs .nav-tabs .nav-link.active {
        color: var(--white);
        background-color: var(--darkblue);
        text-decoration: none;
        border: 1px solid var(--darkblue);
        box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
        font-weight: 500;
    }

.product-detail-tabs .nav-link:focus, .product-detail-tabs .nav-link:hover, .product-detail-tabs .nav-pills .nav-link.hover {
    background-color: var(--darkblue);
    color: var(--white);
}

.info-box {
    background-color: var(--iceblue);
    border-radius: 5px;
    box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
}

.detail-box-text p:first-of-type {
    font-size: 13px;
    width: 200px;
}

.detail-box-text p:last-of-type {
    word-break: break-word;
    font-size: 13px;
}

/*.lg-outer .lg-thumb-outer {
     background-color: var(--white); 
   
}*/
/*.lg-outer .lg-thumb-outer {
     background-color: ; 
   
}
.lg-backdrop {
    background-color: #fff;
}*/
.lg-inline .lg-backdrop, .lg-inline .lg-outer .lg-thumb-outer {
    background-color: var(--white);
}


.lg-backdrop.in {
    opacity: .8;
}

.lg-outer .lg-thumb-outer {
    opacity: .8;
    background-color: rgba(0, 0, 0, 0);
}

.lg-outer .lg-thumb-item img {
    object-fit: contain;
}

.lg-inline .lg-outer {
    z-index: 1;
}

.lg-thumb-item {
    -webkit-box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
    -moz-box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
    box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
}

.lg-toolbar .lg-icon:hover {
    color: var(--turkos);
}

.lg-show-autoplay .lg-progress-bar {
    display: none;
}
/*.swiper-container {
    position: initial;

}*/

/*.pswp__img {
    background-color: var(--white);
    border-radius: 5px;
    object-fit: none;
}
.pswp--zoomed-in .pswp__img {
    object-fit: inherit !important;
}*/
.lg-next:before {
    color: var(--turkos) !important;
    font-weight: 600 !important;
    font-size: 24px;
    border-radius: 5px;
}

.lg-prev::after {
    color: var(--turkos) !important;
    font-weight: 600 !important;
    font-size: 24px;
}

.lg-next, .lg-prev {
    border-radius: 5px;
    background-color: var(--white);
    width: 60px;
    height: 60px;
    -webkit-box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
    -moz-box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
    box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
}

.lg-outer {
    -webkit-box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
    -moz-box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
    box-shadow: 0px 0px 8px 2px rgba(20, 53, 70, 0.15);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 24px;
}

.lg-next, .lg-prev {
    width: 50px;
    height: 50px;
    bottom: -60px;
    top: unset;
    position: absolute;
}

.swiper-pagination-bullet-active {
    background-color: var(--turkos);
}



.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border: 2px solid var(--turkos);
}

/*.swiper-wrapper.thumbnails {
    display: flex;
    justify-content: center;
    transform: none !important;
    z-index: 0;
}*/
/*#large-img{
    cursor:zoom-in
}
#large-img.swiper-slide {*/
/*width: auto !important;*/
/*object-fit: contain;
    margin: 0;
    height: auto !important;

}*/
/*PRODUKT DETALJ END*/

/*SLICK SLIDE*/
.slider-nav {
    width: 50%;
    margin: auto;
}

.slick-slide {
    margin: 0px 20px;
}

    .slick-slide img {
        width: 100%;
        margin: auto;
        object-fit: none;
    }

        .slick-slide img.main-img {
            margin: auto;
            max-height: 500px;
        }


.slick-dots {
    bottom: 0;
}

.slick-track {
    min-height: 230px;
    padding: 50px 0;
}

.slick-dots li button::before {
    font-size: 12px;
}

/*SLICK SLIDE END*/

.offcanvas.show {
    overflow: auto;
}


/*STARTPAGE*/
.box-startpage {
    width: 320px;
    height: 300px;
}

.two-col-container {
    max-height: 500px;
}

.two-col-img {
    width: 100%;
    /*   height: 100%;*/
    object-fit: contain;
}

.background-filter::after {
    -webkit-backdrop-filter: blur(5px); /* Use for Safari 9+, Edge 17+ (not a mistake) and iOS Safari 9.2+ */
    backdrop-filter: blur(5px); /* Supported in all major browsers */
    background: linear-gradient(233deg, #1A96AD 0.41%, rgba(20, 53, 70, 0.80) 99.64%);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 5px;
}

.background-filter:hover::after {
    -webkit-backdrop-filter: blur(0px); /* Use for Safari 9+, Edge 17+ (not a mistake) and iOS Safari 9.2+ */
    backdrop-filter: blur(0px); /* Supported in all major browsers */
    background: linear-gradient(233deg, rgba(20, 53, 70, 0.75) 0.41%, rgba(26, 150, 173, 0.75) 99.64%);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 5px;
}

.background-filter {
    position: relative;
    border-radius: 5px;
    border: 2px solid white;
}

.background {
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 300px;
    height: 350px;
}

/* Use for child content that should not be blurred */
.u-non-blurred {
    position: relative;
    z-index: 1;
}

.extra-padding {
    padding-left: 280px;
}

/*.accordion-item {
    border-bottom: none;
}*/

.accordion-button {
    justify-content: space-between
}

    .accordion-button::after {
        background-size: 1.5rem;
    }

.floating-img {
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}

    .floating-img div {
        height: 500px;
        width: 100%;
        background-size: cover;
        background-position: center;
        object-fit: contain;
    }

.floating-text > div {
    min-height: 500px
}
/*STARTPAGE END*/
/*MANUFACTURER*/
.manufacturer-row {
    box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
    border-radius: 5px;
    border: none;
    color: var(--black);
    margin: 8px 0;
}

    .manufacturer-row .d-sm-flex {
        min-height: 260px;
    }

.manufacturer-card-img {
    width: 100%;
    min-height: 200px;
    height: 100%;
    border-right: 1px solid var(--lightgrey);
    object-fit: contain;
}

/*MANUFACTURER END*/

/*SEARCH*/

#unibox-suggest-box .unibox-suggest-heading, #unibox-suggest-box-special .unibox-suggest-heading {
    margin-left: 8px;
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 18px;
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
}

#unibox-suggest-box a, #unibox-suggest-box-special a {
    text-decoration: none;
    color: var(--black);
}

    #unibox-suggest-box a p, #unibox-suggest-box-special a p {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 350px;
        margin-bottom: 0
    }

#unibox-suggest-box {
    min-width: 100% !important;
    max-height: 500px;
    cursor: pointer;
    overflow-y: scroll;
}

.unibox-selectable.active, .unibox-selectable:hover {
    background-color: var(--turkos);
    color: #fff;
    cursor: pointer;
}

.form-inputs i, .form-inputs svg {
    display: none
}

.form-inputs i, .form-inputs.mobile svg {
    display: block
}

.unibox-selectable.unibox-show-all {
    font-size: 16px;
    /*    color:var(--black)!important;
*/ padding: 10px 0;
    text-transform: uppercase;
    font-weight: 600;
}

.unibox-selectable.active, .unibox-selectable:hover {
    background-color: var(--turkos);
    color: #fff !important;
    cursor: pointer;
    text-decoration: none
}

.unibox-selectable.unibox-show-all:hover span {
    color: #fff;
    text-decoration: none
}

#mobileSearch {
    display: none;
}

/*SEARCH END*/

/*CUSTOMERSERVICE*/
.customer-service .nav-link.active, .customer-service .nav-link:hover {
    background-color: var(--iceblue);
}

.customer-service a.nav-link {
    display: flex;
    justify-content: start;
    align-items: center;
    border-bottom: 6px solid var(--iceblue);
    padding: 20px 42px 20px 42px;
    text-transform: uppercase;
    font-weight: bold;
}

/*CUSTOMERSERVICE END*/
/*FAVORITE*/

.bi.bi-heart, .bi.bi-heart-fill {
    font-size: 1.5rem;
    cursor: pointer;
}

/*FAVORITE END*/
/*COMPARE */
.info-box-compare {
    background-color: var(--iceblue);
    border-radius: 5px;
    min-height: 110px;
}

    .info-box-compare.diff {
        background-color: var(--darkblue);
       color:var(--white)
    }

.fixedElement {
    position: static;
}

    .fixedElement img {
        cursor: pointer;
    }

    .fixedElement div {
        margin: auto;
        width: 50%;
    }

.padding-100 {
    padding-top: 100px;
}

.newBox {
    position: fixed;
    bottom: 0px;
    left: 0;
    background-color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    justify-content: space-evenly;
}

    .newBox div {
        width: auto;
        display: grid;
        grid-template-columns: 305px 1fr;
        margin: inherit;
    }

    .newBox img {
        height: 100px;
        display: flex;
    }

    .newBox h2 {
        font-size: 1.5rem;
        height: 100%;
    }

.d-grid.box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.teknisk-data .d-grid {
    grid-auto-rows: minmax(100px, auto);
}

/*COMPARE END*/

/*LOGIN/LOGOUT*/
.login-container {
    background-image: url('../images/Censit_bakgrund-03.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

h1.small-h1 {
    font-size: 2rem;
}

.login-container .blurred-bg {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 5px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.12);
    padding: 24px;
}


.login-container small {
    color: rgba(117, 117, 117, 1);
}

.login-container p a.text-decoration-underline, .login-container label a.text-decoration-underline.black {
    font-size: 16px;
    cursor: pointer;
    font-weight: 400;
}

.login-container a.text-decoration-underline {
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.login-container label {
    font-weight: 500;
}

.validation-summary-errors {
    background-color: #f8d7da;
    color: #58151c;
    border: 1px solid #f1aeb5;
    border-radius: 5px;
    padding: 16px;
    margin-top: 24px;
}


    .validation-summary-errors ul {
        padding-left: 0;
        list-style: none;
        margin: 0;
    }

.login-container #message, .my-account-password #message-alert {
    display: none;
}

    .login-container #message small, .my-account-password #message-alert small {
        padding: 0px 14px;
    }

    .login-container small.valid, .my-account-password small.valid {
        color: green;
    }

        .login-container small.valid:before, .my-account-password small.valid:before {
            position: relative;
            left: 0px;
            padding-right: 12px;
            content: "✔";
        }

.login-container small.invalid, .my-account-password small.invalid {
    color: red;
}

    .login-container small.invalid:before, .my-account-password small.invalid:before {
        position: relative;
        left: 0px;
        padding-right: 12px;
        content: "✖";
    }
/*LOGIN/LOGOUT END*/

/*VARUKORG*/
.checkoutcontainer {
    box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
    border-radius: 5px;
    border: none;
    padding: 16px;
}

.product-row-cart {
    box-shadow: 0px 0px 8px 0px rgba(20, 53, 70, 0.15);
    border-radius: 5px;
    border: none;
    color: var(--black);
    margin: 8px 0;
}

    .product-row-cart .product-card-img img, .product-row-orderdetails .product-orderdetails-img img {
        width: 130px;
        border-right: 1px solid var(--lightgrey);
        object-fit: contain;
        height: 100%;
        max-height: 100px;
        min-height: 100px;
        cursor: pointer;
    }

    .product-row-cart a:hover {
        text-decoration: underline;
    }

    #checkoutcontainer .bi-trash3-fill {
        font-size: 1.5rem;
        color: var(--darkblue);
    }

.progressbar {
    display: flex;
    justify-content: space-between;
    /* border-top: 4px solid var(--darkblue);*/
}

    .progressbar .dot {
        background-color: var(--lightgrey);
        border-radius: 80%;
        width: 18px;
        height: 16px;
        list-style: none;
        position: relative;
        bottom: 6px;
    }

        .progressbar .dot.active {
            background-color: var(--turkos);
            width: 28px;
            height: 24px;
            bottom: 10px;
        }

    .progressbar .bar {
        border-top: 4px solid var(--lightgrey);
        width: 50%;
    }

        .progressbar .bar.active {
            border-top: 4px solid var(--turkos);
            width: 50%;
        }

    .progressbar small {
        position: relative;
        left: 12px;
        bottom: 6px;
    }

.progressbar-name small {
    position: relative;
    bottom: 8px;
}

    .progressbar-name small.last {
        left: 22px;
    }

    .progressbar-name small.middle {
        left: 6px;
    }

    .progressbar-name small.first {
        right: 12px;
    }

.product-row-cart .d-grid, .cart-top-bar .d-md-grid, .product-row-cart .d-grid.thankyou {
    /*  grid-template-columns: minmax(auto, 25%) 1fr 1fr 1fr 1fr;*/
    grid-template-columns: minmax(auto, 17%) minmax(auto, 35%) 1fr 1fr 1fr 40px;
}

.product-row-orderdetails .d-grid {
    grid-template-columns: minmax(auto, 25%) minmax(auto, 35%) 1fr 1fr 1fr 40px;
}


#checkoutcontainer input[type=checkbox] {
    transform: scale(1.5);
    accent-color: var(--darkblue);
}

#noty_layout__bottomRight .media-body {
    background-color: var(--iceblue);
    color: var(--black);
    border-radius: 5px;
    padding: 12px;
}
/*VARUKORG END*/
/*MEDIAQUERY*/
@media (min-width: 992px) {
    .dropdown-toggle:after {
        display: none;
    }


    .nav-item .dropdown-menu {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.1s;
        transition-delay: 0.7s;
    }

    .nav-item:hover .dropdown-menu, .nav-link ~ .dropdown-menu:focus-within,
    .nav-link:focus ~ .dropdown-menu {
        pointer-events: auto;
        opacity: 1;
        transition: opacity 0.3s;
        transition-delay: 0s;
    }

    .banner-preamble {
        font-size: 18px;
    }
}

@media (min-width: 1400px) {
    .product-row .product-card-name {
        max-width: 150px;
    }
}

@media (max-width: 1400px) {

    /*    .product-slider-small {
        width: 546px;
       
    }*/
    .product-row .product-card-name {
        max-width: 250px;
        margin-right: 24px;
    }
    /*    #next.swiper-button-next,
    #prev.swiper-button-prev {
        bottom: 9px;
    }*/

}

@media (max-width: 1257px) {
    .news-box {
        min-height: 212px;
    }
}

@media (max-width: 1200px) {
    .discount-box {
        width: 75%
    }

    .news-box {
        min-height: 236px;
    }

    /*    .product-slider-small {
        width: 456px;
    }*/
    .product-row .product-card-name {
        max-width: 150px;
        margin-right: 0px;
    }

    .lightbox div {
        width: 70%;
    }

    #large-img.swiper-slide {
        /*width: 100% !important;*/
        height: auto !important;
        /*    object-fit: unset;*/
    }

    /*     .product-row-cart .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 140px) minmax(auto, 40%) auto;
        grid-gap: 5px;
        padding: 5px;
        grid-template-areas:
            " product-card-img name name trash"
            " product-card-img price . . "
            " product-card-img . . . "
            " product-card-img amount . total ";
    }*/
}

@media (max-width: 1024px) {
    /*    #next.swiper-button-next,
    #prev.swiper-button-prev {
        bottom: 99px;
    }*/
    img#img-thumbnail {
        height: 60px;
        width: 60px !important;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 60px;
        height: 60px;
    }

    .news-box {
        min-height: 259px;
    }
}

@media (max-width: 992px) {
    .floating-text > div {
        min-height: 250px
    }

    .product-row .product-card-img img {
        width: 100%;
        height: 200px;
        max-height: 200px;
        border-bottom: 1px solid var(--lightgrey);
        border-right: 0;
        object-fit: contain;
    }

    .product-row {
        width: 380px;
        margin: 10px auto;
        cursor: pointer;
    }

    .discount-box {
        width: 100%
    }

    .info-box-compare {
        min-height: 120px;
    }

    /*    .product-slider-small {
        width: 336px;
    }*/
    .product-row .product-card-name {
        max-width: 100%;
        margin-right: 0px;
    }

    .lightbox div {
        width: 80%;
    }
    /*    #next.swiper-button-next,
    #prev.swiper-button-prev {
        bottom: 9px;
    }*/
    .product-row .attribut-col {
        width: 100%;
        max-width: max-content;
        min-width: min-content;
    }

    #large-img.swiper-slide {
        /* width: auto !important;*/
        height: auto !important;
        /*    object-fit: unset;*/
    }

    .news-box {
        min-height: 213px;
    }

    .news-img img, .news-img-thumb .img {
        border-radius: 0 0 5px 5px;
        object-fit: cover;
        max-height: 170px;
        min-height: 170px;
    }

    .floating-img {
        width: 100%;
        position: relative
    }

    .column-count {
        column-count: 2;
    }

    h1, .h1 {
        font-size: 2.8rem;
    }

    h2, .h2 {
        font-size: 2.3rem;
    }

    h3, .h3 {
        font-size: 2rem;
    }

    h4, .h4 {
        font-size: 1.5rem;
    }

    h5, .h5 {
        font-size: 1.3rem;
    }

    .wrapper-price {
        display: grid;
        grid-template-columns: minmax(auto, 250px) 1fr;
        grid-template-areas:
            "cardprice . "
            "moms . ";
        margin-bottom: 12px;
    }

    .product-row-cart .d-grid, .cart-top-bar .d-md-grid {
        grid-template-columns: minmax(auto, 15%) minmax(auto, 30%) 1fr 1fr 1fr 47px
    }

        .product-row-cart .d-grid.thankyou {
            grid-template-columns: minmax(auto, 20%) minmax(auto, 30%) 1fr 1fr 1fr 47px;
        }
}



@media (max-width: 980px) {
    .newBox img {
        display: none;
    }

    .newBox {
        height: 100px;
    }

        .newBox div {
            grid-template-columns: 250px 1fr;
        }
}

@media (max-width: 807px) {
    .product-row {
        width: 350px;
        margin: 10px auto;
    }

    .news-box {
        min-height: 209px;
    }
}

@media (max-width: 768px) {
    .main {
        width: 80%;
        margin-right: 5px;
    }

    .custom-wrapper {
        width: 100%;
        left: 0;
        padding: 0 10px;
    }

    .projtitle {
        width: 100%;
        position: relative;
        right: 26px;
    }

    .price-input {
        flex-direction: column;
        align-items: center;
    }

    .price-field {
        margin-bottom: 10px;
    }

    .news-box {
        min-height: 209px;
    }


    /*    .blue-box {
        background-color: var(--white);
    }*/

    .nav-pills .nav-link.active::after {
        content: '';
        position: absolute;
        border-left: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid var(--darkblue);
        right: 15px;
        bottom: -20px;
        transition: border-color .15s ease-in-out;
    }

    .product-row {
        width: 320px;
        margin: 10px auto;
    }

    .nav-pills .nav-link:hover {
        background: var(--darkblue);
    }

    .lightbox div {
        width: 80%;
    }

    .floating-img div {
        height: 450px;
    }

    h1, .h1 {
        font-size: 1.8rem;
    }

    h2, .h2 {
        font-size: 1.6rem;
    }

    h3, .h3 {
        font-size: 1.5rem;
    }

    h4, .h4 {
        font-size: 1.3rem;
    }

    h5, .h5 {
        font-size: 1.2rem;
    }

    .lg-next, .lg-prev {
        bottom: 42%;
    }

    .product-row-cart .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 140px) minmax(auto, 40%) auto;
        grid-gap: 5px;
        padding: 5px;
        grid-template-areas:
            " product-card-img name name trash"
            " product-card-img price . . "
            " product-card-img . . . "
            " product-card-img amount . total ";
    }

        .product-row-cart .d-grid.thankyou {
            display: grid;
            grid-template-columns: minmax(auto, 120px) minmax(auto, 30%) 1fr;
            grid-gap: 5px;
            padding: 5px;
            grid-template-areas:
                " product-card-img name name ."
                " product-card-img price . . "
                " product-card-img amount . total ";
        }



    .product-row-orderdetails .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 140px) minmax(auto, 30%) auto;
        grid-gap: 5px;
        padding: 5px;
        grid-template-areas:
            " product-orderdetails-img name price amount total";
    }

    .product-card-img {
        grid-area: product-card-img;
    }

    .product-orderdetails-img {
        grid-area: product-orderdetails-img;
    }

    .name {
        grid-area: name;
    }

    .price {
        grid-area: price;
    }

    .amount {
        grid-area: amount;
    }

    .total {
        grid-area: total;
    }

    .trash {
        grid-area: trash;
    }

    .quantity-control {
        border-radius: 5px;
        padding: 0rem;
        /* margin: auto 12px; */
        border: 2px solid #1A96AD;
    }

    .newBox h2 {
        font-size: 1rem;
    }

    .newBox {
        height: auto;
        /*      display: block; */
    }

    .padding-100 {
        padding-top: 120px;
    }
}

@media (max-width: 767.5px) {
    .tab-list {
        display: none;
    }
}


@media (max-width: 767px) {
    .product-slider-small {
        width: 515px;
    }


    .info-box-compare {
        min-height: 150px;
    }

    #compare .product-card-img img {
        width: 80px;
    }

    #compare a span {
        font-size: 1.2rem;
    }
}

@media (max-width: 624px) {
    #next.swiper-button-next,
    #prev.swiper-button-prev {
        display: none;
    }

    img#img-thumbnail {
        height: 50px;
        width: 50px !important;
    }

    .product-row {
        width: 400px;
        margin: 10px auto;
    }

    .favourite-container .product-row {
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
    }

    #large-img.swiper-slide {
        /* width: 100% !important;*/
        /* height: auto !important;
        object-fit: cover;*/
    }

    .product-row-cart .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 140px) minmax(auto, 40%) auto;
        grid-gap: 5px;
        padding: 5px;
        grid-template-areas:
            " product-card-img name name trash"
            " product-card-img price . . "
            " product-card-img . . . "
            " product-card-img amount . total ";
    }

        .product-row-cart .d-grid.thankyou {
            display: grid;
            grid-template-columns: minmax(auto, 120px) minmax(auto, 30%) 1fr;
            grid-gap: 5px;
            padding: 5px;
            grid-template-areas:
                " product-card-img name name ."
                " product-card-img price . . "
                " product-card-img amount . total ";
        }

    .product-row-orderdetails .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 130px) minmax(auto, 30%) auto;
        grid-gap: 5px;
        padding: 5px;
        grid-template-areas:
            " product-orderdetails-img name price amount total";
    }
}

@media (max-width: 576px) {
    .product-slider-small {
        width: 100%;
        bottom: 0;
    }

    .lightbox div {
        width: 90%;
    }

    .column-count {
        column-count: 1;
    }

    .manufacturer-card-img {
        border-right: none;
        border-bottom: 1px solid var(--lightgrey);
    }

    img.manufacturer-card-img {
        max-height: 200px;
        object-fit: contain;
    }

    #favourite-container .product-row .flex-sm-row-reverse {
        flex-direction: row-reverse;
    }

    #mobile-menu .show {
        overflow-y: auto;
        max-height: 415px;
    }

    #compare .product-card-img img {
        width: 50px;
    }
}

@media (max-width: 575px) {
    .padding-100 {
        padding-top: 75px;
    }

    .newBox img {
        height: 80px;
    }

    .newBox div {
        grid-template-columns: 150px 1fr;
    }
}

@media (max-width: 568px) {
    .floating-img div {
        height: 350px;
    }

    .floating-img {
        width: 100%;
        position: relative
    }

    .banner-firstpage {
        height: 640px;
    }


    /*
    #unibox-suggest-box {
        min-width: 100vw !important;
        max-width: 100vw !important;
        max-height: 100%;
        min-height: 500px;
        cursor: pointer;
        overflow-y: scroll;

    }*/
    .product-row-cart .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 110px) minmax(auto, 50%) auto;
        grid-gap: 5px;
        padding: 5px;
        grid-template-areas:
            " product-card-img name name trash"
            " product-card-img price price . "
            " product-card-img . . . "
            " product-card-img amount total total ";
    }

        .product-row-cart .d-grid.thankyou {
            display: grid;
            grid-template-columns: minmax(auto, 110px) minmax(auto, 100px) minmax(auto, 70px) 1fr;
            grid-gap: 5px;
            padding: 5px;
            grid-template-areas:
                " product-card-img name name ."
                " product-card-img price price . "
                " product-card-img amount amount . "
                " product-card-img total total  .";
        }

  
    .product-row-orderdetails .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 100px) minmax(auto, 30%) auto;
        grid-gap: 5px;
        padding: 5px;
        grid-template-areas:
            " product-orderdetails-img name name ."
            " product-orderdetails-img price price . "
            " product-orderdetails-img amount amount . "
            " product-orderdetails-img total total . ";
    }

    .product-row-cart .product-card-img img, .product-row-orderdetails .product-orderdetails-img img {
        width: 100px;
    }

    .progressbar-name small.last {
        left: 11px;
    }
}

@media (max-width:425px) {

    img#img-thumbnail {
        height: 45px;
        width: 45px !important;
    }

    .news-box {
        min-height: 213px;
    }

    .navbar-brand img {
        height: 1.75rem
    }

    .nav-icons i, .bi.bi-heart, navbar-toggler {
        font-size: 1.4rem;
    }

    .navbar-toggler[aria-expanded="false"]::after {
        font-family: "bootstrap-icons";
        content: "\F479";
        border: none;
        color: var(--darkblue);
        font-size: 30px;
    }

    .navbar-toggler[aria-expanded="true"]::after {
        font-family: "bootstrap-icons";
        content: "\F659";
        border: none;
        color: var(--darkblue);
        font-size: 24px;
    }


    #compare a {
        font-size: .8rem;
    }

    .info-box-compare p {
        word-break: break-all;
    }

    .fixedElement img {
        height: 200px;
    }

    .newBox img {
        height: 50px;
    }

    .newBox h2 {
        font-size: .8rem;
    }


    .news-box {
        min-height: 213px;
    }
}

@media (max-width: 399px) {
    .floating-img div {
        height: 250px;
    }

    .banner-firstpage {
        height: 660px;
    }

    #favourite-container .product-row .flex-sm-row-reverse {
        flex-direction: column;
    }

    .product-row-cart .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 80px) minmax(auto, 200px) auto;
        grid-gap: 5px;
        padding: 5px 12px 5px 5px;
        grid-template-areas:
            " product-card-img name name trash"
            " product-card-img price price . "
            " product-card-img . . . "
            " product-card-img amount total total ";
    }

        .product-row-cart .d-grid.thankyou {
            display: grid;
            grid-template-columns: minmax(auto, 80px) minmax(auto, 200px) auto;
            grid-gap: 5px;
            padding: 5px;
            grid-template-areas:
                " product-card-img name name ."
                " product-card-img price price . "
                " product-card-img amount amount . "
                " product-card-img total total  .";
        }

    .product-row-cart .product-card-img img {
        width: 80px;
    }

    .progressbar .dot.active {
        height: 22px;
    }

    .progressbar .dot {
        width: 20px;
    }


    #favourite-container .product-row .flex-sm-row-reverse {
        flex-direction: column;
    }

    .navbar-brand img {
        height: 1.5rem
    }
}
    .product-row-orderdetails .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 80px) minmax(auto, 200px) auto;
        grid-gap: 5px;
        padding: 5px 12px 5px 5px;
        grid-template-areas:
            " product-orderdetails-img name name trash"
            " product-orderdetails-img price price . "
            " product-orderdetails-img amount amount . "
            " product-orderdetails-img total total . ";
    }

    .product-row-cart .product-card-img img {
        width: 80px;
    }

    .progressbar .dot.active {
        height: 22px;
    }

    .progressbar .dot {
        width: 20px;
    }

    .product-row-cart .product-card-img img, .product-row-orderdetails .product-orderdetails-img img {
        width: 80px;
    }
}

@media (max-width: 375px) {


    .info-box-compare p {
        word-break: break-all;
    }

    .fixedElement img {
        height: 200px;
    }

    .newBox img {
        height: 40px;
    }
}

@media (max-width:352px) {
    img#img-thumbnail {
        height: 40px;
        width: 40px !important;
    }

    .banner-firstpage {
        height: 700px;
    }

    .info-box-compare {
        min-height: 155px;
    }

    .product-row-cart .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 80px) minmax(auto, 200px) auto;
        grid-gap: 5px;
        padding: 5px 12px 5px 5px;
        grid-template-areas:
            " product-card-img name name trash"
            " product-card-img price price price "
            " product-card-img . . . "
            " product-card-img amount total total ";
    }

    .navbar-brand img {
        height: 1.5rem
    }

    #compare .compare-box {
        display: block;
    }

        #compare .compare-box .compare-columns {
            flex: 0 0 auto;
            width: 100%;
        }

    .product-row-orderdetails .d-grid {
        display: grid;
        grid-template-columns: minmax(auto, 80px) minmax(auto, 200px) auto;
        grid-gap: 5px;
        padding: 5px 12px 5px 5px;
        grid-template-areas:
            " product-orderdetails-img name name name"
            " product-orderdetails-img price price price "
            " product-orderdetails-img amount amount amount "
            " product-orderdetails-img total total total ";
    }

    .product-row-cart .product-card-img img, .product-row-orderdetails .product-orderdetails-img img {
        width: 80px;
    }
}


/*MEDIAQUERY END*/
#product-guide {
    /*  margin: 2px;*/
    scroll-snap-align: start;
    scroll-margin-top: 1rem;
}

.cursor-pointer {
    cursor: pointer;
}


#CookiebotWidget {
    z-index: 100 !important;
}

.ajax-products-busy {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 99;
}


.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-width: 20px;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
}

.spinner {
    border-style: double;
    border-color: var(--turkos) transparent;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}
