/*--------------------------------------------------------------
Floating Actions
--------------------------------------------------------------*/
@font-face {
    font-family: "IRANYekanX";
    src: url("./fonts/IRANYekanX/IRANYekanXVF.woff2") format("woff2");
    font-weight: 100 1000;
    font-style: normal;
    font-display: swap;
}
.asanwp-floating-actions {
    position: fixed;
    z-index: 99999;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: IRANYekanX
}
.asanwp-floating-actions.bottom-right {
    right: 20px;
    bottom: 20px;
}
.asanwp-floating-actions.bottom-left {
    left: 20px;
    bottom: 20px;
    align-items: flex-start;
}
@media (max-width: 767px) {
    .asanwp-floating-actions.bottom-right {
        bottom: 85px;
    }
    .asanwp-floating-actions.bottom-left {
        bottom: 85px;
    }
}
.asanwp-floating-actions.middle-right {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.asanwp-floating-actions.middle-left {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    align-items: flex-start;
}
.floating-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 3;
}
.floating-panel {
    position: absolute;
    bottom: 75px;
    right: 0;
}
.asanwp-floating-actions.bottom-left .floating-panel {
    left: 0;
    right: auto;
}
.asanwp-floating-actions.middle-right .floating-panel {
    right: 70px;
    bottom: 0;
}
.asanwp-floating-actions.middle-left .floating-panel {
    left: 70px;
    right: auto;
    bottom: 0;
}
/*--------------------------------------------------------------
Toggle
--------------------------------------------------------------*/
.asanwp-floating-actions .floating-toggle {
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4f46e5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
	border: none !important;
}
.asanwp-floating-actions .floating-toggle:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}
.floating-toggle .floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #fff;
}
.floating-toggle .floating-icon svg {
    width: 26px;
    height: 26px;
    display: block;
    fill: currentColor;
}
/*--------------------------------------------------------------
Panel
--------------------------------------------------------------*/
.asanwp-floating-actions .floating-panel {
    width: 380px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: 0.35s ease;
}
.asanwp-floating-actions.open .floating-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.asanwp-floating-actions .floating-header {
    padding: 20px !important;
    background: #4f46e5;
    color: #fff;
}
.asanwp-floating-actions .floating-header h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}
.asanwp-floating-actions .floating-header p {
    margin: 0;
    font-size: 13px;
    opacity: 0.85;
}
/*--------------------------------------------------------------
Items
--------------------------------------------------------------*/
.asanwp-floating-actions .floating-items {
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 10px;
}
.asanwp-floating-actions .floating-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #111827;
    transition: 0.25s ease;
    background: #fff;
    border: 1px solid #f3f4f6;
}
.asanwp-floating-actions .floating-item:hover {
    background: #f9fafb;
    transform: translateX(4px);
    border-color: var(--service-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
/*--------------------------------------------------------------
Icon
--------------------------------------------------------------*/
.asanwp-floating-actions .floating-item-icon {
    width: 50px;
    height: 50px;
    background: var(--service-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M0,11C0,3,3,0,11,0s11,3,11,11-3,11-11,11S0,19,0,11'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M0,11C0,3,3,0,11,0s11,3,11,11-3,11-11,11S0,19,0,11'/%3E%3C/svg%3E") center/contain no-repeat;
}
.asanwp-floating-actions .floating-item-icon img {
    width: 22px;
    height: 22px;
    display: block;
    filter: brightness(0) invert(1);
}
/*--------------------------------------------------------------
Content
--------------------------------------------------------------*/
.asanwp-floating-actions .floating-item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.asanwp-floating-actions .floating-item-content strong {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}
.asanwp-floating-actions .floating-item-content small {
    margin-top: 3px;
    font-size: 14px;
    color: #343435;
    line-height: 1.4;
    font-weight: 400;
}
/*--------------------------------------------------------------
Animation
--------------------------------------------------------------*/
.asanwp-floating-actions .floating-toggle {
    position: relative;
    overflow: hidden;
}
/* Ripple */
.asanwp-floating-actions .floating-toggle:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: floatingPulse 2.4s infinite;
}
/* Hover */
.asanwp-floating-actions .floating-toggle:hover {
    transform: translateY(-3px) scale(1.05);
}
/* Rotate */
.asanwp-floating-actions.open .floating-toggle {
    transform: rotate(45deg);
}
/* Floating panel */
.asanwp-floating-actions .floating-panel {
    transform-origin: bottom right;
}
.asanwp-floating-actions.bottom-left .floating-panel {
    transform-origin: bottom left;
}
/* Item animation */
.asanwp-floating-actions.open .floating-item {
    animation: floatingItem 0.45s ease both;
}
.asanwp-floating-actions.open .floating-item:nth-child(1) {
    animation-delay: 0.05s;
}
.asanwp-floating-actions.open .floating-item:nth-child(2) {
    animation-delay: 0.1s;
}
.asanwp-floating-actions.open .floating-item:nth-child(3) {
    animation-delay: 0.15s;
}
.asanwp-floating-actions.open .floating-item:nth-child(4) {
    animation-delay: 0.2s;
}
.asanwp-floating-actions.open .floating-item:nth-child(5) {
    animation-delay: 0.25s;
}
/*--------------------------------------------------------------
Keyframes
--------------------------------------------------------------*/
@keyframes floatingPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes floatingItem {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Bubble */
.floating-bubble {
    position: absolute;
    bottom: 82px;
    right: 0;
    width: 240px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    animation: bubbleIn 0.5s ease forwards, bubbleOut 0.5s ease forwards 6s;
    z-index: 2;
}
/* Ã˜Â­Ã˜Â§Ã™â€žÃ˜ÂªÃ¢â‚¬Å’Ã™â€¡Ã˜Â§Ã›Å’ Ã˜Â³Ã™â€¦Ã˜Âª Ãšâ€ Ã™Â¾ */
.asanwp-floating-actions.bottom-left .floating-bubble,
.asanwp-floating-actions.middle-left .floating-bubble {
    left: 70px;
    right: auto;
}
/* Ã˜Â­Ã˜Â§Ã™â€žÃ˜ÂªÃ¢â‚¬Å’Ã™â€¡Ã˜Â§Ã›Å’ Ã˜Â³Ã™â€¦Ã˜Âª Ã˜Â±Ã˜Â§Ã˜Â³Ã˜Âª */
.asanwp-floating-actions.bottom-right .floating-bubble,
.asanwp-floating-actions.middle-right .floating-bubble {
    right: 0;
    left: auto;
}
.floating-bubble strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
}
.floating-bubble span {
    display: block;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}
@keyframes bubbleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bubbleOut {
    to {
        opacity: 0;
        transform: translateY(10px);
    }
}
.floating-item-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: currentColor;
}
.floating-item-icon {
    color: #fff;
}
/* =====================================================
   STYLE : MODERN
===================================================== */
.asanwp-floating-actions.modern .floating-toggle {
    background: linear-gradient(135deg, #6366f1, #4f46e5, #4338ca) !important;
    color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(79, 70, 229, 0.28),
        0 8px 18px rgba(79, 70, 229, 0.18);
    transition: 0.3s;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M0,11C0,3,3,0,11,0s11,3,11,11-3,11-11,11S0,19,0,11'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M0,11C0,3,3,0,11,0s11,3,11,11-3,11-11,11S0,19,0,11'/%3E%3C/svg%3E") center/contain no-repeat;
}
.asanwp-floating-actions.modern .floating-toggle:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 28px 60px rgba(79, 70, 229, 0.38);
}
.asanwp-floating-actions.modern .floating-icon {
    color: #fff;
}
/* Panel */
.asanwp-floating-actions.modern .floating-panel {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: none;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}
/* Header */
.asanwp-floating-actions.modern .floating-header {
    padding: 26px;
    background: linear-gradient(135deg, #6366f1, #4f46e5, #4338ca);
    position: relative;
}
.asanwp-floating-actions.modern .floating-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}
.asanwp-floating-actions.modern .floating-header h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.asanwp-floating-actions.modern .floating-header p {
    color: rgba(255, 255, 255, 0.85);
}
/* Items */
.asanwp-floating-actions.modern .floating-items {
    padding: 16px;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}
.asanwp-floating-actions.modern .floating-item {
    background: #fff;
    border: 1px solid rgba(99, 102, 241, 0.08);
    border-radius: 20px;
    padding: 14px;
    transition: 0.25s;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}
.asanwp-floating-actions.modern .floating-item:last-child {
    margin-bottom: 0;
}
.asanwp-floating-actions.modern .floating-item:hover {
    background: #eef2ff;
    border-color: #6366f1;
    transform: translateX(6px);
    box-shadow: 0 14px 26px rgba(79, 70, 229, 0.12);
}
.asanwp-floating-actions.modern .floating-item-icon {
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.14);
}
.asanwp-floating-actions.modern .floating-item-content strong {
    font-size: 15px;
    font-weight: 700;
    color: #1e1b4b;
}
.asanwp-floating-actions.modern .floating-item-content small {
    color: #6b7280;
}
/* =====================================================
   STYLE : MINIMAL COFFEE
===================================================== */
.asanwp-floating-actions.minimal .floating-toggle {
    background: linear-gradient(135deg, #cd7a66, #914c2c) !important;
    color: #f8f4ef;
    border: none;
    box-shadow: 0 10px 30px rgba(92, 64, 51, 0.3);
    transition: 0.3s;
}
.asanwp-floating-actions.minimal .floating-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgb(120 67 42 / 60%);
}
.asanwp-floating-actions.minimal .floating-icon {
    color: #f8f4ef;
}
.asanwp-floating-actions.minimal .floating-panel {
    background: #f8f4ef;
    border: 1px solid rgba(166, 123, 91, 0.18);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(92, 64, 51, 0.15);
    overflow: hidden;
}
.asanwp-floating-actions.minimal .floating-header {
    background: linear-gradient(47deg, #c3ad92, #614b32);
    border-bottom: 1px solid rgb(166 123 91 / 60%);
}
.asanwp-floating-actions.minimal .floating-title {
    color: #5c4033;
}
.asanwp-floating-actions.minimal .floating-description {
    color: #8a6f63;
}
.asanwp-floating-actions.minimal .floating-items {
    padding: 10px;
}
.asanwp-floating-actions.minimal .floating-item {
    border-radius: 16px;
    transition: 0.25s;
}
.asanwp-floating-actions.minimal .floating-item:hover {
    background: #efe5da;
    transform: translateX(4px);
}
.asanwp-floating-actions.minimal .floating-item-content strong {
    color: #5c4033;
    font-weight: 600;
}
.asanwp-floating-actions.minimal .floating-item-content small {
    color: #8a6f63;
}
.asanwp-floating-actions.minimal .floating-item-icon {
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(92, 64, 51, 0.18);
}
/* =====================================================
   STYLE : ROUNDED
===================================================== */
.asanwp-floating-actions.rounded .floating-toggle {
    background: linear-gradient(135deg, #16c784, #0e9f6e) !important;
    color: #fff;
    border: none;
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.35);
    border-radius: 18px;
}
.asanwp-floating-actions.rounded .floating-panel {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}
/* Header */
.asanwp-floating-actions.rounded .floating-header {
    padding: 24px;
    background: linear-gradient(135deg, #16c784, #0e9f6e);
}
.asanwp-floating-actions.rounded .floating-header p {
    color: rgba(255, 255, 255, 0.85);
}
/* Items */
.asanwp-floating-actions.rounded .floating-items {
    padding: 14px;
    background: #a1e5ce;
}
.asanwp-floating-actions.rounded .floating-item {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(16, 199, 132, 0.08);
    transition: 0.25s;
}
.asanwp-floating-actions.rounded .floating-item:last-child {
    margin-bottom: 0;
}
.asanwp-floating-actions.rounded .floating-item:hover {
    background: #ecfdf5;
    border-color: #16c784;
    transform: translateX(5px);
}
.asanwp-floating-actions.rounded .floating-item-icon {
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(16, 199, 132, 0.18);
}
.asanwp-floating-actions.rounded .floating-item-content strong {
    color: #111827;
    font-weight: 700;
}
.asanwp-floating-actions.rounded .floating-item-content small {
    color: #6b7280;
}
/* =====================================================
   STYLE : GLASS
===================================================== */
.asanwp-floating-actions.glass .floating-toggle {
    background: rgb(15 2 43 / 23%) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}
.asanwp-floating-actions.glass .floating-panel {
    background: rgb(15 2 43 / 23%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    color: #fff;
}
.asanwp-floating-actions.glass .floating-header {
    padding: 20px;
    background: rgb(53 1 164 / 56%);
    color: #fff;
}
.asanwp-floating-actions.glass .floating-header p {
    color: #e5e7eb;
}
.asanwp-floating-actions.glass .floating-item {
    background: rgb(15 2 43 / 0%);
}
.asanwp-floating-actions.glass .floating-item:hover {
    background: rgb(255 255 255 / 10%);
}
/* =====================================================
   STYLE : DARK
===================================================== */
.asanwp-floating-actions.dark .floating-toggle {
    background: linear-gradient(135deg, #1f2937, #111827) !important;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.asanwp-floating-actions.dark .floating-toggle:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55), 0 8px 18px rgba(0, 0, 0, 0.3);
}
.asanwp-floating-actions.dark .floating-panel {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.asanwp-floating-actions.dark .floating-header {
    background: linear-gradient(180deg, #1f2937, #161f2d);
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.asanwp-floating-actions.dark .floating-header h4 {
    color: #ffffff;
    font-weight: 600;
}
.asanwp-floating-actions.dark .floating-header p {
    color: #9ca3af;
}
.asanwp-floating-actions.dark .floating-items {
    background: #111827;
}
.asanwp-floating-actions.dark .floating-item,
.asanwp-floating-actions.dark .floating-faq-item {
    background: transparent;
    border-radius: 16px;
    transition: all 0.25s ease;
}
.asanwp-floating-actions.dark .floating-faq-item {
    border:1px solid #a7a7a7
}
.asanwp-floating-actions.dark .floating-faq-question,
.asanwp-floating-actions.dark .floating-faq-answer {
    color:#cfcfcf
}
.asanwp-floating-actions.dark .floating-item:hover,
.asanwp-floating-actions.dark .floating-faq-question:hover {
    background: #1f2937;
}
.asanwp-floating-actions.dark .floating-item-content strong {
    color: #f9fafb;
    font-weight: 600;
}
.asanwp-floating-actions.dark .floating-item-content small {
    color: #9ca3af;
}
.asanwp-floating-actions.dark .floating-item-icon {
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.asanwp-floating-actions.dark .floating-footer {
    background: #161f2d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/* =====================================================
   STYLE : GRADIENT
===================================================== */
.asanwp-floating-actions.gradient .floating-toggle {
    background: linear-gradient(135deg,
            #ec4899 0%,
            #8b5cf6 45%,
            #3b82f6 100%) !important;
    color: #fff;
    border: none;
    box-shadow: 0 18px 45px rgba(99, 102, 241, 0.35),
        0 6px 18px rgba(99, 102, 241, 0.2);
    border-radius: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M0,11C0,3,3,0,11,0s11,3,11,11-3,11-11,11S0,19,0,11'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M0,11C0,3,3,0,11,0s11,3,11,11-3,11-11,11S0,19,0,11'/%3E%3C/svg%3E") center/contain no-repeat;
}
.asanwp-floating-actions.gradient .floating-panel {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.18);
}
/* Header */
.asanwp-floating-actions.gradient .floating-header {
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
    padding: 24px;
    position: relative;
}
.asanwp-floating-actions.gradient .floating-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}
.asanwp-floating-actions.gradient .floating-header h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.asanwp-floating-actions.gradient .floating-header p {
    color: rgba(255, 255, 255, 0.88);
}
/* Items */
.asanwp-floating-actions.gradient .floating-items {
    padding: 14px;
    background: linear-gradient(180deg, #fdfdff, #f5f7ff);
}
.asanwp-floating-actions.gradient .floating-item {
    background: #fff;
    border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 18px;
    transition: 0.25s;
}
.asanwp-floating-actions.gradient .floating-item:last-child {
    margin-bottom: 0;
}
.asanwp-floating-actions.gradient .floating-item:hover {
    background: linear-gradient(135deg, #fdf2f8, #f3f4ff);
    border-color: #8b5cf6;
    transform: translateX(5px);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.1);
}
.asanwp-floating-actions.gradient .floating-item-icon {
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.12);
}
.asanwp-floating-actions.gradient .floating-item-content strong {
    color: #312e81;
    font-weight: 700;
}
.asanwp-floating-actions.gradient .floating-item-content small {
    color: #6b7280;
}
/* =====================================================
   STYLE : NEUMORPHISM
===================================================== */
.asanwp-floating-actions.neumorphism .floating-toggle {
    background: #eef2f7 !important;
    color: #4b5563;
    border: none;
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1),
        -8px -8px 18px rgba(255, 255, 255, 0.95);
}
.asanwp-floating-actions.neumorphism .floating-panel {
    background: #eef2f7;
    border: none;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.08),
        -14px -14px 28px rgba(255, 255, 255, 0.95);
}
.asanwp-floating-actions.neumorphism .floating-toggle .floating-icon {
    color: #adadad;
}
/* Header */
.asanwp-floating-actions.neumorphism .floating-header {
    padding: 24px;
    background: #eef2f7;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.9),
        inset -2px -2px 4px rgba(0, 0, 0, 0.03);
}
.asanwp-floating-actions.neumorphism .floating-header h4 {
    color: #374151;
    font-size: 18px;
    font-weight: 700;
}
.asanwp-floating-actions.neumorphism .floating-header p {
    color: #6b7280;
}
/* Items */
.asanwp-floating-actions.neumorphism .floating-items {
    padding: 14px;
    background: #eef2f7;
}
.asanwp-floating-actions.neumorphism .floating-item {
    background: #eef2f7;
    border: none;
    border-radius: 18px;
    transition: 0.25s;
    box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.06),
        -6px -6px 14px rgba(255, 255, 255, 0.9);
}
.asanwp-floating-actions.neumorphism .floating-item:last-child {
    margin-bottom: 0;
}
.asanwp-floating-actions.neumorphism .floating-item:hover {
    transform: translateY(-2px);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.05),
        inset -3px -3px 6px rgba(255, 255, 255, 0.95);
}
.asanwp-floating-actions.neumorphism .floating-item-icon {
    border-radius: 16px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08),
        -4px -4px 10px rgba(255, 255, 255, 0.95);
}
.asanwp-floating-actions.neumorphism .floating-item-content strong {
    color: #374151;
    font-weight: 700;
}
.asanwp-floating-actions.neumorphism .floating-status-content small {
    color: #1f2937;
}
.asanwp-floating-actions.neumorphism .floating-status-online {
    background: #ffffff;
}
.asanwp-floating-actions.neumorphism .floating-status-online strong {
    color: #02a73f;
}
.asanwp-floating-actions.neumorphism .floating-status-online .floating-status-dot {
    background: #02a73f;
}
/* =====================================================
   STYLE : OUTLINE
===================================================== */
.asanwp-floating-actions.outline .floating-toggle {
    background: #fff !important;
    border: 2px solid #4f46e5 !important;
    color: #4f46e5;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.12);
    transition: 0.3s;
}
.asanwp-floating-actions.outline .floating-toggle:hover {
    background: #4f46e5 !important;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.25);
}
.asanwp-floating-actions.outline .floating-icon {
    color: inherit;
}
.asanwp-floating-actions.outline .floating-panel {
    background: #fff;
    border: 2px solid #4f46e5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.12);
}
/* Header */
.asanwp-floating-actions.outline .floating-header {
    padding: 24px;
    background: #eef2ff;
    border-bottom: 2px solid #4f46e5;
}
.asanwp-floating-actions.outline .floating-header h4 {
    color: #312e81;
    font-size: 18px;
    font-weight: 700;
}
.asanwp-floating-actions.outline .floating-header p {
    color: #4f46e5;
}
/* Items */
.asanwp-floating-actions.outline .floating-items {
    padding: 14px;
    background: #fff;
}
.asanwp-floating-actions.outline .floating-item {
    background: #fff;
    border: 1px solid #e0e7ff;
    border-radius: 16px;
    transition: 0.25s;
}
.asanwp-floating-actions.outline .floating-item:last-child {
    margin-bottom: 0;
}
.asanwp-floating-actions.outline .floating-item:hover {
    background: #eef2ff;
    border-color: #4f46e5;
    transform: translateX(5px);
}
.asanwp-floating-actions.outline .floating-item-content strong {
    color: #312e81;
    font-weight: 700;
}
.asanwp-floating-actions.outline .floating-item-content small {
    color: #6b7280;
}
.asanwp-floating-actions.outline .floating-status-content small {
    color: #1f2937;
}
.asanwp-floating-actions.outline .floating-status-online {
    background: #ffffff;
}
.asanwp-floating-actions.outline .floating-status-online strong {
    color: #02a73f;
}
.asanwp-floating-actions.outline .floating-status-online .floating-status-dot {
    background: #02a73f;
}
/* =====================================================
   STYLE : MATERIAL
===================================================== */
.asanwp-floating-actions.material .floating-toggle {
    background: linear-gradient(135deg, #4285f4, #1a73e8) !important;
    color: #fff;
    border: none;
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(26, 115, 232, 0.28),
        0 4px 10px rgba(26, 115, 232, 0.18);
    transition: 0.3s;
}
.asanwp-floating-actions.material .floating-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(26, 115, 232, 0.35),
        0 8px 18px rgba(26, 115, 232, 0.2);
}
.asanwp-floating-actions.material .floating-panel {
    background: #f8f9fc;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
/* Header */
.asanwp-floating-actions.material .floating-header {
    padding: 26px;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
}
.asanwp-floating-actions.material .floating-header h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.asanwp-floating-actions.material .floating-header p {
    color: rgba(255, 255, 255, 0.85);
}
/* Items */
.asanwp-floating-actions.material .floating-items {
    padding: 14px;
    background: #f8f9fc;
}
.asanwp-floating-actions.material .floating-item {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    transition: 0.25s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}
.asanwp-floating-actions.material .floating-item:last-child {
    margin-bottom: 0;
}
.asanwp-floating-actions.material .floating-item:hover {
    background: #e8f0fe;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.12);
}
.asanwp-floating-actions.material .floating-item-icon {
    border-radius: 16px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.asanwp-floating-actions.material .floating-item-content strong {
    font-weight: 700;
    color: #202124;
}
.asanwp-floating-actions.material .floating-item-content small {
    color: #5f6368;
}
/* Footer */
.asanwp-floating-actions.material .floating-footer {
    background: #f1f3f4;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
/* =====================================================
   STYLE : SOFT UI
===================================================== */
.asanwp-floating-actions.soft .floating-toggle {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff) !important;
    color: #4338ca;
    border: none;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.18),
        0 2px 8px rgba(255, 255, 255, 0.9) inset;
    transition: 0.3s;
}
.asanwp-floating-actions.soft .floating-toggle:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #4f46e5, #6366f1) !important;
    color: #fff;
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.3);
}
.asanwp-floating-actions.soft .floating-toggle:hover .floating-icon {
    color: #fff;
}
.asanwp-floating-actions.soft .floating-icon {
    color: inherit;
}
.asanwp-floating-actions.soft .floating-panel {
    background: #f8fafc;
    border-radius: 28px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.12);
}
/* Header */
.asanwp-floating-actions.soft .floating-header {
    padding: 24px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}
.asanwp-floating-actions.soft .floating-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #312e81;
}
.asanwp-floating-actions.soft .floating-header p {
    color: #6366f1;
}
/* Items */
.asanwp-floating-actions.soft .floating-items {
    padding: 14px;
    background: #f8fafc;
}
.asanwp-floating-actions.soft .floating-item {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    transition: 0.25s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.asanwp-floating-actions.soft .floating-item:last-child {
    margin-bottom: 0;
}
.asanwp-floating-actions.soft .floating-item:hover {
    background: #eef2ff;
    border-color: #6366f1;
    transform: translateX(5px);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.1);
}
.asanwp-floating-actions.soft .floating-item-icon {
    border-radius: 16px;
    box-shadow: 0 6px 14px rgba(79, 70, 229, 0.1);
}
.asanwp-floating-actions.soft .floating-item-content strong {
    color: #1f2937;
    font-weight: 700;
}
.asanwp-floating-actions.soft .floating-item-content small {
    color: #6b7280;
}
.asanwp-floating-actions.soft .floating-status-content small {
    color: #1f2937;
}
.asanwp-floating-actions.soft .floating-status-online {
    background: #ffffff;
}
.asanwp-floating-actions.soft .floating-status-online strong {
    color: #02a73f;
}
.asanwp-floating-actions.soft .floating-status-online .floating-status-dot {
    background: #02a73f;
}
/* =====================================================
   STYLE : WHATSAPP
===================================================== */
.asanwp-floating-actions.whatsapp .floating-toggle {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    color: #fff;
    border: none;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28),
        0 4px 10px rgba(18, 140, 126, 0.18);
    transition: 0.3s;
}
.asanwp-floating-actions.whatsapp .floating-toggle:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #2eea74, #16a085) !important;
    box-shadow: 0 24px 55px rgba(37, 211, 102, 0.4);
}
.asanwp-floating-actions.whatsapp .floating-icon {
    color: #fff;
}
.asanwp-floating-actions.whatsapp .floating-panel {
    background: #f7fff9;
    border: none;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(18, 140, 126, 0.18);
}
/* Header */
.asanwp-floating-actions.whatsapp .floating-header {
    padding: 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
}
.asanwp-floating-actions.whatsapp .floating-header h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.asanwp-floating-actions.whatsapp .floating-header p {
    color: rgba(255, 255, 255, 0.88);
}
/* Items */
.asanwp-floating-actions.whatsapp .floating-items {
    padding: 14px;
    background: #f7fff9;
}
.asanwp-floating-actions.whatsapp .floating-item {
    background: #fff;
    border: 1px solid rgba(37, 211, 102, 0.08);
    border-radius: 18px;
    padding: 12px;
    transition: 0.25s;
    box-shadow: 0 4px 10px rgba(18, 140, 126, 0.05);
}
.asanwp-floating-actions.whatsapp .floating-item:last-child {
    margin-bottom: 0;
}
.asanwp-floating-actions.whatsapp .floating-item:hover {
    background: #effff3;
    border-color: #25d366;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.12);
}
.asanwp-floating-actions.whatsapp .floating-item-icon {
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.15);
}
.asanwp-floating-actions.whatsapp .floating-item-content strong {
    color: #075e54;
    font-weight: 700;
}
.asanwp-floating-actions.whatsapp .floating-item-content small {
    color: #5f7f73;
}
/* Footer */
.asanwp-floating-actions.whatsapp .floating-footer {
    background: #f0fff4;
    border-top: 1px solid rgba(37, 211, 102, 0.1);
}
/* =====================================================
   STYLE : TELEGRAM
===================================================== */
.asanwp-floating-actions.telegram .floating-toggle {
    background: linear-gradient(135deg, #2aabee, #229ed9) !important;
    color: #fff;
    border: none;
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(34, 158, 217, 0.3),
        0 4px 12px rgba(34, 158, 217, 0.18);
    transition: 0.3s;
}
.asanwp-floating-actions.telegram .floating-toggle:hover {
    background: linear-gradient(135deg, #36b8ff, #2aabee) !important;
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(34, 158, 217, 0.4);
}
.asanwp-floating-actions.telegram .floating-icon {
    color: #fff;
}
/* Panel */
.asanwp-floating-actions.telegram .floating-panel {
    background: #f8fcff;
    border: none;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(34, 158, 217, 0.15);
}
/* Header */
.asanwp-floating-actions.telegram .floating-header {
    padding: 24px;
    background: linear-gradient(135deg, #2aabee, #229ed9);
}
.asanwp-floating-actions.telegram .floating-header h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.asanwp-floating-actions.telegram .floating-header p {
    color: rgba(255, 255, 255, 0.9);
}
/* Items */
.asanwp-floating-actions.telegram .floating-items {
    padding: 14px;
    background: #f8fcff;
}
.asanwp-floating-actions.telegram .floating-item {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    border: 1px solid rgba(34, 158, 217, 0.08);
    transition: 0.25s;
    box-shadow: 0 3px 10px rgba(34, 158, 217, 0.05);
}
.asanwp-floating-actions.telegram .floating-item:last-child {
    margin-bottom: 0;
}
.asanwp-floating-actions.telegram .floating-item:hover {
    background: #eaf8ff;
    border-color: #2aabee;
    transform: translateX(5px);
    box-shadow: 0 10px 22px rgba(34, 158, 217, 0.12);
}
.asanwp-floating-actions.telegram .floating-item-icon {
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(34, 158, 217, 0.14);
}
.asanwp-floating-actions.telegram .floating-item-content strong {
    color: #1c4e80;
    font-weight: 700;
}
.asanwp-floating-actions.telegram .floating-item-content small {
    color: #5e7d99;
}
/* Footer */
.asanwp-floating-actions.telegram .floating-footer {
    background: #f2faff;
    border-top: 1px solid rgba(34, 158, 217, 0.08);
}
.floating-header-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: rgb(255 255 255 / 50%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.floating-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.floating-header {
    padding: 24px;
    border-radius: 18px 18px 0 0;
}
.floating-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.floating-header-content {
    flex: 1;
}
.floating-header-center {
    flex-direction: column;
    text-align: center;
}
.floating-header-center .floating-header-content {
    text-align: right;
    width: 100%;
}
.floating-header-left {
    flex-direction: row-reverse;
}
.floating-header-right {
    flex-direction: row;
}
.floating-header-content h4,
.floating-header-content p {
    color: inherit;
}
.floating-anim-none {}
.floating-anim-pulse {
    animation: asanwpPulse 2s infinite;
}
@keyframes asanwpPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}
.floating-anim-bounce {
    animation: asanwpBounce 1.8s infinite;
}
@keyframes asanwpBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.floating-anim-heartbeat {
    animation: asanwpHeartbeat 1.4s infinite;
}
@keyframes asanwpHeartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.15);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.15);
    }
    70% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}
.floating-anim-floating {
    animation: asanwpFloating 3s ease-in-out infinite;
}
@keyframes asanwpFloating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}
.floating-anim-shake {
    animation: asanwpShake 3s infinite;
}
@keyframes asanwpShake {
    0%,
    100% {
        transform: translateX(0);
    }
    5% {
        transform: translateX(-4px);
    }
    10% {
        transform: translateX(4px);
    }
    15% {
        transform: translateX(-4px);
    }
    20% {
        transform: translateX(4px);
    }
    25% {
        transform: translateX(0);
    }
}
.floating-anim-rotate {
    animation: asanwpRotate 5s linear infinite;
}
@keyframes asanwpRotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.floating-anim-glow {
    animation: asanwpGlow 2s infinite;
}
@keyframes asanwpGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}
.floating-anim-zoom {
    animation: asanwpZoom 2s infinite;
}
@keyframes asanwpZoom {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.12);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}
.floating-anim-wobble {
    animation: asanwpWobble 2.5s ease-in-out infinite;
}
@keyframes asanwpWobble {
    0% {
        transform: translateX(0) rotate(0);
    }
    15% {
        transform: translateX(-6px) rotate(-5deg);
    }
    30% {
        transform: translateX(5px) rotate(4deg);
    }
    45% {
        transform: translateX(-4px) rotate(-3deg);
    }
    60% {
        transform: translateX(3px) rotate(2deg);
    }
    75% {
        transform: translateX(-2px) rotate(-1deg);
    }
    100% {
        transform: translateX(0) rotate(0);
    }
}
.floating-anim-swing {
    animation: asanwpSwing 2.5s ease-in-out infinite;
    transform-origin: top center;
}
@keyframes asanwpSwing {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(10deg);
    }
    40% {
        transform: rotate(-8deg);
    }
    60% {
        transform: rotate(6deg);
    }
    80% {
        transform: rotate(-3deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
/* =====================================================
   FLOATING STATUS
===================================================== */
.floating-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: max-content;
    max-width: 100%;
}
.floating-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}
.floating-status-content {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}
.floating-status-content strong {
    font-size: 13px;
    font-weight: 600;
}
.floating-status-content small {
    font-size: 11px;
    opacity: 0.75;
}
/* =====================================================
   ONLINE
===================================================== */
.floating-status-online .floating-status-dot {
    background: #05f95f;
    box-shadow: 0 0 0 0 rgb(5 249 95);
    animation: floating-status-pulse 2s infinite;
}
.floating-status-online strong {
    color: #05f95f;
}
/* =====================================================
   OFFLINE
===================================================== */
.floating-status-offline .floating-status-dot {
    background: #ef4444;
}
.floating-status-offline strong {
    color: #dc2626;
}
/* =====================================================
   PULSE
===================================================== */
@keyframes floating-status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}
.floating-status-online {
    background: rgb(255 255 255 / 29%);
}
.floating-status-offline {
    background: rgb(255 255 255 / 29%);
}


/* ---------- FAQ ---------- */

.floating-faq{
	margin:18px;
	margin-bottom:10px;
}

.floating-faq-title{
	font-size:14px;
	font-weight:700;
	margin-bottom:14px;
	color:#111827;
}

.floating-faq-item{
	background:#fff;
	border:1px solid #eef2f7;
	border-radius:18px;
	margin-bottom:10px;
	overflow:hidden;
	transition:.25s;
	box-shadow:0 6px 18px rgba(15,23,42,.04);
}

.floating-faq-item:hover{
	border-color:#dbeafe;
	box-shadow:0 12px 24px rgba(59,130,246,.08);
}

.floating-faq-question{
	display:flex;
	align-items:center;
	justify-content:space-between;
	cursor:pointer;
	padding:16px 18px;
	font-size:14px;
	font-weight:600;
	color:#1f2937;
	transition:.25s;
}

.floating-faq-icon {
    font-size: 20px;
    color: #9ca3af;
    transition: .35s ease;
    flex-shrink: 0;
    line-height: 1;
}

.floating-faq-item.active .floating-faq-icon{
	transform:rotate(180deg);
	color:#4f46e5;
}

.floating-faq-question:hover{
	background:#f8fafc;
}

.floating-faq-question i{
	font-size:15px;
	color:#6b7280;
	transition:.30s;
}

.floating-faq-answer{
	display:none;
	padding:0 18px 18px;
	font-size:13px;
	line-height:1.9;
	color:#6b7280;
	border-top:1px solid #f1f5f9;
    text-align: justify;
}

.floating-faq-item.active{
	border-color:#c7d2fe;
	box-shadow:0 10px 30px rgba(79,70,229,.12);
}

.floating-contact-view{
    display:none;
}

.floating-contact-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin:10px 18px 10px 18px;
    justify-content: space-between;
}

.floating-back-faq{
    border:0;
    background:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:600;
}

.floating-faq-footer{
    padding-top:16px;
    text-align:center;
}

.floating-faq-footer p{
    font-size:13px;
    color:#6b7280;
    margin-bottom: 10px;
}

.floating-show-contact{
    width:100%;
    height:44px;

    border:0;
    border-radius:14px;

    background:#4f46e5;
    color:#fff;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    transition:.25s;
}

.floating-show-contact:hover{
    background:#4338ca;
}

.floating-contact-view{
	display:none;
}

.floating-contact-header h4 {
    font-size: 15px
}

.floating-back-faq{
	display:flex;
	align-items:center;
	gap:8px;

	border:0;
	background:transparent;

	cursor:pointer;

	font-size:13px;
	font-weight:600;

	color:#4f46e5;

	padding:0;
}

.floating-back-faq i{
	font-size:13px;
}

/* ==========================
   Floating Buttons
========================== */

button:not(.unset):not(.link).floating-show-contact,
button:not(.unset):not(.link).floating-back-faq{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:42px;padding:0 18px;border:1px solid var(--service-color,#4f46e5);border-radius:12px;background: #ffffff00;color:var(--service-color,#4f46e5);font-size:13px;font-weight:600;line-height:1;cursor:pointer;transition:all .25s ease;appearance:none;-webkit-appearance:none;box-shadow:none;margin: 0;}

button:not(.unset):not(.link).floating-show-contact:hover,
button:not(.unset):not(.link).floating-back-faq:hover{

    background:var(--service-color,#4f46e5);
    color:#fff;

}

button:not(.unset):not(.link).floating-show-contact:focus,
button:not(.unset):not(.link).floating-back-faq:focus{

    outline:none;

    box-shadow:0 0 0 3px rgba(79,70,229,.18);

}

.floating-show-contact i,
.floating-back-faq i{

    font-size:12px;

}

.floating-show-contact{

    width:100%;
    margin-top:14px;

}

.floating-back-faq{

    margin-bottom:14px;

}


.floating-faq-items,
.floating-items{

    max-height:390px;
    overflow-y:auto;

}

.floating-faq-items::-webkit-scrollbar,
.floating-items::-webkit-scrollbar{
    width:4px;
}

.floating-faq-items::-webkit-scrollbar-track,
.floating-items::-webkit-scrollbar-track{
    background:transparent;
}

.floating-faq-items::-webkit-scrollbar-thumb,
.floating-items::-webkit-scrollbar-thumb{
    background:#d1d5db;
    border-radius:10px;
}

.floating-faq-items::-webkit-scrollbar-thumb:hover,
.floating-items::-webkit-scrollbar-thumb:hover{
    background:#9ca3af;
}

.floating-faq{
    display:flex;
    flex-direction:column;
    height:100%;
}

.floating-faq-items{

    flex:1;

    overflow-y:auto;

    min-height:0;

}

.floating-faq-footer{

flex-shrink:0;

padding:16px;

background: #ffffff00;

text-align:center;
}

.floating-contact-view{
    display:none;
}

.floating-contact-view.is-default-view{
    display:block;
}

.floating-faq-view.is-hidden-view{
    display:none;
}