.packery-grid {
    /*width: calc(100% - 100px);*/
    width: calc(110%);
    margin: 20px auto;
}

/* clear fix */
.packery-grid:after {
  content: '';
  display: block;
  clear: both;
}

.packery-grid .grid-item {
    float: left;
    -moz-min-width: 300px;
    -ms-min-width: 300px;
    -o-min-width: 300px;
    -webkit-min-width: 300px;
    min-width: 300px;
    height: 300px;

    min-height: 150px;
    width: 25%;
    border: none;
    margin: 0;
    padding: 5px;

    background-color: #f9f9f9;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.packery-grid .grid-item .inner {
    -webkit-box-shadow: 0px 0px 5px 1px rgba(204,204,204,0.8);
    -moz-box-shadow: 0px 0px 5px 1px rgba(204,204,204,0.8);
    -ms-box-shadow: 0px 0px 5px 1px rgba(204,204,204,0.8);
    box-shadow: 0px 0px 5px 1px rgba(204,204,204,0.8);
    border-radius: 2px;
    width: 100%;
    height: 100%;
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.grid-item.width--1 {
    min-width: 300px;
    width: 25%;
}

.grid-item.width--2 {
    min-width: 600px;
    width: 50%;
}

.grid-item.width--3 {
    min-width: 900px;
    width: 75%
}

.grid-item.width--4 {
    min-width: 1200px;
    width: 100%;
}

.grid-item.height--1 {
    min-height: 150px;
}

.grid-item.height--2 {
    min-height: 600px;
}

.grid-item.height--3 {
    min-height: 900px;
}

.packery-grid .grid-item .inner > div {
    max-height: calc(100% - 42px);
}

.packery-grid .grid-item .inner > div.box-content {
    float: left;
    height: calc(100% - 42px);
    width: 100%;
    max-width: 100%;
}
.packery-grid .grid-item .inner > div.box-content.half-height{
    height: calc(50% - 42px);
}

.packery-grid .grid-item .inner > div.box-content.half-width{
    width: calc(50% - 5px);
    max-width: calc(50% - 5px);
}

.packery-drop-placeholder {
  outline: 3px dashed hsla(0, 0%, 0%, 0.5);
  outline-offset: -6px;
  -webkit-transition: -webkit-transform 0.2s;
          transition: transform 0.2s;
}

.handle {
    cursor: move;
}

/* Draggabilly adds is-dragging */
.packery-grid .grid-item.is-dragging,
/* Packery adds class while transitioning to drop position */
.packery-grid .grid-item.is-positioning-post-drag {
  z-index: 2; /* keep dragged item on top */
}


/* DevExtreme Customizations */
.dxm-background {
    stroke: none;
    fill: none;
}

.grid-item .dx-datagrid {
    background: transparent;
}

.title-label {
    font-size: 28px;
    font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', 'Trebuchet MS', Verdana;
    font-weight: 200;
    color: #232323;
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    -moz-text-overflow: ellipsis;
    text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
    padding: 0 20px 0 20px;
    box-sizing: border-box;
}

.big-label {
    font-size: 112px;
    font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', 'Trebuchet MS', Verdana;
    font-weight: 400;
    color: #232323;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.action-title-label {
    font-size: 22px;
    font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', 'Trebuchet MS', Verdana;
    font-weight: bold;
    color: red;
    width: 100%;
    display: inline-block;
    margin-left: 20px;
    text-align: left;
    -moz-text-overflow: ellipsis;
    text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
    /*padding: 0 20px 0 20px;*/
    box-sizing: border-box;
}

.action-details {
    font-size: 18px;
    font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', 'Trebuchet MS', Verdana;
    font-weight: 400;
    color: #232323;
    display: inline-block;
    margin-left: 20px;
    text-align: left;
    width: 100%;
}

.bold {
    font-weight: bold;
}