#statementStack {
  margin-bottom: 20px;

}

.draggable, #droppable .draggable {
  background-color: rgba(36, 29, 60, 0.8);
  border-radius: 6px;
  color: rgba(255,255,255,1);
  cursor: pointer;
  font-size: 1.2em;
  padding: .5em;
  text-align: center;
  z-index: 2;
  max-width: 200px;	
}

.draggable {
  cursor: move;
  position:absolute;

}

#statementStack {
  text-align: center;
  display:flex;
  display: -webkit-flex;*/ /*Enables flexbox properties, align-items, and justify-content*/
  height:2em;
  margin: 2em 0px;
  justify-content: center;   /*Horizontally centers content*/
	height: 3em
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #statementStack {
		 right:2.5em;
	}
}

@supports (-ms-accelerator:true) {
  #statementStack {
		 right:2.5em;
	}
}

  

#arrow-head-titles {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

#arrow {
  background: rgb(30,87,153);
  background: -moz-linear-gradient(left, rgb(30,87,153) 0%, rgb(122,196,106) 100%);
  background: -webkit-linear-gradient(left, rgb(30,87,153) 0%,rgb(122,196,106) 100%);
  background: linear-gradient(to right, rgb(30,87,153) 0%,rgb(122,196,106) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7ac46a',GradientType=1 );
  position: relative;
  height: 100px;
  margin: 50px 80px;
}

#arrow-right {
  border-bottom: 100px solid transparent;
  border-left: 100px solid rgb(122,196,106);
  border-top: 100px solid transparent;
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}

#arrow-left {
  border-bottom: 100px solid transparent;
  border-right: 100px solid rgb(30,87,153);
  border-top: 100px solid transparent;
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}

/* Tablet */
@media(min-width: 768px){


}

/* Desktop */
@media(min-width:992px){


}

/* Large Desktop */
@media(min-width:1200px){


}

/* Print */
@media print {


}