.index-container {
  min-height: 100vh;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
  max-width: 1920px;
  align-items: flex-start;
  background-color: rgba(234, 234, 234, 1);
}

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

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

.hiddenEl{
    display: none !important;
}

.btn{
  border: none;
  border-radius: 5px;
  text-decoration: none;
  padding: .8em 1.5em !important;
  width: fit-content;
  transition: 250ms ease-in-out;
}

.activeBtn{
    box-shadow: inset 2px 2px 5px rgba(0,0,0,.5) !important;
    background-color: red !important;
    color: #fff !important;
}

.index-top-bar {
  width: 100%;
  height: 80px;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  border-radius: 0px 0px 15px 15px;
  background-color: rgba(255, 255, 255, 1);
}

.index-top-bar-logo {
  /*position: absolute;*/
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 0 20px;
  height: 80px;
  border-radius: 0px 0px 0px 15px;
  background-color: rgba(255, 255, 255, 1);
}

.index-logo {
  width: 200px;
}

.index-top-bar-selectors {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select2 {
  width: 150px !important;
  
}

.select2-selection--single {
  width: 150px !important;
  color:#000;
  height: 50px !important;
  padding: 11px 0px!important;
  margin: 0px 2.5px;
  background-color: rgba(246, 246, 246, 1) !important;
}

.select2-selection__arrow{
  margin: 10px 0px 10px 0px;
}

.index-canvas-size {
  color:#000;
  height:50px!important;
  padding:10px 13px!important;
  margin: 0px 2.5px;
  background-color: rgba(246, 246, 246, 1) !important;
}

.index-canvas-size:hover {
  cursor: pointer;
}

/* Start of Left Panel*/

.leftPanel {
  top: 80px;
  width: 380px;
  height: fit-content;
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
}

  /* Start of Text Editor */
  
  .index-basic-text-edit {
    width: 100%;
    height: fit-content !important;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    background-color: white;
    margin-top: 4px;
    border-radius: 15px;
  }
  
  .btnRow{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 5px 0;
  }
  
  .activeBtn{
      box-shadow:inset 5px 5px 10px rgba(0,0,0,.5);
      background-color: red;
  }
  
  .btn-Text {
    justify-content: center !important;
    align-items: center !important;
    width: 45px !important;
    height: 45px !important;
    padding: 5px !important;
    border-radius: 5px !important;
    margin: 0 2.5px;
    background-color: rgba(246, 246, 246, 1);
  }
  
  .hoverBtn:hover{
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: all 250ms ease-in-out;
  }
  
  .fontSelect {
    width: 83%;
    height: 45px;
    margin: 0 2.5px;
    display: flex;
    border-radius: 5px;
    flex-direction: row;
    justify-content: flex-start;
    background-color: rgba(246, 246, 246, 1);
    transition: all 250ms ease-in-out;
  }
  
  .fontSizeSelect {
    width: 45px !important;
  }
  
  .buttonAlign {
    border:none;
    height:55px;
    width:55px;
    padding:.3em;
    transition: all 250ms ease-in-out;
    background-color:#fff;
    font-size:20px;
  }
  
  .title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .title p{
    font-size: 16px;
    color: rgba(150,150,150,1);
  }
  
  .settings{
    display: flex;
    flex-direction: row;
    height: fit-content;
    margin-bottom: 20px;
  }
  
  .coloris {
    width: 150px;
    height: 45px;
    border-radius: 5px;
    padding-left: 45px;
    margin-right: 2.5px;
    background-color: rgba(246, 246, 246, 1);
  }
  
  .clr-field button{
    width: 35px !important;
    left: 0 !important;
    border-radius: 5px 0px 0px 5px !important;
  }
  .clr-field button:hover{
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: all 250ms ease-in-out;
  }
  .fillDiv {
    width: 100%;
    height: fit-content;
    margin-top: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .addStyleBtn {
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(246, 246, 246, 1);
  }
  
  .strokeDiv {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  
  .shadowDiv {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  .shadowBlur {
    width: 60px !important;
    text-align: center;
  }
  
  /* End of Text Editor */

#dropZone{
    padding: 35px 10px 25px 10px;
    margin-top: 4px;
    border-radius:10px;
    border: 1px dashed #bbb;
    width: 100%;
    max-height: 420px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.5);
    background-color: rgba(255, 255, 255, 1);
}
#images_preview.dragover{
    background: #dcdcdc !important;
}
#images_preview{
    margin-top: 10px;
    display: flex;
    width: fit-content;
    flex-wrap: wrap;
    width: 100%;
    overflow-y:auto;
    align-items: center;
    justify-content:center;
}
#images_preview::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
#images_preview::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 5px;
}
#images_preview::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
#images_preview .image-view{
    width: fit-content;
}
#images_preview .image-view > img, select{
    border-radius:10px;
    transition:250ms ease-in-out
}
#images_preview .image-view img{
    margin: 5px !important;
    object-fit:cover;
    width: 100px;
    height: 100px;
}
#images_preview .image-view img:hover{
    cursor:grab;
    box-shadow:3px 3px 7px rgba(0,0,0,.3)
}

/* End of Left Panel */

.index-workfield {
  top: 80px;
  left: 20%;
  width: 80%;
  height: 857px;
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  justify-content: center;
}

.index-canvas {
  width: 1200px;
  height: 630px;
}

.konvajs-content{
  background-color: white !important;
}

#btn-download{
    font-weight: bold;
    margin: 1.5em auto 0;
    background-color: red !important;
    color: white;
}

@media only screen and (max-width: 1720px){
  /* Start of Left Panel */
  .leftPanel {
  width: 100%;
  height: fit-content;
  display: flex;
  position: absolute;
  flex-direction: row;
  justify-content: flex-start;
}

  /* Start of Text Editor */
  
  .index-basic-text-edit {
    width: 75%;
    height: fit-content;
    padding: 10px 15px;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    display: flex;
    flex-direction: row;
    margin-top: 0;
    overflow-y: auto;
    border-radius: 0px 0px 0px 15px;
  }
  
   .index-basic-text-edit::-webkit-scrollbar {
    height: 5px;
}

  .index-basic-text-edit::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 5px;
}

.index-basic-text-edit::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

  .btnRow{
    width: fit-content;
    display: flex;
    flex-direction: row;
    margin: 0px;
  }
  
  .activeBtn{
      box-shadow:inset 5px 5px 10px rgba(0,0,0,.5);
      background-color: red;
  }
  
  .btn-Text {
    justify-content: center !important;
    align-items: center !important;
    width: 45px !important;
    height: 45px !important;
    padding: 5px !important;
    border-radius: 5px !important;
    margin: 0 2.5px;
    background-color: rgba(246, 246, 246, 1);
  }
  
  .hoverBtn:hover{
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: all 250ms ease-in-out;
  }
  
  .fontSelect {
    width: 200px;
    height: 45px;
    margin: 0 2.5px;
    display: flex;
    border-radius: 5px;
    flex-direction: row;
    justify-content: flex-start;
    background-color: rgba(246, 246, 246, 1);
    transition: all 250ms ease-in-out;
  }
  
  .fontSizeSelect {
    width: 45px !important;
  }
  
  .buttonAlign {
    border:none;
    height:55px;
    width:55px;
    padding:.3em;
    transition: all 250ms ease-in-out;
    background-color:#fff;
    font-size:20px;
  }
  
  .title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }
  
  .title p{
    font-size: 16px;
    margin: 0px 10px 0 5px;
    color: rgba(150,150,150,1);
  }
  
  .settings{
    display: flex;
    flex-direction: row;
    height: fit-content;
    margin-bottom: 0px;
    margin-left: 10px;
  }
  
  .coloris {
    width: 150px;
    height: 45px;
    border-radius: 5px;
    padding-left: 45px;
    margin-right: 2.5px;
    background-color: rgba(246, 246, 246, 1);
  }
  
  .clr-field button{
    width: 35px !important;
    left: 0 !important;
    border-radius: 5px 0px 0px 5px !important;
  }
  .clr-field button:hover{
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: all 250ms ease-in-out;
  }
  .fillDiv {
    width: fit-content;
    margin: 0 5px;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    
  }
  
  .addStyleBtn {
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(246, 246, 246, 1);
  }
  
  .strokeDiv {
    width: fit-content;
    margin: 0 5px;
    height: fit-content;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
  }
  
  .shadowDiv {
    width: fit-content;
    margin: 0 5px;
    height: fit-content;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
  }
  .shadowBlur {
    width: 60px !important;
    text-align: center;
  }
  
  /* End of Text Editor */

.index-top-bar {
  border-radius: 0px;
  background-color: rgba(255, 255, 255, 1);
}

#dropZone{
    padding: 0px 20px;
    margin-top: 0;
    border-radius: 0px 0px 10px 0px;
    border: 1px dashed lightgray;
    width: 25%;
    height: 65px !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.5);
    background-color: rgba(255, 255, 255, 1);
}
#images_preview.dragover{
    background: #dcdcdc !important;
}
#images_preview{
    overflow-y: auto;
    display: flex;
    width: fit-content;
    max-width: 150px;
    flex-wrap: nowrap;
    width: 0;
    align-items: center;
    justify-content:flex-start;
    margin-top: 0;
}
#images_preview::-webkit-scrollbar {
    height: 5px;
}

#images_preview::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 5px;
}

#images_preview::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

#images_preview .image-view{
    width: fit-content;
}
.drop-message{
  width: fit-content;
  font-size: 13px;
  padding: 0;
}
#images_preview .image-view > img, select{
    border-radius:10px;
    transition:250ms ease-in-out
}
#images_preview .image-view img{
    margin: 0 5px !important;
    object-fit:cover;
    width: 40px;
    height: 40px;
}
#images_preview .image-view img:hover{
    cursor:grab;
    box-shadow:3px 3px 7px rgba(0,0,0,.3)
}

/* End of Left Panel */

.index-workfield {
  top: 170px;
  left: 0px;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  justify-content: center;
}
}