/* 664b22 */
/* ff9900 */
/* ffe5c2 */
/* fff8f0 */

:root {
    --primary: #ff9900;
    --secondary: #2B9BFF;
    --light: #fff8f0;
    --dark: #2B3940;
}

/* Let the site shell reach both viewport edges on wide screens.
   Nested .container elements still constrain and pad readable content. */
.container-xxl.bg-white.p-0 {
    max-width: none;
}

/* Inner-page hero backgrounds should span the full browser width. */
.container-xxl.page-header {
    max-width: none;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Full-width video banner on the blog landing page. */
.container-xxl.blog-video-hero {
    width: 100%;
    max-width: none;
    height: clamp(650px, 78vh, 820px);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}



/*** Button ***/
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .5s;
}

/* .btn.btn-primary,
.btn.btn-secondary {
    background-color: black !important;
    color: white !important;
    border: 2px solid black;
    transition: all 0.6s ease;
}

.btn.btn.btn-primary:hover {
    background-color: white !important;
    color: black !important;
} */


/* --- Up-going button animation --- */

.btn.btn-primary,
.btn.btn-secondary {
    position: relative;
    margin: 8px auto;
    background-color: black !important;
    color: white !important;
    border: 2px solid black;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.btn.btn-primary::before,
.btn.btn-secondary::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: top 0.4s ease;
}

.btn.btn-primary:hover::before,
.btn.btn-secondary:hover::before {
    top: 0;
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover {
    color: black !important;
    border-color: black;
}
/* ------ */

.btn-telegram {
    position: relative;
    background-color: #0088cc !important;
    color: white !important;
    border: 2px solid #0088cc;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease;
    /* margin-left: 10px; */
}

.btn-telegram::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: top 0.4s ease;
}

.btn-telegram:hover::before {
    top: 0;
}

.btn-telegram:hover {
    color: #0088cc !important;
    border-color: #0088cc;
}

/* ------ */

.btn-whatsapp {
    position: relative;
    background-color: #25d366 !important;
    color: white !important;
    border: 2px solid #25d366;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: top 0.4s ease;
}

.btn-whatsapp:hover::before {
    top: 0;
}

.btn-whatsapp:hover {
    color: #25d366 !important;
    border-color: #25d366;
}


.btn-viber {
    position: relative;
    background-color: #7360f2 !important;
    color: white !important;
    border: 2px solid #7360f2;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.btn-viber::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: top 0.4s ease;
}

.btn-viber:hover::before {
    top: 0;
}

.btn-viber:hover {
    color: #7360f2 !important;
    border-color: #7360f2;
}

/* ------ */


.btn-gmail {
    position: relative;
    background-color: #d93025 !important;
    color: white !important;
    border: 2px solid #d93025;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.btn-gmail::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: top 0.4s ease;
}

.btn-gmail:hover::before {
    top: 0;
}

.btn-gmail:hover {
    color: #d93025 !important;
    border-color: #d93025;
}



/* ------ */

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

/* .navbar-light .navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    color: black;
    background-clip: text;
    -webkit-background-clip: text;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    background: linear-gradient(to right, #000000, #dd0000, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
} */

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    /* color: var(--primary); */
    background: linear-gradient(to right, #000000, #dd0000, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}



@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-item {
    position: relative;
    height: clamp(660px, 82vh, 860px);
    overflow: hidden;
}

.header-carousel .owl-carousel-item > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-carousel .owl-carousel-item > .position-absolute {
    z-index: 1;
}

.header-carousel .container {
    width: calc(100% - 96px);
    max-width: 1480px;
}

.header-carousel .container .col-lg-8 {
    max-width: 920px;
}

.header-carousel .container h1 {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    line-height: 1.1;
}

.header-carousel .container p {
    max-width: 860px;
    line-height: 1.55;
}

.page-header .container {
    width: calc(100% - 96px);
    max-width: 1480px;
}

.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    /* border-left: 15px solid var(--primary); */
    border-left: 15px solid transparent;
    border-image: linear-gradient(to bottom, #000000, #dd0000, #ffcc00) 1;
}

.header-carousel .container::before,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    /* background: var(--primary); */
    background: black;
}

.header-carousel .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #ffcc00;
}

.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #ffcc00;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        height: min(720px, 88vh);
        min-height: 580px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .container {
        width: calc(100% - 32px);
        padding: 32px 20px 32px 28px;
    }

    .page-header .container {
        width: calc(100% - 32px);
    }

    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }

    .container-xxl.page-header {
        min-height: 400px;
    }

}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    /* background: var(--primary);
    border-color: var(--primary); */
    background: linear-gradient(to right, #000000, #dd0000, #ffcc00);
    /* border-color: transparent; */
    transition: all 0.6s ease;
    color: white;
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        right: 16px;
    }
}

.page-header {
    /* background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/client8.png) center center no-repeat; */
    background-size: cover;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light) !important;
}


/*** About ***/
.about-bg {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 5px 5px;
}

/*** Program ***/
.program-bg {
    background: repeating-linear-gradient(
        45deg,
        #fdfdfd,
        #fdfdfd 10px,
        #f5f5f5 10px,
        #fff0da 20px
    );
}


/*** Category ***/
.cat-item {
    display: block;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    border: 1px solid transparent;
    transition: .5s;
}

.cat-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/*** Job Listing ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

.job-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.job-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}

.course-item {
    background-color: #fff8f0;
    transition: all 0.3s ease;
}

.cat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.custom-testimonial-bg {
    background-color: #fff0da;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

/* --- FAQ --- */

.accordion-body {
    background-color: #fff8f0;
}

.accordion-button {
    background-color: #fff8f0;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #ffe5c2; /* softer orange */
    color: #664b22;
}

.accordion-button:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 0, 0.25);
}

/*
.text-primary {
    color: #ff9900 !important;
} */


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.gradient {
    background: linear-gradient(to right, #000000, #dd0000, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-btn {
    background: linear-gradient(to right, #000000, #dd0000, #ffcc00);
    color: white !important;
    border: none;
    transition: opacity 0.3s ease;
  }

  .gradient-btn:hover {
    opacity: 0.9;
  }

/* English carousel call to action */
.gradient-btn-eng {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 24px;
    color: #ffffff !important;
    background: linear-gradient(135deg, #6750a4 0%, #2867c7 48%, #00a9ce 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(12, 45, 90, 0.35);
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.gradient-btn-eng i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin: -5px -10px -5px 0;
    color: #2867c7;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.25s ease;
}

.gradient-btn-eng:hover {
    color: #ffffff !important;
    transform: translateY(-3px);
    filter: saturate(1.15);
    box-shadow: 0 16px 38px rgba(12, 45, 90, 0.48);
}

.gradient-btn-eng:hover i {
    transform: translateX(3px);
}

/* Contact messenger cards */
.messenger-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.messenger-card {
    --messenger-color: #2b9bff;
    --messenger-fill: var(--messenger-color);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 14px;
    color: #2b3940;
    background: #ffffff;
    border: 1px solid color-mix(in srgb, var(--messenger-color) 32%, #dfe5e8);
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 7px 20px rgba(43, 57, 64, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.messenger-card::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
    background: var(--messenger-fill);
    transform: translateX(-102%);
    transition: transform 0.35s cubic-bezier(.22, .8, .3, 1);
}

.messenger-card:hover {
    color: #ffffff;
    border-color: var(--messenger-color);
    transform: translateY(-4px);
    box-shadow: 0 13px 28px color-mix(in srgb, var(--messenger-color) 18%, transparent);
}

.messenger-card:hover::before {
    transform: translateX(0);
}

.messenger-icon {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    color: #ffffff;
    background: var(--messenger-color);
    border-radius: 14px;
    font-size: 1.35rem;
    box-shadow: 0 6px 14px color-mix(in srgb, var(--messenger-color) 30%, transparent);
    transition: background 0.25s ease, transform 0.25s ease;
}

.messenger-card:hover .messenger-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.04);
}

.messenger-copy {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    line-height: 1.25;
}

.messenger-copy strong {
    font-size: 0.98rem;
}

.messenger-copy small {
    margin-top: 4px;
    color: #6f7d83;
    font-size: 0.76rem;
}

.messenger-card:hover .messenger-copy small {
    color: rgba(255, 255, 255, 0.82);
}

.messenger-arrow {
    color: var(--messenger-color);
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.messenger-card:hover .messenger-arrow {
    color: #ffffff;
    transform: translateX(4px);
}

.messenger-telegram { --messenger-color: #229ed9; }
.messenger-viber { --messenger-color: #7360f2; }
.messenger-whatsapp { --messenger-color: #20b95a; }
.messenger-facebook { --messenger-color: #087aea; }
.messenger-instagram {
    --messenger-color: #d62976;
    --messenger-fill: radial-gradient(circle at 20% 120%, #fdf497 0%, #fd5949 35%, #d6249f 62%, #285aeb 100%);
    grid-column: 1 / -1;
}

.messenger-channel {
    --messenger-color: #229ed9;
    --messenger-fill: linear-gradient(90deg, #229ed9 0%, #00bfb7 100%);
    background: linear-gradient(135deg, #f4fbff, #eefdfc);
}

@media (max-width: 575.98px) {
    .messenger-grid {
        grid-template-columns: 1fr;
    }

    .messenger-instagram {
        grid-column: auto;
    }
}

/* Highlight the extended 90-minute individual lesson duration. */
.individual-time-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    background: linear-gradient(135deg, #fff7e8, #fff0df);
    border: 1px solid rgba(255, 153, 0, 0.42);
    border-radius: 12px;
    color: #4b3a25;
}

.individual-time-feature strong {
    color: #c94700;
    font-size: 1.06em;
}

.individual-time-icon {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9900, #dd3b00);
    border-radius: 50%;
    font-size: 1.05rem;
    box-shadow: 0 5px 12px rgba(221, 59, 0, 0.25);
}

.individual-time-bonus {
    margin-left: auto;
    padding: 4px 8px;
    color: #ffffff;
    background: #c94700;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

  .article-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 1.5rem;
}

.testimonial-item-page {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1.5rem !important;
}

.testimonial-item-page:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* ======== blog ======== */


#blog-article {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Heebo", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

#blog-article h1 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

#blog-article img.article-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

#blog-article h2,
#blog-article h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

#blog-article ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

#blog-article li {
    margin-bottom: 10px;
}

#blog-article p {
    margin-bottom: 20px;
}

#blog-article hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #ccc;
}

.hover-zoom {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
.hover-zoom:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.15);
  }

/* Newsletter feedback toast */
#subscriptionMessage:empty {
    display: none;
}

#subscriptionMessage:not(:empty) {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    width: min(380px, calc(100vw - 32px));
    margin: 0 !important;
    padding: 14px 18px;
    color: #ffffff !important;
    background: #20363d;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 4px solid #20c997;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    font-size: 0.95rem;
    line-height: 1.4;
    animation: subscription-toast-in 0.25s ease-out;
}

#subscriptionMessage:not(:empty) p,
#subscriptionMessage:not(:empty) span {
    margin: 0;
    color: inherit !important;
    font-family: inherit !important;
}

@keyframes subscription-toast-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    #subscriptionMessage:not(:empty) {
        right: 16px;
        bottom: 16px;
    }
}
