:root {
    --color1: #333399; /* Default Texts Color */
    --color2: rgba(255, 255, 255, 1); /* Background color */
    --color3: rgb(51 51 153); /* Icons color */
    --color4: #e1e2e7; /* Icons background color */
    --color5: #8a8a8a; /* Close icon */
    --color6: #cacaca; /* Textarea Border color */
    --color7: #000000; /* Textarea text color */
    --color8: #ffffff; /* Textarea background color */
    --color9: #ffffff; /* Minimized text color */
    --color10: #333399; /* Minimized background color */
    --color11: #e1e2e7; /* Minimized border color */
    --font-family: "omnesregular", "Helvetica Neue", Helvetica, Arial, sans-serif !important; /* Default Font */
    --font-size: '16px'; /* Default Font Size */
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/



.snoball-share, .snoball-share div, .snoball-share span, .snoball-share applet, .snoball-share object, .snoball-share iframe,
.snoball-share h1, .snoball-share h2, .snoball-shareh3 h3, .snoball-share h4, .snoball-share h5, .snoball-share h6, .snoball-share p, .snoball-share blockquote, .snoball-share pre,
.snoball-share a, .snoball-share abbr, .snoball-share acronym, .snoball-share address, .snoball-share big, .snoball-share cite, .snoball-share code,
.snoball-share del, .snoball-share dfn, .snoball-share em, .snoball-share img, .snoball-share ins, .snoball-share kbd, .snoball-share q, .snoball-share s, .snoball-share samp,
.snoball-share small, .snoball-share strike, .snoball-share strong, .snoball-share sub, .snoball-share sup, .snoball-share tt, .snoball-share var,
.snoball-share b, .snoball-share u, .snoball-share i, .snoball-share center,
.snoball-share dl, .snoball-share dt, .snoball-share dd, .snoball-shareol ol, .snoball-share ul, .snoball-share li,
.snoball-share fieldset, .snoball-share form, .snoball-share label, .snoball-share legend,
.snoball-share table, .snoball-share caption, .snoball-share tbody, .snoball-share tfoot, .snoball-share thead, .snoball-share tr, .snoball-share th, .snoball-share td,
.snoball-share article, .snoball-share aside, .snoball-share canvas, .snoball-share details, .snoball-share embed,
.snoball-share figure, .snoball-share figcaption, .snoball-share footer, .snoball-share header, .snoball-share hgroup,
.snoball-share menu, .snoball-share nav, .snoball-share output, .snoball-share ruby, .snoball-share section, .snoball-share summary,
.snoball-share time, .snoball-share mark, .snoball-share audio, .snoball-share video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
.snoball-share article, .snoball-share aside, .snoball-share details, .snoball-share figcaption, .snoball-share figure,
.snoball-share footer, .snoball-share header, .snoball-share hgroup, .snoball-share menu, .snoball-share nav, .snoball-share section {
    display: block;
}
.snoball-share body {
    line-height: 1;
}
.snoball-share ol, .snoball-share ul {
    list-style: none;
}
.snoball-share blockquote, .snoball-share q {
    quotes: none;
}
.snoball-share blockquote:before, .snoball-share blockquote:after,
.snoball-share q:before, .snoball-share q:after {
    content: '';
    content: none;
}
.snoball-share table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**
Animations
 */
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}
.snoball-share__animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.snoball-share__animate__animated.snoball-share__animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.snoball-share__animate__animated.snoball-share__animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat);
}
.snoball-share__animate__animated.snoball-share__animate__repeat-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
    animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.snoball-share__animate__animated.snoball-share__animate__repeat-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
    animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.snoball-share__animate__animated.snoball-share__animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay);
}
.snoball-share__animate__animated.snoball-share__animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}
.snoball-share__animate__animated.snoball-share__animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
}
.snoball-share__animate__animated.snoball-share__animate__delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay) * 4);
    animation-delay: calc(var(--animate-delay) * 4);
}
.snoball-share__animate__animated.snoball-share__animate__delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 5);
    animation-delay: calc(var(--animate-delay) * 5);
}
.snoball-share__animate__animated.snoball-share__animate__faster {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-duration: calc(var(--animate-duration) / 2);
    animation-duration: calc(var(--animate-duration) / 2);
}
.snoball-share__animate__animated.snoball-share__animate__fast {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8);
}
.snoball-share__animate__animated.snoball-share__animate__slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
}
.snoball-share__animate__animated.snoball-share__animate__slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-duration: calc(var(--animate-duration) * 3);
    animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
    .snoball-share__animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
    }
    .snoball-share__animate__animated[class*="Out"] {
        opacity: 0;
    }
}
@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes snoball-share-jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.snoball-share__animate__jackInTheBox {
    -webkit-animation-name: snoball-share-jackInTheBox;
    animation-name: snoball-share-jackInTheBox;
}
@-webkit-keyframes snoball-share-zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes snoball-share-zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.snoball-share__animate__zoomIn {
    -webkit-animation-name: snoball-share-zoomIn;
    animation-name: snoball-share-zoomIn;
}

@font-face {
    font-family: 'omnes';
    src: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/omnes/omnes-regular-webfont.woff2') format('woff2'), url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/omnes/omnes-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'omnes';
    src: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/omnes/omnes-medium-webfont.woff') format('woff2'), url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/omnes/omnes-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'omnes';
    src: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/omnes/omnes-semibold-webfont.woff2') format('woff2'), url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/omnes/omnes-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'fontello-custom';
    src: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/fontello-custom/fontello-custom.eot?78895605');
    src: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/fontello-custom/fontello-custom.eot?78895605#iefix') format('embedded-opentype'),
    url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/fontello-custom/fontello-custom.woff2?78895605') format('woff2'),
    url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/fontello-custom/fontello-custom.woff?78895605') format('woff'),
    url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/fontello-custom/fontello-custom.ttf?78895605') format('truetype'),
    url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/fontello-custom/fontello-custom.svg?78895605#fontello-custom') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello-custom';
    src: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/fonts/fontello-custom/fontello-custom.svg?58379243#fontello-custom') format('svg');
  }
}

.snoball-share [class^="icon-"]:before, .snoball-share [class*=" icon-"]:before {
    content: none !important;
}

.snoball-share222 [class^="icon-"]:before, .snoball-share222 [class*=" icon-"]:before {
    font-family: "fontello-custom";
    font-style: normal;
    font-weight: normal;
    speak: never;

    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;

    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;

    margin-top: 0.3em;

    /* you can be more comfortable with increased icons size */
    font-size: 110%;

    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.snoball-share-social-network-icon {
    background-repeat: no-repeat;
    background-size: 37px;
    background-position: center;
}

.snoball-share .icon-twitter {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/twitter_x_blue.webp");
}
.snoball-share .icon-twitter:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/twitter_x_white.webp");
}
.snoball-share .icon-linkedin {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/linkedin_blue.webp");
}
.snoball-share .icon-linkedin:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/linkedin_white.webp");
}
.snoball-share .icon-whatsapp {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/whatsapp_blue.webp");
}
.snoball-share .icon-whatsapp:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/whatsapp_white.webp");
}
.snoball-share .icon-slack {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/slack_blue.webp");
}
.snoball-share .icon-slack:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/slack_white.webp");
}
.snoball-share .icon-instagram {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/instagram_blue.webp");
}
.snoball-share .icon-instagram:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/instagram_white.webp");
}
.snoball-share .icon-email {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/mail_blue.webp");
}
.snoball-share .icon-email:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/mail_white.webp");
}
.snoball-share .icon-sms {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/sms_blue.webp");
}
.snoball-share .icon-sms:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/sms_white.webp");
}
.snoball-share .icon-microsoft-teams {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/microsoft_teams_blue.webp");
}
.snoball-share .icon-microsoft-teams:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/microsoft_teams_white.webp");
}
.snoball-share .icon-facebook {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/facebook_blue.webp");
}
.snoball-share .icon-facebook:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/facebook_white.webp");
}
.snoball-share .icon-facebook-messenger {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/facebook_messenger_blue.webp");
}
.snoball-share .icon-facebook-messenger:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/facebook_messenger_white.webp");
}
.snoball-share .icon-zalo {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/zalo_blue.webp");
}
.snoball-share .icon-zalo:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/zalo_white.webp");
}
.snoball-share .icon-wechat {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/wechat_blue.webp");
}
.snoball-share .icon-wechat:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/wechat_white.webp");
}
.snoball-share .icon-line {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/line_blue.webp");
}
.snoball-share .icon-line:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/line_white.webp");
}
.snoball-share .icon-camera-white {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/camera_white.webp");
}
.snoball-share .icon-bluesky {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/bluesky.webp");
}
.snoball-share .icon-bluesky:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/bluesky_blue.webp");
}
.snoball-share .icon-telegram {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/telegram.webp");
}
.snoball-share .icon-telegram:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/telegram_blue.webp");
}
.snoball-share .icon-vk {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/vk.webp");
}
.snoball-share .icon-vk:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/vk_blue.webp");
}
.snoball-share .icon-viber {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/viber.webp");
}
.snoball-share .icon-viber:hover {
    background-image: url("https://api.snoball.it/public/assets/snoball_share_widget/v1/images/icon_pngs/viber_blue.webp");
}

.snoball-share {
    position: fixed;
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999999;
    width: 850px;
    height: auto;
    max-width: 850px;
    max-height: calc(100vh - 70px);
    text-align: center;
    font-family: "omnes", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    margin-top: 50px;
    background-color: transparent;
    color: rgb(0 0 0);
    transition: opacity .3s linear, max-width 0.3s linear, max-height 0.3s linear, top 0.3s linear, left 0.3s linear, margin-top 0.3s linear, border 0.3s linear, background-color 0.3s linear;
    line-height: normal;
    overflow: auto;
}

.snoball-share.snoball-share-minimized {
    box-shadow: 0 0 #0000,
    0 0 #0000, 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgb(225 226 231);
    border-radius: 8px;
    background-color: rgb(0 0 0);
    color:rgb(255 255 255);
    position: fixed;
    max-width: 242px;
    max-height: 60px;
    min-width: 242px;
    min-height: 60px;
    top: calc(100% - 70px);
    left: calc(100% - 257px);
    margin-top: 0 !important;
    bottom: 0;
    overflow: visible;
    cursor: pointer;
}
.snoball-share.snoball-share-minimized-hide {
    display: none !important;
}

.snoball-share-open-message {
    display: none;
    opacity: 0;
    margin-top: 4px !important;
}

.snoball-share-open-action-picker-dialog {
    display: none;
    opacity: 0;
    margin-top: 4px !important;
}

.snoball-share-minimized .snoball-share-open-message {
    display: block !important;
    opacity: 1;
    transition: opacity .3s;
    padding: 10px;
    font-size: 24px;
    color: rgb(255 255 255);
}

.snoball-share-minimized .snoball-share-open-action-picker-dialog {
    display: block !important;
    opacity: 1;
    transition: opacity .3s;
    padding: 10px;
    font-size: 24px;
    color: rgb(255 255 255);
}

.snoball-share-minimized .snoball-share-close-btn {
    opacity: 0;
}

.snoball-share-influencer-update-displayed {
    overflow: visible;
}

.snoball-share-influencer-update-displayed .snoball-share-close-btn {
    display: none;
}

@media (max-width: 768px) {
    .snoball-share-influencer-update-displayed {
        overflow-y: scroll;
        height: 100%;
        margin: 0 !important;
    }
}

.snoball-share-minimized .snoball-share-internal-container {
    opacity: 0;
    transition: opacity .3s linear;
}

.snoball-share-overlay {
    background-color: rgb(7, 9, 25, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    transition: opacity .15s linear !important;
    top: 0;
    left: 0;
    z-index: 10000 !important;
}

.snoball-share-loader {
    border: 16px solid #f3f3f3 !important; /* Light grey */
    border-top: 16px solid #3498db !important;; /* Blue */
    border-radius: 50% !important;;
    width: 120px;
    height: 120px;
    animation: snoball-share-loader-spin 2s linear infinite;
}

@keyframes snoball-share-loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.snoball-share input, .snoball-share label, .snoball-share textarea{
    background-color: inherit;
    color: inherit;
}

.snoball-share .snoball-share-content {
    margin-top: 0;
}

.snoball-share .snoball-share-internal-container {
    display: none;
    padding: 20px 0px 2px 0px;
}

.snoball-share .snoball-share-header {
    font-family: "omnes", "Helvetica Neue", Helvetica, Arial, sans-serif !important;;
    font-weight: bold;
}

.snoball-share .snoball-share-header-top {
    font-size: 28px;
    font-weight: bold;
    display: none;
}

.snoball-share .snoball-share-header-project-name {
    font-size: 18px;
    margin-top: 5px;
    display: none;
}

.snoball-share .snoball-share-message {
    max-height: 0;
    opacity: 0;
    transition: All 0.5s ease;
    padding: 0;
    position: absolute;
    left: 15px;
    right: 15px;
    z-index: 99999999;
    margin-top: 17px;
    font-size: x-large;
    font-weight: bold;
}

.snoball-share .snoball-share-action-picker-dialog {
    max-height: 0;
    opacity: 0;
    transition: All 0.5s ease;
    padding: 0;
    position: absolute;
    left: 15px;
    right: 15px;
    z-index: 99999999;
    margin-top: 17px;
    font-size: x-large;
    font-weight: bold;
}

.snoball-share-message-internal {
    text-align: center;
    font-size: x-large;
    border: 1px solid #000;
    margin: auto;
    background: #FFF;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    border-radius: 9px 9px 9px 9px;
    width: 70%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.snoball-share-action-picker-dialog-internal {
    text-align: center;
    font-size: x-large;
    border: 1px solid #000;
    margin: auto;
    background: #FFF;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    border-radius: 9px 9px 9px 9px;
    width: 70%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.snoball-share .snoball-share-message-close-button {
    background: #339;
    text-align: right;
    padding: 3px 10px 5px 5px;
    color: #FFF;
    cursor: pointer;
    border-radius: 9px 9px 0 0;
}

.snoball-share .snoball-share-action-picker-dialog-close-button {
    background: #339;
    text-align: right;
    padding: 3px 10px 5px 5px;
    color: #FFF;
    cursor: pointer;
    border-radius: 9px 9px 0 0;
}

.snoball-share .snoball-share-message-show .snoball-share-message-content {
    padding: 20px 20px 30px 20px;
}

.snoball-share .snoball-share-action-picker-dialog-show .snoball-share-action-picker-dialog-content {
    padding: 20px 20px 30px 20px;
}

.snoball-share .snoball-share-message-show {
    opacity: 1;
    max-height: 100px;
    display: block !important;
}

.snoball-share .snoball-share-action-picker-dialog-show {
    opacity: 1;
    max-height: 100px;
    display: block !important;
}

.snoball-share .snoball-share-message-error {
    color: red;
}

.snoball-share .snoball-share-message-success {
    color: #1850a5;
}

.snoball-share .snoball-share-message-warning {
    color: #000;
}

.snoball-share .snoball-share-message-text {
    margin-bottom: 10px;
}

.snoball-share .snoball-share-message-button {
    color: #eff1f2;
    cursor: pointer;
    background: #339;
    padding: 12px 18px 14px 18px;
    border-radius: 29px;
    margin-top: 10px;
    display: inline-block;
    border: none;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.snoball-share .snoball-share-message-button:hover {
    background: #24246e;
}

.snoball-share .snoball-share-message-cancel-button {
    color: #ffffff;
    background: #a4a4a4;
    cursor: pointer;
}

.snoball-share .snoball-share-message-cancel-button:hover {
    background: #6e6e6e;
}

.snoball-share-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    color: rgb(138 138 138);
    cursor: pointer;
    z-index: 100001;
    /*
    padding: 5px 5px 4px 8px;
    background: rgba(255,255,255,0.8);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    */
}

.snoball-share-close-btn svg path {
    fill: rgb(138 138 138);
}

.snoball-share-close-btn:hover {
    color: #000000;
}

.snoball-share-close-btn svg {
    width: 24px;
    height: 24px;
}

.snoball-share-close-btn span {
    margin-top: 4px;
    display: block;
    float: left;
}

.snoball-share p {
    margin: 0;
}

.snoball-share a {
    text-decoration: none;
    color: inherit;
}

.snoball-share a:visited {
    color: #000000;
}


.snoball-share .snoball-share-yeti-header img {
    margin-right: 4px;
}

.snoball-share .snoball-share-balloon-arrow {
    position: relative;
    top: 18px;
    left: 4px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 14px solid #e1e2e7;
}

.snoball-share .snoball-share-balloon-message {
    margin-top: 5px;
}

.snoball-share .snoball-share-balloon-content-container {
    text-align: left;
    border-radius: 16px;
    min-width: 223px;
    padding: 0px 14px 16px 14px;
    color: rgb(0 0 0);
}

.snoball-share .snoball-share-title1 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 18px;
    margin-bottom: 28px;
}

.snoball-share .snoball-share-user-container {
    padding: 13px;
    text-align: left;
    margin-bottom: 10px;
}

.snoball-share .snoball-share-user-picture {
    float: left;
    background: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/images/user-image-placeholder.webp') no-repeat center center;
    background-size: contain;
    width: 32px;
    height: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    border-radius: 32px;
    margin-right: 8px;
}

.snoball-share .snoball-share-user-name-container {
    display: block;
    float: left;
}

.snoball-share .snoball-share-user-name {
    display: block;
    font-size: 13px;
    vertical-align: middle;
    font-family: "omnes", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.snoball-share .snoball-share-user-date {
    color: #8A8F93;
    font-family: "omnes", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 10px;
}

.snoball-share .snoball-share-post-container {
    float: left;
    width: 480px;
}

.snoball-share .snoball-share-text-container {
    position: relative;
    clear: both;
    margin-top: 0;
    padding: 20px;
    border: 2px solid rgb(202 202 202);
    -webkit-border-radius: 16px 16px 0 0;
    -moz-border-radius: 16px 16px 0 0;
    border-radius: 16px 16px 0 0;
    font-size: 95%;
    color: rgb(0 0 0);
    background-color: rgb(255 255 255);
}

.snoball-share .snoball-share-post-container[data-social-network="email"] .snoball-share-text-container,
    .snoball-share .snoball-share-post-container[data-social-network="slack"] .snoball-share-text-container {
    -webkit-border-radius: 16px 16px 16px 16px;
    -moz-border-radius: 16px 16px 16px 16px;
    border-radius: 16px 16px 16px 16px;
}

.snoball-share .snoball-share-text {
    width: 100%;
    min-height: 80px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    height: auto !important;
}

.snoball-share .snoball-share-text-footer {
    font-size: 12px;
    margin-left: -31px;
    margin-right: -72px;
}

.snoball-share .snoball-share-text-copy {
    float: left;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: All 0.5s ease;
}

.snoball-share .snoball-share-text-copy-show {
    visibility: visible;
    opacity: 1;
}

.snoball-share .snoball-share-text-remaining-chars {
    display: block;
}

.snoball-share .snoball-share-text-remaining-chars-container {
    float: right;
    transition: All 0.5s ease;
    text-align: left;
    display: none;
}

.snoball-share .snoball-share-title2 {
    font-size: 180%;
    font-weight: 600;
}

.snoball-share .snoball-share-text-remaining-chars-low {
    color: #cf0c0c;
}

.snoball-share .snoball-share-content-preview {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

.snoball-share .snoball-share-content-preview * {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;;
}

.snoball-share .snoball-share-page-url {
    margin-top: 0;
    display: block;
    position: relative;
}

.snoball-share .snoball-share-page-preview {
    position: relative;
    display: block;
    transition: All 0.5s ease;
    opacity: 1;
    clear: both;
}

.snoball-share .snoball-share-page-preview-hide {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.snoball-share .snoball-share-left-container {
    float: left;
    width: 250px;
    margin-right: 40px;
    margin-left: 30px;
}

.snoball-share-influencer-update-btn-container-wrapper {
    position: absolute;
    right: 0;
    top: 123px;
    z-index: 1000;
}

.snoball-share .snoball-share-footer-container {
    clear: both;
    padding-top: 20px;
}

.snoball-share .snoball-share-page-image {
    background-color: rgb(255 255 255);
    background-image: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/images/loading_transparent.gif');
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100px;
    min-width: 100%;
    width: 100%;
    position: relative;
    -webkit-border-radius: 0 0 16px 16px;
    -moz-border-radius: 0 0 16px 16px;
    border-radius: 0 0 16px 16px;
    border-left: 2px solid rgb(202 202 202);
    border-right: 2px solid rgb(202 202 202);
    border-bottom: 2px solid rgb(202 202 202);
    border-top: 1px solid rgb(202 202 202);
    box-sizing: border-box; /* add this */
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Older Webkit browsers */
}

.snoball-share .snoball-share-page-title {
    text-align: left;
    padding-left: 8px;
    padding-top: 8px;
    padding-bottom: 5px;
    background-color: #F2F3F7;
}

.snoball-share .snoball-share-subtext {
    font-size: 11px;
}

.snoball-share .snoball-share-page-message {
    color: #666F76;
    padding: 0 8px 8px 8px;
    text-align: left;
    background-color: #F2F3F7;
    font-size: 13px;
}

.snoball-share .snoball-share-page-buttons {
    padding: 8px;
    font-size: 13px;
    color: #616466;
}

.snoball-share .snoball-share-page-buttons > a {
    margin: 0 20px 0 20px;
}

.snoball-share .snoball-share-social-networks {
    text-align: center;
    margin-top: 15px;
    padding: 0 0 0 0;
    font-size: 0;
}

.snoball-share .snoball-share-social-networks > a {
    background-image: none !important;
    cursor: pointer;
    position: relative;
    color: rgb(0 0 0);
    transition: All 0.5s ease;
    font-size: 32px;
    background-color: rgb(225 226 231);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    width: 68px;
    height: 68px;
    box-sizing: border-box;
    padding: 5px 0 0 0;
    margin: 5px 5px 5px 5px;
}

.snoball-share .snoball-share-social-networks > a svg path {
    fill: rgb(0 0 0);
}

.snoball-share .snoball-share-social-networks > a svg {
    padding: 6px 13px 13px 14px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.snoball-share .snoball-share-social-networks > a:hover {
    color: #FFFFFF;
    fill: #FFFFFF;
    background-color: #339;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.snoball-share .snoball-share-social-networks > a:hover svg path {
    fill: #FFFFFF;
}

.snoball-share .snoball-share-social-networks .snoball-share-social-network-twitter:hover {
    background-color: #50ABF1;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-facebook:hover {
    background-color: #339;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-linkedin:hover {
    background-color: #0077B7;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-whatsapp:hover {
    background-color: #64B161;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-instagram:hover {
    background-color: #ed2438;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-slack:hover {
    background-color: #49134B;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-sms:hover {
    background-color: #d9ce2e;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-line:hover {
    background-color: #06c152;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-zalo:hover {
    background-color: #0065f7;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-wechat:hover {
    background-color: #2dc100;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-microsoft-teams:hover {
    background-color: #7272c6;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-facebook-messenger:hover {
    background-color: #0083f1;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-bluesky:hover {
    background-color: #50ABF1;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-telegram:hover {
    background-color: #50ABF1;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-vk:hover {
    background-color: #0083f1;
}
.snoball-share .snoball-share-social-networks .snoball-share-social-network-viber:hover {
    background-color: #7272c6;
}

.snoball-share .snoball-share-social-networks-go {
    cursor: pointer;
    color: #FFFFFF;
    background: #333399;
    text-align: center;
    padding: 10px 20px 10px 20px;
    transition: All 0.5s ease;
    width: 200px;
    margin: auto;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    display: none;
}

.snoball-share .snoball-share-social-networks-go-container {
    margin-top: 0;
    margin-bottom: 15px;
}

.snoball-share .snoball-share-social-networks-go-show {
    display: inline-block;
}

.snoball-share a.snoball-share-social-networks-go {
    color: #FFFFFF;
}

.snoball-share .snoball-share-social-networks-go:hover {
    background: #000;
}

.snoball-share .snoball-share-powered-by {
    padding: 3px;
    font-size: 9px;
    text-align: center;
    font-weight: 500;
    font-family: "omnes", Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

.snoball-share-powered-by img {
    width: 45%;
}

.snoball-share .snoball-share-footer-logo {
    background-image: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/images/logo.webp');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    height: 15px;
    width: 15px;
    vertical-align: middle;
    margin-top: -7px;
}

.snoball-share .snoball-share-roller {
    margin: auto;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    background-image: url('https://api.snoball.it/public/assets/snoball_share_widget/v1/images/spinner.gif');
    background-size: contain;
}

body:nth-of-type(1) .snoball-share-roller div {
    display: none;
    background-image: none;
}

.snoball-share .snoball-display-none {
    display: none;
}

/* safari 3+, chrome 1+, opera9+, ff 3.5+ */
body:nth-of-type(1) .snoball-share-roller {
    background-image: none;
}

/* safari 3+, chrome 1+, opera9+, ff 3.5+ */
body:nth-of-type(1) .snoball-share-roller div {
    display: block;
}

.snoball-share-roller div {
    animation: snoball-share-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.snoball-share-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: rgb(0 0 0);
    margin: -4px 0 0 -4px;
}
.snoball-share-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.snoball-share-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}
.snoball-share-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.snoball-share-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}
.snoball-share-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.snoball-share-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}
.snoball-share-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.snoball-share-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.snoball-share-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.snoball-share-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}
.snoball-share-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.snoball-share-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}
.snoball-share-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.snoball-share-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}
.snoball-share-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.snoball-share-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}
@keyframes snoball-share-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.snoball-share .snoball-share-user-agreement-container {
    font-size: 16px;
    margin-bottom: 10px;
}

.snoball-share label {
    display: inline;
}

.snoball-share div {
    line-height: normal;
}

.snoball-share input {
    margin: 0;
    width: auto;
    display: inline;
}

.snoball-share a {
    text-decoration: none;
}

.snoball-share .grow-wrap {
    /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
    display: grid;
}
.snoball-share .grow-wrap::after {
    /* Note the weird space! Needed to preventy jumpy behavior */
    content: attr(data-replicated-value) " ";

    /* This is how textarea text behaves */
    white-space: pre-wrap;

    /* Hidden from view, clicks, and screen readers */
    visibility: hidden;
}
.snoball-share .grow-wrap > textarea {
    /* You could leave this, but after a user resizes, then it ruins the auto sizing */
    resize: none;

    /* Firefox shows scrollbar on growth, you can hide like this. */
    overflow: hidden;
}
.snoball-share .grow-wrap > textarea,
.snoball-share .grow-wrap::after {
    /* Identical styling required!! */
    padding: 0.5rem;
    font: inherit;

    /* Place on top of each other */
    grid-area: 1 / 1 / 2 / 2;
}

.snoball-share .snoball-share-flex-col {
    flex-direction: column;
}

.snoball-share .snoball-share-flex {
    display: flex;
}

.snoball-share .snoball-share-flex-1 {
    flex: 1 1 0%;
}

.snoball-share .snoball-share-justify-between {
    justify-content: space-between;
}

.snoball-share .snoball-share-justify-center {
    justify-content: center;
}

.snoball-share .snoball-share-justify-end {
    justify-content: flex-end;
}

.snoball-share .snoball-share-items-center {
    align-items: center;
}

.snoball-share .snoball-share-text-center {
    text-align: center;
}

.snoball-share .snoball-share-text-xl {
    font-size: 24px;
}

.snoball-share .snoball-share-text-lg {
    font-size: 20px;
}

.snoball-share .snoball-share-text-md {
    font-size: 16px;
}

.snoball-share .snoball-share-text-base {
    font-size: 12px;
}

.snoball-share .snoball-share-font-medium {
    font-weight: 500;
}

.snoball-share .snoball-share-font-bold {
    font-weight: 700;
}

.snoball-share-overlay-message {
    background-color: rgba(66, 66, 66, 0.95);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
     -webkit-border-radius: 16px 16px 0 0;
    -moz-border-radius: 16px 16px 0 0;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
}

.snoball-share-overlay-message > span {
    color: #fff;
    font-size: 17px !important;
    max-width: 300px !important;
    display: block;
    margin: auto;
    padding: 10px;
    text-align: center;
}

a.snoball-share-button {
    display: inline-block;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 14px;
    color: #fff;
    padding: 11px;
    margin-top: 9px;
    transition: All 0.3s ease;
}

a.snoball-share-linkedin-button {
    background: #0077B7;
}
a.snoball-share-linkedin-slack {
    background: #49134B;
}
a.snoball-share-linkedin-button:hover{
    background: #333399;
}
a.snoball-share-instagram-button {
    background: #0077B7;
}
a.snoball-share-instagram-button:hover{
    background: #ed2438;
}
a.snoball-share-facebook-button {
    background: #0077B7;
}
a.snoball-share-facebook-button:hover {
    background: #0077B7;
}
.snoball-share-overlay-message > span > a {
    color: #FFFFFF !important;
}
a.snoball-share-facebook-messenger-button {
    background: #0083f1;
}
a.snoball-share-facebook-messenger-button:hover {
    background: #0083f1;
}
a.snoball-share-microsoft-teams-button {
    background: #7272c6;
}
a.snoball-share-microsoft-teams-button:hover {
    background: #7272c6;
}
a.snoball-share-zalo-button {
    background: #0065f7;
}
a.snoball-share-zalo-button:hover {
    background: #0065f7;
}
a.snoball-share-wechat-button {
    background: #0065f7;
}
a.snoball-share-wechat-button:hover {
    background: #0065f7;
}

/*
.snoball-share-tooltip a {
    color: #333399 !important;
}

.snoball-share-tooltip {
    z-index: 98;
    font-size: 25px !important;
    background: #e1e2e7;
    top: 79px;
    border-radius: 5px;
    color: #424242;
    position: absolute;
    left: calc(50% - 160px - 15px);
    width: 320px;
    text-align: center;
    display: block;
    padding: 10px !important;
}

.snoball-share-tooltip:before {
    top: -10px;
    bottom: -10px;
    left: calc(50% - 5px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #e1e2e7 transparent;
    content: "";
    position: absolute;
    display: block;
}
*/
.snoball-share-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.snoball-share-tooltip .snoball-share-tooltiptext {
    border: 1px solid black;
    visibility: hidden;
    width: 180px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%;
    margin-left: -90px;
    font-size: 16px;
}

.snoball-share-tooltip .snoball-share-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.snoball-share-tooltiptext.snoball-share-tooltip-show {
    visibility: visible;
}

.snoball-share-tooltip:hover .snoball-share-tooltiptext {
    visibility: visible;
}

.snoball-share.snoball-share-embedded {
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
    box-shadow: none;
    border: 1px solid #000000;
    width: 100%;
}

.snoball-share.snoball-share-embedded .snoball-share-flex {
    display: block;
}

.snoball-share.snoball-share-embedded .snoball-share-left-container {
    width: auto;
    display: block;
    margin-right: 0;
    float: none;
    margin-bottom: 20px;
    text-align: center;
}

.snoball-share.snoball-share-embedded .snoball-share-post-container {
    width: auto;
    float: none;
}

.snoball-share.snoball-share-embedded .snoball-share-balloon-content-container {
    min-width: auto;
    padding: 0;
    text-align: center;
    flex: none;
    display: block;
    width: 100%;
}

.snoball-share.snoball-share-embedded .snoball-share-internal-container {
    padding: 10px 10px 10px 10px;
}

.snoball-share.snoball-share-embedded .snoball-share-content {
    margin-top: 10px;
}

.snoball-share.snoball-share-embedded .snoball-share-content-preview {
    margin-top: 0;
}

.snoball-share-influencer-update-btn-container {
    z-index: 1000;
    top: 23%;
    transition: opacity .3s linear, max-width 0.3s linear, max-height 0.3s linear, top 0.3s linear, left 0.3s linear, margin-top 0.3s linear, border 0.3s linear, background-color 0.3s linear;
}

div.snoball-share-influencer-update-btn:hover {
    background-color: #1b1b90;
    opacity: 1;
}

/* The animation code */
@keyframes snoball-share-influencer-update-btn {
    from {background-color: red;}
    to {background-color: #339;}
}

div.snoball-share-influencer-update-btn {
    background-color: #339;
    color: white;
    opacity: 0.9;
    width: 71px;
    height: 71px;
    cursor: pointer;
    border-radius: 10px 0px 0px 10px;
    text-align: center;
    padding: 5px 2px 5px 0;
    animation-name: snoball-share-influencer-update-btn;
    animation-duration: 4s;
    -webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.44);
    box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.4);
    overflow: hidden;
    box-sizing: unset;
}

div.snoball-share-influencer-update-btn > div {
    vertical-align: middle;
    margin: 2px;
    font-size: 12px;
    width: 100%;
}

div.snoball-share-influencer-update-btn .snoball-share-influencer-update-icon {
    height: 30px;
    box-sizing: border-box;
    padding: 5px 0 0 0;
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    border-spacing: 10px;
}

div.snoball-share-influencer-personalize-btn {
    background-color: #339;
    color: white;
    opacity: 0.7;
    width: 71px;
    height: 31px;
    border-radius: 0px 00px 0px 10px;
    box-sizing: unset;
}

div.snoball-share-influencer-update-container {
    position: absolute;
    z-index: 9999;
    width: 100%;
    background: rgba(37, 55, 70, 0.975);
    display: block;
    overflow: scroll;
    border-radius: 6px !important;
}

div.snoball-share-influencer-update-container iframe {
    width: 100%;
    height: 300px;
}

.snoball-share.snoball-share-minimized .snoball-share-influencer-update-btn {
    display: none !important;
}


@media only screen and (max-width: 850px) {
    .snoball-share {
        max-height: 100% !important;
    }

    div.snoball-share-influencer-update-btn {
        position: fixed;
        right: 0;
        margin-top: 70px;
    }

    div.snoball-share-influencer-personalize-btn {
        position: fixed;
        right: 0;
        margin-top: 151px;
    }

    .snoball-share.snoball-share-popup {
        width: auto;
        padding: 0;
        margin: 5px;
    }

    .snoball-share-influencer-update-btn-container {
        top: 267px;
    }

    .snoball-share.snoball-share-popup .snoball-share-flex {
        display: block;
    }

    .snoball-share.snoball-share-popup .snoball-share-left-container {
        width: auto;
        display: block;
        margin-right: 0;
        margin-left: 0;
        float: none;
        margin-bottom: 20px;
        text-align: center;
    }

    .snoball-share.snoball-share-popup .snoball-share-post-container {
        width: auto;
        float: none;
    }

    .snoball-share.snoball-share-popup .snoball-share-balloon-content-container {
        min-width: auto;
        padding: 0;
        text-align: center;
        flex: none;
        display: block;
        width: 100%;
    }

    .snoball-share.snoball-share-popup .snoball-share-internal-container {
        /*padding: 10px 10px 10px 10px;*/
    }

    .snoball-share.snoball-share-popup .snoball-share-content {
        margin-top: 10px;
    }

    .snoball-share.snoball-share-popup .snoball-share-content-preview {
        margin-top: 0;
    }

    .snoball-share-message-internal {
        width: auto;
    }
}

.snoball-share .snoball-share-page-preview-personalize {
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    background-color: rgba(51, 51, 153, 0.7); 
    min-height: 100px;
    min-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 400px;
    position: absolute;
    left: 0;
    right: 0;
    -webkit-border-radius: 0 0 16px 16px;
    -moz-border-radius: 0 0 16px 16px;
    border-radius: 0 0 16px 16px;
    border-left: 2px solid rgb(202 202 202);
    border-right: 2px solid rgb(202 202 202);
    border-bottom: 2px solid rgb(202 202 202);
    border-top: 1px solid rgb(202 202 202);
    box-sizing: border-box; /* add this */
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Older Webkit browsers */
}

.snoball-share .snoball-share-page-preview-personalize a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "omnes", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    height: 100%;
}

.snoball-share-main-container {
    position: relative;
    background-color: rgb(255 255 255);
    border-radius: 8px;
    border: 0 solid #e1e2e7;
    box-shadow: 0rem 5rem 14rem 0 rgb(255 255 255 / 30%), 0 0.8rem 2.3rem rgb(0 0 0 / 60%), 0 0.2rem 0.3rem rgb(0 0 0 / 45%);
    transition: background-color 0.3s linear;
}

.snoball-share-action-buttons-container {
    height: 50px;
    display: none;
    flex-direction: row-reverse;
    gap: 3px;
    justify-content: end;
}

.snoball-share-action-button {
    height: 100%;
    border: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: white;
    font: inherit;
    padding-left: 10px;
    padding-right: 10px;
    color: rgb(0 0 0);
    font-weight: 600;
    z-index: 100;
    border-bottom: 2px solid;
    border-bottom-color: rgb(0 0 0);
}

.snoball-share-action-button-default {
    border: none !important;
}

.snoball-share-action-button:hover {
    background: rgb(0 0 0);
    color: white;
    cursor: pointer;
}

.snoball-share-action-picker-dialog-buttons-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
    margin-top: 20px !important;
}

.snoball-share-action-picker-dialog-button {
    height: 100%;
    border-radius: 8px;
    background: white;
    font: inherit;
    font-size: 0.7em;
    padding: 10px;
    color: rgb(0 0 0);
    font-weight: 500;
    z-index: 100;
    border: 1px solid;
    border-color: rgb(0 0 0);
}

.snoball-share-action-picker-dialog-button:hover {
    background: rgb(0 0 0);
    color: white;
    cursor: pointer;
}

.snoball-share-customize-graphic-button {
    height: 100%;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    border-radius: 8px;
    background: rgb(0 0 0);
    font: inherit;
    padding: 10px 10px 10px 10px;
    color: white;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
}

.snoball-share-customize-graphic-button:hover {
    background: white;
    color: rgb(0 0 0);
    border-color: rgb(0 0 0);
}

#snoball-share-customize-graphic-container {
    justify-content: center;
}




