/*
 Theme Name:   Blunor Child
 Theme URI:    https://demo.rstheme.com/wordpress/blunor
 Description:  Blunor Child
 Author:       RSTheme
 Author URI:   http://rstheme.com
 Template:     blunor
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 */

/* Styling for the button */
#btn-class {
  position: relative;
  cursor: pointer;
}

/* This is the static gradient overlay element */
#btn-class::before {
  content: '';
  position: absolute;
  bottom: 80px;
  z-index: 9999;
  height: 2000%;

  /* --- UPDATED PROPERTIES --- */

  /* 1. Made wider and centered */
  width: 350%;
  left: 50%;
  transform: translateX(-50%);

  /* 2. Added rounded corners */
  border-radius: 15px;

  /* --- END OF UPDATES --- */

  background: linear-gradient(to top,
    rgba(0, 0, 0, 1) 0%,      /* Solid black at the bottom */
    rgba(68, 68, 68, 0.8) 25%,  /* Grey in the middle */
    rgba(0, 0, 0, 0) 100%     /* Fully transparent at the top */
  );
}

/* Your existing styles */
.rs-multi-image.reverse-.blend_normal {
  transition: width 1.2s ease-in-out !important;
}

/* --- Hide Chatbot on Mobile Devices --- */
@media screen and (max-width: 768px) {
    #hari-chatbot-container,
    #hari-chatbot-toggle {
        display: none !important;
    }
}