a,button,input,select,h1,h2,h3,h4,h5,* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0062cc;
}
img {
  display: block;
}

menu, ol, ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
body,body * {
  box-sizing: border-box;
}
body {
  background: #f8f9fa;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: flex;
  flex-direction: column;
  align-items: center;
}
input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}
header {
  background: #e5e9ff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}
.navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 1200px;
  height: 60px;
  position: relative;
}
.sitename {
  font-family: sans-serif;
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
  margin-left: 10px;
}
.sitename > a {
  color: #000000;
}
.nav-links {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  right: 0px;
  top: 50%;
  translate: 0 -50%;
}
.nav-item {
    color: #000000;
    text-align: left;
    font-family: sans-serif;
    font-size: 20px;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    height: 30px;
    padding: 15px 0px;
    box-sizing: unset;
}
.nav-link {
    color: #007bff;
    white-space: nowrap;
    display: block;
    width: 100%;
}
.nav-link:hover {
    border-bottom: 1px solid;
}
.dropdown::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.login-item, .user-item {
  background: #ccd4ff;
  border-radius: 10px;
  padding: 5px 10px;
  font-family: sans-serif;
  font-size: 20px;
  line-height: 150%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.user-item > a {
  display: contents;
}
.login-avatar {
    border-radius: 50%;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    object-fit: cover;
    aspect-ratio: 1;
}
.subnav {
    display: none;
    position: absolute;
    background: #f2f4ff;
}
#shows-sub,#vtarea-sub {
    display: none;
    position: absolute;
    top: 60px;
    left: -10px;
    background: #f2f4ff;
}
#user-sub {
    display: none;
    position: absolute;
    top: 52.5px;
    right: 0px;
    background: #f2f4ff;
}
.sub-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    line-height: 150%;
    gap: 10px;
}
.footer {
  background: #ffffff;
  height: 150px;
  width: 100%;
  position: relative;
  bottom: -110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}
.bottom_nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  width: 1200px;
}
.items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
}
.page {
  color: #454545;
  text-align: left;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .sitename {
  color: #000000;
  text-align: left;
  font-family: sans-serif;
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
}
.copyright {
    color: darkgray;
}
hr {
  border-style: solid;
  border-color: #e6e6e6;
  border-width: 1px 0 0 0;
  width: 100%;
}

.popup_bg {
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 11;
    background-color: rgba(0, 0, 0, 0.5);
}
.popup {
    background-color: #f8f9fa;
    border-radius: 25px;
    z-index: 12;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 25px;
}
#login-popup {
    width: 300px;
    height: 300px;
}
.oauth {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.login-btn {
    display: flex;
    align-items: center;
    color: #000000;
    background: #ffffff;
    border: 1px solid #c0c0c0;
    border-radius: 50px;
    height: 45px;
    width: 100%;
    text-align: center;
    justify-content: center;
}
#tlogin {
    height: 25px;
    width: 40px;
    aspect-ratio: 43 / 50;
}
.popup-text {
    text-align: center;
    color: gray;
    font-size: 14px;
}
