
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    [dir=ltr] .btn-svg-icon svg {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

#shop_pages .btn-checkout {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1.5;
    background: --secondaryColor;
    border: none;
    padding: 0.375em 0.75em;
    color: #fff;
    margin-top: 0.5em;
    cursor: pointer;
    border-radius: 0;
    font-weight: bold;
    width: 300px;
    padding: 10px;
    font-size: 1.5rem;
}

.btn-primary:focus,
.btn-primary:hover {
    border-color: #3d464d;
    background: #3d464d;
    color: #fff;
    fill: #fff;
}

.btn-primary:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active {
    border-color: #546069;
    background: #546069;
    color: #fff;
    fill: #fff;
}

.btn-primary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-primary,
.btn-primary:disabled {
    border-color: var(--secondaryColor);
    background: var(--secondaryColor);
    color: #fff;
    fill: #fff;
}

.btn-secondary:focus,
.btn-secondary:hover {
    border-color: #3d464d;
    background: #3d464d;
    color: #fff;
    fill: #fff;
}

.btn-secondary:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-secondary:not(:disabled):not(.disabled):active {
    border-color: #546069;
    background: #546069;
    color: #fff;
    fill: #fff;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-secondary,
.btn-secondary:disabled {
    border-color: #f0f0f0;
    background: #f0f0f0;
    color: #3d464d;
    fill: #3d464d;
}

.btn-light:focus,
.btn-light:hover {
    border-color: #f0f0f0;
    background: #f0f0f0;
    color: #3d464d;
    fill: #3d464d;
}

.btn-light:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-light:not(:disabled):not(.disabled):active {
    border-color: #e5e5e5;
    background: #e5e5e5;
    color: #3d464d;
    fill: #3d464d;
}

.btn-light:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-light,
.btn-light:disabled {
    border-color: transparent;
    background: transparent;
    color: #3d464d;
    fill: #ccc;
}

.product-image__body {
    display: block;
    position: relative;
    padding-bottom: 100%;
    width: 100%;
}

.product-image__img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .product-image__img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
}

.dropcart {
    font-size: 15px;
    font-weight: 400;
    color: #3d464d;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

.dropcart__products-list {
    padding: 20px 16px;
}

.dropcart__product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dropcart__product-image {
    width: 70px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.dropcart__product-name {
    margin-top: -2px;
    line-height: 18px;
    font-size: 12px;
    font-weight: bold;
}

.dropcart__product-name a {
    color: inherit;
    -webkit-transition: .15s;
    transition: .15s;
}

.dropcart__product-name a:hover {
    color: var(--secondaryColor);
}

.dropcart__product-info {
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

[dir=ltr] .dropcart__product-info {
    padding-right: 10px;
    padding-left: 16px;
}

.dropcart__product-options {
    list-style: none;
    margin: 3px 0 0;
    padding: 0;
    font-size: 13px;
    line-height: 16px;
    color: #999;
}

.dropcart__product-meta {
    margin-top: 5px;
    font-size: 13px;
}

.dropcart__product-price {
    font-size: 14px;
    font-weight: 700;
}

.dropcart__product-remove {
    margin-top: -6px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

[dir=ltr] .dropcart__product-remove {
    margin-right: -6px;
}

.dropcart__totals {
    border-top: 1px solid #ebebeb;
    line-height: 24px;
    padding: 16px 20px 0;
}

[dir=ltr] .dropcart__totals th {
    padding-right: 16px;
}

[dir=ltr] .dropcart__totals td {
    text-align: right;
}

.dropcart__totals table {
    width: 100%;
}

.dropcart__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 4px;
    padding: 20px;
}

.dropcart__buttons>* {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

[dir=ltr] .dropcart__buttons> :first-child {
    margin-right: 8px;
}

.dropcart--style--offcanvas {
    visibility: hidden;
    -webkit-transition: visibility 0s 0.3s;
    transition: visibility 0s 0.3s;
}

.dropcart--style--offcanvas .dropcart__backdrop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #3d464d;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    z-index: 1000;
}

.dropcart--style--offcanvas .dropcart__body {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    z-index: 1010;
    height: 100%;
    max-height: 100%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 340px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

[dir=ltr] .dropcart--style--offcanvas .dropcart__body {
    margin-left: 30px;
    right: 0;
    -webkit-transform: translateX(calc(100% + 30px));
    transform: translateX(calc(100% + 30px));
}

.dropcart--style--offcanvas .dropcart__header {
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-bottom: 1px solid #ebebeb;
}

.dropcart--style--offcanvas .dropcart__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 20px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.dropcart--style--offcanvas .dropcart__close {
    border: none;
    padding: 0;
    margin: 0;
    width: 54px;
    height: 54px;
    background: transparent;
    fill: #999;
    -webkit-transition: fill .2s;
    transition: fill .2s;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dropcart--style--offcanvas .dropcart__close:focus {
    outline: none;
}

.dropcart--style--offcanvas .dropcart__close:focus,
.dropcart--style--offcanvas .dropcart__close:hover {
    fill: #3d464d;
}

.dropcart--style--offcanvas .dropcart__products-list {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.dropcart--style--offcanvas .dropcart__totals,
.dropcart--style--offcanvas .dropcart__buttons {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.dropcart--style--offcanvas.dropcart--open {
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.dropcart--style--offcanvas.dropcart--open .dropcart__backdrop {
    opacity: .9;
}

.dropcart--style--offcanvas.dropcart--open .dropcart__body {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media (min-height: 600px) {
    .dropcart--style--offcanvas .dropcart__products-list {
        overflow-y: auto;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
}

@media (max-height: 599px) {
    .dropcart--style--offcanvas .dropcart__header {
        top: 0;
        position: -webkit-sticky;
        position: sticky;
        background: #fff;
        z-index: 1;
    }

    .dropcart--style--offcanvas .dropcart__body {
        overflow-y: auto;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
}

/*! CSS Used from: http://localhost/golfkontor-2023/html/css/custom.css?v=1685654875 */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: #013c0e;
    text-decoration: none !important;
    outline: none !important;
}

img {
    vertical-align: middle;
}