
#content-toast-pg {
    position: fixed;
    top: 70px;
    right: 15px;
    z-index: 9000;
}
.toast-pg {
    width: 450px;
    background: #FFFFFF;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.43);
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid #A2A2A2;
}
.toast-pg > .header-toast {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    background: #A2A2A2;
    color: #FFFFFF;
    font-weight: bolder;
}
.toast-pg > .header-toast * {
    color: #FFFFFF;
}
.toast-pg > .header-toast > div:nth-child(2) {
    cursor: pointer;
}
.toast-pg > .body {
    padding: 15px 10px;
}
.toast-pg.danger {
    border-color: red;
}
.toast-pg.danger > .header-toast{
    background: red;
}
.toast-pg.success {
    border-color: green;
}
.toast-pg.success > .header-toast{
    background: green;
}
.toast-pg.warning {
    border-color: #FFD112;
}
.toast-pg.warning > .header-toast{
    background: #FFD112;
}
.toast-pg.info {
    border-color: #1C85ED;
}
.toast-pg.info > .header-toast{
    background: #1C85ED;
}

.ck-balloon-panel_visible {
    display: none !important;
}

.ck-editor__editable_inline {
    min-height: 400px;
}

.list-episodes {
    width: 500px;
}

.list-episodes .item-episode {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray);
    cursor: pointer;
}

.list-episodes .item-episode img {
    width: 200px;
}