/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8F7F0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f6dc12, #fff079);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #fff079, #f6dc12);
}

body {
    font-family: 'Lora', serif;
    background-color: #F8F7F0;
    color: #30302E;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 80px;
    font-weight: 900;
}

h2 {
    font-size: 48px;
    font-weight: 700;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

/* Container */
.ka-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blob Shapes */
.ka-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    opacity: 0.1;
    z-index: -1;
}

.ka-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #E3F2FD, #FFF9C4);
    top: -200px;
    right: -200px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blobFloat 6s ease-in-out infinite;
}

.ka-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFF9C4, #F3E5F5);
    bottom: -150px;
    left: -150px;
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    animation: blobFloat 8s ease-in-out infinite reverse;
}

.ka-blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #E8F5E8, #E3F2FD);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 40% 60% 50% 70% / 60% 40% 60% 30%;
    animation: blobFloat 10s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 10px) scale(0.9);
    }
}

/* Header */
.ka-header {
    background: rgba(248, 247, 240, 0.1);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

.ka-header.scrolled {
    background: rgba(248, 247, 240, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(48, 48, 46, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ka-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ka-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ka-logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.ka-logo-img:hover {
    transform: scale(1.05);
}

.ka-logo-text {
    font-size: 48px;
    font-weight: 900;
    color: #30302E;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.ka-header.scrolled .ka-logo-text {
    color: #30302E;
}

.ka-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.ka-menu-link {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 1px #00000066;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.ka-menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #fff079, #f6dc12);
    transition: width 0.3s ease;
}

.ka-menu-link:hover::after {
    width: 100%;
}

.ka-menu-link:hover {
    color: #fff079;
    transform: translateY(-2px);
}

.ka-menu-link.active {
    color: #fff079;
}

.ka-menu-link.active::after {
    width: 100%;
}

/* When scrolled on homepage */
.ka-header.homepage.scrolled {
    background: rgba(248, 247, 240, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(48, 48, 46, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .ka-header.homepage.scrolled .ka-menu-link {
        color: #30302E;
        text-shadow: none;
    }

        .ka-header.homepage.scrolled .ka-menu-link:hover {
            color: #fff079;
        }

        .ka-header.homepage.scrolled .ka-menu-link.active {
            color: #fff079;
        }

    .ka-header.homepage.scrolled .ka-logo-text {
        color: #30302E;
        text-shadow: none;
    }


.ka-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fff079, #f6dc12);
    border: none;
    border-radius: 50%;
    color: #30302E;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(181, 201, 154, 0.3);
}

.ka-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.ka-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(181, 201, 154, 0.4);
}

.ka-scroll-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer */
.ka-footer {
    background: linear-gradient(135deg, #30302E, #4A4A4A);
    color: #F8F7F0;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.ka-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/patterns/bg-bottom-footer.png') no-repeat center bottom;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.ka-footer .ka-container {
    position: relative;
    z-index: 1;
}

.ka-footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.ka-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.ka-footer-section h3 {
    color: #f6dc12;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.ka-footer-section p,
.ka-footer-section a {
    color: #F8F7F0;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.ka-footer-section a:hover {
    color: #fff079;
}

.ka-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.ka-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(237, 221, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6dc12;
    font-size: 18px;
    transition: all 0.3s ease;
}

.ka-footer-social a:hover {
    background: #f6dc12;
    color: #30302E;
    transform: translateY(-2px);
}

.ka-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #f6dc12, transparent);
    margin: 30px 0;
}

.ka-footer-text {
    text-align: center;
    color: #fff079;
    font-size: 14px;
}

/* Section Titles */
.ka-section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #30302E;
    position: relative;
}

.ka-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #fff079, #f6dc12);
    border-radius: 2px;
}

.ka-section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* Mobile Bottom Navigation */
.ka-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(248, 247, 240, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(181, 201, 154, 0.2);
    z-index: 1000;
    padding: 10px 0;
}

.ka-mobile-nav-item {
    flex: 1;
    text-align: center;
}

.ka-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 5px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
}

.ka-mobile-nav-link i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

    .ka-mobile-nav-link:hover,
    .ka-mobile-nav-link.active {
        color: #ea8825;
    }

.ka-mobile-nav-link:hover i,
.ka-mobile-nav-link.active i {
    transform: scale(1.1);
}

.ka-mobile-nav-link span {
    font-size: 10px;
    line-height: 1.2;
}

@media only screen and (max-width: 768px){
    .ka-mobile-nav-link i {
        margin-right: 0!important;
    }
}

/* Offcanvas Mobile Menu */
.ka-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.ka-offcanvas.active {
    visibility: visible;
    opacity: 1;
}

.ka-offcanvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 48, 46, 0.5);
    backdrop-filter: blur(5px);
}

.ka-offcanvas-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #F8F7F0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(48, 48, 46, 0.2);
}

.ka-offcanvas.active .ka-offcanvas-content {
    transform: translateX(0);
}

.ka-offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(181, 201, 154, 0.2);
    background: linear-gradient(135deg, #fff079, #f6dc12);
}

.ka-offcanvas-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ka-offcanvas-logo img {
    height: 30px;
    width: auto;
}

.ka-offcanvas-logo span {
    font-size: 18px;
    font-weight: 700;
    color: #30302E;
}

.ka-offcanvas-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #30302E;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ka-offcanvas-close:hover {
    background: rgba(48, 48, 46, 0.1);
    transform: scale(1.1);
}

.ka-offcanvas-body {
    padding: 20px;
}

.ka-offcanvas-menu {
    list-style: none;
    margin-bottom: 30px;
}

.ka-offcanvas-menu li {
    margin-bottom: 5px;
}

.ka-offcanvas-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    text-decoration: none;
    color: #30302E;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ka-offcanvas-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.ka-offcanvas-link:hover,
.ka-offcanvas-link.active {
    background: linear-gradient(135deg, #fff079, #f6dc12);
    color: #30302E;
    transform: translateX(5px);
}

.ka-offcanvas-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff079, transparent);
    margin: 30px 0;
}

.ka-offcanvas-contact h4,
.ka-offcanvas-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: #30302E;
    margin-bottom: 15px;
}

.ka-offcanvas-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 0;
}

.ka-offcanvas-contact-item i {
    color: #fff079;
    font-size: 16px;
    width: 20px;
}

.ka-offcanvas-contact-item span {
    font-size: 14px;
    color: #666;
}

.ka-offcanvas-social-links {
    display: flex;
    gap: 15px;
}

.ka-offcanvas-social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fff079, #f6dc12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #30302E;
    font-size: 18px;
    transition: all 0.3s ease;
}

.ka-offcanvas-social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(181, 201, 154, 0.3);
}

@media screen and (max-width: 768px){
    .ka-offcanvas-menu {
        padding-top: 2rem;
    }
    .ka-offcanvas-social-links {
        margin: auto !important;
    }
    .ka-offcanvas-contact-item i {
        color: #a4951d;
    }
}

/* Cookie Consent */
.ka-cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(248, 247, 240, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(181, 201, 154, 0.3);
    border-radius: 15px;
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(48, 48, 46, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.ka-cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ka-cookie-text h4 {
    color: #30302E;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ka-cookie-text h4 i {
    color: #fff079;
    font-size: 20px;
}

.ka-cookie-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.ka-cookie-text a {
    color: #fff079;
    text-decoration: none;
    font-weight: 600;
}

.ka-cookie-text a:hover {
    text-decoration: underline;
}

.ka-cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ka-cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.ka-cookie-btn.ka-cookie-accept {
    background: linear-gradient(135deg, #fff079, #f6dc12);
    color: #30302E;
}

.ka-cookie-btn.ka-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 201, 154, 0.3);
}

.ka-cookie-btn.ka-cookie-reject {
    background: rgba(48, 48, 46, 0.1);
    color: #666;
}

.ka-cookie-btn.ka-cookie-reject:hover {
    background: rgba(48, 48, 46, 0.2);
}

.ka-cookie-btn.ka-cookie-settings {
    background: rgba(181, 201, 154, 0.2);
    color: #30302E;
}

.ka-cookie-btn.ka-cookie-settings:hover {
    background: rgba(181, 201, 154, 0.3);
}

.ka-cookie-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(248, 247, 240, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(181, 201, 154, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    z-index: 1002;
    box-shadow: 0 5px 20px rgba(48, 48, 46, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.ka-cookie-message.show {
    transform: translateY(0);
    opacity: 1;
}

.ka-cookie-message-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ka-cookie-message-success {
    color: #4CAF50;
}

.ka-cookie-message-success i {
    font-size: 20px;
}

.ka-cookie-message-info {
    color: #2196F3;
}

.ka-cookie-message-info i {
    font-size: 20px;
}

.ka-cookie-message span {
    font-weight: 600;
    color: #30302E;
}

@keyframes slideUpFadeIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownFadeOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Notification Styles */
.ka-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ka-notification.show {
    transform: translateX(0);
}

.ka-notification.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-left: 4px solid #2E7D32;
}

.ka-notification.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    border-left: 4px solid #B71C1C;
}

.ka-notification.warning {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border-left: 4px solid #E65100;
}

.ka-notification.info {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    border-left: 4px solid #0D47A1;
}

.ka-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ka-notification-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.ka-notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ka-notification-close:hover {
    opacity: 1;
}

.ka-notification-message {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.ka-notification-icon {
    margin-right: 10px;
    font-size: 20px;
}

/* Form Success/Error Messages */
.ka-form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ka-form-message.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-left: 4px solid #2E7D32;
}

.ka-form-message.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    border-left: 4px solid #B71C1C;
}

.ka-form-message.warning {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border-left: 4px solid #E65100;
}

.ka-form-message.info {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    border-left: 4px solid #0D47A1;
}

/* Loading Spinner */
.ka-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ka-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .ka-notification.show {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .ka-section-title {
        font-size: 32px;
    }
    
    .ka-logo-text {
        font-size: 32px;
    }
    
    .ka-menu {
        display: none;
    }
    
    .ka-nav {
        justify-content: space-between;
    }
    
    .ka-header {
        padding: 15px 0;
    }
    
    .ka-container {
        padding: 0 15px;
    }
    
    .ka-breadcrumb {
        padding: 30px 0;
    }
    
    .ka-breadcrumb-title {
        font-size: 32px;
    }
    
    .ka-breadcrumb-link {
        font-size: 14px;
    }
    
    /* Mobile Navigation */
    .ka-mobile-nav {
        display: flex;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        box-shadow: 0px -4px 10px 1px #1a1a1a21;
    }
    
    /* Adjust main content for mobile nav */
    main {
        padding-bottom: 80px;
    }
    
    /* Cookie consent adjustments */
    .ka-cookie-content {
        flex-direction: column;
    }
    
    .ka-cookie-actions {
        flex-direction: column;
    }
    
    .ka-cookie-btn {
        width: 100%;
    }
    
    .ka-cookie-text h4 {
        font-size: 16px;
    }
    
    .ka-cookie-text p {
        font-size: 13px;
    }
    
    .ka-cookie-message {
        left: 20px;
        right: 20px;
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .ka-section-title {
        font-size: 28px;
    }
    
    .ka-logo-text {
        font-size: 28px;
    }
    
    .ka-menu {
        display: none;
    }
    
    .ka-breadcrumb-title {
        font-size: 28px;
    }
    
    /* Offcanvas adjustments */
    .ka-offcanvas-content {
        width: 100%;
    }
    
    /* Cookie consent adjustments */
    .ka-cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .ka-cookie-actions {
        flex-direction: column;
    }
    
    .ka-cookie-btn {
        width: 100%;
    }
}


.x-alert {
    width: 500px;
    top: 9rem;
    right: 5rem;
    position: fixed !important;
    z-index: 999;
    padding: .95rem 1.45rem !important;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63
}

#cookieWrapper, .cookie-consent-container {
    z-index: 1000;
    background-color: #fff;
    position: fixed
}

.alert-text {
    width: 95%;
    display: flex
}

.x-alert-success {
    background-color: #326211;
    color: #fff;
    animation: 1s successFade
}

.x-alert-danger {
    background-color: #ffe2e5;
    color: #5f0b0be0
}

.x-alert-warning {
    background-color: #ffcc29;
    color: #3b331d
}

.x-alert-info {
    background-color: #baebf3;
    color: #0c5460
}

.x-alert-detail {
    background-color: #cce5ff;
    color: #004085
}

.x-alert-close {
    cursor: pointer;
    transition: .3s;
    outline: 0;
    color: #111;
    padding: 0 .7rem;
    background-color: #fff;
    font-size: 24px;
    border: none;
    position: absolute;
    top: .4rem;
    right: .4rem;
    width: 38px
}

    .x-alert-close:hover {
        background-color: #ff1616f2;
        color: #fff
    }

    .x-alert-close:focus {
        outline: #d5d1d1 solid 1px
    }

@keyframes successFade {
    from {
        opacity: .5
    }

    to {
        opacity: 1
    }
}