/***********************************************************************/
/*Button Css Direct*/
/***********************************************************************/
.sunshine-btn-container {
    display: block;
}

.sunshine-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    border: 1.5px solid #000000;
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    /*background: #ffffff;*/
    transition: all 0.3s ease;
    gap: 10px;
}

.sunshine-btn-text {
    color: var(--btn-text-color, #000000);
    font-size: 20px;
    font-weight: 600;
    margin-right: 0;
    letter-spacing: 0px;
    font-family: 'Albert Sans'
}

.sunshine-btn-icon-box {
    position: relative;
    width: 36px;
    height: 36px;
    background-color: var(--btn-icon-bg, #FDB913);
    border-radius: 39px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    box-shadow: 0px 7px 3px rgba(84, 84, 84, 0.01), 0px 4px 2px rgba(84, 84, 84, 0.05), 0px 2px 2px rgba(84, 84, 84, 0.09), 0px 0px 1px rgba(84, 84, 84, 0.1);
}

.sunshine-btn-base-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #000000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.sunshine-btn-slide-icon {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button Hover Logic */
.sunshine-btn:hover .sunshine-btn-icon-box {
    background-color: var(--btn-icon-hover-bg, #EE344D);
}

.sunshine-btn:hover .sunshine-btn-base-icon {
    transform: translateX(100%);
    opacity: 0;
}

.sunshine-btn:hover .sunshine-btn-slide-icon {
    left: 0;
}

.sunshine-btn-svg {
    width: 14px;
    height: 14px;
}

.sunshine-btn-svg path {
    fill: currentColor;
}


@media screen and (max-width:768px){
    .sunshine-btn{
        padding: 7px 10px 7px 15px;
    }
    .sunshine-btn-text{
        font-size: 15px;
    }
    .sunshine-btn-svg {
        width: 12px;
        height: 12px;
    }
    .sunshine-btn-icon-box {
        position: relative;
        width: 30px;
        height: 30px;
    }
}