﻿body {
  font-family: 'Open Sans', sans-serif;
}
.page {
    min-width: 1750px;
}
.scroll {
  height: 75vh;
  overflow-y: scroll;
  overflow-x: hidden;
}
.cardColumn {
  display: inline-block;
  vertical-align: top;
  min-width: 150px;
  margin-top: 20px;
}
.sortable-container {
  background-color: #ccd9ec;
  border: 1px solid #ccd9ec;
  border-radius: 6px;
  min-height: 210px;
  width: 150px;
  vertical-align: top;
}
.sortable-container:not(:first-child) {
  border: 1px dashed #000;
}
.sortable-container .emptyCard {
  display: flex;
  height: 60px;
  width: 150px;
  background-color: #dff0d8;
  border: 1px solid #c1e2b3;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-bottom: -10px;
}
.sortable-container .emptyCard:nth-last-of-type(1) {
  height: 210px !important;
}
.card {
  display: flex;
  height: 60px;
  width: 150px;
  background-size: 150px 210px;
  margin-bottom: -10px;
}
.card.ui-sortable-helper {
  height: 210px !important;
}
.card:nth-last-of-type(1) {
  height: 210px;
}
.card img {
  height: auto;
  width: 100%;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}