* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
}

#mask {
	backdrop-filter: blur(3px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 1s;
	z-index: 55555;
}

#mask article {
	display: flex;
	position: relative;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	align-items: center;
	justify-content: center;
}

.w100 {
	width: 100%;
}

.w95 {
	width: 95%;
}

.w80 {
	width: 80%;
}

.tar {
	text-align: right !important;
}

.tac {
	text-align: center !important;
}

.tal {
	text-align: left !important;
}

.dnone,
.show0 {
	display: none !important;
}

.vis0 {
	visibility: hidden !important;
}

.nospace {
	white-space: nowrap !important;
}

.blurr {
	/* filter: blur(1rem); */
	transition: all 1s;
}

.dbs {
	display: flex;
	column-gap: 0.5rem;
	text-align: center;
	align-items: center;
}

.page404 {
	bottom: 10vh;
	font-size: 51vh;
	position: absolute;
	right: 1vw;
	z-index: -1;
}

#viewport {
	display: flex;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.slide {
	position: absolute;
	left: 0;
	top: 0;
	min-height: 100%;
	width: 100%;
}

.hide {
	display: none !important;
}

.webhide {
	display: none !important;
}

.quickform {
	border: 1px solid;
	display: none;
	position: relative;
}

.errfield {
	outline: 2px solid;
}

.br8 {
	border-radius: 8px;
}

/* Form Elements ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

input,
button,
select,
textarea {
	border-radius: 6px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: none;
}

button {
	cursor: pointer;
}

.rowheader select {
	border: 1px solid;
	margin: 0.2em 0 0 -0.3em;
	display: block;
}

/* полупрозрачный блок со скругленными краями и тенями вокруг текста ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.mattblock {
	backdrop-filter: blur(8px);
	border-radius: 8px;
}
/* 
@-moz-document url-prefix() {
	.mattblock {
		background-image: url(i/bg_mc_yurchin_blur.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
		background-size: cover;
		background-blend-mode: darken;
	}

	.oper .mattblock {
		background-image: url(i/bg_mc_sunset_blur.jpg) !important;
	}
} */

/* X CLOSE BUTTON ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.close {
	cursor: pointer;
	display: block;
	position: absolute;
	top: .5rem;
	right: .5rem;
	z-index: 555;
}

.close:before,
.close:after {
	content: " ";
	position: absolute;
}

.close:before {
	transform: rotate(45deg);
}

.close:after {
	transform: rotate(-45deg);
}

/* X CLOSE BUTTON ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* X CLOSE BUTTON ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.plus {
	position: relative;
}

.plus:before,
.plus:after {
	content: " ";
	border: 2px solid;
	border-radius: 2px;
	margin-left: -2px;
	position: absolute;
}

.plus:after {
	transform: rotate(90deg);
}

/* X CLOSE BUTTON ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.bpb:last-child {
	margin: 0;
}

/* TABLE */

.lined tr {
	border-bottom: 1px solid;
}

/* ANIMATIONS */

.loader {
	display: block;
	-webkit-animation: rotation 2s infinite linear;
	animation: rotation 2s infinite linear;
	height: 88px;
	width: 88px;
	border-radius: 50%;
	border-style: solid;
	border-width: 8px;
}

@keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(359deg);
	}
}

/* HEADER and ASIDE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

body {
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-weight: 400;
}

header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-grow: 0;
	width: 100%;
}

header>* {
	align-items: center;
	display: flex;
	flex-grow: 0;
}

.logo {
	height: 68px;
}

header h1 {
	font-weight: 200;
	line-height: 115%;
	white-space: nowrap;
}

header form {
	display: flex;
	gap: 1ex;
	width: 100%;
}

header .rclock {
	justify-content: flex-end;
	flex-grow: 1;
}

header .rclock span {
	height: 2rem;
	margin-left: 1.5em;
}

.icon-exit {
	font-size: 2rem !important;
}

.tooltip {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-items: center;
}

.tooltip .ic-info {
	width: 24px;
	height: 24px;
	background-image: url('/img/info.svg');
	background-size: cover;
}

.tooltip .tooltiptext {
	visibility: hidden;
	transition: visibility 0.3s linear, opacity 0.3s linear;
	width: 15rem;
	text-align: center;
	border-radius: 4px;
	padding: 0.25rem 0.125rem;
	position: absolute;
	z-index: 100;
	top: 140%;
	left: 50%;
	margin-left: -120px;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
}

.tooltip:hover .tooltiptext {
	cursor: default;
	visibility: visible;
}

#badge {
	gap: .5em;
	display: flex;
	overflow: hidden;
	position: relative;
}

#badge section {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	flex-flow: column;
}

#badge img {
	border-radius: 4px;
	height: fit-content;
	transition: all 0.1s;
}

#badge h2 {
	font-weight: 400;
	margin: 0;
}

#badge p {
	margin: 0;
}

#badge #panelarrow {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 99999;
	border-radius: 8px 0;
}

#badge #panelarrow i {
	margin: 0 0 0 0.3em;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.arrow {
	border-style: solid;
	border-width: 0 0.17em 0.17em 0;
	display: inline-block;
	padding: 0.28em;
	transition: all 0.5s;
}

#menu {
	font-weight: 300;
	overflow: hidden;
}

#menu .link {
	cursor: pointer;
}

#menu .topitem {
	border-radius: 4px;
	display: flex;
	align-items: center;
	white-space: nowrap;
	position: relative;
}

#menu .topitem i {
	text-align: center;
}

#menu .menu-title {
	line-height: 1.5rem;
	height: 1.5rem;
}

#menu .topitem:hover,
#menu .topitem:hover i {
	justify-items: center;
	text-align: center;
}

#exitButton2 {
	cursor: pointer;
	display: block;
	position: absolute;
	text-align: center;
}

/* ACCOUNT INFO SECTION ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#popup-wrapper {
	position: absolute;
	top: 0;
	width: 100%;
}

.popup {
	background-image: url(i/kazakhstan-flag.png);
	background-position: center top;
	background-repeat: no-repeat;
	border-radius: 8px;
	margin: 0 auto 11rem;
	position: relative;
	z-index: 88888;
}

/* ACCOUNT INFO SECTION ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	border-radius: 4px;
	height: 20px;
	margin: 0 6px 3px 0;
	vertical-align: bottom;
	width: 20px;
}

/* LISTS PAGE SECTION ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

main {
	padding: 0 1.5rem 1.2rem 0;
}

.menu-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1em;
	position: relative;
	width: 100%;
}

.lists-header {
	align-items: center;
	display: flex;
	font-size: 90%;
	gap: .68vw;
	justify-content: space-between;
	padding: 0 0 1.2em;
}

.lists-header * {
	margin: 0;
}

.lists-header>p {
	margin: 8px;
	height: 2.2em;
}

.lists-header>div {
	display: flex;
	align-items: center;
	gap: .68vw;
}

.lists-header select.bpb {
	cursor: default;
	min-width: 5.1rem;
	padding: 0 .5vw;
	/* -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none; */
}


#change-view {
	white-space: nowrap;
}

.bpb,
.avs {
	cursor: pointer;
	padding: 0.5rem .8vw;
	height: 2.2rem;
}

button.bpb,
input[type="submit"].bpb {
	backdrop-filter: blur(8px);
	white-space: nowrap;
}

.bpb,
.avs {
	border: 1px solid;
}

.avs:hover {
	font-weight: 500;
}

.avs.active {
	border: 1px solid;
}

.container-content {
	width: 100%;
	margin: 0;
}

.rowheader,
.column {
	display: none;
}

.table-view {
	display: table;
	border-collapse: collapse;
	width: 100%;
}

.table-view .row,
.table-view .rowheader {
	display: table-row;
}

.flink {
	max-width: 2rem;
	text-align: center;
}

.fname,
.flink {
	cursor: pointer;
}

.fname .icon-link {
	display: block !important;
	font-size: .68rem;
	left: 18px;
	position: absolute !important;
	top: .5rem;
}

.thumbs-view .column.fname i.icon-link {
	left: auto;
	height: 1.1rem;
	right: 1rem;
	top: 6rem;
	width: 1.1rem;
}

.thumbs-view .column.fname i.icon-link::before {
	font-size: 1.1rem;
}

.table-view .row .fsize {
	text-align: right;
}

.fsize b {
	display: inline-block;
	font-weight: 300;
	text-align-last: left;
	width: 1.4em;
}

.table-view .rowheader {
	display: table-header-group;
	text-align: left;
	font-weight: 300;
}

.table-view .rowheader>.column {
	position: sticky;
	top: 0;
	z-index: 1;
}

.table-view .column {
	display: table-cell;
	padding: 0.5rem;
	position: relative;
	vertical-align: middle;
	white-space: nowrap;
}

.table-view .narrow {
	width: 1em;
}

.table-view .narrow input {
	margin: 0;
}

/* ----------------------------------------------------- */

.thumbs-view {
	display: grid;
	gap: 1ex;
	grid-template-columns: repeat(auto-fill, minmax(15rem, auto));
	justify-content: space-between;
	padding: 1ex .5ex;
}

.thumbs-view .rowheader,
.thumbs-view .column {
	display: none;
	padding: 0;
}

.thumbs-view .row {
	border-radius: 3px;
	display: block;
	font-size: .8rem;
	height: 11rem;
	overflow: hidden;
	padding: 1ex .5ex;
	text-align: center;
	text-overflow: ellipsis;
	width: 15rem;
}

.thumbs-view .row:hover {
	outline: 1px solid;
}

.thumbs-view .fname {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
}

.thumbs-view .fname span {
	overflow-wrap: break-word;
	width: 100%;
}

.thumbs-view .fname b {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 3px 3px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 7rem;
}

.thumbs-view .column.fname i {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 0 0 .5ex;
	height: 7rem;
	width: 15rem;
	position: relative;
}

.thumbs-view .column.fname i::before {
	font-size: 6rem;
}

.thumbs-view .column.fname i.icon-folder::before {
	font-size: 7rem;
}

/* ----------------------------------------------------- */

.list-view>.row {
	display: list-item;
	list-style-type: none;
}

.plate-view {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.plate-view .row {
	flex-basis: 16%;
	word-break: break-all;
}

.list-view .column.fname,
.plate-view .column.fname {
	display: block;
	padding: 0.5rem;
}

.column .arrow {
	margin-left: 0.5em;
}

.fsz120 {
	font-size: 120%;
}

.fsz150 {
	font-size: 150%;
	padding: 0.6rem 0;
	margin-left: 0.3em;
	line-height: 0.3em;
	vertical-align: -30%;
}

.r135 {
	font-size: 80%;
	transform: rotate(45deg);
}

.dragged-content.dragged {
	backdrop-filter: blur(3px);
	outline-style: dashed;
}

.tabbut {
	border: none !important;
	cursor: pointer;
	overflow: hidden;
	outline: none;
}

#fileLocation {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1ex;
	margin: 0;
	padding: 0 0 1em;
}

#fileLocation>span {
	cursor: pointer;
}

#goToHome {
	font-weight: 300 !important;
}

#fileLocation>span:last-child {
	cursor: default;
	font-weight: 500;
	pointer-events: none;
}

#fileLocation>span.locch {
	align-items: center;
	display: flex;
	font-weight: 300 !important;
	gap: 0.5em;
}

/* MODAL ----------------------------------------------------------------------------------- */

.modal {
	display: none;
	backdrop-filter: blur(3px);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 123456789;
}

.modal>section {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
}

.modal .modal-wrapper {
	max-height: calc(100% - 2rem);
	max-width: 96%;
	min-width: 62%;
	position: relative;
	width: fit-content;
}

.modal-content2 {
	min-width: 62%;
	padding: 2rem;
}

.modal-content2 h3 {
	font-size: 1.5rem;
	font-weight: 300;
	margin: 0 0 2rem;
}

.modal-content2 input,
.modal-content2 textarea {
	width: 100%;
	border: 1px solid;
	padding: 0.5rem;
	margin-bottom: 1rem;
}

input.copyLink,
#input-link-date {
	margin-bottom: 0;
}

.modal-content2 button.bpb {
	padding: 0.5rem 1.5rem;
}

#table-modal {
	width: 100%;
}

.modal-content2 h4 input {
	width: auto;
}

.modal-content2 h4 {
	align-items: center;
	display: flex;
	gap: 1em;
	justify-content: center;
	font-weight: 400;
}

.zero-margin {
	margin: 0 !important;
}

#table-log {
	font-size: 0.9rem;
}

.adaptive {
	border: 1px solid;
	border-radius: 6px;
	display: inline-block;
	margin: 1rem 0 0;
	padding: 0 1rem;
	width: 100%;
}

.preview-style {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.preview-style .downloadme {
	cursor: pointer;
	margin: 0;
	text-decoration: underline;
}

.preview-style>div.img-scroll {
	max-height: 40rem;
	overflow: auto;
	width: 100%;
}

.preview-style>div.img-scroll img {
	cursor: zoom-out;
	display: block;
	margin: 0 auto;
}

.modal-flex {
	display: flex;
	justify-content: space-between;
	margin: 0.5rem 0;
}

.lists-wrapper {
	flex-grow: 1;
	position: relative;
}

.lists-content {
	max-height: none;
	overflow: auto;
	padding: 0 0 1ex;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}

.lists-content::-webkit-scrollbar-track {
	border-radius: 16px;
}

.scroll-table {
	max-height: 70vh;
	overflow-x: auto;
	overflow-y: scroll;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}

#context-menu {
	display: none;
	position: absolute;
	z-index: 20;
}

.context-menu-content {
	padding: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5rem;
	border: 1px solid;
	border-radius: .5rem;
	width: fit-content;
}

#context-menu>div.context-menu-content>div {
	border-radius: .25rem;
	display: flex;
	gap: .5rem;
	padding: .5rem .5rem .5rem .25rem;
}

#context-menu>div.context-menu-content>div>i {
	justify-items: center;
	text-align: center;
	width: 28px;
}

#context-menu>div.context-menu-content>div:hover {
	cursor: pointer;
}

.dynamic-context-menu.active {
	cursor: context-menu;
}

.blocker {
	display: block !important;
}

#toast {
	display: none;
	position: fixed;
	text-align: center;
	width: max-content;
	bottom: 5rem;
	right: 40%;
	padding: .8em 2em;
	border-radius: 0.3rem;
	font-size: 18px;
	transition: transform ease-in-out 1s;
	z-index: 999;
}

#toast.show {
	display: block;
	transform: translate(40%);
}

.avs {
	display: inline-block;
	height: 2.2rem;
}

.plate-view .column.fname i {
	font-size: 5.5em;
	display: block;
	text-align: center;
	padding: 0.1em 0 0.1em;
}

.plate-view .column.fname {
	text-align: center;
	height: 170px;
	display: -webkit-box;
	line-clamp: 4;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow-y: hidden;
	margin-bottom: 1em;
}

.fcrdate {
	width: 10rem;
}

.deny {
	cursor: not-allowed;
}

button.bpb:disabled,
button.bpb:disabled:hover {
	border: 1px solid;
	cursor: not-allowed;
}

button.bpb>i {
	min-width: 1.5rem;
}

#change-view>span {
	display: inline-block;
}

.buttblock {
	gap: 0 !important;
}

.buttblock button {
	border-radius: 0;
	margin-right: -1px;
}

.buttblock button:first-child {
	border-radius: 6px 0 0 6px;
}

.buttblock button:last-child {
	border-radius: 0 6px 6px 0;
}

.buttblock button:hover {
	z-index: 999;
}

.avs:last-child {
	margin-right: 1em;
}

.table-view .column.flink>button {
	border: none;
	background: none;
}

.table-view .column.fname i,
.table-view .column.path i {
	display: inline-block;
	text-align: center;
	vertical-align: sub;
	width: 24px;
}

.table-view .column.fname i {
	margin-right: 0.8ex;
}

.rowheader {
	font-size: 90%;
}

.form1>* {
	margin: 0.5rem 0;
	border-radius: 4px;
	padding: 0.8rem;
}

#container-folders>.row:hover {
	cursor: pointer;
}

#upload-file-list {
	border: 1px solid;
	border-radius: 4px;
	padding: 0.5rem;
	margin-bottom: 2rem;
	max-height: 21rem;
	overflow-y: scroll;
}

#upload-file-list ol li {
	margin: 1em 0;
}

#upload-file-list span {
	margin-left: 1rem;
}

.clearFile.icon-times {
	cursor: pointer;
	font-size: 1.8ex;
	padding: 0.5ex;
	vertical-align: middle;
}

.fieldset-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding: 0.5rem;
	grid-template-areas: "user pass qr";
}

.setting-qr { grid-area: qr;}
.setting-user { grid-area: user;}
.setting-pass { grid-area: pass;}

.fieldset-grid fieldset.setting-form {
	width: 100%;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #fff5;
}

.fieldset-grid fieldset.setting-form > legend {
	font-weight: 500;
}

.setting-form {
	border: 1px solid;
	border-radius: 7px;
	display: flex;
	flex-direction: column;
	width: 50%;
}

.input-form {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}

.setting-form>* {
	margin-top: 0.5rem;
}

.input-form input {
	border: none;
	padding: 0.5rem;
}

.input-form label {
	display: flex;
	flex-direction: column;
	row-gap: .5rem;
}

.disable {
	cursor: wait;
	opacity: 0.5;
	pointer-events: none;
}

/* SEARCH ------------------------------------------------- */

#search_form {
	font-size: 20px;
	margin-right: 2em;
}

#search_form input,
#search_form button {
	border-radius: 6px;
	border: 1px solid;
	padding: 0.5rem;
	height: 2.2rem;
}

#querystring {
	width: 22vw;
}

/* Mobile ------------------------------------------------- */

.fix-price {
	margin: 11rem auto 5rem;
	max-height: 100vh;
	max-width: 62vw;
	min-width: 688px;
	padding: 0;
	position: relative;
}

.fix-price .lists-header {
	justify-content: end;
	align-items: baseline;
}

.closebtn,
#slide-menu,
.dropbtn,
.menubtn,
.dropmenu,
.dropmenu-content {
	display: none;
}

.overlay-content,
.overlay,
.dropdown-content {
	display: contents;
}

#exitButton {
	cursor: pointer;
}

#qr-code-secret {
	font-weight: 500;
	font-style: italic;
}

#qr-result-section {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Mobile ------------------------------------------------- */

/* Костыли костылики (((((((((((((((((((((((((((((((((((((((((( */

#fileLocation .icon-user {
	font-size: 1.2rem;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

:root {
  --input-glow-color: #09f;
  --mattblock-bg-color: rgba(21, 39, 68, 0.9);
}

/* Подсвеченный fieldset */
.highlight {
    border: 2px solid var(--input-glow-color) !important;
    background-color: var(--mattblock-bg-color);
    animation: glowBorder 2s ease-in-out infinite;
}

/* Кнопка с мягкой анимацией */
.highlight button#updateAuthCode {
	background-color: var(--input-glow-color);
    border: none;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 0 10px rgb(0 153 255 / 50%);
    animation: glowButton 2s ease-in-out infinite;
}

/* Анимации свечения */
@keyframes glowBorder {
  0%   { box-shadow: 0 0 8px rgba(0, 153, 255, 0.3); }
  50%  { box-shadow: 0 0 16px rgba(0, 153, 255, 0.7); }
  100% { box-shadow: 0 0 8px rgba(0, 153, 255, 0.3); }
}

@keyframes glowButton {
  0%   { box-shadow: 0 0 8px rgba(0, 153, 255, 0.4); }
  50%  { box-shadow: 0 0 14px rgba(0, 153, 255, 0.8); }
  100% { box-shadow: 0 0 8px rgba(0, 153, 255, 0.4); }
}

