body {
    margin-top: 0;
    padding: 0;
    /*overflow: hidden;*/
    font: 16px/1.2 "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    font-weight: 400;
    min-width: initial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*-ms-overflow-style: scrollbar;*/
    transition: none !important;
}

.sb-sticky-bar {
    font-size: 30px;
    line-height: 34px;
    color: #fff;
    background-color: #4822c5;
    padding: 20px 60px;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    text-align: center;
    transform-origin: top left;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    z-index: 2;
    position: fixed !important;
    /*left: 0 !important;*/
    /*right: 0 !important;*/
    /*top: 0 !important;*/
}

.sb-sticky-bar__btn-editable, .sb-sticky-bar__p {
    position: relative;
}

#sb-sticky-bar__btn-editable {
    display:flex;
    z-index: 1050;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.sb-sticky-bar__p {
    margin: 5px 0;
    position: relative;
    bottom: 5px;
    right: 6px;
}

.fr-wrapper {
    position: relative;
    z-index: 1;
}

.fr-element.fr-view {
    word-wrap: break-word;
    line-height: 1.35;
    white-space: normal;
    padding-left: 5px;
    padding-right: 5px;
}

.sb-sticky-bar__p .fr-wrapper p {
    color: #fff;
    font-size: 30px;
    line-height: 1;
    margin: 0;
}

.sb-sticky-bar__btn {
    background: #f86e12;
    box-shadow: 4px 4px 10px rgb(0 0 0 / 15%);
    margin: 0 6px;
    font-weight: 300;
    font-size: 26px;
    line-height: 30px;
    padding: 6px 20px;
    text-transform: none;
    white-space: nowrap;
    height: auto;
    display: inline-block;
    text-align: center;
    border-radius: 3px;
}

.animated {
    background-repeat: no-repeat;
    background-position: left top;
    animation-duration: 5s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

/* Close button general styles */
.sb-sticky-bar .sb-sticky-bar__close {
    position: absolute;
    right: 15px; /* Position at right edge */
    top: 1px; /* Position firmly at top */
    transform: none; /* Remove any transforms */
    z-index: 100; /* Ensure highest visibility */
}

/* Make the X button more visible */
.sb-close-btn {
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 1);
    width: 20px; /* Slightly larger */
    height: 20px; /* Slightly larger */
}

/* X icon styles */
.sb-close-btn {
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 1);
    width: 15px;
    height: 15px;
}

.sb-close-btn:after,
.sb-close-btn:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: currentColor;
    transform: rotate(45deg);
}

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

.omnibar-fullpage-sb .sb-sticky-bar__btn .fr-wrapper p,
.omnibar-fullpage-sb .sb-sticky-bar__content__p p {
    color: #fff;
    line-height: 1.35;
    border: 1px solid transparent;
    margin: 0;
}

.omnibar-fullpage-sb .sb-sticky-bar__content__p p {
    font-size: 26px;
}

.sb-sticky-bar .fr-box.fr-inline .fr-wrapper {
    border: none !important;
}

.sb-sticky-bar__wrap {
    min-height: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 8px 60px;
    display: flex;
}

#sticky-bar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0;
    animation: shake 0.3s;
    height: auto;
    min-height: 60.42px;
    flex-flow: wrap;
    bottom: unset;
    background-color: rgb(0, 0, 0);
    border-bottom: 0px solid rgb(0, 0, 0);
}

.fr-element img {
    cursor: default;
}

.fr-element a > img {
    cursor: pointer;
}

.sb-sticky-bar__img iframe {
    max-width: 100%;
}

@keyframes radioactive {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    70% {
        opacity: 0.2;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes apluse {
    0%, 80%, 100% {
        transform: scale(1, 1);
    }
    30%, 50% {
        transform: scale(1.3, 1.3);
    }
}

@keyframes wobble {
    2% {
        transform: translateX(3px) rotate(2deg);
    }
    4% {
        transform: translateX(-3px) rotate(-2deg);
    }
    6% {
        transform: translateX(3px) rotate(2deg);
    }
    8% {
        transform: translateX(-3px) rotate(-2deg);
    }
    10% {
        transform: translateX(2px) rotate(1deg);
    }
    12% {
        transform: translateX(-2px) rotate(-1deg);
    }
    14% {
        transform: translateX(2px) rotate(1deg);
    }
    16% {
        transform: translateX(-2px) rotate(-1deg);
    }
    18% {
        transform: translateX(1px) rotate(0);
    }
    20% {
        transform: translateX(-1px) rotate(0);
    }
}

.radioactive {
    position: relative;
    z-index: 2;
}

.radioactive:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: scale(0.5);
    transform-origin: center center;
    animation: radioactive 3s linear infinite;
    background-color: inherit;
    z-index: -1;
}

.radioactive:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: scale(0.5);
    transform-origin: center center;
    animation: radioactive 3s linear infinite;
    animation-delay: 2s;
    background-color: inherit;
    z-index: -1;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    to {
        transform: translateY(0)
    }
    40% {
        transform: translateY(-20px)
    }
    60% {
        transform: translateY(-10px)
    }
}

.cta-button-design-preview {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 24px;
}

@keyframes wobbleIn {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 0;
    }
    30% {
        transform: translateY(10px) rotate(-3deg);
        opacity: 1;
    }
    50% {
        transform: translateY(0px) rotate(3deg);
    }
    70% {
        transform: translateY(-5px) rotate(-2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateZ(0);
    }
    10%, 50%, 90% {
        transform: translate3d(0, -15px, 0);
    }
    30%, 70%, 100% {
        transform: translate3d(0, 0px, 0);
    }
}

.sb-arrow {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#show-arrow {
    display: none;
}

#sticky-bar.hidden {
    display: none;
    transform: translateY(-100%);
}

.sb-arrow {
    position: fixed;
    z-index: 1001;
    cursor: pointer;
    display: none;
    height: 30px;
    width: 30px;
    right: 17px;
    bottom: unset;
    top: 0;
    border-radius: 0 0 5px 5px;
    text-decoration: none;
}

.sb-arrow:before {
    content: "\2193";
    font-family: inherit;
    display: block;
    background-color: black;
    color: white;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    font-size: 21px;
    text-align: center;
}

.fr-element-div {
    olor: rgba(255, 255, 255, 1);
}

.fr-element-p {
    color: rgb(255, 255, 255);
    font-size: 17px;
}

.fr-element-span {
    color: rgb(255, 255, 255);
    font-family: Poppins;
    font-size: 19px;
}

.fr-element-strong {
    color: rgb(255, 255, 255);
}

.fr-element-view-div {
    color: rgba(140, 39, 140, 1);
 }

.fr-element-view-p {
    color: rgb(140, 39, 140);
    font-size: 14px;
    line-height: 1;
}

.fr-element-view-span {
    font-size: 18px;
    color: rgb(140, 39, 140);
    font-family: Poppins;
}

.arrow {
    width: 0;
    height: 0;
    background-color: black;
}
#sb-sticky-bar__btn0 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(140, 39, 140, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 19px 22px -15px;
    padding: 5px 6px;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .sb-sticky-bar {
        padding: 15px 10px; /* Reduce padding on mobile */
    }
    
    .sb-sticky-bar .sb-sticky-bar__close {
        position: absolute;
        top: 22px; /* Position at the top right corner */
        right: 12px;
        transform: translateY(-50%);
        z-index: 10; /* Ensure it's above other elements */
    }

    .fr-element-p {
        font-size: 14px; /* Smaller text on mobile */
        margin-right: 25px; /* Make room for the close button */
    }

    .cta-button-design-preview {
        margin: 10px 5px; /* Reduce margin on mobile */
    }

    #sb-sticky-bar__btn0 {
        padding: 4px 5px; /* Smaller button padding on mobile */
        font-size: 14px; /* Smaller font size */
    }

    .fr-element-view-p {
        font-size: 12px; /* Smaller button text on mobile */
    }
}

/* Additional styles for very small screens */
@media (max-width: 480px) {
    .sb-sticky-bar .sb-sticky-bar__close {
        top: 3px; /* Position at the top right corner */
        right: 18px;
        transform: none;
    }

    .sb-sticky-bar__p {
        margin-right: 0; /* Reset margin since elements are stacked */
        width: 100%; /* Take full width */
        padding-right: 25px; /* Make space for the X button */
        box-sizing: border-box;
    }

    .cta-button-design-preview {
        margin-top: 10px;
        width: 100%; /* Take full width */
    }
}

