/*=================================================
Back To Top button 
===================================================*/

.back-to-top {
  position: fixed;  bottom: 2rem;  right: 2rem;  width: 40px;   height: 40px;  border-radius: 50%;  background-color: var(--ka-secondary-bg);
  color: #fff;  display: flex;  align-items: center;  justify-content: center;  font-size: 1.2rem;   cursor: pointer;  opacity: 0;      
  pointer-events: none; transition: opacity 0.3s ease;  z-index: 9999;
}

.back-to-top.show {  opacity: 1;  pointer-events: auto;}

.theme-toggle-icon {  position: fixed;  bottom: 5rem; right: 2rem;  z-index: 9999;
  width: 40px;  height: 40px;	border: none;  border-radius: 50%; background-color: var(--ka-secondary-bg);
  color: #fff;  display: flex;  align-items: center;  justify-content: center;  cursor: pointer;
  opacity: 1;  transition: opacity 0.3s;
}

/*=================================================
Background Color  
===================================================*/

.bg-pink {background-color: #FFF5F8;}
