﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

img,
figure {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

svg {
    max-width: 100%;
}   

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
    -webkit-text-decoration: none;
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    /*margin-bottom: 60px;*/
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/*---------- Custom Loading Spinner --------*/
.loading-spinner {
    margin: 2em;
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 6px solid silver;
    animation: loading-spinner-anim 0.7s linear infinite;
    border-bottom-color: #44519e;
    z-index: 10000;
}

@keyframes loading-spinner-anim {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.swal2-spinner-popup.swal2-modal {
    min-height: auto;
}

.swal2-spinner-popup.swal2-popup {
    padding: 0;
}

.swal2-spinner-popup .swal2-html-container {
    margin: 0;
}

.swal2-modal .swal2-icon, .swal2-modal .swal2-success-ring {
    margin: 2.5em auto .6em !important;
}

.swal2-actions .btn {
    margin: 0 1em 0 1em;
}

.swal2-close{
    position: absolute;
    top: 5px;
    right: 5px;
}

a.has-loading-spinner, button.has-loading-spinner {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: white !important;
}

a.has-loading-spinner .loading-spinner, button.has-loading-spinner .loading-spinner {
    margin: 0;
    border: 4px solid silver;
    border-bottom-color: #44519e;
}

input.input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
    border: 1px solid #f00;
    background-color: #fee;
}

/*---------- Product Gallery styling --------*/

.product-gallery {
    position: relative;
}

    .product-gallery .product-badge {
        top: 0;
        left: 0;
        z-index: 10;
    }

    .product-gallery .product-thumbnails {
        display: block;
        margin: 0;
        margin-top: 24px;
        padding: 0;
        list-style: none;
        text-align: center;
    }

        .product-gallery .product-thumbnails > li {
            display: inline-block;
            margin: 0 3px 10px;
        }

            .product-gallery .product-thumbnails > li > a {
                display: block;
                width: 94px;
                transition: border-color .25s;
                border: 1px solid #e2e2e2;
            }

            .product-gallery .product-thumbnails > li.active > a {
                border-color: #dc9814;
                cursor: default;
            }

    .product-gallery .gallery-item > a {
        cursor: url("/Content/Frontend/Themes/1/img/gallery-cursor.png") 0 0, pointer;
        /* Legacy */
        cursor: -webkit-image-set(url("/Content/Frontend/Themes/1/img/gallery-cursor.png") 1x, url("/Content/Frontend/Themes/1/img/gallery-cursor@2x.png") 2x) 0 0, pointer;
        /* Webkit */
    }

    .product-gallery .gallery-item:hover > a > img {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .product-gallery .gallery-item:hover {
        cursor: default !important;
    }
}

@supports (-ms-ime-align: auto) {
    .product-gallery .gallery-item:hover {
        cursor: default !important;
    }
}


/*---------- End Product Gallery styling --------*/

/*---------- Form control --------*/

.form-control {
    padding: 0 18px 3px;
    border: 2px solid #eaeaea;
    border-radius: 4px;
    background-color: #ffffff;
    color: #606060;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .form-control:not(textarea) {
        height: 46px;
    }

    .form-control::-moz-placeholder {
        color: #606060;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #606060;
    }

    .form-control::-webkit-input-placeholder {
        color: #606060;
    }

    .form-control:focus {
        border-color: #dc9814;
        outline: none;
        color: #606060;
        box-shadow: none !important;
    }

    .form-control[type='color'] {
        padding-bottom: 0 !important;
    }

    .form-control:disabled, .form-control[readonly] {
        background-color: #f5f5f5;
        color: #999999;
        cursor: not-allowed;
    }

        .form-control:disabled::-moz-placeholder, .form-control[readonly]::-moz-placeholder {
            color: #999999;
            opacity: 1;
        }

        .form-control:disabled:-ms-input-placeholder, .form-control[readonly]:-ms-input-placeholder {
            color: #999999;
        }

        .form-control:disabled::-webkit-input-placeholder, .form-control[readonly]::-webkit-input-placeholder {
            color: #999999;
        }

textarea.form-control {
    padding-top: 12px;
    padding-bottom: 12px;
}

select.form-control {
    padding-right: 38px;
    background-position: center right 17px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDI5Mi4zNjIgMjkyLjM2MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjkyLjM2MiAyOTIuMzYyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPHBhdGggZD0iTTI4Ni45MzUsNjkuMzc3Yy0zLjYxNC0zLjYxNy03Ljg5OC01LjQyNC0xMi44NDgtNS40MjRIMTguMjc0Yy00Ljk1MiwwLTkuMjMzLDEuODA3LTEyLjg1LDUuNDI0ICAgQzEuODA3LDcyLjk5OCwwLDc3LjI3OSwwLDgyLjIyOGMwLDQuOTQ4LDEuODA3LDkuMjI5LDUuNDI0LDEyLjg0N2wxMjcuOTA3LDEyNy45MDdjMy42MjEsMy42MTcsNy45MDIsNS40MjgsMTIuODUsNS40MjggICBzOS4yMzMtMS44MTEsMTIuODQ3LTUuNDI4TDI4Ni45MzUsOTUuMDc0YzMuNjEzLTMuNjE3LDUuNDI3LTcuODk4LDUuNDI3LTEyLjg0N0MyOTIuMzYyLDc3LjI3OSwyOTAuNTQ4LDcyLjk5OCwyODYuOTM1LDY5LjM3N3oiIGZpbGw9IiM2MDYwNjAiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
    background-repeat: no-repeat;
    background-size: 9px 9px;
}

    select.form-control:not([size]):not([multiple]) {
        height: 46px;
    }

.form-group {
    margin-bottom: 20px !important;
}

.tab-content .form-group {
    margin-bottom: 10px !important;
}

.form-group .form-control-plaintext {
    /*margin-bottom: 7px;*/
    /*padding-left: 18px;*/
    /*font-size: 12px;
    letter-spacing: .025em;
    text-transform: uppercase;
    cursor: pointer;*/
}

.form-group label {
    margin-bottom: 7px;
    /*padding-left: 18px;*/
    font-size: 12px;
    letter-spacing: .025em;
    text-transform: uppercase;
    cursor: pointer;
}

    .form-group label.col-form-label {
        -ms-flex-item-align: center !important;
        align-self: center !important;
        margin-bottom: 0;
    }

.form-group.mb-0 {
    margin-bottom: 0 !important;
}

.form-control-lg {
    border-radius: 4px;
    font-size: 16px;
}

    .form-control-lg:not(textarea) {
        height: 54px;
    }

    .form-control-lg.form-control-pill {
        border-radius: 27px;
    }

    .form-control-lg.form-control-square {
        border-radius: 0;
    }

select.form-control.form-control-lg:not([size]):not([multiple]) {
    height: 54px;
}

.form-control-sm {
    padding-bottom: 2px;
    border-radius: 3px;
}

    .form-control-sm:not(textarea) {
        height: 36px;
    }

    .form-control-sm.form-control-pill {
        border-radius: 18px;
    }

    .form-control-sm.form-control-square {
        border-radius: 0;
    }

select.form-control.form-control-sm:not([size]):not([multiple]) {
    height: 36px;
}

.form-text {
    padding-left: 18px;
}

.custom-control {
    margin-bottom: 8px;
    padding-left: 1.5rem !important;
    color: #606060 !important;
    font-size: 14px !important;
    font-weight: normal !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

    .custom-control:focus {
        outline: 0;
    }

    .custom-control .custom-control-label {
        margin: 0;
        padding-left: 0;
        font-size: 14px;
        text-transform: none;
    }

        .custom-control .custom-control-label::before {
            border: 2px solid #e2e2e2;
            background-color: #ffffff;
            box-shadow: none !important;
        }

    .custom-control .custom-control-input:checked ~ .custom-control-label::before {
        border: 0;
        border-color: #eaeaea;
        background-color: #dc9814;
    }

    .custom-control .custom-control-input:disabled ~ .custom-control-label::before {
        border-color: rgba(234, 234, 234, 0.9);
        background-color: #ffffff;
    }

    .custom-control .custom-control-input:disabled ~ .custom-control-label {
        color: #999999;
        cursor: not-allowed;
    }

.custom-control-inline {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.custom-file,
.custom-file-input {
    height: 46px;
    /*border-radius: 23px;*/
    cursor: pointer;
}

.custom-file-label,
.custom-file-label::after {
    height: 46px;
    border: 2px solid #eaeaea;
    border-radius: 4px;
    color: #606060;
    font-size: 14px;
    line-height: 2.1;
}

    .custom-file-label::after {
        height: 42px;
        margin: 0;
        border: 0;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        background-color: #f5f5f5;
    }

.form-control-pill {
    border-radius: 23px;
}

    .form-control-pill .custom-file-control,
    .form-control-pill .custom-file-control::before {
        border-radius: 4px;
    }

.form-control-square {
    border-radius: 0;
}

    .form-control-square .custom-file-control,
    .form-control-square .custom-file-control::before {
        border-radius: 0;
    }

.input-group {
    display: block;
    position: relative;
}

    .input-group .input-group-addon,
    .input-group .input-group-btn {
        display: inline-block;
        position: absolute;
        top: 50%;
        margin-top: -3px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 18px;
    }

    .input-group .input-group-addon {
        left: 15px;
        transition: color .3s;
        background-color: transparent !important;
        color: #999999;
    }

    .input-group .form-control {
        padding-left: 38px;
    }

        .input-group .form-control:focus ~ .input-group-addon {
            color: #dc9814;
        }

    .input-group .input-group-btn {
        right: 8px;
        margin-top: -1px;
    }

        .input-group .input-group-btn button {
            transition: color .3s;
            border: 0;
            background: 0;
            color: #606060;
            font-size: 1.2em;
            cursor: pointer;
        }

            .input-group .input-group-btn button:hover {
                color: #dc9814;
            }

        .input-group .input-group-btn .btn {
            margin: 0;
            margin-right: 3px;
            padding: 0;
        }

        .input-group .input-group-btn ~ .form-control {
            padding-right: 35px;
            padding-left: 18px;
        }

.input-light.form-control,
.input-light .form-control {
    border-color: rgba(255, 255, 255, 0.17) !important;
    background-color: transparent;
    color: #ffffff;
}

    .input-light.form-control::-moz-placeholder,
    .input-light .form-control::-moz-placeholder {
        color: #ffffff;
        opacity: 1;
    }

    .input-light.form-control:-ms-input-placeholder,
    .input-light .form-control:-ms-input-placeholder {
        color: #ffffff;
    }

    .input-light.form-control::-webkit-input-placeholder,
    .input-light .form-control::-webkit-input-placeholder {
        color: #ffffff;
    }

    .input-light.form-control:focus,
    .input-light .form-control:focus {
        border-color: #dc9814 !important;
        color: #ffffff;
    }

.input-light.input-group .input-group-addon {
    color: rgba(255, 255, 255, 0.65);
}

.input-light.input-group .input-group-btn button {
    color: #ffffff;
}

    .input-light.input-group .input-group-btn button:hover {
        color: #dc9814;
    }

.input-light select.form-control option,
select.form-control.input-light option {
    color: #606060 !important;
}

/*---------- Shopping cart --------*/

.shopping-cart,
.wishlist-table,
.order-table {
    margin-bottom: 20px;
}

    .shopping-cart .table,
    .wishlist-table .table,
    .order-table .table {
        margin-bottom: 0;
    }

    .shopping-cart .btn,
    .wishlist-table .btn,
    .order-table .btn {
        margin: 0;
    }

    .shopping-cart > table > thead > tr > th,
    .shopping-cart > table > thead > tr > td,
    .shopping-cart > table > tbody > tr > th,
    .shopping-cart > table > tbody > tr > td,
    .wishlist-table > table > thead > tr > th,
    .wishlist-table > table > thead > tr > td,
    .wishlist-table > table > tbody > tr > th,
    .wishlist-table > table > tbody > tr > td,
    .order-table > table > thead > tr > th,
    .order-table > table > thead > tr > td,
    .order-table > table > tbody > tr > th,
    .order-table > table > tbody > tr > td {
        vertical-align: middle !important;
    }

    .shopping-cart > table thead th,
    .wishlist-table > table thead th,
    .order-table > table thead th {
        padding-top: 17px;
        padding-bottom: 17px;
        border-width: 1px;
        border-left: 0;
        border-right: 0;
    }

    .shopping-cart .remove-from-cart,
    .wishlist-table .remove-from-cart,
    .order-table .remove-from-cart {
        display: inline-block;
        color: #ef0568;
        font-size: 20px;
        line-height: 1;
        text-decoration: none;
    }

    .shopping-cart .count-input,
    .wishlist-table .count-input,
    .order-table .count-input {
        display: inline-block;
        width: 100%;
        width: 86px;
    }

    .shopping-cart .product-item,
    .wishlist-table .product-item,
    .order-table .product-item {
        display: table;
        width: 100%;
        min-width: 150px;
        margin-top: 5px;
        margin-bottom: 3px;
    }

        .shopping-cart .product-item .product-thumb,
        .shopping-cart .product-item .product-info,
        .wishlist-table .product-item .product-thumb,
        .wishlist-table .product-item .product-info,
        .order-table .product-item .product-thumb,
        .order-table .product-item .product-info {
            display: table-cell;
            vertical-align: top;
        }

        .shopping-cart .product-item .product-thumb,
        .wishlist-table .product-item .product-thumb,
        .order-table .product-item .product-thumb {
            width: 140px;
            padding-right: 20px;
        }

            .shopping-cart .product-item .product-thumb > img,
            .wishlist-table .product-item .product-thumb > img,
            .order-table .product-item .product-thumb > img {
                display: block;
                width: 100%;
            }

@media screen and (max-width: 860px) {
    .shopping-cart .product-item .product-thumb,
    .wishlist-table .product-item .product-thumb,
    .order-table .product-item .product-thumb {
        display: none;
    }
}

.shopping-cart .product-item .product-info,
.wishlist-table .product-item .product-info,
.order-table .product-item .product-info {
    padding-top: 5px;
}

    .shopping-cart .product-item .product-info span,
    .wishlist-table .product-item .product-info span,
    .order-table .product-item .product-info span {
        display: block;
        font-size: 13px;
    }

        .shopping-cart .product-item .product-info span > em,
        .wishlist-table .product-item .product-info span > em,
        .order-table .product-item .product-info span > em {
            font-weight: 500;
            font-style: normal;
        }

.shopping-cart .product-item .product-title,
.wishlist-table .product-item .product-title,
.order-table .product-item .product-title {
    margin-bottom: 6px;
    padding-top: 5px;
    font-size: 16px;
    font-weight: 500;
}

    .shopping-cart .product-item .product-title > a,
    .wishlist-table .product-item .product-title > a,
    .order-table .product-item .product-title > a {
        transition: color .3s;
        color: #404040;
        line-height: 1.5;
        text-decoration: none;
    }

        .shopping-cart .product-item .product-title > a:hover,
        .wishlist-table .product-item .product-title > a:hover,
        .order-table .product-item .product-title > a:hover {
            color: #dc9814;
        }

    .shopping-cart .product-item .product-title small,
    .wishlist-table .product-item .product-title small,
    .order-table .product-item .product-title small {
        display: inline;
        margin-left: 6px;
        font-weight: 500;
    }

.wishlist-table .product-item .product-thumb {
    display: table-cell !important;
}

@media screen and (max-width: 576px) {
    .wishlist-table .product-item .product-thumb {
        display: none !important;
    }
}

.shopping-cart-footer {
    display: table;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
}

    .shopping-cart-footer > .column {
        display: table-cell;
        padding: 5px 0;
        vertical-align: middle;
    }

        .shopping-cart-footer > .column:last-child {
            text-align: right;
        }

            .shopping-cart-footer > .column:last-child .btn {
                margin-right: 0;
                margin-left: 15px;
            }

@media (max-width: 768px) {
    .shopping-cart-footer > .column {
        display: block;
        width: 100%;
    }

        .shopping-cart-footer > .column:last-child {
            text-align: center;
        }

        .shopping-cart-footer > .column .btn {
            width: 100%;
            margin: 12px 0 !important;
        }
}

.coupon-form .form-control {
    display: inline-block;
    width: 100%;
    max-width: 235px;
    margin-right: 12px;
}

.coupon-form .btn {
    margin-right: 0;
}

@media (max-width: 768px) {
    .coupon-form .form-control {
        display: block;
        max-width: 100%;
    }
}

.widget-order-summary .table td {
    padding: 6px 0;
    border: 0;
}

    .widget-order-summary .table td:last-child {
        text-align: right;
    }

.widget-order-summary .table tr:first-child > td {
    padding-top: 0;
}

/*.widget-order-summary .table tr:last-child > td {
  padding-top: 12px;
  border-top: 1px solid #eaeaea;
}*/

/*.widget-order-summary .table tr:nth-last-child(2) > td {
  padding-bottom: 12px;
}*/

/*---------- Site content from CMS --------*/

/*.siteContent {
    padding: 50px 0;
}*/

    .siteContent .row {
        margin: 30px 0;
    }

    /* User info on profile page */
.user-info-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: -2px;
    padding-top: 90px;
    padding-bottom: 30px;
    border: 2px solid #f5f5f5;
    overflow: hidden;
}

    .user-info-wrapper .user-cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background-position: center;
        background-color: #f5f5f5;
        background-repeat: no-repeat;
        background-size: cover;
    }

        .user-info-wrapper .user-cover .tooltip .tooltip-inner {
            width: 230px;
            max-width: 100%;
            padding: 10px 15px;
        }

    .user-info-wrapper .info-label {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
        height: 26px;
        padding: 0 12px;
        border-radius: 3px;
        background-color: #ffffff;
        color: #606060;
        font-size: 12px;
        line-height: 26px;
        box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.18);
        cursor: pointer;
    }

        .user-info-wrapper .info-label > i {
            display: inline-block;
            margin-right: 3px;
            font-size: 1.2em;
            vertical-align: middle;
        }

    .user-info-wrapper .user-info {
        display: table;
        position: relative;
        width: 100%;
        padding: 0 18px;
        z-index: 5;
    }

        .user-info-wrapper .user-info .user-avatar,
        .user-info-wrapper .user-info .user-data {
            display: table-cell;
            vertical-align: top;
        }

        .user-info-wrapper .user-info .user-avatar {
            position: relative;
            width: 115px;
        }

            .user-info-wrapper .user-info .user-avatar > img {
                display: block;
                width: 100%;
                border: 5px solid #ffffff;
                border-radius: 5px;
            }

            .user-info-wrapper .user-info .user-avatar .edit-avatar {
                display: block;
                position: absolute;
                top: 50%;
                left: 50%;
                height: 26px;
                margin-top: -13px;
                padding: 0 12px;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
                transition: opacity .3s;
                border-radius: 3px;
                background-color: #ffffff;
                color: #606060;
                font-size: 12px;
                line-height: 26px;
                white-space: nowrap;
                box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
                cursor: pointer;
                opacity: 0;
                text-transform: uppercase;
                text-align: center;
                text-decoration: none;
            }

                .user-info-wrapper .user-info .user-avatar .edit-avatar > i {
                    margin-top: -1px;
                    margin-right: 3px;
                    font-size: 1.2em;
                }

            .user-info-wrapper .user-info .user-avatar:hover .edit-avatar {
                opacity: 1;
            }

        .user-info-wrapper .user-info .user-data {
            padding-top: 48px;
            padding-left: 12px;
        }

            .user-info-wrapper .user-info .user-data h5 {
                margin-bottom: 2px;
            }

            .user-info-wrapper .user-info .user-data span {
                display: block;
                color: #999999;
                font-size: 13px;
            }

    .user-info-wrapper + .list-group .list-group-item:first-child {
        border-radius: 0;
    }

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.h-screen {
    height: 100vh
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.object-cover {
    object-fit: cover
}

/* Responsive styling for fullscreen hero on mobile */
/*@media (max-width: 768px) {
    .g-0.h-screen, .fullscreen-hero-block-container.h-screen {
        height: auto !important;
    }

        .g-0.h-screen img,
        .g-0.h-screen video {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
}*/

/* ===== HERO BASE ===== */

.fullscreen-hero-block-container {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    /*background: #000;*/
}

/* Video / Billede container (bevares for admin) */
    .fullscreen-hero-block-container > .image-select-container.image-select-container {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .image-select-container video,
    .image-select-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Desktop: croppet fullscreen */
    }

/* Overlay desktop */
.fullscreen-hero-right-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Tekstboks */
.fullscreen-hero-overlay-content {
    padding: 40px;
    max-width: 600px;
    color: #fff;
    overflow-wrap: anywhere;
}

    /* Responsiv hero overskrift */
    .fullscreen-hero-overlay-content h2 {
        font-size: clamp(22px, 5.2vw, 52px);
        line-height: 1.15;
        text-wrap: balance;
    }

        /* Fjern WYSIWYG <br> */
        .fullscreen-hero-overlay-content h2 br {
            display: none;
        }

    /* Knap på mobil tommelfinger-venlig */
    .fullscreen-hero-overlay-content .btn {
        /*padding: 14px 26px;
        font-size: 16px;
        border-radius: 999px;*/
    }

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    /* Hero-container skal ikke længere være fullscreen */
    .fullscreen-hero-block-container {
        min-height: auto;
        display: block;
    }

    /* Video bliver et normalt element, hele video vises */
        .fullscreen-hero-block-container > .image-select-container.image-select-container {
            position: relative;
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
        }

        .image-select-container video,
        .image-select-container img {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: contain; /* hele video/billede synligt */
            background: #000;
        }

    /* Overlay flyttes under video */
    .fullscreen-hero-right-overlay {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        bottom: auto;
        right: auto;
        display: block;
        /*background: #000;*/
    }

        /* Gradient bag tekst på mobil (kan tilpasses) */
        .fullscreen-hero-right-overlay::before {
            content: "";
            position: absolute;
            inset: 0;
            /*background: linear-gradient( to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100% );*/
            background: rgba(255,255,255,0.7);
            z-index: 0;
        }

    /* Tekstboks mobil */
    .fullscreen-hero-overlay-content {
        position: relative;
        z-index: 2;
        padding: 24px 18px 30px;
        margin: auto;
        max-width: 560px;
        text-align: center;
        margin-bottom: 5vh; /* løft tekst lidt fra bunden */
    }

        /* Overskrift mindre på mobil */
        .fullscreen-hero-overlay-content h2 {
            font-size: 26px;
        }
}


/*.fullscreen-hero-block-container {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

    .fullscreen-hero-block-container video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

.fullscreen-hero-right-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fullscreen-hero-overlay-content {
    padding: 40px;
    max-width: 600px;
    color: white;
}*/

/* MOBILE */
/*@media (max-width:768px) {

    .fullscreen-hero-right-overlay {
        left: 0;
        right: 0;
        width: 100%;
        top: auto;
        bottom: 0;
        height: auto;
        align-items: flex-end;
    }

        .fullscreen-hero-right-overlay::before {
            content: "";
            position: absolute;
            inset: 0;*/
            /*background: linear-gradient( to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,0) 100% );*/
            /*background: rgba(255,255,255,0.7);
            z-index: 0;
        }

    .fullscreen-hero-overlay-content {
        position: relative;
        z-index: 2;
        padding: 24px 20px 32px;
        max-width: 520px;
        margin: auto;
        text-align: center;
    }
}*/



.fullscreen-hero-right-overlay {
    background: rgba(255,255,255,0.7);
}
