body {
  background-color: #222b30;
}

.font1 {
  font-family: "snug-variable";
}

.font2 {
  font-family: "magno-sans-variable";
}

#aplication canvas {
  width: 100%;
}

#contprincipal {
  position: relative;
  height: calc(100vh - 100px);
}
#contprincipal .contmenuleft {
  position: fixed;
  top: 0;
  left: 0;
  background: #2d363f;
  height: 100vh;
  z-index: 999;
  color: #fff;
  width: 80px;
  padding-top: 90px;
}
#contprincipal .contmenuleft .item {
  position: relative;
  cursor: pointer;
  text-align: center;
  margin-bottom: 20px;
}
#contprincipal .contmenuleft .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background: #2d363f;
  z-index: -1;
}
#contprincipal .contmenuleft .item svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}
#contprincipal .contmenuleft .item span {
  position: absolute;
  top: 27%;
  left: -50%;
  background: #2d363f;
  padding: 5px 10px;
  border-radius: 0px 5px 5px 0px;
  word-wrap: inherit;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: -2;
}
#contprincipal .contmenuleft .item .contsubmenu {
  position: absolute;
  left: 100%;
  top: 0%;
  background-color: #2d363f;
  padding: 0px;
  width: 0px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
#contprincipal .contmenuleft .item:hover span {
  left: 100%;
}
#contprincipal .contmenuleft .item:hover .contsubmenu {
  width: 60px;
  padding: 10px;
}
#contprincipal .contmenuleft .item:hover .menugraphics {
  width: 150px;
}
#contprincipal .contmenuleft .item:hover .menufont {
  width: 150px;
}
#contprincipal .contmenuleft .item .menugraphics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#contprincipal .contmenuleft .item .menugraphics div {
  width: 50%;
  height: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contprincipal .contmenuleft .item .menugraphics div img {
  max-width: 100%;
  max-height: 50px;
}
#contprincipal .contmenuleft .item .menugraphics div:hover {
  background-color: gray;
}
#contprincipal .contmenuleft .item .menufont {
  padding: 0px;
}
#contprincipal .contmenuleft .item .menufont .text {
  display: block;
  font-size: 40px;
  color: #fff;
  line-height: 46px;
}
#contprincipal .contmenuleft .item .menufont .text:hover {
  background-color: green;
}

#contaplication {
  position: relative;
  width: calc(100% - 80px);
  margin-left: 80px;
}

#menurightinformation {
  width: 300px;
  position: fixed;
  top: 0;
  right: -300px;
  height: 100vh;
  background: #2d363f;
  z-index: 999;
  padding: 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  overflow: auto;
  padding-top: 90px;
}
#menurightinformation.open {
  right: 0px;
}
#menurightinformation .closemenu {
  position: absolute;
  top: 80px;
  right: 10px;
  cursor: pointer;
}
#menurightinformation .closemenu svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
#menurightinformation p {
  margin-bottom: 0px;
}
#menurightinformation h3 {
  margin-bottom: 20px;
}
#menurightinformation .listcolors {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#menurightinformation .listcolors .item div {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  margin-bottom: 10px;
  margin-left: 5px;
}
#menurightinformation .listcolors .item div:hover, #menurightinformation .listcolors .item div.active {
  opacity: 0.8;
}
#menurightinformation .listcolors .item div.active {
  border: 3px solid #00b561;
}

.modalBackground img {
  cursor: pointer;
}
.modalBackground .uploadimage label {
  background-color: #2d363f;
  width: 100%;
  color: #fff;
  padding: 50px;
}

.direction {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 100px;
}
.direction .leftico {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-10%, -50%) scale(0.7);
  width: 50px;
  height: 50px;
  background: #2d363f;
  border-radius: 50%;
  cursor: pointer;
}
.direction .leftico svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.direction .rightico {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(10%, -50%) scale(0.7);
  width: 50px;
  height: 50px;
  background: #2d363f;
  border-radius: 50%;
  cursor: pointer;
}
.direction .rightico svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.direction .topico {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -10%) rotate(90deg) scale(0.7);
  width: 50px;
  height: 50px;
  background: #2d363f;
  border-radius: 50%;
  cursor: pointer;
}
.direction .topico svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.direction .bottomico {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 10%) rotate(-90deg) scale(0.7);
  width: 50px;
  height: 50px;
  background: #2d363f;
  border-radius: 50%;
  cursor: pointer;
}
.direction .bottomico svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.direction svg path:active {
  fill: #00b561;
}

#zoomcanvas {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
#zoomcanvas .direction svg path {
  fill: #fff;
}

.contzoom {
  background: #333;
}
.contzoom button {
  background: transparent;
  color: #fff;
  border: 0px;
  font-size: 30px;
  font-weight: bold;
  padding: 2px 10px;
}
.contzoom button:hover {
  background: #fff;
  color: #333;
}

.contcontroles {
  display: flex;
  flex-direction: wrap;
  align-items: center;
  gap: 20px;
}

.deleteElement {
  padding-top: 40px;
  text-align: right;
}
.deleteElement svg {
  cursor: pointer;
}
.deleteElement svg:hover path {
  fill: #d30000;
}

.swal2-confirm.btn.btn-success {
  margin-left: 20px;
}

.positionStack svg {
  width: 30px;
  transform: rotate(90deg);
  cursor: pointer;
}
.positionStack svg.bottom {
  transform: rotate(-90deg);
  margin-left: 10px;
}

.itemmedidas {
  font-size: 12px;
  padding: 10px;
}
.itemmedidas button.btn.btn-success, .itemmedidas button.btn.btn-danger {
  font-size: 12px;
  padding: 2px 5px;
}

.menuheader {
  background-color: green;
  color: #fff;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 20000;
  padding: 10px;
  padding-left: 20px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.menuheader a {
  color: red;
  font-weight: bold;
  font-size: 34px;
  text-decoration: none;
  display: inline-block;
  margin-right: 30px;
}
.menuheader .divswitch span {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
}
.menuheader .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}
.menuheader .switch input {
  opacity: 0;
  width: 0;
  height: 0;
  margin-left: 20px;
}
.menuheader .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.menuheader .switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}
.menuheader .switch input:checked + .slider {
  background-color: #333;
}
.menuheader .switch input:focus + .slider {
  box-shadow: 0 0 1px #333;
}
.menuheader .switch input:checked + .slider:before {
  transform: translateX(26px);
}
.menuheader .switch .slider.round {
  border-radius: 34px;
}
.menuheader .switch .slider.round:before {
  border-radius: 50%;
}
