.green-color {
    color: #9abf34;
}

.red-color {
    color: #ef3030;
}

.yellow-color {
    color: #f7a226;
}

.bg-green-color {
    background-color: #9abf34;
}

.bg-white-color {
    background-color: white;
}

.color-blinking {
    animation: 1s linear 0s infinite alternate color-blinking;
}

@keyframes color-blinking {
    from {
        color: transparent;
    }
}

.btn.btn-primary {
    color: #3c3c3c;
    background-color: #d6d6d4;
    border-color: #656560;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 5px;
}

.btn.btn-primary:not(:disabled):not(.disabled):hover,
.btn.btn-primary:not(:disabled):not(.disabled):hover {
    color: white;
    background-color: #656560;
    box-shadow: 0 0 0 0.2rem #989893;
}

.btn.btn-primary:not(:disabled):not(.disabled).active,
.btn.btn-primary:not(:disabled):not(.disabled):active {
    color: white;
    background-color: #656560;
    border-color: #656560;
}

.btn.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn.btn-primary.focus,
.btn.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem #989893;
}

.btn.btn-primary.disabled,
.btn.btn-primary:disabled {
    color: #565656;
    border-color: transparent;
}

.btn.btn-outline-primary {
    color: #3c3c3c;
    border-color: #656560;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 5px;
}

.btn.btn-outline-primary:not(:disabled):not(.disabled):hover,
.btn.btn-outline-primary:not(:disabled):not(.disabled):hover {
    color: white;
    background-color: #656560;
    box-shadow: 0 0 0 0.2rem #989893;
}

.btn.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn.btn-outline-primary:not(:disabled):not(.disabled):active {
    color: white;
    background-color: #656560;
    border-color: #656560;
}

.btn.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn.btn-outline-primary.focus,
.btn.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem #989893;
}

.btn.btn-outline-primary.disabled,
.btn.btn-outline-primary:disabled {
    color: #565656;
    border-color: transparent;
}

.text-danger {
    color: #ef3030 !important;
}

.progress {
    background-color: #bcbcbc;
}

html:not(:fullscreen) .my-4 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
}

html:not(:fullscreen) .h1,
html:not(:fullscreen) .h2,
html:not(:fullscreen) .h3,
html:not(:fullscreen) .h4,
html:not(:fullscreen) .h5,
html:not(:fullscreen) .h6 {
    margin-bottom: 0.3em !important;
}

html:not(:fullscreen) .table-sm td,
html:not(:fullscreen) .table-sm th {
    padding: 0.1rem !important;
}

html:not(:fullscreen) .overflow-y-scroll-75 {
    max-height: 70vh !important;
}

.empty-message {
    text-align: center;
    color: #808080;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
}

.cursor-pointer {
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
}

.transition-speed {
    transition: all 0.3s;
}

.opacity-0 {
    opacity: 0;
}

.opacity-blinking-0 {
    animation: 1s linear 0s infinite alternate opacity-blinking-0;
}

@keyframes opacity-blinking-0 {
    from {
        opacity: 0;
    }
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-blinking-10 {
    animation: 1s linear 0s infinite alternate opacity-blinking-10;
}

@keyframes opacity-blinking-10 {
    from {
        opacity: 0.1;
    }
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-blinking-20 {
    animation: 1s linear 0s infinite alternate opacity-blinking-20;
}

@keyframes opacity-blinking-20 {
    from {
        opacity: 0.2;
    }
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-blinking-30 {
    animation: 1s linear 0s infinite alternate opacity-blinking-30;
}

@keyframes opacity-blinking-30 {
    from {
        opacity: 0.3;
    }
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-blinking-40 {
    animation: 1s linear 0s infinite alternate opacity-blinking-40;
}

@keyframes opacity-blinking-40 {
    from {
        opacity: 0.4;
    }
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-blinking-50 {
    animation: 1s linear 0s infinite alternate opacity-blinking-50;
}

@keyframes opacity-blinking-50 {
    from {
        opacity: 0.5;
    }
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-blinking-60 {
    animation: 1s linear 0s infinite alternate opacity-blinking-60;
}

@keyframes opacity-blinking-60 {
    from {
        opacity: 0.6;
    }
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-blinking-70 {
    animation: 1s linear 0s infinite alternate opacity-blinking-70;
}

@keyframes opacity-blinking-70 {
    from {
        opacity: 0.7;
    }
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-blinking-80 {
    animation: 1s linear 0s infinite alternate opacity-blinking-80;
}

@keyframes opacity-blinking-80 {
    from {
        opacity: 0.8;
    }
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-blinking-90 {
    animation: 1s linear 0s infinite alternate opacity-blinking-90;
}

@keyframes opacity-blinking-90 {
    from {
        opacity: 0.9;
    }
}

.opacity-100 {
    opacity: 1;
}

.opacity-blinking-100 {
    animation: 1s linear 0s infinite alternate opacity-blinking-100;
}

@keyframes opacity-blinking-100 {
    from {
        opacity: 1;
    }
}

.rotate-0 {
    transform: rotate(0deg) !important;
}

.rotate-90 {
    transform: rotate(90deg) !important;
}

.rotate-180 {
    transform: rotate(180deg) !important;
}

.rotate-270 {
    transform: rotate(270deg) !important;
}

.overflow-y-scroll-0 {
    overflow-y: auto;
    max-height: 0vh;
}

.overflow-y-scroll-25 {
    overflow-y: auto;
    max-height: 25vh;
}

.overflow-y-scroll-50 {
    overflow-y: auto;
    max-height: 50vh;
}

.overflow-y-scroll-75 {
    overflow-y: auto;
    max-height: 75vh;
}

.overflow-y-scroll-100 {
    overflow-y: auto;
    max-height: 100vh;
}

.overflow-x-scroll-0 {
    overflow-x: auto;
    max-width: 0vw;
}

.overflow-x-scroll-25 {
    overflow-x: auto;
    max-width: 25vw;
}

.overflow-x-scroll-50 {
    overflow-x: auto;
    max-width: 50vw;
}

.overflow-x-scroll-75 {
    overflow-x: auto;
    max-width: 75vw;
}

.overflow-x-scroll-100 {
    overflow-x: auto;
    max-width: 100vw;
}

.item-background-image {
    background-position: center;
    background-size: cover;
    width: 1rem;
    height: 1rem;
}

.component-alert {
    display: flex;
    border-radius: 5px;
    padding: 0.75rem;
}

.component-alert .icon {
    padding-right: 0.75rem;
    align-self: center;
}

.component-alert .title {
    font-weight: bold;
    text-transform: uppercase;
}

.component-alert .text {
    color: #808080;
    text-align: justify;
}

.component-alert.warning {
    border: 1px solid #f7a226;
}

.component-alert.warning .icon,
.component-alert.warning .title {
    color: #f7a226;
}

.component-alert.help {
    border: 1px solid #9abf34;
}

.component-alert.help .icon,
.component-alert.help .title {
    color: #9abf34;
}

.component-alert.error {
    border: 1px solid #ef3030;
}

.component-alert.error .icon,
.component-alert.error .title {
    color: #ef3030;
}

.component-collapsable .body {
    transition: all 1s ease;
    overflow: hidden;
    max-height: 500px;
}

.component-collapsable.collapsed .body {
    max-height: 0px;
}

.component-modal.window {
    z-index: 201;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    background: #eeeeec no-repeat top right;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 0.5);
    width: 50%;
    pointer-events: all;
}

.component-modal.window.transition-enter-active {
    transform: translate(-50%, -50%) scale(0);
    animation: zoomIn 0.5s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.component-modal.window.transition-leave-active {
    transform: translate(-50%, -50%) scale(1);
    animation: zoomOut 0.5s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes zoomOut {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(0);
    }
}

.component-modal.window>.header,
.component-modal.window>.footer {
    flex: none;
}

.component-modal.window>.body {
    height: 100%;
    overflow: hidden;
}

.component-modal.background {
    z-index: 200;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000;
    opacity: 0;
    transition: all 0.2s linear;
}

.component-modal.background.show {
    opacity: 0.5;
}

.item-block {
    border: 1px solid #656560;
    border-radius: 5px;
    background-color: white;
}

.item-block.selectable:hover {
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
    box-shadow: 0 0 0 0.2rem #989893;
}

.item-input-number {
    background: none;
    border: none;
    text-align: center;
    border-radius: 2em;
}

.item-input-number:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.text-scrolling {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
}

.text-scrolling .text-scrolling-container {
    display: inline-block;
}

.text-scrolling .text-scrolling-text {
    margin-left: 0;
}

.text-scrolling:hover .text-scrolling-text {
    animation: scroll-text 5s infinite linear;
}

@keyframes scroll-text {
    from {
        margin-left: 0;
    }
    to {
        margin-left: -100%;
    }
}

.font-bold {
    font-weight: bold;
}

button {
    color: #eeeeec;
    background-color: #656560;
    padding: 0.2em 0.5em;
    border-radius: 5px;
    border: 1px solid #656560;
    text-align: center;
    vertical-align: middle;
    transition: all 0.3s;
}

button:not(:disabled):hover {
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
    color: #eeeeec !important;
    border-color: #4b4b47 !important;
    background-color: #656560 !important;
}

button:not(:disabled):focus {
    box-shadow: 0 0 0 0.2rem #8c8c86;
    outline: none;
}

button:disabled:not(.outline),
button:disabled:not(.transparent) {
    color: white;
    border-color: #b1b1ad;
    background-color: #b1b1ad;
}

button:disabled.outline {
    color: #898989;
    border-color: #b1b1ad;
    background-color: transparent;
}

button:disabled.transparent {
    color: #898989;
    border-color: transparent;
    background-color: transparent;
}

button.outline {
    color: #3c3c3c;
    background-color: transparent;
}

button.transparent {
    color: #3c3c3c;
    border-color: transparent;
    background-color: transparent;
}

button.activated {
    color: #eeeeec !important;
    background-color: #656560 !important;
}

button.compact {
    padding: 0 0.2em;
}

button.red {
    color: #eeeeec;
    background-color: #ef3030;
    padding: 0.2em 0.5em;
    border-radius: 5px;
    border: 1px solid #ef3030;
    text-align: center;
    vertical-align: middle;
    transition: all 0.3s;
}

button.red:not(:disabled):hover {
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
    color: #eeeeec !important;
    border-color: #db1111 !important;
    background-color: #ef3030 !important;
}

button.red:not(:disabled):focus {
    box-shadow: 0 0 0 0.2rem #f47777;
    outline: none;
}

button.red:disabled:not(.outline),
button.red:disabled:not(.transparent) {
    color: white;
    border-color: #fabebe;
    background-color: #fabebe;
}

button.red:disabled.outline {
    color: #fabebe;
    border-color: #fabebe;
    background-color: transparent;
}

button.red:disabled.transparent {
    color: #fabebe;
    border-color: transparent;
    background-color: transparent;
}

button.red.outline {
    color: #ef3030;
    background-color: transparent;
}

button.red.transparent {
    color: #ef3030;
    border-color: transparent;
    background-color: transparent;
}

button.red.activated {
    color: #eeeeec !important;
    background-color: #ef3030 !important;
}

button.red.compact {
    padding: 0 0.2em;
}

button.green {
    color: #eeeeec;
    background-color: #9abf34;
    padding: 0.2em 0.5em;
    border-radius: 5px;
    border: 1px solid #9abf34;
    text-align: center;
    vertical-align: middle;
    transition: all 0.3s;
}

button.green:not(:disabled):hover {
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
    color: #eeeeec !important;
    border-color: #7a9729 !important;
    background-color: #9abf34 !important;
}

button.green:not(:disabled):focus {
    box-shadow: 0 0 0 0.2rem #b9d669;
    outline: none;
}

button.green:disabled:not(.outline),
button.green:disabled:not(.transparent) {
    color: white;
    border-color: #d5e7a5;
    background-color: #d5e7a5;
}

button.green:disabled.outline {
    color: #d5e7a5;
    border-color: #d5e7a5;
    background-color: transparent;
}

button.green:disabled.transparent {
    color: #d5e7a5;
    border-color: transparent;
    background-color: transparent;
}

button.green.outline {
    color: #9abf34;
    background-color: transparent;
}

button.green.transparent {
    color: #9abf34;
    border-color: transparent;
    background-color: transparent;
}

button.green.activated {
    color: #eeeeec !important;
    background-color: #9abf34 !important;
}

button.green.compact {
    padding: 0 0.2em;
}

[tooltip] {
    position: relative;
}

[tooltip]:before,
[tooltip]:after {
    opacity: 0;
    transition: opacity 0.5s;
    content: "";
    pointer-events: none;
}

[tooltip]:hover:before {
    content: attr(tooltip);
    opacity: 1;
    width: 200px;
    position: absolute;
    font-size: 0.8rem;
    line-height: 2em;
    z-index: 100;
    color: #eeeeec;
    background-color: #656560;
    padding: 0.2em 0.5em;
    border-radius: 5px;
    border-style: solid;
    border-color: #eeeeec;
    text-align: center;
    top: inherit;
    right: inherit;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    border-width: 2px 2px 0px 2px;
}

[tooltip]:hover:after {
    content: "";
    opacity: 1;
    position: absolute;
    border-width: 10px;
    border-style: solid;
    z-index: 100;
    top: -10px;
    right: inherit;
    bottom: inherit;
    left: 50%;
    transform: translateX(-50%);
    border-color: #656560 transparent transparent transparent;
}

[tooltip].tooltip-small:hover:before {
    width: 100px;
}

[tooltip].tooltip-right:hover:before {
    top: 50%;
    right: inherit;
    bottom: inherit;
    left: calc(100% + 10px);
    transform: translateY(-50%);
    border-width: 2px 2px 2px 0px;
}

[tooltip].tooltip-right:hover:after {
    top: 50%;
    right: inherit;
    bottom: inherit;
    left: calc(100% - 10px);
    transform: translateY(-50%);
    border-color: transparent #656560 transparent transparent;
}

[tooltip].tooltip-left:hover:before {
    top: 50%;
    right: calc(100% + 10px);
    bottom: inherit;
    left: inherit;
    transform: translateY(-50%);
    border-width: 2px 0px 2px 2px;
}

[tooltip].tooltip-left:hover:after {
    top: 50%;
    right: calc(100% - 10px);
    bottom: inherit;
    left: inherit;
    border-color: transparent transparent transparent #656560;
    transform: translateY(-50%);
}

[tooltip].tooltip-bottom:hover:before {
    top: calc(100% + 10px);
    right: inherit;
    left: 50%;
    bottom: inherit;
    transform: translateX(-50%);
    border-width: 0px 2px 2px 2px;
}

[tooltip].tooltip-bottom:hover:after {
    top: calc(100% - 10px);
    right: inherit;
    bottom: inherit;
    left: 50%;
    border-color: transparent transparent #656560 transparent;
}

body {
    /* user-select: none; */
    /* -ms-user-select: none; */
    /* -moz-user-select: none; */
    /* -webkit-user-select: none; */
    overflow: hidden;
    cursor: url("assets/images/cursors/leek_default.cur"), url("assets/images/cursors/leek_default.png"), default;
}

html:not(:fullscreen) body {
    font-size: 0.7em;
    line-height: 1.3;
}

.hidden {
    display: none;
}

#game_canvas canvas {
    display: flex;
}

#gui {
    position: absolute;
    top: 0;
    height: 100%;
    pointer-events: none;
}

.border-5 {
    border-width: 5px !important;
}

.gui-truck-equipment {
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
}

.gui-truck-equipment-image {
    width: 100px;
    height: 100px;
}

.skeleton .gui-truck-equipment-image {
    width: 50px;
    height: 50px;
    background: #ccc;
    border-radius: 25%;
}

.skeleton .gui-truck-equipment-text-1 {
    width: 80%;
    height: 1em;
    margin-bottom: 4px;
    background: #ccc;
    border-radius: 1em;
}

.skeleton .gui-truck-equipment-text-2 {
    width: 40%;
    height: 0.8em;
    background: #ccc;
    border-radius: 1em;
}

.gui-truck-equipment-text-1,
.gui-truck-equipment-text-2 {
    line-height: 1em;
}

.tag_badge {
    margin-right: 3px;
}

.top-left-bar {
    position: absolute;
    top: 10px;
    left: 10px;
}

.action_display progress {
    width: 50px;
    height: 10px;
}

.character_bar .character_icon {
    width: 3.125rem;
}

.character_bar .character_icon .card-title {
    margin-bottom: 0;
}

.character_bar .character_icon .card-body {
    padding: 5px;
}

.character_bar.selected .character_icon .card-title {
    background-color: #c8ffc8;
}

.selling_place_overlay {
    position: absolute;
    background: url(assets/images/icons/empty_map_pin.png);
    height: 60px;
    width: 60px;
    transform: translate(-50%, -100%);
}

.selling_place_overlay>div {
    height: 100%;
    padding-top: 0.5em;
    color: #eeeeec;
    text-align: center;
    font-weight: bold;
}

#icons-legend {
    width: 350px;
}

#icons-legend img {
    width: 20px;
}

.objective-card {
    max-height: 300px;
    max-width: 400px;
    background-color: #eeeeec;
    border: 1px solid white;
    border-radius: 5px;
}

.objective-card-enter-active,
.objective-card-leave-active {
    transition: all 1s;
}

.objective-card-enter,
.objective-card-leave-to {
    opacity: 0;
    max-height: 0px;
}

.badge-quality {
    letter-spacing: -2px;
}

.badge-quality-0 {
    color: #f25252;
}

.badge-quality-20 {
    color: #f29752;
}

.badge-quality-40 {
    color: #f3c845;
}

.badge-quality-60 {
    color: #adcf4f;
}

.badge-quality-80 {
    color: #50aa35;
}

.badge-quality-100 {
    color: #50aa35;
}

.truck-sidebar {
    /* max-width: 400px; */
}

.truck_alert_equipment {
    max-width: 350px;
}

.map-tooltip {
    position: absolute;
    max-width: 300px;
    padding: 15px 0;
    border-radius: 5px;
    background: url(assets/images/icon_backgrounds/fork_spoon.png) #eeeeec no-repeat top right;
    background-size: 20%;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 0.5);
    opacity: 1;
    transition: opacity 0.5s;
}

.map-tooltip:before {
    position: absolute;
    top: 100%;
    left: 50%;
    content: " ";
    height: 60px;
    width: 60px;
    margin-left: -30px;
    background: url(assets/images/tooltip_bottom_arrow.svg) no-repeat;
    pointer-events: none;
}

.map-tooltip.transition-enter {
    opacity: 0;
}

.map-tooltip.transition-leave-to {
    opacity: 0;
}

.action_choice_popup {
    position: absolute;
}

html:fullscreen new-recipe-window .new-recipe-item-button {
    width: 112px;
    height: 135px;
}

.new-recipe-window .new-ingredient {
    position: absolute;
    top: -0.5em;
    right: -0.1em;
    color: white;
    background: #f7a226;
    border-radius: 2em;
    width: 2em;
    height: 2em;
}

.new-recipe-window .ingredient-count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1em;
    background: rgba(255, 255, 255, 0.5);
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    border-radius: 5px;
    color: #656560 !important;
}

.mw-900px {
    max-width: 900px;
}

.save-window {
    z-index: 500 !important;
}

.sprite-person {
    display: inline-block;
    height: 19px;
    width: 10px;
    background: url("assets/3d/persons/person_icon_spritesheet.png") 0 0 no-repeat;
}

.sprite-person.sprite-person-student {
    background-position: -45px -8px;
}

.sprite-person.sprite-person-worker {
    background-position: -45px -58px;
}

.sprite-person.sprite-person-executive {
    background-position: -45px -108px;
}

.sprite-university {
    display: inline-block;
    height: 140px;
    width: 400px;
    background: url("assets/3d/zones/university_spritesheet.png") 0 0 no-repeat;
    background-position: 0 -200px;
}

.fast-forward-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    transition: all 2s;
    background: black;
    opacity: 0;
    pointer-events: none;
    z-index: 146;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fast-forward-mask.active {
    transition: all 6s;
    opacity: 1;
    pointer-events: inherit;
}

html:not(:fullscreen) .dialog_window {
    min-width: 300px;
    padding: 10px 0;
}

html:not(:fullscreen) .dialog_window .title,
html:not(:fullscreen) .dialog_window .text {
    padding-right: 90px;
}

.dialog_window {
    min-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 0;
    border-radius: 5px;
    background: url(assets/images/icon_backgrounds/dialog.png) #eeeeec no-repeat top right;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 0.5);
}

.dialog_window .title,
.dialog_window .text {
    padding-right: 110px;
}

.dialog_window .dialog_button {
    min-width: 50px;
}

.dialog_window .character {
    position: absolute;
    top: 0;
    width: 100%;
    transform: translateY(-100%);
}

.dialog_window .character .avatar {
    width: 90px;
    height: 90px;
    margin: auto;
    background-size: cover;
    border-radius: 90px;
    background: url(assets/3d/persons/person_avatar.png) #eeeeec no-repeat center;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 0.5);
}

.dialog_window .character .name {
    padding: 2px 10px;
    background: #eeeeec;
    border-radius: 5px;
    min-width: 100px;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 0.5);
    position: relative;
    top: -10px;
}

button.emphasis {
    animation: 1s linear 0s infinite alternate background-blinking;
}

button.close_recipe_window.no_recipe.emphasis {
    animation: none;
}

button.create_new_recipe.recipe_done.emphasis {
    animation: none;
}

button.close_recipe_window.emphasis {
    animation: 1s linear 0s infinite alternate background-blinking;
}

.top-left-bar .menu.emphasis {
    animation: 1s linear 0s infinite alternate background-blinking;
}

.recipe_selection div.recipe.selectable.emphasis {
    animation: 1s linear 0s infinite alternate background-blinking;
}

.character-action-bar .avatar.emphasis {
    animation: 1s linear 0s infinite alternate background-blinking;
}

@keyframes background-blinking {
    from {
        background-color: transparent;
    }
    to {
        background-color: #9abf34;
    }
}

.sellingplace-view .avatar {
    display: inline-block;
    background: url("assets/3d/persons/person_avatar.png");
    background-size: cover;
    background-position: center;
    width: 32px;
    height: 32px;
    border: 1px solid #dee2e6;
    border-radius: 50%;
}

html:fullscreen .sellingplace-view .list_clients {
    min-height: 200px;
    max-height: 250px;
}

.sellingplace-view .list_clients {
    overflow-x: hidden;
    min-height: 300px;
    z-index: 0;
}

.sellingplace-view progress {
    width: 50px;
    height: 8px;
    background-color: #bcbcbc;
    border-radius: 5px;
}

.sellingplace-view progress::-moz-progress-bar {
    background-color: #9abf34;
    border-radius: 5px;
}

.sellingplace-view progress::-webkit-progress-value {
    background-color: #9abf34;
    border-radius: 5px;
}

.sellingplace-view progress::-ms-fill {
    background-color: #9abf34;
    border-radius: 5px;
}

.kitchen_shop .enhancement_icon:fullscreen {
    max-height: 100px;
}

.kitchen_shop .enhancement_icon {
    max-height: 50px;
    grid-column: 1;
}

.kitchen_shop .grid_row {
    display: grid;
    grid-template-columns: 100px repeat(3, 1fr);
    background: white;
    padding: 1em;
    margin: 0 -1em 1em -2em;
}

.character-action-bar .panel {
    border-radius: 5px;
    border: 1px solid white;
    margin-bottom: 0.5em;
    background-color: #eeeeec;
}

.character-action-bar .header-bar {
    height: 3.5em;
    border-radius: 5px;
}

.character-action-bar .header-bar.expanded {
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid white;
}

.character-action-bar .header-bar .info {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    border: 1px solid white;
    background: rgba(238, 238, 236, 0.9);
    color: #f7a226;
    min-width: 3em;
    font-weight: bold;
}

.character-action-bar .action-panel .header-bar {
    background-color: #f25252;
}

.character-action-bar .action-panel .header-bar>div:not(.avatar) {
    min-width: 40px;
    color: #eeeeec;
}

.character-action-bar .action-panel .header-bar>div:not(.avatar):hover,
.character-action-bar .action-panel .header-bar>div:not(.avatar).enabled {
    background-color: rgba(0, 0, 0, 0.1);
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
}

.character-action-bar .action-panel .header-bar>div:not(.avatar) .text-danger {
    color: #808080 !important;
}

.character-action-bar .action-panel .header-bar .avatar {
    width: 80px;
}

.character-action-bar .action-panel .header-bar .avatar .truck {
    position: absolute;
    width: 90px;
    height: 3.5em;
    background: url("assets/3d/trucks/all_truck_spritesheet.png") 0 0 no-repeat;
}

.character-action-bar .action-panel .header-bar .avatar .truck.truck_0 {
    background-position: -55px -11px;
}

.character-action-bar .action-panel .header-bar .avatar .truck.truck_1 {
    background-position: -255px -11px;
}

.character-action-bar .action-panel .header-bar .avatar .truck.truck_2 {
    background-position: -55px -111px;
}

.character-action-bar .action-panel .header-bar .avatar .truck.truck_3 {
    background-position: -255px -111px;
}

.character-action-bar .body-bar {
    width: 300px;
}

.character-action-bar .action-list .action {
    background: rgba(128, 128, 128, 0.5);
    color: #eeeeec;
    padding: 0.2em;
    margin-right: 0.5em;
    border-radius: 5px;
    border: 1px solid #eeeeec;
}

.character-action-bar .action-list .action:hover {
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
    color: rgba(128, 128, 128, 0.5);
    background: #f25252 !important;
}

.timeline .header {
    padding-bottom: calc(.2em + 1px);
}

.timeline .timeline-bar {
    position: relative;
    width: 100%;
    height: calc(3em + 2px);
    background: white;
    border: 1px solid #f25252;
    border-radius: 5px;
}

.timeline .timeline-bar .timeline-bar-event {
    position: absolute;
    background: white;
    padding: 0.5em;
    line-height: 1em;
    border-right: 1px solid #f25252;
}

.timeline .timeline-bar .timeline-clock-cursor {
    height: 3.5em;
    position: absolute;
    top: -0.25em;
}

.timeline .timeline-bar .timeline-clock-cursor .timeline-clock-cursor-bar {
    position: absolute;
    width: 4px;
    height: 100%;
    background: #f25252;
    border-radius: 4px;
}

.timeline .timeline-bar .timeline-clock-cursor .timeline-clock-cursor-date {
    position: absolute;
    max-width: 200px;
    top: 3em;
    transform: translateX(-50%);
    background: #f25252;
    border-radius: 5px;
    text-align: center;
    color: white;
    white-space: nowrap;
    padding: 0.1em 1em;
}

.timeline .cannot-next-day {
    animation: red-flash 0.3s;
}

@keyframes red-flash {
    0% {
        background-color: #ef3030;
    }
    50% {
        background-color: inherit;
    }
    100% {
        background-color: #ef3030;
    }
}

.truck_choice_text {
    text-align: center;
}

.truck_choice_image {
    width: 100px;
    height: 60px;
    background: url("assets/3d/trucks/all_truck_spritesheet.png") 0 0 no-repeat;
    border: 1px solid #656560;
    box-shadow: none !important;
}

.truck_choice_image.truck_0 {
    background-position: -50px -11px;
}

.truck_choice_image.truck_1 {
    background-position: -250px -11px;
}

.truck_choice_image.truck_2 {
    background-position: -50px -111px;
}

.truck_choice_image.truck_3 {
    background-position: -250px -111px;
}

.truck_choice_image.selected {
    border: 4px solid #4b4b47;
}

.bottom-left-bar {
    position: fixed;
    bottom: 10px;
    left: 10px;
    min-width: 440px;
    max-width: 50%;
    background-color: #eeeeec;
    border: 1px solid white;
    border-radius: 5px;
    padding: 0.2em 0.7em;
    min-height: 4em;
}

.bottom-center-bar {
    position: fixed;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    min-width: 440px;
    width: 80%;
    max-width: 900px;
    background-color: #eeeeec;
    border: 1px solid white;
    border-radius: 5px;
    padding: 0.2em 0.7em;
    min-height: 5.1em;
}

.top-right-bar {
    position: fixed;
    top: 10px;
    right: 10px;
    position: absolute;
    z-index: 145;
    max-width: 30%;
}

.top-right-bar .buttons-bar {
    background-color: #eeeeec;
    border: 1px solid white;
    border-radius: 5px;
    min-height: 4em;
}

.game-infos {
    display: inline-block;
    background-color: #eeeeec;
    border: 1px solid white;
    border-radius: 5px;
}

.end-day-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    transition: all 2s;
    background: black;
    opacity: 0;
    pointer-events: none;
    z-index: 146;
}

.end-day-mask.active {
    transition: all 6s;
    opacity: 1;
    pointer-events: inherit;
}

#endday-window {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
}

.first-play-button {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #000;
    transition: all 1s;
}

.first-play-button .play {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    border-radius: 100%;
    transition: all 0.25s;
}

.first-play-button .play img {
    width: 100%;
}

.first-play-button .play:hover {
    width: 125px;
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
    box-shadow: 0px 0px 20px 0px white;
}

.first-play-button .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 150px));
}

.first-play-button .logo img {
    height: 200px;
}

.brands-screen {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #000;
    transition: all 1s;
}

.brands-screen>div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

html:not(:fullscreen) .main-menu .menu .menu-item {
    padding: 0.1em 0.1em;
}

.main-menu {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 400;
    background: white;
    background-image: url(assets/images/main_menu_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.main-menu .title-border-left,
.main-menu .title-border-right {
    height: 12px;
    background: #eeeeec;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 0.5);
}

.main-menu .title-border-left {
    border-radius: 0 12px 12px 0;
}

.main-menu .title-border-right {
    border-radius: 12px 0 0 12px;
}

.main-menu .menu .menu-item {
    width: 400px;
    margin: 2em auto;
    padding: 0.75em 1em;
    border-radius: 5px;
    background: #eeeeec;
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: right;
    box-shadow: 0px 0px 15px 0px rgba(38, 38, 38, 0.5);
    position: relative;
    transition: all 0.3s;
}

.main-menu .menu .menu-item.activated:hover {
    transform: scale(1.1, 1.1);
    cursor: url("assets/images/cursors/leek_pointer.cur"), url("assets/images/cursors/leek_pointer.png"), pointer;
}

.main-menu .menu .menu-item.campaign {
    background-image: url(assets/images/icon_backgrounds/button_frites.png);
}

.main-menu .menu .menu-item.freeplay {
    background-image: url(assets/images/icon_backgrounds/button_champignon.png);
}

.main-menu .menu .menu-item.load_game {
    background-image: url(assets/images/icon_backgrounds/button_pizza.png);
}

.main-menu .menu .menu-item .menu-title {
    text-transform: uppercase;
    font-weight: bold;
    color: #3c3c3c;
}

.main-menu .menu .menu-item .menu-subtitle {
    color: #808080;
}

.main-menu .menu .menu-item .mask {
    width: 100%;
    height: 100%;
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    border-radius: 5px;
}

.unlock-message .shine-effect {
    position: relative;
    overflow: hidden;
}

.unlock-message .shine-effect>div {
    width: 8em;
    height: 8em;
}

.unlock-message .shine-effect>div i {
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 1.5s;
    animation-name: text-zoom-anim;
    animation-fill-mode: both;
}

.unlock-message .shine-effect:after {
    content: " ";
    width: 300%;
    height: 300%;
    background: linear-gradient(rgba(255, 255, 255, 0), #eeeeec, #eeeeec);
    position: absolute;
    transform: rotate(-45deg);
    animation-duration: 2s;
    animation-name: gradient-anim;
    animation-fill-mode: both;
}

@keyframes gradient-anim {
    from {
        top: -100%;
        left: -200%;
    }
    to {
        top: 50%;
        left: 50%;
    }
}

@keyframes text-zoom-anim {
    from {
        font-size: 6em;
    }
    to {
        font-size: 8em;
    }
}

.unlock-message .message {
    animation-duration: 1.5s;
    animation-name: message-anim;
    animation-fill-mode: both;
}

.unlock-message .message .unlock_message {
    font-size: 1.25em;
    font-weight: bold;
}

@keyframes message-anim {
    from {
        opacity: 0;
        font-size: 0.5rem;
    }
    to {
        opacity: 1;
        font-size: 1rem;
    }
}

/*# sourceMappingURL=main_1_4.css.map */