:root {
    --main-dark-sea-green: #A6C2B4;
    --main-salmon: #E8AD6B;
    --main-grey-2: #60605c;
    --main-grey-3: #60605c;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* .layer-header {
    width: 130px;
    height: 40px;
} */

.layer-text {
    width: 60px;
}

body {
    position: relative;
}
canvas {
    /*display: block;*/
    display: block;
    margin: auto;
    /* background: #d1d1d1; */
    cursor: crosshair;
    border-style: solid;
    border-width: 1px;
    border-color: #eeeeee;
    z-index: 1100;
}

#nav-toggle-state {
    display: none;
}

#nav-toggle-state:checked ~ .nav-menu {
    display: block;
}

#dropdown-toggle-state {
    display: none;
}

#dropdown-toggle-state:checked ~ .dropdown-menu {
    display: block;
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
}

#timeline-toggle-state {
    display: none;
}

#timeline-toggle-state:checked ~ .timeline-content {
    position: absolute;
}

.timeline-content {
    padding: 10px;
    margin: 10px auto;
    display: block;
    /* width: fit-content; */
}

/* .toggle-timeline-nav{
    background: var(--main-grey-2);
} */

.check_item {
    display: none !important;
}

.label_item {
    opacity: 0.4;
}

.check_item:checked + label {
    opacity: 1;
}

.dropdown-menu {
    min-width: 2px;
}

.dropdown-content {
    padding: 0px;
    /* background-color: #1c1c1c; */
}

#frame-counter {
    min-width: 5em;
}

#line-width-info {
    min-width: 3em;
}

.timeline-nav {
    position: fixed;
    bottom: 0px;
    width: 100%;
}

.timeline-wrapper {
    padding: 0.5em;
    padding-bottom: 0;
}

.timeline-buttons-wrapper {
    padding-left: 0.5em;
    padding-bottom: 0.5em;
}

.fixed-top {
    position: fixed;
    top: 0px;
}

.fixed-right {
    position: fixed;
    right: 0px;
}

.canvas-wrapper {
    padding-top: 4em;
    height: 150vh;
    /* background: var(--main-grey-3); */
}

/* .field.is-grouped > .control:not(:last-child) {
    margin-right: 0.25rem;
} */

.termsWrapper {
    margin-bottom: 4px;
}

.file-label{
    overflow: inherit;
}

.fileContainer {
    overflow: hidden;
    position: relative;
}

.fileContainer [type=file] {
    cursor: inherit;
    display: block;
    font-size: 999px;
    filter: alpha(opacity=0);
    height: 1px;
    width: 1px;
    opacity: 0;
    position: absolute;
    text-align: right;
}


.layers-container {
    height: 150px;
    overflow-y: auto;
    background-color: transparent;
}

.frame {
    padding: 1px !important;
}

table td {
    padding: 1px;

}

.table {
    background-color: transparent;
}

.top-of-the-page{
   position: absolute !important;
   z-index: 100 !important;
   top:2%;
   left:50%;
   transform:translate(-50%);
}