:root{
    --text: #f2eff5;
    --background: #191320;
    --primary: #d4b9bb;
    --secondary: #1f2617;
    --accent: #67a29f;
}
.hide{
    display: none;
}
p, label {
    color: white;
}
body {
    background-color: rgb(27, 27, 27);
    color: var(--text);
    margin: 0px;
    overflow: clip;
    font-family: Arial;
    user-select: none;
}
.screenSection {
    overflow-y: auto;
    min-width: 20%;
    background-color: var(--background);
    margin: 5px;
    border-radius: 10px;
    color: white;
    opacity: 0.5 !important;
    transition: all ease-in 100ms;
    z-index: 10;
}
.screenSection:hover{
    opacity: 1 !important;
    z-index: 10 !important;
}
#align-left, #align-center, #align-right {
    border-radius: 10px;
    aspect-ratio: 1.31;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    border: 0px;
    height: 30px;
}
#align-left{
    background-image: url("../images/icons/format_align_left_FILL0_wght400_GRAD0_opsz48.svg");
}
#align-center{
    background-image: url("../images/icons/format_align_center_FILL0_wght400_GRAD0_opsz48.svg");
}
#align-right{
    background-image: url("../images/icons/format_align_right_FILL0_wght400_GRAD0_opsz48.svg");
}
.layer-down, .layer-up, .layer-delete,.layer-clone {
    border-radius: 10px;
    aspect-ratio: 1;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    border: 0px;
    height: 30px;
}
.layer-down{
    background-image: url("../images/icons/arrow_downward_FILL0_wght400_GRAD0_opsz48.svg");
}
.layer-up{
    background-image: url("../images/icons/arrow_upward_FILL0_wght400_GRAD0_opsz48.svg");
}
.layer-delete{
    background-image: url("../images/icons/close_FILL0_wght400_GRAD0_opsz48.svg");
}
.layer-delete:hover{
    background-color: #f08383;
}
.layer-clone{
    background-image: url("../images/icons/content_copy_FILL0_wght400_GRAD0_opsz48.svg");
}
.layer-actions:hover {
    opacity: 1 !important;
}
.layer-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    position: relative;
    right: 0;
    opacity: 0.1;
    transition: all 200ms ease-in;
  }
.tooltip-container {
    padding: 5px;
    margin: 0px 2px;
    border-radius: 10px;
    background-color: #454545;
    min-width: fit-content;
}
.tooltip-container label {
    margin-right: 5px;
}
@keyframes NotificationOut {
    from {opacity: 1.0;}
    to {
        opacity: 0.0;
        z-index: -10;
    }
}
.notificationShow {
    display: block !important;
    opacity: 1;
    animation-name: NotificationOut;
    animation-fill-mode: forwards;
    animation-duration: 2000ms;
    animation-delay: 2000ms;
}
.notificationHide {
    display: none !important;
    opacity: 0;
}
#notification {
    display: block;
    position: fixed;
    z-index: 10;
    background-color: #747474;
    padding: 10px;
    border-radius: 10px;
    bottom: 10px;
    right: 10px;
    transition: all 500ms ease;
}
#canvasHolder {
    width: calc(100% - 23%);
    min-width: 0;
    max-height: calc(100vh - 68px);
    z-index: 1;
    display: block;
    margin: 5px;
}
.miniature {
    width: 95%;
    border-radius: 9px;
    margin: 6px;
    transition: all;
}
.miniature:hover {
    filter: contrast(120%);
}
.canvas {
    position: relative;
    background-color: #FFF;
    border: 0 solid #000;
    top: 0;
    max-height: 100%;
    z-index: -1;
    left: 50%;
    border-radius: 10px;
    transform: translateX(-50%);
  }
.layer{
    background-color: rgb(69, 69, 69);
    padding: 6px;
    width: auto;
    display:flex;
    align-items: center;
    border-bottom: 1px solid #606060;
    height: 34px;
}
.layer:hover {
    background-color: rgb(85, 85, 85);
  }
.layer p {
    width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
    overflow-y: clip;
    max-height: 2ch;
    pointer-events: none;
}
.selected {
    background-color: var(--primary);
}
#posX, #posY, #sizeimg, #sizetext {
    width: 45px;
  }
  .caja {
    background-color: rgb(44, 44, 44);
    text-align: center;
    display: flex;
    height: 40px;
    margin: 5px;
    border-radius: 10px;
    padding: 8px;
    align-items: center;
    justify-content: start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: clip;
}
.cc {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
  }
.row-container{
    display: flex;
    flex-direction:row;
    flex-wrap: nowrap;
    max-height: calc(100vh - 66px);
}
#capas {
    overflow-y: auto;
    min-width: 20%;
    max-width: 20%;
    background-color: var(--background);
    margin: 5px;
    border-radius: 10px;
}
#tooltips-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.fontListButton {
    border-radius: 10px;
    border: 0px;
    padding: 4px;
    margin: 0px 6px;
      margin-bottom: 0px;
    width: 96%;
    background-color:var(--secondary);
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
}
#setupMenu {
    display: flex;
    height: 100svh;
    align-items: center;
    justify-content: center;
}
select, input, button {
    background-color: var(--secondary);
    color: var(--text);
    border: 0px;
    border-radius: 5px;
    font-size: 18px;
}
select:hover, input:hover, button:hover {
    background-color: var(--accent);
}

.addbutton {
    background-image: url("../images/icons/arrow_downward_FILL0_wght400_GRAD0_opsz48.svg");
    background-size: 48px;
    background-repeat: no-repeat;
    background-position: 50% 33%;
    aspect-ratio: 1;
    align-items: end;
    display: flex;
    width: 100px;
    height: 100px;
    justify-content: center;

}
#elementsList {
    position: fixed;
    left: 3px;
    top: 65px;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    width: 320px;
    flex-wrap: wrap;
    z-index: 50;
}
#elAddText {
    background-image: url("../images/icons/text_fields_FILL0_wght400_GRAD0_opsz48.svg");
}
#elAddImg {
    background-image: url("../images/icons/image_FILL0_wght400_GRAD0_opsz48.svg");
}
#elAddTable{
    background-image: url("../images/icons/table_FILL0_wght400_GRAD0_opsz48.svg");
}
#elAddColor{
    background-image: url("../images/icons/format_color_fill_FILL0_wght400_GRAD0_opsz48.svg");
}
#uiTemplateList {
    margin-bottom: 10px;
}
.mainpageButton {
    background-color: var(--secondary);
    padding: 20px;
    border-radius: 17px;
    text-decoration: none;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mainpageButton:hover{
    background-color: var(--accent);
}
.userInput{
    display: flex;
    align-items: center;
    margin: 10px 0px;
    background-color: var(--secondary);
    padding: 8px;
    border-radius: 13px;
}
.userInput lable {
    width: 100%;
    margin: 0px;
      margin-bottom: 0px;
}

#addelementtable{
    position: absolute;
    padding: 20PX;
    background-color: var(--background);
    z-index: 999;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: 10px;
    right: 20px;
    transform: translate(-50%);
    bottom: 20px;
    max-width: min-content;
}
.etable {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px;
    background-color: #515151;
    border-radius: 6px;
  }
.etable-column {
    display: flex;
    flex-wrap: wrap;
    max-width: min-content;
}
.etable-column input {
    background-color: rgba(0,0,0,0);
    border: 1px solid #a4a4a4;
    color: white;
    border-radius: 0px;
}

#eyedropper {
    width: 2.5ch;
    background-image: url("../images/icons/colorize_FILL0_wght400_GRAD0_opsz48.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px;
}
.tooltip-category {
    background-color: #767676;
    padding: 5px;
    margin: 0px 2px;
    border-radius: 10px;
    display: flex;
    border: 1px solid white;
    margin-bottom: 5px;
    flex-wrap: wrap;
}
.checked{
    background-color: #4e4e4e;
    color: white;
}
.popupWindow {
    position: absolute;
    max-width: 540px;
    max-height: 50vh;
    z-index: 900;
    background-color: #606060;
    margin: 20px;
    width: 800px;
    right: 2%;
    bottom: 2%;
    border-radius: 20px;
    opacity: 1;
    transition: all ease 500ms;
    }
.filtersItemContainer{
    display: flex;
    border-radius: 10px;
    background: #3d3d3d;
    padding-left: 10px;
    justify-content: space-between;
    padding-right: 10px;
    margin-bottom: 5px;
    text-transform: capitalize;
    cursor: pointer;
}
.filtersContainer{
    min-width: 30%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    border-right: #7d7d7d 1px solid;
    border-radius: 20px;
    overflow-y: auto;
}
.filterInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2b2b2b;
    border-radius: 10px;
    padding: 0px 10px;
    margin-bottom: 4px;
}
.square {
    transform: translate(-5px, -5px);
  }

.fullscreen{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    background-color: var(--background);
    z-index: 9999;
    overflow-y: scroll;
}
.fullscreen .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}