@charset "UTF-8";

@font-face {
  font-family: Nebulas; /* Гарнитура шрифта */
  src: url(fonts/Nebulas-Regular.otf); /* Для IE5-8 */
  src: local(nebulas), url(fonts/Regular-Regular.otf);
}
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,
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: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  color: #1e1f1f;
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

b,
strong {
  font-weight: bold;
}

body,
input,
select,
button,
textarea {
  color: #525252;
  font-family: 'Montserrat';
  font-size: 15px;
  font-weight: 400;
}

a {
  color: #111;
  transition: all ease 0.3s;
}

input {
  transition: all ease 0.3s;
}

.header.old-style{
  background-color: #323232;
  height: 100px;
  display: flex;
  justify-content: space-between;
}

.table {
  margin: 30px;
}
.row {
  display: flex;
  justify-content: flex-start;
  height: 22px;
  align-items: center;
}

.row div {
  width: 200px;
}

.row.dir .name,
.row.back,
.row .status a{
  cursor: pointer;
}

.table .row::before{
  position: relative;
  display: inline-block;
  text-align: center;
  right: 12px;
  filter: hue-rotate(60deg);
}

.table .dir::before{

  width: 16px;
  content: url("/templates/default/images/dir.svg");
}

.table .file::before{
  width: 13px;
  content: url("/templates/default/images/file.svg");
}

.dir a{
  color: #9c0808;
}

.overlay {
  background: rgba(17, 17, 17, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  display: none;
}

.popup {
  width: 917px;
  min-width: 290px;
  max-width: 100%;
  min-height: 200px;
  max-height: 95%;
  background: #FFFFFF;
  border-radius: 7px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 102;
  display: none;
  color: #000000;
  overflow-y: auto;
}

.popupClose {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.popupClose::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 2px;
  transform: rotate(45deg);
  transform-origin: center;
  background-color: #8E8E8E;
  border-radius: 1px;
}

.popupClose::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 2px;
  transform: rotate(-45deg);
  transform-origin: center;
  background-color: #8E8E8E;
  border-radius: 1px;
}

.popupClose:hover::before,
.popupClose:hover::after {
  box-shadow: 0 0 5px 1px #fff;
}

.login-register {
  background: url(/templates/default/images/bg.png);
  height: 100%;
  position: fixed;
}

#wrapper {
  width: 100%;
}

.login-sidebar {
  position: absolute;
  right: 0;
  margin-top: 0;
  height: 100%;
}

.login-box {
  background: #fff;
  width: 400px;
  margin: auto 0;
}

.login-sidebar form{
  text-align: center;
}

.form-group {
  margin-top: 50px;
}

.form-item {
  margin: 10px 30px;
}

.site, .legend {
  display: flex;
  /*width: 1200px;*/
  justify-content: space-between;
  padding: 5px 0;
}

.site.blocked{
  background-color: rgb(66 157 41 / 54%);;
}

.status.blocked{
  color: black;
  font-weight: bold;
}

.content-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date {
  width: 100px;
}

.name {
  width: 850px;
}

.count{
  width: 100px;
}

.status{
  width: 150px;
}

.popup {
  display: none;
}

.login-error{
  color:#fb6868
}

.popup-content {
  padding: 30px;
  text-align: center;
}

.popup-message {
  font-size: 1.7em;
  font-family: sans-serif;
}

.header.old-style .logo{
  margin: 10px 30px ;
}

.header.old-style .logo img{
  height: 80px;
}
.header.old-style .user .avatar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #76a314;
  color: white;
  font-weight: normal;
  font-size: 23px;
  text-align: center;
  line-height: 44px;

  font-family: Montserrat-bold
}

.header.old-style .user {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 300px;
}

.user a {
  color: #76a314;
}

.user .nickname {
  color: white;
  max-width: 180px;
  overflow: hidden;
}
.head {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  align-items: flex-end;
}

.head h1{
  font-size: xx-large;
  font-weight: bold;
}

.head .get-code {
  color: #41590c;
  text-decoration: underline;
  font-weight: bold;
}

.site a, .legend{
  display: flex;
  justify-content: space-between;
}

.site a .name,
.legend .name{
  width: 600px;
}
.site a .today, .legend .today {
  width: 200px;
  text-align: center;
  margin: 0 34px;
}
.site a .week,
.legend .week{
  width: 200px;
  text-align: center;
}


.legend .today{
  text-align: center;
}

.legend .week{
  text-align: center;
}

.analysed-content.closed{
  display: none;
  animation: close 0.5s ease-in-out;
}

.analysed-content{
  display: block;
  animation: open 0.5s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes close {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.date-headline {
  display: flex;
  width: 1200px;
  justify-content: flex-start;
  padding: 5px 0;
  /* border: 1px #80808045 solid; */
  margin: 5px 0;
  box-shadow: 3px 3px 10px rgb(66, 157, 41, 0.1);
}

.date-headline .date,
.date-headline .info
{
  margin-right: 30px;
  padding-left: 15px ;
}

.date-headline .date{
  width: 140px;
}

.legend{
  margin-top: 30px;
}

.legend {
  font-weight: 900;
  font-size: larger;
}

hr.hr{


    height: 5px;
    width: 1200px;
    border-radius: 4px;
    background-color: #76a314;

}

span.breadcrumbs__separator {
  width: 1px;
  display: inline-block;
  background-color: black;
  height: 21px;
  transform: rotate(19deg);
  margin: -4px 6px;
}

.breadcrumbs {
  width: 1200px;
  margin-top: 20px;
}

.indication .all{
  fill: #ddd3d3;
}
.indication .blocked{
  fill: #76a314;
}

.date-headline .info {
  width: 425px;
}

.content.user-agent,
.view-content{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-body {
  max-width: 1200px;
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.content-body .item {
  margin: 10px 0;
  }

.content-body p {
  text-indent: 30px;
}

.content-body h1 {
  font-size: 2em;
  font-weight: bolder;
  margin-bottom: 30px;
}


.content-body .item:hover {
  background-color: #00af0342;
}

ul.pagination {
  display: flex;
  justify-content: space-evenly;
  width: 500px;
  margin: 30px 0;
  font-size: 1.2em;
}

.breadcrumbs-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  max-width: 1200px;
  width: -webkit-fill-available;
}

.login-box input{
  color: black;
}


/*=============  MODAL  =============*/

.modal {
  position: relative;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
}

.modal_wrap {
  position: relative;
  max-width: 790px;
  width: 100%;
  max-height: 90vh;
  background-color: #fff;
  border-radius: 15px;
  padding: 60px;
  overflow: auto;
}

.modal_inner {
  background-color: #E7E6FF;
  border-radius: 15px;
  padding: 60px 50px;
}

.modal_wrap::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.modal_wrap::-webkit-scrollbar-thumb {
  background-color: #A9A9A9;
  border-radius: 5px;
}

.modal_wrap::-webkit-scrollbar-track {
  background-color: transparent;
  border-right: 8px solid #D9D9D9;
  border-radius: 5px;
  margin: 30px 0;
}

.modal .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  cursor: pointer;
}

.modal .close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 3px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background-color: var(--second-color);
  border-radius: 1px;
}

.modal .close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 3px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background-color: var(--second-color);
  border-radius: 1px;
}

.modal .close:hover::before,
.modal .close:hover::after {
  -webkit-box-shadow: 0 0 5px 1px var(--second-color);
  box-shadow: 0 0 5px 1px var(--second-color);
}

.modal .back {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.modal .back i {
  width: 100%;
  height: 3px;
  background-color: var(--second-color);
  border-radius: 1px;
}

.modal .back i::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 3px;
  transform: rotate(-45deg) translateY(-50%);
  transform-origin: left;
  background-color: var(--second-color);
  border-radius: 1px;
}

.modal .back i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 3px;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 0px -1px;
  background-color: var(--second-color);
  border-radius: 1px;
}

.modal_title {
  font-family: Verdana, Geneva, Tahoma, 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 30px;
}

.modal_subtitle {
  margin-bottom: 41px;
}
.main-view-content{
  min-height: calc(100vh - 192px);
}


.view-content {
  min-height: calc(100vh - 293px);
}
.a-add-project{
  margin-top: 100px;
}

.add-project {
  margin-top: 100px;
}


.add-project input {
  margin: 10px;
  background-color: white;
  color: black;
}

.add-project input[type=submit] {
  margin: 10px;
  background-color: rgb(118, 163, 20);
  cursor: pointer;
}

.title {
  font-size: xx-large;
  margin: 40px 0;
}

.login-box form img{
  height: 100px;
  margin: 40px;

}

.menu.auth .logo,
.menu.register  .logo{
  max-width: 210px;
  margin-bottom: 100px;
}

.menu.auth .inner a:hover{
  color: #9cdd13;
  cursor: pointer;
}

.header.old-style .logo{
  max-width: none;
}