/* INICIJALIZACIJA */
@charset "UTF-8";
/* /////////////// */

/* FONT */


/* BAZA */
*,
:before,
:after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font: 16px/1.25 "Crimson Text", sans-serif;
  margin: 0;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; 
}

.clickable {
  cursor: pointer;
}

.clickable:hover {
  color: red;
}

.paper {
  height: 700px;
  width: 100%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0px 0px 5px 0px #888;
  margin: 0;
  padding: 0;
  margin-top: 1.5rem;
}

#printDiv {
  height: 100%;
  position: relative;
  display: block;
  padding: 15px;
}

.right-section {
  margin-top: 25px;
  display: block;
}

.text {
  display: block;
  margin-top: 0px;
  line-height: 25px;
  font-family: 'Indie Flower';
  overflow: hidden;
  outline: none;
}

.text-l {
  display: block;
  line-height: 25px;
  font-family: 'Indie Flower';
  overflow: hidden;
  outline: none;
  text-align: right;
}

.text-title {
  display: block;
  line-height: 25px;
  font-family: 'Indie Flower';
  overflow: hidden;
  outline: none;
  padding-top: 45px;
  text-align: center;
}

[contentEditable=true]:empty:not(:focus):before{
  content:attr(data-text);
  white-space: pre-line;
  width: 100%;
  display: block;
}

@media only screen and (max-width: 720px) {
  .paper {
    margin: 0;
  }
}