:root{
  --custom-font-stack: Arial, Calibri, Times, "Times New Roman", serif;
}
body{
    font-family: 'Roboto', sans-serif;;
    font-weight: 400;
    line-height: 1.0 !important;
  }
.headings{
    align-self: start;
    margin-top: 0;
    font-size: 20px !important;
}
.control-label{
    display: flex;
    align-items: center;
    font-weight:700;
    font-size:12px;
}
.header-styler{
    font-weight: 700;
}
.section-holding {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1.666vw;
}


.component-holder{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 8px;
    height: auto;
    min-height: 120px;
    background: #FFFFFF;
    border: 2px solid #2ECA6A;
    border-radius: 24px;
    margin-bottom: 8px;
}
.form-control {
    height: 2.5vw;
    font-size: 14px;
    line-height: 18px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #CFD6DD;
      border-top-color: rgb(207, 214, 221);
      border-right-color: rgb(207, 214, 221);
      border-bottom-color: rgb(207, 214, 221);
      border-left-color: rgb(207, 214, 221);
    border-radius: 12px !important;
    background: #Fff;
}
.input-group-addon {
    border: none;
      border-right-color: currentcolor;
      border-right-style: none;
      border-right-width: medium;
    border-radius: 12px !important;
    width: 2.5vw !important;
    height: 2.5vw !important;
    margin-right: 16px;
    font-size: 14px;
    line-height: 28px;
    color: #FFF;
    text-align: center;
    min-width: 1.875vw;
    display: inline-flex !important;
    position: relative;
    left: 0px;
    justify-content: center;
    align-items: center;
    background-color: #2ECA6A !important;
    box-shadow: 0px 4px 16px -6px rgba(46, 202, 106, 0.64), 0px 8px 32px -4px rgba(46, 202, 106, 0.32) !important;
    padding: 0.3vw;
    font-weight: 400;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.addition-buttons {
    padding: 0px 16px;
    width: 12.5vw;
    height: 2.5vw;
    font-size: 12px;
    font-weight: 700;
    color: white;
    background: var(--main-color);
    box-shadow: 0px 4px 16px -6px rgba(46, 202, 106, 0.64), 0px 8px 32px -4px rgba(46, 202, 106, 0.32);
    border-radius: 12px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #8998aa;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 1.3vw;
    width: 1.3vw;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: var(--main-color);
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px var(--main-color);
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  .pdf_content{
    background-color: white;
    width: 210mm;
    height: 297mm;
    padding-left: 2cm;
    padding-top: 1cm;
    position: relative;
    padding-right: 0.25cm;
  }
  .pdf_content *{
    font-family:var(--custom-font-stack);
  }
  .pdf_content h2{
    font-size:18px;
  }
  .pdf_content h3{
    font-size:14px;
  }
  .pdf_content p{
    font-size:10px;
    margin-bottom: 2px !important;
  }
  .pdf_content th{
    font-size:10px;
  }
  .pdf_content td{
    font-size:10px;
  }
  .pdf_content .component-holder{
    border-width: 1px;
  }
  p{
    font-size: 12px;
    margin-bottom: 8px !important;
  }
 tr.position-row>td{
    font-size: 12px !important; 
  }
  .pdf_content>div>table#position-table>thead>tr>th{
    font-size: 10px;
    --bs-table-accent-bg: #D3D3D3;
  }
  .pdf_content>div>table#position-table>tbody#position-table-body>tr>td{
    font-size: 10px !important;
    background: #FFFFFF !important; 
  }
  .pdf_content>div>table#position-table>tbody#position-table-body>tr{
    background: #FFFFFF !important;
    border: 1px solid #000000 !important;
  }
  .pdf-column-styler{
    text-align: right;
  }