/* IVR building related */
.caicus-ivrstep-description-input {
	line-height: 5px; 
  	margin: 8px 0;
  	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  	border-radius:10px;
  	font-style: italic;
  	width: 200px;
}

.caicus-ivr-speech-selection-input {
  	line-height: 5px;
  	margin: 8px 0;
  	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  	border-radius:10px;
  	background-color: #ffffff;
  	width: 50%;
}

.caicus-ivr-step-addition-input {
  	line-height: 5px;
  	margin: 8px 0;
  	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  	border-radius:10px;
  	background-color: #ffffff;
}

.selectandsearch {
	width: 200px;
/*  To avoid blinking cursor after click*/
    caret-color: transparent;	
	
}

.caicus-speech-select-list-text {
	font-size: small;	
}

.caicus-step-select-list-text {
	font-size: small;	
}

.caicus-ivr-speech-add-icon {
	margin-left: 5%;	
}





/* For dropdowns in IVR. Type, Record, Upload option for dynamic speech additions
 * Dropdown Button */
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 8px;
  font-size: 8px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
