.page
{
  height: calc(100vh - 56px);
  width: 100%;
  display: flex
}

.sidebar
{
  background-color: var(--bg-dark);
  border:1px solid black;
  width: 300px;
  height: calc(100vh - 50px);
  display: flex;

}
.sidebar ul
{
  padding: 0px;
  margin:0px;
}
.sidebar ul li 
{
    list-style: none;
}
.sidebar ul li a 
{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 65px;
  width: 65px;
  color: white;
  font-size: 22px;
}
.sidebar ul li a.active 
{
  background-color: #111111;
}
.sidebar .tab-content
{
  width: 235px;
  background-color: #111111;
}

.content
{
  /* border:1px solid white; */
  padding: 50px;
  width: calc(100% - 300px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.content canvas
{
 box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.btn-load-template
{
  cursor: pointer;
}


#layer-list .layer-item {
  margin-bottom: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
}
#layer-list .selected-layer {
  background-color: #ddd !important;
  color: #111111 !important;
}
.drag-over {
 opacity: 0.8;
}

/* edit pabel  */
.tab-pane 
{
   height: 100vh;
   overflow-y: scroll;
}

.loader-container
{
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: #0000005c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.loader {
  color: #ffffff;
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em,
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, 
    -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, 
    -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
     -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, 
     -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
     -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, 
     -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 
    0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes round {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg) }
}
 