@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300&display=swap');

body {
  font-family: 'Signika', sans-serif;
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
}
.background {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position:fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.background_left {
  background-image: url("../images/logo.svg");
  background-repeat: no-repeat;
  background-position: 10px 10px;
  width: calc( 100vw - 50px);
  height: 100vh;
}
.background_right {
  width: 60px;
  height: 100vh;
}
.background_right_top {
  background-image: url("../images/banner.svg");
  background-repeat: repeat-y;
  background-position: bottom 10px;
  height: 110px;
}
.background_right_middle {
  background-image: url("../images/bannerlogo.svg");
  background-repeat: no-repeat;
  background-position: bottom 10px;
  height: 120px;
}
.background_right_bottom {
  background-image: url("../images/banner.svg");
  background-repeat: repeat-y;
  background-position: bottom 10px;
  height: 100vh;
}
.page {
  display: none;
  margin-top: 100px;
}
#page_form {
  display: block;
}

#page_login div {
  text-align: center;
}

#busy_overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height:100%;
  padding: 0px;
  margin: 0px;
  background-color: #008bd210;
  z-index: 99;
  display: none;
}
#busy_overlay_wheel{
  width:200px;
  height:200px;
  position:absolute;
  left:50%;
  top:50%;
  margin:-100px 0 0 -100px;
}
input {
  padding: 5px;
  border-radius:5px;
  border: 1px solid #008bd2ff;
}
textarea {
  margin: 10px;
  padding: 5px;
  border-radius:5px;
  border: 1px solid #008bd2ff;
}
button {
  margin: 10px;
  padding: 5px;
  border-radius:5px;
  background-color: #008bd210;
  border: 1px solid #008bd2ff;
  transition: 0.3s;
}
button:hover {
  background-color: #008bd230;
}
button:active {
  background-color: #008bd250;
}

.page_message {
  font-size: 1.4em;
  font-weight: 800;
  color: #900;
}
.page_header {
  display: flex;
  align-items: center;
}
.page_header_title {
  display: flex;
  width: 50%;
  justify-content: flex-start;
}
.page_header_buttons {
  display: flex;
  width: 50%;
  justify-content: flex-end;
}
.page_form_list_description{
  margin-left: 50px;
}
#page_form_search_list {
  background-color: #EFF8FCff;
  border: 1px solid #008bd2ff;
  position: fixed;
  width: 510px;
  height:200px;
  border-radius: 5px;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 1;
  display: none;
}

#page_form_search_block input {
  width: 500px;
}

@media (max-width: 800px) {
  .page_frame {
    margin-left: 10px;
    padding: 10px;
    width: 80vw;
    background-color: #ffffffdd;
  }
}
@media (min-width: 801px) {
  .page_frame {
    background-color: #008bd210;
    border: 1px solid #008bd2ff;
    border-radius: 5px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
  }
}
