:root {
  --generalFontFamily: Calibri, "Trebuchet MS", sans-serif;
  --pageWidth: 21cm;
  --pageHeight: 29.7cm;
  --pagePadLeftRight: 70px;
  --pageBackground: #fff;
  --tcHeaderFontSize: 16px;
  --OMUHeaderFontSize: 16px;
  --SBBAEKHeaderFontSize: 14px;
  --paragraphFontSize: 13px;
  --logoWidthHeight: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.pageListedElement {
  padding-left: 25px;
  
}

.formListedElement {
  padding-left: 40px;
}

textarea{
  resize: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

@media only screen and (max-width : 768px){

  body{
    width: 1024px;
    margin: 0 auto;
  }
}

.pageInfoContainer{
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%);
  font-family: Calibri, 'Trebuchet MS', sans-serif;
  font-size: 14px;
  width: 80%;
}

.pageInfoContainer .pageInfo{
  display: flex;
  align-items: center;
  justify-content: space-between;
}