body {
  background-color: #282828;
  max-width: 960px;
  margin: auto;
  font-family: "Roboto", sans-serif;
  color: white;
}

h1 {
  text-align: center;
  color: white;
}

img.champIcons, img.itemIcons {
    display: block;
    height: 100%;
    width: 100%;
}

td {
    display:inline-block;
    height: 48px;
    width: 48px;
}

.tdlong {
  display:inline-block;
  height: 150px;
  width: 48px;
}

table {
  display:block;
}

.tableRight {
  width: 460px;
  display:block;
}

.tablelong {
  display:block;
  width: 100%;
}

.row {
  display: flex;
}

.column {
  flex: 50%;
}

.column1 {
  min-width: 520px;
}

.column2 {
  min-width: 440px;
}

.drop-target {
  border: 2px dashed #D9D9D9;
  border-radius: 5px;
  min-height: 48px;
  max-height: 48px;
  min-width: 48px;
  margin: 0 auto;
  margin-top: 10px;
  float:left;
  overflow: hidden;
  text-align: left;
}

.drop-target-item {
  border: 2px dashed #D9D9D9;
  border-radius: 5px;
  min-height: 160px;
  max-height: 160px;
  min-width: 48px;
  max-width: 48px;
  margin: 0 auto;
  margin-top: 10px;
  overflow: hidden;
  float: left;
  display: block;
  text-align: left;
}

#drop-area {
  max-height: 1000px;
  background-color: rgba(32, 32, 32);
 }



/* dragula-specific styles */
.wrapper {
    display: table;
}
.container {
  display: table-cell;
  background-color: rgba(255, 255, 255, 0.2);
  width: 50%;
}
.container:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.2);
}

.container > div,
.gu-mirror {
  margin: 10px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 0.4s ease-in-out;
}
.container > div {
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.gu-mirror {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
.container .ex-moved {
  background-color: #e74c3c;
}
.container.ex-over {
  background-color: rgba(255, 255, 255, 0.3);
}

.parent {
  background-color: rgba(255, 255, 255, 0.2);
  margin: 50px 0;
  padding: 20px;
}

.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}
.gu-hide {
  display: none !important;
}
.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.gu-transit {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}

/* The switch - the box around the slider From W3*/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
