﻿:root {
    --color-paradise-pink: #F53D6B;
    --color-choral: #FF7D52;
    --color-mango: #FFC233;
    --color-emerald: #2DCA72;
    --color-blue-jeans: #00ACFF;
    --color-majorelle-blue: #7047EB;
    --color-purple-pizzazz: #F75FDE;
    --fixed-containers-width: 140px;
    --max-alert-container-height: 650px;
    --nav-bg-color: rgba(0, 0, 0, 0.85);
    --nav-container-height: 51px;
    --nav-container-width: 120px;
}

::-webkit-scrollbar {
    width: 12px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    background: dodgerblue;
}

html,
body {
	height: 100vh;
	margin: 0;
	padding: 0;
    background-color: #e8e8e8;
}

body {
    color: white;
    font-family: 'Noto Sans JP', 'Helvetica', Arial, sans-serif;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}

.flatpickr-current-month .numInputWrapper {
    width: 4ch !important;
    display: inline-block;
}

.blink {
    animation: blinkingElement 1s ease-in-out infinite;
}

#global-bg {
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-size: cover;
    background-image: url("/img/wave_background_mac.png");
}

#global-bg-dampen {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 15%);
}

#popUnderAppointments {
    display: none; 
    position: fixed;
    top: calc(var(--nav-container-height) + -1px);
    left: 78%;
    transform: translateX(-50%);
    z-index: 999;
    background: #333;
    color: white;
    font-size: 1.2em;
    border: 1px solid #0009;
    padding: 10px;
}

/* Custom inline-block element --Marcus */
ib {
    display: inline-block;
}

/* Custom Date interaction */

input[type="date"] {
	cursor: pointer;
	position: relative;
}

/* create a new arrow, because we are going to mess up the native one
see "List of symbols" below if you want another, you could also try to add a font-awesome icon.. */
input[type="date"]:after {
    content: "📅";
	color: #555;
	padding: 0 5px;
}

/* change color of symbol on hover */
input[type="date"]:hover:after {
	color: #bf1400;
}

/* make the native arrow invisible and stretch it over the whole field so you can click anywhere in the input field to trigger the native datepicker*/
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: auto;
	height: auto;
	color: transparent;
	background: transparent;
}

/* adjust increase/decrease button */
input[type="date"]::-webkit-inner-spin-button {
	z-index: 1;
}

/* End Custom Date interaction */

/* Combobox Custom Element --Marcus */
combobox {
    cursor: pointer;
    display: block;
    position: relative;
}

combobox arrow {
    position: absolute;
    right: 5px;
    top: 5px;
}

combobox display {
    display: block;
    width: 100%;
    background: white;
    padding: 5px;
    border: 1px solid #aaa;
}

combobox search {
    display: none;
    position: absolute;
    width: 100%;
}

combobox search > input {
    color: black;
    width: 100%;
    margin: 2px auto 0;
    display: block;
    padding: 5px;
    font-size: 1.1em;
    outline: none;
}

combobox items {
    display: none;
    max-height: 200px;
    overflow-y: auto;
    border-bottom: 1px solid rgb(0 0 0 / 33%);
    margin-top: 10px;
    position: absolute;
    top: 6.1vh;
    width: 100%;
    z-index: 9999;
    background: white;
}

combobox items item {
    display: block;
    padding: 5px;
    background: white;
    color: black;
    border: 1px solid rgb(0 0 0 / 50%);
}

combobox items item:hover {
    background: #57b1ff5e;
}

/* End custom combobox styles */

.backstop-icon-svg svg {
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
}

.container.body-content {
    width: 95vw;
    padding-top: 10vh;
}

.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 1.1rem;
}

#backgroundBlackout {
    display: none;
    position: fixed;
    top: var(--nav-container-height);
    left: 0;
    height: 95vh;
    background: rgba(0, 0, 0, .45);
    z-index: 888;
}

footer {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.8em;
}

/* Set padding to keep content from hitting the edges */

.body-content {
	padding-left: 15px;
	padding-right: 15px;
}


/* 
   Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/

.dl-horizontal dt {
	white-space: normal;
}



#logoutForm {
    background: none;
    padding: 0;
    border: none;
    display: inline !important;
}

#nav-container {
    background: #2f2f2f;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    padding: 0.2% 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    height: var(--nav-container-height);
}


#brand {
    display: inline-block;
    padding: 20px;
}

#brand img, #brand svg {
    width: 200px;
    /*height: auto;*/
    background: none;
    padding: 0;
    border: none;
    display: inline-block;
    position: absolute;
    top: 6px;
    left: 15px;
    transform: scale3d(1, 1, 1);
}

#hamyphone {
    padding-left: 0;
    font-size: 2em;
    position: relative;
    top: 2.5px;
    color: #fff;
}

#menu-nav {
    display: inline-block;
    text-align: right;
    position: absolute;
    top: 0;
    right: 50px;
}

#menu-nav ul {
	display: inline;
	text-align: right;
	list-style: none;
	background-color: none !important;
}

#menu-nav ul a {
	display: block;
	color: white;
	text-decoration: none;
	font-size: 1.1em;
}

#menu-nav ul li {
    padding: 0 10px;
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Segoe UI', Arial, sans-serif;
}

#menu-nav ul a:hover {
    color: #fb9666;
    border-bottom: 2px solid rgb(255, 0, 0);
}

#menu-nav ul ul {
	display: none;
	position: absolute;
	top: 85%;
	left: -20%;
	padding: 0;
	z-index: 1000;
}

#menu-nav ul ul a:hover {
    color: #fb9666;
    border-bottom: 2px solid rgb(255, 0, 0);
    background: #2f2f2f;
}

#menu-nav ul ul ul {
	top: 0;
	left: 100%;
}

#menu-nav ul li:hover>ul {
	display: block;
}

#menu-nav .menu li>span {
	cursor: pointer;
	display: block;
	color: lightblue;
	text-decoration: none;
	font-size: 1.25em;
	line-height: 1.5em;
}

#menu-nav .menu li>span:hover {
	color: rgb(255, 111, 0);
}

.sub-menu-nav a {
	text-align: left;
	padding: 5px 0;
	width: 200px;
}

.sub-menu-nav > li {
    background: #2f2f2f;
}

.sub-menu-nav>li:nth-child(1) {
	margin-top: 2.5%;
}

.navbar-right {
	padding-top: 10px;
}

/* Alert */

#alertContainer, .alertContainer {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30%;
	padding: 1%;
	text-align: center;
	font-size: 2em;
	border: 1px solid #000;
	border-radius: 5px;
	box-shadow: 1px 1px 4px #000;
	background: #333;
	color: white;
	background: #2b2b2bba;
	backdrop-filter: blur(10px);
	word-break: break-word;
	max-height: var(--max-alert-container-height);
	overflow-y: auto;
	z-index: 1000;
}

.alertContainer input, .alertContainer select, .alertContainer textarea {
	padding: 5px;
	font-size: 16px;
	color: black;
}

.alertContainer a, .alertContainer a:visited, .alertContainer a:hover {
	color: dodgerblue;
}

.alertContainer select {
	max-width: 100%;
}

#msgContainer, .msgContainer {
	background: #2b2b2bba;
	backdrop-filter: blur(10px);
	border-radius: 0;
	padding: 0;
	overflow-y: initial;
	z-index: 999;
}

.msgContainer .row {
	margin-left: 0;
	margin-right: 0;
}

.msgContainer hr {
	border-top: 1px solid white;
}

#msgContainer section, .msgContainer section {
	margin-top: 20px;
}

#msgContainer .window-top, .msgContainer .window-top {
	position: absolute;
	top: -45px;
	cursor: move;
	width: 100%;
	height: 25px;
	border-bottom: 1px solid rgba(0,0,0,0.5);
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	padding: 5px;
	background-color: #ddd;
}

#msgContainer .round, .msgContainer .round {
	height: 16px;
	width: 16px;
	border-radius: 50%;
	border: none;
	margin-right: 6px;
	box-shadow: 1px 1px 2px #000;
	position: absolute;
	right: 5px;
	top: 5px;
}

#msgContainer .round.red, .msgContainer .round.red {
	background-color: red;
}

#msgContainer .content, .msgContainer .content {
	max-height: calc(var(--max-alert-container-height) - 30px);
	overflow-y: auto;
}

#msgContainer .content .msg-content, .msgContainer .content .msg-content {
	padding: 1%;
}

#msgContainer .content .btn-content, .msgContainer .content .btn-content {
	position: relative;
	bottom: 35px;
	padding-top: 20px;
}

.msgContainer textarea.apa-getText {
	width: 100%;
	height: 250px;
	padding: 5px;
	font-size: 1.1em;
}

.msgContainer input.apa-getText {
	width: 100%;
	padding: 5px;
	font-size: 1.1em;
}

#hoverInfoWindow {
    display: none;
    position: fixed;
    z-index: 9999999;
    width: auto;
    min-width: 500px;
    max-width: 1200px;
    background: rgba(33,33,33,0.9);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 1px 2px #7f7f7f, -1px -1px 2px #7f7f7f;
    padding: 10px;
    font-size: 1em;
    word-break: break-all;
}

/* Subview Implementation */

.subviewWindow {
    display: none;
    position: fixed;
    top: 8%;
    left: 0;
    right: 0;
    border: none;
    border-radius: 5px;
    width: 95%;
    max-height: 80%;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #ddd;
    box-shadow: 0 1px 1px 3px rgba(0, 0, 0, 0.2), 1px 0 1px 3px rgba(0, 0, 0, 0.2);
    color: #333;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.25em;
    z-index: 999;
}

.subviewContent {
    margin-top: 4%;
    height: 80%;
    overflow-y: auto;
    font-weight: 700;
}

.subviewTable {
    background: #fff;
    color: black;
    width: 100%;
    padding: 0.5em 0;
    overflow-y: auto;
    font-weight: bold;
    font-size: 16px;
    text-align: left;
}

.subviewTable thead tr th {
    padding: 0.5em;
    box-sizing: border-box;
    border-bottom: solid 3px #ddd;
    border-top: solid 1px #ddd;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    background: #357ebd;
    color: white;
    font-weight: 100;
    font-size: 1em;
}

.subviewTable > tbody > tr {
    box-shadow: 1px 1px 2px #fff;
}

.subviewTable tbody tr td {
    padding: 0.5em;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-bottom: solid 3px #ddd;
    border-top: solid 1px #ddd;
    font-size: 1.1em;
}

.subviewX {
    position: absolute;
    top: 1%;
    right: 0.5%;
    font-size: 1.8rem;
    border: none;
    border-radius: 5px;
    background: transparent;
    color: white;
    outline: none;
    width: 1.2em;
}

.subviewX:hover {
    color: red;
}

.subviewX span {
    position: relative;
    top: 0;
    left: 0;
}

#customerSubview .subviewX {
    background: #ff0000cc;
    backdrop-filter: blur(10px);
}

#customerSubview .subviewX:hover {
    color: white;
    background: #cd0303cc;
    backdrop-filter: blur(10px);
}

/* Sticky Header and Table Styles */

table.sticky-headers {
    position: relative !important;
}

table.sticky-headers tr th {
    position: sticky !important;
    top: 0px !important;
    z-index: 3 !important;
}

.widget table.sticky-headers tr th {
    top: -26px !important;
}

.btn.btn-sm {
    font-size: 1.1rem;
}

.loadingWrapper {
    position: absolute;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    background: rgba(0, 0, 0, .45);
    z-index: 999;
    display: none;
}

#subviewloaderWrapper {
    position: absolute;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    background: rgba(0, 0, 0, .45);
    z-index: 999;
    display: none;
}

.loaderTextWrapper {
    color: black;
    background: #fff;
    float: none !important;
    margin: 0 auto;
    position: fixed;
    top: 22.5%;
    left: 29%;
    box-shadow: 5px 9px 20px #262525;
    padding: 2% 0;
}

/* Loading Block */
.loading-block {
    display: inline-block;
    height: 32px;
    width: 32px;
    vertical-align: middle;
    margin-top: -6px;
    padding: 0;
    background-repeat: no-repeat;
    background-image: url(/img/loadingblock.gif);
    background-position: top;
    background-size: contain;
}

.loadingMessage {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 2.5em;
    opacity: 1;
}

.purple-btn {
    background: rebeccapurple;
    color: white;
}

.purple-btn:hover {
    background: purple;
    color: white;
}

#screenPop, .screenPop {
    display: none;
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    text-align: left;
    padding: 10px;
    font-size: 1.4em;
    z-index: 999999999;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 1px 1px 4px #000;
    background: rgb(50, 50, 50);
    color: #fff;
}

.screenPop .window-top {
    text-align: center;
    padding: 2%;
}

.screenPop section {
    max-height: 77vh;
    overflow-y: auto;
    padding: 1%;
}

.seagreen-highlight {
    background: seagreen;
    color: white;
}

.sp-header {
    font-weight: bold;
}

.sp-incoming-call {
    font-size: 1.5em;
    font-weight: bold;
    font-style: italic;
}

.btn {
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14), 0 1px 7px 0 rgba(0,0,0,0.12), 0 3px 1px -1px rgba(0,0,0,0.2);
    border-radius: 0;
    transition: background-color linear .4s;
}

.bold-text {
    font-weight: bold;
}

.vertical-center {
    margin: 0;
    position: relative;
    top: 50%;
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.vertical-center-stacked {
    margin: 0;
    position: relative;
    top: 50%;
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}

.divpreloader, .divpreloader_spin,
.divpreloader_spin:before, .divpreloader_spin:after,
.divpreloader_inner {
    position: absolute;
}

#divpreloader {
    position: fixed;
    top: var(--nav-container-height);
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: rgba(0,0,0,0.5);
}

#divpreloader_spin {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 400px;
    width: 400px;
    margin: -200px 0 0 -200px;
    border: 3px solid transparent;
    border-top: 1em solid dodgerblue;
    border-bottom: 1em solid dodgerblue;
    border-radius: 50%;
    z-index: 99999999999;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#divpreloader_spin:before {
    content: "";
    position: absolute;
    top: 3%;
    bottom: 3%;
    left: 3%;
    right: 3%;
    z-index: 99999999999;
    border: 5px solid transparent;
    border-top-color: red;
    border-radius: 50%;
    -webkit-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    -o-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#divpreloader_spin:after{
    content: "";
    position: absolute;
    top: 7.5%;
    bottom: 7.5%;
    left: 7.5%;
    right: 7.5%;
    border: 5px solid transparent;
    border-top-color: green;
    z-index: 99999999999;
    border-radius: 50%;
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

#divpreloader_inner {
    position: absolute;
    left: 45%;
    top: 44%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4em;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

#divpreloader_inner img {
    height: 4rem;
}

#divpreloader_text {
    font-size: 0.4em;
    position: absolute;
    left: 25%;
}

/*Keyframes for spin animation */
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#section_loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999999999999;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
}

#section_loader img {
    position: absolute;
    height: 30%;
    width: 15%;
    display: block;
    margin: -10% 0 0 -10%;
    top: 50%;
    left: 50%;
}

/* Combo Boxxr styles */
.cbxr[readonly] {
    cursor: pointer;
    background-color: white;
}

.cbxr-btn {
    display: none;
    position: absolute;
    margin-top: 0.25em;
    margin-left: -1em;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 2px;
    background: #357ebd;
    color: #fff;
    font-size: 2em;
    padding: 2px 0 2px 0;
    height: 0.75em;
    line-height: 0.5em;
    z-index: 1;
}

.cbxr-input {
    position: relative;
    z-index: 0;
}

.cbxr-list {
    display: none;
    list-style-type: none;
    text-align: left;
    position: absolute;
    font-size: 1em;
    z-index: 9999;
    background: #fff;
    color: #000;
    padding: 5px;
    margin-top: 0;
    border: 1px solid rgba(0,0,0,0.8);
    border-radius: 0 0 5px 5px;
    height: 18em;
    width: 350px;
    overflow-y: auto;
}

.cbxr-list li {
    cursor: pointer;
    padding: 5px;
}

.cbxr-list li:hover {
    background-color: #357ebd;
    color: #fff;
}

.cbxr-selected {
    background-color: #357ebd;
    color: #fff;
}

.highapr, .equity {
    font-weight: bold;
    color: #1ED037;
}

.emoji {
    font-family: apple color emoji, segoe ui emoji, noto color emoji, android emoji, emojisymbols, emojione mozilla, twemoji mozilla, segoe ui symbol;
}

.hover-info {
    cursor: help;
}

/* Animations */

.make-flash {
    animation: flash linear 1.2s infinite;
}

/* Colors and Highlights */

.purp-drank-highlight {
    background: rgb(147,112,219) !important;
    color: white !important;
}

.gray-highlight {
    background: lightgrey !important;
}

.red-color {
    color: red !important;
}

.lightred-color {
    color: #ff5a5a !important;
}

.orangered-color {
    color: orangered !important;
}

.yellow-highlight-ni {
    background: yellow !important;
    color: black !important;
}

.red-highlight-ni {
    background: firebrick !important;
    color: white !important;
}

.red-highlight-ni a:not(.btn) {
    color: #05c6ff !important;
}

.red-highlight {
    background: firebrick !important;
    color: white !important;
}

.cream-highlight {
    background: #fffdd0 !important;
}

.red-shadow {
    box-shadow: 1px 1px 4px red, -1px 1px 4px red;
}

.lightgreen-color {
    color: lightgreen !important;
}

.limegreen-color {
    color: limegreen !important;
}

.green-color {
    color: green !important;
}

.darkgreen-color {
    color: darkgreen !important;
}

.green-highlight {
    background: green !important;
    color: white !important;
}

.lightgreen-highlight {
    background: lightgreen !important;
    color: black !important;
}

.yellow-highlight {
    background-color: yellow !important;
    color: black !important;
}

.white-highlight {
    background-color: white !important;
    color: black !important;
}

.blue-color {
    color: blue;
}

.lightblue-color {
    color: lightblue;
}

.lightskyblue-color {
    color: lightskyblue;
}

.blue-highlight {
    background-color: lightblue !important;
    color: black !important;
}

.lightskyblue-highlight {
    background-color: lightskyblue !important;
    color: black !important;
}

.pastelred-highlight {
    background: #ffb5b5 !important;
    color: black !important;
}

.purp-drank-color {
    color: rgb(147,112,219) !important;
}

.dodgerblue-color {
    color: dodgerblue !important;
}

.blue-highlight:hover {
    color: black !important;
}

.white-color {
    color: white !important;
}

.btn-purp-drank {
	background-color: rgb(105, 64, 189);
	color: white;
}

.btn-purp-drank:visited, .btn-purp-drank:focus, .btn-purp-drank:hover, .btn-purp-drank:active {
	background-color: rgb(82, 50, 148);
	color: white;
}

.btn-marjorelle-blue {
	background-color: var(--color-majorelle-blue);
	color: white;
}

.btn-marjorelle-blue:visited, .btn-marjorelle-blue:focus, .btn-marjorelle-blue:hover, .btn-marjorelle-blue:active {
	background-color: rgb(84, 46, 161);
	color: white;
}

.btn-deep-blue {
	background-color: #0c12e0;
	color: white;
}

.btn-deep-blue:visited, .btn-deep-blue:focus, .btn-deep-blue:hover, .btn-deep-blue:active {
	background-color: #0308c3;
	color: white;
}

.btn-pink {
	background-color: rgb(222, 94, 216);
	color: white;
}

.btn-pink:visited, .btn-pink:focus, .btn-pink:hover, .btn-pink:active {
	background-color: rgb(205, 76, 199);
	color: white;
}

.f9-keypad-btn {
    width: 45px;
    height: 40px;
    margin-bottom: 4px;
    margin-right: 4px;
}

.cursor-copy, .copy-text {
    cursor: copy;
}

.maps-address {
    cursor: pointer;
}

.ui-timepicker-container.ui-timepicker-standard {
    z-index: 99999 !important;
}

#popUnderNavError {
    display: none;
    position: fixed;
    top: calc(var(--nav-container-height) + -1px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: red;
    color: white;
    font-size: 1.5em;
    border: 1px solid #0009;
    box-shadow: 1px 1px 4px #ff0000;
    padding: 10px;
}

.inline-backstop-img {
    height: 1em;
}

.btn.in-past, .btn.is-cancelled {
    opacity: 0.5;
}

.link-like {
    cursor: pointer;
    color: lightskyblue;
    text-decoration: underline;
}

.link-like:hover {
    color: lightblue;
}

#__myCellularOutboundNumberContainer {
    display: block;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

#__myCellularTargetNumberContainer {
    display: block;
    position: absolute;
    top: 50%;
    left: 29%;
    transform: translateY(-50%);
}

.calendar-group::before {
    content: "🗓️";
    display: block;
    width: 1em;
    height: 1em;
    position: absolute;
    top: 65%;
    right: 30px;
    transform: translateY(-50%);
    color: black;
    z-index: 99999;
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}


@keyframes maximizeScriptSubview {
    to {
        top: 9%;
        height: 89%;
        max-height: 89%;
    }
}

@keyframes minimizeScriptSubview {
    to {
        top: unset;
        bottom: 2%;
        max-height: unset;
        height: 38%;
    }
}

@keyframes blinkingText {
    0% {
        color: white;
        background: red;
    }


    75% {
        color: black;
        background: transparent;
    }

    99% {
        color: black;
        background: transparent;
    }

    100% {
        color: white;
        background: red;
    }
}

@keyframes blinkingElement {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}