/* head */
.head {
  width: calc(100% - 0rem);
  height: calc(4.5rem - 0rem);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  z-index: 1000000;
  order: 1;
  background-color: var(--head-bg);
}

.head_container {
  width: calc(100% - 1.25rem);
  max-width: calc(75rem - 1.25rem);
  height: calc(100% - 0rem);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


/* head: left */
.head_left {
  height: calc(100% - 0rem);
  margin: 0 1.25rem 0 0;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
}

.head_left ul {
  height: calc(100% - 0rem);
  display: flex;
  flex-direction: row;
  align-items: center;

  display: none;
}

.head_left ul li {
  height: calc(100% - 0rem);
  margin: 0 1.25rem;
  display: flex;
  align-items: center;
  color: var(--black);
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.head_left ul li:first-child {
  margin: 0 1.25rem 0 0;
  cursor: pointer;
}

.head_left ul li a {
  color: var(--black);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.head_left ul li:hover,
.head_left ul li a:hover {
  color: var(--color-primary);
}


/* head: logo */
.head_logo {
  width: fit-content;
  height: calc(100% - 0rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.head_logo a {
  width: fit-content;
  height: calc(100% - 0rem);
  display: flex;
  align-items: center;
}

.head_logo a img {
  width: 12rem;
  user-select: none;
}


/* head: right */
.head_right {
  height: calc(100% - 0rem);
  margin: 0 0 0 1.25rem;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
}

.head_right ul {
  height: calc(100% - 0rem);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.head_right ul li {
  height: calc(100% - 0rem);
  margin: 0 1.25rem;
  display: flex;
  align-items: center;
  color: var(--black);
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.head_right ul li:last-child {
  margin: 0 0 0 1.25rem;
}

.head_right ul li a {
  color: var(--black);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.head_right ul li a:hover {
  color: var(--color-primary);
}

#head-signup,
#head-account {
  display: none;
}

#head-account a {
    width: calc(40px - 0rem);
    height: calc(40px - 0rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);    
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
}

#head-account a:hover {
    background-color: var(--color-primary-dark);
    border: 2px solid var(--color-primary-dark);    
}


/* head: menu */
.head_menu {
  width: calc(25rem - 0rem);
  height: calc(100vh - 0rem);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000001;
  background-color: var(--head-bg);
  display: none;
}

.head_menu a {
  width: fit-content;
  height: calc(4.5rem - 0rem);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
}

.head_menu a img {
  width: 13rem;
  user-select: none;
  visibility: hidden;
}

.head_menu ul {
  width: calc(100% - 0rem);
  height: fit-content;
  padding: 0 2.5rem;
}

.head_menu ul li {
  width: calc(100% - 0rem);
  height: calc(4rem - 0rem);
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 300;
}

.head_menu ul li a {
  height: fit-content;
  padding: 0;
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
}

.head_menu ul li a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}


/* head: register */
.register {
  width: calc(100% - 0rem);
  height: calc(100% - 4.5rem);
  display: flex;
  position: fixed;
  top: 4.5rem;
  z-index: 1000001;
  background-color: transparent;
  background-color: var(--black-transparent);
  overflow-y: scroll;
  display: none;
}

.register_container {
  width: calc(100% - 0rem);
  max-width: calc(75rem - 0rem);
  height: fit-content;
  min-height: calc(100vh - 4.5rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: var(--color-primary);
  background-color: #00000010;
  background-color: transparent;
}

.register_close {
  padding: calc(4.5rem + 0.625rem) 0.625rem 0 0;
  display: flex;
  align-items: center;
  align-self: flex-end;
  position: fixed;
  top: 0;
  color: var(--black);
  font-size: 1.5em;
  cursor: pointer;
}

.register_close:hover {
  color: var(--black);
}

.register_form_head_start,
.register_form_head_1,
.register_form_head_2,
.register_form_head_success,
.register_form_head_fail,
.register_form_page_start,
.register_form_page_1,
.register_form_page_2,
.register_form_page_success,
.register_form_page_fail {
  width: calc(100% - 1.25rem);
  max-width: calc(48rem - 1.25rem);
  height: fit-content;
  margin: 0 0.625rem;
  padding: 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  background-color: #FFFFFF90;
  background-color: var(--white);
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.register_form_head_1,
.register_form_head_2,
.register_form_page_1,
.register_form_page_2 {
  display: none;
}

.register_form_head_success,
.register_form_head_fail,
.register_form_page_success,
.register_form_page_fail {
  align-items: center;
  display: none;
}

.register_form_head_success img,
.register_form_head_fail img,
.register_form_page_success img,
.register_form_page_fail img {
  width: 6.25rem;
  height: 6.25rem;
  margin: 0 0 2.5rem;
} 

.register_title {
  margin: 0 0 1.25rem;
  color: var(--color-text);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.register_notes {
  width: calc(100% - 0rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 0 2.5rem;
}

.register_notes li {
  margin: 0 0 0.625rem;
  color: var(--color-text);
  font-weight: 300;
  line-height: 1.5;
  text-align: start;
}

.register_text {
  margin: 0 0 1.25rem;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.5;
  text-align: start;
}

.register_comment {
  margin: 0 0 2.5rem;
  color: var(--color-text);
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  text-align: justify;
}


@media only screen and (max-width: 1080px) {


  /* head: left */
  .head_left {
    display: none;
  }


}


@media only screen and (max-width: 540px) {}

