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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

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;
}

body {
  background-color: #EAEEF6;
  font-family: "Poppins", sans-serif;
  display: flex;
  width: 100%;
  height: 100vh;
}

.main {
  flex-grow: 1;
}

.wrapper {
  padding: 3.2vw;
}

input, button, .button {
  padding: 13px 20px;
  font-family: "Poppins", sans-serif;
  border-radius: 7px;
  border: 1px solid black;
  font-weight: 600;
  font-size: 16px;
  justify-content: center;
}

.button {
  display: flex;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  box-shadow: 0 0 5px #00000042;
  transition: all 0.3s;
}
.button:hover {
  background-color: #fcfcfc;
  box-shadow: 0 0 10px #00000042;
}

.hidden {
  display: none;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 35px;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

b {
  font-weight: 700;
}

small {
  font-size: 13px;
  color: #5E295E;
}

.container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.sidebar {
  background-color: white;
  width: 17.2%;
  height: 100vh;
  min-width: 300px;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.sidebar__list a {
  color: #000;
}
.sidebar__logo {
  margin-left: 3.2vw;
  padding: 50px 0;
  display: block;
}
.sidebar__logo img {
  width: 150px;
}
.sidebar__item {
  position: relative;
  padding: 28px 0;
  padding-left: 3.2vw;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  cursor: pointer;
  border-bottom: 1px solid #edf3fd;
}
.sidebar__item a {
  color: black;
  font-size: 20px;
  text-decoration: none;
}
.sidebar__item i {
  margin-right: 20px;
  width: 20px;
}
.sidebar__item i::before {
  color: #5E295E;
}
.sidebar__item::after {
  display: block;
  width: 18px;
  height: 18px;
  content: ">";
  margin-left: 20px;
}
.sidebar__item.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.sidebar__item.disabled::after {
  content: "";
}
.sidebar__item.active {
  pointer-events: none;
  background-color: #F5F9FF;
}
.sidebar__item.active::after {
  height: calc(100% + 1px);
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  background-color: #5E295E;
  content: "";
  display: block;
}

.dev__button {
  background-color: #3BC78D;
  padding: 30px 3.2vw;
}
.dev__button a {
  color: white;
  font-weight: 500;
}
.dev__button:nth-child(2) {
  background-color: #5E295E;
}
.dev__rights {
  margin: 25px 0 50px 3.2vw;
}

.header {
  padding: 50px 3.2vw 30px;
  background-color: #DEE5F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__title h1 {
  font-size: 38px;
  font-weight: 700;
}
.header__title h1 span {
  color: #5E295E;
}
.header__user {
  display: flex;
  align-items: center;
}
.header__user-icon {
  width: 55px;
  height: 55px;
  background-color: #B7C5D8;
  border-radius: 50%;
  border: 3px solid white;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
}
.header__user-name {
  font-size: 21px;
  font-weight: 600;
}

.sites {
  width: 100%;
  background-color: white;
}
.sites__search {
  display: flex;
}
.sites__search i {
  position: relative;
  cursor: pointer;
}
.sites__search i:hover::before {
  color: #464646;
}
.sites__search i::before {
  transition: all 0.3s;
  position: absolute;
  left: -55px;
  height: 51px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: #9c9c9c;
  border-left: 1px solid black;
}
.sites__top {
  position: relative;
  background-color: white;
  border-bottom: 1px solid #edf3fd;
  display: flex;
  padding: 1.6vw;
  justify-content: space-between;
}
.sites__top > div {
  display: flex;
  align-items: center;
}
.sites__top_transparent {
  background-color: #EAEEF6;
}
.sites__calendar {
  color: #8383A9;
  font-weight: 600;
  font-size: 16px;
}
.sites__calendar input {
  margin-left: 20px;
}
.sites__filter {
  cursor: pointer;
}
.sites__filter i {
  margin: 0 1.0666666667vw 0 2.6666666667vw;
  color: #5E295E;
  font-size: 25px;
}
.sites__filter::hover i {
  color: #8383A9;
}
.sites__filter::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #edf3fd;
  top: 0;
  position: absolute;
  display: block;
}
.sites__heading {
  font-weight: 700;
  font-size: 20px;
  display: grid;
  grid-template-columns: 50% 15% 15% 15% 5%;
  margin: 40px 1.6vw;
}
.sites__heading.col4 {
  grid-template-columns: 35% 34% 16% 15%;
}
.sites__list {
  background-color: white;
  padding-bottom: 1.6vw;
  padding-bottom: 0;
  min-height: 30px;
}
.sites__list-item {
  grid-template-columns: 50% 15% 15% 15% 5%;
  display: grid;
  align-items: center;
  background-color: #FCFDFF;
  padding: 20px 1.6vw;
  margin-bottom: 2.1333333333vw;
}
.sites__list-item_white {
  margin-bottom: 0;
  background-color: white;
}
.sites__list-item.col4 {
  grid-template-columns: 35% 35% 20% 10%;
}
.sites__list-item a, .sites__list-item .button {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sites__list-item img {
  height: 85px;
  width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 30px;
  -o-object-position: left;
     object-position: left;
}
.sites__list-item:nth-child(2n) {
  background: #f8f9fc;
}
.sites__status::before {
  display: block;
  width: 40px;
  height: 40px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
.sites__status.pending::before {
  background-image: url("/public/images/icons/pending.png");
}
.sites__status.ok::before, .sites__status.ready::before {
  background-image: url("/public/images/icons/ok.png");
}
.sites__status.failed::before {
  background-image: url("/public/images/icons/error.png");
}
.sites__status.error::before, .sites__status.no::before {
  background-image: url("/public/images/icons/attention.png");
}
.sites__domain {
  padding: 1.6vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.search {
  width: 300px;
  padding-right: 55px;
}

.latest {
  margin: 0 60px 0 40px;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1.5;
  box-shadow: none;
  border: 1px solid black;
  color: black;
}
.latest:hover {
  background-color: white;
  text-decoration: none;
}

.back-to-sites {
  cursor: pointer;
  font-size: 28px;
  margin-right: 100px;
  line-height: 50px;
}

.test-details {
  position: absolute;
  background-color: white;
  right: 200px;
  border: 2px solid;
  border-radius: 5px;
  padding-bottom: 40px;
}

.pop-up {
  width: 70%;
  min-height: 70%;
  position: fixed;
  background-color: white;
  top: 15%;
  border: 3px solid #5E295E;
  margin-left: 30px;
  z-index: 5;
}
.pop-up__log {
  margin: 1.6vw;
}
.pop-up__close {
  position: absolute;
  top: -20px;
  right: -20px;
  cursor: pointer;
}
.pop-up__close i {
  font-size: 35px;
  background-color: gainsboro;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.pop-up__close:hover i {
  background-color: #b6b6b6;
}
.pop-up__output {
  margin: 1.6vw;
}
.pop-up__output p {
  margin-bottom: 10px;
  font-weight: 600;
  color: #5E295E;
}
.pop-up__heading {
  margin: 3.2vw;
}

.auth form {
  width: 300px;
}
.auth__input {
  margin-bottom: 30px;
}
.auth__input input {
  width: auto;
  width: -webkit-fill-available;
}
.auth__submit {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pagination {
  display: flex;
  padding: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}
.pagination__items {
  display: flex;
}
.pagination a {
  text-decoration: none;
  font-size: 20px;
  color: #5E295E;
  transition: all 0.3s;
  background-color: #FCFDFF;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 5px;
}
.pagination a:hover {
  color: #b450b4;
  background-color: #ffe4ff6b;
}
.pagination__current {
  pointer-events: none;
  color: #aaaaaa !important;
  background-color: #d6d6d66b !important;
}

.tooltip-wrapper {
  position: relative;
}

.tooltip-handle {
  margin-left: 10px;
  color: #ccc;
  cursor: pointer;
}

.tooltip-content {
  opacity: 0;
  position: absolute;
  left: 30px;
  top: 20px;
  width: 300px;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 10px;
  border-top-left-radius: 0;
  background: white;
  font-size: 14px;
  transition: 0.3s opacity;
}

.tooltip-handle:hover + .tooltip-content {
  opacity: 1;
}

.phase {
  margin-bottom: 30px;
}
