/* =========================================================
   SPROIT AI ASSISTANT
   COMPLETE CHATBOT CSS
   Version: 1.4.0
========================================================= */


/* =========================================================
   GLOBAL / NAMESPACE
========================================================= */

#sproit-ai-widget,
#sproit-ai-widget * {
    box-sizing: border-box;
}


#sproit-ai-widget {
    --sproit-purple: #5B2D90;
    --sproit-yellow: #FFB92B;
    --sproit-dark: #17121d;
    --sproit-text: #25202b;
    --sproit-muted: #77717e;
    --sproit-border: #e5e1e8;

    position: fixed;

    left: 24px;
    bottom: 24px;

    z-index: 999999;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}


/* =========================================================
   FLOATING BUTTON
========================================================= */

#sproit-ai-widget .sproit-ai-fab {
    appearance: none;
    -webkit-appearance: none;

    border: 0;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding: 0 18px 0 13px;

    border-radius: 999px;

    background: var(--sproit-purple);
    color: #fff;

    cursor: pointer;

    box-shadow:
        0 12px 35px rgba(91, 45, 144, 0.28);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


#sproit-ai-widget .sproit-ai-fab:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 40px rgba(91, 45, 144, 0.35);
}


#sproit-ai-widget .sproit-ai-fab:focus {
    outline: none;
}


#sproit-ai-widget .sproit-ai-fab b {
    display: block;

    margin: 0;

    color: #fff;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}


/* =========================================================
   FLOATING BUTTON ICON
========================================================= */

#sproit-ai-widget .sproit-ai-fab-icon {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;
}


#sproit-ai-widget .sproit-ai-fab-icon svg {
    width: 19px;
    height: 19px;

    display: block;

    fill: var(--sproit-purple);
}


/* =========================================================
   MAIN PANEL
========================================================= */

#sproit-ai-widget .sproit-ai-panel {
    position: absolute;

    left: 0;
    bottom: 68px;

    width: 390px;

    max-width:
        calc(100vw - 32px);

    height: 620px;

    max-height:
        calc(100vh - 105px);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border:
        1px solid rgba(0, 0, 0, 0.08);

    border-radius: 20px;

    box-shadow:
        0 25px 70px rgba(20, 10, 30, 0.22);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translateY(12px)
        scale(0.97);

    transform-origin:
        bottom left;

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}


/* =========================================================
   PANEL OPEN
========================================================= */

#sproit-ai-widget .sproit-ai-panel.is-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   HEADER
========================================================= */

#sproit-ai-widget .sproit-ai-header {
    flex: 0 0 auto;

    min-height: 70px;

    display: flex;
    align-items: center;

    padding: 12px 14px;

    background:
        linear-gradient(
            135deg,
            #5B2D90 0%,
            #492275 100%
        );

    color: #fff;
}


/* =========================================================
   AI AVATAR
========================================================= */

#sproit-ai-widget .sproit-ai-avatar {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.16);
}


#sproit-ai-widget .sproit-ai-avatar svg {
    width: 25px;
    height: 25px;

    display: block;

    fill: #fff;
}


/* =========================================================
   HEADER TITLE
========================================================= */

#sproit-ai-widget .sproit-ai-title {
    min-width: 0;

    display: flex;
    flex-direction: column;

    margin-left: 11px;
}


#sproit-ai-widget .sproit-ai-title strong {
    display: block;

    margin: 0;

    color: #fff;

    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}


#sproit-ai-widget .sproit-ai-title small {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-top: 3px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 11px;
    line-height: 1;
}


#sproit-ai-widget .sproit-ai-title small i {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    display: block;

    border-radius: 50%;

    background: #66e28b;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

#sproit-ai-widget #sproit-ai-close {
    appearance: none;
    -webkit-appearance: none;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    margin-left: auto;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: transparent;

    color: #fff;

    font-family:
        Arial,
        sans-serif;

    font-size: 29px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


#sproit-ai-widget #sproit-ai-close:hover {
    background:
        rgba(255, 255, 255, 0.14);

    transform:
        rotate(90deg);
}


#sproit-ai-widget #sproit-ai-close:focus {
    outline: none;
}


/* =========================================================
   CONTENT
========================================================= */

#sproit-ai-widget .sproit-ai-content {
    position: relative;

    flex: 1 1 auto;

    min-height: 0;

    background: #fff;
}


/* =========================================================
   LEAD FORM AREA
========================================================= */

#sproit-ai-widget .sproit-ai-lead {
    width: 100%;
    height: 100%;

    overflow-y: auto;

    padding:
        30px 24px 24px;

    background: #fff;
}


/* =========================================================
   LEAD SCROLLBAR
========================================================= */

#sproit-ai-widget .sproit-ai-lead::-webkit-scrollbar {
    width: 5px;
}


#sproit-ai-widget .sproit-ai-lead::-webkit-scrollbar-track {
    background: transparent;
}


#sproit-ai-widget .sproit-ai-lead::-webkit-scrollbar-thumb {
    border-radius: 10px;

    background: #d5cedb;
}


/* =========================================================
   WELCOME ICON
========================================================= */

#sproit-ai-widget .sproit-ai-welcome {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        0 auto 15px;

    border-radius: 50%;

    background:
        rgba(91, 45, 144, 0.09);
}


#sproit-ai-widget .sproit-ai-welcome svg {
    width: 29px;
    height: 29px;

    display: block;

    fill:
        var(--sproit-purple);
}


/* =========================================================
   LEAD TITLE
========================================================= */

#sproit-ai-widget .sproit-ai-lead h3 {
    margin: 0;

    text-align: center;

    color:
        var(--sproit-text);

    font-size: 23px;
    line-height: 1.2;
    font-weight: 800;
}


/* =========================================================
   LEAD DESCRIPTION
========================================================= */

#sproit-ai-widget .sproit-ai-lead > p {
    max-width: 300px;

    margin:
        9px auto 24px;

    text-align: center;

    color:
        var(--sproit-muted);

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   FORM
========================================================= */

#sproit-ai-widget #sproit-ai-lead-form {
    width: 100%;

    margin: 0;
}


/* =========================================================
   FORM LABELS
========================================================= */

#sproit-ai-widget #sproit-ai-lead-form > label {
    display: block;

    margin:
        0 0 15px;

    color:
        var(--sproit-text);

    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   NORMAL INPUTS
========================================================= */

#sproit-ai-widget #sproit-ai-lead-form
> label > input {
    width: 100%;
    height: 47px;

    display: block;

    margin-top: 7px;

    padding:
        0 14px;

    border:
        1px solid var(--sproit-border);

    border-radius: 9px;

    outline: none;

    background: #fff;

    color:
        var(--sproit-text);

    font-family: inherit;

    font-size: 14px;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   NORMAL INPUT FOCUS
========================================================= */

#sproit-ai-widget #sproit-ai-lead-form
> label > input:focus {
    border-color:
        var(--sproit-purple);

    box-shadow:
        0 0 0 3px
        rgba(91, 45, 144, 0.09);
}


/* =========================================================
   INPUT PLACEHOLDER
========================================================= */

#sproit-ai-widget
#sproit-ai-lead-form
> label > input::placeholder {
    color: #aaa4b0;

    opacity: 1;
}


/* =========================================================
   PHONE FIELD
========================================================= */

#sproit-ai-widget .sproit-phone-wrapper {
    width: 100%;

    min-height: 47px;

    display: flex;
    align-items: stretch;

    margin-top: 7px;

    border:
        1px solid var(--sproit-border);

    border-radius: 9px;

    overflow: hidden;

    background: #fff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   PHONE FIELD FOCUS
========================================================= */

#sproit-ai-widget .sproit-phone-wrapper:focus-within {
    border-color:
        var(--sproit-purple);

    box-shadow:
        0 0 0 3px
        rgba(91, 45, 144, 0.09);
}


/* =========================================================
   COUNTRY CODE DROPDOWN
========================================================= */

#sproit-ai-widget .sproit-country-code {
    flex:
        0 0 82px;

    width: 82px;

    min-width: 82px;
    max-width: 82px;

    height: 47px;

    margin: 0;

    padding:
        0 8px;

    border: 0;

    border-right:
        1px solid var(--sproit-border);

    border-radius: 0;

    outline: none;

    background-color:
        #faf9fb;

    color:
        var(--sproit-text);

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    line-height: 47px;

    cursor: pointer;

    appearance: auto;
    -webkit-appearance: auto;
}


/* =========================================================
   COUNTRY CODE FOCUS
========================================================= */

#sproit-ai-widget .sproit-country-code:focus {
    outline: none;

    box-shadow: none;
}


/* =========================================================
   COUNTRY OPTIONS
========================================================= */

#sproit-ai-widget .sproit-country-code option {
    background: #fff;

    color:
        var(--sproit-text);

    font-family: inherit;

    font-size: 13px;
}


/* =========================================================
   PHONE NUMBER INPUT
========================================================= */

#sproit-ai-widget
#sproit-ai-lead-form
.sproit-phone-number {
    flex:
        1 1 auto;

    width: auto;

    min-width: 0;

    height: 47px;

    margin: 0;

    padding:
        0 13px;

    border: 0 !important;

    border-radius: 0 !important;

    outline: none !important;

    background: #fff !important;

    color:
        var(--sproit-text);

    font-family: inherit;

    font-size: 14px;

    line-height: 47px;

    box-shadow: none !important;
}


/* =========================================================
   PHONE PLACEHOLDER
========================================================= */

#sproit-ai-widget .sproit-phone-number::placeholder {
    color: #aaa4b0;

    opacity: 1;
}


/* =========================================================
   PHONE AUTOFILL
========================================================= */

#sproit-ai-widget .sproit-phone-number:-webkit-autofill,
#sproit-ai-widget .sproit-phone-number:-webkit-autofill:hover,
#sproit-ai-widget .sproit-phone-number:-webkit-autofill:focus {
    -webkit-text-fill-color:
        var(--sproit-text);

    box-shadow:
        0 0 0 1000px #fff inset !important;
}


/* =========================================================
   PHONE ERROR
========================================================= */

#sproit-ai-widget
.sproit-phone-wrapper.sproit-phone-error {
    border-color: #d63638;

    box-shadow:
        0 0 0 3px
        rgba(214, 54, 56, 0.08);
}


/* =========================================================
   PHONE HELP TEXT
========================================================= */

#sproit-ai-widget .sproit-phone-help {
    display: block;

    margin-top: 5px;

    color: #99939f;

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================================
   PHONE ERROR TEXT
========================================================= */

#sproit-ai-widget .sproit-phone-error-text {
    display: none;

    margin-top: 5px;

    color: #d63638;

    font-size: 10px;

    line-height: 1.4;
}


#sproit-ai-widget
.sproit-phone-error
+ .sproit-phone-error-text {
    display: block;
}


/* =========================================================
   HIDDEN FULL PHONE
========================================================= */

#sproit-ai-widget #sproit-full-phone {
    display: none !important;
}


/* =========================================================
   START CHAT BUTTON
========================================================= */

#sproit-ai-widget
#sproit-ai-lead-form
> button[type="submit"] {
    width: 100%;

    height: 49px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 4px;

    padding: 0 15px;

    border: 0;

    border-radius: 9px;

    background:
        var(--sproit-purple);

    color: #fff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}


/* =========================================================
   START CHAT HOVER
========================================================= */

#sproit-ai-widget
#sproit-ai-lead-form
> button[type="submit"]:hover {
    background: #492275;

    transform:
        translateY(-1px);
}


/* =========================================================
   START CHAT FOCUS
========================================================= */

#sproit-ai-widget
#sproit-ai-lead-form
> button[type="submit"]:focus {
    outline: none;

    box-shadow:
        0 0 0 3px
        rgba(91, 45, 144, 0.15);
}


/* =========================================================
   START CHAT DISABLED
========================================================= */

#sproit-ai-widget
#sproit-ai-lead-form
> button[type="submit"]:disabled {
    opacity: 0.65;

    cursor: wait;

    transform: none;
}


/* =========================================================
   BUTTON ICON / ARROW
========================================================= */

#sproit-ai-widget
#sproit-ai-lead-form
> button[type="submit"] span {
    color:
        var(--sproit-yellow);

    font-size: 18px;

    line-height: 1;
}


/* =========================================================
   FORM NOTE
========================================================= */

#sproit-ai-widget
#sproit-ai-lead-form
> small {
    display: block;

    margin-top: 12px;

    text-align: center;

    color: #9a949f;

    font-size: 10px;

    line-height: 1.45;
}


/* =========================================================
   CHAT AREA
========================================================= */

#sproit-ai-widget .sproit-ai-chat {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    background:
        #f9f7fb;
}


/* =========================================================
   HIDDEN ELEMENTS
========================================================= */

#sproit-ai-widget .sproit-ai-chat[hidden],
#sproit-ai-widget .sproit-ai-lead[hidden] {
    display: none !important;
}


/* =========================================================
   MESSAGES CONTAINER
========================================================= */

#sproit-ai-widget .sproit-ai-messages {
    flex:
        1 1 auto;

    min-height: 0;

    overflow-y: auto;

    padding:
        18px 14px 20px;
}


/* =========================================================
   MESSAGE SCROLLBAR
========================================================= */

#sproit-ai-widget
.sproit-ai-messages::-webkit-scrollbar {
    width: 5px;
}


#sproit-ai-widget
.sproit-ai-messages::-webkit-scrollbar-track {
    background: transparent;
}


#sproit-ai-widget
.sproit-ai-messages::-webkit-scrollbar-thumb {
    border-radius: 10px;

    background: #d5cedb;
}


/* =========================================================
   MESSAGE ROW
========================================================= */

#sproit-ai-widget .sproit-ai-msg {
    width: 100%;

    display: flex;

    margin-bottom: 12px;
}


/* =========================================================
   AI MESSAGE
========================================================= */

#sproit-ai-widget .sproit-ai-msg.ai {
    justify-content:
        flex-start;
}


/* =========================================================
   USER MESSAGE
========================================================= */

#sproit-ai-widget .sproit-ai-msg.user {
    justify-content:
        flex-end;
}


/* =========================================================
   MESSAGE BUBBLE
========================================================= */

#sproit-ai-widget .sproit-ai-msg > div {
    max-width: 82%;

    padding:
        10px 13px;

    border-radius: 13px;

    font-size: 13px;

    line-height: 1.55;

    white-space: pre-wrap;

    word-break: break-word;

    overflow-wrap: anywhere;
}


/* =========================================================
   AI BUBBLE
========================================================= */

#sproit-ai-widget .sproit-ai-msg.ai > div {
    background: #fff;

    border:
        1px solid #e7e2eb;

    color: #302a35;

    border-bottom-left-radius: 4px;

    box-shadow:
        0 2px 8px
        rgba(20, 10, 30, 0.03);
}


/* =========================================================
   USER BUBBLE
========================================================= */

#sproit-ai-widget .sproit-ai-msg.user > div {
    background:
        var(--sproit-purple);

    color: #fff;

    border-bottom-right-radius: 4px;
}


/* =========================================================
   CHAT INPUT AREA
========================================================= */

#sproit-ai-widget .sproit-ai-input {
    flex:
        0 0 auto;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 11px;

    border-top:
        1px solid #e6e1e9;

    background: #fff;
}


/* =========================================================
   CHAT INPUT
========================================================= */

#sproit-ai-widget .sproit-ai-input input {
    flex:
        1 1 auto;

    width: auto;

    min-width: 0;

    height: 44px;

    margin: 0;

    padding:
        0 13px;

    border:
        1px solid #ddd7e2;

    border-radius: 9px;

    outline: none;

    background: #fff;

    color:
        var(--sproit-text);

    font-family: inherit;

    font-size: 13px;

    box-shadow: none;
}


/* =========================================================
   CHAT INPUT FOCUS
========================================================= */

#sproit-ai-widget .sproit-ai-input input:focus {
    border-color:
        var(--sproit-purple);

    box-shadow:
        0 0 0 3px
        rgba(91, 45, 144, 0.08);
}


/* =========================================================
   CHAT INPUT PLACEHOLDER
========================================================= */

#sproit-ai-widget
.sproit-ai-input
input::placeholder {
    color: #aaa4b0;

    opacity: 1;
}


/* =========================================================
   SEND BUTTON
========================================================= */

#sproit-ai-widget .sproit-ai-input button {
    width: 44px;
    height: 44px;

    flex:
        0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    padding: 0;

    border: 0;

    border-radius: 9px;

    background:
        var(--sproit-purple);

    color: #fff;

    font-size: 17px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}


/* =========================================================
   SEND BUTTON HOVER
========================================================= */

#sproit-ai-widget .sproit-ai-input button:hover {
    background: #492275;

    transform:
        translateY(-1px);
}


/* =========================================================
   SEND BUTTON FOCUS
========================================================= */

#sproit-ai-widget .sproit-ai-input button:focus {
    outline: none;

    box-shadow:
        0 0 0 3px
        rgba(91, 45, 144, 0.14);
}


/* =========================================================
   INLINE LAUNCHER
========================================================= */

.sproit-ai-inline-launcher {
    cursor: pointer;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 600px) {

    #sproit-ai-widget {
        left: 14px;

        right: 14px;

        bottom: 14px;
    }


    #sproit-ai-widget .sproit-ai-panel {
        left: 0;

        right: 0;

        width: 100%;

        max-width: none;

        height:
            min(
                650px,
                calc(100vh - 92px)
            );

        max-height:
            calc(100vh - 92px);
    }


    #sproit-ai-widget .sproit-ai-fab {
        min-height: 50px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 420px) {

    #sproit-ai-widget {
        left: 10px;

        right: 10px;

        bottom: 10px;
    }


    #sproit-ai-widget .sproit-ai-panel {
        bottom: 62px;

        width: 100%;

        border-radius: 17px;

        height:
            calc(100vh - 82px);

        max-height:
            calc(100vh - 82px);
    }


    #sproit-ai-widget .sproit-ai-header {
        min-height: 64px;

        padding:
            10px 11px;
    }


    #sproit-ai-widget .sproit-ai-avatar {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }


    #sproit-ai-widget .sproit-ai-avatar svg {
        width: 23px;
        height: 23px;
    }


    #sproit-ai-widget .sproit-ai-title {
        margin-left: 9px;
    }


    #sproit-ai-widget .sproit-ai-title strong {
        font-size: 14px;
    }


    #sproit-ai-widget .sproit-ai-title small {
        font-size: 10px;
    }


    #sproit-ai-widget #sproit-ai-close {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        font-size: 27px;
    }


    #sproit-ai-widget .sproit-ai-lead {
        padding:
            25px 18px 20px;
    }


    #sproit-ai-widget .sproit-ai-lead h3 {
        font-size: 21px;
    }


    #sproit-ai-widget .sproit-ai-lead > p {
        margin-bottom: 21px;

        font-size: 12px;
    }


    #sproit-ai-widget .sproit-ai-fab {
        min-height: 50px;

        padding-left: 11px;

        padding-right: 15px;
    }


    #sproit-ai-widget .sproit-ai-fab b {
        font-size: 13px;
    }


    #sproit-ai-widget .sproit-ai-msg > div {
        max-width: 88%;
    }


    /* PHONE */

    #sproit-ai-widget .sproit-country-code {
        flex-basis: 78px;

        width: 78px;

        min-width: 78px;
        max-width: 78px;

        padding-left: 7px;

        padding-right: 5px;

        font-size: 12px;
    }


    #sproit-ai-widget .sproit-phone-number {
        padding-left: 11px;

        padding-right: 11px;

        font-size: 13px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 340px) {

    #sproit-ai-widget .sproit-ai-title strong {
        font-size: 13px;
    }


    #sproit-ai-widget .sproit-ai-title small {
        font-size: 10px;
    }


    #sproit-ai-widget .sproit-ai-lead {
        padding-left: 14px;

        padding-right: 14px;
    }


    #sproit-ai-widget .sproit-ai-lead h3 {
        font-size: 20px;
    }


    #sproit-ai-widget .sproit-country-code {
        flex-basis: 70px;

        width: 70px;

        min-width: 70px;
        max-width: 70px;

        padding-left: 5px;

        padding-right: 4px;

        font-size: 11px;
    }


    #sproit-ai-widget .sproit-phone-number {
        padding-left: 9px;

        padding-right: 9px;

        font-size: 13px;
    }


    #sproit-ai-widget .sproit-ai-input {
        padding: 8px;
    }


    #sproit-ai-widget .sproit-ai-input input {
        height: 42px;

        font-size: 12px;
    }


    #sproit-ai-widget .sproit-ai-input button {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }
}


/* =========================================================
   PREVENT WORDPRESS / ELEMENTOR GLOBAL SELECT STYLES
========================================================= */

#sproit-ai-widget select,
#sproit-ai-widget input,
#sproit-ai-widget button {
    font-family: inherit;
}


/* =========================================================
   PREVENT ELEMENTOR BUTTON STYLES
========================================================= */

#sproit-ai-widget button::before,
#sproit-ai-widget button::after {
    display: none !important;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

#sproit-ai-widget button:focus-visible,
#sproit-ai-widget input:focus-visible,
#sproit-ai-widget select:focus-visible {
    outline:
        2px solid
        rgba(91, 45, 144, 0.35);

    outline-offset: 1px;
}


/* =========================================================
   END
========================================================= */