@import url("page1.css");
@import url("page2.css");
@import url("page3.css");
@import url("page3_1.css");
@import url("page4.css");
@import url("page5.css");
@import url("page6.css");
@import url("page7.css");
@import url("page8.css");
@import url("page9.css");
@import url("buttons.css");

: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;
  flex-direction: column;
}

#applicationForm {
  position: relative;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 120px;
  position: relative;
}

header  #headerLogo {
  width: var(--logoWidthHeight);
  height: var(--logoWidthHeight);
  position: absolute;
  left: 0;
}

header  #headers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header  #headers .headersH1 {
  font-size: 16px;
  font-family: var(--generalFontFamily);
}

header  #headers .headersH2 {
  font-size: 14px;
  font-family: var(--generalFontFamily);
}

header  #headers .headersH2:last-child {
  margin-top: 15px;
}

.required {
  color: red;
  font-style: italic;
  border: none !important;
}

.closed {
  display: none;
}

.opened {
  display: block;
}

.pageListedElement {
  padding-left: 25px;
}

.formListedElement {
  padding-left: 40px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

label,
input,
textarea {
  padding: 2px;
  font-size: 10px;
}

textarea {
  resize: none;
  border-right: 1px solid black;
  overflow: hidden;
}

@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;
}