/*
Project: 15-17_1-39
Author:  Christina Thomas
Date: 10/03/17
*/
.draggable {
  width: 200px;
  height: 252px;
  background: rgba(110, 37, 50, 0.9);
  position: relative;
  padding: 2px;
  margin: 5px 5px 5px 5px;
}

.draggable:hover {
	box-shadow: 0px 0px 10px 5px rgba(110,37,50,0.9);
	cursor:move;
}
.draggable button {
  background-color: rgba(110, 37, 50, 0.9);
  color: #fff;
  position: absolute;
  padding: 6px;
  padding-bottom: 2px;
  bottom: 10px;
  right: 10px;
  border: 0px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px; /* future proofing */
  -khtml-border-radius: 10px; /* for old Konqueror browsers */
}
table, th, td {
  margin: auto auto auto auto;
  border: 1px solid #333332;
}
.users {
  table-layout: fixed;
  table-height: auto;
  height: auto;
  width: 100%;  /*white-space: nowrap;*/
}
.users td {

  /*white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
}
.users th {
  font-weight: normal !important;
  font-size: 20px;
  background: #112532;
  color: #ffffff;
}
.users td, .users th {
  text-align: center;
  padding: 5px 10px;
  top: 0px;
  vertical-align: text-top;
}
.users tr:nth-child(odd) {
  background: #ccc;
}
.users tr:nth-child(even) {
  background: #e3e3e3;
}
.arrrow {
  border: 1px solid rgba(242, 239, 234, 0.8);
  background: rgba(242, 239, 234, 0.8);
  font-size: 32px;
}
.inner-icon {
  position: relative;
}
.letter {
  font-size: 32px
}
.inner-icon .glyphicon {
  position: absolute;
  padding: 10px;
  pointer-events: none
}
.inner-icon .glyphicon {
  position: absolute;
  padding: 10px;
  pointer-events: none;
}
.glyphicon {
  font-size: 1.5em;
  color: #fff;
  margin-right: 0px;
}
.left-icon textarea {
  padding-left: 40px;
}
textarea {
  resize: vertical;
}
@media print {
  section {
    display: block !important;
  }
  .img-container {
    margin-top: 30px;
  }
  #activity-intro, header {
    display: none;
  }
}


@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)  {
	.draggable{
		width:100%;
		height:180px;
		overflow:hidden;
	}
	.draggable img {
		width:100%;
		height:auto;
	}
}
