body {
	height: 100%;
	overflow-y: hidden;
	padding: 0;
	margin: 0;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

#leftSidebar,  #rightSidebar{
	min-height: 0;
    max-height: 100%;
    height: auto;
	width: 260px;
	text-transform: uppercase; 
	opacity: 0.63;
}

#leftSidebar {	
	overflow-y: auto;
	background: linear-gradient(to bottom, #9368E9 0%, #943bea 100%);
    background-size: 150% 150%;
    flex-grow: 1;
}

#rightSidebar {
	background: linear-gradient(to bottom, #FB404B 0%, #bb0502 100%);
    background-size: 150% 150%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lHead {
	width: 100%;
	padding: 5px 0px;
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;   
}

.lItem {
    margin: 5px 15px;
	padding: 10px 15px;	
	border-radius: 4px;

	color: #FFFFFF;
    line-height: 30px;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
}

.lItem input {
	width: 70%;
    padding: 6px 12px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

#rightSidebar button {
	padding:0.35em 1.2em;
	border:0.1em solid #FFFFFF;
	margin: 0.5em 0.3em ;
	border-radius:0.12em;
	width: 80%;
	box-sizing: border-box;
	text-decoration:none;
	background: transparent;
    text-align: center;
}

#rightSidebar button:hover {
	cursor: pointer;
	color:#000000;
	background: #FFFFFF;
}

.lItem:hover {
	background: rgba(255, 255, 255, 0.63);
	color: black;
}

.lItem:hover input {
	border-color: #000;
	color: #000;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.number-input {
  border: 1px solid #ddd;
  display: inline-flex;
}

.number-input,
.number-input * {
  box-sizing: border-box;
}

.number-input button {
  outline:none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.number-input button:before,
.number-input button:after {
	color: white;
  display: inline-block;
  position: absolute;
  content: '';
  width: 1rem;
  height: 2px;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
}
.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.number-input button:hover {
	background-color: black;
}

.number-input input[type=number] {
  font-family: sans-serif;
  max-width: 5rem;
  padding: .5rem;
  border: solid #ddd;
  border-width: 0 2px;
  font-size: 2rem;
  height: 3rem;
  font-weight: bold;
  text-align: center;
}