.tc-sticky-button-wrapper {
    position: fixed;
    z-index: 999999;
    background-color: #094EC0;
    border-radius: 24px;
    padding: 20px;
    width: 260px;
    left: 48px;
    bottom: 48px;
}

.brand-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tc-sticky-button-wrapper:hover .brand-icon {
    opacity: 1;
}

.tc-sticky-button-title {
    margin-bottom: 4px;
    font-size: 20px !important;
	line-height: 1.2 !important;
    font-weight: 600;
    color: #ffffff;
}

.tc-sticky-button-description {
    margin-bottom: 16px;
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.7);
}

.tc-sticky-button-wrapper {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tc-sticky-button-content {
    overflow: hidden;
}

.tc-sticky-button-wrapper .tc-sticky-button-content {
    display: none;
}


.themecrave-sticky-button {
    position: relative;
    z-index: 1;
    border-radius: 40px;
    background: #ececec;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05) inset !important;
    padding: 10px 24px 10px 8px;
    display: inline-flex;
    border-width: 0;
}

.themecrave-sticky-button:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    bottom: 8px;
    border-radius: 40px;
    border: 2px solid #ffffff;
    background: linear-gradient(180deg, #fff 0%, #f3f3f3 100%);
    box-shadow: 0 3px 7px -2px #b3b3b3;
    z-index: -1;
    transition: width 0.3s ease-in-out;
    width: var(--btn-width, auto);
}

.tc-fancy-btn-content-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.themecrave-sticky-button .tc-fancy-btn-icon {
    font-size: 18px;
    text-shadow: 0 1px 1px rgba(9, 78, 192, 0.18), 0 1px 0 rgba(225, 225, 225, 0.7);
    font-weight: 600;
    color: #3d3d3d;
    transition: all 0.3s ease-in-out;
}

.themecrave-sticky-button .tc-fancy-btn-text {
    color: #094EC0;
    text-shadow: 0 1px 1px rgba(9, 78, 192, 0.18), 0 1px 0 rgba(225, 225, 225, 0.70);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    line-height: 1;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .tc-sticky-button-wrapper {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .tc-sticky-button-wrapper {
        padding: 8px;
        font-size: 13px;
        width: calc(100% - 32px);
        left: 16px;
        bottom: 16px;
        border-radius: 12px;
    }

    .tc-sticky-button-content {
        display: none !important;
    }

    .themecrave-sticky-button {
        display: block;
    }

    .themecrave-sticky-button .tc-fancy-btn-text {
        width: 100%;
        text-align: center;
    }
}