@charset "UTF-8";
* {
  margin: 0px;
  border: 0px;
  padding: 0px; }

a {
  text-decoration: none; }

div,
label,
p, strong,
h1, h2, h3, h5 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

input,
textarea,
button {
  outline: 0px none;
  box-shadow: none; }

input[type="submit"] {
  -webkit-appearance: none; }

button {
  display: block;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

html,
body,
.top_wrapper {
  min-height: 100%;
  height: 1px; }

.top_wrapper {
  position: relative;
  min-width: 1270px;
  max-width: 1600px;
  font-family: "Roboto", sans-serif;
  margin: 0 auto;
  height: 100%; }

.blur {
  -webkit-filter: blur(3px);
  filter: url(../img/filters.svg#blur);
  filter: blur(3px); }

header,
.menu {
  position: relative;
  width: 100%; }

.header {
  height: 50px;
  background-color: #1e76c2;
  box-shadow: 0px 2px 10px rgba(35, 31, 32, 0.23); }
  .header_left {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 274px;
    height: 100%;
    float: left;
    padding-left: 10px; }
  .header_logo {
    display: block;
    width: 60px;
    height: 50px;
    cursor: pointer;
    float: left;
    background: url("../img/new/logo_sm.png") center no-repeat;
    background-size: 40px 25px; }

.user_menu {
  position: relative;
  height: 50px;
  width: 50px;
  float: left;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease; }
  .user_menu_icon {
    width: 100%;
    height: 100%;
    background: url(../img/new/icon_user_menu.svg) center no-repeat;
    background-size: 26px 19px; }
  .user_menu_notif {
    position: absolute;
    right: 5px;
    bottom: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 11px;
    line-height: 15px;
    color: #fff;
    text-align: center;
    background-color: #f14f77; }
  .user_menu:after, .user_menu:before {
    position: absolute;
    content: "";
    top: 8px;
    width: 1px;
    height: 34px;
    background-color: #0e4f86;
    opacity: .3;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
  .user_menu:after {
    right: 0; }
  .user_menu:before {
    left: 0; }
  .user_menu > section {
    position: absolute;
    width: 270px;
    top: 45px;
    left: -32px;
    background-color: #ffffff;
    box-shadow: 0px 4px 5px rgba(35, 31, 32, 0.4);
    border-radius: 3px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px); }
    .user_menu > section:before {
      position: absolute;
      content: "";
      top: -8px;
      left: 48px;
      width: 0;
      height: 0;
      border-bottom: 8px solid #fff;
      border-left: 9px solid transparent;
      border-right: 9px solid transparent; }
  .user_menu:hover {
    background-color: #0e4f86; }
    .user_menu:hover:after, .user_menu:hover:before {
      opacity: 0; }
    .user_menu:hover > section {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -o-transform: translateY(0px);
      transform: translateY(0px); }

.user_info {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: flex;
  width: 100%;
  height: 100px;
  padding: 10px 10px 10px 16px; }
  .user_info_wrp {
    width: 154px;
    margin-left: 10px;
    padding-top: 20px; }

.user_photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #f2f2f2; }
  .user_photo img {
    width: 64px;
    height: 64px;
    object-fit: cover; }

.user_name {
  font-size: 16px;
  color: #939393;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.user_pos {
  font-size: 12px;
  color: #949494;
  line-height: 1.6;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.user_menu ul {
  list-style: none; }
.user_menu li {
  display: block;
  height: 50px;
  width: 100%;
  overflow: hidden; }
  .user_menu li a,
  .user_menu li .logout_btn {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 25px;
    font-size: 15px;
    color: #fff;
    line-height: 50px;
    cursor: pointer;
    background-color: #1e76c2;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease; }
    .user_menu li a:hover,
    .user_menu li .logout_btn:hover {
      background-color: #0e4f86;
      color: #fff; }
  .user_menu li:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
.user_menu .logout {
  position: relative; }
  .user_menu .logout_btn {
    text-align: left;
    font-family: "Roboto", sans-serif; }
  .user_menu .logout:before {
    position: absolute;
    content: "";
    top: 0;
    left: 8px;
    right: 8px;
    height: 1px;
    background-color: #0e4f86;
    opacity: .3; }

.right_part {
  float: right;
  padding-right: 20px;
  padding-top: 10px; }

.save_btn {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 105px;
  height: 30px;
  background-color: #27d2bb;
  font-size: 13px;
  line-height: 30px;
  color: #fff;
  padding-left: 34px;
  text-align: left;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  .save_btn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 4px;
    width: 30px;
    height: 30px;
    background: url(../img/new/icon_checked.png) center no-repeat;
    background-size: 13.5px auto; }
  .save_btn:hover {
    background-color: #2bd8c1; }
  .save_btn:active {
    margin-top: 1px; }

div.saving {
  position: absolute;
  left: 20px;
  bottom: 15px;
  font-size: 14.7px;
  line-height: 1.6;
  color: rgba(122, 122, 122, 0.5);
  padding-left: 31px;
  background: white;
  z-index: 80;
  display: none; }

div.saving:after {
  position: absolute;
  content: "";
  left: -2px;
  top: -2px;
  bottom: -2px;
  background: url(../img/saving.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 24px;
  animation: loading 1s linear infinite;
  -webkit-animation: loading 1s linear infinite;
  -moz-animation: loading 1s linear infinite;
  -webkit-background-size: 24px 24px;
  -moz-background-size: 24px 24px;
  -o-background-size: 24px 24px;
  background-size: 24px 24px; }

div.saved {
  position: absolute;
  left: 20px;
  bottom: 15px;
  font-size: 14.7px;
  line-height: 1.6;
  color: rgba(122, 122, 122, 0.5);
  padding-left: 31px;
  background-image: url(../img/saved.png);
  background-repeat: no-repeat;
  background-position: 0% 50%;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  background-size: 20px 20px;
  display: none; }

@keyframes loading {
  0% {
    -moz-transform: rotate(0deg);
    /* Для Firefox */
    -ms-transform: rotate(0deg);
    /* Для IE */
    -webkit-transform: rotate(0deg);
    /* Для Safari, Chrome, iOS */
    -o-transform: rotate(0deg);
    /* Для Opera */
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg);
    /* Для Firefox */
    -ms-transform: rotate(360deg);
    /* Для IE */
    -webkit-transform: rotate(360deg);
    /* Для Safari, Chrome, iOS */
    -o-transform: rotate(360deg);
    /* Для Opera */
    transform: rotate(360deg); } }
@-moz-keyframes loading {
  0% {
    -moz-transform: rotate(0deg);
    /* Для Firefox */
    -ms-transform: rotate(0deg);
    /* Для IE */
    -webkit-transform: rotate(0deg);
    /* Для Safari, Chrome, iOS */
    -o-transform: rotate(0deg);
    /* Для Opera */
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg);
    /* Для Firefox */
    -ms-transform: rotate(360deg);
    /* Для IE */
    -webkit-transform: rotate(360deg);
    /* Для Safari, Chrome, iOS */
    -o-transform: rotate(360deg);
    /* Для Opera */
    transform: rotate(360deg); } }
@-webkit-keyframes loading {
  0% {
    -moz-transform: rotate(0deg);
    /* Для Firefox */
    -ms-transform: rotate(0deg);
    /* Для IE */
    -webkit-transform: rotate(0deg);
    /* Для Safari, Chrome, iOS */
    -o-transform: rotate(0deg);
    /* Для Opera */
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg);
    /* Для Firefox */
    -ms-transform: rotate(360deg);
    /* Для IE */
    -webkit-transform: rotate(360deg);
    /* Для Safari, Chrome, iOS */
    -o-transform: rotate(360deg);
    /* Для Opera */
    transform: rotate(360deg); } }

/*# sourceMappingURL=main.css.map */
