.lm-pages {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    height: 100%;
}

.lm-page {
    height: 100%;
    box-sizing: border-box;
    padding: 0 20px 0 20px;
    max-width: 100vw;
    flex: 1;
}

@media (max-width: 800px) {
    .lm-pages {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
    }

    .lm-page {
        padding-top: calc(44px + var(--lm-safe-area-top));
        padding-bottom: calc(44px + var(--lm-safe-area-bottom));
        height: 100%;
        min-width: 100%;
        box-sizing: border-box;
        overflow-y: auto;
        will-change: scroll-position;
        -webkit-overflow-scrolling: touch;
    }
}

.lm-slide-left-in {
    animation: lm-slide-left-in 0.4s forwards;
}

.lm-slide-left-out {
    animation: lm-slide-left-out 0.4s forwards;
}

.lm-slide-left-in::-webkit-scrollbar {
    display: none;
}

.lm-slide-left-out::-webkit-scrollbar {
    display: none;
}

.lm-loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    animation: lm-loading 2s linear infinite;
    background: #e0e0e0 repeating-linear-gradient(to right, var(--lm-main-color-deep, #66b244), var(--lm-main-color-deep, #66b244) 50%, #e0e0e0 50%, #e0e0e0);
    background-size: 200% 100%;
}

@media (min-width: 800px) {
    .lm-slide-left-in {
        position: relative;
    }

    .lm-slide-left-out {
        position: relative;
    }
}

/** Keyframes Left to Right **/
@keyframes lm-slide-left-in {
    0% { left: -100%; }
    100% { left: 0; }
}

@-webkit-keyframes lm-slide-left-in {
    0% { left: -100%; }
    100% { left: 0; }
}

@keyframes lm-slide-left-out {
    0% { left: 0; }
    100% { left: -100%; }
}

@-webkit-keyframes lm-slide-left-out {
    0% { left: 0; }
    100% { left: -100%; }
}

@keyframes lm-loading {
    from {
        background-position: 100% 0;
    }
    to {
        background-position: 0 0;
    }
}

.lm-toolbar {
    display: flex;
    margin: 0;
    background: #f9f9f9;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,.1);
    border-radius: 0;
    z-index: 1;

    justify-content: space-evenly;
    align-items: center;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 8px 0 8px 0;
    text-align: center;
    box-sizing: border-box;
}

.lm-toolbar > div:empty,
.lm-toolbar[data-visible="false"] {
    display: none;
}

.lm-toolbar > div a {
    text-decoration: none;
    color: var(--lm-secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-size: 0.9em;
}

.lm-toolbar img {
    width: 30px;
}

.lm-toolbar[data-position="left"] {
    top: 0;
    width: 60px;
    height: 100%;
    flex-direction: column;
    justify-content: start;
    padding: 8px 0 8px 0;
    position: unset;
}

.lm-toolbar[data-position="left"] .lm-toolbar-item img {
    margin-bottom: 30px;
}

.lm-toolbar[data-position="left"] .lm-toolbar-item {
    display: block;
    margin: 5px;
}

.lm-toolbar[data-position="left"] .lm-toolbar-item a {
    display: block;
}

.lm-toolbar[data-position="left"] .lm-toolbar-item i {
    width: 24px;
    background-color: var(--lm-background-color);
    padding: 8px;
    border-radius: 30px;
}

.lm-toolbar[data-position="left"] .lm-toolbar-item i:empty {
    display: none;
}

.lm-toolbar[data-position="left"] .lm-toolbar-item[data-selected="true"] i {
    background-color: var(--lm-secondary-color);
    color: #fff;
}

.lm-toolbar[data-position="left"] .lm-toolbar-item[data-gap="true"] {
    flex: 1;
}

.lm-toolbar img[src=""] {
    display: none;
}
:root {
    --primary-color: oklch(77.7% 0.152 181.912);
    --primary-soft-color: oklch(70.4% 0.14 182.503);
    --background-color: white;
    --text-color: black;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

.btn-icon {
    padding: 0.5rem;
    display: grid;
    place-items: center;
}

.btn:hover {
    background-color: var(--primary-soft-color);
}

.input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 0.25rem;
    font-size: 14px;
    outline-color: var(--primary-soft-color);
    font-family: inherit;
    resize: vertical;
    min-height: 2.1rem;
}

.label {
    font-size: 14px;
}


.lm-pages {
    position: relative;
}

.lm-page {
    margin-inline: auto;
    max-width: 500px;
    padding: 0 0 60px;
}

.lm-toolbar {
    background-color: var(--background-color);
}
.form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 1rem;
    gap: 1rem;
}

.form-controle {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.form-controle-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-lista-atores {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-ator {
    list-style-type: none;
}

.form-ator-input-container {
    display: flex;
    gap: 0.5rem;
}

.form-ator-input-container div {
    height: 100%;
}

.lista-doramas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.lista-dorama {
    list-style-type: none;
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lista-dorama ul {
    list-style-type: decimal
}
