<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

#main_page {
  width: 100%;
  height: 100vh;
  background-color: white;
  overflow-x: hidden;
}
#main_page #start_header {
  width: 100%;
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #012943;
}
#main_page #start_header #responsive {
  display: none;
}
#main_page #start_header #desktop {
  display: flex;
}
#main_page #start_header .start_header_content {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#main_page #start_header .start_header_content a {
  margin-right: 2vw;
  text-decoration: none;
  color: white;
  font-weight: 300;
  position: relative;
}
#main_page #start_header .start_header_content a:hover {
  text-shadow: 0px 0px 5px black;
}
#main_page #start_header .start_header_content a:after {
  content: "";
  height: 3px;
  width: 0px;
  background: white;
  box-shadow: 0px 0px 2px black;
  border-radius: 100px;
  position: absolute;
  bottom: -3px;
  right: 0%;
  transition: 0.2s;
}
#main_page #start_header .start_header_content a:hover:after {
  width: 100%;
  left: 0%;
}
#main_page #start_header .start_header_content #close_session {
  color: #ec6464;
}
#main_page #start_header .start_header_content #close_session:after {
  background: #ec6464;
}
#main_page #end_header {
  width: 100%;
  height: 10vh;
  box-shadow: 0px 1px 5px 2px #DEDEDE;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main_page #end_header #end_header_title {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}
#main_page #end_header #end_header_title h1 {
  margin-left: 2vw;
  font-size: x-large;
  font-weight: 400;
}
#main_page #end_header #end_header_title img {
  width: 50px;
  height: 40px;
}
#main_page #end_header #end_header_session {
  width: 35%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  margin-left: 5%;
}
#main_page #end_header #end_header_session #filter {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
#main_page #end_header #end_header_session #filter input {
  height: 30%;
  width: 60%;
  max-width: 30vw;
  border-radius: 7px;
  border: 1px solid black;
  padding-left: 5px;
  min-width: 120px;
}
#main_page #end_header #end_header_session #filter button {
  color: #ffffff;
  background-color: #2D3F81;
  margin-left: 2vw;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 7px;
  border: none;
  height: 30%;
  width: 12vw;
  font-size: small;
  font-weight: bold;
  cursor: pointer;
  min-width: 80px;
}
#main_page #end_header #end_header_session #filter button:hover {
  background-color: #1B72AA;
}
#main_page #end_header #end_header_session #session_name {
  width: 100%;
  hegith: 50%;
  text-align: right;
}
#main_page #end_header #end_header_session #session_name p {
  font-size: small;
  font-weight: 500;
}
#main_page #end_header #end_header_session #session_close {
  width: 100%;
  height: 50%;
  text-align: right;
}
#main_page #end_header #end_header_session #session_close a {
  text-decoration: none;
  color: red;
  font-weight: bold;
}
#main_page #main_content {
  min-width: 100%;
  min-height: 72vh;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#main_page #main_content #main_title {
  height: 10vh;
  margin-bottom: 1%;
  width: 85%;
  display: flex;
  align-items: center;
}
#main_page #main_content #main_title h1 {
  color: #515E85;
  font-size: x-large;
  font-weight: 500;
}
#main_page #my_footer {
  width: 100%;
  height: 13vh;
  background-color: #012943;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#main_page #my_footer #footer_content {
  width: 90%;
  height: 50%;
  margin-bottom: 2%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid white;
  color: white;
}
#main_page #my_footer #footer_content p {
  font-weight: 300;
}
#main_page #my_footer #footer_content a {
  font-weight: 300;
  text-decoration: none;
  color: white;
}
#main_page #my_footer #footer_content #copyright-r {
  display: flex;
}

@media screen and (max-width: 730px) {
  #main_page {
    position: relative;
  }
  #main_page #start_header #desktop {
    display: none;
  }
  #main_page #start_header #responsive {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #main_page #start_header #responsive i {
    color: white;
    font-size: larger;
  }
  #main_page #start_header .start_header_content {
    width: 80%;
    justify-content: flex-end;
    margin-right: 2vw;
  }
  #main_page #start_header .start_header_content a {
    font-size: small;
  }
  #main_page #start_header .start_header_content #expand_menu {
    background-color: rgba(1, 41, 67, 0.862745098);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    position: fixed;
    width: 0%;
    height: 200%;
    z-index: 999;
    transition: 0.7s;
    right: 0%;
    top: 0%;
  }
  #main_page #start_header .start_header_content #expand_menu div {
    width: 60vw;
    text-align: right;
  }
  #main_page #start_header .start_header_content #expand_menu div i {
    color: white;
    font-size: xx-large;
  }
  #main_page #start_header .start_header_content #expand_menu #expand_menu_content {
    margin-left: 5vw;
    margin-top: 5vh;
    width: 60vw;
    height: 90vh;
    postion: fixed;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #main_page #start_header .start_header_content #expand_menu #expand_menu_content a {
    margin-top: 2vh;
    font-size: x-large;
  }
  #main_page #end_header #end_header_title {
    width: 25%;
  }
  #main_page #end_header #end_header_title h1 {
    display: none;
  }
  #main_page #end_header #end_header_title img {
    margin-left: 2vw;
    height: 70%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #main_page #end_header #end_header_session {
    width: 70%;
    margin-left: 2%;
  }
  #main_page #end_header #end_header_session #filter {
    width: 100%;
  }
  #main_page #end_header #end_header_session #filter button {
    width: auto;
    padding-left: 5%;
    padding-right: 5%;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  #main_page #main_content #main_title {
    text-align: center;
    padding-left: 0%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #main_page #main_content #main_title h1 {
    width: 100%;
    text-align: center;
    font-size: large;
    font-weight: 700;
  }
  #main_page #my_footer {
    font-size: small;
  }
  #main_page #my_footer #footer_content {
    height: 100%;
    border-top: none;
    margin-bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #main_page #my_footer #footer_content #copyright {
    margin-bottom: 2.5%;
  }
  #main_page #my_footer #footer_content #copyright-r {
    padding-top: 2.5%;
    border-top: 1px solid white;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.mleft-15 {
  margin-left: 15% !important;
}

.mleft-3 {
  margin-left: 3vh !important;
}

.mleft-0 {
  margin-left: 0 !important;
}

.mtop-8 {
  margin-top: 8vh !important;
}

.mtop-6 {
  margin-top: 6vh !important;
}

.mtop-4 {
  margin-top: 4vh !important;
}

.mtop-3 {
  margin-top: 3vh !important;
}

.mtop-0 {
  margin-top: 0vh !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.align-center {
  align-items: center !important;
}

.flex-col {
  flex-direction: column !important;
}

.w-100 {
  width: 100% !important;
}

.w-70 {
  width: 70% !important;
}

.w-55 {
  width: 55% !important;
}

.w-50 {
  width: 50% !important;
}

.w-45 {
  width: 45% !important;
}

.w-35 {
  width: 35% !important;
}

.w-auto {
  width: auto !important;
}

.red {
  color: red !important;
}

.talign-center {
  text-align: center !important;
}

.bold {
  font-weight: bold !important;
}

.nodecor {
  text-decoration: none;
}/*# sourceMappingURL=general_style.css.map */</pre></body></html>