
div.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 45px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

#map {
    position: relative;
    width: 1250px; /* Ширина карты: 50 * 50px + 1px * 49 (отступы) */
    height: 1000px; /* Высота карты: 50 * 50px + 1px * 49 (отступы) */
    display:grid;
}

#map.editing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: linear-gradient(to right, black 1px, transparent 1px), linear-gradient(to bottom, black 1px, transparent 1px); Сетка обыч линии */
    background-image: radial-gradient( ellipse, var(--text-color) 3px, transparent 1px) ; /* Сетка кругляш */
    background-size: 50px 50px;
    pointer-events: none; /* Сетка не должна мешать перетаскиванию */
    border-radius: 20px;
}

.workstation {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color-light);
    border: 1px solid var(--primary-color);
    border-radius: 40%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    box-sizing: border-box;
    box-shadow: 20px;
    color: var(--text-color)
}

#addComputerBtn, #editModeBtn, #saveBtn, #PlusMap, #MinusMap {
    margin-top: 15px;
    padding: 10px 30px;
    background-color:  var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 15px;
    pointer-events: all;
    height: 100%;
    width: 100%;
    font-size: 20px;
    font-family: "Verdana", sans-serif;;
}

#addComputerBtn:active, #editModeBtn:active, #saveBtn:active, #PlusMap:active, #MinusMap:active {
    background-color: #06b;
}

/* Текст и иконошки */
.legendatext {
  margin-left: 0px;
  position: absolute;
  justify-content: right;
  align-items: center;
  margin-top: 10px;
  font-size: 30px;
  padding: 1px 10px;
  color: var(--text-color);
  font-family: "Verdana", sans-serif;
  text-wrap: nowrap;
} 
.selecttext{
  align-items: center;
  margin-top: 28px;
  margin-bottom: 0px;
  margin-left: 16px;
  position: absolute;
  font-family: "Verdana", sans-serif;
  text-wrap: nowrap;
  font-size: 20px;
  color: var(--text-color);
  padding: 1px 2px;
}
div.icononline {
    display: flex;
    color: rgb(66, 194, 141);
    font-size: 35px;
    align-items: center;
    justify-content: left;
    margin-top: 15px;
    margin-bottom: 15px;
}
div.iconoffline {
    display: flex;
    color: rgb(117, 128, 123);
    font-size: 35px;
    align-items: center;
    justify-content: left;
    margin-top: 15px;
    margin-bottom: 15px;
}
div.iconsupport {
    display: flex;
    color: rgb(165, 117, 184);
    font-size: 35px;
    align-items: center;
    justify-content: left;
    margin-top: 15px;
    margin-bottom: 15px;
}
div.iconupdate {
    display: flex;
    color: rgb(176, 189, 58);
    font-size: 35px;
    align-items: center;
    justify-content: left;
    margin-top: 15px;
    margin-bottom: 15px;
}
div.iconleft {
    display: flex;
    color: rgb(153, 78, 78);
    font-size: 35px;
    align-items: center;
    justify-content: left;
    margin-top: 15px;
    margin-bottom: 15px;
}
div.iconconsol {
    display: flex;
    color: rgb(80, 189, 223);
    font-size: 35px;
    align-items: center;
    justify-content: left;
    margin-top: 15px;
    margin-bottom: 15px;
}
div.iconvip {
    display: flex;
    color: rgb(121, 127, 212);
    font-size: 35px;
    align-items: center;
    justify-content: left;
    margin-top: 15px;
    margin-bottom: 15px;
}
.iconclassic{
  color: var(--primary-color);
  color: #418fe9;
  font-size: 50px;
}
.buttonicon{
  cursor: pointer;
  padding-top: 11px;
  margin-top: 10px;
  margin-left: 160px;
  align-items: center;
  justify-content: left;
}
.buttonicon2{
  cursor: pointer;
  padding-top: 11px;
  margin-left: 18px;
  align-items: center;
  justify-content: left;
}
.burgerfilters{
  cursor: pointer;
  padding-top: 16px;
  margin-left: 990px;
}
.burgerfilters2{
  cursor: pointer;
  padding-top: 16px;
  margin-left: 8px;
}
.customcheck-div {
  margin-top: 10px;
  margin-left: 10px;
}
.buttclear {
  background-color: var(--primary-color);
  border-radius: 15px;
  border: 0;
  color: #eee;
  cursor: pointer;
  font-size: 20px;
  height: 50px;
  text-align: center;
  width: 370px;
  font-family: "Verdana", sans-serif;;
}
  
.buttclear:active {
  background-color: #06b;
}

.custom-font {
  font-size: 20px;
  font-family:"Verdana", sans-serif;
  text-wrap: nowrap;
}

.custom-fontnumber {
  font-size: 20px;
  font-family:"Verdana", sans-serif;
  margin-left: 10px;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.custom-checkbox+label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:checked+label::before {
  border-color: #0b76ef;
  background-color: #0b76ef;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
  border-color: #b3d7ff;
}

/* стили для активного состояния чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active+label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox:focus+label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked)+label::before {
  border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled+label::before {
  background-color: #e9ecef;
}

.custselect {
  appearance: none;
  padding: 4px 12px;
  width: 90px;
  height: 30px;
  font-size: 15px;
  background: var(--primary-color);
  background-repeat: no-repeat;
  border: none;
  outline: none;
  border: 2px solid var(--primary-color);
  border-radius: 0.4rem; 
  color: var(--text-title);
  font-family: "Verdana", sans-serif;;
}
 select option {
  font-size: 16px;
  background: var(--primary-color);
  color: var(--text-title);
  font-family: "Verdana", sans-serif;;
 }

 /* картошки */
 
.cardmap {
  font-weight: 300;
  font-family: "Verdana", sans-serif;
  transition: all 0.25s ease;
  position: sticky;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 0fr 0fr 0fr;
  grid-gap: -1px;
  grid-template-areas: 
  "a a a a"
  "b . c c"
  "b . c c";
  width: 514px;
  margin-top: -25px;
}

.cardmap-content {
  position: absolute;
  top: 185px;
  left: 145px;
  min-height: 46%;
  min-width: 60%;
  box-shadow: 0 0 20px var(--shadow-color);
  border-radius: 20px;
}
.cardmap-content2 {
    position: absolute;
    top: 183px;
    left: 742px;
    height: 1000px;
    width: 389px;
    box-shadow: 0 0 20px var(--shadow-color);
    border-radius: 20px;
}
.cardmap-content3 {
    position: absolute;
    top: 55px;
    left: 145px;
    height: 85px;
    width: 1671px;
    box-shadow: 0 0 20px var(--shadow-color);
    border-radius: 20px;
}
.cardmap:last-child {
  margin-bottom: 0px;
}

.cardmap:before {
  height: 0;
  content: "";
  display: block;
  padding-bottom: 0%;
}

.cardmap-label {
  position: absolute;
  top: -2rem;
  left: 0rem;
  background: #089f8ac0;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.7em;
  color: white;
  padding: 0.5em;
  font-family: "Verdana", sans-serif;;
}
.cardmap:nth-child(2) .card-label {
  background: #ef4e7ac0;
} 
.cardmap-graph {
  position: absolute;
  padding: 5px 0px 0px 0px;
  width: 100%;
  height: 100%;
}

.cardmap:nth-child(1) {
  grid-area: a;
  
}

.cardmap:nth-child(2) {
  grid-area: b;
  
}

.cardmap:nth-child(3) {
  grid-area: c;
  
}

.cardmap-title {
  position: absolute;
  left: 1em;
  bottom: 1em;
  color: #d6dbeb;
  z-index: 0;
  font-size: calc(0.8em - 0.1em);
  font-family: "Verdana", sans-serif;;
}

.notification {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 16px;
  box-shadow: 0px 4px 6px var(--shadow-color);
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.notification.show {
  display: block;
  opacity: 1;
}