/* Start custom CSS for html, class: .elementor-element-d207db5 */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --bg-dark: #18181A;
    --marcuss-coral: #FF7A60;
    --marcuss-gradient: linear-gradient(135deg, #8352C6 0%, #DE536B 50%, #FF7A60 100%);
    --marcuss-gradient-horizontal: linear-gradient(90deg, #8352C6 0%, #DE536B 50%, #FF7A60 100%);
    --tt-gradient: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
    --radius: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #F8FAFC;
    background: var(--bg-dark);
    justify-content: center;
    align-items: center;
    padding: 10px;
    overflow-x: hidden;
}

h1,
h2,
h3,
p,
span,
label,
input,
select,
button,
.card-sub {
    font-weight: 600 !important;
}

.card-title,
.head-titles h1,
.lbl,
b {
    font-weight: 800 !important;
}

.app-contenedor {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

/* HEADER & TABS MODIFICADO A PETICIÓN */
.app-head {
    margin-bottom: 20px;
    text-align: center;
}

/* Más espacio inferior */
.head-titles h1 {
    font-size: 34px;
    background: var(--marcuss-gradient-horizontal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    /* Mayor separación del subtítulo */
}

.subtitles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.2px;
    /* Texto blanco, más grande y legible */
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #A0AEC0;
    padding: 8px 26px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background: rgba(255, 122, 96, 0.15);
    border-color: var(--marcuss-coral);
    color: #fff;
}

.tab-btn[data-tab="tt"].active {
    border-color: #25F4EE;
    background: rgba(37, 244, 238, 0.15);
}

.panel {
    display: none;
    width: 100%;
}

.panel.active {
    display: block;
}

.workspace {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) 350px;
    gap: 26px;
    width: 100%;
    align-items: start;
}

/* CAROUSEL CONTENEDOR CON ALTURA FIJA ELIMINADA */
.carousel-container {
    position: relative;
    width: 100%;
    height: auto;
    /* Altura forzada y estática eliminada */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    flex: 1 1 auto;
    height: 100%;
    min-height: 0;
}

/* El slide ahora contiene SOLO el area escroleable */
.slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 32px 0 32px;
}

/* Área scrollable del formulario */
.slide-scroll {
    flex: 1 1 auto;
    overflow-y: visible;
    padding-bottom: 20px;
}

.slide-scroll::-webkit-scrollbar {
    width: 6px;
    display: block;
}

.slide-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.slide-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.slide-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* NAVEGACIÓN FIJA AL FONDO EXACTO DEL CONTENEDOR */
.static-nav-wrapper {
    flex-shrink: 0;
    padding: 0 32px;
    margin-top: auto;
}

.slide-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13.5px;
    transition: 0.2s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.nav-btn.next-btn {
    background: var(--marcuss-gradient);
    border: none;
    font-weight: 800;
}

#panel-tt .nav-btn.next-btn {
    background: var(--tt-gradient);
    color: #111;
}

.step-indicator {
    font-size: 12.5px;
    color: #A0AEC0;
}

.card {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.card-num {
    background: var(--marcuss-gradient);
    color: #fff;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    flex-shrink: 0;
}

.tt-color {
    background: var(--tt-gradient);
    color: #111;
}

.card-sub {
    color: #A0AEC0;
    font-size: 13.5px;
    margin-bottom: 12px;
}

/* DOTS */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    cursor: pointer;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--marcuss-coral);
    transform: scale(1.3);
}

#dots-tt .dot.active {
    background: #25F4EE;
}

/* INPUTS & FIELDS */
.field {
    margin-bottom: 12px;
    position: relative;
}

.field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.field-label .lbl {
    color: #CBD5E0;
    font-size: 13.5px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

input[type="text"],
select {
    width: 100%;
    padding: 11px 42px 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    outline: none;
    font-size: 16px;
    transition: .2s;
}

input:focus,
select:focus {
    border-color: var(--marcuss-coral);
    box-shadow: 0 0 6px rgba(255, 122, 96, 0.25);
}

#panel-tt input:focus {
    border-color: #25F4EE;
    box-shadow: 0 0 6px rgba(37, 244, 238, 0.25);
}

/* CONTADORES SEMÁFORO DE CARACTERES */
.counter {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11.5px;
    color: #fff;
    font-weight: 800;
    transition: 0.2s;
}

.counter.warn {
    background: rgba(251, 188, 5, 0.25);
    color: #FBBC05;
}

.counter.danger {
    background: rgba(234, 67, 53, 0.25);
    color: #EA4335;
}

/* NOTAS DE EMOJI */
.note-emoji {
    font-size: 12.5px;
    color: #A0AEC0;
    margin-top: 6px;
    font-weight: 600;
    display: block;
}

/* TOOLTIPS DIDÁCTICOS EXPANSIVOS ORIGINALES */
.help {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s, margin 0.25s, padding 0.25s;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #CBD5E0;
}

.field.open .help {
    max-height: 250px;
    opacity: 1;
    margin-top: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.help b {
    color: var(--marcuss-coral);
    font-weight: 800 !important;
}

#panel-tt .help b {
    color: #25F4EE;
}

.help .ej {
    display: block;
    margin-top: 5px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    font-style: italic;
    color: #A0AEC0;
}

/* ADVICE BOXES */
.advice {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #CBD5E0;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.advice h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--marcuss-coral);
}

#panel-tt .advice h4 {
    color: #25F4EE;
}

.advice ul {
    margin: 4px 0 0 16px;
}

.advice li {
    margin: 2px 0;
}

.good {
    color: #34A853;
    font-weight: 800;
}

.bad {
    color: #EA4335;
    font-weight: 800;
}

/* ARCHIVO FILE E INTERRUPTORES */
.file-input {
    width: 100%;
    padding: 6px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: #CBD5E0;
    cursor: pointer;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 8px;
}

.file-input::file-.elementor-9236 .elementor-element.elementor-element-d207db5-button {
    background: var(--marcuss-gradient);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    margin-right: 12px;
}

#tt_photo_upload::file-.elementor-9236 .elementor-element.elementor-element-d207db5-button {
    background: var(--tt-gradient);
    color: #111;
}

.seg {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 4px;
}

.seg button {
    background: transparent;
    border: none;
    color: #A0AEC0;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: .2s;
}

.seg button.on {
    background: var(--marcuss-gradient);
    color: #fff;
}

#ttBrandSeg button.on {
    background: var(--tt-gradient);
    color: #111;
}

#sizeSeg button.on {
    background: var(--marcuss-coral);
    color: #fff;
}

.emoji-btn {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
}

.emoji-btn:hover {
    transform: scale(1.1);
}

.hl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.copy-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.btn-copy {
    flex: 1;
    padding: 11px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: 0.2s;
    color: white;
    font-weight: bold;
}

.btn-copy.ghost {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-copy.primary {
    background: var(--marcuss-gradient);
}

.btn-copy.tt-btn {
    background: var(--tt-gradient);
    color: #111;
}

.btn-copy:hover {
    transform: translateY(-1.5px);
    filter: brightness(1.1);
}

/* VISIBILITY UTILITIES */
.mobile-only {
    display: none !important;
}

.desktop-only {
    /* Mantiene su display por defecto (flex o block) */
}

/* ==============================================================
   ESTILOS ORIGINALES Y EXACTOS DEL TELÉFONO MÓVIL
   ============================================================== */
.preview-col {
    position: sticky;
    top: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phone {
    width: 340px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 42px;
    box-shadow: 0 24px 64px rgba(31, 41, 55, .32), 0 0 0 10px #111, 0 0 0 12px #2b2b2b;
    overflow: hidden;
    font-size: 13px;
    color: #161823;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone .notch {
    height: 26px;
    background: #fff;
    position: relative
}

.phone .notch::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 7px;
    background: #111;
    border-radius: 10px
}

/* ----- INSTAGRAM ORIGINAL CENTRADO PERFECTO ----- */
.ig-statusbar,
.tt-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 18px 8px;
    font-size: 12px;
    font-weight: 700
}

/* Barra superior IG con centrado absoluto */
.ig-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6px 14px 12px;
}

.ig-top .uname {
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ig-top .sp {
    display: none;
}

/* Ocultamos espaciador original */
.ig-top .dot {
    position: absolute;
    right: 20px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #222;
    box-shadow: 0 -6px 0 #222, 0 6px 0 #222;
}

.ig-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 4px 16px 6px
}

.avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative
}

.avatar.ring {
    padding: 3px;
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7)
}

.avatar.ring .av-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    padding: 3px;
    background-size: cover;
    background-position: center;
}

.av-symbol {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #eaf1ff, #e7f6ee)
}

.av-symbol svg {
    width: 64%;
    height: 64%
}

.stats {
    display: flex;
    flex: 1;
    justify-content: space-around;
    text-align: center
}

.stats b {
    display: block;
    font-size: 16px;
    font-weight: 800
}

.stats span {
    font-size: 11.5px;
    color: #333
}

.ig-name {
    padding: 4px 16px 0;
    font-weight: 700;
    font-size: 13.5px
}

.ig-cat {
    padding: 0 16px;
    color: #8e8e8e;
    font-size: 12.5px;
    margin-top: 1px
}

.ig-bio {
    padding: 3px 16px 0;
    font-size: 12.7px;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
    min-height: 14px
}

.ig-link {
    padding: 2px 16px 0;
    color: #00376b;
    font-weight: 600;
    font-size: 12.7px;
    display: flex;
    align-items: center;
    gap: 4px
}

.ig-link svg {
    width: 12px;
    height: 12px
}

.ig-btns {
    display: flex;
    gap: 6px;
    padding: 12px 16px 6px
}

.ig-btns .b {
    flex: 1;
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    background: #efefef;
    border-radius: 9px;
    padding: 7px;
    color: #000;
}

.ig-btns .b.blue {
    background: #4285F4;
    color: #fff;
    flex: 3
}

/* Las historias destacadas perfectas */
.hl-row {
    display: flex;
    gap: 14px;
    padding: 12px 16px 14px;
    overflow-x: auto
}

.hl-row::-webkit-scrollbar {
    display: none;
}

.hl-item {
    text-align: center;
    flex: none;
    width: 60px
}

.hl-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fafafa;
    border: 1px solid #dbdbdb;
    display: grid;
    place-items: center;
    margin: 0 auto 5px
}

.hl-circle svg {
    width: 22px;
    height: 22px;
    opacity: .5
}

.hl-item span {
    font-size: 10.5px;
    color: #333;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ig-tabbar,
.tt-tabbar {
    display: flex;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.ig-tabbar .t {
    flex: 1;
    text-align: center;
    padding: 9px
}

.ig-tabbar svg {
    width: 20px;
    height: 20px
}

/* ----- TIKTOK ORIGINAL CENTRADO PERFECTO ----- */
.tt-phone {
    background: #fff
}

/* Barra superior TikTok centrada absoluta */
.tt-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6px 16px 10px;
    font-weight: 800;
    font-size: 15px;
}

.tt-topbar .uname {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-topbar .ic {
    position: absolute;
    font-size: 18px
}

.tt-topbar .ic.l {
    left: 16px
}

.tt-topbar .ic.r {
    right: 16px
}

.tt-prof {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 16px
}

.tt-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #eaf1ff, #ffe7ee);
    display: grid;
    place-items: center;
    margin-bottom: 8px;
    padding: 0;
}

.tt-av-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
}

.tt-avatar svg {
    width: 60%;
    height: 60%
}

.tt-nick {
    font-weight: 800;
    font-size: 18px
}

.tt-user {
    color: #67686d;
    font-size: 13px;
    margin-top: 1px
}

.tt-stats {
    display: flex;
    gap: 22px;
    margin: 14px 0 6px
}

.tt-stats .col {
    text-align: center
}

.tt-stats b {
    display: block;
    font-size: 17px;
    font-weight: 800
}

.tt-stats span {
    font-size: 12px;
    color: #67686d
}

.tt-actions {
    display: flex;
    gap: 8px;
    margin: 8px 0 10px
}

.tt-actions .b {
    background: #FE2C55;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 26px;
    border-radius: 8px
}

.tt-actions .b.grey {
    background: #f1f1f2;
    color: #161823;
    padding: 8px 14px
}

.tt-bio {
    text-align: center;
    font-size: 12.8px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
    padding: 0 18px;
    min-height: 14px
}

.tt-link {
    text-align: center;
    color: #161823;
    font-weight: 700;
    font-size: 12.8px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.tt-link svg {
    width: 13px;
    height: 13px
}

.tt-tabbar {
    margin-top: auto
}

.tt-tabbar .t {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid transparent
}

.tt-tabbar .t.on {
    border-bottom: 2px solid #161823
}

.tt-tabbar svg {
    width: 19px;
    height: 19px
}

/* AVISO MÓVIL (Oculto porque ahora es responsivo) */
.aviso-movil {
    display: none !important;
}

@media (max-width: 900px) {
    body {
        overflow: auto;
        background: var(--bg-dark);
        align-items: flex-start;
        padding: 20px 10px;
    }

    .app-contenedor {
        display: flex !important;
        width: 100%;
    }

    .workspace {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .preview-col {
        display: none;
    }

    .preview-col.show-mobile {
        position: relative;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .mobile-only {
        display: flex !important;
    }

    p.mobile-only,
    div.mobile-only:not(.copy-row) {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .carousel-container {
        height: auto;
    }

    .head-titles h1 {
        font-size: 28px;
    }

    .subtitles {
        font-size: 15px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .phone {
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .phone {
        width: 340px !important;
        max-width: 340px !important;
        transform: scale(0.85);
        transform-origin: top center;
        margin-bottom: -15%;
    }

    .slide {
        padding: 20px 20px 0 20px;
    }

    .static-nav-wrapper {
        padding: 0 20px;
    }

    .head-titles h1 {
        font-size: 24px;
    }
}

@media (max-width: 350px) {
    .phone {
        width: 340px !important;
        max-width: 340px !important;
        transform: scale(0.75);
        transform-origin: top center;
        margin-bottom: -25%;
    }
}

/* MODAL EMOJIS & POPOVER */
.emoji-pop {
    position: fixed;
    z-index: 2000;
    width: 260px;
    display: none;
    padding: 10px;
    border-radius: 12px;
    background: rgba(24, 24, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.emoji-pop.show {
    display: block;
}

.emoji-cats {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
    overflow-x: auto;
}

.emoji-cats::-webkit-scrollbar {
    display: none;
}

.emoji-cats button {
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    padding: 3px;
    opacity: 0.4;
}

.emoji-cats button.on {
    opacity: 1;
    background: rgba(255, 122, 96, 0.2);
    border-radius: 5px;
}

.emoji-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    max-height: 140px;
    overflow-y: auto;
}

.emoji-list button {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    padding: 3px;
    border-radius: 4px;
    transition: .15s;
}

.emoji-list button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.15);
}

/* TOAST ORIGINAL RECUPERADO */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    background: linear-gradient(160deg, rgba(28, 33, 40, .96), rgba(28, 33, 40, .88));
    color: #fff;
    padding: 15px 26px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .2);
    transition: .3s;
    z-index: 3000;
    pointer-events: none;
    display: flex;
    gap: 10px;
    align-items: center
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.toast svg {
    width: 20px;
    height: 20px
}/* End custom CSS */