@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, input, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: 300;
  font: inherit;
  vertical-align: baseline;
}

:root {
  --base: #606;
  --light: rgb(102 0 102 / 80%);
  --hover: #853385;
}

.management:root {
  --base: #0087db;
  --light: #5ba8d9;
  --hover: #105b89;
}

.women:root {
  --base: #3f5d81;
  --light: #4c7ead;
  --hover: #3c71b1;
}

.men:root {
  --base: #ff7700;
  --light: #ffaa22;
  --hover: #bb7733;
}

:active, :hover, :focus {
  outline: 0;
  outline-offset: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('fonts/RobotoCondensed-Regular.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('fonts/RobotoCondensed-Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

html {
  min-width: 1260px;
}

body {
  font-size: 14px;
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.25;
}

img {
  outline: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

span {
  display: inline-block;
}

b {
  font-weight: 600;
  display: inline-block;
}

div {
  box-sizing: border-box;
  display: block;
}

select, input {
  border: 1px solid var(--base);
  padding: 2px;
  color: var(--base);
  margin-right: 3px;
  font-size: 14px;
}

button {
  color: #fff;
  background-color: var(--base);
  padding: 5px 15px;
  border: 0;
  cursor: pointer;
}


/* MAIN CSS */

.wrap {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.head {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 1280px;
  width: 100%;
  height: 100%;
  background-color: var(--light);
}

.head_info {
  display: flex;
  width: 1280px;
}

.head_menu {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 34px;
  background-color: var(--base);
}

.head_menu.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

.menu_box {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}


.menu_box>div {
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 5px;
  position: relative;
}

.menu_box>div:hover {
  background-color: #000;
  cursor: pointer;
}

.menu_title_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-weight: 600;
}

.menu_title_item img, .menu_list img {
  width: 20px;
  height: 20px;
  padding-right: 15px;
}
.menu_title_item span.short {
  display: none;
  padding-left: 5px;
  font-size: 16px;
}

@media (max-width: 800px) {
  .menu_title_item span.long {
    display: none;
  }
  .menu_title_item span.short {
    display: inline-block;
  }
  .menu_box>div {
    padding: 0 5px;
  }
  .menu_title_item img {
    padding: 0;
  }
}

.user_block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  height: 85px;
  width: 30%;
  box-sizing: border-box;
  color: #fff;
}

.menu_list {
  min-width: 100%;
  min-height: 34px;
  background-color: var(--base);
  position: absolute;
  top: 34px;
  left: 0px;
  display: none;
  z-index: 999999;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.menu_box>div:hover .menu_list, .menu_list:hover {
  display: flex;
}

.menu_box a {
  text-decoration: none;
  font-size: inherit;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.menu_list::before {
  position: absolute;
  margin: -5px 0 0 20px;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #fff transparent;
}

.menu_list>a>div, .menu_list>div {
  color: #fff;
  font-weight: 600;
  min-height: 34px;
  min-width: 100%;
  font-size: 12px;
  text-wrap: nowrap;
  white-space: nowrap;
  padding: 7px 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid #aaa;
}


.menu_list>a>div:hover, .menu_list>div:hover {
  background-color: var(--hover);
}

.title_block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 30% 15px 0;
  font-size: 150%;
  font-weight: 600;
  text-align: center;
  color: #fff;
  height: 85px;
  width: 70%;
  box-sizing: border-box;
}

.user_block img {
  border-radius: 50%;
  width: 50px;
}

.user_block .user_name {
  padding-left: 10px;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.user_block .user_name span {
  line-height: 20px;
  z-index: 999;
}

.user_block .user_name a, .user_block .user_name a:visited, .user_block .user_name a:active {
  text-decoration: none;
  color: #ff0;
  display: inline-block;
}

.user_block .user_name a:hover {
  text-decoration: underline;
}

/* END MAIN CSS */





/* START PAGES CSS */


.main {
  max-width: 1280px;
  margin: 10px auto 100px;
  padding: 0 10px;
}


/* END PAGE CSS */







/* START PAGE LOGIN CSS */

.card {
  margin: 0 auto 10%;
  width: 360px;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#vk_auth, .vk_title {
  margin: 0 auto;
  position: relative;
}
.vk_title {
  width: 180px;
  text-align: center;
  position: relative;
  font-family: Roboto, Open Sans, Helvetica Neue, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}
.err_access {
  text-align: center;
  color: red;
  font-weight: 600;
  margin-bottom: 30px;
}



/* END PAGE LOGIN CSS */





/* START PAGE LOGIN CSS */


.teams p {
  margin-bottom: 10px;
}

.teams input[name=alter_name] {
  width: 160px;
}


/* END PAGE LOGIN CSS */
