/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.YITH_x012 {display: none;}

  /* Smartphone Portrait and Landscape */
  @media only screen
    and (min-device-width : 320px)
    and (max-device-width : 480px){ 
      .YITH_x012 {display: inline;}
  }
  
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

/* custom Toggle switch */

.custom-toggle-type input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.custom-toggle-type label {
	background-color: #f5f5f5;
	color: rgba(0, 0, 0, 0.6);
	font-size: 14px;
	line-height: 1;
	text-align: left;
	padding: 6px 8px;
	margin-left: -10px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	transition: all 0.1s ease-in-out;
}

.custom-toggle-type label:hover {
	cursor: pointer;
}

.custom-toggle-type input:checked + label {
	background-color: #a5dc86;
	box-shadow: none;
}

.custom-toggle-type label:first-of-type {
    	border: none;
    	background-color: white;
    	box-shadow: none;
    	margin-right: 2px;
}

.custom-toggle-type label:last-of-type {
	border-radius: 0 4px 4px 0;
}

/* custom Toggle switch -End */

/* Custom scroll bar */
/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}
