/*ÐÐ°Ñ‡Ð°Ð»Ð¾ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸*/
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  /* font-family: "Montserrat", Verdana, Arial; */
  font-family: sans-serif;
  font-size: 15px;
  position: relative;
}

/* WATERMARK */
.watermark {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.2;
  pointer-events: none;
}

img {
  /*width: 100%;*/
  /* height: 100%; */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

select {
  width: 100%;
  padding: 6px 5px;
  border-radius: 4px;
  border: 1px solid #c4c4c4;
}

a:hover,
a:focus,
a:active,
a:visited,
a:link {
  text-decoration: none;
}

.body {
  height: 100vh;
  width: 100vw;
  overflow-y: hidden;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.component__modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
.component__modal-content {
  padding: 20px;
  border-radius: 10px;
}
.logo-box {
  width: 100%;
  height: 50pt;
  background-color: #e4e4e4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  position: relative;
  /*z-index: 20;*/
}

.head-btn {
  font-weight: 600;
  font-size: 15pt;
  margin: 0 50px 0 0;
  cursor: pointer;
}

a {
  color: black;
}

a:hover {
  color: black;
}

#forms {
  touch-action: manipulation;
  webkit-overflow-scrolling: touch;
  overflow-y: hidden;
  overflow-x: hidden;
  position: relative;
  flex: 1;
  background: white;
  min-width: 1000px;
/*  z-index: 10;*/
}

#forms:-webkit-full-screen {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

#forms:-moz-full-screen {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

#forms:-ms-fullscreen {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

#forms:fullscreen {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

#forms > div {
  height: 100%;
  width: 100%;
  visibility: hidden;
}

#forms > div > div {
  padding: 10px;
  width: 100%;
  height: 100%;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
}

.form-group {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.form-control {
  font-size: 12pt;
}

.form-btn-prim {
  min-width: 60pt;
}

.container-fluid {
  padding: 0;
}

.row {
  margin: 0;
}

ul {
  margin-bottom: 0;
  list-style-type: none;
}

.form-content {
  height: calc(100% - 50px);
}

.modal-head i {
  margin: 0 5pt;
}

.modal-head .title {
  margin-left: 20px;
  flex-grow: 1;
  text-align: center;
}

.modal-head {
  height: 25pt;
  background-color: #fd7e14;
  border-radius: 5pt 5pt 0 0;
  padding: 0 5pt;
  color: white;
}

.modal-body {
  max-height: 60vh;
  overflow-y: auto;
  padding: 10px;
}

.connect-img {
  background-image: url(../img/connect.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 35px;
  height: 35px;
  display: none;
}

.form-group {
  position: relative;
  padding-left: 35px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.fw {
  width: 100%;
}

.mxw-100vmin {
  max-width: 100vmin;
}

.vert-fw {
  width: 100%;
  margin-bottom: 10px;
}

.vert {
  margin-bottom: 10px;
}

.pt {
  padding-top: 10px;
}

.pd-10 {
  padding: 10px;
}

.nopadding {
  padding: 0;
}

.nomargin {
  margin: 0;
}

.left-center {
  display: flex;
  align-items: center;
}

.right-center {
  display: flex;
  align-items: center;
}

.space-around {
  display: flex;
  justify-content: space-around;
}

.space-around-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.space-between {
  display: flex;
  justify-content: space-between;
}

.space-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-fe {
  align-items: flex-end;
}

.relative {
  position: relative;
}

.bottom {
  position: absolute;
  bottom: 0;
}

.h-100 {
  height: 100%;
}

.end-center {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.start-center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.center-start {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.fg-1 {
  flex-grow: 1;
}

.overflow-y-auto {
  overflow-y: auto;
}

.wrap {
  display: flex;
  flex-wrap: wrap;
}

.fl {
  display: flex;
}

.fd-c {
  flex-direction: column;
}

.fd-r {
  flex-direction: row !important;
}

.jc-sa {
  justify-content: space-around;
}

.jc-c {
  justify-content: center;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.w-25 {
  width: 25px;
}

.bold {
  font-weight: bold;
}

.modal-load {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  /*z-index: 1300;*/
  background: rgba(255, 255, 255, 0.6);
  margin-left: -10px;
  margin-top: -10px;
}

.modal-load-fixed {
  position: absolute;
  width: 100%;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  height: 100%;
  /*z-index: 1300;*/
  z-index: 5;
  background: rgba(255, 255, 255, 0.6);
  /* top: 150px; */
  /* left: 0; */
  /* align-items: center; */
}

.spinner-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #afeeee;
  border-top: 3px solid #6ac0f3;
  border-radius: 50%;
  animation: rotation 0.8s ease infinite;
  -webkit-animation: rotation 0.8s ease infinite;
  -moz-animation: rotation 0.8s ease infinite;
}

.modalWindow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: #0000006b;
  display: flex;
}

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

  to {
    transform: rotate(360deg);
  }
}

.button-box {
  text-align: center;
}

.button {
  height: 7vh;
  min-height: 35px;
  border-radius: 8px;
  background-color: #005766;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 12pt;
}

.button-text {
  color: #fff;
  font-size: 16px;
  margin: 0 auto;
}

.search {
  display: flex;
  width: 100%;
  justify-content: center;
}

.title-product {
  font-size: 14px;
  color: #5f5f5f;
  font-family: cursive;
  margin-bottom: 15px;
  font-weight: 500;
}

webkit-input-placeholder {
  color: #a5a5a5;
}

.form-header {
  width: 100%;
  height: 30pt;
  background-color: #0b484c;
  color: white;
  font-size: 15pt;
}

.form-body {
  width: 100%;
  /*height: calc(100% - 50pt);*/
  position: relative;
  padding: 0 10px;
}

.dark-button {
  display: table;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background-color: #288feb;
  text-decoration: none;
  margin: 5px;
}

.dark-button i {
  padding: 4px 5px;
}

.dark-button a {
  color: white;
  text-decoration: none;
}

.secondary-button {
  background: #afafaf;
}

.warning-button {
  background: #ff6b6b;
}

.light-button {
  color: #333;
  background-color: #fff;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  letter-spacing: 1px;
  border: none;
  text-transform: uppercase;
  display: table;
  padding: 0 15px;
  font-size: 20px;
  font-weight: bold;
  line-height: 50px;
  border-radius: 7px;
  cursor: pointer;
}

.btn-anim:hover {
  color: #fff;
  background: #f45e58;
}

.block-panel {
  background-color: #f5f5f5;
  border-radius: 10px;
}

.title-big {
  font-size: 40px;
}

.mobile-logo {
  display: none;
}

.title-med {
  font-size: 30px;
}

.main-bkg {
  background-color: #288feb;
}

.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
}

.main-height {
  display: flex;
  align-items: center;
}

.footer-bkg {
  background-color: #ccc;
  /* height: 50px; */
}

.title-logo {
  color: #fff;
  font-weight: bolder;
  font-size: 22pt;
  display: flex;
  justify-content: flex-start;
}

.btn-box {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
}

.remove {
  background: grey !important;
}

.obj-btn:hover {
  filter: brightness(80%);
}

.head .btn-box {
  justify-content: space-between;
  padding: 0 0 20px;
}

.obj-btn {
  color: white;
  background-color: #eb6822;
  padding: 10px 20px;
  min-width: fit-content;
  height: fit-content;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
}

.content-outer-box {
  display: flex;
  background-color: #00000061;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 0px !important;
  /*z-index: 100;*/
}

.content-inner-box {
  border: #bbbbbb 1px solid;
  color: black;
  background-color: white;
  border-radius: 5pt;
  width: 60%;
  height: 80%;
  min-width: 600px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: 0px !important;
  position: relative;
}

.content-box {
  border: #bbbbbb 1px solid;
  color: black;
  background-color: white;
  border-radius: 5pt;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0px !important;
  position: relative;
  /*z-index: 100;*/
}

.content-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.content-body {
  width: 100%;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.content-body ul {
  padding: 10px;
  overflow-y: auto;
}

.content-body li {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 10px;
  background-color: #f1f1f1;
  align-items: center;
}

ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-item {
  width: 100%;
  display: grid;
  grid-template-columns: 106pt 1fr;
  gap: 10px;
  align-items: center;
}

.game-item .object-fit {
  object-fit: cover;
}

.game-item img {
  width: 106pt;
  height: 60pt;
}

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

.no-items {
  text-align: center;
  font-size: 15pt;
  color: silver;
}

.obj-btn .remove {
  margin: 0 0 0 10px;
  background-color: #898989;
}

.form-group-iconed {
  display: flex;
  align-items: center;
  margin-bottom: 10pt;
}

.form-group-iconed i {
  width: 5%;
}

.actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

#formReg .dark-button {
  margin: 0;
  width: 40%;
}

.modal-form {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
  background-color: #15252e;
  color: white;
  height: 100%;
  /* height: 50pt !important; */
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.footer__item-title {
  text-align: center;
}
.footer__item div {
  margin-bottom: 10px;
}
.footer__item div:last-child {
  margin-bottom: 0;
}
.footer__item-bottom {
  display: flex;
  justify-content: center;
}
/* .footer__item-bottom span {
    flex: 1;
} */
.footer__item-bottom span:last-child {
  text-align: right;
}
.foot-logo {
  font-size: 16pt;
  font-weight: bold;
}
.footer__item-middle .week__days {
  /* color: green; */
  margin-right: 15px;
}
.footer__item-bottom .weekends {
  margin-right: 10px;
}
.over-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
}

.div-renderer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.canvas {
  position: relative;
}

canvas {
  transition: opacity 0.3s;
}

.messageReg {
  color: red;
  text-align: center;
}

.divMessageReg {
  color: red;
  text-align: center;
}

.img-edit-setting {
  height: 50px;
  width: 50px;
  background-size: cover;
  background-position: center;
}

.highlight {
  background-color: #ff8100b8;
  border-radius: 5px;
  color: white;
}

@font-face {
  font-family: Pompadur;
  /* Имя шрифта */
  src: url(fonts/pompadur.ttf);
  /* Путь к файлу со шрифтом */
}

.header {
  font-size: 24px;
  font-weight: 600;
}

.unit-label {
  margin-top: -10pt;
  padding: 2px 5px;
  font-size: 10pt;
  color: lime;
  /*background: rgb(0 0 0 / 12%);
    border-radius: 3px;*/
}

.target-label {
  filter: drop-shadow(1px 1px 1px black);
  margin-top: -11pt;
  padding: 2px 5px;
  font-size: 12pt;
  color: white;
  /*background: rgb(0 0 0 / 12%);*/
  /*border-radius: 3px;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.target-label img {
  width: 30pt;
  color: blue;
}

.target-label div {
  text-align: center;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #eb6822;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

.modal-footer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.header-buttons {
  display: flex;
}

.header-caption { 
  font-size: 16pt;
  font-weight: bold;
}

/*-------VUE FORMS MANAGER----------------------------------*/
.vue-window {
  z-index: 3;
  position: absolute;
  pointer-events: none; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vue-modal-background {
  pointer-events: all;
  height: 100%;
  background: #00000060;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vue-modal-form {
  height: fit-content;
  width: fit-content;
  border: #bbbbbb 1px solid;
  color: black;
  background-color: white;
  border-radius: 5pt;
  display: flex;
  flex-direction: column;
  padding: 0px !important;
  position: relative;
}

.vue-modal-form-body {
  padding: 15px;
}

.ImageWindow__image-window {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  /* z-index: 10; */
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.ImageWindow__image-window img {
  width: auto;
  height: 100%;
}

.ImageWindow__image-window.fade-in {
  opacity: 1;
}

.ImageWindow__image-window.fade-out {
  opacity: 0;
}

.blink__class {
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}



