/* css for webshop */

:root {
    --blue: #ffd162;
    --darkgrey: #2c2e30;
    --blue: #2c8cbc;
}

.blue {
    color: var(--blue);
}

.opened {
    display: block;
}

.closed {
    display: none;
}

#customerInfoWrap {
    transition: height 1s ease;
}

#customerInfoInputWrap {
    display: flex;
    justify-content: space-evenly;
    padding: 2rem 0;
}

#customerInfoWrap .input-wrapper {
    display: flex;
    flex-direction: column;
    width: 350px;
}

#customerInfoWrap .input-wrapper label {
    padding: 10px 0;
    font-size: 14px;
}

.headerDelivery,
.headerInvoice {
    font-weight: bold;
    padding: 1rem 0;
}

.checkbox-container {
    padding: 0.5rem 0;
    margin-left: 6.3rem;
}

.register-terms-text,
.sameAdress-terms-text {
    position: relative;
    padding-left: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#confirm-terms,
#confirm-sameAdress {
    opacity: 0;
}

#webshop-show-cart .register-terms-text input:hover~.checkmark,
#webshop-show-cart .sameAdress-terms-text input:hover~.checkmark {
    background-color: var(--mediumGray);
}

#webshop-show-cart #customerInfoWrap .error-message {
    color: red;
    padding: 0.25rem 0;
}


/* When the checkbox is checked, add a blue background */

#webshop-show-cart .register-terms-text input:checked~.checkmark,
#webshop-show-cart .sameAdress-terms-text input:checked~.checkmark {
    background-color: var(--blue);
}


/* Create the checkmark/indicator (hidden when not checked) */

#webshop-show-cart .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

#webshop-show-cart .register-terms-text input:checked~.checkmark:after,
#webshop-show-cart .sameAdress-terms-text input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

#webshop-show-cart .register-terms-text .checkmark:after,
#webshop-show-cart .sameAdress-terms-text .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* popup for message */

#added-div {
    height: 50px;
    width: 100%;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
}

#added-div p {
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    /* font-size: 120%; */
    font-size: 1.6rem;
    /* color: var(--white); */
}

#added-div {
    background-color: var(--blue);
}

#added-div.on {
    animation-name: popUp;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes popUp {
    0% {
        bottom: -50px;
        opacity: 0;
    }
    10% {
        bottom: -25px;
        opacity: 0.8;
    }
    20% {
        bottom: 0px;
        opacity: 0.9;
    }
    79% {
        bottom: 0px;
        opacity: 1;
    }
    90% {
        bottom: -25px;
        opacity: 0.9;
    }
    99% {
        bottom: -50px;
        opacity: 0.8;
    }
    100% {
        bottom: -50px;
        opacity: 0;
    }
}


/* end popup for message */

.center {
    text-align: center !important;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.table-wrapper {
    overflow-x: auto;
}

.d-flex {
    display: flex;
}

#menu-shopcart-item-count {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 3px;
    left: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.shopping-cart-icon-wrapper {
    position: relative;
    margin: 20px 0;
}

.shopping-cart-icon-wrapper i {
    color: var(--darkGray);
    transition: all 0.4s ease-in-out;
}

.shopping-cart-icon-wrapper i:hover {
    transform: scaleX(0.9);
}

#webshop-main-page ul .active {
    color: var(--blue);
}

#webshop-main-page ul,
#webshop-main-page li,
#webshop-main-page a {
    text-decoration: none;
    list-style-type: none;
    color: var(--blue);
}

.returnpolicy {
    padding-left: 40px;
}


/* pagination */


/* 
.paginationWrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 20px;
}

.paginationSelector {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 5px;
    text-decoration: none;
    border-radius: 15px;
    text-align: center;
    padding: 0px;
    height: 32px;
    width: 32px;
}

.paginationWrapper .pagination-mobile {
    display: none;
}

.paginationSelector.active {
    background-color: var(--blue);
    color: var(--white);
    text-decoration: none;
} */


/* end pagination */

#webshop-main-page.webshop-wrapper {
    position: relative;
}

section.webshop-wrapper {
    width: 100%;
    background-color: var(--lightGray);
}

section.webshop-wrapper>div {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
}

section.webshop-show-cart-wrapper {
    width: 100%;
    background-color: var(--lightGray);
    padding: 15px;
}

section.webshop-show-cart-wrapper>div {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: var(--white);
    border-radius: 0.3rem;
}

section.webshop-wrapper .checkout-text-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px;
    background-color: var(--white);
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

section.webshop-wrapper .checkout-text-wrapper h4 {
    padding: 0;
    margin-right: 20px;
}

#klarna-checkout-wrapper {
    width: 100%;
    padding: 25px 10px;
    background-color: var(--white);
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.2), 0 5px 5px rgba(171, 171, 171, 0.2);
}

#webshop-main-page .webshop-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 75%;
    margin: 1.5rem auto;
    margin: 0 auto;
}

.webshop-items-wrapper>form {
    margin: 0px auto !important;
    width: 100% !important;
}

.btn-buy {
    display: inline-block;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 2px solid transparent;
    padding: 10px 40px;
    min-width: fit-content;
    line-height: 1.5;
    border-radius: 0.2rem;
    transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out, border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
    cursor: pointer;
    text-decoration: none !important;
    font-size: 2rem;
    text-align: center;
    margin: auto;
    font-size: 16px;
}

.btn-color-gray {
    color: whitesmoke !important;
    background-color: #7e7e7e !important;
    background-color: var(--red) !important;
}

.btn-color-gray:hover {
    color: whitesmoke !important;
    background-color: #6e6e6e !important;
    background-color: var(--red) !important;
}

.btn-buy {
    background-color: var(--blue) !important;
    background: var(--blue) !important;
    /* color: var(--white) !important ; */
    color: var(--white);
    padding: 10px 40px !important;
    cursor: pointer;
}

.btn-buy:hover {
    text-decoration: underline !important;
}

.btn-disabled {
    cursor: not-allowed;
    opacity: 0.2;
}


/* tooltip */

.box-overlay {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    color: inherit;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}


/* SLIDE DOWN DELAY */

.slide-down-delay .overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue);
    line-height: 200px;
    color: var(--white);
    transform: translateY(-100%);
    -webkit-transition: transform 0.5s ease-out;
    -o-transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    z-index: 101;
}


/* .slide-down-delay .box-overlay:hover .overlay {
  transform: translateY(0);
} */

.webshop-wrapper small {
    font-size: 12px;
}

#webshop-main-page input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
}


/* Chrome, Safari, Edge, Opera */

#webshop-main-page input::-webkit-outer-spin-button,
#webshop-main-page input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

#webshop-main-page input[type="number"] {
    -moz-appearance: textfield;
}

#webshop-main-page .items-quantity {
    position: relative;
    display: flex;
    margin-left: 0px;
    align-items: center;
    padding: 10px 0px;
}

#webshop-main-page .items-quantity i {
    cursor: pointer;
}

#webshop-main-page .items-quantity .minus {
    width: auto;
    margin-right: 15px;
}

#webshop-main-page .items-quantity .plus {
    width: auto;
    margin-left: 5px;
}

#webshop-main-page .items-quantity .minus:hover {
    color: var(--blue);
}

#webshop-main-page .items-quantity .plus:hover {
    color: var(--blue);
}

#webshop-main-page .items-quantity .quantity-field {
    position: relative;
    /* height: 26px; */
    height: 32px;
    /* width: 50px; */
    width: 62px;
    left: -6px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 0 0 0px;
    resize: vertical;
    background-color: var(--white);
    background: var(--white);
    border: 2px solid var(--mediumGray);
}


/*  */

#webshop-main-page .insufficient-stock-tooltip,
#webshop-show-cart .insufficient-stock-tooltip {
    /* display: none; */
    visibility: hidden;
    position: absolute;
    top: -66px;
    right: 0px;
    z-index: 110;
    width: 350px;
    min-width: 100px;
    background-color: var(--blue);
    border-radius: 5px;
    color: var(--white);
    padding: 10px 20px;
    transition: all 1s ease-in-out;
    opacity: 0;
}

#webshop-main-page .insufficient-stock-tooltip-show,
#webshop-show-cart .insufficient-stock-tooltip-show {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1;
    visibility: visible;
}


/*  */


/* shopping cart */

#webshop-show-cart input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
}


/* Chrome, Safari, Edge, Opera */

#webshop-show-cart input[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
}

#webshop-show-cart input[type="number"] {
    -moz-appearance: textfield;
}

#webshop-show-cart .items-quantity {
    /* position: relative; */
    display: flex;
    margin-left: 0px;
    align-items: center;
}

#webshop-show-cart .items-quantity i {
    cursor: pointer;
}

#webshop-show-cart .items-quantity .minus {
    width: auto;
    margin-right: 15px;
}

#webshop-show-cart .items-quantity .plus {
    margin-left: 5px;
}

#webshop-show-cart .items-quantity .minus:hover {
    color: var(--blue);
}

#webshop-show-cart .items-quantity .plus:hover {
    color: var(--blue);
}

#webshop-show-cart .items-quantity .quantity-field {
    text-align: center;
    width: 50px;
    font-size: 16px;
    line-height: 30px;
}


/* version 2 */

#webshop-main-page .webshop-category-box-25 {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    width: 25%;
    width: calc(25% - 3rem);
    margin: 1.5rem;
    padding: 20px;
    line-height: 22px;
    min-height: 200px;
    border-radius: 0.3rem;
}

#category-top-wrapper {
    border-bottom: 1px solid var(--mediumGray);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#category-title {
    padding: 20px 0;
}

#show-categories-toggler {
    display: none;
}

.webshop-category-box-25 ul {
    list-style-type: none;
    padding: 0;
}

.webshop-category-box-25 ul>li>a {
    padding: 15px 0;
    float: left;
    width: 100%;
    /* font-size: 16px; */
    border-top: 1px solid var(--mediumGray);
}

.webshop-category-box-25 ul>li>a {
    color: var(--darkGray);
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.webshop-category-box-25 ul>li>a:hover {
    color: var(--blue) !important;
}


/* version 2 */

.webshop-category-box-25 ul ul li a {
    padding: 0px 0 15px 20px;
    border-top: none;
    font-size: 14px;
    display: inline-block;
}

.webshop-category-box-25 .menu-show-all-products h4 {
    text-decoration-line: underline;
    margin: 18px 0px 2px;
}

.webshop-category-box-25 .menu-show-all-products a {
    display: block;
    text-decoration: none;
    padding: 15px 0;
}

.webshop-category-box-25 .menu-show-all-products a:hover,
.webshop-category-box-25 .menu-show-all-products a.active {
    color: var(--blue) !important;
}

section .submenu ul li a.active {
    font-weight: bold;
}

section .submenu ul li a.showsub {
    display: none;
}


/*  */

#webshop-main-page .webshop-box-25,
#webshop-show-cart .webshop-box-25 {
    padding: 0;
    width: 33.33%;
    width: calc(33.33% - 3rem);
    margin: 1.5rem;
    overflow: hidden;
    /* flex-grow: 1; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 0.3rem;
    max-height: 80rem;
}

#webshop-main-page .webshop-box-25:hover .box-image-container {
    transform: scale(1.05);
}

.box-image-background {
    position: relative;
    padding: 50px;
    background-color: var(--white);
    border-bottom: 2px solid #f3f3f3;
    overflow: hidden;
}

#webshop-main-page .webshop-box-25 .box-image-container {
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}

#webshop-main-page .webshop-box-25 .box-content {
    padding: 20px;
    /* margin-top: 15px; */
    margin-top: 0;
    z-index: 20;
    color: inherit;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-grow: 1;
}

.webshop-box-25 .box-content h4 {
    font-size: 26px;
}

#webshop-main-page .webshop-box-25 .box-content>div {
    display: flex;
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding: 0;
    width: 100%;
    flex-grow: 1;
}

#webshop-main-page .webshop-box-25 .item_price {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    color: var(--blue);
}

#webshop-main-page .webshop-box-25 .item_price p {
    font-weight: 500;
    font-size: 22px;
}

#webshop-main-page .webshop-box-25 .item-action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    /* padding-top: 30px; */
    padding-top: 20px;
    padding-bottom: 10px;
    justify-content: flex-start;
}

#webshop-main-page .webshop-box-25 .item-action form {
    width: 100%;
    margin: 0;
}

#webshop-main-page .webshop-box-25 .item-action .btn-buy {
    width: 100%;
}

#webshop-main-page .webshop-warehouse-product-stock {
    padding: 10px 0;
}

#webshop-main-page .webshop-box-25 .bottom-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px 20px 20px;
    /* margin-bottom: 15px; */
    margin-bottom: 0;
}


/* badge-new-item   */

.webshop-box-25 .badge-new-item::before {
    content: "";
    background: var(--blue);
    filter: blur(1px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.webshop-box-25 .badge-new-item {
    background-color: var(--blue);
    color: var(--white);
    height: 40px;
    display: inline-block;
    padding: 0 15px 0 15px;
    line-height: 40px;
    text-align: right;
    position: absolute;
    font-size: 14px;
    left: 0;
    top: 0px;
    color: var(--white);
    z-index: 100;
}


/* #webshop-main-page .webshop-box-100 */

#webshop-main-page .webshop-box-100 {
    padding: 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 0.3rem;
    margin: 1.5rem 0;
}

.webshop-product-image-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 50px;
}

.image-active {
    border: 2px solid var(--mediumGray);
}

#webshop-main-page .webshop-box-100 .box-image-container {
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#webshop-main-page .webshop-box-100 .box-image-slider-container {
    background-repeat: no-repeat;
    width: 100%;
    min-height: 160px;
    padding-top: 40%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#webshop-main-page .webshop-box-100 .image-container-small-wrapper {
    width: 100%;
    max-width: 590px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    margin-top: 15px;
}

#webshop-main-page .webshop-box-100 .box-image-container-small {
    background-repeat: no-repeat;
    width: 75px;
    margin: 1%;
    height: auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#webshop-main-page .webshop-box-100 .box-content-wrapper {
    margin: 0 auto;
    width: 60%;
    padding-bottom: 50px;
}

#webshop-main-page .webshop-box-100 .box-content>div {
    display: flex;
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding: 0;
    width: 100%;
    flex-grow: 1;
}

#webshop-main-page .webshop-box-100 .box-content {
    padding: 20px;
    z-index: 20;
    color: inherit;
    display: flex;
}

#webshop-main-page .webshop-box-100 .box-product {
    padding: 20px;
    z-index: 20;
    color: inherit;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-grow: 1;
}

#webshop-main-page .webshop-box-100 .box-content h2 {
    font-size: 30px !important;
    font-weight: normal;
    margin-bottom: 10px;
}

#webshop-main-page .webshop-box-100 .box-content .box-product-info h4 {
    font-size: 18px !important;
    font-weight: bold;
    margin-bottom: 5px !important;
}

#webshop-main-page .webshop-box-100 .box-content .box-product-info p {
    font-size: 14px !important;
}

.webshop-product-single-image {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 25px 0;
}

#webshop-main-page .webshop-box-100 .bottom-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
}

#webshop-main-page .webshop-box-100 .bottom-content .box-item-size {
    padding: 10px 0;
    text-align: right;
}

#webshop-main-page .webshop-box-100 .bottom-content .box-item-size label {
    font-size: 14px;
}

#webshop-main-page .webshop-box-100 select {
    border: 1px solid var(--lightGray);
    color: var(--black);
}

#webshop-main-page .webshop-box-100 .bottom-content .price-and-amount {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

#webshop-main-page .webshop-box-100 .bottom-content .price-and-amount .item_price {
    font-size: 26px;
    font-weight: normal;
    padding-bottom: 18px;
    color: var(--blue);
}

#webshop-main-page .webshop-box-100 .bottom-content .price-and-amount .item_price p {
    font-size: 26px;
    font-weight: 500;
    color: var(--blue);
}

#webshop-main-page .webshop-box-100 .item-action {
    margin-top: 10px;
}


/* end #webshop-main-page .webshop-box-100 */


/* box-product-info */

#webshop-main-page .box-product-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 22px;
}


/* box-product-info */


/* box-other-info */

#webshop-main-page .box-other-info {
    font-weight: bold;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 0px;
}

#webshop-main-page .box-other-info h4 {
    font-size: 18px;
}

#webshop-main-page .box-other-info p {
    font-size: 14px;
}


/* box-other-info */

.bin-items {
    margin-top: 30px;
    margin-bottom: 0;
}

#webshop-main-page select {
    width: 99%;
    min-width: 150px;
    margin: 0;
    margin-top: 10px;
    /* font-size: 16px; */
    font-size: 14px;
    padding: 10px;
    height: 45px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    background-image: url(../../images/icons8-chevron-down-90.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 95%;
    font-weight: bold;
    border: 1px solid var(--mediumGray);
    color: var(--blue);
}

#webshop-main-page select:focus {
    border: 1px solid var(--blue);
    outline: none;
}

.other-info {
    font-weight: normal;
    font-size: 14px;
}


/* .show-cart-box-100-img-left  */

.show-cart-box-100-img-left {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row;
    padding: 20px 0;
    border-bottom: 2px solid var(--mediumGray);
}

.show-cart-box-100-img-left .box-image-container {
    width: 20%;
    position: relative;
    display: flex;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.show-cart-box-100-img-left .box-content {
    margin: auto;
    width: 50%;
    padding: 20px;
    max-width: 960px;
    text-align: left;
    font-size: 18px;
}

.show-cart-box-100-img-left .box-content>p {
    padding-top: 4px;
}

.show-cart-box-100-img-left .box-trash {
    display: flex;
    justify-content: center;
    width: 20%;
}

.show-cart-box-100-img-left .box-trash a {
    color: var(--blue);
}


/* end .show-cart-box-100-img-left  */

.table-content {
    display: flex;
    justify-content: space-between;
}

#webshop-show-cart table,
#webshop-show-cart td,
#webshop-show-cart th {
    border: none !important;
}

#webshop-show-cart table {
    border-collapse: collapse;
    width: 100%;
}

#webshop-show-cart thead {
    border-bottom: 1px solid #7e7e7e;
}

#webshop-show-cart td,
#webshop-show-cart th {
    text-align: left;
    padding: 8px;
}

#webshop-show-cart td {
    vertical-align: middle;
}

#webshop-show-cart tr:nth-child(even) {
    background-color: #dddddd;
}

.form-checkout-wrapper {
    width: 100%;
}


/* The chbx-container */

#webshop-show-cart .chbx-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: fit-content;
    /* jm */
}


/* #webshop-show-cart .chbx-container:nth-child(1) {
    margin-right: 20px;
} */

#webshop-show-cart .chbx-container:not(:last-child) {
    margin-right: 20px;
}


/* Hide the browser's default checkbox */

#webshop-show-cart .box-delivery-type input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

#webshop-show-cart .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}


/* On mouse-over, add a grey background color */

#webshop-show-cart .box-delivery-type input:hover~.checkmark {
    background-color: var(--mediumGray);
}


/* When the checkbox is checked, add a blue background */

#webshop-show-cart .box-delivery-type input:checked~.checkmark {
    background-color: var(--blue);
}


/* Create the checkmark/indicator (hidden when not checked) */

#webshop-show-cart .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

#webshop-show-cart .box-delivery-type input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

#webshop-show-cart .box-delivery-type .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* #webshop-show-cart .box-delivery-type {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 50px;
  padding-top: 20px;
} */

#webshop-show-cart .box-delivery-type {
    position: relative;
    display: flex;
    /* flex-direction: column; */
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    padding-top: 20px;
}

#webshop-show-cart .box-delivery-type label {
    font-size: large;
    font-weight: normal;
}

#webshop-show-cart .box-totalCartValue,
#webshop-checkout-show-cart .box-totalCartValue,
#webshop-show-cart .box-totalCartValue1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
}

#webshop-show-cart .box-totalCartValue .payoptions-wrapper,
#webshop-checkout-show-cart .box-totalCartValue .payoptions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#webshop-show-cart .box-totalCartValue h4,
#webshop-checkout-show-cart .box-totalCartValue h4 {
    font-size: 18px;
    padding: 0;
    /* margin-bottom: 25px; */
}

#webshop-show-cart .box-checkout-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

#webshop-show-cart .box-checkout-action>.btn.btn-buy:disabled {
    cursor: not-allowed;
    opacity: 0.2;
}

#clear-cart-form {
    width: 100% !important;
    margin-top: 20px;
}

#webshop-show-cart .webshop-show-cart-top-content {
    margin-bottom: 30px;
}

#webshop-show-cart .webshop-show-cart-top-content>a {
    text-decoration: none;
    transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out, border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

#webshop-show-cart .webshop-show-cart-top-content>a:hover {
    color: var(--blue);
}


/* webshop thank you page */

.webshop-thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.webshop-thank-you>h1 {
    padding: 50px 0;
}


/* media queries for small devices */

.show-hide-shopcart-icon-in-nav {
    display: none;
}

.menubuttonShoppingcartWrapper {
    display: none;
    float: none;
    padding: 10px 20px;
    top: -61px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    z-index: 100;
    width: 100%;
}

.menubuttonShoppingcartWrapper h2 {
    display: none;
    margin: 0 !important;
    padding: 0px 14px 2px 14px;
}

.menubuttonShoppingcartWrapper i {
    color: var(--black);
    cursor: pointer;
}

.mobile-button-show-hide-category {
    display: none;
    padding: 22px;
    background-color: var(--white);
    z-index: 100;
}

.mobile-button-show-hide-category:hover~i {
    color: var(--white) !important;
}

.mobile-show-category {
    right: 0% !important;
}

.fa-lg {
    font-size: 1.5em;
}

@media all and (max-width: 960px) {
    section.webshop-wrapper>div {
        padding: 1rem 0.5rem;
        overflow: hidden;
    }
    #webshop-main-page .webshop-items-wrapper {
        width: 100%;
        justify-content: flex-start;
    }
    .paginationWrapper {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 30px;
    }
    .paginationSelector {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 0 0 5px;
        text-decoration: none;
        border-radius: 15px;
        text-align: center;
        padding: 0px;
        height: 32px;
        width: 32px;
    }
    /* #menu-shopcart-item-count {
        display: inline-flex;
        justify-content: center;
        position: absolute;
        top: -14px;
        right: 0;
        left: 7px;
        width: 20px;
        height: 20px;
        padding: 0px;
        border-radius: 50%;
        background-color: var(--blue);
        font-weight: bold;
        color: var(--white);
    } */
    #webshop-main-page .webshop-category-box-25 {
        width: 100%;
        width: 100%;
        transition: all 0.3s ease;
        min-height: unset;
        padding: 0;
    }
    .webshop-category-box-25>ul>li>a {
        font-size: 18px;
    }
    .webshop-category-box-25 ul ul li a {
        font-size: 16px;
    }
    .mobile-button-show-hide-category {
        display: inline-flex;
    }
    .show-hide-shopcart-icon-in-nav {
        display: flex;
        position: relative;
        padding-left: 5px;
        margin-right: 33px;
        margin-left: 10px;
    }
    .show-hide-shopcart-icon-in-menu {
        display: none !important;
    }
    .menubuttonShoppingcartWrapper {
        right: 50px;
        display: flex;
    }
    .menubuttonShoppingcartWrapper h2 {
        display: inline-flex;
    }
    #webshop-main-page.webshop-wrapper {
        /* margin-top: 80px; */
        margin-top: 0;
        padding: 0;
    }
    .mobile-button-show-hide-category {
        display: inline-flex;
    }
    #category-top-wrapper {
        border-bottom: none;
        padding: 0 0 0 20px;
        background-color: var(--blue);
    }
    #show-categories-toggler {
        display: block;
        padding: 20px;
        cursor: pointer;
    }
    #show-categories-toggler #toggle-show {
        font-size: 20px;
    }
    #show-categories-toggler #toggle-hide {
        font-size: 20px;
        display: none;
    }
    .show-categories-toggler-open {
        padding-bottom: 2.5rem !important;
    }
    .toggler-open #toggle-show {
        display: none !important;
    }
    .toggler-open #toggle-hide {
        display: block !important;
    }
    #all-categories-wrapper {
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        overflow: hidden;
        padding: 0 20px;
    }
    #all-categories-wrapper:not(.active) {
        display: none;
    }
    #category-title {
        margin-bottom: 0;
    }
    .header-icon {
        right: 45px;
    }
}

@media all and (max-width: 700px) {
    #webshop-main-page .webshop-items-wrapper {
        justify-content: space-around;
    }
    #webshop-main-page .webshop-box-25,
    #webshop-show-cart .webshop-box-25 {
        width: 50%;
        width: calc(50% - 3rem);
    }
    .paginationWrapper .pagination-desktop {
        display: none;
    }
    .paginationWrapper .pagination-mobile {
        display: block;
    }
}


/* @media all and (max-width: 550px) */

@media all and (max-width: 600px) {
    #webshop-show-cart .webshop-show-cart-top-content a {
        font-size: 18px;
    }
    #webshop-show-cart .webshop-show-cart-top-content {
        margin-bottom: 10px;
    }
    .show-hide-shopcart-icon-in-nav {
        display: flex;
        position: relative;
        padding-left: 5px;
        margin-right: 33px;
        margin-left: 10px;
    }
    .show-hide-shopcart-icon-in-menu {
        display: none !important;
    }
    .menubuttonShoppingcartWrapper {
        /* right: 20px; */
        right: 10px;
    }
    .menubuttonShoppingcartWrapper h2 {
        display: inline-flex;
    }
    #webshop-main-page.webshop-wrapper {
        /* margin-top: 80px; */
        margin-top: 0;
        padding: 0;
    }
    .mobile-button-show-hide-category {
        display: inline-flex;
    }
    section.webshop-wrapper>div {
        /* padding: 12.5px 20px; */
        padding: 1.25rem 0.5rem;
        overflow: hidden;
    }
    .paginationWrapper {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 30px;
    }
    .paginationSelector {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 0 0 5px;
        text-decoration: none;
        border-radius: 15px;
        text-align: center;
        padding: 0px;
        height: 32px;
        width: 32px;
    }
    .paginationWrapper .pagination-desktop {
        display: none;
    }
    .paginationWrapper .pagination-mobile {
        display: block;
    }
    #webshop-main-page .webshop-category-box-25 .mobile-show-category {
        right: 0%;
    }
    .webshop-category-box-25 ul {
        /* margin-bottom: 10px; */
        margin-bottom: 0;
    }
    .webshop-category-box-25 li {
        /* margin-bottom: 10px; */
        margin-bottom: 0;
    }
    /* wrapper display items */
    #webshop-main-page .webshop-items-wrapper {
        width: 100%;
    }
    /* display single item */
    #webshop-main-page .webshop-box-100 .box-content-wrapper {
        margin: 0 auto;
        width: 100%;
    }
    #webshop-main-page .webshop-box-100 .box-content {
        flex-direction: column-reverse;
    }
    #webshop-main-page .webshop-box-100 .bottom-content {
        align-items: flex-start;
        margin-bottom: 30px;
    }
    #webshop-main-page .webshop-box-100 .bottom-content .price-and-amount {
        align-items: flex-start;
    }
    #webshop-main-page .webshop-box-100 .box-image-container {
        background-repeat: no-repeat;
        width: 100%;
        padding-top: 100%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    #webshop-main-page .webshop-box-100 .bottom-content .box-item-size {
        padding: 10px 0;
        text-align: left;
    }
    #webshop-main-page .insufficient-stock-tooltip {
        visibility: hidden;
        position: absolute;
        top: -66px;
        left: 0;
        z-index: 110;
        width: 300px;
        min-width: 100px;
        background-color: var(--blue);
        border-radius: 5px;
        color: var(--white);
        padding: 10px 20px;
        transition: all 1s ease-in-out;
        opacity: 0;
    }
    #webshop-main-page .insufficient-stock-tooltip-show {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 1;
        visibility: visible;
    }
    /* show shoppingcart */
    #webshop-show-cart>div {
        padding: 35px 20px;
    }
    .show-cart-box-100-img-left .box-image-container {
        display: none;
    }
    .show-cart-box-100-img-left .box-content {
        margin: 0;
        width: 70%;
        padding: 0 0px;
        text-align: left;
        font-size: 16px;
    }
    .show-cart-box-100-img-left .box-trash {
        display: flex;
        justify-content: flex-end;
    }
    #webshop-show-cart .items-quantity .quantity-field {
        position: relative;
        /* height: 26px; */
        height: auto;
        left: -6px;
        text-align: center;
        width: 26px;
        display: inline-block;
        font-size: 18px;
        margin: 0 0 0px;
        resize: vertical;
    }
    #webshop-show-cart .box-delivery-type label {
        font-size: small;
        font-weight: normal;
    }
    #webshop-show-cart {
        padding: 0;
        margin: 1.5rem;
    }
}

@media all and (max-width: 500px) {
    #webshop-main-page .webshop-box-25,
    #webshop-show-cart .webshop-box-25 {
        padding: 0;
        width: 100%;
        width: calc(100% - 3rem);
        max-width: none;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-height: 100%;
    }
    #webshop-main-page .webshop-items-wrapper .webshop-box-25 {
        width: 100%;
        width: calc(100% - 3rem);
    }
    #webshop-show-cart .box-delivery-type {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        margin-bottom: 50px;
        padding-top: 20px;
    }
    #klarna-checkout-wrapper {
        width: 100%;
        overflow: scroll;
    }
    #klarna-checkout-wrapper .list {
        width: 100%;
        min-width: max-content;
    }
}
