body {
  overflow-x: hidden;
}
#app {
  margin-top: 60px;
}
.slide-fade-enter-active {
  transition: all .3s ease;
}
.slide-fade-leave-active {
  transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to
/* .slide-fade-leave-active below version 2.1.8 */ {
  transform: translateX(10px);
  opacity: 0;
}
.active.correct {
	background-color: green;
}
.active {
	background-color: yellow;
}
/* always present */
.expand-transition {
  transition: all 0.5s ease;
}
/* .expand-enter defines the starting state for entering */
/* .expand-leave defines the ending state for leaving */
.expand-enter, .expand-leave {
  height: 0;
  opacity: 0;
}
.animated {
    display: inline-block;
}

.animated.v-enter {
    animation: fadein .5s;
}

.animated.v-leave {
    animation: fadeout .5s;
}

@keyframes fadein {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeout {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(0);
    }
}

.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: table;
  transition: opacity .3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
  width: 300px;
  margin: 0px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
  transition: all .3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

.modal-header h3 {
  margin-top: 0;
  color: #42b983;
}

.modal-body {
  margin: 20px 0;
}

.modal-default-button {
  float: right;
}

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.block {
/*    display: flex;
    flex-direction: column;
    margin: 20px;*/
/*    bottom: 0;
    right: 0;
    position: absolute;*/
    float: left;
    width: 60%;
}

.text {
    color: #1abc9c;
    font-size: 25px;
    font-family: 'Roboto Condensed', serif;
    font-weight: 40;
    margin-top:10px;
    margin-bottom: 10px;
    text-align: center;
}

.digit {
    color: #000;
    font-size: 38px;
    font-weight: 100;
    font-family: 'Roboto', serif;
    margin: 10px;
    /*text-align: center;
    position: absolute;*/
    width: 111px;
    line-height: 3;
}
#app > div > div > form > ul > li {
list-style: none;
}
input[type="radio"] {
	display: none;
}
.prev {
  background: #00AB51;
  font-size: 25px;
    font-family: 'Roboto Condensed', serif;
    border-radius: 5px;
    border: none;
}
@font-face {
    font-family: ParisTheHandBlack;
    src: url(./assets/fonts/LaGoupilParisTheHandBlack.otf);
}
body {
  background-image: url('./assets/images/pozadina.jpg');
  font-family: 'ParisTheHandBlack';
      font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
}
#app > div > div.col-md-8 > div > div > span {
  color: #fff;
}
.slide-fade-enter-active {
  transition: all .3s ease;
}
.slide-fade-leave-active {
  transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to
/* .slide-fade-leave-active below version 2.1.8 */ {
  transform: translateX(10px);
  opacity: 0;
}
/* always present */
.expand-transition {
  transition: all 0.5s ease;
}
/* .expand-enter defines the starting state for entering */
/* .expand-leave defines the ending state for leaving */
.expand-enter, .expand-leave {
  height: 0;
  opacity: 0;
}
.animated {
    display: inline-block;
}

.animated.v-enter {
    animation: fadein .5s;
}

.animated.v-leave {
    animation: fadeout .5s;
}

@keyframes fadein {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeout {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(0);
    }
}

.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: table;
  transition: opacity .3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
  width: 300px;
  margin: 0px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
  transition: all .3s ease;
  font-family: ParisTheHandBlack, Arial, sans-serif;
}

.modal-header h3 {
  margin-top: 0;
  color: #42b983;
}

.modal-body {
  margin: 20px 0;
}

.modal-default-button {
  float: right;
}

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/*.block {
    display: flex;
    flex-direction: column;
    margin: 20px;
}*/

.text {
    color: #1abc9c;
    font-size: 25px;
    font-family: 'ParisTheHandBlack', serif;
    font-weight: 40;
    margin-top:10px;
    margin-bottom: 10px;
    text-align: center;
}

.digit {
    color: #000;
    font-size: 38px;
    font-weight: 100;
    font-family: 'ParisTheHandBlack', serif;
    left: 20px;

    /*margin: 10px;
    text-align: center;*/
}
#app > div > div > form > ul > li {
list-style: none;
}
input[type="radio"] {
	display: none;
}
.pitanje {
  color: #fff;
  font-family: 'ParisTheHandBlack', serif;
  text-transform: uppercase;
  font-size: 50px;
}
.pitanje  h3{
  font-size: 2.75rem;
  line-height: 1.3em;
}
.odgovor {
  color: #fff;
  font-family: 'ParisTheHandBlack', serif;
  text-transform: uppercase;
}
.odgovor ul li {
  list-style: none;
  font-size: 2em;
    min-width: 60%;
  background: #0ead21;
  border-radius: 0px;
  margin-top: 6px;
  margin-bottom: 6px;
   -webkit-transition: all .5s; /* Safari */
  transition: all .5s;
}
.odgovor ul li:hover {
  transform: scale(1.1);
  -webkit-transition: all .5s; /* Safari */
  transition: all .5s;
}
.digit {
  color: #fff;
}
#logo {
  width: 64%;
  margin: 0 auto;
}
#logo img {
  width: 100%;
}
.block {
}
.naslov-kviz {
  text-align: center;
  color: #fff;
  font-family: 'ParisTheHandBlack', serif;
  font-size: 3.5rem;
}
.sahat img {
    float: left;
    /*left: 0;*/
    width: 65px;
   /* bottom: 0;*/
}
.active.correct label{
  background: #FAAF40;
}
.active.incorrect label{
  background: #ED1C24;
}
.netacno {
    color: #ED1C24;
    font-family: 'ParisTheHandBlack', serif;
    font-size: 3.5em;
    display: block;
    position: absolute;
    clear: both;
    float: right;
    top: 55px;
    line-height: 1.4em;
    width: 100%;
    text-align: right;
}
.tacno {
  color: #FAAF40;
  font-family: 'ParisTheHandBlack', serif;
  font-size: 3.5em;
  display: block;
  position: absolute;
  clear: both;
  top: 55px;
  line-height: 1.4em;
  width: 100%;
  text-align: right;
}
.izaberi-odgovor {
  color: #fff;
  font-family: 'ParisTheHandBlack', serif;
  font-size: 2.4em;
  display: block;
  position: relative;
  clear: both;
  /*float: left;*/
  line-height: 1.4em;
  text-align: center;
}
.sahat {
    position: relative;
    bottom: 0;
    margin: 0 auto;
    width: 11rem;
}
.kviz-container {
      min-height: 50vh;
}
.active label{
  background: orange;
}
.isteklo-vrijeme h3{
  font-family: 'ParisTheHandBlack', serif;
  font-size: 2.75rem;
  color: #fff;
}
.isteklo-vrijeme {
  text-align: center;
  margin: 0 auto;
      margin-top: -12%;
}
.kraj {
  margin: 0 auto;
}
.kraj img {
  width: 100%;
}
.lijeva-strana {
      margin: 0 auto;
    position: relative;
    clear: both;
}
#start button {
    background-color: transparent;
    border: none;
    background-image: url(./assets/images/button-pozadina.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-family: 'ParisTheHandBlack', serif;
    font-size: 2.4rem;
    padding: 0.5rem 1rem;
    color: #0ead21;
}
.modal-header {
  background: #ED1C24;
  
}
.modal-title {
  line-height: 1;
}
.modal-header h3 {
  color: #fff;
  text-transform: uppercase;
  font-family: 'ParisTheHandBlack', serif;
    font-size: 2.75rem;
}
.modal-zatvori {
  background: #00AB51;
  border: none;
  color: #fff;
  font-family: 'ParisTheHandBlack', serif;
    font-size: 2rem;
    line-height: 1em;
}
.modal-zatvori:hover {
  background-color: #ED1C24;
}
.start-oblak {
/*  background-image: url('./assets/images/start-oblak.png');
      background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;*/
  text-align: center;
  position: relative;
  float: none;
}
.beepster-pitanje img {
  width: 100%;
}
.oblak-text{
  text-align: center;
  float: none;
  font-family: 'ParisTheHandBlack', serif;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2rem;
  position: absolute;
  width: 70%;
  margin-left: 7%;
  margin-top: 20%;
  line-height: 1.2;
}
.pitanja-row {
      margin-top: 12%;
}
.beepster img {
  width: 100%;
}
.prev, .next {
    background: #00AB51;
    font-size: 30px;
    font-family: 'ParisTheHandBlack', serif;
    border-radius: 5px;
    border: none;
    color: #fff;
}
#kraj {
	display: none;
}
.isteklo-vrijeme {
	display: none;
}
.izaberi-odgovor, .tacno, .netacno {
	display: none;
}
#wrapper {
  display: none;
}
#pitanje-holder, .lijeva-strana {
  display: none;
}
.odgovor {
  text-align: center;
}
#pitanje-holder li {
  cursor: pointer;
  min-width: 60%;
}
.pitanje-content {
  display: none;
}
.pitanje {
      font-size: 2.75rem;
    line-height: 1.3em;
}
.kraj-text {
    text-align: center;
  float: none;
  font-family: 'ParisTheHandBlack', serif;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2rem;
  position: absolute;
  width: 70%;
  margin-left: 7%;
  margin-top: 20%;
  line-height: 1.2;
}
.beepster-pitanje {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 39%;
}
@media only screen and (max-width: 1200px) {
    .oblak-text {
        font-size: 1.6rem;
    margin-top: 19%;
  }
    .odgovor label {
      min-width: 70%;
    }
    html {
      font-size: 14px;
    }
    .sahat img {
      float: none;
    }
    .start-oblak {
    background-size: contain;
    display: block;
    clear: both;
    height: 447px;
    }
    .beepster-pitanje {
      bottom: 0;
    }
}
@media only screen and (max-width: 1000px) {
    .oblak-text {
        font-size: 1.6rem;
    margin-top: 28%;
    }
    .odgovor label {
      min-width: 100%;
    }
    #start button {
      font-size: 2.5rem;
    }
    #start {
        margin-top: 14%;
        }
    html {
      font-size: 13px;
    }
    .beepster-pitanje {
      bottom: 2rem;
    }
}
@media only screen and (max-width: 991px) {
  .oblak-text {
        font-size: 1.3rem;
    margin-top: 18%;
    }

  .start-oblak {
    height: 370px;
  }
  .tacno, .netacno {
    top: 0px;
  }
  .sahat {
    top: 0px;
    text-align: center;
  }
  .beepster-pitanje {
      bottom: 4rem;
    }
  }
@media only screen and (max-width: 870px) {
    .lijeva-strana {
    display: block;
    clear: both;
    height: 250px;
  }
  .pitanja-row {
      display: block;
  }
    .beepster-pitanje {
      position: relative;
      width: 75%;
      bottom: 0rem;
    }
}
.correct {
  background: #FAAF40!important;
}
.incorrect {
  background: #ED1C24!important; 
}
.question-holder {
  float: none;
  text-align: center;
  margin: 0 auto;
}
.form-group > label {
  color: #fff;
}
#forma > form > div > p {
  color: red;
  opacity: 0;
  position: absolute;
}
#posalji {
    background-color: transparent;
    border: none;
    background-image: url(./assets/images/button-pozadina.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-family: 'ParisTheHandBlack', serif;
    font-size: 2.1rem;
    line-height: 2.1rem;
    height: 2.8rem;
    width: 6.5rem;
    float: right;
    color: #0ead21;
    padding-top: .7rem;
}
#start {
  display: none;
}
.pitanja-row {
  display: none;
}
#forma {
  display: block;
  clear: both;
  margin: 0 auto;
}
#pozdravna-poruka p{
  color: #fff;
  font-family: 'ParisTheHandBlack', serif;
  font-size: 2.55rem;
  clear: both;
}
.form-control {
  background: transparent;
  color: #fff;
  font-size: 1.7em;
  font-family: 'ParisTheHandBlack', serif;
}
.form-control:focus { 
    background-color: transparent;
    color: #fff;
}
.form-control::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #ffffff;
    text-align: center;
}
.form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #ffffff;
   opacity:  1;
}
.form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #ffffff;
   opacity:  1;
}
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #ffffff;
}
.form-control::-ms-input-placeholder { /* Microsoft Edge */
   color:    #ffffff;
}

.form-control::placeholder { /* Most modern browsers support this now. */
   color: #ffffff;
   font-family: 'ParisTheHandBlack', serif;
   margin: 5px;
   line-height: 5rem;
}
.form-group input {
    height: 3rem;
    font-size: 2.1rem;
    text-transform: uppercase;
     -webkit-transition: all .5s; /* Safari */
    transition: all .5s;
    background-color: #0ead21;
    text-align: center;
    border-radius: 0;
    border: none;
}
.form-group label {
  display: none;
}
#kraj {
  transition: all 1s;
}
#posalji:hover {
  transform: scale(1.1);
  transition: all .5s;
}
.form-group input:hover {
  transform: scale(1.1);
  transition: all .5s;
}
.disabled {
  transition: all .4;
  pointer-events:none;
  opacity:0.7;
}
.time-scale {
  transform: scale(1.6) translate(30px,0px);
  transition: all .2s;

}
#pozdravna-poruka {
      margin-top: 50px;
}
.odgovor ul {
  padding-left: 0;
}
.rezultati {
    color: #fff;
    text-align: center;
    font-size: 25px;
    margin: 0 auto;
}
.rezultati th {
  color: #FAAF40;
  width: 120px;
}
#login {
  background-color: #00AB51;
  width: 100px;
  margin-top: 10px;
}
.admin-forma input {
  display: block;
  background: transparent;
  border: 1px solid #ffffff;
  color: #fff;
  font-family: 'ParisTheHandBlack', serif;
  font-size: 2.55rem;
  background: rgba(0,0,0,0);
  width: 50%;
  text-align: center;
  margin: 0 auto;
  float: none;
}
.admin-forma {
  margin-top:15%;
}
.odjava {
    background-color: #FAAF40;
    border-color: #FAAF40;
    font-family: 'ParisTheHandBlack', serif;
    font-size: 2.1rem;
    line-height: 2.1rem;
    height: 5.1rem;
    padding: 10px;
    color: #fff;
    text-decoration: none;
}
#double-user {
      color: red;
    font-size: 2rem;
}
.header-title-first {
  width: 100%;
}
#next {
  display: none;
}
.incorrect-credentials {
    text-align: center;
    color: red;
    font-size: 2rem;
}
.logged-in-message {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
}