/*
Apply any theme variable overwrites that were set via admin theme settings.
Note: This file is a placeholder, it will be automatically/dynamically overwritten from the theme settings.
This will apply to ANY/ALL themes loaded, and before any of the core files are loaded.
*/

.shareday-guide-strip {
    max-width: 820px;
    margin: 20px auto 28px;
    padding: 0 0 2px;
}

.shareday-guide-strip__bubble {
    width: min(100%, 560px);
    min-height: 74px;
    margin: 0 auto;
    padding: 10px 18px 10px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    box-sizing: border-box;
    border: 1px solid #6ea8c7;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f6ff 0%, #f5fbff 100%);
    box-shadow: 0 8px 18px rgba(38, 105, 143, 0.12);
    color: #6f4358;
}

.shareday-guide-strip__bubble::after {
    content: '';
    position: absolute;
    left: 54px;
    bottom: -19px;
    width: 0;
    height: 0;
    border-top: 20px solid #6ea8c7;
    border-left: 18px solid transparent;
    transform: rotate(7deg);
}

.shareday-guide-strip__bubble::before {
    content: '';
    position: absolute;
    left: 55px;
    bottom: -15px;
    z-index: 1;
    width: 0;
    height: 0;
    border-top: 16px solid #e8f6ff;
    border-left: 15px solid transparent;
    transform: rotate(7deg);
}

.shareday-guide-strip__gifty {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    object-fit: contain;
}

.shareday-guide-strip__intro {
    margin: 0;
    color: #6f4358;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.shareday-guide-strip__copy {
    margin: 4px 0 0;
    color: #866575;
    font-size: 12px;
    line-height: 1.4;
}

.shareday-guide-strip__links {
    width: 100%;
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.shareday-guide-strip__links a {
    min-width: 165px;
    padding: 10px 12px;
    border: 1px solid #e8cfd9;
    border-radius: 10px;
    background: rgba(255, 250, 252, 0.8);
    color: #7a3654;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.shareday-guide-strip__links a:hover,
.shareday-guide-strip__links a:focus-visible {
    border-color: #c796aa;
    background: #fff4f8;
    color: #7a0026;
}

@media screen and (max-width: 760px) {
    .shareday-guide-strip__bubble {
        padding-right: 14px;
    }

    .shareday-guide-strip__links {
        gap: 8px;
    }

    .shareday-guide-strip__links a {
        flex: 1 1 180px;
    }
}
/* test overwrite:
:root {
    --link__pri-clr: red;
    --main-background: yellow;
    --font__pri-clr: black;
}*/
