/*
body {
 background-image: url("img/background.jpg");
 background-color: #ffffff;
 background-repeat: no-repeat;
 background-position-x: center;
}
*/

#input-text {
    width: 100%;
}

#container {
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;

    margin-left:auto;
    margin-right:auto;
    margin-top:10px; /* WIP */

    padding: 5px;

    background-image: none;
    background-color: #ffffff;
}

#container {
  max-width: 650px;
  min-width: 350px;
}

#response {
  padding: 10px;
}

.rounded-corners {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid gray;
}

.responsive-text {
  /* width: 350px; max-width: 350px; - TDU, on html element */
  margin: auto;
  max-width: 1000px;
  min-width: 350px;
}

.responsive-text-narrow {
  margin: auto;
  max-width: 400px;
  min-width: 350px;
}

table,
th,
td {
  border: 1px solid #EEE;
  width: 100%;
}

table th,
table td {
  padding: 5px;
  padding-right: 15px;
}

tr,
td {
  /* good for markdown -> html formatting */
  vertical-align: top;
}

#response img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#input-button, #random-button, #clear-button, .input-button-class {
  margin-top: 10px;
  margin-right: 3px;
}

.main-title {
    color: #000;
    text-decoration: none;
}

.options-list {
    padding-left: 10px;
}

.options-list input {
    margin: 8px;
}

.input-button-class {
  background-color: #FFCCFF;
}

.copy-link-button-class {
  color: #FFF;
  background-color: #B11BB1;
  border: 1px solid #B11BB1;
  height: 33px;
}

.button-clicked {
  border: 3px solid #FFCCFF;
}

#copy-report-button {
    margin-bottom: 20px;
}

#copy-idea-button {
    margin-bottom: 20px;
}

.info-link {
  /* text-decoration: none; */
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}*


/* https://github.com/kimmobrunfeldt/progressbar.js */
.progress {
    display:none;
    height: 15px;
    margin-bottom: 30px;
}

.progress > svg {
    height: 100%;
    display: block;
}

/* --- menu --- */

.topnav {
  /*overflow: hidden;*/
  background-color: #3776ab;
  position: relative;
}

.topnav a,
.topnav span {
  color: black;
  padding: 10px 10px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.topnav h1 a {
    font-size: large;
}

/* Style the hamburger menu */
.topnav span.icon {
  background: rgba(255,255,255,0.5);
  font-size: larger;
  display: block;
  position: absolute;
  padding-right: 15px;
  right: 0;
  top: 0;
  z-index: 10;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgb(255,204,255, 0.98);
  /*background-color: #FFCCFF;*/
  /*border-left: 1px solid #B11BB1;*/
  overflow-x: hidden;
  transition: 0.2s;
  padding-top: 40px;
  z-index: 20;
}

.sidenav span,
.sidenav a {
  padding: 8px 8px 8px 20px;
  text-decoration: none;
  font-weight: bold;
  color: black;
  display: block;
  transition: 0.3s;
}

.sidenav span:hover,
.sidenav a:hover {
  color: #3776ab;
  cursor: pointer;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  /*right: 25px;*/
  right: 8px;
  font-size: 28px;
  padding-top: 0;
  margin-left: 50px;
  cursor: pointer;
}

/* Portfolio */
.portfolio-item-container .portfolio-heading-link {
  color: inherit;
  text-decoration: none;
}

.portfolio-item-container img {
  float: right;
  width: 150px;
  height: 150px;
  z-index: 100;
}

.portfolio-item-container h3 {
  position: relative;
  z-index: 1;
}
