/*	
Layout für Checkout-Formular 
----------------------------
used in: order.php
*/

/* Variablen 
   ---------
 */
 /* mobile */
:root {
  --order-head-display: block;  
  --subtitle-font-size: 20px;  
  --label-font-size: 17px;
  --label2-font-size: 15px;  
  --input-font-size: 13px;  
  --main-green: #4CAF50;  
}
/* PC */
@media all and (min-width: 900px) {  
  :root {
    --order-head-display: none;
    --subtitle-font-size: 30px;  
    --label-font-size: 20px;
    --label2-font-size: 17px;  
    --input-font-size: 15px;
  }
}

main {
  width: 100%;
  padding: 0;
  margin: 0;
}

b {
  padding: 0px;
  padding-left: 10px;
  margin: 0px;
  font-size: var(--label-font-size);
  font-weight: 500;
  color: rgb(70,70,70);
}
b.b_checkbox, b.b_radio{
  font-size: var(--label2-font-size);  
}
form {
  width: 100%;
  padding: 0;
  margin: 0;
}
div.order_container {
  position: relative;
  width: 100%;
  margin: 20px;
}
.order_finish_btn {
  position: relative;
  width: calc(100% - 40px);
  padding: 14px 20px;
  border: none;
  border-radius: 30px;
  margin: 8px 0px;
  font-size: 20px;
  color: white;
  background-color: var(--main-green);
  cursor: pointer;
  transition: 0.3s;
}
.order_finish_btn:hover {
  border: 1px solid darkgreen;
  background-color: mediumseagreen;
}
input[type=text].order_input, input[type=password].order_input, input[type=number].order_input, input[type=date].order_input, input[type=time].order_input, input[type=email].order_input {
  display: inline-block;
  height: 30px;
  width: calc(100% - 40px);
  box-sizing: border-box;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 8px 0px;
  font-size: var(--input-font-size);
  color: rgb(70,70,70);
}
input[type=time]{
  width: auto;
}
input[type=date]{
  width: auto;
}
/* Kopfzeile */
#oel_NavBack{
  height: 50px;
  width: 100%;
  text-decoration: none;
  transition: 0.3s;
}
#oel_NavBack:hover {
  background-color: mediumseagreen;
}

/* Korb-Symbol + Preissumme im Kopf */
span#oel_NavBack {
  display: var(--order-head-display);
  position: relative;
  height: 50px;
  width: 100%;
  line-height: 50px;
  color: white;
  background-color: var(--main-green);
}
/* Korb-Symbol im Kopf */
i.oel_NavBack {
  position: relative;
  font-size: 20px;
}
div.order_header {
  height: 60px;
}
table.order_header {
  z-index: 5;
  position: fixed;
  width:100%;
  top: 0px;
  left: 0px;
  border-collapse: collapse;
}
.order_head {
  background-color: var(--main-green);
  padding: 0;
  border: 0px solid white;
}
div.subtitle {
  position: relative;
  width: 100%;
  border-bottom: 0.5px solid lightgrey;
  padding: 7px;
  font-size: var(--subtitle-font-size);
  font-weight: 500;
  color: rgb(40,40,40);
}
span#down {
  position: absolute;
  right: 30px;
  transform: rotate(90deg);
}
span#oel_HeadBwert{
  font-family: 'Open Sans';
  font-size: 18px;
}
.order_content {
  position: relative;
  width: 100%;
  padding: 0px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.1s;
}
tr {
  width: 100%;
  padding: 0;
  margin: 0;
}

input#oel_KdVname, input#oel_KdNname, input#oel_KdTel, input#oel_KdMail,
input#oel_KdAdrPlz, input#oel_KdAdrStr, input#oel_KdAdrHnr {
  width: 100%;
}

.checkbox_div_left{
   display:inline-block; 
   width:calc(50% - 40px);
   max-width: 150px;
   border:1px solid lightgrey;
   border-right:none;
   padding: 6px 10px;
   margin: 8px 0px;
   text-align: center;
   border-top-left-radius: 10px;
   border-bottom-left-radius: 10px;
   color:white;
   background-color:var(--main-green);
   cursor:pointer;
}
.checkbox_div_right{
   display:inline-block; 
   width:calc(50% - 40px);
   max-width: 150px;
   border:1px solid lightgrey;
   padding: 6px 10px;
   margin: 8px 0px;
   text-align: center;
   border-top-right-radius: 10px;
   border-bottom-right-radius: 10px;

   cursor:pointer;
}
.hyperlink{
    color:blue;
    cursor:pointer;
}
.hyperlink:hover{
    color:darkblue;
}
