﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity: 0;
    /*    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
*/ pointer-events: none;
}

    .modalDialog:target {
        opacity: 1;
        pointer-events: auto;
    }

    .modalDialog > div {
        width: 400px;
        position: relative;
        margin: 10% auto;
        padding: 5px 20px 13px 20px;
        border-radius: 10px;
        background: #fff;
        background: -moz-linear-gradient(#fff, #999);
        background: -webkit-linear-gradient(#fff, #999);
        background: -o-linear-gradient(#fff, #999);
    }

.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

    .close:hover {
        background: #00d9ff;
    }

.menu-card {
    background-color: #fff;
    padding: 16px 20px 0
}

.menu-card__title {
    width: 100%
}

.menu-card__list {
    padding-top: 8px;
    padding-bottom: 8px;
    display: grid;
    grid-gap: 7px;
    grid-row-gap: 24px;
    row-gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(157px, .5fr))
}

.menu-card__item {
    margin: 0;
    list-style: none;
    padding: 0
}

    .menu-card__item a {
        text-decoration: none;
        -webkit-font-smoothing: auto;
        width: 100%
    }

        .menu-card__item a:active .category-card {
            opacity: .7
        }


.menu-card__fav {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #fff;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

    .menu-card__fav svg {
        width: 16px
    }

        .menu-card__fav svg:not(.multi-color):not([fill=none]):not([stroke]),
        .menu-card__fav svg:not(.multi-color):not([fill=none])[stroke=none] {
            fill: var(--theme-primary-color)
        }

        .menu-card__fav svg:not(.multi-color) [fill]:not([fill=none]):not(.ignore-svg-color) {
            fill: var(--theme-primary-color) !important
        }

        .menu-card__fav svg:not(.multi-color) [stroke]:not([stroke=none]):not(.ignore-svg-color) {
            stroke: var(--theme-primary-color) !important
        }

@media screen and (max-width:410px) {
    .menu-card__list {
        grid-template-columns: repeat(auto-fill, minmax(120px, .5fr))
    }
}

.service-page__menu-card-list.inactive {
    margin-bottom: 0
}

.service-page__menu-card-list > li {
    padding: 0;
    margin: 0
}

.service-page__menu-card-list {
    list-style: none;
    margin-left: 0;
    margin-top: 20px
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /*touch-action: none;*/
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.main {
    flex: 1;
}

    .main .top-row {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

    .sidebar .top-row {
        background-color: rgba(0,0,0,0.4);
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
    }

        .sidebar .nav-item:first-of-type {
            padding-top: 1rem;
        }

        .sidebar .nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar .nav-item a {
            color: #d7d7d7;
            border-radius: 4px;
            height: 3rem;
            display: flex;
            align-items: center;
            line-height: 3rem;
        }

            .sidebar .nav-item a.active {
                background-color: rgba(255,255,255,0.25);
                color: white;
            }

            .sidebar .nav-item a:hover {
                background-color: rgba(255,255,255,0.1);
                color: white;
            }

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@media (max-width: 767.98px) {
    .main .top-row:not(.auth) {
        display: none;
    }

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}

.circle {
    left: 0px;
    /*    width: 1vw;
    height: 1vw;
*/ background-color: red;
    border-radius: 0.5vw 0.5vh;
}

@media (hover: none) {
    #bottommenubar {
        /* position: absolute;
        top: 92vh !important;
        left: 0vw;
        height: 8vh !important;
        width: 63vw !important;
        background-color: #477ea5;
        display: flex;
        padding-left: 1vw;
        border-radius: 6px;*/
        position: fixed; /*absolute;*/
        bottom: 0%;
        /*top: 83vh;*/ /*92vh;*/
        height: 8vh !important;
        left: 0vw;
        width: 63vw !important;
        background-color: #477ea5;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        padding-left: 1vw;
        border-radius: 6px;
        /*touch-action: none;*/
    }
}

@media (hover: hover) {
    #bottommenubar {
        position: fixed; /*absolute;*/
        /*top: 92vh;*/
        bottom: 0%;
        height: 8vh !important;
        left: 0vw;
        width: 63vw !important;
        background-color: #477ea5;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        padding-left: 1vw;
        border-radius: 6px
    }
}

.vl {
    border-left: 1px solid white;
    height: 500px;
}

#bottommenubar > #bottommenubutton {
    font-size: 1vw;
    cursor: pointer;
    flex-grow: 1;
    white-space: nowrap;
    /* background-color: red;
    border-style: solid;
    border-width: 1px;*/
}

    #bottommenubar > #bottommenubutton > #option {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        color: black;
        align-content: center;
    }

    #bottommenubar > #bottommenubutton > p {
        position: relative;
        text-align: center;
        align-content: center;
        margin-left: auto;
        margin-right: auto;
        color: white;
        padding-top: 1vh;
        font-weight: 100;
        font-size: 1.5vh;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    #bottommenubar > #bottommenubutton > img {
        position: relative;
        top: 1vh;
        height: 4vh;
        width: 4vh;
        margin-left: auto;
        margin-right: auto;
        display: block;
        object-fit: contain;
    }

@media (hover: hover) {
    #changescreen {
        position: fixed;
        left: 25vw;
        top: 22.5vh;
        width: 50vw;
        height: 55vh;
        /*        left: 30%;
        top: 20%;
        width: 40%;
        height: 49%;
*/
    }
}

@media (hover: none) {
    #changescreen {
        position: fixed;
        left: 22.5vw;
        /*top: 15vh;*/
        width: 50vw;
        height: 100vh;
        /*        left: 25%;
        top: 25%;
        width: 50%;
        height: 50%;
*/
    }
}

#changescreen {
    position: fixed;
    display: block;
    overflow-y: hidden;
    background-color: #24436b;
    color: white;
}

#changeprimary {
    padding-left: 1vw;
    padding-right: 1vw;
    font-size: 6vh;
    font-weight: bolder;
    margin-right: 1vw;
}

#changesecondary {
    padding-left: 1vw;
    padding-right: 1vw;
    margin-right: 1vw;
    font-size: 3vh;
}

#changeamount {
    font-size: 3vh;
    font-weight: bold;
    margin-right: 1vw;
}

#okbutton {
    position: absolute;
    margin-top: 4px;
    padding-top: 4px;
    top: 0px !important;
    left: 0px !important;
    padding: 0px !important;
    margin: 0px !important;
    /*width: 34.5vw !important;*/
    width: 100% !important;
    height: 100% !important;
    background-color: #477ea5;
    /*background-color: red !important;*/
    text-align: center;
    color: white;
    font-size: 4vw !important;
    color: white !important;
    border-radius: 6px;
}

#preventpaymentbutton {
    position: fixed; /*absolute;*/
    margin-top: 4px;
    padding-top: 4px;
    /*top: 0%;*/
    height: 17vh !important;
    bottom: 0vh !important;
    left: 65vw !important;
    right: 0px !important;
    /*left: 0px;*/
    width: 95%;
    /*height: 100%;*/
    background-color: #477ea5;
    text-align: center;
}


@media (hover: hover) {
    #paymentbutton {
        align-content: center;
        border-radius: 8px;
        padding-top: 4px;
        vertical-align: middle;
        font-size: 20px;
        height: 8vh;
        border: solid;
        border-width: 0px;
        color: white;
        background-color: #477ea5;
        margin-top: 4px;
        text-align: center;
        left: 10%;
        width: 98%;
        display: inline-block;
    }

    #paymentbuttoncontainer {
        bottom: 0%;
        left: 65vw;
        right: 0vw;
        /*width: 35vw;*/
        position: fixed;
        cursor: pointer;
        /*background-color: cyan !important;*/
    }

    #saleitemlistpayments {
        top: 1%;
        left: 64vw;
        height: 45%;
        width: 35.5vw;
        border-radius: 8px 8px;
        overflow-x: hidden;
        overflow-y: scroll;
        user-select: none;
        background-color: white;
        position: absolute;
        margin: 0px;
        padding: 0px;
        border: 0px solid black;
    }

    #saleitemlist {
        top: 1%;
        left: 64vw;
        /*height: 75%;*/
        bottom: 25.5vh !important;
        width: 35.5vw;
        border-radius: 8px 8px;
        overflow-x: hidden;
        overflow-y: auto;
        user-select: none;
        background-color: white;
        position: fixed; /*absolute;*/
        margin: 0px;
        padding: 0px;
        border: 0px solid black;
    }
}

@media (hover: none) {
    #paymentbutton {
        align-content: center;
        border-radius: 8px;
        padding-top: 4px;
        vertical-align: middle;
        font-size: 20px;
        height: 8vh;
        border: solid;
        border-width: 0px;
        color: white;
        background-color: #477ea5;
        margin-top: 4px;
        text-align: center;
        left: 10%;
        width: 98%;
        display: inline-block;
    }

    #paymentbuttoncontainer {
        bottom: 0%; /*was 0%*/
        left: 65vw;
        right: 0vw;
        /*width: 35vw;*/
        position: fixed;
        cursor: pointer;
        /*background-color: cyan !important;*/
        /*bottom: -189.5%;
        left: -17%;*/ /*-39.5%;*/
        /*width: 59%;
        position: absolute;
        cursor: pointer;*/
    }

    #saleitemlistpayments {
        top: 1%;
        left: 64vw;
        height: 45%;
        width: 35.5vw;
        border-radius: 8px 8px;
        overflow-x: hidden;
        overflow-y: scroll;
        user-select: none;
        background-color: white;
        position: absolute;
        margin: 0px;
        padding: 0px;
        border: 0px solid black;
    }


    /* #saleitemlistpayments {
        top: 1%;
        left: 64vw;
        height: 72%;
        width: 35.5vw;
        border-radius: 8px 8px;
        overflow-x: hidden;
        overflow-y: auto;
        user-select: none;
        background-color: white;
        position: absolute;
        margin: 0px;
        padding: 0px;
        border: 0px solid black;
        touch-action: pan-y !important;
    }*/
    #saleitemlist {
        top: 1%;
        left: 64vw;
        /*height: 75%;*/
        width: 35.5vw;
        bottom: 25.5vh !important;
        border-radius: 8px 8px;
        overflow-x: hidden;
        overflow-y: auto;
        user-select: none;
        background-color: white;
        position: fixed; /* absolute;*/
        margin: 0px;
        padding: 0px;
        border: 0px solid black;
    }
    /*#saleitemlist {
        top: 1%;
        left: 64vw;
        height: 65vh;*/ /* 75vh;*/
        /*width: 35.5vw;
        border-radius: 8px 8px;
        overflow-x: hidden;
        overflow-y: scroll;
        user-select: none;
        background-color: white;
        position: absolute;
        margin: 0px;
        padding: 0px;
        border: 0px solid black;
    }*/
}

span {
    user-select: none;
    color: white;
}

th, td {
    user-select: none;
}

img {
    user-select: none;
}

.button {
    /*font-size: 1vw !important;*/
}

div {
    touch-action: manipulation !important;
    /*font-size: 1vw;*/
}

p {
    user-select: none;
    color: black;
    font-weight: bold;
    font-size: 1vw;
}

.whitetext p {
    color: white;
}

body::-webkit-scrollbar-thumb {
    background-color: blue; /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid orange; /* creates padding around scroll thumb */
}

.mainmenu {
    /*    background-color: red;
    color: white;
*/ vertical-align: top;
}

.menuitem {
    background-color: red;
    color: white;
}

.bottommenu {
    /*color: white;
    background-color: #477ea5;*/
    /*    background-color: blue;
    color: white;
*/
}


@media (hover: hover) {
    #parent {
        height: 3vh;
    }

        #parent > #delete > #deleteimage {
            height: 3vh !important;
            width: 3vh !important;
        }

        #parent > #icon {
            width: 3vw;
            height: 3vh;
        }

        #parent > #productname {
            left: 2.1vw;
            font-size: 1.3vw;
            width: 24vw;
        }

        #parent > #quantity {
            font-size: 1vw;
            overflow-y: hidden;
        }

        #parent > #price {
            font-size: 1vw;
            width: 4vw;
            /*height: 100%;*/
            left: 27vw;
            overflow-x: hidden;
            overflow-y: hidden;
            text-align: right;
        }

        #parent > #delete {
            left: 32.5vw;
            width: 4vh;
            height: 100%;
            object-fit: fill !important;
            /*            overflow-y: hidden;
            overflow-x: hidden;
            text-overflow: clip;*/
        }
}

@media (hover: none) {
    #parent {
        height: 6vh;
    }

        #parent > #delete > #deleteimage {
            height: 6vh;
            width: 5vh !important;
        }

        #parent > #icon {
            width: 3vw;
            height: 3vh;
        }

        #parent > #productname {
            left: 2.1vw;
            font-size: 2vw;
            width: 22vw;
        }

        #parent > #quantity {
            font-size: 2vw;
            /*overflow-y: hidden;*/
        }

        #parent > #price {
            font-size: 1.3vw;
            width: 5vw;
            /*height: 100%;*/
            left: 27vw;
            /*overflow-x: hidden;*/
            overflow-y: hidden;
            text-align: right;
        }

        #parent > #delete {
            left: 32.5vw;
            width: 4vh;
            height: 100%;
            object-fit: fill !important;
            /*            width: 6vw;
            height: 6vh;
*/ /*text-overflow: clip;*/
            /*            overflow-y: hidden;
            overflow-x: hidden;
*/
        }
}

#parent {
    /*height: 3vh;*/
    list-style: none;
    width: 100vw;
    max-height: 10vh !important;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
}

    #parent > #icon {
        position: absolute;
        display: block;
        left: 0vw;
        /*        width: 3vw;
        height: 3vh;
*/ display: inline-block;
        background-color: white;
        text-align: left;
        margin: 0px;
        border: 0px;
        object-fit: contain !important;
        padding: 0px;
        text-overflow: clip;
        overflow-y: hidden;
        overflow-x: hidden;
    }

        #parent > #icon > #producticon {
            position: relative;
            top: 0px;
            left: 0px;
            object-fit: contain !important;
            width: 2vw;
            height: auto;
        }

    #parent > #quantity {
        position: absolute;
        left: 0px;
        display: inline-block;
        max-width: 1.1vw;
        max-height: 1.1vw;
        min-width: 1.1vw;
        min-height: 1.1vw;
        width: 1.1vw;
        height: 1.1vw;
        /*font-size: 1vw;*/
        /*background-color: black;*/
        /*border-radius: 0.75vw;*/
        /*color: white;*/
        color: black;
        text-align: left;
        margin: 0px;
        padding: 0px;
        border: 0px;
        text-overflow: clip;
        vertical-align: middle;
        text-align: center;
    }

    #parent > #productname {
        position: absolute;
        /*        left: 2.1vw;
        font-size: 1vw;
        width: 22vw;
*/ display: inline-block;
        /*background-color: white;*/
        border: 0px;
        margin: 0px;
        padding: 0px;
        text-overflow: ellipsis;
        vertical-align: middle;
        overflow-x: hidden;
        overflow-y: hidden;
        cursor: pointer;
    }

    #parent > #price {
        position: absolute;
        cursor: pointer;
        /*left: 27vw;*/
        display: inline-block;
        /*        font-size: 1vw;
        width: 4vw;
        height: 100%;
*/ /*background-color: white;*/
        /*text-align: right;*/
        margin: 0px;
        border: 0px;
        /*text-overflow: clip;*/
        vertical-align: middle;
        /*        overflow-x: hidden;
        overflow-y: hidden;
*/
    }

    #parent > #delete {
        position: absolute;
        display: block;
        display: inline-block;
        width: 2vw;
        height: 2vh;
        /*background-color: white;*/
        text-align: left;
        margin: 0px;
        object-fit: contain !important;
        padding: 0px;
    }

        #parent > #delete > #deleteimage {
            position: relative;
            top: 0px;
            left: 0px;
            object-fit: fill !important;
            width: 2.5vh;
            /*height: auto;*/
            margin: auto;
            /*background-color: red !important;*/
            /*max-width: 100%;
            max-height: 100%;*/
            overflow-y: hidden;
            overflow-x: hidden;
        }

#toolbar {
    display: flex;
    flex-direction: row;
    height: 118px !important;
    width: 112px !important;
    position: fixed;
    bottom: 4px;
}

#toolbarbutton {
    margin: 4px;
    height: 112px !important;
    width: 112px !important;
}

.menusdown {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    display: inline-block;
    float: left;
}

.category-card .img-div {
    margin-bottom: 8px
}

    .category-card .img-div img {
        border-radius: 8px;
        max-width: 100%;
        height: auto;
        min-height: 112px;
        max-height: 132px;
        display: flex;
        object-fit: cover
    }

.img-dev img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    min-height: 112px;
    max-height: 132px;
    display: flex;
    object-fit: cover
}

.category-card {
    height: auto;
}

.card .img-div {
    margin-bottom: 8px;
}

    /*.category-card img .thumb {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    min-height: 112px;
    max-height: 132px;
    display: flex;
    object-fit: cover;
}*/

    .card .img-div img {
        border-radius: 8px;
        max-width: 100%;
        height: auto;
        min-height: 112px;
        max-height: 132px;
        display: flex;
        object-fit: cover
    }

.category-card .text-div {
    color: #333;
}


.service-page__content__items {
    background-color: #fff
}


.no-hero .service-page__content__items {
    margin-top: 0;
    padding-top: calc(50px + env(safe-area-inset-top))
}

.reset-this {
    animation: none;
    animation-delay: 0;
    animation-direction: normal;
    animation-duration: 0;
    animation-fill-mode: none;
    animation-iteration-count: 1;
    animation-name: none;
    animation-play-state: running;
    animation-timing-function: ease;
    backface-visibility: visible;
    background: 0;
    background-attachment: scroll;
    background-clip: border-box;
    background-color: transparent;
    background-image: none;
    background-origin: padding-box;
    background-position: 0 0;
    background-position-x: 0;
    background-position-y: 0;
    background-repeat: repeat;
    background-size: auto auto;
    border: 0;
    border-style: none;
    border-width: medium;
    border-color: inherit;
    border-bottom: 0;
    border-bottom-color: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-collapse: separate;
    border-image: none;
    border-left: 0;
    border-left-color: inherit;
    border-left-style: none;
    border-left-width: medium;
    border-radius: 0;
    border-right: 0;
    border-right-color: inherit;
    border-right-style: none;
    border-right-width: medium;
    border-spacing: 0;
    border-top: 0;
    border-top-color: inherit;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top-style: none;
    border-top-width: medium;
    bottom: auto;
    box-shadow: none;
    box-sizing: content-box;
    caption-side: top;
    clear: none;
    clip: auto;
    color: inherit;
    columns: auto;
    column-count: auto;
    column-fill: balance;
    column-gap: normal;
    column-rule: medium none currentColor;
    column-rule-color: currentColor;
    column-rule-style: none;
    column-rule-width: none;
    column-span: 1;
    column-width: auto;
    content: normal;
    counter-increment: none;
    counter-reset: none;
    cursor: auto;
    direction: ltr;
    display: inline;
    empty-cells: show;
    float: none;
    font: normal;
    font-family: inherit;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    height: auto;
    hyphens: none;
    left: auto;
    letter-spacing: normal;
    line-height: normal;
    list-style: none;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: disc;
    margin: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    opacity: 1;
    orphans: 0;
    outline: 0;
    outline-color: invert;
    outline-style: none;
    outline-width: medium;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    padding: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    page-break-after: auto;
    page-break-before: auto;
    page-break-inside: auto;
    perspective: none;
    perspective-origin: 50% 50%;
    position: static;
    /* May need to alter quotes for different locales (e.g fr) */
    quotes: '\201C' '\201D' '\2018' '\2019';
    right: auto;
    tab-size: 8;
    table-layout: auto;
    text-align: inherit;
    text-align-last: auto;
    text-decoration: none;
    text-decoration-color: inherit;
    text-decoration-line: none;
    text-decoration-style: solid;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    top: auto;
    transform: none;
    transform-style: flat;
    transition: none;
    transition-delay: 0s;
    transition-duration: 0s;
    transition-property: none;
    transition-timing-function: ease;
    unicode-bidi: normal;
    vertical-align: baseline;
    visibility: visible;
    white-space: normal;
    widows: 0;
    width: auto;
    word-spacing: normal;
    z-index: auto;
    /* basic modern patch */
    all: initial;
    all: unset;
}

.hidden-placeholder {
    visibility: hidden;
}

/* basic modern patch */

