.gr-blank {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 200px;
      grid-template-columns: 1fr 200px;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
      grid-template-areas: "blankstory blankbank";
  margin-top: 20px;
  height: calc(100% - 20px);
  font-size: 1.4rem;
  width: 100%;
}

.blank-story {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: blankstory;
  padding: 20px 20px 0px 20px;
}

.blank-bank {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: blankbank;
}

.blank-slot {
  display: inline-block;
  position: relative;
  text-align: center;
  margin: 0px;
  outline: 1px solid green;
  /* outline-style: double; */
  /* outline-color: yellow; */
}

.blank-slot {
  width: 200px;
  outline-offset: -6px;
  font-size: 1.2rem;
}

.blank-slot-empty {
  width: 200px;
  outline-offset: -6px;
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
  text-align: center;
  margin: 0px;
  outline: 1px solid green;
}

.blank-slot-full {
  width: 200px;
  outline-offset: -6px;
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
  text-align: center;
  margin: 0px;
  outline: 1px solid white;
  border-bottom: solid 1px blue;
}

.blank-slot:after, .blank-slot:before {
  /* dummy needed to get borders dispalyed */
  content: '.';
  color: white;
}

.bg-original {
  background-color: white;
}

.bg-hover {
  background: whitesmoke;
}

.draggable-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  /* Keep in mind that the size of the border, margins, and paddings 
    affect the size of an element. 
    It can be fixed using the box-sizing CSS property 
    or including those values into the size value. */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px black;
}

.draggable-item {
  padding: 10px;
  width: 180px;
  height: 50px;
  font-size: 25px;
  border-radius: 10px;
}

.draggable-item.animatable {
  -webkit-transition: opacity linear 400ms, -webkit-transform linear 400ms;
  transition: opacity linear 400ms, -webkit-transform linear 400ms;
  transition: transform linear 400ms, opacity linear 400ms;
  transition: transform linear 400ms, opacity linear 400ms, -webkit-transform linear 400ms;
}

.draggable-item.active {
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  will-change: transform;
  z-index: 1;
}

.keeper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.5;
  background: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.active {
  position: fixed;
  /* It will make the element move around the screen even if its parent has overflow: hidden; */
  left: 0;
  /* It will position the element in the initial left position of the screen. */
  top: 0;
  /* It will position the element in the initial top position of the screen. */
  will-change: transform;
  /* Warns the browsers that something will change so the browser can make all needed optimizations to make it happen. */
  z-index: 1;
  /* It will move the active draggable item one level in the stacking order. */
  /* pointer-events: none;  */
}

.blank-story > p {
  margin-bottom: 20px;
  line-height: 46px;
  overflow-y: auto;
}

.format-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.format-bank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.word-item {
  margin-bottom: 10px;
}

.hint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 1.2rem;
}

.zdanie {
  font-size: 1.6rem;
}

.zdanie > span {
  font-size: 1.6rem;
}
/*# sourceMappingURL=main_blank.css.map */