@font-face {
    font-family: 'bould';
    src: url(Bould-Roman-webfontkit/bould-regular-webfont.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'bould';
    src: url(Bould-Roman-webfontkit/bould-semibold-webfont.ttf);
    font-weight: 600;
}

@font-face {
    font-family: 'bould';
    src: url(Bould-Roman-webfontkit/bould-bold-webfont.ttf);
    font-weight: 700;
}

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

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

:root {
    --text-on-dark: #fff;
    --text-on-light: var(--dark-green-50);
    --text-secondary-dark: var(--grey-600);
    --text-secondary-on-light: var(--grey-300);

    --text-secondary: var(--text-secondary-on-light);
    --text-primary: var(--text-on-light);
    --background-color: #ffffff;

    --green-200: #273d39;
    --green-300: #2c4c46;
    --green: #4cb8a4;

    --grey: #909397;
    --orange: #ff8a00;
    --red: #b84c4c;
    --gold: #fcf820;
    --yellow: var(--gold);

    --grey-200: #353c41;
    --grey-300: #454c5f;
    --grey-490: #8e8e8e;
    --grey-500: #909397;
    --grey-600: #b3b3b3;
    --grey-700: #e9e9ea;

    /* bg */
    --dark-green-50-20: #21282e0d;
    --dark-green-50: #21282e;
    --dark-green-100: #262d33;
    --dark-green-150: #242a31;

    /* this is just random at this point */
    --border-1: #f0f0f0;
    --border-2: #ffffff1a;
    --border-3: #3c4247;

    --layout-gutter-inline: 70px;
    --layout-gutter-block: 48px;

    --svg-white: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(16%) hue-rotate(285deg) brightness(106%) contrast(104%);
    --svg-green: brightness(0) saturate(100%) invert(64%) sepia(64%) saturate(321%) hue-rotate(119deg) brightness(87%) contrast(93%);
    --svg-dark-green: brightness(0) saturate(100%) invert(12%) sepia(13%) saturate(903%) hue-rotate(166deg) brightness(93%) contrast(90%);
    --svg-gold: brightness(0) saturate(100%) invert(88%) sepia(80%) saturate(2181%) hue-rotate(337deg) brightness(110%) contrast(98%);
}

:root.dark {
    --text-primary: var(--text-on-dark);
    --background-color: var(--dark-green-100);

    --text-secondary: var(--text-secondary-dark);
}

@media screen and (max-width: 900px) {
    :root {
        --layout-gutter-inline: 70px 18px;
    }
}

body {
    font-family: 'bould';
    margin: 0;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: var(--background-color);
    font-size: 14px;
    line-height: 24px;
    color: var(--text-primary);
}

.cool-transition {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.styled-link {
    color: var(--green);
    text-decoration: underline;
}

.svg-green {
    filter: var(--svg-green);
}

.button {
    --clr: var(--text-primary);
    --bg-clr: black;
    --hover-bg-clr: auto;

    color: var(--clr);
    background-color: var(--bg-clr);

    display: inline-block;
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    font-size: 14px;
    line-height: 24px;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-weight: 600;
    padding: 5px 20px;
    cursor: pointer;
    box-sizing: border-box;
    height: 35px;
}

.buttons button {
    margin-right: 8px;
}

.button:hover {
    background-color: var(--hover-bg-clr);
}

.button-weight-normal {
    font-weight: 400;
}

.button-bg-none {
    background: none;
    --clr: var(--dark);
}

.button[disabled] {
    cursor: default;
}

.button[disabled]:not(.button-loading) {
    color: #1c1b1f;
    background-color: #e2dfe3;
}

.button:not(.button-loading) i {
    display: none;
}

.button-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}

.button-outline-grey {
    --color: #5a6268;
    --border-color: #5a6268;
}

.button-outline-green {
    --color: var(--green);
    --border-color: var(--green);
}

.button-outline--text-white {
    --color: #fff;
}

.button-outline-red {
    --color: var(--red);
    --border-color: var(--red);
}

.button-outline {
    background-color: transparent;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    color: var(--color);
    padding: 4px 18px;
}

.button-filled-green {
    --bg-clr: #4ab7a1;
    --clr: #ffffff;
    --hover-bg-clr: #3daf98;
}

.button-filled-yellow {
    --bg-clr: #fcf820;
    --clr: #21282e;
    --hover-bg-clr: #ddd92d;
}

.button-filled-orange {
    --bg-clr: #ff8a00;
    --clr: #fff;
    --hover-bg-clr: #ffa53b;
}

.button-filled-red {
    --bg-clr: #b84c4c;
    --clr: #fff;
    --hover-bg-clr: #cd4e4e;
}

.button-filled-grey {
    --bg-clr: #f2f2f2;
    --clr: var(--text-on-light);
    --hover-bg-clr: var(--grey);
}

.button-filled-pronounced-grey {
    --bg-clr: #5a6268;
    --clr: #fff;
    --hover-bg-clr: #697680;
}

.button-cell {
    background: none;
    border: none;
    color: #4cb8a4;
    font-size: 14px;
    font-style: normal;
    line-height: 24px;
    cursor: pointer;
}

.button-disabled {
    cursor: not-allowed !important;
    background-color: var(--grey-500) !important;
}
.button-disabled:hover {
    border-color: var(--grey-300) !important;
}

.dark hr {
    --color: var(--border-3);
}

hr {
    --color: #f0f0f0;
    --height: 1px;

    border: none;
    height: var(--height);
    width: 100%;
    background: var(--color);
    font-size: 0;
}

hr.hr-2 {
    --height: 2px;
}

.fancy-radio label input[type='radio'] {
    margin-right: 13px;
    border-radius: 4px;
    border: 1px solid #66728f;
    width: 24px;
    height: 24px;
    accent-color: #34a28b;
    background-color: #232a32;
}

.dark :host .ha-you-though-was-a-radio[type='radio'] {
    --background: var(--grey-300);
}

.ha-you-though-was-a-radio {
    --background: #e9e9ea;

    /* Disable defaults */
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    margin-right: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: var(--background);
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.ha-you-though-was-a-radio::after {
    content: '';
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.ha-you-though-was-a-radio:checked::after {
    background-color: #4cb8a4;
}

.h6-white {
    color: white;
    font-size: 18px;
}

.btn-primary {
    color: #fff;
    background-color: #4ab7a1;
    border-color: #4ab7a1;
    border-style: solid;
}

.btn-outline-primary {
    border: #4ab7a1;
}

.btn-primary:hover {
    color: #fff;
    background-color: #53d0bb;
    border-color: #53d0bb;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-toggle-fullwidth {
    z-index: 99;
    margin-top: -6px;
    padding-left: 0 !important;
    color: #111111;
}

.btn-toggle-fullwidth:hover,
.btn-toggle-fullwidth:focus,
.btn-toggle-fullwidth:visited {
    color: #111111;
}

.svg-green {
    filter: var(--svg-green);
}

/* forms */
.dark .form-wrapper {
    --background: var(--dark-green-50);
}

.form-wrapper {
    --background: #fff;

    border-radius: 10px;
    background: var(--background);
    box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 2px 4px;
    padding: 13px;
}

.form-wrapper h4 {
    font-family: Bould;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.form-multi-row {
    display: flex;
    gap: 17px;
    flex-direction: column;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media screen and (min-width: 1200px) {
    .form-row>* {
        max-width: 300px;
    }
}

.form-row>* {
    flex: 1 1 180px;
}

.form-group {
    --height: 53px;
    --font-size: 16px;
    --padding-left: 24px;
}

.form-group.form-group--packed {
    --height: 35px;
    --font-size: 14px;
    --padding-left: 13px;
    --padding-block: 9px;
}


.form-group.form-group--extra-packed {
    --height: 35px;
    --font-size: 14px;
    --padding-left: 13px;
    --padding-block: 9px;
}

.form-group label {
    color: #b8b8b8;
    font-weight: 400;
    margin-bottom: 5px;
}

.dark .form-group :is(input, select) {
    --color: var(--grey-600);
    --border-color: var(--grey-600);
}

.form-group :is(input, select) {
    --color: #454c5f;
    --border-color: #8e8e8e;
    color: var(--color);
    border: 1px solid var(--border-color);
}

.dark .form-group input:is([type='text'], [type='date'], [type='password']) {
    background: none;
}

.form-group input:is([type='text'], [type='date'], [type='password']) {
    font-size: var(--font-size);
    height: var(--height);
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    font-weight: 400;
    padding-left: var(--padding-left);
}

form:has(button:disabled) :is(input, label) {
    pointer-events: none;
}

.form-group div.input-icon {
    position: relative;
}

.form-group div.input-icon input {
    padding-right: 40px;
}

.form-group div.input-icon svg {
    position: absolute;
    right: 10px;
    top: 7px;
}

.info-box {
    --font-size: 14px;
    --line-height: 18px;
    --text-color: black;
    --background-color: grey;

    background: var(--background-color);
    color: var(--text-color);
    font-size: var(--font-size);
    line-height: var(--line-height);
    font-style: normal;
    font-weight: 400;

    padding-inline: 20px;
    padding-block: 5px;
    border-radius: 5px;

    display: inline-block;
    margin-bottom: 20px;
}

.info-box a {
    text-decoration: underline;
    font-weight: bold;
    color: inherit;
}

.info-box--tall {
    padding-block: 20px;
}

.info-box--small {
    --font-size: 10px;
    --line-height: 13px;
}

.dark .info-box--green {
    --background-color: var(--green-300);
}

.info-box--green {
    --text-color: var(--green);
    --background-color: #fbfbfb;
}

.info-box--red {
    --text-color: var(--red);
    --background-color: #b84c4c4d;
}

.info-box--yellow {
    --text-color: var(--text-primary);
    --background-color: #fcf8204d;
}

.info-box span:last-child,
.info-box p:last-child {
    font-weight: 600;
}

.dark .payment-summary {
    --background: var(--grey-300);
}

.payment-summary {
    --background: var(--dark-green-50);
    background: var(--background);

    color: #fff;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 7px;
    flex-direction: column;
    font-size: 12px;
}

.payment-thingy p,
.payment-summary p {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.payment-summary p span:last-child {
    font-weight: 600;
}

/* Chip used to display contract number and uom etc*/
.chip-link {
    text-decoration: none;
}

.chip {
    display: inline-flex;
    padding: 5px 20px;
    gap: 10px;
    border-radius: 10px;
    background: #f2f2f2;
    align-items: center;
    margin-bottom: 4px;
}

.chip .label {
    font-weight: 600;
    color: var(--text-on-light);
}

.chip .label::after {
    content: ': ';
}

.chip .value {
    color: var(--grey);
}

.chip .trailing {
    fill: var(--green);
}

/* modals */

ngb-modal-window {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.modal-dialog {
    display: flex;
    height: 100%;
    padding: 20px;
}

.modal-content {
    padding: 24px;
    border-radius: 10px;
    background: var(--background-color);
    width: fit-content;
    height: fit-content;
    text-align: center;
    margin: auto;
}

.modal-title {
    margin: 0;
    font-size: 20px;
}

.modal-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* SLIDERS */
.slider-heading {
    display: flex;
    justify-content: space-between;
}

.slider-title {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}

.slider-title.price-tag {
    color: #4cb8a4;
}

.custom-slider {
    margin-bottom: 10px;
}

jhi-range-slider .ngx-slider-span.ngx-slider-bar-wrapper.ngx-slider-full-bar .ngx-slider-span.ngx-slider-bar {
    background: #f8f8f9;
}

.custom-slider .ngx-slider.with-legend {
    margin-bottom: 60px;
}

.custom-slider .ngx-slider[disabled] {
    cursor: not-allowed;
}

.custom-slider .ngx-slider[disabled] .ngx-slider-pointer {
    cursor: not-allowed;
    background-color: #d8e0f3;
}

.custom-slider .ngx-slider[disabled] .ngx-slider-draggable {
    cursor: not-allowed;
}

.custom-slider .ngx-slider[disabled] .ngx-slider-selection {
    background: #8b91a2;
}

.custom-slider .ngx-slider[disabled] .ngx-slider-tick {
    cursor: not-allowed;
}

.custom-slider .ngx-slider[disabled] .ngx-slider-tick.ngx-slider-selected {
    background: #8b91a2;
}

.custom-slider .ngx-slider .ngx-slider-span {
    white-space: nowrap;
    position: absolute;
    display: inline-block;
}

.custom-slider .ngx-slider .ngx-slider-base {
    width: 100%;
    height: 100%;
    padding: 0;
}

.custom-slider .ngx-slider .ngx-slider-bar-wrapper {
    left: 0;
    box-sizing: border-box;
    margin-top: -16px;
    padding-top: 16px;
    width: 100%;
    height: 32px;
    z-index: 1;
}

.custom-slider .ngx-slider .ngx-slider-draggable {
    cursor: move;
}

.dark .custom-slider .ngx-slider .ngx-slider-bar {
    --background: #42484d;
}

.custom-slider .ngx-slider .ngx-slider-bar {
    --background: #21282e26;

    left: 0;
    width: 100%;
    height: 2px !important;
    z-index: 1;
    background: var(--background);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.custom-slider .ngx-slider .ngx-slider-bar-wrapper.ngx-slider-transparent .ngx-slider-bar {
    background: transparent;
}

.custom-slider .ngx-slider .ngx-slider-bar-wrapper.ngx-slider-left-out-selection .ngx-slider-bar {
    background: #03a688;
}

.custom-slider .ngx-slider .ngx-slider-bar-wrapper.ngx-slider-right-out-selection .ngx-slider-bar {
    background: #03a688;
}

.custom-slider .ngx-slider .ngx-slider-selection {
    z-index: 2;
    background: #4ab7a1 !important;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.custom-slider .ngx-slider .ngx-slider-pointer {
    cursor: pointer;
    width: 16px;
    height: 16px;
    top: -6px;
    background-color: #4ab7a1 !important;
    z-index: 3;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.custom-slider .ngx-slider .ngx-slider-pointer:after {
    display: none;
}

.custom-slider .ngx-slider .ngx-slider-pointer:hover:after {
    background-color: #fff;
}

.custom-slider .ngx-slider .ngx-slider-pointer.ngx-slider-active {
    z-index: 4;
}

.custom-slider .ngx-slider .ngx-slider-pointer.ngx-slider-active:after {
    background-color: #03a688;
}

.custom-slider .ngx-slider .ngx-slider-bubble {
    cursor: default;
    bottom: 16px;
    padding: 1px 3px;
    font-size: 12px;
    line-height: 22px;
}

.custom-slider .ngx-slider .ngx-slider-bubble.ngx-slider-floor,
.custom-slider .ngx-slider .ngx-slider-bubble.ngx-slider-ceil {
    color: rgba(0, 0, 0, 0.3);
}

.dark .custom-slider .ngx-slider .ngx-slider-bubble.ngx-slider-model-high,
.dark .custom-slider .ngx-slider .ngx-slider-bubble.ngx-slider-model-value {
    --background: var(--grey-200);
}

.custom-slider .ngx-slider .ngx-slider-bubble.ngx-slider-model-high,
.custom-slider .ngx-slider .ngx-slider-bubble.ngx-slider-model-value {
    --background: #fff;
    background-color: var(--background);
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
    padding: 1px 7px;
    color: #4cb8a4;
    font-weight: 600;
    border-radius: 4px;
}

.dark .custom-slider .ngx-slider .ngx-slider-bubble.ngx-slider-limit {
    --color: #55637d;
}

.custom-slider .ngx-slider .ngx-slider-bubble.ngx-slider-limit {
    --color: #0000004d;
    color: var(--color);
}

.custom-slider .ngx-slider .ngx-slider-ticks {
    box-sizing: border-box;
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: -3px;
    margin: 0;
    z-index: 1;
    list-style: none;
}

.custom-slider .ngx-slider .ngx-slider-ticks-values-under .ngx-slider-tick-value {
    top: auto;
    bottom: -36px;
}

.custom-slider .ngx-slider .ngx-slider-tick {
    text-align: center;
    cursor: pointer;
    width: 10px;
    height: 10px;
    background: #d8e0f3;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 11px;
}

.custom-slider .ngx-slider .ngx-slider-tick.ngx-slider-selected {
    background: #4ab7a1 !important;
}

.custom-slider .ngx-slider .ngx-slider-tick-value {
    position: absolute;
    top: -34px;
    transform: translate(-50%, 0);
}

.custom-slider .ngx-slider .ngx-slider-tick-legend {
    position: absolute;
    top: 24px;
    transform: translate(-50%, 0);
    max-width: 50px;
    white-space: normal;
}

.custom-slider .ngx-slider.vertical {
    position: relative;
    width: 4px;
    height: 100%;
    margin: 0 20px;
    padding: 0;
    vertical-align: baseline;
    touch-action: pan-x;
}

.custom-slider .ngx-slider.vertical .ngx-slider-base {
    width: 100%;
    height: 100%;
    padding: 0;
}

.custom-slider .ngx-slider.vertical .ngx-slider-bar-wrapper {
    top: auto;
    left: 0;
    margin: 0 0 0 -16px;
    padding: 0 0 0 16px;
    height: 100%;
    width: 32px;
}

.custom-slider .ngx-slider.vertical .ngx-slider-bar {
    bottom: 0;
    left: auto;
    width: 4px;
    height: 100%;
}

.custom-slider .ngx-slider.vertical .ngx-slider-pointer {
    left: -14px !important;
    top: auto;
    bottom: 0;
}

.custom-slider .ngx-slider.vertical .ngx-slider-bubble {
    left: 16px !important;
    bottom: 0;
}

.custom-slider .ngx-slider.vertical .ngx-slider-ticks {
    height: 100%;
    width: 0;
    left: -3px;
    top: 0;
    z-index: 1;
}

.custom-slider .ngx-slider.vertical .ngx-slider-tick {
    vertical-align: middle;
    margin-left: auto;
    margin-top: 11px;
}

.custom-slider .ngx-slider.vertical .ngx-slider-tick-value {
    left: 24px;
    top: auto;
    transform: translate(0, -28%);
}

.custom-slider .ngx-slider.vertical .ngx-slider-tick-legend {
    top: auto;
    right: 24px;
    transform: translate(0, -28%);
    max-width: none;
    white-space: nowrap;
}

.custom-slider .ngx-slider.vertical .ngx-slider-ticks-values-under .ngx-slider-tick-value {
    bottom: auto;
    left: auto;
    right: 24px;
}

.custom-slider .ngx-slider * {
    transition: none;
}

.custom-slider .ngx-slider.animate .ngx-slider-bar-wrapper {
    transition: all linear 0.3s;
}

.custom-slider .ngx-slider.animate .ngx-slider-selection {
    transition: background-color linear 0.3s;
}

.custom-slider .ngx-slider.animate .ngx-slider-pointer {
    transition: all linear 0.3s;
}

.custom-slider .ngx-slider.animate .ngx-slider-bubble {
    transition: all linear 0.3s;
}

.custom-slider .ngx-slider.animate .ngx-slider-bubble.ngx-slider-limit {
    transition: opacity linear 0.3s;
}

.custom-slider .ngx-slider.animate .ngx-slider-bubble.ngx-slider-combined {
    transition: opacity linear 0.3s;
}

.custom-slider .ngx-slider.animate .ngx-slider-tick {
    transition: background-color linear 0.3s;
}

.custom-slider .ngx-slider .ngx-slider-tick .ngx-slider-selected {
    background-color: red;
}

/* machine states */
.machine-state-red {
    --color: var(--red);
}

.machine-state-green {
    --color: var(--green);
}

:is(.machine-state-red, .machine-state-green)::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color);
}

.machine-state-red,
.machine-state-green,
.machine-state-yellow {
    display: flex;
    gap: 9px;
    align-items: center;
    color: var(--color);
}

.avatar {
    border-radius: 50%;
    box-shadow: 0px 0px 16px 0px #0000001a;
    background: var(--dark-green-50);
    object-fit: cover;
}

/* <<< Loading page */
.loader-wrapper {
    background-color: var(--dark-green-100);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.loader-container {
    /* Containter to make sure that elements will be on top of each other */
}
.loader-text {
    padding-top: 25px;
    color: var(--grey-600);
    font-weight: bold;
    font-size: 12px;
    text-shadow: #000 1px 0 3px;
    animation: text-highlight 2s linear infinite;
}
.loader-animation {
    width: 48px;
    height: 48px;
    margin: auto;
    position: relative;
}
.loader-animation:before {
    content: '';
    width: 48px;
    height: 5px;
    background: #000;
    opacity: 0.5;
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 50%;
    animation: shadow 2s linear infinite;
}
.loader-animation:after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("/content/images/MAIN.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}
@keyframes spin {
    0%, 100% {
        transform: translateY(0) rotate(360deg);
    }
    0%, 15% {
        transform: translateY(0) rotate(0deg);
    }
    60% {
        transform: translateY(9px);
    }
    62% {
        transform: translateY(12px) scale(1, .9);
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    64% {
        transform: translateY(9px);
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
    }
}
@keyframes shadow {
    0%, 100% {
        transform: scale(1.5, 1.3);
    }
    50% {
        transform: scale(1, 1);
    }
}
@keyframes text-highlight {
    0%, 100% {
        color: var(--grey-700);
    }
    50% {
        color: var(--grey-600);
    }
}
/* >>> Loading page */
