@font-face {
  font-family: "Yanone";
  src: url("../fonts/YanoneKaffeesatz-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "YanoneBold";
  src: url("../fonts/YanoneKaffeesatz-Bold.ttf") format("truetype");
}

:root {
  --bdkj-green: #77B800;
  --b75-scaling: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Yanone";
}

body {
  margin: 0;
  font-family: "Trebuchet MS";
/*   background-color: #77B800; */
}

#b75-editor {
  width: 100vw;
/*   height: 100vh; */
  padding: 3px;
  box-sizing: border-box;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
/*  grid-column-gap: 40px; */
  grid-column-gap: 4vW;
}

#b75-options {
/*  height: 500px; */
  height: 48vW;
  width: 48vW;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#b75-options > * {
  margin: 0 0 2.5vw 0;
}

#b75-header {
/*  font-size: 45px; */
  font-size: 4.5vW;
}

#b75-teaser {
/*  font-size: 18px; */
  font-size: 2.0vW;  
/*  margin-bottom: 30px; */
  margin-bottom: 3.3vW;
}

#b75-upload-input {
  display: none;
}

#b75-texts {
/*   display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 10px; */
  width: 100%;
}

.b75-text-input {
  display: none;
}

.b75-text {
  display: block;
  background-color: #ffffff;
  padding: 5px 15px;
  color: var(--bdkj-green);
  border: 1px solid var(--bdkj-green);
  border-radius: 100px;
  margin-bottom: 10px;
/*  font-size: 23px; */
  font-size: 2.0vW;
  cursor: pointer;
  font-family: "Yanone";
}

.b75-text:last-of-type {
  margin-bottom: 0;
}

.b75-text-input:checked + .b75-text {
  background-color: var(--bdkj-green);
  color: #fff;
}

#b75-name-organization {
  width: 100%;
  display: none;
  gap: 10px;
}

.b75-name-organization-input {
  width: 48%;
  padding: 5px 15px;
  border: 1px solid var(--bdkj-green);
  border-radius: 100px;
  font-family: 'Yanone';
  font-size: 1.9vW;
}

#b75-icons {
  width: 100%;
/*  margin-bottom: 40px; */
  margin-bottom: 2vW;
}

.b75-icon {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  margin-right: 20px;
}

.b75-icon.disabled {
  opacity: .5;
}

.b75-icon > i {
/*  font-size: 26px; */
  font-size: 3vW;
}

.b75-icon > .b75-icon-text {
/*  font-size: 16px;*/
  font-size: 1.6vW;
  margin-top: 10px;
}

#b75-upload-change-input {
  display: none;
}

#b75-disclaimer {
  font-size: 1.4vW;
}

#b75-options #b75-download-button {
  margin-bottom: 0;
}

#b75-share-back-buttons {
  display: none;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
}

.b75-share-button > i {
  font-size: 3.4vw;
  min-width: 1em;
}

#b75-back-to-editor {
  grid-column: 1 / 4;
  cursor: pointer;
}




#b75-stage-preview {
/*   width: 500px;
  height: 500px; */
  width: 47.5vW;
  height: 47.5vW;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(4px 4px 4px rgba(100,100,100,.75));
  background-color: #fff;
}

#b75-preview-upload {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/b75-preview-image.png);
  -webkit-background-size: cover;
  background-size: cover;
}

#b75-preview-upload-icon {
  width: 25%;
  height: 25%;
  background-image: url(../images/b75-preview-upload-icon.svg);
  cursor: pointer;
}

#b75-stage-container {
/*   width: 500px;
  height: 500px; */
  width: 47.5vW;
  height: 47.5vW;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(4px 4px 4px rgba(100,100,100,.75));
}



/* Buttons */

.b75-button {
  font-family: "Yanone";
  border: none;
  background-color: var(--bdkj-green);
  color: #fff;
  border-radius: 100px;
  padding: 10px 40px;
/* font-size: 30px; */
  font-size: 3.6vW;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease-out;
}

.b75-button:hover {
  background-color: #456B00;
}


/* Screens */

.b75-first-screen {
/*  display: none;*/
}

.b75-second-screen {
   display: none; 
}

.b75-third-screen {
  display: none;
}


@media screen and (max-width: 743px) {
  #b75-editor {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-row-gap: 4vW;    
  }
  
  #b75-options {
    justify-content: start;    
    height: 80vW;
    width: 80vW;
    margin: 0 auto;
  }
  
  #b75-stage-preview {
    width: 80vW;
    height: 80vW;
    margin: 0 auto;
  }

  #b75-stage-container {
    width: 80vW;
    height: 80vW;
    margin: 0 auto;
  }  
  
  .b75-icon > .b75-icon-text {
    font-size: 2.0vW;
    margin-top: 10px;
  }
  
  .b75-icon > i {
    font-size: 4.0vW;    
  }  

  .b75-text {
    font-size: 3.5vW;
  } 
  
  #b75-teaser {
    font-size: 3.8vW;  
  }  
  
  .b75-name-organization-input {
    font-size: 3vW;
  }
  
  #b75-disclaimer {
    font-size: 2vW;
  }
    
}

@media screen and (max-width: 400px) {
  .b75-button {
    padding: 10px 30px;
  }
}