.canvas1-block {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: #451631;
}
.canvas {
  width: 100%;
}
.canvas1 {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  cursor: grab;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .3s ease-in-out;
  display: flex;
  align-items: center;
}

.content.active {
  opacity: 1;
}

.content img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
}

.loading {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 15px;
  display: none;
}
.loading span {
  font-weight: bold;
}
.form-check-inline {
  margin-right: 8px;
}
input.form-control {
  padding: 6px 6px;
}
.input-group .small-input {
  width: 45px;
}
.button-two-lines {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 3px 10px;
  line-height: 1.2;
}
.btn-first-line {
  font-size: 14px;
}
.btn-second-line {
  font-size: 11px;
}
@media (max-width: 575px) {
  .btn-group {
    flex-wrap: wrap;
  }
  .btn-group > .btn {
    flex-grow: 0;
  }
}
  

.tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  z-index: 2;
  background: rgba(0,0,0,.4);
}

.tabs .tab {
  height: 40px;
  border-left: 1px solid #FEF200;
  border-top: 1px solid #FEF200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  /* transform: translateY(-100px); */
  cursor: pointer;
}

.tabs .tab.active {
  border-left: 10px solid #FEF200;
}

.tabs .tab span {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
}

.tabs .tab input {
  display: none;
}

@media (max-width: 1350px) {

      .tabs .tab {
          height: 40px;
      }
  }

.tabs .tab.active span {
  color: #FEF200;
  font-style: italic;
}

@media (max-width: 1350px) {
  
      .tabs .tab span {
          font-size: 12px;
      }
  }
  