﻿/* CookieYes icon is hidden via JS (shadow DOM style injection) */

.accessibility-widgets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 500010;
}

.accessibility-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #173470;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 52, 112, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 90px;
    z-index: 500012;
    right: 20px;
}

.accessibility-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(23, 52, 112, 0.5);
}

.accessibility-main-btn svg {
    width: 30px;
    height: 30px;
}

.accessibility-menu {
    position: fixed;
    bottom: 35px;
    right: -55px;
    width: 360px;
    height: 360px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    z-index: 500015;
}

.accessibility-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.menu-items {
    position:relative;
    width: 100%;
    max-width: 280px;
    height:100%;
}

.menu-item {
    position:absolute;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    font-weight: 400;
}

.menu-item:hover {
    transform: translateX(-3px);
}

.menu-item svg {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    fill: white;
}
.menu-item:nth-child(1) {
    top: -8%;
    left: 0%;
}

.menu-item:nth-child(2) {
    top: 26%;
    left: -12%;
}

.menu-item:nth-child(3) {
    top: 60%;
    left: 4%;
}

.close-btn {
    position: absolute;
    bottom: 40px;
    right: 90px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 500020;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.close-btn:hover {
    transform: translateX(-3px);
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.close-btn::before {
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #173470;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 52, 112, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.chatbot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 52, 112, 0.4);
}

.chatbot svg {
    width: 60px;
    height: 60px;
}

@media (max-width: 768px) {
    .accessibility-widgets {
        bottom: 15px;
        right: 15px;
    }

    .accessibility-main-btn,
    .chatbot {
        width: 55px;
        height: 55px;
    }

    .accessibility-main-btn svg {
        width: 26px;
        height: 26px;
    }

    .chatbot, .accessibility-main-btn {
        right: 15px;
    }

    .chatbot svg {
        width: 50px;
        height: 50px;
    }

    .accessibility-menu {
        width: 280px;
        height: 280px;
        padding: 35px 25px;
        bottom: 30px;
        right: -40px;
    }

    .menu-items {
        max-width: 230px;
        height: 100%;
    }

    .menu-item {
        font-size: 17px;
        padding: 12px;
    }

    .menu-item svg {
        width: 65px;
        height: 65px;
    }

    .menu-item:nth-child(1) {
        top: -6%;
        left: 2%;
    }

    .menu-item:nth-child(2) {
        top: 25%;
        left: -10%;
    }

    .menu-item:nth-child(3) {
        top: 55%;
        left: 4%;
    }

    .close-btn {
        bottom: 30px;
        right: 55px;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .accessibility-widgets {
        bottom: 10px;
        right: 10px;
    }

    .accessibility-main-btn,
    .chatbot {
        width: 50px;
        height: 50px;
    }

    .accessibility-main-btn svg {
        width: 22px;
        height: 22px;
    }

    .chatbot, .accessibility-main-btn {
        right: 10px;
    }
    .chatbot {
        bottom: 30px;
    }

    .chatbot svg {
        width: 45px;
        height: 45px;
    }

    .accessibility-menu {
        width: 280px;
        height: 280px;
        padding: 25px 20px;
        bottom: 50px;
        right: -40px;
    }

    .menu-items {
        max-width: 230px;
    }

    .menu-item {
        font-size: 15px;
        padding: 10px;
    }

    .menu-item svg {
        width: 60px;
        height: 60px;
    }

    .menu-item:nth-child(1) {
        top: -5%;
        left: 2%;
    }

    .menu-item:nth-child(2) {
        top: 25%;
        left: -8%;
    }

    .menu-item:nth-child(3) {
        top: 55%;
        left: 4%;
    }

    .close-btn {
        bottom: 25px;
        right: 55px;
        width: 28px;
        height: 28px;
    }

    .close-btn::before,
    .close-btn::after {
        width: 14px;
    }
}
