body.brand-cf {
  --brand-color: #F8CD3A;
  --bg-color: #F2F2F2;
  --brand-color-hover: #F9D761;
  --black-color: #000;
  --white-color: #fff;
  --button-color-text: #000;
  --button-color-text-hover: #000;
  --accent-color: #3d3e39;
  --invert: invert(0);
  --logo: url(/www/images/logo_gray.svg)
}

body.brand-zenbox {
  --brand-color: #493086;
  --bg-color: #F2F2F2;
  --brand-color-hover: #7358b5;
  --black-color: #000;
  --white-color: #fff;
  --button-color-text: #fff;
  --button-color-text-hover: #fff;
  --accent-color: #3d3e39;
  --invert: invert(100%);
  --logo: url(/www/images/zenbox-logo.svg)
}


body {
  font-size: 13px;
  font-family: "Switzer-Regular", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  background-color: var(--inny-color);
  background: var(--bg-color);
}
body.modal-open .modal {
  padding-right: 0 !important;
}

.blur-text {
  filter: blur(10px);
  position: relative;
}

.img-hover-domain {
  max-width: 250px;
}



html {
  width: 100vw;
}

img.brand-logo {
  max-height: 14px;
}

img.brand-logo#zenbox {
  max-height: 21px;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  color: #000;
}

.fw-bold {
  font-weight: 500 !important;
}

a.yellow,
a:hover {
  color: var(--brand-color);
}

a.yellow {
  font-weight: bold;
}

a.green {
  color: #41af50;
  text-decoration-line: underline;
}

a.blue-link {
  color: #007aff;
}

.font-400 {
  font-weight: 400;
}

.btn-info {
  background: transparent;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  border-radius: 100%;
}

.form-select:focus {
  border-color: rgba(17, 17, 17, 0.2);
  outline: 0;
  box-shadow: none;
}

.btn-info:hover {
  background: rgba(17, 17, 17, 0.05);
}

.nav-link:focus,
.nav-link:hover {
  color: var(--black-color);
}

.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #cfcfcf;
  border-color: transparent;
  color: #707070;
}

.btn-primary.disabled img,
.btn-primary:disabled img {
  opacity: 0.4;
}

.help {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 57px;
  height: 57px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

@media (max-width: 768px) {
  h1.fw-500 {
    font-size: 25px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
  }

  .help {
    border: 1px solid #cccccc;
  }
}

input,
textarea,
select,
.textfield,
.form-control {
  -webkit-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
  border-radius: 16px !important;
}

a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none !important;

  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

div,
td,
p,
ul li,
div,
button,
input,
select,
textarea,
.btn {
  line-height: 160%;
}

.ml8 {
  margin-left: 8px !important;
}

.ml12 {
  margin-left: 12px !important;
}

.ml14 {
  margin-left: 14px !important;
}

.ml16 {
  margin-left: 16px !important;
}

.ml24 {
  margin-left: 24px !important;
}

.mr8 {
  margin-right: 8px !important;
}

.mr12 {
  margin-right: 12px !important;
}

.mr14 {
  margin-right: 14px !important;
}

.mr16 {
  margin-right: 16px !important;
}

.mr24 {
  margin-right: 24px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt12 {
  margin-top: 12px !important;
}

.mt14 {
  margin-top: 14px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb12 {
  margin-bottom: 12px !important;
}

.mb14 {
  margin-bottom: 14px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.pt8 {
  padding-top: 8px !important;
}

.pt12 {
  padding-top: 12px !important;
}

.pt14 {
  padding-top: 14px !important;
}

.pt16 {
  padding-top: 16px !important;
}

.pt24 {
  padding-top: 24px !important;
}

.pb8 {
  padding-bottom: 8px !important;
}

.pb12 {
  padding-bottom: 12px !important;
}

.pb14 {
  padding-bottom: 14px !important;
}

.pb16 {
  padding-bottom: 16px !important;
}

.pb24 {
  padding-bottom: 24px !important;
}

.gap4 {
  gap: 4px !important;
}

.gap8 {
  gap: 8px !important;
}

.gap12 {
  gap: 12px !important;
}

.gap14 {
  gap: 14px !important;
}

.gap16 {
  gap: 16px !important;
}

.gap24 {
  gap: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.loader {
  border: 16px solid #f0f0f0;
  border-top: 16px solid #428bca;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.form-control {
  padding: 20px;
  font-size: 13px;
  caret-color: var(--brand-color);
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: rgba(17, 17, 17, 0.8);
  outline: 0;
  box-shadow: none;
}

h1,
h2,
h3 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

h1 {
  font-size: 24px !important;
  font-weight: 500;
}

h2 {
  font-size: 16px !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 0;
  display: flex;
  color: var(--black-color);
}

h2 img[data-toggle="tooltip"] {
  margin-left: 6px;
}

img[data-toggle="tooltip"] {
  width: 16px;
  height: 16px;
}

h3 {
  font-size: 13px !important;
  margin-bottom: 8px !important;
}

h2,
h3 {
  display: flex;
  align-items: center;
}

h1.mainpagetitle {
  font-size: 48px;
  margin-bottom: 24px;
}

.modal-dialog {
  position: none !important;
  left: auto !important;
}

input[type="text"] {
  width: 100%;
}

input[type="submit"]:hover {
  background-color: rgb(180, 90, 0);
}

.poleformularza {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #44546a;
  border-radius: 5px;
  padding: 20px 16px;
  line-height: 20px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  color: rgba(75, 80, 84, 0.5);
}

hr.style-six {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.shadowedbox {
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.4);
}

.fa {
  margin-right: 12px;
}

.fa-star {
  margin-right: 3px;
}

.lightfield {
  padding: 6px;
  margin-top: 3px;
  width: 100%;
  border: none;
  border-bottom: 1px dashed grey;
  font-size: 16px;
  font-weight: 700;
}

.navbar {
  margin-bottom: unset;
}

.digit {
  padding: 6px;
  background: grey;
  color: white;
  border-radius: 5px;
  font-size: 28px;
  margin: 2px;
}

select,
.textfield {
  border-color: #ddd;
  border-style: solid;
  border-width: 1px;
  padding: 20px;
  line-height: 19px;
}

.textfield.fsp1 {
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  font-size: 13px;
  display: flex;
  height: 48px;
  padding: 19px 16px !important;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.aplaresponsywna {
  border-radius: 9px;
  padding: 48px;
}

@media (max-width: 768px) {
  .aplaresponsywna {
    border-radius: 3px;
    padding: 12px;
  }

  .container.pt-32.pb-32 {
    text-align: center;
  }
}

.banersf {
  padding-bottom: 30px;
}

.niezalogowany button.navbar-toggle.collapsed {
  display: none;
}

.zalogowany a.visible-xs.fsp4 {
  display: none !important;
}

/*responsive table*/
td.obrazek-url li {
  word-break: break-all;
}

table {
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
  width: 100%;
  table-layout: auto;
}

table.responsive caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}

table th {
  vertical-align: inherit !important;
}

table.responsive .fa {
  margin: 0;
}

.bg-warning {
  background-color: #ffc107 !important;
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px;
}

.bg-warning .btn-close-white {
  filter: invert(0) grayscale(100%) brightness(200%);
  background: url(/www/images/close.svg) center;
  background-size: 10px;
  background-repeat: no-repeat;
}

.nowy_projekt h2 {
  font-weight: 500;
  font-size: 16px !important;
  margin-bottom: 12px;
}

.nowy_projekt select,
.nowy_projekt input {
  width: 100%;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.13px;
}

@media screen and (max-width: 768px) {
  table.responsive caption {
    font-size: 1.3em;
  }

  table.responsive thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table.responsive tr {
    display: block;
    margin-bottom: 0.625em;
  }

  table.settings tr {
    display: flex;
    justify-content: space-between;
  }

  table.responsive td {
    display: block;
    font-size: 0.8em;
    text-align: right;
    border-top: 0 !important;
  }

  table.responsive td::before {
    content: attr(data-label);
    float: left;
    margin-right: auto;
  }

  table.responsive td:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  table.responsive tr {
  }

  table.responsive tr button,
  table.responsive tr a {
    color: #000;
  }

  table.responsive#slowa td:first-child {
    color: rgb(66, 139, 202);
    font-weight: bold;
    font-size: 0.9em;
  }

  table.responsive#slowa td::before {
    color: #333;
  }
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: none;
  box-shadow: none;
}


.btn {
  opacity: 1;
  text-align: center;
  cursor: pointer;
  color: var(--button-color-text);
  background-color: var(--brand-color);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  display: inline-flex;
  margin: 0;
  height: 48px;
  padding: 16px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.26px;
}
.btn.btn-primary {
  height: 56px;
}

#loginform .btn.btn-primary {
  min-width: 156px;
}

.btn.btn-primary img {
  filter: var(--invert);
}

.btn.radius-48 {
  border-radius: 48px;
}

.btn-primary:active,
.btn-primary:hover {
  background-color: var(--brand-color-hover) !important;
  color: var(--button-color-text-hover) !important;
  text-decoration: none;
  outline-style: none;
  border: 1px solid rgba(17, 17, 17, 0.2);
}


/* .btn-primary:focus {
  background-color: var(--brand-color) !important;
  color: var(--button-color-text) !important;
} */

.btn-primary.white {
  background: #fff;
  color: var(--black-color);
  border: 0;
  border-radius: 64px;
  padding: 8px 8px 8px 16px;
}

.btn-primary.white:hover,
.btn-primary.white:focus {
  background-color: #fff !important;
  color: var(--black-color) !important;
}

.btn-primary.single {
  padding: 16px;
  height: 48px;
  border-radius: 100%;
  width: 48px;
}

.btn-primary.single img {
  filter: var(--invert);
}


.btn-primary.white .button-radius {
  padding: 16px;
  background: var(--brand-color);
  border-radius: 100%;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-left: 16px;
}



.btn-primary.white img {
  filter: var(--invert);
}




.btn-primary.white.inverted {
  background: #fff;
  border: 0;
  border-radius: 64px;
  display: flex;
  flex-direction: row-reverse;
  padding: 12px 16px;
}
.btn-primary.white.inverted#competetiveDomain:focus,
.btn-primary.white.inverted#competetiveDomain:hover {
  background: #fff !important
}

.btn-primary.white.inverted img {
  padding: 0;
  background: unset;
  border-radius: 0;
  margin-left: 0;
  max-width: 16px;
  border-radius: 2px;
  filter: invert(0);
}

@media (max-width: 768px) {
  .btn-primary {
    padding: 10px 15px;
    font-size: 13px;
  }
}

.textfield {
  padding: 16px !important;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.table tr:first-child td {
  border-top: none;
}

ul.nav.navbar-nav.navbar-right.navbar-text {
  display: flex;
  align-items: center;
}

.cf {
  color: #fff;
  font-size: 55px;
}

.label-success {
  padding: 15px;
}

.label-success:after,
.label-success:before {
  content: "";
}

ul.nav.navbar-nav.navbar-right.navbar-text li a {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black-color);
}

div#bs-example-navbar-collapse-1 {
  border-bottom: 1px solid #e3e5e2;
}

.navbar-header.pr-12 {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .megamenu {
    position: static;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }

  .megamenu .container {
    max-width: 100%;
    float: right;
    padding: 0;
    padding-top: 30px;
    margin-top: -30px;
  }
}

.navbar {
  padding: 0;
  border-bottom: 1px solid #e1e1e1;
  padding: 0 0 7px 0;
}

.opis {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.opis span.imie {
  color: var(--brand-color);
  padding: 15px 20px;
  font-size: 22px !important;
  font-weight: bold !important;
  background: transparent !important;
}

.opis span {
  display: block;
  padding: 15px 18px;
  background-color: var(--black-color);
  color: #959a90;
  font-size: 12px;
}

.megamenu .dropdown-menu {
  background: none;
  border: none;
  margin-left: 40% !important;
  width: 60% !important;
}

.dropdown-toggle::after {
  color: var(--brand-color);
}

.bootstrap-autocomplete.dropdown-menu.show::before {
  padding: 4px 10px;
  color: var(--black-color);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.11px;
  opacity: 0.6;
}

body.en .bootstrap-autocomplete.dropdown-menu.show::before {
  content: "Domain suggestions";
}

body.pl .bootstrap-autocomplete.dropdown-menu.show::before {
  content: "Sugestie domen";
}

body.hr .bootstrap-autocomplete.dropdown-menu.show::before {
  content: "Prijedlozi domena";
}

body.ro .bootstrap-autocomplete.dropdown-menu.show::before {
  content: "Sugestii de domenii";
}

/*
*
* ==========================================
* FOR DEMO PURPOSES
* ==========================================
*
*/

code {
  color: #745eb1;
  background: #fff;
  padding: 0.1rem 0.2rem;
  border-radius: 0.2rem;
}

.text-uppercase {
  letter-spacing: 0.08em;
}

.menu_mega_cf {
  width: 100%;
  min-height: 400px;
}

.menu_mega_cf a {
  font-weight: bold !important;
  color: rgb(60, 61, 56) !important;
}

.bg_home {
  margin: 0;
  background: top right url(/www/images/sprawdzdomene_2-scaled.jpg) no-repeat;
  background-size: cover;
  min-height: 650px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.bg_home .container {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .bg_home .container {
    padding: 0;
  }
}

.bg_home .fsp4 {
  padding: 56px 50px;
  background: var(--brand-color);
  color: #343a40;
  font-weight: bold;
  font-size: 40px !important;
  line-height: 55px;
}

.bg_home .fsp4 p {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 100;
}

.hidden {
  display: none;
}

a.navbar-brand img.img-responsive.inline {
  height: 65px;
}

.navbar-expand-lg .navbar-collapse {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .navbar-expand-lg .navbar-collapse {
    align-items: center;
    flex-direction: row;
    gap: 0 20px;
  }
}

.active_project {
  font-weight: bold;
}

.menu_mega_cf .nav-item a {
  padding-left: 0 !important;
}

.menu_mega_cf .nav-item span {
  font-size: smaller;
  color: #959a90;
}

/* .btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--brand-color-hover);
    border-color: var(--brand-color-hover);
} */

.navbar-light .navbar-nav .nav-link {
  color: rgb(60, 61, 56);
}

.projekt-button {
  /* margin-right: 10px; */
}

.gray {
  background: #3c3d38;
  border: 1px solid #3c3d38;
  color: #fff !important;
}

nav.navbar li > .btn-primary {
  border: 2px solid var(--brand-color);
  background-color: white;
}

.breadcrumbs {
  padding-top: 20px;
}

/* .btn-primary.focus,
.btn-primary:focus {
  background-color: var(--brand-color-hover);
  border-color: var(--brand-color-hover);
  box-shadow: none;
} */

/* .kafelki {
    display: flex;
      margin-right: 0;
      gap: 20px;
} */

.kafelki > .col {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #fff;
  margin-bottom: 12px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  align-items: center;
}

.kafelki > .col:hover {
  border: 1px solid rgba(17, 17, 17, 0.2);
}

.kafelki > .col:hover .opis-kafelki span.btn-primary {
  border: 1px solid rgba(17, 17, 17, 0.2);
}

@media (max-width: 768px) {
  .kafelki > div,
  .kafelki > a {
    margin: 0 0 15px 0;
  }

  #content #main .kafelki .col {
    flex-direction: column;
    text-align: center;
  }

  #content #main .kafelki .col .opis-kafelki {
    padding-left: 0;
    text-align: center;
  }

  #content #main .kafelki .col .opis-kafelki .text-left {
    text-align: left;
  }

  #content #main .kafelki .col .opis-kafelki .domain_title {
    padding-top: 15px;
  }

  #content #main .kafelki > div img {
    max-width: 100%;
    max-height: 100%;
  }
}

.kafelki > a.new_project {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-color);
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  transition: all 0.5s ease;
  height: 100px;
}

.kafelki > a.new_project:hover {
  background: var(--accent-color);
  color: #fff;
}

/*.kafelki > div.nowy-projekt,
.kafelki > div:nth-child(odd) {
  background: rgb(242 242 242 / 50%);
}*/

.kafelki > .col > img {
  min-width: 228px;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  height: 142px;
  object-fit: fill;
}

.kafelki > .col .opis-kafelki {
  width: 100%;
  text-align: left;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.kafelki > .col .opis-kafelki b {
  color: #000;
  min-width: 24px;
  text-align: center;
  display: inline-block;
  margin-right: 8px;
}

.kafelki > .col .opis-kafelki > div {
  color: rgba(17, 17, 17, 0.8);
  display: flex;
  flex-wrap: wrap;
}

.kafelki > .col .opis-kafelki > div > b {
  color: #282825;
}

.kafelki > .col .opis-kafelki span.btn-primary {
  background: #0000;
  border: none;
  color: #000 !important;
  border: 0;
  border-radius: 32px;
  background: url(/www/images/arrow_forward.svg) no-repeat center;
  width: 44px;
  height: 44px;
  display: block;
  padding: 0;
  align-self: flex-end;
  background-color: #e7e7e7;
}

.opis-kafelki span.btn-primary:hover {
  background-color: #e7e7e7 !important;
}

.nowy-projekt {
  display: flex;
  align-items: center;
  justify-content: center !important;
  min-height: 270px;
  font-size: 16px;
  text-align: center;
}

.kafelki h2,
.kafelki span {
  word-break: break-all;
  display: flex;
  align-items: center;
}

.kafelki .domain_title {
  font-weight: 500;
  font-size: 20px !important;
  margin-bottom: 8px !important;
}

.kafelki .domain_description {
  font-size: 13px !important;
  font-weight: 400 !important;
  margin: 0;
  padding: 0;
  text-align: left;
  margin-bottom: 16px !important;
}

.kafelki .domain_description:after {
  content: "\00a0";
}

@media (max-width: 768px) {
  .kafelki .domain_description:after {
    display: none;
  }
}

.kafelki .domain_count,
.kafelki .domain_flags {
  font-size: 12px;
}

.kafelki .domain_count {
  margin-bottom: 16px;
  font-weight: 400;
}

.kafelki img.flags-project {
  width: 24px;
  height: 24px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  object-fit: cover;
}

.kafelki .row {
  padding-bottom: 25px;
}

.kafelki .row > div:first-child {
  border-right: 1px solid #cecece;
}

.kafelki h2:after,
.kafelki h2:before {
  display: none;
}

.kafelki .usun {
  text-align: right;
}

@media (min-width: 1024px) {
  .kafelki > .col {
    flex: 0 0 auto;
    width: calc(100% / 2 - 6px);
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .kafelki > .col {
    flex-direction: column;
  }

  .kafelki > .col .opis-kafelki {
    padding-left: 0 !important;
    margin-top: 12px;
  }

  .kafelki > .col > img {
    object-fit: cover;
    height: unset;
    min-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .megamenu {
    display: block;
  }

  .megamenu .dropdown-menu.show {
    padding: 0 15px !important;
  }

  .megamenu .dropdown-menu.show div {
    padding: 0 !important;
  }

  .menu_mega_cf {
    width: 100%;
    min-height: unset;
  }

  .bg_home {
    min-height: unset;
  }

  .bg_home .fsp4,
  .bg_home .fsp4 b {
    font-size: 18px !important;
    line-height: 30px;
  }

  .bg_home .btn-primary {
    padding: 11px 17px;
    font-size: 11px;
  }

  .megamenu .dropdown-menu {
    background: none;
    border: none;
    margin-left: 0 !important;
    width: 100% !important;
  }

  .bg_home .fsp4 {
    padding: 15px;
    margin: 20px 0;
  }

  .bg_home .pt-24 {
    margin-bottom: 20px;
  }

  .bg_home .fsp4 p {
    font-size: 15px;
  }

  .projekt-button {
    width: 100%;
    margin-bottom: 5px;
  }

  .flex {
    flex-direction: column;
  }

  div#chartdiv {
    height: 90vh !important;
  }

  .kafelki > div img {
    max-height: 200px;
  }

  .nowy-projekt {
    min-height: 200px;
  }
}

@media (max-width: 425px) {
  .bg_home {
    background: #c3c4c8 right center url(/www/images/studio_small_min.jpg)
    no-repeat;
    background-size: 40%;
    background-position: top;
    padding-top: 115px;
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }

  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
}

.navbar .nav-item:hover .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-bottom: 0.3em solid #000;
  border-right: 0.3em solid transparent;
  border-top: 0;
  border-left: 0.3em solid transparent;
}

#chartdiv {
  width: 100%;
  height: 450px;
}

/*lang*/

.lang-menu {
  align-items: center;
  justify-content: center;
  display: flex;
}

.lang-menu img {
  width: auto;
  height: 40px;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  margin: 0px 15px;
}

.lang-menu img:first-child {
  margin-left: 0;
}

nav.navbar li > .btn-primary.login-button {
  background-color: white;
  color: var(--brand-color) !important;
  border: none;
}

.top-menu {
  border-bottom: 0;
}

.top-menu li::marker {
  display: none;
  content: "" !important;
}

.top-menu li {
  margin-right: 35px;
  font-size: 15px;
}

.top-menu li a {
  font-weight: 100;
  font-family: Arial, Helvetica, sans-serif;
  color: #959a90;
  padding-bottom: 4px;
}

.top-menu li a.active {
  color: var(--black-color);
  border-bottom: 3px solid var(--brand-color);
}

.navbar .lang-menu img {
  width: auto;
  height: 20px;
}

.navbar .lang-menu {
  margin-right: 0;
}

.main-menu {
  padding: 3px 0;
}

.btn-primary.login-button {
  padding: 20px 0 14px 0;
}

.btn-primary.login-button:active {
  background-color: transparent !important;
}

.fullwidth.fullwidth-menu {
  padding-top: 15px;
}

@media (max-width: 540px) {
  .top-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .lang-menu img:first-child {
    margin-left: 0;
    margin-right: 11px;
  }
}

/*sidebar*/

/* Toggle Styles */
a#menu-toggle {
  position: fixed;
  background: var(--accent-color);
  color: #ffffff;
  padding: 10px 10px 10px 4px;
  top: 80px;
  z-index: 99999;
  margin-left: 0px;
  border: 0;
  border-radius: unset !important;
  -webkit-border-top-right-radius: 5px !important;
  -webkit-border-bottom-right-radius: 5px !important;
  -moz-border-radius-topright: 5px !important;
  -moz-border-radius-bottomright: 5px !important;
  border-top-right-radius: 100% !important;
  border-bottom-right-radius: 100% !important;
}

#wrapper .icon-hide {
  display: none;
}

#wrapper.toggled .icon-hide {
  display: block !important;
}

#wrapper.toggled .icon-toggle {
  display: none !important;
}

@media (max-width: 768px) {
  #wrapper img.icon-toggle {
    display: none !important;
  }

  #wrapper img.icon-hide {
    display: block !important;
  }

  #wrapper.toggled img.icon-toggle {
    display: block !important;
  }

  #wrapper.toggled img.icon-hide {
    display: none !important;
  }
}

#wrapper.toggled a#menu-toggle {
  margin-left: 0;
}

a#menu-toggle i {
  padding: 0;
  margin: 0;
}

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled {
  padding-left: 300px;
}

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 300px;
  width: 0;
  height: 100%;
  margin-left: -300px;
  overflow-y: auto;
  background: var(--bg-color);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-sizing: content-box;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#sidebar-wrapper {
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 var(--bg-color);
}

#sidebar-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

#sidebar-wrapper::-webkit-scrollbar-track {
  background: #ffffff21;
}

#sidebar-wrapper::-webkit-scrollbar-thumb {
  background-color: #ffffff75;
  border-radius: 0px;
  border: 0px solid var(--accent-color);
}

#wrapper.toggled #sidebar-wrapper {
  width: 300px;
}

#page-content-wrapper {
  width: calc(100% - 12px);
  width: 100%;
  position: absolute;
  padding: 0 15px;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -300px;
}

/* Sidebar Styles */

.sidebar-nav {
  /* width: 300px; */
  margin: 0;
  padding: 14px 24px 14px 24px;
  list-style: none;
  color: #fff;
}

.sidebar-nav.logout {
  margin-bottom: 0;
}

.sidebar-nav li {
  line-height: 37px;
  margin-bottom: 8px;
}

.sidebar-nav li.nav-item {
  font-size: 13px;
  margin-left: 50px;
  line-height: 23px;
  font-weight: 100;
}

.sidebar-nav li.nav-item a {
  padding: 5px 0;
}

.sidebar-nav li.menu-item a {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  cursor: pointer;
  border-radius: 16px;
}

.sidebar-nav li.menu-item a:hover {
  background-color: #fff !important;
}

.sidebar-nav li .nav-img span {
  color: #b1b1b1;
}

.sidebar-nav li a i {
  padding-right: 15px;
  display: inline;
  color: var(--brand-color);
  font-size: 24px;
}

.sidebar-nav li a:hover {
  text-decoration: none;
  color: var(--black-color) !important;
  background: transparent;
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}


.sidebar-nav > .sidebar-brand {
  margin: 0 0 13px;
  padding: 12px 10px;
  width: 100%;
  line-height: normal;
}

.sidebar-nav .btn-primary {
  padding: 10px;
  background: #0000;
  color: #fff !important;
}


.sidebar-nav .nav-img {
  position: relative;
  text-align: left;
  margin-left: 36px;
  border-radius: 16px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-right: 0;
  border: 1px solid transparent;
}

.sidebar-nav .nav-img .col-icons {
  align-self: self-start;
  width: 100%;
  line-height: 0;
  display: flex;
  align-items: center;
}

.sidebar-nav .nav-img .col-icons .domain {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-nav .nav-img.projectdescription .col-icons {
  margin-top: 0;
  align-self: flex-start;
}

.sidebar-nav .nav-img:hover {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: rgba(17, 17, 17, 0.05);
}

.sidebar-nav .projectslistmore {
  padding-right: 10px
}

.sidebar-nav .projectslistmore .nav-img.active {
  border: 1px solid transparent;
  background: #fff;
  order: -9999;
}

.sidebar-nav .nav-img.active {
  border: 1px solid transparent;
  background: #fff;
}

/* .sidebar-nav #projectslist li a.nav-img:first-child:before,
.sidebar-nav #projectslist li a.nav-img.active:before {
  height: 35px;
  top: 8px;
  transform: translateY(0);
} */

.sidebar-nav #projectslist li {
  position: relative;
  gap: 4px;
  max-height: 412px;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.sidebar-nav #projectslist li a:before {
  width: 1px;
  height: calc(100% + 48px);
  background: #dbdbdb;
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  transform: translateY(-50%);
}


.sidebar-nav #projectslist li:after {
  background: #f2f2f2;
  width: 15px;
  height: 8px;
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
}



.sidebar-nav .col.col-max {
  max-width: 60px;
}

.sidebar-nav .col-max img {
  width: 105px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.sidebar-nav .nav-img img {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.sidebar-nav .col-max.min-image img {
  width: 60px;
}

.sidebar-nav .col.col-auto-favicon,
.sidebar-nav .col.col-auto-nav {
  display: flex;
  /* flex-direction: column; */
  justify-content: start;
  align-items: center;
  word-break: break-all;
  text-align: center;
  font-size: 13px;
}

.sidebar-nav .nav-img .domain-description {
  display: flex;
  margin-left: 0;
  align-items: flex-start;
  width: 100%;
}

.sidebar-nav .nav-img .domain-description .domain {
  color: var(--black-color);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.26px;
}

.sidebar-nav .nav-img .domain-description span {
  color: rgba(17, 17, 17, 0.6);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.22px;
  text-align: center;
  margin-left: 28px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.col.col-auto-nav.col-icons {
  flex-direction: row;
}

div#wrapper .fullwidth.fullwidth-content#content-page {
  min-height: calc(100vh - 88px);
  border-left: 1px solid #dbdbdb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) {
  div#wrapper .fullwidth.fullwidth-content#content-page {
    border-left: 0;
  }
}

/*zlogowany*/
body.logged div#wrapper .fullwidth.fullwidth-content#content-page .container,
body.logged div#wrapper .fullwidth.fullwidth-content#footer_page .container {
  max-width: calc(100% - 30px);
}

@media (max-width: 768px) {
  body.logged div#wrapper .fullwidth.fullwidth-content#content-page .container,
  body.logged div#wrapper .fullwidth.fullwidth-content#footer_page .container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 40px) !important;
  }
}

.fullwidth.fullwidth-content#content-page > .container {
  padding-bottom: 20px;
  flex: 1;
  max-width: 1920px !important;
}

.guest .fullwidth.fullwidth-content#content-page > .container {
  flex: 1;
  max-width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guest .fullwidth.fullwidth-content#content-page > .container .b-white {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 16px;
}

.guest .home-p {
  margin-top: 16px;
  margin-bottom: 79px;
  padding: 0;
}

.guest .logo-rank {
  margin-bottom: 24px;
  display: block;
}

.guest .logo-rank:hover {
    color: inherit;
}

@media (max-width: 1440px) {
  .fullwidth.fullwidth-content#content-page > .container {
    max-width: calc(100% - 8px) !important;
  }
}

div#wrapper .fullwidth.fullwidth-menu .container,
div#wrapper .fullwidth.fullwidth-content#footer_page .container,
div#wrapper .fullwidth.fullwidth-content#content-page .container {
  padding-left: 30px;
  padding-right: 30px;
}

div#wrapper:not(.toggled) .fullwidth.fullwidth-menu,
div#wrapper:not(.toggled) .fullwidth.fullwidth-content#content-page {
  border-left: 0;
}

.font-weight-bold {
  font-weight: bold;
}

body nav.navbar li > .btn-primary.login-button i {
  margin-left: 10px;
}

.form-group {
  padding-bottom: 13px;
  position: relative;
}

.alert {
  min-width: 400px;
  overflow: auto;
  padding-right: 1rem;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: auto;
  padding-right: 50px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  border: unset;
  background-color: #fff;
  max-width: 500px;
  float: right;
  background: #fff url(/www/images/warning.svg) no-repeat 18px center;
  padding-left: 65px;
  box-shadow: 0px 4px 9px 0px rgba(69, 69, 69, 0.15);
  backdrop-filter: blur(5px);
  position: fixed;
  top: -4px;
  right: -500px;
  z-index: 999999999;
  padding: 25px 50px 25px 70px;
  animation: slideIn 0.5s ease 1.5s forwards;
}

@keyframes slideIn {
  from {
    right: -500px;
  }

  to {
    right: 12px;
  }
}

.alert h3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px !important;
  margin: 0 !important;
}

.alert-dismissible .btn-close {
  background: url(/www/images/xmark.svg) no-repeat center;
  opacity: 1;
  width: 40px;
  height: 40px;
  padding: 0;
}

@media (max-width: 768px) {
  .alert h3 {
    flex-direction: column;
    text-align: center;
  }

  .alert h3 a {
    margin-top: 10px;
  }

  .alert {
    max-width: calc(100% - 30px);
    top: 15px;
    z-index: 999999999;
    margin: 0;
    right: 12px !important;
    min-width: calc(100% - 24px);
    border: 0;
    padding: 25px 50px 25px 60px;
  }

  .alert h3 {
    font-size: 11px !important;
  }
}


.alert button {
  float: right;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0000;
  color: #000;
  font-size: 35px;
}

.alert h3 {
  float: left;
}

#serialcookie {
  z-index: 9999;
}

@media (min-width: 1025px) {
  a#menu-toggle {
    display: none;
  }

  #wrapper {
    padding-left: 310px;
  }

  #wrapper.toggled {
    padding-left: 300px;
  }

  #sidebar-wrapper {
    width: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  #wrapper.toggled #sidebar-wrapper {
    width: 300px;
  }

  #page-content-wrapper {
    padding: 0;
    position: relative;
  }

  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  #page-content-wrapper {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .sidebar-nav > .sidebar-brand {
    display: flex;
    justify-content: center;
    min-width: 252px;
  }
}

.zaawansowany_widok {
  border: 1px solid #969696;
  width: 100%;
  border: none;
  border-collapse: separate;
  border-spacing: 0;
}

.zaawansowany_widok tr td.title,
.zaawansowany_widok thead {
  background: #f5f6f5;
  font-weight: normal;
  color: #111;
}

.zaawansowany_widok tr td {
  text-align: center;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  min-width: 68px;
  height: 56px;
  padding: 14px 16px;
  font-size: 12px;
}

.zaawansowany_widok tr td.red {
  background: rgba(255, 59, 48, 0.05);
  color: #000;
}

.zaawansowany_widok tr td.yellow {
  color: var(--black-color);
}

.zaawansowany_widok tr td.green {
  background: rgba(52, 199, 89, 0.05);
}

.zaawansowany_widok tr td.data,
.zaawansowany_widok tr td.title {
  min-width: 278px;
  max-width: 278px;

  background: #fff;
  padding: 0 5px;
  word-break: break-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.zaawansowany_widok thead tr td {
  background: #f5f5f5;
}

.zaawansowany_widok tr td:nth-child(2) {
  display: none;
}

.zaawansowany_widok tr td:last-child {
  display: table-cell;
}

.zaawansowany_widok tr:hover > td {
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
}

.zaawansowany_widok tr:hover > td.title {
  background: #f3f3f3;
}

a.btn.btn-primary:not(.collapsed) .off {
  display: none;
}

a.btn.btn-primary.collapsed .on {
  display: none;
}

.card-body {
  border: none !important;
  padding: 0 !important;
}

.tab-content.change_view_chart_content {
  width: 100%;
}

.table_scroll {
  overflow-x: auto;
  transform: rotateX(180deg);
  /* border: 1px solid #00000012; */
  overflow-y: hidden;
}

.table_scroll .zaawansowany_widok {
  transform: rotateX(180deg);
  margin-bottom: 0;
  margin-bottom: 4px;
}

.table_scroll .zaawansowany_widok a:hover {
  color: var(--black-color);
}
.zaawansowany_widok thead:before {
  content: "";
  height: 10px;
  display: block;
  background: #ffffff;
  z-index: 99999999999;
  position: absolute;
  width: 100%;
  top: -10px;
}

/* .zaawansowany_widok tbody td.table-with-keyword-id {
    white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        cursor: pointer;
        max-width: 300px;
} */

.wykres {
  display: block !important;
}

.wykres.show {
  display: none !important;
}
.sidebar-nav #projectslist li::-webkit-scrollbar,
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar,
.table_scroll::-webkit-scrollbar {
  width: 10px;
  height: 8px;
  padding: 5px;
}
.sidebar-nav #projectslist li::-webkit-scrollbar-button,
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-button,
.table_scroll::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.sidebar-nav #projectslist li::-webkit-scrollbar-thumb,
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb,
.table_scroll::-webkit-scrollbar-thumb {
  background: #e0e0e0 !important;
  border: 0px none #b8b8b8 !important;
  border-radius: 5px !important;
}
.sidebar-nav #projectslist li::-webkit-scrollbar-thumb:hover,
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb:hover,
.table_scroll::-webkit-scrollbar-thumb:hover {
  background: #b8b8b8 !important;
}
.sidebar-nav #projectslist li::-webkit-scrollbar-thumb:active,
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb:active,
.table_scroll::-webkit-scrollbar-thumb:active {
  background: #b8b8b8 !important;
}
.sidebar-nav #projectslist li::-webkit-scrollbar-track,
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track,
.table_scroll::-webkit-scrollbar-track {
  background: #fff !important;
  border: 55px none var(--brand-color);
  border-radius: 50px;
}
.sidebar-nav #projectslist li::-webkit-scrollbar-track:hover,
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track:hover,
.table_scroll::-webkit-scrollbar-track:hover {
  background: #fff;
}
.sidebar-nav #projectslist li::-webkit-scrollbar-track:active,
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track:active,
.table_scroll::-webkit-scrollbar-track:active {
  background: #fff;
}
.sidebar-nav #projectslist li::-webkit-scrollbar-corner,
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-corner,
.table_scroll::-webkit-scrollbar-corner {
  background: transparent;
}

.select2-container .img-flag {
  width: 16px !important;
  height: 16px !important;
  border-radius: 100%;
  display: inline-block;
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.select2-container .select2-results__option {
  padding: 12px;
  border-radius: 16px;
  color: #000 !important;
  font-size: 13px;
}

.select2-container
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #fff !important;
}

.select2-container .select2-results > .select2-results__options {
  padding: 8px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}


.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #ddd !important;
}

@media (min-width: 1024px) {
  .zaawansowany_widok tr td.data,
  .zaawansowany_widok tr td.title {
    position: sticky;
    left: 0;
    z-index: 9999;
    padding: 15px;
    text-align: left;
    width: 278px;
  }

  .zaawansowany_widok tr td.data {
    background: #f5f5f5;
  }
}

/* password generetor */

.input-data {
  display: flex;
}

.input-data .display {
  margin-right: 10px;
  height: 61px;
  width: 100%;
  display: flex;
  position: relative;
}

.input-data .display input {
  height: 48px;
  width: 100%;
  outline: none;
  color: #000;
  padding: 10px;
  font-size: 13px;
  user-select: none;
  padding: 30px 15px !important;
}


.input-data .display img,
.input-data .display span {
    position: absolute;
    right: 10px;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    font-size: 25px;
    color: grey;
    z-index: 999;
    cursor: pointer;
    margin-right: 8px;
    background: #fff;
    width: 16px;
}

.input-data button:hover {
  background: #222;
}

.input-data .pass_generator {
  width: 50%;
  padding: 18px 20px 16px;
}

.input-data .display span::before {
  content: "\f155";
  font-family: bootstrap-icons !important;
}

.input-data .display .fa-click-password:before {
  content: "\f155";
  color: var(--brand-color);
}

#content #main .row {
  margin-left: 0;
  margin-right: 0;
}

#content #main .row .row-bg-white,
#content #main .row {
  background: #fff;
  margin-bottom: 12px;
  padding: 24px;
  border-radius: 32px;
}

#content #main .row .row-bg-white {
  margin-bottom: 0;
}

#content #main .row.transparent {
  background: transparent;
}

@media (max-width: 768px) {
  #content #main .row.transparent > .col {
    flex: 1 0 100%;
  }

  #content #main .row .row-bg-white,
  #content #main .row {
    padding: 15px;
  }
}

.table {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}

.table > thead {
  vertical-align: bottom;
  background: #f5f5f5;
  border-radius: 16px;
}

.table > thead tr th {
  background: #f5f5f5;
}


.table > thead tr th {
  border-top: 0 !important;
  padding: 14px 16px;
  font-size: 13px;
  font-style: normal;
  color: var(--black-color);
  vertical-align: middle !important;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.13px;
  max-width: 200px;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  overflow: hidden;
}

.table > thead tr th img {
  max-width: 16px;
  margin-right: 8px;
}

/* table.table tr td:nth-child(2) {
    font-weight: bold;
    color: #282825;
} */

.table > tbody tr.highlight,
.table > thead tr th.highlight,
.table > tbody tr td.highlight,
.table > tbody tr.highlight td {
  background-color: #f5f5f5;
}

table tbody tr:hover td{
  background: rgba(17, 17, 17, 0.05);
}

table.zaawansowany_widok {
  overflow-x: hidden;
}

table.zaawansowany_widok th {
  position: relative;
}

td,
th {
  position: relative;
}

table.zaawansowany_widok tbody td:not(.title):hover::after,
table.zaawansowany_widok thead th:not(.data):hover:after {
  background-color: rgba(17, 17, 17, 0.05);
  content: "\00a0";
  height: 100%;
  left: -5000px;
  position: absolute;
  top: 0;
  width: 10000px;
  z-index: -1;
}

table.zaawansowany_widok tbody td:not(.title):hover::after,
table.zaawansowany_widok thead th:not(.data):hover:after {
  background-color: rgba(17, 17, 17, 0.05);
  content: "\00a0";
  height: 10000px;
  left: 0;
  position: absolute;
  top: -5000px;
  width: 100%;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  color: #111;
  --bs-table-bg-type: transparent;
}

.table>:not(caption)>*>* {
  color: #111;
}

.table span.position-diff {
  color: rgba(17, 17, 17, 0.6);
}

.table tr td {
  padding: 14px 16px !important;
  vertical-align: middle;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
}

.table tr td span.highlight-text {
  color: #000;
  width: auto;
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  font-weight: 500;
}

.table tr td.no-highlight-text {
  color: rgb(112, 112, 112);
  font-weight: 400;
}

.table tr td img:not(.wykres) {
  max-width: 16px;
}


@media(max-width: 768px) {

  .table-keywords>tbody>tr>td:first-child,
  .table tr.no-results-row td.no-highlight-text {
width: 100% !important;
    max-width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal !important
}
}




.table tr.no-results-row td.no-highlight-text:before {
  display: none;
}


.table thead tr th:last-child,
.table tbody tr td:last-child {
  width: auto;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* text-align: center; */
  padding: 14px 16px;
}

.table.last-child tbody tr td:last-child,
.table.last-child thead tr th:last-child {
  text-align: center;
  margin-left: auto;
}

.last-child-row,
.row-keywords thead tr th:last-child,
.row-keywords tbody tr td:last-child {
  width: 57px !important;
  height: 57px !important;
  padding: 14px 0 !important;
}

.table span {
  width: 32px;
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
}

.table span @media(max-width: 768px) {
  .table.table-keywords tr th,
  .table.table-keywords tr td {
    border: none;
  }
}

.table tr th {
  border-bottom-color: #dee2e6 !important;
  border: 1px solid #dee2e6;
  border-left: none;
}

.bootstrap-autocomplete.dropdown-menu.show {
  box-shadow: 0px 4px 11.2px 0px rgba(122, 122, 122, 0.25);
  padding: 0;
  border-radius: 16px;
  border: none;
}

/* przeklejone z headerView */
body.active:after {
  z-index: 0;
  content: "";
  inset: 0;
  background: rgb(0 0 0 / 41%);
  position: absolute;
}

body.active .fullwidth-menu,
body.active .fullwidth-menu *,
body.active .navbar-expand-lg .navbar-collapse,
body.active .megamenu .container {
  z-index: 999999999999 !important;
}

body.active .fullwidth-menu {
  background-color: #fff;
  position: relative;
}

body nav.navbar li > .btn-primary.login-button {
  background-color: transparent !important;
}

.sidebar-nav .menu-item.menu-active .nav_link {
  background-color: #fff;
  margin-bottom: 8px;
  border-radius: 16px;
}

.sidebar-nav li.submenu .nav_link {
  background: url(/www/images/chevron-right.svg) no-repeat right 15px center;
}

.sidebar-nav li.submenu:not(.collapsed) .nav_link.hide_arrow,
.sidebar-nav li.submenu .nav_link.hide_arrow {
    background: none
}

.sidebar-nav li.submenu.menu-active .nav_link {
  background-color: #fff !important;
}

.sidebar-nav li.submenu:not(.collapsed) .nav_link {
  background: url(/www/images/chevron_right_top.svg) no-repeat right 15px center;
}

.sidebar-nav li.admin_links {
  border-top: 1px solid #cacaca;
  margin-top: 24px;
  padding-top: 24px;
  cursor: unset;
}

.sidebar-nav li.admin_links a:hover {
  cursor: pointer;
}

.sidebar-nav li:not(.sidebar-brand):hover,
li.menu-item.menu-active,
.sidebar-nav li.submenu:not(.collapsed),
.sidebar-nav .collapsing,
.sidebar-nav .collapse.show {
  background-color: transparent;
}

.sidebar-nav .collapse {
  background-color: transparent !important;
}

.sidebar-nav li a img.menu-icon,
.icon {
  width: 32px;
  height: 32px;
  padding: 8px;
  background: var(--black-color);
  border-radius: 54px;
  margin-right: 12px;
}



.page-title .icon {
  margin-right: 18px;
  width: 40px;
  height: 40px;
  padding: 10px;
}

.home-icon .icon {
  height: 56px;
  width: 56px;
  padding: 16px;
}



.projects-top-info span {
  padding: 0 8px;
}

.projects-top-info span:after {
  height: 10px;
  width: 1px;
  content: "";
  display: inline-block;
  position: relative;
  margin-left: 16px;
  background: #ccccc8;
}

.projects-top-info span:last-child::after {
  display: none;
}

/* prealoader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999999999999;
  height: 100vh;
  width: 100vw;
}

#status {
  width: 300px;
  height: 70px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: var(--logo);
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  text-align: center;
  background-size: 245px;
}

.lds-ring {
  position: relative;
  width: 80px;
  height: 80px;
  padding-top: 85px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  margin: 8px;
  border: 4px solid var(--brand-color);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--brand-color) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*  */
.guest #page-content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 0;
  border-radius: 16px;
  background: #fff;
  overflow: auto;
  margin: 12px;
  overflow: hidden;
  width: calc(100% - 24px);
  height: calc(100vh - 24px);
}

.guest #page-content-wrapper #content-page {
  height: 100vh;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.limit-text {
  color: var(--black-color);
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.keywords-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keywords-wrapper:empty {
  padding: 0;
}

#modal-domain-suggestions,
.emails-wrapper,
.keywords-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.emails-wrapper > span {
  flex: 0 0 100%;
}

.keywords-suggestions:empty {
  display: none;
}

.keywords-wrapper .keywords-clean,
.keywords-suggestions .keywordSuggestion,
.keywords-wrapper .keyword,
.email .email-item,
.keywords-suggestions .show-more-suggestions,
.domainSuggestionModal {
  text-align: center;
  background: #fff;
  border-radius: 64px;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  color: #282825;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.12px;
}

.domainSuggestionModal {
  display: flex;
  cursor: pointer;
}

..domainSuggestionModal:hover {
  color: var(--black-color);
}

.domainSuggestionModal img.domain-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.keywords-suggestions .show-more-suggestions {
  background: url(/www/images/chevron-right.svg) no-repeat right 0 center;
  border: 1px solid transparent;
  order: 99;
  cursor: pointer;
  padding: 12px 8px;
  padding-right: 24px;
}

.keywords-wrapper .keywords-clean {
  cursor: pointer;
  order: 999999;
  border: 1px solid transparent;
}

.email .email-item,
.keywords-wrapper .keyword {
  background: rgba(235, 249, 238, 1);
  color: var(--black-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.12px;
  display: flex;
  align-items: center;
  display: flex;
}

.email .email-item img.domain-icon,
.keywords-wrapper .keyword img.domain-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.email .email-item .email__icon,
.keywords-wrapper .keyword .keyword__icon {
  color: var(--black-color);
  margin-left: 10px;
  font-size: 14px;
  transform: translateY(1px);
  display: inline-block;
  cursor: pointer;
}

.keywords-suggestions .keywordSuggestion {
  color: #3c3d38;
  cursor: pointer;
  display: flex;
  gap: 10px;
}

.keywords-suggestions .keywordSuggestion img {
  width: 16px;
  height: 16px;
}

.keywords-suggestions .keywordSuggestion img.domain-icon {
  margin-right: 4px;
}

.domainSuggestionModal:hover,
.keywords-suggestions .keywordSuggestion:hover {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.4);
  color: var(--black-color);
}

.was-validated .new-keyword-input.form-control:valid {
  border-color: #ced4da;
  box-shadow: none;
}

.keywords-suggestions .keywordSuggestion span.keywordSuggestion__icon {
  color: var(--brand-color);
  padding-right: 4px;
  font-size: 18px;
  transform: translateY(2px);
  display: inline-block;
}

.keywords-wrapper .keyword .fa {
  margin-right: 0;
  cursor: pointer;
}

.keywords-choosen-ones {
  margin-top: 25px;
}

hr.hr-project {
  border: 2px dashed rgba(17, 17, 17, 0.4);
  background: transparent;
  opacity: 1;
  border-bottom: 0;
}

.keywords-limit {
  margin-left: 2px;
}

.custom-search .new-keyword-add {
  position: absolute;
  right: 10px;
  border-radius: 12px !important;
  z-index: 9999;
  transform: translateY(-50%);
  top: 50%;
  padding: 8px;
  font-weight: 400;
  text-transform: capitalize;
  height: 40px;
}

.custom-search input#new-keyword-input {
  padding-right: 60px;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f5f6f5;
  opacity: 1;
}

.custom-search .new-keyword-add:disabled {
  background: #ccccc8;
  border: none;
  color: rgba(17, 17, 17, 0.4);
}

.change_view_chart.full-width {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.change_view_chart.full-width li {
  flex: 1;
  text-align: center;
}

.change_view_chart_content .bg {
  border-radius: 24px;
  background: #f3f3f3;
  text-align: center;
  min-height: 40vh;
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.change_view_chart_content .bg a {
  margin-top: 23px;
}

.change_view_chart_content .bg h2 {
  margin: 0;
}

.change_view_chart_content .bg span {
  max-width: 501px;
}

.results_per_page {
  height: 41px;
}

.results_per_page,
.change_view_chart {
  background: #ececec;
  padding: 4px;
  border-radius: 12px;
  border-bottom: 1px solid #efefef;
  border-bottom: 0;
  display: flex;
  align-items: center;
  height: 41px;
}

.results_per_page li,
.change_view_chart li {
  border: none;
  float: left;
  height: 100%;
}

.results_per_page li a,
.change_view_chart li a {
  padding: 6px 16px;
  font-size: 13px;
  color: var(--black-color);
}

.results_per_page li a:focus,
.change_view_chart li a:active {
  outline: none;
}

.results_per_page li a:hover,
.change_view_chart li a:hover {
  border-color: transparent !important;
}

.results_per_page li a img,
.change_view_chart li a img {
  margin-right: 10px;
}

.results_per_page li a.expanded,
.change_view_chart li a.expanded {
  border-radius: 8px;
  background: #efefef;
  color: #7c7c7c !important;
  border: none !important;
}

.results_per_page li a.basic,
.change_view_chart li a.basic {
  border-radius: 8px;
  background: #efefef;
  color: #83837c !important;
  border: none !important;
}

.results_per_page li a.active,
.change_view_chart li a.active {
  background: #fff;
  color: var(--black-color) !important;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  border-radius: 8px;
  letter-spacing: -0.26px;
  border: none !important;
}

.change_view_chart li a:visited,
.results_per_page li a:visited {
  border: none !important;
}

@media (max-width: 768px) {
  .results_per_page,
  .change_view_chart {
    height: auto;
  }
  .results_per_page {
    width: 100%;
    height: auto;
  }
  .results_per_page li,
  .change_view_chart li {
    flex: 1;
    width: 100%;
  }
}

.nav-tabs .nav-item .nav-link:not(.active) {
  color: rgba(17, 17, 17, 0.6);
}

.nav-tabs .nav-link:focus-visible {
  border: none;
  outline: none;
}

.change_view_chart_content .tab-pane.container {
  padding: 25px 0 0 0 !important;
  margin: 0;
  width: 100vw !important;
  max-width: 100% !important;
}

.add_project_overlay,
.keywords_overlay {
  background: #fff;
  z-index: 99999;
  position: absolute;
  /* border-radius: 32px; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  display: none;
}

input:auto-fill {
  background-image: none !important;
  background-color: transparent !important;
}

.add_project_overlay .spinner-grow,
.keywords_overlay .spinner-grow {
  display: flex;
}

.add_project_overlay {
  display: flex;
  gap: 35px;
  text-align: center;
}

.add_project_overlay .spinner-border {
  display: inline-block;
  width: 7rem;
  height: 7rem;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 5px solid transparent;
  animation: spin 1s linear infinite;

  background: linear-gradient(white, white),
    conic-gradient(
      from 0.15turn,
      white,
      white,
      var(--brand-color),
      var(--brand-color)
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.add_project_row {
  position: relative;
  min-height: 350px;
  display: none;
}

.password-checking {
  padding: 0;
  margin: 15px 0;
}

.password-checking li {
  list-style: none;
  height: 20px;
  display: flex;
  align-items: center;
  background-image: url(/www/images/circle-check-count-no.svg);
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 30px;
  margin-bottom: 11px;
  background-size: 20px;
}

.password-checking li.checked {
  background-image: url(/www/images/circle-check-count.svg);
}

.no-project {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 !important;
    padding: 0 !important;
}

.no-project h2 {
  font-size: 20px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.4px;
}

.no-project > div {
  gap: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.no-project > div img {
  background: var(--black-color);
  padding: 20px;
  border-radius: 100%;
}

.no-project > div a img {
  width: auto;
  padding: 0;
  background: none;
}

.no-project > div .btn {
  margin-top: 16px;
}

@media (max-width: 425px) {
  input,
  input.w-50 {
    width: 100% !important;
  }
}

.tooltip.show,
.tooltip {
  z-index: 999999999999;
  opacity: 1;
}



.tooltip-inner {
  background-color: #3c3d38 !important;
  color: #fff;
  font-size: 11px;
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--black-color) !important;
  border: 1px solid var(--black-color);
  backdrop-filter: blur(8px);
  opacity: 1;
}

.tooltip .tooltip-arrow::before {
  border-top-color: #000 !important;
}



.tooltip.custom-tooltip .tooltip-inner {
  padding: 8px;
  border: 1px solid #c5c5c5;
  box-shadow: 0 0 25px #3e3e3e6b;
  border-radius: 16px;
  background-color: #fff !important;
  width: auto;
  margin-top: 10px;
  max-width: 500px;
}
.tooltip.custom-tooltip .tooltip-inner img {
  border-radius: 16px;
  background: #fff 
}

.tooltip.custom-tooltip .tooltip-arrow::before {
  display: none;
}

/* SELECT2 */

.select2 * {
  height: auto !important;
}
.select2-container--default .select2-selection--single {
  background-color: transparent !important;
  border: none !important;
}

 span.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  border: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50% !important;
  transform: translate(-50%, -50%);
}

.select2-container .select2-selection--single {
  height: auto;
}

.select2-container * {
  height: auto;
  line-height: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 16px !important;
  border-color: #ddd;
  border-style: solid;
  border-width: 1px;
  line-height: 21px !important;
  padding: 16px 25px 16px 16px !important;
  -webkit-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
  border-radius: 16px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid rgba(17, 17, 17, 0.4) !important;
  border-radius: 12px !important;
}

.modal#keywordChartModal .select2-container .select2-selection--single {
  height: auto;
}

.modal#keywordChartModal
  .select2-container--default
  .select2-selection--single {
  border: none;
  border-radius: 16px;
}

.modal#keywordChartModal
  #keywordChartContainer
  .change_view_chart_content
  .tab-pane
  > div:not(.table_scroll) {
  height: 350px;
}

.modal.modal-delete-project .modal-dialog {
  max-width: 375px;
}

.modal.modal-delete-project .modal-body {
  text-align: center;
  min-height: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.modal.modal-delete-project .delete-icon {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #ff3b30;
  border-radius: 100%;
}

.modal.modal-delete-project .modal-body p {
  padding: 0;
  margin: 0;
}

.modal.modal-delete-project .btn-transparent {
  border-radius: 48px;
  padding: 18px 24px;
  background: transparent;
  border: none;
}

.modal.modal-delete-project .btn-secondary {
  border-radius: 48px;
  padding: 18px 24px;
  background: rgba(17, 17, 17, 0.1);
  border: rgba(17, 17, 17, 0.1);
}

.modal.modal-delete-project .btn-secondary:hover {
  color: var(--black-color);
}

.select2-container--open .select2-dropdown--below {
  -webkit-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
  border-radius: 16px !important;
  margin-top: -1px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  z-index: 999999;
  border-top: 1px solid rgba(17, 17, 17, 0.1) !important;
  background: #fff;
  padding-top: 12px;
  margin-top: 8px;
}

.select2-search--dropdown {
  padding: 8px !important;
  border-bottom: 1px solid #dddddd;
}

.select2-results__option--selectable {
  padding-left: 20px !important;
}

.logo-rank {
  color: var(--black-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.28px;
}

.logo-rank > span {
  font-weight: 400;
  margin: 0 4px;
}

label.form-label:first-letter {
  text-transform: capitalize;
}

.form-label {
  margin-bottom: 12px;
}

.page-title {
  margin: 12px 0;
  height: 56px;
  align-items: center;
}

@media(max-width: 768px) {
    .page-title {
        height: auto;
        align-items: stretch;
    }
}



.page-title .title {
  margin: 0;
  padding: 0;
}

.page-title .page-title-right a.ellipsis {
  padding: 16px;
  margin-left: 8px;
}

.page-title .page-title-left span {
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.26px;
}

/* @media (min-height: 800px) {
    .modal-header .page-title-left {
       flex-direction: column !important;
       text-align: start !important;
       align-items: start !important;
       gap: 12px;
    }
} */

@media (max-width: 768px) {
  .page-title .page-title-right {
    margin-top: 8px;
  }
}

.bg-white-p24 {
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
  font-weight: 400;
  background: #fff;
  margin-bottom: 12px;
  padding: 24px;
  border-radius: 32px;
}

.bg-white-p24.transparent {
  background: transparent;
  padding: 0;
}

.bg-white-p24 .top-icon {
  margin-bottom: 12px;
}

.bg-white-p24 span {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.bg-white-p24 > .d-flex {
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  margin-right: 24px;
  padding-right: 24px;
  margin: 16px;
}

.bg-white-p24.margin > .d-flex {
  margin: 16px;
}

.bg-white-p24 > .d-flex:last-child {
  border: 0;
  /* margin: 0; */
  border: 0;
  justify-content: start;
  flex: 1;
  align-items: center;
  gap: 32px;
  /* padding: 0; */
}

.bg-white-p24 > .d-flex:last-child,
.bg-white-p24 > .d-flex:first-child {
  margin: 16px 0;
  padding: 0;
}

.bg-white-p24 .ranking {
  color: var(--black-color);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.13px;
}

.bg-white-p24 .pkt {
  color: #414141;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.32px;
}

.bg-white-p24 .pkt span {
  color: var(--black-color);
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.64px;
}

.bg-white-p24 .pkt img {
  margin-left: 8px;
  position: absolute;
}

.bg-white-p24 .visibility-score {
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
}

.bg-white-p24 .visibility-score span {
  font-size: 13px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -0.13px;
}

.bg-white-p24 .visibility-score span.down {
  color: #ff4500;
}

.bg-white-p24 .visibility-score span.up {
  color: #34c759;
}

.bg-white-p24 .mini-chart {
  width: 96px;
  height: 71px;
}

.icon-white {
  border-radius: 100%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  width: 16px;
  height: 16px;
  padding: 8px;
  box-sizing: content-box;
  object-fit: cover;
}

.icon-white.transparent {
  border: 1px solid transparent;
}

ul.dropdown-menu.ellipsis {
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #fff;
  box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(32px);
  padding: 8px;
  gap: 8px;
  margin-top: 9px !important;
}

ul.dropdown-menu.ellipsis button,
ul.dropdown-menu.ellipsis a {
  display: flex;
  min-width: 206px;
  gap: 12px;
  justify-content: flex-start;
  background-color: transparent;
}

ul.dropdown-menu.ellipsis button img,
ul.dropdown-menu.ellipsis a img {
  filter: invert(0);
}

ul.dropdown-menu.ellipsis.show {
  display: flex;
  flex-direction: column;
}

ul.dropdown-menu.ellipsis span {
  color: var(--black-color);
  font-size: 11px;
  opacity: 0.6;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.11px;
  margin-bottom: 4px;
  margin-left: 4px;
}

ul.dropdown-menu.ellipsis button,
ul.dropdown-menu.ellipsis a {
  border-radius: 16px;
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.13px;
  padding: 12px 8px;
  text-align: left;
  border: 0;
  height: unset;
}

ul.dropdown-menu.ellipsis button:hover,
ul.dropdown-menu.ellipsis a:hover {
  background-color: rgba(17, 17, 17, 0.1) !important;
}

.dropdown > a.ellipsis {
  border: 1px solid transparent;
}

.dropdown > a.ellipsis.show {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.2);
  border-radius: 100%;
}

.form-select {
  color: var(--black-color);
  padding: 10px 12px;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.26px;
  border-radius: 12px !important;
  border: 1px solid rgba(17, 17, 17, 0.2);
}

select.form-select.choose-data-range {
  background: url(/www/images/calendar-days.svg);
  background-repeat: no-repeat;
  background-position: 12px center;
  padding-left: 33px;
  cursor: pointer;
  height: 41px;
}

span.count_project {
  position: relative;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--brand-color);
  color: var(--button-color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  border-radius: 100%;
  margin-left: 14px;
  padding: 2px;
  box-sizing: content-box;
  text-align: center;
  margin-bottom: 10px;
}

.search-input {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  width: 202px !important;
  padding: 12px 12px 12px 33px;
  background: url(/www/images/magnifying-glass.svg);
  background-repeat: no-repeat;
  background-position: 12px center;
  min-width: 260px;
  max-height: 41px;
}

.pagination {
  display: flex;
  color: var(--black-color);
  justify-content: center;
  gap: 4px;
}

.pagination .page-link {
  font-size: 13px;
}


.pagination .page-link {
  border: 0;
  border: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--black-color);
}

.pagination .page-item.active .page-link {
  background-color: rgba(17, 17, 17, 0.1);
  color: var(--black-color);
  font-size: 13px;
}

.pagination li.page-item.disabled {
  opacity: 40%;
}

.pagination li.page-item.disabled a {
  background: unset;
}

.modal {
  z-index: 999999;
}


.modal .div-icon {
  width: 40px;
    height: 40px;
    background: #111;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
}

.modal .icon {
  width: 20px;
  height: 20px;
  padding: 0;
  background: unset;
  border-radius: 0;
  margin-right: 0;
}

.modal .modal-dialog {
  max-width: 768px;
}

.modal .modal-dialog .modal-header {
  padding: 24px;
  flex-direction: column;
  align-items: start;
}

.modal .modal-dialog .modal-header > div {
  display: flex;
  flex-direction: column;
}

.modal .modal-content {
  border-radius: 16px;
}

.modal .modal-body {
  min-height: calc(80vh - 100px);
  max-height: calc(80vh - 100px);
  overflow: auto;
  padding: 24px;
}
.modal .modal-footer .btn {
  height: 48px !important;
}

.modal .modal-footer {
  gap: 8px;
  padding: 20px 24px;
}

.modal .modal-footer .btn-primary {
  border-radius: 48px;
}

.modal .modal-footer .btn-secondary {
  border-radius: 48px;
  background: rgba(17, 17, 17, 0.1);
  border: rgba(17, 17, 17, 0.1);
  color: #000;
}

.modal .modal-footer .btn-secondary:hover {
  color: var(--black-color);
}

.modal .modal-header {
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}
.modal .modal-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.2);
}

.modal#keywordChartModal .modal-dialog {
  max-width: 1106px;
}

.modal-body .btn-close,
.modal-header .btn-close {
  position: absolute;
  top: 24px;
  padding: 0;
  margin: 0;
  right: 24px;
  opacity: 1;
}

a.advanced-settings {
  background-image: url(/www/images/chevron-up-rotated.svg);
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
  width: auto;
  padding-left: 0;
}

.advanced-settings.collapsed {
  background-image: url(/www/images/chevron-up.svg);
}

a.advanced-settings:focus,
a.advanced-settings:visited {
  color: #000;
}

.table-with-keyword-id {
  cursor: pointer;
}

.competition {
  border-radius: 32px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  padding: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--black-color);
  height: 56px;
}

.competition img {
  max-width: 16px;
  max-height: 16px;
}

.audit img {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

@media (max-width: 768px) {
  .audit img {
    border-radius: 12px;
  }
}

.audit span {
  color: rgba(17, 17, 17, 0.6);
  align-self: stretch;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.13px;
}

.chart-container {
  position: relative;
  height: 400px;
}

.chart-container,
.chart-container > .position-relative,
.chart-container .col-3,
.chart-container .bar {
  overflow: visible;
}

.chart-container .bar {
  width: 100%;
  background-color: transparent;
  border-radius: 10px;
  height: 400px;
  position: relative;
  overflow: visible;
}

.chart-container > .position-relative {
  display: flex;
  justify-content: space-between;
}

.chart-container > .position-relative > .col-3 {
  position: relative;
  padding: 0;
  width: calc(25% - 16px);
  position: relative;
  overflow: visible;
}

.chart-container .bar-inner {
  position: absolute;
  overflow: visible;
  bottom: 0;
  width: 100%;
  background-color: rgba(17, 17, 17, 0.05);
  height: 0;
  border-top: 2px solid var(--black-color);
  transition: height 3s ease-in-out;
  z-index: 9999;
}

.chart-container .bar.my-domains .bar-inner {
  background-color: rgba(0, 122, 255, 0.05);
}

.chart-container .bar-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  font-weight: bold;
  background-color: var(--black-color);
  color: white;
  padding: 2px 10px;
  border-radius: 8px;
  z-index: 9;
  opacity: 1;
}

.chart-container .bar.my-domains .bar-label {
  background-color: #007bff;
}

.chart-container .bar-name {
  gap: 12px;
  display: flex;
  position: absolute;
  left: 50%;
  align-items: center;
  transform: translate(-50%, 25px);
  color: #888;
}

.chart-container .bar-name img {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .seo_metrics .col {
    padding: 0 4px;
  }

  .chart-container .bar-name {
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
  }
  .chart-container .bar-name span {
    display: none;
  }
}

.chart-container .dotted-line {
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed #ccc;
  text-align: left;
  padding-left: 5px;
  font-size: 12px;
  color: #888;
}

.chart-container .dotted-line span {
  position: absolute;
  transform: translate(-38px, -11px);
}

.chart-container .dotted-line.optimal {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: repeating-linear-gradient(
    to right,
    #333 0,
    #333 10px,
    transparent 0px,
    transparent 20px
  );
  border-image-slice: 1;
}

.chart-container .dotted-line.optimal.szybkosc {
  top: unset;
}

.chart-container .optimal-label.szybkosc {
  top: unset;
}

.chart-container .optimal-label {
  position: absolute;
  top: 13%;
  left: 5px;
  font-size: 14px;
  z-index: 999;
  text-align: right;
  padding: 0;
}

.border-competition {
  border: 1px solid #e7e7e7;
  padding: 11px 24px !important;
}

.border-competition > div:first-child {
  border-bottom: 1px solid #e7e7e7;
  border-radius: 0;
}

.table-td-seo a {
  color: #1158d6;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.table-td-seo .desc-seo {
  color: #4f4f4f;
  font-family: Arial;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.5px;
  max-width: 723px;
}

.table-td-seo .desc-seo em {
  font-style: normal;
}

.table-td-seo .domain-seo {
  color: #333;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: flex;
  align-items: center;
}

.table-td-seo .domain-seo span {
  width: auto;
  color: #828282;
  margin-right: 0;
}

@media (max-width: 768px) {
  .kafelki > .col > img {
    width: 100%;
    height: auto;
    min-width: unset;
  }

  h1,
  h2 {
    font-size: 16px !important;
  }

  .row-keywords thead tr th:last-child,
  .row-keywords tbody tr td:last-child {
    width: auto;
    height: auto;
    padding: 14px 16px !important;
  }

  .table span {
    width: auto;
  }

  .table tr td,
  .table {
    border: none;
    border-radius: 0;
  }

  .table tr {
    border: 1px solid rgba(17, 17, 17, 0.1);
  }

  .table tr td {
    display: flex;
    justify-content: space-between;
    text-align: right;
  }

  .table tr td.table-td-seo {
    flex-direction: column;
    text-align: left !important;
  }

  table.table-seo td.lp::before {
    content: "Lp.";
  }

  table.table-seo td {
    justify-content: center;
  }

  table.table-seo td.arrow {
    display: none;
  }

  table.table-seo td.trend:before {
    margin-right: 0;
  }

  .modal#keywordChartModal .modal-dialog {
    margin: 4px;
  }

  .modal .modal-content {
    max-height: calc(100vh - 8px);
  }

  .modal .modal-body {
    min-height: unset;
    max-height: unset;
    overflow: auto;
  }
}

@media (max-width: 992px) {
  .mobile-before-none::before {
    display: none;
  }

  .mobile-none-border {
    border: none !important;
  }

  .mobile-margin-0 {
    margin: 0 !important;
  }

  .mobile-padding-0 {
    padding: 0 !important;
  }

  .border-top-bottom {
    border-top: 1px solid rgba(17, 17, 17, 0.1) !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1) !important;
    padding: 15px 0 !important;
    width: 100%;
    margin: 0 !important;
}
}

/* @media (min-resolution: 144dpi) {
    .kafelki>.col>img {
        min-width: 157px !important;
            object-fit: contain;
            height: 118px;
        }
} */

.blur {
  position: absolute;
  bottom: 0;
  height: 390px;
  background: rgba(17, 17, 17, 0.05);
  width: 100%;
  overflow: hidden;
  z-index: 9999;
  text-align: center;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;
  line-height: 0;
}

.blur:hover td {
  background: unset;
}

.blur td {
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: transparent;
  flex-direction: column;
}

.blur p {
  color: rgba(17, 17, 17, 0.8);
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.13px;
}

.blur .btn {
  padding: 18px 16px;
}

.blur td > img {
  max-width: unset !important;
  display: flex;
  width: 40px;
  margin: 0 auto;
  height: 40px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--black-color);
  border-radius: 100%;
}

.blur a img {
  max-width: unset !important;
}

@media (max-width: 768px) {
  .blur td {
    white-space: normal !important;
    text-align: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blur {
    margin-bottom: 0 !important;
    display: flex !important;
  }

  .blur-lorem {
    margin-bottom: 0 !important;
  }
}

.bootstrap-autocomplete.dropdown-menu {
  padding: 8px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
  background: rgba(255, 255, 255, 0.64) !important;
  box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(32px);
  gap: 4px;
}

.bootstrap-autocomplete.dropdown-menu.show {
  display: flex;
  flex-direction: column;
}

.bootstrap-autocomplete.dropdown-menu a {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.13px;
  padding: 12px;
  cursor: pointer;
  color: var(--black-color);
  border-radius: 16px;
  display: flex;
}

.bootstrap-autocomplete.dropdown-menu a strong {
  font-weight: 400;
}

.bootstrap-autocomplete.dropdown-menu a.active,
.bootstrap-autocomplete.dropdown-menu a:hover {
  background: rgba(17, 17, 17, 0.08);
}

.overlay .add_project_overlay {
  display: none;
}

.overlay.show .add_project_overlay {
  display: flex;
  position: relative;
  min-height: 30vh;
  background: transparent;
}

.overlay.show .overlay-hide-text {
  display: none;
}

img.favicon-search {
  width: 16px;
  margin-right: 12px;
}

td.ukryj .domain-mobile {
  display: none;
}

ul.modal-help {
  padding: 0;
  margin: 0;
}

ul.modal-help li {
  list-style: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  padding-bottom: 12px;
  padding-top: 12px;
  display: flex;
}

ul.modal-help li:first-child {
  padding-top: 0;
}

ul.modal-help li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

ul.modal-help li a {
  position: relative;
  padding: 12px;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  transition: background 0.2s ease;
  color: inherit;
  text-decoration: none;
}

ul.modal-help li a::after {
  content: "";
  background-image: url(/www/images/arrow-up-right-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

ul.modal-help li a:hover {
  background: rgba(17, 17, 17, 0.05);
  color: #050505;
}

ul.modal-help li a:hover::after {
  transform: rotate(45deg);
}


.modal#unlock_package .modal-content {
  border-radius: 32px;
}

.modal#unlock_package .modal-dialog{
  max-width: 1106px
}


.modal#unlock_package .modal-body h1 {
  font-size: 32px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.64px;
}

.modal#unlock_package .modal-body div.text{
  color: #414141
}


.modal#unlock_package .modal-body div.text a {
  color: #006EE6;
}



.modal#unlock_package .span-check {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.modal#unlock_package .span-check span {
  color: #414141 !important;
  font-weight: 100 !important;
  font-size: 13px !important;
  display: flex;
  align-items: center;
  margin: 4px;
}


.modal#unlock_package .span-check span:before {
  content: "";
  margin-right: 12px;
  color: var(--brand-color) !important;
  background: url(/www/images/Checkmark.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-color: var(--brand-color);
  border-radius: 100%;
  padding: 4px;
  display: inline-block;
}

body.brand-zenbox .modal#unlock_package .span-check span:before {
  content: "";
  color: var(--brand-color) !important;
  background: url(/www/images/Checkmark-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--brand-color);
  fill: #fff;
}


.modal#unlock_package .row#upgrade-btn-step1 .col:nth-child(1){
  background: url(/www/images/unlock-package-step1.jpg);
  background-size: cover;
  background-position: center;
}


.modal#unlock_package .row#upgrade-btn-step2 .col:nth-child(1){
  background: url(/www/images/c77d96c2b83f885a9721fcce08832cd71d9096b1.jpg);
  background-size: cover;
  background-position: center;
}
.was-validated .form-control:valid,
.was-validated .form-control:invalid {
  background: none;
}

.was-validated .no-validation {
    border-color: #ddd !important;
    box-shadow: none;
}


#content #main .kafelki.kafelki-min > .col {
  padding: 15px;
}

#content #main .kafelki.kafelki-min .domain_title {
  font-size: 15px !important;
  margin-bottom: 4px !important;
}

#content #main .kafelki.kafelki-min .domain_count,
#content #main .kafelki.kafelki-min .domain_description {
  margin-bottom: 5px !important;
}


#content #main .kafelki.kafelki-min > .col .opis-kafelki {
  padding-left: 0;
  margin-top: 0
}

#content #main .kafelki.kafelki-min .col .opis-kafelki .domain_title {
  padding-top: 0 !important;
}


.table-keywords>tbody>tr>td:first-child {
    max-width: 0;
}

@media (min-width: 1024px) {
  #content #main .kafelki.kafelki-min > .col {
    flex: 0 0 auto;
    width: calc(100% / 3 - 6px);
  }
}


@media (max-width: 768px) {
  td.ukryj > div {
    float: left;
  }

  td.ukryj:before {
    display: none;
  }

  td.ukryj .domain-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .width100 {
    width: 100% !important;
  }

  .modal#unlock_package .row{
    flex-direction: column;
    gap: 0 !important;
  }

  .modal#unlock_package .row .col:nth-child(1) {
    min-height: 200px;
    padding: 48px 24px !important;
    text-align: left;
  }

  .modal#unlock_package .row .col:nth-child(2) {
    min-height: auto;
    padding: 48px 24px !important;
    text-align: left;
  }
}

/* Klasa dodawana chwilowo przy duplikacie */
.keywords-wrapper .keyword.dupe-animate {
    animation: kwPulse 600ms ease;
}

@keyframes kwPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, .35);
        border-color: rgba(76, 175, 80, .85);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(76, 175, 80, .18);
        border-color: rgba(76, 175, 80, 1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
        border-color: rgba(0,0,0,0.08);
    }
}


