@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

h1 {
  color: navajowhite;
  font-variant-caps: all-small-caps;
  font-size: 46px;
}
.go-button:hover {
  cursor: pointer;
  box-shadow: 0 0 0 3px white,
              0 0 0 6px navajowhite;
} 

* {
  box-sizing: border-box;
  font-family: Roboto;
}

.button {
  display: inline-block;
  margin-right: 10px;
  background: #339DFF;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  line-height: 38px;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: fit-content;
  padding: 0px 20px 0px 20px;
  text-align: center;
}

.button:hover {
  background: #fff;
  cursor: pointer;
  color: #339DFF;
  box-shadow: 0 4px 4px rgba(83, 100, 255, 0.32);
}

.button:focus {
  box-shadow: 1px 1px 1px 1px rgba(83, 100, 255, 0.32), 0 0 0 2px rgb(255, 255, 255), 0 0 0 4px rgb(46, 113, 190);
  outline:none;
}

#layoutcard {
  border: 1px solid #dfe1e5;
  box-shadow: none;
  padding: 12px;
  margin: 3px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-radius:  0px;
  width: fit-content;
  max-width: 100%;
}

#copyTextArea {
  position: absolute;
    top: -80px;
}

#layoutcard p {
  margin: 3px
}

.copyclip {
  line-height: 20px;
  margin: 5px 10px 10px 20px;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  vertical-align: center;
  background: url('/static/images/copy-to-clip-icon.png')no-repeat;
  background-size: 70%;
  background-position-x: 50%;
  background-position-y: 50%;
  transition: all 0.3s ease 0s;
}

.copyclip:hover, .copyclip:focus {
  outline: none;
  cursor: pointer;
  box-shadow: 0 0 1px 1px rgba(0,0,0,1), 0 0 0 3px rgb(255, 255, 255), 0 0 0 5px rgb(24, 0, 181);
}

#parameterGroup {

  box-shadow: 0 1px 6px 0 rgba(32,33,36,0.28);
  border-color: rgba(223,225,229,0);
  padding: 12px;
  background-color: white;
  border-radius: 20px;
  font-size: 15px;
}

#parameterGroup hr {
  width: 100%;
  margin: 0px;
}

.parameter {
  border: none;
  outline: none;
  border-radius: 3px;
  transition: all 0.3s ease 0s;
  box-shadow: 0 0 1px 1px rgba(0,0,0,1);
  cursor: pointer;
}

.parameter:hover {
  border: none;
  outline: none;
  border-radius: 3px;
  transition: all 0.3s ease 0s;
  box-shadow: 0 0 2px 1px rgba(0,0,0,1), 0 0 8px 5px #FFCC00;
  /*box-shadow: 0 0 1px 1px rgba(0,0,0,1), 0 0 0 3px rgb(255, 255, 255), 0 0 0 5px #1c79cf;*/
  z-index: 2;
}

.parameter-borderless {
  border: none;
  outline: none;
  border-radius: 3px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.parameter-borderless:hover {
  border: none;
  outline: none;
  border-radius: 3px;
  transition: all 0.3s ease 0s;
  box-shadow: 0 0 8px 5px #FFCC00;
  /*box-shadow: 0 0 1px 1px rgba(0,0,0,1), 0 0 0 3px rgb(255, 255, 255), 0 0 0 5px #1c79cf;*/
  z-index: 2;
}


.parameter_small {
  width: 180px;
  height: 25px;
}

#parameterGroupBorderless {
  box-shadow: none;
  border: none;
  border-radius: 6px;
  margin: 10px;
}

.paramDiv {
  margin: 4px 8px 4px 8px;
}

#formHeader {
  font-size:30px; 
  text-decoration: underline;
  margin: 3px;
}

.layoutHeader {
  font-size: 30px; 
  text-align: center;
}

body {
  margin: 0px;
}

a {
  color: royalblue;
  text-decoration: none;
}

.statusBar {
  z-index: 1;
  width: fit-content;
  display: block;
  float: right;
  padding: 5px;
  color: white;
  background-color:#3f3c3c;
  font-size: initial;
}

h2 {
  color: navajowhite;
  font-variant-caps: all-small-caps;
  text-align: center;
  font-size: 46px;
}

h3 {
  color: white;
  font-size: 36px;
}

li {
  color: black;
}

li a {
}

div {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

table {
  margin: 0 auto;
}

head {
  text-align: center;
}

div.dropdown {
  text-align: center;
}

.chart_header_column {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

p { 
  font-size: 8px;
  font-weight: 300;
}

.title {
  font-size: 40px;
  margin-top: 15px;
  margin-bottom: 15px;
 
}

div.navbar {
  z-index: 1;
  width: 100%;
  display: inline-block;
  background-color:#2e2b2b;
  border-radius: 15px 15px 15px 15px;
  margin-bottom: 0px;
  font-size: 0px;
}

.canvas_row {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

div.chart {
  height: 600px;
  flex-basis: 45%;
  padding-top: 10px;
}
@media only screen and (max-device-width: 1000px) {
  div.navbar {
    width: 100%;
  }

  div.chart {
    height: 600px;
    padding: 20px 0px 20px;
  }
}

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
    
    .ok_print, .ok_print *
    {
        display: block !important;
    }
    
    @page{
      size: 300mm 500mm !important; /* landscape */
      /* you can also specify margins here: */
      margin: 0 !important;
      position: relative;
    }

    #parameterGroup {
      position: absolute;
      border: none !important; 
      border-radius: 0px !important;
      margin: 0 !important;
      box-shadow: 0 !important;
      max-width: 100% !important;
      transform: translateY(50%) !important;
      
    }

    
}