@import url('https://fonts.googleapis.com/css?family=Roboto');

.ba-we-love-subscribers {
    width: 290px;
    height: 50px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 12px 45px rgba(0, 0, 0, .15);
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0 0 10px 0;
    overflow: hidden;
    opacity: 0;
}
.ba-we-love-subscribers.open {
    height: 270px;
    opacity: 1;
}
.ba-we-love-subscribers.popup-ani {
    -webkit-transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ba-we-love-subscribers h1 {
    font-size: 20px;
    color: #757575;
    padding: 25px 0;
    margin: 0;
    font-weight:400;
    font-family: 'Roboto', sans-serif;

}
.ba-we-love-subscribers .love {
    width: 20px;
    height: 20px;
    background-position: 35px 84px;
    display: inline-block;
    margin: 0 6px;
    background-size: 62px;
}
.ba-we-love-subscribers .ba-logo {
    width: 85px;
    height: 35px;
    /*   background-position: 0px;*/
    margin: 0 auto;
    opacity: .5;
    cursor: pointer;
}
.ba-we-love-subscribers .ba-logo:hover {
    opacity: 1;
}
.logo-ani {
    transition: 0.5s linear;
    -webkit-transition: 0.5s linear;
}
.ba-we-love-subscribers textarea,.ba-we-love-subscribers input  {
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 15px;
    border: 0;
    outline: none;
    margin: 8px 0;
    width: 100%;
    box-sizing: border-box;
    line-height: normal;
    /*Bootstrap Overide*/
    font-family: sans-serif;
    /*Bootstrap Overide*/
}

.ba-we-love-subscribers form {
    padding: 5px 30px 0;
    margin-bottom: 15px;
}
.ba-we-love-subscribers input[name="comment_text"] {
    background-color: #eee;
}
.ba-we-love-subscribers input[name="submit"] {
    background-color: #5db0d0;
    cursor: pointer;
    color: #fff;
}
.ba-we-love-subscribers input[name="submit"]:hover {
    background-color: #15536b;
}
.ba-we-love-subscribers .img {
    background-image: url("https://4.bp.blogspot.com/-1J75Et4_5vc/WAYhWRVuMiI/AAAAAAAAArE/gwa-mdtq0NIqOrlVvpLAqdPTV4VAahMsQCPcB/s1600/barrel-we-love-subscribers-img.png");
}
.ba-we-love-subscribers-fab {
    width: 50px;
    height: 50px;
    background-color: #00aeef;
    border-radius: 30px;
    float: right;
    box-shadow: 0px 12px 45px rgba(0, 0, 0, .3);
    z-index: 5;
    position: relative;
}
.ba-we-love-subscribers-fab .img-fab {
    height: 30px;
    width: 30px;
     margin: 10px auto;
    background-image: url("https://4.bp.blogspot.com/-1J75Et4_5vc/WAYhWRVuMiI/AAAAAAAAArE/gwa-mdtq0NIqOrlVvpLAqdPTV4VAahMsQCPcB/s1600/barrel-we-love-subscribers-img.png");
    background-position: -1px -53px;
}
.ba-we-love-subscribers-fab .wrap {
    transform: rotate(0deg);
    -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
    transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}
.ba-we-love-subscribers-fab .ani {
    transform: rotate(45deg);
    -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
    transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}
.ba-we-love-subscribers-fab .close {
    background-position: -2px 1px;
    transform: rotate(-45deg);
    float: none;
    /*Bootstrap Overide*/
    opacity: 1;
    /*Bootstrap Overide*/
}
.ba-we-love-subscribers-wrap {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000;
}
.ba-settings {
    position: absolute;
    top: -25px;
    right: 0px;
    padding: 10px 20px;
    background-color: #555;
    border-radius: 5px;
    color: #fff;
}








/* Dark Mode Styling for .ba-we-love-subscribers-wrap */
.ba-we-love-subscribers-wrap.dark .ba-we-love-subscribers {
    background-color: #333; /* Dark background */
    color: #fff; /* Light text color */
    box-shadow: 0px 12px 45px rgba(255, 255, 255, .15); /* Lighter shadow */
}

.ba-we-love-subscribers-wrap.dark .ba-we-love-subscribers h1 {
    color: #fff; /* Light color for the title */
}

.ba-we-love-subscribers-wrap.dark .ba-we-love-subscribers textarea,
.ba-we-love-subscribers-wrap.dark .ba-we-love-subscribers input {
    background-color: #555; /* Darker input background */
    color: #fff; /* Light text color */
    border: 1px solid #777; /* Lighter border */
}

.ba-we-love-subscribers-wrap.dark .ba-we-love-subscribers input[name="submit"] {
    background-color: #5db0d0;/* Lighter button color */
    color: #fff; /* Button text color */
}

.ba-we-love-subscribers-wrap.dark .ba-we-love-subscribers input[name="submit"]:hover {
    background-color: #15536b; /* Darker button on hover */
}

.ba-we-love-subscribers-wrap.dark .ba-we-love-subscribers .ba-logo {
    opacity: 0.8; /* Slightly reduce logo opacity */
}

.ba-we-love-subscribers-wrap.dark .ba-we-love-subscribers-fab {
    background-color: #333; /* Dark background for the floating action button */
}

.ba-we-love-subscribers-wrap.dark .ba-settings {
    background-color: #444; /* Dark settings background */
    color: #fff; /* White text for settings */
}

/* Additional adjustments for dark mode (optional) */
.ba-we-love-subscribers-wrap.dark .ba-we-love-subscribers .love {
    background-color: #fff; /* White love icon */
}