.headline {
  font-family: "Gill Sans", sans-serif;
  text-transform: uppercase;
}

H2 {
  font-family: "Gill Sans", sans-serif;
  text-transform: uppercase;
}

body {
  font-family: "Gill Sans", sans-serif;
  font-weight: 200;
  max-width: 750px;
  margin:auto;
  background-color: white;
}

.btn {
  font-family: "Gill Sans", sans-serif;
}

a {
  color: #005aaa;
}

.infotext {
  font-size: 0.7em;
  margin-top:5%;
}
.header {
background-color: #ffffff;
  height: 50px;
  background-position-y: bottom;
  background-position-x:center;
  margin-bottom: 2%;
}

.header_image {
  margin-top: 1%;
  width: 200px;
}
.header_powered {
  margin-top: 1%;
  width: 80px;
}

.card_wrapper {
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: auto;
  margin-right:auto;
  width: 97%;
  border-radius: 0px;
  overflow: hidden;
  /* -webkit-box-shadow: 7px 7px 20px -1px rgba(0,0,0,0.5); 
  box-shadow: 7px 7px 20px -1px rgba(0,0,0,0.5); */
  background-color: #afabab;
  
}

.buttons_wrapper {
  margin: auto;
  width: 100%;
}

.template_container {
  background-color: white;
  margin: auto;
  margin-bottom: 5%;
  width: 90%;
}

.templates_wrapper {
  width: 100%;
}

#stage-parent {  
  width: 100%;
}

.spinner_load {
  display: none;
  text-align: center;
  width:100%;
}

.spinner_img {
  width: 50%;
}

.btn-msa {
  background-color: #005aaa;
  border-radius: 0px;
  color:white;
  font-size: 0.8em;
}
.btn-msa:hover {
  color: #b7c5e2;
}


.btn-msa-light {
  background-color: #0046bf;
  border-radius: 0px;
  color:white;
  font-size: 0.8em;
}
.btn-msa-light:hover {
  color: #ffc107;
}

.btn-msa-sekundär {
  background-color: #005aaa;
  border-radius: 0px;
  color: black;
  font-size: 0.8em;
}
.btn-msa-sekundär:hover {
  color: #b7c5e2;
}


.form-switch .form-check-input {
  width: 2.5em;
  height: 1.5em;

}

.form-check-input:checked {
  background-color: #9ccd0a;
  border-color: #9ccd0a;
}

.template_row {
padding: 0px;
}

.template_image {
  outline: 6px solid white;
}

.headline_block {
  background-color: white;
  padding: 2%;
}

.konvajs-content {
margin:auto;

}

.download_info_wrapper {
  margin-top: -1em;
  margin-bottom: 0.5em;
  display: flex;
  padding-bottom:10px;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
  z-index: 5;
  opacity: 0;  
}

.download_info_button {
  font-size: inherit;
  color: black;
  width: auto;
  text-align: center;
  padding: 8px;
  line-height: 14px;
  position: relative;
  border-radius: 6px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out 0s;
  top: 0px;
  border: 0px solid rgb(255, 255, 255);
  -webkit-box-shadow: 7px 7px 20px -1px rgba(0,0,0,0.7); 
  box-shadow: 7px 7px 20px -1px rgba(0,0,0,0.7);
  background-color: rgb(255, 255, 255);
}

.download_info_pointer {
  content: " ";
    position: absolute;
    bottom: 100%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent rgb(255, 255, 255);
    left: 50%;
}


.btn_animate {
  animation-duration: 1s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    padding-top: 10px;
    padding-bottom: 0px;
    opacity: 0;
  }

  to {
    padding-top: 0px;
    padding-bottom: 10px;
    opacity: 1;
  }
}



.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #f1f1f1;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}


/* Orientation Lock */
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
  html {
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 100vh;
    overflow-x: hidden;
    position: absolute;
    top: 100%;
    left: 0;
  }
}



/* Desktop View */
@media (min-width: 800px) {
  body {
    max-width: 100%;
  }
.header {
  background-size: inherit;
  background-repeat: no-repeat;
  height: 90px;
}
}