html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, textarea, input {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
}



.background {
  background: url("images/dark-repeat-bg.png") repeat-x top left;
  background-size: 1px 1040px;
  height: 1040px;
}

.background.light-bg {
  background-image: url("images/light-repeat-bg.png");
}

.current-image-container {
  position: relative;
  margin: 0 auto;
  width: 1280px;
}

img.current-image {
  width: 1280px;
}

.button-container {
  display: none;
  float: left;
  margin-left: 10px;
}

.button-container a {
  display: inline-block;
  border: 1px solid #3498DB;
  padding: 2px 5px;
  border-radius: 3px;
  text-decoration: none;
  color: #3498DB;
}

.button-container a:hover {
  color: #196090;
  border-color: #196090;
}

.activate-capture {
  display: none !important;
}

.capture-position-container {
  display: none;
}

.starting-point, .ending-point {
  position: absolute;
  top: 5px;
  left: 5px;
}

.starting-point:before, .ending-point:before {
  position: absolute;
  top: -5px;
  left: -5px;
  content: " ";
  height: 11px;
  width: 11px;
  border: 2px solid black;
  background: #fff;
  border-radius: 50%;
}

.starting-point:before {
  background: #2ECC71;
}

.ending-point:before {
  background: #E74C3C;
}

.capture-position-container.active {
  display: block;
}

.clickable-area {
  position: absolute;
  cursor: pointer;
  border-radius: 3px;
}

.clickable-area:hover {
  background: rgba(255,255,255,.2);
}



/* input elements */

.step-element {
  display: none;
}

.your-name {
  position: absolute;
  top: 338px;
  left: 463px;
  border: 1px solid #ccc;
  width: 334px;
  height: 27px;
}

/*
.first-comment, .second-comment {
  position: absolute;
  top: 448px;
  left: 380px;
  width: 377px;
  height: 84px;
  resize: none;
  border-width: 0;
  outline: none;
}

.second-comment {
  top: 759px;
  left: 471px;
  width: 418px;
  height: 58px;
}
*/

.link-to-contact-page {
  position: absolute;
  top: 374px;
  height: 22px;
  left: 474px;
  width: 118px;
}

.link-to-contact-page:hover {
  background: rgba(255,255,255,.3);
}

.link-to-home-page {
  position: absolute;
  top: 430px;
  left: 554px;
  width: 153px;
  height: 45px;
}

.link-to-home-page:hover {
  background: rgba(255,255,255,.3);
}

.user-name {
  position: absolute;
  top: 478px;
  left: 385px;
  font-size: 12px;
  font-weight: bold;
  color: #888;
  background-color: rgba(255,255,255,1);
  min-width: 200px;
  padding: 5px;
}





/* loading */

.loading-container {
  position: fixed;
  height: 100vh;
  width: 100%;
  background: #333;
  z-index: 999;
  top: 0;
  left: 0;
}

.loading-text {
  font-size: 20px;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-top: 30vh;
  text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

.spinner {
  margin: 40px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: rgba(255,255,255,.5);
  box-shadow: 1px 1px 0px rgba(0,0,0,.4);

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}



/**/

#one, #two {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 9999;
  cursor: pointer;
  border-radius: 5px;
}


.outlines-container {
  position: absolute;
  top: 536px;
  left: 501px;
}

.red-outline {
  position: absolute;
  top: 536px;
  left: 501px;
  border: 2px solid #E74C3C;
  border-radius: 3px;
  width: 23px;
  height: 22px;
}

#one {
  position: absolute;
  top: 536px;
  left: 501px;
  width: 23px; 
  height: 22px;
}

#one:hover {
  background: rgba(52, 152, 219, .1);
  border-radius: 3px;
  border: 2px solid #3498DB;
}

#two {
  top: 249px;
  left: 572px;
  width: 195px;
  height: 82px;
}

#two.dragHover {
  border-radius: 3px;
  box-shadow: 1px 1px 0px 5px hsl(210, 29%, 96%), 1px 1px 0px 9px #3498DB;
}

.jsplumb-endpoint-anchor, .jsplumb-connector {
  z-index: 99999 !important;
}

/**/

.moving-cursor {
  position: absolute;
  top: 537px;
  left: 498px;
  height: 40px;
  width: 40px;
  z-index: 9999;
  opacity: .7;
  -webkit-animation: move 2.60s ease-in-out infinite;
  -moz-animation: move 2.60s ease-in-out infinite;
  -o-animation: move 2.60s ease-in-out infinite;
  animation: move 2.60s ease-in-out infinite;
}

@-webkit-keyframes move {
  0% {
    top: 537px;
    left: 498px;
    opacity: 0;
  }
  1% {
    top: 537px;
    left: 498px;
    opacity: .7;
  }
  60% {
    top: 290px;
    left: 640px;
    opacity: .7;
  }
  65% {
    top: 290px;
    left: 640px;
    opacity: 0;
  }
  100% {
    top: 290px;
    left: 640px;
    opacity: 0;
  }
}
@-moz-keyframes move {
  0% {
    top: 537px;
    left: 498px;
    opacity: 0;
  }
  1% {
    top: 537px;
    left: 498px;
    opacity: .7;
  }
  60% {
    top: 290px;
    left: 640px;
    opacity: .7;
  }
  65% {
    top: 290px;
    left: 640px;
    opacity: 0;
  }
  100% {
    top: 290px;
    left: 640px;
    opacity: 0;
  }
}
@-o-keyframes move {
  0% {
    top: 537px;
    left: 498px;
    opacity: 0;
  }
  1% {
    top: 537px;
    left: 498px;
    opacity: .7;
  }
  60% {
    top: 290px;
    left: 640px;
    opacity: .7;
  }
  65% {
    top: 290px;
    left: 640px;
    opacity: 0;
  }
  100% {
    top: 290px;
    left: 640px;
    opacity: 0;
  }
}
@keyframes move {
  0% {
    top: 537px;
    left: 498px;
    opacity: 0;
  }
  1% {
    top: 537px;
    left: 498px;
    opacity: .7;
  }
  60% {
    top: 290px;
    left: 640px;
    opacity: .7;
  }
  65% {
    top: 290px;
    left: 640px;
    opacity: 0;
  }
  100% {
    top: 290px;
    left: 640px;
    opacity: 0;
  }
}











