@font-face {
  font-family: 'DMSans-Regular';
  font-weight: 400;
  font-style: normal;
  src: local("DMSans-Regular"), url("../fonts/DMSans-Regular.woff2") format("woff2"), url("../fonts/DMSans-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'DMSans-Medium';
  font-weight: 500;
  font-style: normal;
  src: local("DMSans-Medium"), url("../fonts/DMSans-Medium.woff2") format("woff2"), url("../fonts/DMSans-Medium.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'DMSans-Bold';
  font-weight: 700;
  font-style: normal;
  src: local("DMSans-Bold"), url("../fonts/DMSans-Bold.woff2") format("woff2"), url("../fonts/DMSans-Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'Menlo-Regular';
  font-weight: 400;
  font-style: normal;
  src: local("Menlo-Regular"), url("../fonts/Menlo-Regular.woff2") format("woff2"), url("../fonts/Menlo-Regular.woff") format("woff");
  font-display: swap;
}

html {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  line-height: 1.15;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul[class] {
  list-style: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

img {
  display: block;
  object-fit: cover;
  max-width: 100%;
}

input {
  margin: 0;
  padding: 0;
  outline: none;
  background-clip: padding-box;
}

input[type=submit] {
  -webkit-appearance: none;
  cursor: pointer;
}

input,
button,
optgroup,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

.checkbox-wrap__check-box {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
}

.pagination-start,
.pagination-end, .pagination-prev, .pagination-next {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
}

.button-primary, .button-secondary, .integrations__title-wrap a, .integrations__search-btn, .integrations__bulk-btn, .integrations__select-btn, .influencersoft__accounts a, .logs__title-wrap a, .logs__search-btn, .logs a.logs__select-btn {
  display: inline-block;
  padding: 11px 23px;
  border: 1px solid #BBD2ED;
  color: #0C509E;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
  font-size: 14px;
  line-height: 18px;
  font-family: 'DMSans-Medium', sans-serif;
  border-radius: 7px;
  background-color: transparent;
  transition: color .3s, background-color .3s;
}

.button-primary:hover, .button-secondary:hover, .integrations__title-wrap a:hover, .integrations__search-btn:hover, .integrations__bulk-btn:hover, .integrations__select-btn:hover, .influencersoft__accounts a:hover, .logs__title-wrap a:hover, .logs__search-btn:hover, .logs a.logs__select-btn:hover {
  color: #0D1821;
  background-color: #F9FBFE;
}

body {
  font-family: 'DMSans-Regular', sans-serif;
}

input {
  margin: 0;
  padding: 0;
  outline: none;
  background-clip: padding-box;
}

input::placeholder {
  transition: opacity .3s;
  -moz-transition: opacity 0.3s;
}

input:focus::placeholder {
  opacity: 0;
}

input[type=submit] {
  -webkit-appearance: none;
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px #fff inset !important;
}

h2 {
  font-size: 29px;
  margin-bottom: 33px;
  font-family: 'DMSans-Bold', sans-serif;
  letter-spacing: -1px;
}

.narrow-container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.container {
  max-width: 1610px;
  padding: 0 15px;
  margin: 0 auto;
}

table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.checkbox-wrap {
  position: relative;
}

.checkbox-wrap label {
  cursor: pointer;
}

.checkbox-wrap__check-style {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #D5D8EB;
  cursor: pointer;
  border-radius: 4px;
  left: 0;
}

.checkbox-wrap__check-box:checked + .checkbox-wrap__check-style::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  position: absolute;
  background-color: #0C509E;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 31px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E7ECF0;
  transition: .3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 27px;
  width: 27px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .3s;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

input:checked + .slider {
  background-color: #0C509E;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0C509E;
}

input:checked + .slider:before {
  transform: translateX(21px);
}

.slider.round {
  border-radius: 16px;
}

.slider.round:before {
  border-radius: 50%;
}

.select-hidden {
  display: none;
  visibility: hidden;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: inherit;
  width: 100%;
  height: 100%;
}

.select-styled {
  padding: 12px 40px 11px 17px;
  position: relative;
  color: #8D989D;
  line-height: 18px;
}

.select-styled::after {
  position: absolute;
  content: '';
  background-image: url(../images/icons/angle-down-bk.svg);
  width: 10px;
  height: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  right: 15px;
  top: 50%;
  margin-top: -2px;
  transition: transform .3s;
}

.select-styled::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 24px;
  background-color: #DEDFE5;
  top: 9px;
  right: 38px;
}

.select-styled.active::after {
  transform: rotate(180deg);
}

.select-options {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #E4E9EB;
  border-radius: 7px;
}

.select-options li {
  margin: 0;
  padding: 12px 0 12px 17px;
  color: #8D989D;
}

.select-options li:hover {
  background: #ececec;
}

.select-options li[rel="hide"] {
  display: none;
}

.pagination {
  max-height: 42px;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  font-family: 'DMSans-Medium', sans-serif;
}

.pagination-items {
  font-family: 'DMSans-Regular', sans-serif;
  color: #000;
  margin-right: 25px;
}

.pagination-inner {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-column-gap: 3px;
}

.pagination-to-start,
.pagination-to-end {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-column-gap: 3px;
}

.pagination-to-start span,
.pagination-to-end span {
  transition: color .3s;
}

.pagination-to-start path,
.pagination-to-end path {
  transition: stroke .3s;
}

.pagination-to-start a,
.pagination-to-end a {
  transition: background-color .3s;
}

.pagination-start path {
  stroke: #0c509e;
}

.pagination-start div {
  margin-left: -2px;
}

.pagination-start:hover {
  color: #0D1821;
  background-color: #F9FBFE;
}

.pagination-start:hover path {
  stroke: #0D1821;
}

.pagination-start.first-page {
  cursor: default;
  color: #858B8E;
  border: 1px solid #E4E9EB;
}

.pagination-start.first-page path {
  stroke: #858b8e;
}

.pagination-start.first-page:hover {
  background-color: transparent;
  color: #858B8E;
}

.pagination-start,
.pagination-end {
  min-width: 42px;
  min-height: 42px;
  border-radius: 7px;
  border: 1px solid #BBD2ED;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-start svg,
.pagination-end svg {
  width: 11px;
  height: 10px;
}

.pagination-start div,
.pagination-end div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-prev {
  display: flex;
  align-items: center;
  position: relative;
  padding: 11px 16px 11px 18px;
  border-radius: 7px;
  background-color: transparent;
  color: #0C509E;
  border: 1px solid #BBD2ED;
  min-height: 42px;
}

.pagination-prev path {
  stroke: #0c509e;
}

.pagination-prev div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-prev svg {
  width: 7px;
  height: 10px;
}

.pagination-prev span {
  margin-left: 6px;
}

.pagination-prev:hover {
  color: #0D1821;
  background-color: #F9FBFE;
}

.pagination-prev:hover path {
  stroke: #0D1821;
}

.pagination-prev.first-page {
  cursor: default;
  color: #858B8E;
  border: 1px solid #E4E9EB;
}

.pagination-prev.first-page path {
  stroke: #858b8e;
}

.pagination-prev.first-page:hover {
  background-color: transparent;
  color: #858B8E;
}

.pagination-page {
  border: 1px solid #E4E9EB;
  border-radius: 7px;
  padding: 11px 10px 11px 15px;
  max-width: 70px;
}

.pagination-page input {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  color: #0D1821;
  width: 100%;
}

.pagination-page input::placeholder {
  color: #0D1821;
  font-size: 14px;
}

.pagination-next {
  padding: 11px 18px;
  border: 1px solid #BBD2ED;
  border-radius: 7px;
  display: flex;
  align-items: center;
  color: #0C509E;
  min-height: 42px;
}

.pagination-next path {
  stroke: #0c509e;
}

.pagination-next.last-page {
  cursor: default;
  color: #858B8E;
  border: 1px solid #E4E9EB;
}

.pagination-next.last-page path {
  stroke: #858b8e;
}

.pagination-next.last-page:hover {
  background-color: transparent;
  color: #858B8E;
}

.pagination-next.last-page:hover path {
  stroke: #858b8e;
}

.pagination-next div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pagination-next svg {
  width: 7px;
  height: 10px;
}

.pagination-next span {
  margin-right: 6px;
}

.pagination-next:hover {
  color: #0D1821;
  background-color: #F9FBFE;
}

.pagination-next:hover path {
  stroke: #0D1821;
}

.pagination-end {
  border: 1px solid #BBD2ED;
}

.pagination-end path {
  stroke: #0c509e;
}

.pagination-end.last-page {
  cursor: default;
  color: #858B8E;
  border: 1px solid #E4E9EB;
}

.pagination-end.last-page path {
  stroke: #858b8e;
}

.pagination-end.last-page:hover {
  background-color: transparent;
  color: #858B8E;
}

.pagination-end.last-page:hover path {
  stroke: #858b8e;
}

.pagination-end div {
  transform: rotate(180deg);
  margin-bottom: -1px;
  margin-right: -2px;
}

.pagination-end:hover {
  color: #0D1821;
  background-color: #F9FBFE;
}

.pagination-end:hover path {
  stroke: #0D1821;
}

.button-primary {
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  background-clip: padding-box;
}

.header {
  padding: 25px 0 24px;
  background-color: #181829;
  color: #fff;
  margin-bottom: 60px;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  margin-right: 30px;
}

.header__nav-logo {
  display: none;
  margin-bottom: 30px;
}

.header__list {
  display: grid;
  grid-template-columns: repeat(6, auto);
  grid-column-gap: 22px;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: 20px;
  font-family: 'DMSans-Bold', sans-serif;
}

.header__list a {
  position: relative;
  padding-bottom: 3px;
}

.header__list a::after {
  opacity: 0;
  position: absolute;
  content: '';
  width: 0;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: 0;
  transition: width .3s, opacity .3s;
}

.header__list a:hover::after {
  opacity: 1;
  width: 100%;
}

.header__burger-wrap {
  display: none;
}

.header__burger {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 10;
}

.header__burger span {
  position: absolute;
  background-color: #fff;
  left: 0;
  width: 100%;
  height: 2px;
  top: 9px;
  transition: all .3s;
}

.header__burger::before, .header__burger::after {
  transition: .3s;
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100%;
  height: 2px;
  left: 0;
}

.header__burger::before {
  top: 0;
}

.header__burger::after {
  bottom: 0;
}

.header__burger--active span {
  transition: all .3s;
  transform: translateX(200%);
  opacity: 0;
}

.header__burger--active.header__burger::before {
  top: 9px;
  transform: rotate(135deg);
}

.header__burger--active.header__burger::after {
  bottom: 9px;
  transform: rotate(-135deg);
}

.main {
  background-color: #F4F9FE;
}

.main__header {
  margin-bottom: 0;
}

.main__inner {
  display: grid;
  grid-template-columns: max-content auto;
  grid-template-rows: 1fr;
  grid-column-gap: 69px;
}

.main__left {
  padding-top: 76px;
  max-width: 573px;
  padding-bottom: 25px;
}

.main__text {
  color: #0D1821;
  font-size: 46px;
  line-height: 43px;
  font-family: 'DMSans-Bold', sans-serif;
  margin-bottom: 18px;
}

.main__text-bottom {
  color: #0D1821;
  font-size: 17px;
  line-height: 28px;
  font-family: 'DMSans-Medium', sans-serif;
  margin-bottom: 13px;
}

.main__list {
  counter-reset: item;
  margin-bottom: 36px;
}

.main__list li {
  display: block;
  margin-left: 1.7em;
  color: #5C6467;
  line-height: 34px;
}

.main__list li:before {
  content: counter(item) ". ";
  counter-increment: item;
  position: absolute;
  margin-left: -1.7em;
}

.main__links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-column-gap: 21px;
  margin-bottom: 53px;
}

.main__links a {
  display: block;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 20px;
  font-family: 'DMSans-Bold', sans-serif;
  color: #fff;
  border-radius: 8px;
}

.main__links-account {
  background-color: #E2230A;
}

.main__links-options {
  background-color: #0C509E;
}

.main__img {
  max-width: 573px;
  max-height: 342px;
  overflow: hidden;
  background-color: #F4F9FE;
}

.main__img img {
  width: 100%;
}

.main__right {
  width: max-content;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  grid-column-gap: 30px;
  position: relative;
  overflow: hidden;
}

.main__right:before {
  position: absolute;
  content: '';
  top: -1px;
  width: 100%;
  height: 21vh;
  background: linear-gradient(180deg, #f4f9fe 0%, rgba(244, 249, 254, 0) 100%);
  z-index: 10;
}

.main__marquee-wrap {
  height: calc(100vh - 106px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.main__marquee {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content;
  grid-row-gap: 30px;
  justify-content: center;
}

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

.main__marquee .slide {
  border-radius: 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  line-height: 1;
  width: 110px;
  height: 110px;
}

.app-directory {
  background-color: #F4F9FE;
  min-height: calc(100vh - 106px);
  padding: 60px 0 60px;
}

.app-directory__filter {
  margin-bottom: 30px;
}

.app-directory__filter input {
  border: 1px solid #E4E9EB;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
}

.app-directory__header {
  margin-bottom: 0;
}

.app-directory__inner {
  height: 100%;
}

.app-directory__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}

.app-directory__item {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #E4E9EB;
  border-radius: 10px;
  padding: 37px 27px 36px 29px;
  min-height: 330px;
  transition: all .5s;
  will-change: transform;
}

.app-directory__item:hover {
  box-shadow: 2px 2px 24px rgba(3, 26, 52, 0.08);
}

.app-directory__item:hover .app-directory__item-content {
  transform: translate3d(0, 0, 0);
}

.app-directory__item:hover .app-directory__item-popup {
  opacity: 1;
}

.app-directory__item p {
  color: #5C6467;
  font-family: 'DMSans-Regular', sans-serif;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 3px;
}

.app-directory__item-content {
  transform: translate3d(0, 21px, 0);
  transition: all ease-in-out .3s;
}

.app-directory__item-app {
  margin-bottom: 12px;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.app-directory__item-app img {
  object-fit: contain;
}

.app-directory__item-name {
  font-family: 'DMSans-Medium', sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.app-directory__item-rating {
  display: flex;
  margin-bottom: 13px;
  margin-top: 12px;
}

.app-directory__popup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-directory__item-popup {
  position: absolute;
  opacity: 0;
  bottom: 36px;
  min-height: 42px;
  transition: all .3s;
}

.app-directory__item-popup a {
  position: relative;
}

.app-directory__item-popup a:nth-child(1) {
  font-size: 14px;
  line-height: 19px;
  font-family: 'DMSans-Medium', sans-serif;
  padding-right: 27px;
  margin-right: 35px;
}

.app-directory__item-popup a:nth-child(1):after {
  position: absolute;
  content: '';
  background-image: url(../images/icons/login.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 16px;
  height: 15px;
  right: 0;
  top: 2px;
}

.app-directory__item-popup a:nth-child(2) {
  font-size: 14px;
  line-height: 19px;
  font-family: 'DMSans-Bold', sans-serif;
  background-color: #0C509E;
  color: #fff;
  padding: 11px 25px 12px 37px;
  border-radius: 6px;
  transition: background-color .3s;
}

.app-directory__item-popup a:nth-child(2):hover {
  background-color: #003876;
}

.app-directory__item-popup a:nth-child(2):before {
  position: absolute;
  content: '';
  width: 10px;
  height: 13px;
  background-image: url(../images/icons/download.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  left: 23px;
  top: 50%;
  transform: translateY(-50%);
}

.activity {
  padding-bottom: 50px;
}

.activity__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.activity__title {
  margin-bottom: 0;
}

.activity__main {
  color: #0D1821;
  display: grid;
  grid-template-columns: auto minmax(auto, 590px);
  border: 1px solid #DEE3F2;
  border-radius: 10px;
  box-shadow: 2px 2px 14px rgba(9, 33, 41, 0.02);
}

.activity__main-left {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.activity__left-top {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: 69px;
  align-items: center;
  justify-content: space-between;
  background-color: #F9FBFE;
  padding: 0 25px 0 29px;
  border-bottom: 1px solid #DEE3F2;
  border-right: 1px solid #DEE3F2;
  border-radius: 10px 0 0 0;
}

.activity__left-integration {
  font-size: 18px;
  display: flex;
  padding: 10px 0;
  margin-right: 10px;
}

.activity__left-integration span:nth-child(1) {
  margin-right: 10px;
  width: 112px;
  flex-shrink: 0;
}

.activity__left-integration span:nth-child(2) {
  font-family: 'DMSans-Bold', sans-serif;
}

.activity__left-timing {
  padding: 10px 0;
}

.activity__left-timing span {
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  font-family: 'DMSans-Medium', sans-serif;
  min-width: 81px;
}

.activity__left-timing time {
  font-size: 15px;
  line-height: 17px;
  color: #5C6467;
}

.activity span.activity__start-time {
  font-size: 15px;
  line-height: 17px;
  color: #5C6467;
  font-family: 'DMSans-Regular', sans-serif;
}

.activity__left-bottom {
  padding: 26px 26px 10px 30px;
  border-right: 1px solid #DEE3F2;
  height: 100%;
}

.activity__left-bottom span {
  display: block;
  color: #0D1821;
  font-size: 15px;
  line-height: 20px;
  font-family: 'DMSans-Medium', sans-serif;
  margin-bottom: 10px;
}

.activity__bottom-posted {
  background-color: #F9FBFE;
  border: 1px solid #DEE3F2;
  border-radius: 8px;
  padding: 15px 15px 16px 23px;
}

.activity__bottom-posted a {
  color: #0000FF;
}

.activity__main-right {
  width: 100%;
}

.activity__right-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 69px;
  background-color: #F9FBFE;
  min-height: 70px;
  border-top-right-radius: 10px;
  border-bottom: 1px solid #DEE3F2;
}

.activity__right-code {
  padding: 0 15px 0 24px;
  display: flex;
  align-items: center;
  border-right: 1px solid #DEE3F2;
}

.activity__right-code span:nth-child(1) {
  font-size: 18px;
  line-height: 24px;
  margin-right: 22px;
}

.activity__right-code span:nth-child(2) {
  font-size: 14px;
  line-height: 18px;
  font-family: 'DMSans-Medium', sans-serif;
  background-color: #60B219;
  border-radius: 7px;
  color: #fff;
  padding: 9px 19px;
}

.activity__right-message {
  padding: 0 10px 0 29px;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
}

.activity__right-message span:nth-child(1) {
  margin-right: 12px;
}

.activity__right-message span:nth-child(2) {
  font-family: 'DMSans-Bold', sans-serif;
  text-transform: uppercase;
}

.activity__right-bottom {
  padding: 26px 26px 40px 25px;
}

.activity__right-posted {
  display: block;
  font-size: 15px;
  line-height: 20px;
  font-family: 'DMSans-Medium', sans-serif;
  margin-bottom: 10px;
}

.activity__right-inner {
  background-color: #F9FBFE;
  padding: 17px 28px 14px 25px;
  border: 1px solid #DEE3F2;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  color: #008000;
  font-size: 14px;
  line-height: 21px;
  font-family: 'Menlo-Regular', sans-serif;
  max-width: 472px;
}

.activity__right-inner ul {
  list-style: none;
  padding-left: 15px;
}

.registration__form {
  position: relative;
}

.registration__user-photo {
  position: absolute;
  top: 30px;
  right: -185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
}

.registration__user-name {
  display: flex;
  gap: 15px;
}

.registration__user-name label {
  margin-bottom: 0 !important;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.registration,
.login {
  background-color: #F4F9FE;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.registration__inner,
.login__inner {
  display: flex;
  flex-direction: column;
  max-width: 430px;
  padding: 20px 10px;
  width: 100%;
  align-items: center;
}

.registration__logo,
.login__logo {
  margin-bottom: 43px;
}

.registration p,
.login p {
  font-size: 29px;
  line-height: 32px;
  font-family: 'DMSans-Bold', sans-serif;
  text-align: center;
  margin-bottom: 49px;
}

.registration label,
.login label {
  font-family: 'DMSans-Medium', sans-serif;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
}

.registration__form,
.login__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.registration__input,
.login__input {
  margin: 0;
  padding: 18px 18px 17px 18px;
  border: 1px solid #DEE3F2;
  border-radius: 6px;
  font-family: 'DMSans-Regular', sans-serif;
  font-size: 15px;
  color: #858B8E;
  outline: none;
  margin-bottom: 15px;
  background-color: #fff;
  width: 100%;
  background-clip: padding-box;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration__input::placeholder,
.login__input::placeholder {
  line-height: 20px;
}

.registration__input[type="password"],
.login__input[type="password"] {
  padding: 18px 50px 17px 18px;
}

.registration__password-wrap,
.login__password-wrap {
  position: relative;
}

.registration__password-view,
.login__password-view {
  position: absolute;
  top: 22px;
  right: 20px;
  display: inline-block;
  width: 17px;
  height: 12px;
  background: url(../images/icons/visible-pass.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.registration__btn,
.login__btn {
  cursor: pointer;
  -webkit-appearance: none;
  background-color: #034EA1;
  color: #fff;
  font-size: 17px;
  font-family: 'DMSans-Bold', sans-serif;
  margin-bottom: 25px;
  transition: background-color .3s;
  border: none;
  margin-top: 5px;
}

.registration__btn:hover,
.login__btn:hover {
  background-color: #003876;
}

.registration__powered,
.login__powered {
  font-family: 'DMSans-Regular', sans-serif;
}

.registration__powered span,
.login__powered span {
  color: #5C6467;
}

.registration__powered a,
.login__powered a {
  font-family: 'DMSans-Medium', sans-serif;
  color: #034EA1;
}

.registration__already-registered,
.login__no-account {
  font-size: 15px;
  font-family: 'DMSans-Regular', sans-serif;
  margin-bottom: 93px;
  align-self: flex-start;
}

.registration__already-registered span,
.login__no-account span {
  color: #5C6467;
}

.registration__already-registered a,
.login__no-account a {
  font-family: 'DMSans-Medium', sans-serif;
  color: #034EA1;
}

.login__forgot {
  align-self: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
}

.login__forgot span {
  color: #5C6467;
}

.login__forgot a {
  color: #0D1821;
}

.login__remember {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #5C6467;
  margin-bottom: 15px;
}

.login__remember label {
  padding-left: 34px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  font-family: 'DMSans-Regular', sans-serif;
}

.login__check-style {
  width: 22px;
  height: 22px;
}

.integrations {
  font-size: 14px;
  padding-bottom: 50px;
}

.integrations__title {
  margin-bottom: 0;
  margin-right: 19px;
}

.integrations__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 42px 42px;
  grid-row-gap: 30px;
  margin-bottom: 30px;
  align-items: center;
}

.integrations__title-wrap {
  display: flex;
  align-items: center;
}

.integrations__search {
  justify-self: end;
}

.integrations__search-form {
  display: flex;
}

.integrations__search-input, .integrations__bulk-input {
  max-height: 42px;
  padding: 12px 15px;
  border: 1px solid #E4E9EB;
  border-radius: 7px;
  max-width: 236px;
  width: 100%;
  margin-right: 4px;
}

.integrations__search-input::placeholder, .integrations__bulk-input::placeholder {
  color: #8D989D;
  line-height: 18px;
}

.integrations__select-wrap {
  display: grid;
  grid-template-columns: auto 83px;
  grid-column-gap: 5px;
  align-items: center;
  justify-content: start;
}

.integrations__select-inner {
  min-width: 195px;
  width: 100%;
  border: 1px solid #DEE3F2;
  border-radius: 7px;
}

.integrations__top-items {
  justify-self: end;
}

.integrations__table {
  margin-bottom: 30px;
}

.integrations__table .checkbox-wrap {
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

.integrations__table td {
  word-wrap: break-word;
  font-size: 14px;
  border: solid 1px #E9ECF4;
  border-style: none solid solid none;
}

.integrations__table tr:first-child td:first-child {
  border-top-left-radius: 10px;
}

.integrations__table tr:first-child td:last-child {
  border-top-right-radius: 10px;
}

.integrations__table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.integrations__table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.integrations__table tr:first-child td {
  border-top-style: solid;
}

.integrations__table tr td:first-child {
  border-left-style: solid;
}

.integrations__table tr:first-child {
  background-color: #F9FBFE;
  font-family: 'DMSans-Medium', sans-serif;
}

.integrations__table tr:first-child td {
  font-size: 15px;
  padding: 21px 0 21px 19px;
}

.integrations__table tr:first-child td:nth-child(1) {
  width: 50px;
  padding: 0;
}

.integrations__table tr:first-child td:nth-child(5) {
  position: relative;
}

.integrations__table tr:first-child td:nth-child(5)::before {
  background-image: none;
}

.integrations__table td {
  padding: 20px 0 20px 19px;
}

.integrations__table td:nth-child(1) {
  width: 50px;
  padding: 0;
}

.integrations__table td:nth-child(2) {
  color: #0C509E;
  width: calc(145px + (255 - 145) * ((100vw - 320px) / (1920 - 320)));
  font-family: 'DMSans-Medium', sans-serif;
}

.integrations__table td:nth-child(3) {
  width: calc(160px + (170 - 160) * ((100vw - 320px) / (1920 - 320)));
}

.integrations__table td:nth-child(3) img {
  max-width: 40px;
  max-height: 40px;
}

.integrations__table td:nth-child(3) div {
  display: grid;
  grid-template-columns: max-content auto;
  grid-column-gap: 10px;
  align-items: center;
}

.integrations__table td:nth-child(4) {
  width: calc(110px + (150 - 110) * ((100vw - 320px) / (1920 - 320)));
}

.integrations__table td:nth-child(5) {
  width: calc(165px + (215 - 165) * ((100vw - 320px) / (1920 - 320)));
}

.integrations__table td:nth-child(5) img {
  max-width: 40px;
  max-height: 40px;
}

.integrations__table td:nth-child(5) div {
  display: grid;
  grid-template-columns: max-content auto;
  grid-column-gap: 10px;
  align-items: center;
}

.integrations__table td:nth-child(6) {
  width: calc(170px + (290 - 170) * ((100vw - 320px) / (1920 - 320)));
}

.integrations__table td:nth-child(7) {
  width: calc(120px + (145 - 120) * ((100vw - 320px) / (1920 - 320)));
}

.integrations__table td:nth-child(8) {
  width: calc(80px + (110 - 80) * ((100vw - 320px) / (1920 - 320)));
}

.integrations__name-edit {
  font-family: 'DMSans-Regular', sans-serif;
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.integrations__name-edit span {
  margin: 0 3px;
}

.integrations__name-edit a {
  transition: color .3s;
}

.integrations__name-edit a:hover {
  color: #0D1821;
}

.integrations__bulk-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.integrations__bulk-search form {
  display: flex;
}

.integrations__bulk-input {
  max-width: 195px;
  width: 100%;
  flex-shrink: 0;
}

.account {
  padding-bottom: 50px;
}

.account__content {
  display: grid;
  grid-template-columns: minmax(auto, 230px) auto;
  grid-column-gap: 30px;
  grid-template-rows: auto;
  align-items: center;
}

.account__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 36px rgba(9, 33, 41, 0.02);
  padding: 52px 43px 44px 43px;
  border: 1px solid #DEE3F2;
  border-radius: 10px;
  min-height: 282px;
}

.account__left span {
  font-size: 18px;
  line-height: 24px;
  font-family: 'DMSans-Medium', sans-serif;
}

.account__left-avatar {
  margin-bottom: 18px;
}

.account__right {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  grid-row-gap: 20px;
  box-shadow: 0 3px 36px rgba(9, 33, 41, 0.02);
  padding: 51px 30px 50px 30px;
  border: 1px solid #DEE3F2;
  border-radius: 10px;
}

.account__right-item {
  display: grid;
  grid-template-columns: 73px auto;
  grid-template-rows: auto;
  align-items: center;
  grid-column-gap: 24px;
  font-size: 15px;
  line-height: 20px;
}

.account__right-item span:nth-child(1) {
  font-family: 'DMSans-Medium', sans-serif;
}

.account__right-item span:nth-child(2) {
  padding: 14px 20px 13px 20px;
  background-color: #F3F8FD;
  display: flex;
  align-items: center;
  border-radius: 6px;
  color: #858B8E;
}

.integrations-upd {
  padding-bottom: 50px;
}

.integrations-upd__top {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 30px;
  max-width: 680px;
}

.integrations-upd__name input {
  padding: 10px 15px;
  border: 1px solid #DEE3F2;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  color: #0D1821;
}

.integrations-upd__name input::placeholder {
  font-family: 'DMSans-Medium', sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.integrations-upd__top-selects {
  display: grid;
  grid-template-columns: minmax(auto, 680px) 49px minmax(auto, 830px);
  grid-column-gap: 9px;
  align-items: center;
  grid-template-rows: auto;
  margin-bottom: 37px;
}

.integrations-upd__main {
  display: grid;
  grid-template-columns: minmax(auto, 680px) minmax(auto, 830px);
  grid-column-gap: 67px;
}

.integrations-upd__trigger-top, .integrations-upd__action-top {
  display: flex;
  align-items: center;
  font-size: 17px;
  line-height: 22px;
  font-family: 'DMSans-Medium', sans-serif;
  margin-bottom: 18px;
}

.integrations-upd__trigger-top span:nth-child(1), .integrations-upd__action-top span:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid #23282D;
  border-radius: 50%;
  margin-right: 11px;
}

.integrations-upd__trigger-selects, .integrations-upd__action-selects {
  background-color: #F4F9FE;
  border: 1px solid #DEE3F2;
  border-radius: 6px;
  padding: 14px 20px 13px;
  font-size: 15px;
}

.integrations-upd__trigger-selects .select-styled, .integrations-upd__action-selects .select-styled {
  font-size: 15px;
}

.integrations-upd__select-inner {
  display: grid;
  grid-template-columns: minmax(155px, 225px) auto;
  grid-template-rows: auto auto;
  align-items: center;
  grid-row-gap: 9px;
  line-height: 20px;
  font-size: 15px;
}

.integrations-upd__select-inner span {
  color: #5C6467;
}

.integrations-upd__select-inner .select-styled {
  background-color: #fff;
  border: 1px solid #DEDFE5;
  border-radius: 6px;
  color: #0D1821;
  min-height: 45px;
}

.integrations-upd__select-inner--first .select-styled:after {
  background-image: url(../images/icons/angle-down-fff.svg);
}

.integrations-upd__trigger-selects .integrations-upd__select-inner--first .select-styled {
  background-color: #0C509E;
  border: 1px solid #1B5884;
  color: #fff;
}

.integrations-upd__action-selects .integrations-upd__select-inner--first .select-styled {
  background-color: #60B219;
  border: 1px solid #539B15;
  color: #fff;
}

.integrations-upd__drag {
  background-color: #F4F9FE;
  border: 1px solid #DEE3F2;
  border-radius: 6px;
  padding: 22px 18px 20px;
}

.integrations-upd__drag-top {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.integrations-upd__drag-top img {
  margin-right: 14px;
}

.integrations-upd__drag-top span {
  font-size: 17px;
  line-height: 22px;
  color: #0D1821;
  font-family: 'DMSans-Medium', sans-serif;
}

.integrations-upd__drag-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(12, auto);
  grid-column-gap: 8px;
  grid-row-gap: 7px;
}

.integrations-upd__drag-main li {
  text-align: center;
  padding: 15px 0;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  cursor: grab;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow .3s;
}

.integrations-upd__drag-main li::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 16px;
  background-image: url(../images/icons/circles.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .3s;
}

.integrations-upd__drag-main li:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.13);
}

.integrations-upd__drag-main li:hover::after {
  opacity: 1;
}

.integrations-upd__center div {
  width: 49px;
  height: 49px;
  background-color: #F4F9FE;
  border: 1px solid #DEE3F2;
  border-radius: 6px;
  background-image: url(../images/icons/next.svg);
  background-repeat: no-repeat;
  background-position: 52% 50%;
}

.integrations-upd__right {
  color: #0D1821;
}

.integrations-upd__action-selects {
  background-color: #EBF8E1;
  border-color: #DFE5DE;
}

.integrations-upd__actions {
  background-color: #EBF8E1;
  border-radius: 6px;
  padding: 19px 18px 20px;
  border: 1px solid #DFE5DE;
}

.integrations-upd__actions-top {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-row-gap: 9px;
  margin-bottom: 21px;
  color: #0D1821;
}

.integrations-upd__actions-top .select-styled {
  font-size: 15px;
}

.integrations-upd__actions-top-inner {
  display: grid;
  grid-template-columns: 255px minmax(auto, 530px);
  align-items: center;
  grid-column-gap: 10px;
}

.integrations-upd__actions-top-inner span {
  font-size: 17px;
  line-height: 22px;
  font-family: 'DMSans-Medium', sans-serif;
}

.integrations-upd__actions-inner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.integrations-upd__actions-inner img {
  max-height: 40px;
  margin-right: 14px;
}

.integrations-upd__accounts-select {
  background-color: #fff;
  width: 100%;
  border: 1px solid #DFE5DE;
  border-radius: 6px;
}

.integrations-upd__accounts-select .select-styled {
  width: 100%;
  line-height: 20px;
  padding-top: 13px;
  color: #0D1821;
}

.integrations-upd__accounts-select .select-styled:before {
  top: 11px;
}

.integrations-upd__accounts-select .select-styled::after {
  top: 50%;
  margin-top: -3px;
}

.integrations-upd__actions-selects {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #DFE5DE;
  border-radius: 6px;
  margin-bottom: 23px;
}

.integrations-upd__actions-selects .select:first-child .select-styled {
  border: none;
  line-height: 18px;
}

.integrations-upd__actions-selects .select-styled {
  font-family: 'DMSans-Medium', sans-serif;
  color: #0D1821;
  border-left: 1px solid #DFE5DE;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.integrations-upd__actions-selects .select-styled::before {
  display: none;
}

.integrations-upd__actions-selects .select-styled::after {
  background-image: url(../images/icons/triangle-down.svg);
  width: 7px;
  height: 5px;
  top: 50%;
  margin-top: -2px;
}

.integrations-upd__fields {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(8, auto);
  grid-row-gap: 7px;
}

.integrations-upd__fields-name {
  display: block;
  margin-bottom: 21px;
  font-size: 17px;
  line-height: 22px;
  font-family: 'DMSans-Medium', sans-serif;
}

.integrations-upd__fields-row {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: center;
  background-color: #BCE090;
  padding: 3px 3px 3px 20px;
  border-radius: 6px;
}

.integrations-upd__row-name {
  font-size: 14px;
  line-height: 18px;
  font-family: 'DMSans-Medium', sans-serif;
}

.integrations-upd__field {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 3px;
  padding: 2px;
  border: 1px dashed #698942;
  border-radius: 5px;
  background-color: #B6D98C;
  min-height: 54px;
}

.integrations-upd__field-item {
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 12px;
  line-height: 16px;
  font-family: 'DMSans-Medium', sans-serif;
  text-transform: uppercase;
  position: relative;
  display: grid;
  grid-template-columns: auto max-content;
  justify-content: space-between;
}

.integrations-upd__field-item a {
  transition: opacity .3s;
  background-image: url(../images/icons/close.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
}

.influencersoft {
  padding-bottom: 50px;
}

.influencersoft__instructions {
  background-color: #F4F9FE;
  border-radius: 10px;
  padding: 29px 25px;
  margin-bottom: 40px;
}

.influencersoft__instructions-inner {
  padding-left: 24px;
  border-left: 3px solid #FAB731;
}

.influencersoft__instructions-inner ol {
  counter-reset: item;
}

.influencersoft__instructions-inner li {
  display: block;
  margin-left: 1.7em;
  font-size: 15px;
  margin-top: 15px;
  line-height: 1;
}

.influencersoft__instructions-inner li a {
  color: #0C509E;
  font-family: 'DMSans-Medium', sans-serif;
}

.influencersoft__instructions-inner li:before {
  content: counter(item) ". ";
  counter-increment: item;
  position: absolute;
  margin-left: -1.7em;
}

.influencersoft__form {
  max-width: 602px;
  margin-bottom: 50px;
}

.influencersoft__form form {
  display: grid;
  grid-template-columns: minmax(140px, 161px) auto;
  grid-template-rows: repeat(5, auto);
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  align-items: center;
}

.influencersoft__form input:checked + .slider {
  background-color: #60B219;
}

.influencersoft__form-label {
  font-size: 15px;
  font-family: 'DMSans-Medium', sans-serif;
  color: #0D1821;
  line-height: 20px;
}

.influencersoft__form-input {
  padding: 18px 18px 17px 18px;
  border: 1px solid #DEDFE5;
  border-radius: 6px;
  width: 100%;
}

.influencersoft__form-input::placeholder {
  font-size: 15px;
  line-height: 20px;
  color: #858B8E;
}

.influencersoft__form-btn {
  margin-top: 20px;
  background-color: #0C509E;
  border-radius: 8px;
  border: none;
  color: #fff;
  min-height: 52px;
}

.influencersoft__accounts {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: auto auto;
  grid-row-gap: 17px;
  grid-column-gap: 29px;
  align-items: center;
  margin-bottom: 25px;
}

.influencersoft__accounts h2 {
  margin-bottom: 0;
}

.influencersoft__accounts span {
  color: #5C6467;
  font-size: 15px;
  line-height: 20px;
}

.influencersoft__accounts-table {
  line-height: 20px;
}

.influencersoft__accounts-table .checkbox-wrap {
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

.influencersoft__accounts-table .checkbox-wrap__check-style {
  border: 1px solid #D0D6E5;
  background-color: transparent;
}

.influencersoft__accounts-table .checkbox-wrap__check-box:checked + .checkbox-wrap__check-style::before {
  background-color: #fff;
}

.influencersoft__accounts-table tr:first-child td:first-child {
  border-top-left-radius: 10px;
}

.influencersoft__accounts-table tr:first-child td:last-child {
  border-top-right-radius: 10px;
}

.influencersoft__accounts-table tr:first-child {
  background-color: #F9FBFE;
  color: #0D1821;
  font-family: 'DMSans-Medium', sans-serif;
}

.influencersoft__accounts-table tr:first-child td {
  font-size: 15px;
  padding: 20px 0 20px 18px;
  border-left: 1px solid #E9ECF4;
}

.influencersoft__accounts-table tr:first-child td:nth-child(1) {
  padding: 0;
  width: 50px;
  border-left: none;
}

.influencersoft__accounts-table tr:first-child td:nth-child(2) {
  width: calc(135px + (279 - 135) * ((100vw - 320px) / (1920 - 320)));
}

.influencersoft__accounts-table tr:first-child td:nth-child(3) {
  width: calc(285px + (388 - 285) * ((100vw - 320px) / (1920 - 320)));
}

.influencersoft__accounts-table tr:first-child td:nth-child(4) {
  width: calc(180px + (290 - 180) * ((100vw - 320px) / (1920 - 320)));
}

.influencersoft__accounts-table tr:first-child td:nth-child(5) {
  width: calc(130px + (208 - 130) * ((100vw - 320px) / (1920 - 320)));
}

.influencersoft__accounts-table tr:first-child td:nth-child(6) {
  width: calc(80px + (175 - 80) * ((100vw - 320px) / (1920 - 320)));
}

.influencersoft__no-acc {
  box-shadow: 2px 2px 14px rgba(9, 33, 41, 0.02);
  border: 1px solid #DEE3F2;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 29px 25px 28px;
  font-family: 'DMSans-Medium', sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.influencersoft__no-acc a {
  color: #0C509E;
}

.logs {
  padding-bottom: 50px;
}

.logs .pagination-prev,
.logs .pagination-next {
  width: 42px;
  height: 42px;
  padding: 11px 16px;
}

.logs__top {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: auto auto;
  grid-row-gap: 30px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.logs__title-wrap {
  display: flex;
  align-items: center;
}

.logs__title-wrap h2 {
  margin-bottom: 0;
  margin-right: 24px;
}

.logs__title-wrap a + a {
  margin-left: 5px;
}

.logs__search-form {
  display: flex;
}

.logs__search-input {
  max-height: 42px;
  padding: 12px 15px;
  border: 1px solid #E4E9EB;
  border-radius: 7px;
  width: 100%;
  margin-right: 4px;
}

.logs__search-input::placeholder {
  color: #8D989D;
  line-height: 20px;
}

.logs__select-wrap {
  display: grid;
  grid-template-columns: auto max-content;
  grid-template-rows: 42px;
  align-items: center;
  grid-column-gap: 5px;
}

.logs__select-inner {
  border: 1px solid #DEE3F2;
  border-radius: 7px;
}

.logs__table {
  margin-bottom: 30px;
}

.logs__table .checkbox-wrap {
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

.logs__table td {
  border: solid 1px #E9ECF4;
  border-style: none solid solid none;
  font-size: 14px;
  color: #5C6467;
}

.logs__table tr:first-child td:first-child {
  border-top-left-radius: 10px;
}

.logs__table tr:first-child td:first-child .checkbox-wrap__check-style {
  border-color: #5887BC;
}

.logs__table tr:first-child td:first-child .checkbox-wrap__check-box:checked + .checkbox-wrap__check-style::before {
  background-color: #fff;
}

.logs__table tr:first-child td:last-child {
  border-top-right-radius: 10px;
}

.logs__table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.logs__table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.logs__table tr td:first-child {
  border-left-style: solid;
}

.logs__table tr:first-child {
  background-color: #0C509E;
  font-family: 'DMSans-Medium', sans-serif;
}

.logs__table tr:first-child td {
  font-size: 15px;
  padding: 21px 0 21px 19px;
  color: #fff;
  border-color: #2763A9;
}

.logs__table tr:first-child td:nth-child(1) {
  width: 50px;
  padding: 0;
}

.logs__table tr:first-child td:nth-child(5) {
  position: relative;
}

.logs__table tr:first-child td:nth-child(5)::before {
  background-image: none;
}

.logs__table td {
  padding: 17px 15px 17px 19px;
  line-height: 20px;
  word-wrap: break-word;
}

.logs__table td:nth-child(1) {
  width: 50px;
  padding: 0;
}

.logs__table td:nth-child(2) {
  width: 123px;
}

.logs__table td:nth-child(2) span {
  background-color: #60B219;
  border-radius: 7px;
  color: #fff;
  padding: 9px 19px;
  line-height: 18px;
  font-family: 'DMSans-Medium', sans-serif;
}

.logs__table td:nth-child(3) {
  width: 104px;
}

.logs__table td:nth-child(4) {
  width: 162px;
}

.logs__table td:nth-child(4) div {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  grid-column-gap: 20px;
}

.logs__table td:nth-child(5) {
  width: 310px;
}

.logs__table td:nth-child(6) {
  width: 310px;
}

.logs__table td:nth-child(7) {
  width: 206px;
}

.logs__table td:nth-child(8) {
  width: 123px;
}

.logs__table-response {
  text-transform: uppercase;
  color: #0C509E;
  font-family: 'DMSans-Medium', sans-serif;
}

.logs__table-ip {
  color: #0C509E;
  font-family: 'DMSans-Medium', sans-serif;
}

.logs__bottom {
  display: grid;
  grid-template-columns: minmax(250px, 320px) max-content;
  justify-content: space-between;
}

.logs__bottom .pagination-to-start {
  margin-right: 73px;
}

.logs__bottom .select-styled {
  max-width: 226px;
  width: 100%;
}

.tabs-panel {
  display: flex;
  justify-content: space-between;
  background-color: #F3F8FB;
  border-bottom: 1px solid #DCE3E6;
  margin-bottom: 35px;
}

.tabs-panel__container {
  display: flex;
  justify-content: space-between;
  max-width: 1610px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  gap: 25px;
  flex-wrap: wrap;
}

.tabs-panel h2 {
  margin-bottom: 0;
  flex: 1 0 auto;
}

.tabs-panel__search-wrap {
  display: flex;
  align-items: center;
  display: grid;
  grid-template: 1fr / 1fr auto;
}

.tabs-panel__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  flex: 1 1 auto;
}

.tabs-panel__left {
  display: flex;
  gap: clamp(15px, 3vw, 30px);
  font-size: clamp(13px, 2vw, 15px);
  flex-wrap: wrap;
}

.tabs-panel__left-popup {
  background-color: #2B8EEA;
  padding: 17px 19px;
  color: #fff;
  position: absolute;
  left: 3px;
  top: 120%;
  z-index: 20;
  border-radius: 6px;
  width: max-content;
  max-width: 265px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10%);
  transition: opacity .3s, transform .3s linear;
}

.tabs-panel__left-popup.triangle::after {
  content: '';
  position: absolute;
  left: 20px;
  top: -18px;
  border: 8px solid transparent;
  border-bottom: 10px solid #2B8EEA;
}

.tabs-panel__left-tab {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #616A6E;
  gap: 7px;
  transition-duration: .3s;
}

.tabs-panel__left-tab:hover {
  color: #2B8EEA;
}

.tabs-panel__left-tab:hover .tabs-panel__left-icon path {
  fill: #2B8EEA;
}

.tabs-panel__left-tab:hover .tabs-panel__left-icon circle {
  fill: #2B8EEA;
}

.tabs-panel__left-tab:hover .tabs-panel__left-popup {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0%);
}

.tabs-panel__left-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.tabs-panel__left-icon svg {
  object-fit: contain;
}

.tabs-panel__left-icon path,
.tabs-panel__left-icon circle {
  transition-duration: .3s;
}

.tabs-panel__right {
  display: grid;
  grid-template: 1fr / 1fr auto;
  position: relative;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  flex: 1 1 auto;
}

.tabs-panel__right-tabs {
  display: flex;
  align-items: center;
  border-radius: 6px 0 0 0;
  border: 1px solid #DCE3E6;
  border-bottom: none;
  margin-right: 3px;
  overflow: auto;
  font-size: clamp(14px, 2vw, 16px);
}

.tabs-panel__right-tabs span {
  padding: 18px clamp(15px, 2vw, 20px);
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
  transition-duration: .2s;
  flex: 1 1 auto;
}

.tabs-panel__right-tabs span:hover {
  background-color: #2B8EEA;
  color: #fff;
}

.tabs-panel__search-input {
  border: 1px solid #DCE3E6;
  border-bottom: none;
  border-right: none;
  border-radius: 6px 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(200%);
  width: calc(100% - 55px);
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  color: #798489;
  transition-duration: .3s;
  z-index: 10;
}

.tabs-panel__search-input.is-active {
  transform: translateX(0%);
}

.tabs-panel__search-input input {
  border: none;
  width: 100%;
  padding: 15px 15px 15px 0;
}

.tabs-panel__input-icon {
  padding: 0 14px 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-panel__search-button {
  padding: 19px 19px;
  background-color: #fff;
  border: 1px solid #DCE3E6;
  border-bottom: none;
  border-radius: 0 6px 0 0;
  cursor: pointer;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: .3s;
}

.tabs-panel__search-button svg {
  width: 16px;
  height: 16px;
}

.tabs-panel__search-button path {
  transition-duration: .3s;
}

.tabs-panel__search-button:hover path {
  fill: #2B8EEA;
}

.tabs-panel__search-button.is-hide {
  display: none;
}

.tabs-panel__search-button.close-btn {
  border-left: none;
}
