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

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

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

:root {
  --gotham-font: "Gotham", sans-serif;
}

html {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  line-height: 1.15;
  font-family: "GothamBook", sans-serif;
  background: #fafafa
}

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

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

ul {
  list-style: none;
}

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

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

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

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

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

table {
  border-spacing: 0;
  width: 100%;
  vertical-align: top;
  table-layout: auto;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

button {
  cursor: pointer;
}

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

a:hover {
  text-decoration: none;
}

.input-wrap {
  position: relative;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #85889d;
  text-align: left;
  margin-bottom: 15px;
  min-height: 40px;
}

.input-wrap input::-moz-placeholder {
  opacity: 0;
}

.input-wrap input:-ms-input-placeholder {
  opacity: 0;
}

.input-wrap input::placeholder {
  opacity: 0;
}

.input-wrap p {
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: top 0.2s, opacity 0.2s;
  pointer-events: none;
}

.input-wrap input:focus~p,
/* .input-wrap input:not(:focus):valid~p, */
.input-wrap p.is-active {
  top: 10px;
  font-size: 12px;
  opacity: 0.5;
}

.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;
  border: 1px solid #cddaeb;
  border-radius: 7px;
  background-color: #fff;
  min-width: 195px;
}

.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 0.2s;
}

.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;
  overflow: hidden;
}

.select-options li {
  margin: 0;
  padding: 12px 0 12px 17px;
  color: #8d989d;
  transition: background-color 0.2s, color 0.2s;
}

.select-options li:hover {
  background-color: #2F55D4;
  color: #fff;
}

.select-options li[rel="hide"] {
  display: 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 transparent;
  color: #fff;
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.03);
  font-size: 14px;
  line-height: 18px;
  font-family: var(--gotham-font);
  font-weight: 500;
  border-radius: 7px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  text-align: center;
  position: relative;
}

.button-primary:hover,
.users__top-buttons a:hover {
  border-color: #bbd2ed;
  color: #ffffff;
  background-color: transparent;
}

.button-secondary.cancel-button {
  color: #fff;
  background-color: transparent;
  padding: 15px 20px;
}

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

input::placeholder {
  transition: opacity 0.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;
}

/*! Global css rules */

.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: 0.3s;
}

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

input:checked + .slider {
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
}

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

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

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

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

.checkbox-wrap {
  position: relative;
  display: flex;
}

.checkbox-wrap label {
  cursor: pointer;
  display: flex;
}

.checkbox-wrap__check-style {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #d5d8eb;
  cursor: pointer;
  border-radius: 4px;
  left: 0;
}

.checkbox-wrap__check-style::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  position: absolute;
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s, background-color 0.2s;
  opacity: 0;
}

.checkbox-wrap__check-box:checked + .checkbox-wrap__check-style::before {
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
  opacity: 1;
}

.intro-tour-pane {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #bad4ef;
  text-align: center;
  border-radius: 6px;
}

.intro-tour-inner {
  position: relative;
  padding: 35px 20px 20px;
}

.intro-tour-inner p {
  margin-bottom: 10px;
}

.intro-tour-inner .action {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 15px;
  height: 15px;
  font-size: 0;
}

.intro-tour-inner .action a {
  display: inline-flex;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='329pt' viewBox='0 0 329.269 329' width='329pt'%3E%3Cg fill='%23fff'%3E%3Cpath d='M21.34 329.398c-5.461 0-10.926-2.09-15.082-6.25-8.344-8.34-8.344-21.824 0-30.164L292.848 6.391c8.34-8.34 21.824-8.34 30.164 0 8.343 8.34 8.343 21.824 0 30.164L36.422 323.148a21.231 21.231 0 0 1-15.082 6.25zm0 0'/%3E%3Cpath d='M307.93 329.398c-5.461 0-10.922-2.09-15.082-6.25L6.258 36.555c-8.344-8.34-8.344-21.825 0-30.164 8.34-8.34 21.82-8.34 30.164 0l286.59 286.593c8.343 8.34 8.343 21.825 0 30.164-4.16 4.18-9.621 6.25-15.082 6.25zm0 0'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
  cursor: pointer;
  text-indent: -9999px;
}

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

.main-section .container {
  display: flex;
  justify-content: center;
}

.scrollup {
  position: fixed;
  right: 0;
  bottom: clamp(50px, 10vw, 100px);
  cursor: pointer;
  z-index: 100;
  background-color: #181829;
  font-size: 13px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-radius: 3px 0 0 3px;
  transform: translateX(0%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px;
}

.scrollup:hover {
  background-color: #1a447b;
}

.scrollup__hide {
  opacity: 0;
  transform: translateX(50%);
}

.bottom-line {
  border-bottom: 1px solid #000;
  margin-top: clamp(30px, 3vw, 35px);
  margin-bottom: 30px;
  min-height: 55px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 5px;
}

.tab.bottom-line {
  padding-bottom: 0;
}

.sprite {
  background-image: url(../images/iconsprite.png);
  background-repeat: no-repeat;
  display: block;
}

.sprite-acoustic {
  width: 50px;
  height: 50px;
  background-position: -5px -5px;
}

.sprite-act-on {
  width: 50px;
  height: 50px;
  background-position: -65px -5px;
}

.sprite-activecampaign {
  width: 50px;
  height: 50px;
  background-position: -125px -5px;
}

.sprite-amazon {
  width: 50px;
  height: 50px;
  background-position: -185px -5px;
}

.sprite-amphtml {
  width: 50px;
  height: 50px;
  background-position: -245px -5px;
}

.sprite-aweber {
  width: 50px;
  height: 50px;
  background-position: -305px -5px;
}

.sprite-braze {
  width: 50px;
  height: 50px;
  background-position: -365px -5px;
}

.sprite-campaign-monitor {
  width: 50px;
  height: 50px;
  background-position: -5px -65px;
}

.sprite-close {
  width: 50px;
  height: 50px;
  background-position: -65px -65px;
}

.sprite-constant-contact {
  width: 50px;
  height: 50px;
  background-position: -125px -65px;
}

.sprite-copper {
  width: 50px;
  height: 50px;
  background-position: -185px -65px;
}

.sprite-dotdigital {
  width: 50px;
  height: 50px;
  background-position: -245px -65px;
}

.sprite-email-octopus {
  width: 50px;
  height: 50px;
  background-position: -305px -65px;
}

.sprite-esputnik {
  width: 50px;
  height: 50px;
  background-position: -365px -65px;
}

.sprite-everwebinar {
  width: 50px;
  height: 50px;
  background-position: -5px -125px;
}

.sprite-freshsales {
  width: 50px;
  height: 50px;
  background-position: -65px -125px;
}

.sprite-get-response {
  width: 50px;
  height: 50px;
  background-position: -125px -125px;
}

.sprite-gmail {
  width: 50px;
  height: 50px;
  background-position: -185px -125px;
}

.sprite-googlesheets {
  width: 50px;
  height: 50px;
  background-position: -245px -125px;
}

.sprite-group-336 {
  width: 50px;
  height: 50px;
  background-position: -305px -125px;
}

.sprite-group-7 {
  width: 50px;
  height: 50px;
  background-position: -365px -125px;
}

.sprite-html {
  width: 50px;
  height: 50px;
  background-position: -5px -185px;
}

.sprite-hubspot {
  width: 50px;
  height: 50px;
  background-position: -65px -185px;
}

.sprite-icontact {
  width: 50px;
  height: 50px;
  background-position: -125px -185px;
}

.sprite-insightly {
  width: 50px;
  height: 50px;
  background-position: -185px -185px;
}

.sprite-iterable {
  width: 50px;
  height: 50px;
  background-position: -245px -185px;
}

.sprite-jumplead {
  width: 50px;
  height: 50px;
  background-position: -305px -185px;
}

.sprite-kartra {
  width: 50px;
  height: 50px;
  background-position: -365px -185px;
}

.sprite-keap {
  width: 50px;
  height: 50px;
  background-position: -5px -245px;
}

.sprite-klaviyo {
  width: 50px;
  height: 50px;
  background-position: -65px -245px;
}

.sprite-liondesk {
  width: 50px;
  height: 50px;
  background-position: -125px -245px;
}

.sprite-mailchimp {
  width: 50px;
  height: 50px;
  background-position: -185px -245px;
}

.sprite-mailclickconvert {
  width: 50px;
  height: 50px;
  background-position: -245px -245px;
}

.sprite-mailerliteicon {
  width: 50px;
  height: 50px;
  background-position: -305px -245px;
}

.sprite-mailgun {
  width: 50px;
  height: 50px;
  background-position: -365px -245px;
}

.sprite-mailify {
  width: 50px;
  height: 50px;
  background-position: -5px -305px;
}

.sprite-mailijet {
  width: 50px;
  height: 50px;
  background-position: -65px -305px;
}

.sprite-marketo {
  width: 50px;
  height: 50px;
  background-position: -125px -305px;
}

.sprite-moonmail {
  width: 50px;
  height: 50px;
  background-position: -185px -305px;
}

.sprite-moosend {
  width: 50px;
  height: 50px;
  background-position: -245px -305px;
}

.sprite-omnisend {
  width: 50px;
  height: 50px;
  background-position: -305px -305px;
}

.sprite-ongage {
  width: 50px;
  height: 50px;
  background-position: -365px -305px;
}

.sprite-outlook {
  width: 50px;
  height: 50px;
  background-position: -5px -365px;
}

.sprite-pdf {
  width: 50px;
  height: 50px;
  background-position: -65px -365px;
}

.sprite-pepipost {
  width: 50px;
  height: 50px;
  background-position: -125px -365px;
}

.sprite-pipedrive {
  width: 50px;
  height: 50px;
  background-position: -185px -365px;
}

.sprite-postmarkapp {
  width: 50px;
  height: 50px;
  background-position: -245px -365px;
}

.sprite-saleforce {
  width: 50px;
  height: 50px;
  background-position: -305px -365px;
}

.sprite-sendfox {
  width: 50px;
  height: 50px;
  background-position: -365px -365px;
}

.sprite-sendgrid {
  width: 50px;
  height: 50px;
  background-position: -425px -5px;
}

.sprite-sendinblue {
  width: 50px;
  height: 50px;
  background-position: -425px -65px;
}

.sprite-sendloop {
  width: 50px;
  height: 50px;
  background-position: -425px -125px;
}

.sprite-sendy {
  width: 50px;
  height: 50px;
  background-position: -425px -185px;
}

.sprite-sharpspring {
  width: 50px;
  height: 50px;
  background-position: -425px -245px;
}

.sprite-sparkpost {
  width: 50px;
  height: 50px;
  background-position: -425px -305px;
}

.sprite-tripolis {
  width: 50px;
  height: 50px;
  background-position: -425px -365px;
}

.sprite-unisender {
  width: 50px;
  height: 50px;
  background-position: -5px -425px;
}

.sprite-webhook {
  width: 50px;
  height: 50px;
  background-position: -65px -425px;
}

.sprite-webinarjam {
  width: 50px;
  height: 50px;
  background-position: -125px -425px;
}

.sprite-woocommerce {
  width: 50px;
  height: 50px;
  background-position: -185px -425px;
}

.sprite-woodpecker {
  width: 50px;
  height: 50px;
  background-position: -245px -425px;
}

.sprite-zapier {
  width: 50px;
  height: 50px;
  background-position: -305px -425px;
}

@keyframes fadeEffect {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cv-scroll-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-100%);
    opacity: 1;
  }
}

.cv-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 75px);
  width: 100%;
  margin-left: auto;
}

.cv-scroll-container {
  position: relative;
  display: flex;
  height: 100%;
}

.cv-icon {
  height: clamp(65px, 8vw, 103px);
  width: clamp(65px, 8vw, 103px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 13px 40px -32px rgba(0, 0, 0, 0.75);
  border-radius: 20px;
  margin: 15px;
  overflow: hidden;
}

.cv-icon img {
  width: auto !important;
  max-width: 90% !important;
}

.cv-icon-list {
  position: relative;
  overflow: auto;
}

.cv-vertical {
  position: relative;
  max-height: 100%;
  overflow: hidden;
}

/* .cv-vertical::before,
.cv-vertical::after {
	position: absolute;
	content: "";
	height: 30%;
	width: 100%;
	background: linear-gradient(#f9f9f9, transparent);
	z-index: 1;
	top: -2px;
	left: 0;
	pointer-events: none
} */

.cv-vertical::after {
  top: auto;
  bottom: 0;
  left: 0;
  background: linear-gradient(transparent, #fff);
  opacity: 0;
}

.cv-icon-list.active {
  animation-name: cv-scroll-up;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.cv-scroll-container .cv-vertical:nth-child(even) .cv-icon-list {
  animation-duration: 35s;
}

.spinner {
  display: none;
}

.spinner {
  background: url("../images/spinner.gif") no-repeat;
  background-size: 20px 20px;
  display: inline-block;
  visibility: hidden;
  float: right;
  vertical-align: middle;
  opacity: 0.7;
  width: 20px;
  height: 20px;
  margin: 4px 10px 0;
}

.loading-content .spinner,
.spinner.is-active {
  visibility: visible;
}

.main-section__left-list {
  margin-bottom: clamp(20px, 3vw, 35px);
}

.main-section__left-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2vw, 20px);
}

.main-section__left-list li {
  font-size: 20px;
  line-height: 22px;
  text-align: left;
  color: #6c757d;
  padding-left: 25px;
  position: relative;
}

.main-section__left-list li:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top 3px;
  background-size: contain;
  background-image: url(../images/icons/blue-check.png);
}

.main-section__left-button {
  display: flex;
  margin-bottom: clamp(20px, 3vw, 35px);
}

.steps-list i:first-child {
  margin-left: -50px;
  margin-right: 30px;
}

.steps-list .fa-angle-right {
  margin-left: 10px;
}

/*! Login & registration ============================================================================================================== */

.entrance-page__form #message {
  background: #fff;
  color: #000;
  position: relative;
  border-radius: 7px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, margin 0.2s ease-in-out;
}

.entrance-page__form #message.is-active {
  border: 1px solid #d7deeb;
  margin-top: 5px;
}

.entrance-page__form #message .message-inner {
  padding: 20px 20px 10px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entrance-page__form #message p {
  padding-left: 25px;
  position: relative;
  line-height: 1.2;
  font-size: 15px;
}

.entrance-page__form #message p::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.entrance-page__form .valid {
  color: #059105;
}

.entrance-page__form .invalid {
  color: #85889d;
}

.entrance-page__form .valid:before {
  background-image: url(../images/icons/check.svg);
}

.entrance-page__form .invalid:before {
  background-image: url(../images/icons/circle.svg);
}

.registration__user-name {
  display: grid;
  grid-template: 1fr / 1fr 1fr;
  gap: clamp(10px, 1vw, 20px);
}

.login__options-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  min-height: 27px;
}

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

.registration__inner,
.login__inner {
  display: flex;
  flex-direction: column;
  max-width: 910px;
  padding: 20px 200px;
  width: 100%;
  align-items: center;
  overflow: hidden;
}

.registration__logo,
.login__logo {
  margin-bottom: clamp(20px, 3vw, 43px);
  width: clamp(80px, 7vw, 90px);
}

.registration h2,
.login h2 {
  font-size: 29px;
  line-height: 32px;
  font-family: var(--gotham-font);
  font-weight: 700;
  text-align: center;
  margin-bottom: 49px;
  color: #6610f2;
}

.registration span,
.login span {
  font-family: var(--gotham-font);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
}

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

.registration label.error,
.login label.error {
  display: none !important;
  font-size: 0 !important;
  opacity: 0 !important;
}

.registration__input,
.login__input {
  margin: 0;
  padding: 18px 45px 17px 18px;
  border: 1px solid #dee3f2;
  border-radius: 6px;
  font-size: 16px;
  color: #858b8e;
  outline: none;
  background-color: #fff;
  width: 100%;
  height: 55px;
  font-weight: 400;
}

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

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

.registration__password-view,
.login__password-view {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: none;
  width: 50px;
  height: calc(100% - 15px);
  background: url(../images/icons/visible-pass.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.registration__btn,
.login__input-submit {
  cursor: pointer;
  -webkit-appearance: none;
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
  color: #fff;
  font-size: 17px;
  font-family: var(--gotham-font);
  font-weight: 700;
  margin-bottom: 25px;
  transition: background-color 0.3s;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  height: 55px;
}

.registration__btn:hover,
.login__input-submit:hover {
  background-color: #1e6bb3;
}

.registration__powered,
.login__powered {
  max-width: 123px;
  filter: grayscale(1);
  transition: filter 0.2s;
}

.registration__powered:hover,
.login__powered:hover {
  filter: grayscale(0);
}

.registration__already-registered,
.login__no-account {
  font-size: 15px;
  margin-bottom: clamp(30px, 7vw, 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: var(--gotham-font);
  font-weight: 500;
  color: #6610f2;
}

.login__forgot {
  font-size: 15px;
  margin-left: auto;
}

.login__forgot span {
  color: #5c6467;
}

.login__forgot a {
  color: #034ea1;
  font-family: var(--gotham-font);
  font-weight: 500;
}

.login__remember {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  color: #5c6467;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.login__remember-wrap {
  display: none;
}

.login__remember label {
  padding-left: 34px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.login__check-style {
  width: 22px;
  height: 22px;
  margin-bottom: 0 !important;
}

.registration__user-name label {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.registration__user-photo {
  /* position: absolute; */
  top: 1px;
  right: -170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
  font-size: 12px;
  width: 145px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}

.password__reset-text {
  font-size: 29px;
  line-height: 32px;
  font-family: var(--gotham-font);
  font-weight: 700;
  text-align: center;
  margin-bottom: 49px;
}

.password__reset-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.password__reset-form label {
  font-family: var(--gotham-font);
  font-weight: 500;
}

/*! Header ============================================================================================================== */

.logo-top {
  position: relative;
  z-index: 200;
  /* width: clamp(30px, 4vw, 40px); */
  font-family: var(--gotham-font);
  font-weight: 500;
  color: #2F55D4;
  font-size: 22px;
}

.logo-top img {
  /* width: 60px; */
  width: 200px;
  height: 50px;
  object-fit: contain;
}

.logo-top a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.container-header {
  /* background: #fff; */
  margin: 0;
  padding: 10px 0;
  overflow: hidden;
}

.container-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 2vw, 30px);
}

.menu-top-wrap ul {
  display: flex;
  column-gap: clamp(10px, 2vw, 20px);
  row-gap: 12px;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: 20px;
  font-family: var(--gotham-font);
  font-weight: 500;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  text-decoration: none;
}
.menu-top-wrap ul.sub-menu {
  display: none;
  padding: 10px;
  text-align: left;
  padding-top: 20px;
  min-width: 125px;
  flex-direction: column;
  z-index: 999;
  position: absolute;
  background: #fff;
  gap: 18px;
  margin-top: 5px;
}

.menu-top-wrap ul.sub-menu li {
  padding: 0;
}

.menu-top-wrap ul li:hover ul.sub-menu {
  display: flex;
}

.menu-top-wrap ul li {
  text-decoration: none;
  color: #0a083b;
}

.menu-top-wrap ul li a {
  position: relative;
  padding-bottom: 3px;
}

.menu-top-wrap ul li a::after {
  opacity: 0;
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: #2F55D4;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: width 0.3s, opacity 0.3s;
}

.menu-top-wrap ul li a:hover,
.menu-top-wrap ul li a:visited {
  text-decoration: none !important;
}

.menu-top-wrap ul li a:hover::after {
  opacity: 1;
  width: 100%;
}

/* .menu-top-wrap li,
.menu-top-wrap a {
  padding-top: 35px;
} */

.menu-top-wrap a::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.menu-top-wrap a.--app::before {
  background-image: url(../images/icons/header-apps.svg);
}

.menu-top-wrap a.--accounts::before {
  background-image: url(../images/icons/header-accounts.svg);
}

.menu-top-wrap a.--integrations::before {
  background-image: url(../images/icons/header-integrations.svg);
}

.menu-top-wrap a.--users::before {
  background-image: url(../images/icons/header-users.svg);
}

.menu-top-wrap a.--account::before {
  background-image: url(../images/icons/header-account.svg);
}

.menu-top-wrap a.--logout::before {
  background-image: url(../images/icons/header-logout.svg);
  background-size: 90%;
}

.menu-top-wrap a.--logs::before {
  background-image: url(../images/icons/header-activity-logs.svg);
}

.menu-top-wrap a.--support::before {
  background-image: url(../images/icons/header-support.svg);
}

.menu-top-wrap a.--settings::before {
  background-image: url(../images/icons/header-settings.svg);
}

.header {
  padding: 25px 0 24px;
  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(5, auto);
  grid-column-gap: 22px;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: 20px;
  font-family: var(--gotham-font);
  font-weight: 700;
}

.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 0.3s, opacity 0.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: #0a083b;
  left: 0;
  width: 100%;
  height: 2px;
  top: 9px;
  transition: all 0.3s;
}

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

.header__burger::before {
  top: 0;
}

.header__burger::after {
  bottom: 0;
}

.header__burger--active span {
  transition: all 0.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 section ============================================================================================================== */

.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: var(--gotham-font);
  font-weight: 700;
  margin-bottom: 18px;
}

.main__text-bottom {
  color: #0d1821;
  font-size: 17px;
  line-height: 28px;
  font-family: var(--gotham-font);
  font-weight: 500;
  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: var(--gotham-font);
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
}

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

.main__links-options {
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
}

.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-section__left-video {
  height: clamp(250px, 25vw, 320px);
  margin-bottom: 20px;
  position: relative;
}

.main-section__left-video .iframeposter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/video-cover.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 99;
  cursor: pointer;
}

.main-section__left-video iframe {
  width: 100%;
  height: 100%;
  /* border-radius: 0; */
}

.action-buttons button.blue,
button#startButton,
.introjs-tooltiptext button.blue {
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  padding: clamp(14px, 1vw, 17px) 20px;
  text-align: center;
  margin: 0;
  transition: box-shadow 0.3s;
  text-decoration: none;
  border: 0;
  font-family: var(--gotham-font);
  font-weight: 500;
  background-image: linear-gradient(123deg, #2f55d4 0%, #6610f2 100%);
  box-shadow: 0 4px 25px 0 rgb(76 128 239 / 43%);
}

.action-buttons button.blue:hover,
button#startButton:hover {
  box-shadow: 0 4px 25px 3px rgb(76 128 239 / 70%);
}

.action-buttons button.white a {
  color: #333;
}

button.white {
  background-color: #fff;
}

/*! Apps page ============================================================================================================== */

.row-actions {
  display: flex;
  gap: 3px;
  color: #ddd;
  font-size: 13px;
  padding: 2px 0 0;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s;
}

tr:hover .row-actions {
  opacity: 1;
}

.row-actions span.delete a {
  color: #a00;
}

.row-actions .edit {
  display: flex;
  align-items: center;
  gap: 2px;
  transition: color 0.2s;
  cursor: pointer;
}
.row-actions .delete{
  cursor: pointer;
}

.row-actions .edit:hover {
  color: #000;
}

.wrap-platforms-page {
  margin: 30px auto;
}

.wrap-platforms-page a {
  display: inline-flex;
}

.wrap-platforms-page img {
  object-fit: contain;
  object-position: left center;
}

.sperse__table {
  margin-bottom: 30px;
  overflow-x: auto;
}

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

.sperse__table tr {
  background-color: #fff;
}

.sperse__table td {
  font-size: 14px;
  border: solid 1px #e9ecf4;
  border-style: none solid solid none;
  word-break: break-word;
}

.sperse__table tr:first-child td {
  font-size: 15px;
}

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

.sperse__table tr:first-child td:first-child {
  border-radius: 10px 0 0 0;
}

.sperse__table tr:first-child td:last-child {
  border-radius: 0 10px 0 0;
}

.sperse__table tr:first-child {
  background-color: #2F55D4;
  color: #fff;
  font-family: var(--gotham-font);
  font-weight: 500;
}

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

.sperse__table td {
  padding: clamp(15px, 2vw, 20px);
}

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

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

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

.tabcontent__wrap {
  padding: 0;
}

.tabs-panel__left-popup {
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
  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 0.2s, transform 0.1s linear;
}

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

.tabs-panel__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  gap: 25px;
  flex-wrap: wrap;
  border-bottom: 1px solid #000;
}

.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-tab {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #616a6e;
  gap: 7px;
  transition-duration: 0.3s;
  position: relative;
}

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

.tabs-panel__left-icon circle,
.tabs-panel__left-icon path {
  fill: #616a6e;
}

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

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

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

.tabs-panel__left-tab.semitabactive .tabs-panel__left-icon circle,
.tabs-panel__left-tab.semitabactive .tabs-panel__left-icon path {
  fill: #2F55D4;
}

.pull-right {
  align-self: flex-end;
}

.main-title {
  font-family: var(--gotham-font);
  font-weight: 700;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 106%;
  color: #0d1821;
  position: relative;
  margin-bottom: 40px;
  color: #000000;
}

.page-title {
  font-family: var(--gotham-font);
  font-weight: 700;
  font-size: clamp(25px, 2vw, 30px);
  color: #0d1821;
  position: relative;
}

.col-app {
  padding: 24px 20px 30px 24px;
  border-radius: 10px;
  box-shadow: 1px 1px 7px 0 rgba(9, 33, 41, 0.02);
  border: solid 0.5px #dee3f2;
  background-color: #fff;
  margin: 0;
  width: 100%;
}

p.app-desc {
  margin: 15px 14px 35px 0;
  font-size: 15px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #495357;
}

.visit-app,
.install-app {
  display: inline-block;
}

.visit-app {
  margin-right: 30px;
}

.visit-app a {
  color: #12222e !important;
  font-size: 14px;
  font-weight: 600;
}

.install-app a {
  font-weight: 600;
  letter-spacing: 0.14px;
  fill: #fff;
  color: #fff;
  background-color: transparent;
  background-image: linear-gradient(123deg, #2F55D4 0%, #6610f2 100%);
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #2F55D4;
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
}

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

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

.install-app,
.visit-app {
  opacity: 0;
  transition: opacity 0.3s;
}

.col-app:hover .install-app,
.col-app:hover .visit-app {
  opacity: 1;
}

/*! Apps page */

/*! Directory page ============================================================================================================== */

.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: 0.3s;
}

/*! Integrations page ============================================================================================================== */
.integrations {
  padding-bottom: 30px;
}

.integrations__top,
.integrations__table {
  margin-bottom: 20px;
}

.integrations__top {
  color: #fff;
}

.integrations__table {
  color: #616a6e;
  overflow: auto;
}

.integrations__table .row-actions {
  color: #616a6e;
}

.integrations__select-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;

}

.integrations__top-items {
  margin-left: auto;
}

.integrations__table td {
  padding: 10px 15px;
}

.integrations__table .column_integration_id {
  display: flex;
  align-items: center;
  gap: 8px;
}

.integrations__table .column_integration_id img {
  max-width: 35px;
  object-fit: contain;
}

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

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

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

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

.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 {
  background-color: #fff;
}

.integrations__table tr:first-child {
  background-color: #2F55D4;
  font-family: var(--gotham-font);
  font-weight: 500;
  color: #fff;
}

.integrations__table tr:first-child td {
  font-size: 15px;
  padding: 21px 19px;
  border-color: #ffffff;
}

.integrations__table tr:first-child td:first-child {
  width: 50px;
  padding: 21px 10px;
  border-radius: 10px 0 0 0;
}

.integrations__table tr:first-child td:last-child {
  border-radius: 0 10px 0 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) {
  width: clamp(150px, 10vw, 255px);
}

.integrations__table td:nth-child(3) {
  min-width: 200px;
}

.integrations__table td:nth-child(5) {
  position: relative;
  padding-left: 10px;
}

.integrations__table td:nth-child(6) {
  text-align: center;
  padding: 20px;
}

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

.integrations__search-form {
  display: grid;
  grid-template: 1fr/1fr auto;
}

.integrations__search-button,
input.logs__search-btn {
  padding: 0;
  width: 40px;
  height: 100%;
  max-height: 42px;
  background-image: url(../images/icons/search-w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border: 0;
  border-radius: 0 5px 5px 0 !important;
  background-color: #2F55D4 !important;
  text-indent: -99999px;
}

.integrations__search-button:hover,
.logs__search-btn:hover {
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
  color: #fff;
}

input.integrations__search-input,
input.integrations__bulk-input {
  border: 1px solid #bbd2ed;
  border-right: 0;
  height: 42px;
  background-color: #fff;
  border-radius: 7px 0 0 7px;
  padding: 10px 15px;
}

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

.integrations-upd__name input {
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 16px;
}

.integrations-upd__name .integration-text {
  width: clamp(250px, 25vw, 500px);
  text-align: center;
  font-size: clamp(16px, 2vw, 22px);
  font-family: var(--gotham-font);
  font-weight: 500;
}

.integrations-upd__top {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  line-height: 26px;
}

.integrations-upd__top span:nth-child(1) {
  margin-right: 8px;
}

.integrations-upd__top span:nth-child(2) {
  font-family: var(--gotham-font);
  font-weight: 700;
  position: relative;
  max-width: 500px;
  width: 100%;
  color: #0d1821;
}

.integrations-upd__top span:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0d1821;
  left: 0;
  bottom: -11px;
}

.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__top-selects select {
  height: 40px;
  padding: 0 10px;
  outline: 0;
  width: 100%;
  border-radius: 7px;
  border: 1px solid #dee3f2;
  cursor: pointer;
}

.integrations-upd__trigger-top,
.integrations-upd__action-top {
  display: flex;
  align-items: center;
  font-size: 17px;
  line-height: 22px;
  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 .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: #000;
}

.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 {
  background-color: #0c509e;
  border: 1px solid #1b5884;
  color: #fff;
}

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

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

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

li.form_fields_name.integrations-upd__field-item.hide {
  display: none;
}

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

.integrations-upd__right select,
#ProviderForms,
#form_default,
.awp_select,
.integrations-upd__select-inner select {
  border-radius: 7px;
  width: 100%;
  border: 0;
  border-radius: 7px;
  height: 42px;
  cursor: pointer;
  padding: 0 10px;
  outline: 0;
}

.integrations-upd__right .integrations-upd__select-inner--first .select-styled {
  background-color: #60b219;
  border: 1px solid #539b15;
  color: #fff;
}

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

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

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

.integrations-upd__actions-inner span {
  font-size: 17px;
  line-height: 22px;
}

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

.integrations-upd__accounts-select {
  width: 100%;
}

.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 {
  margin-bottom: 23px;
  display: flex;
}

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

.integrations-upd__actions-selects .select-styled {
  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-name {
  display: block;
  margin-bottom: 21px;
  font-size: 17px;
  line-height: 22px;
}

.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;
  text-transform: uppercase;
  position: relative;
}

.integrations-upd__name input::placeholder {
  font-family: var(--gotham-font);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

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

.integrations-upd__main {
  display: grid;
  grid-template-columns: minmax(auto, 627px) 1fr;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}

.integrations-upd__trigger-top,
.integrations-upd__action-top {
  display: flex;
  align-items: center;
  font-size: 17px;
  line-height: 22px;
  font-family: var(--gotham-font);
  font-weight: 500;
  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: #a9d7ff;
  border: 1px solid #dee3f2;
  border-radius: 6px;
  padding: 14px 20px 13px;
  font-size: 15px;
}

.preset_wrapper{
  display: grid;
  grid-template-columns: minmax(auto, 627px) 1fr;
  justify-content: space-between;
  gap: 30px;
}

.integrations-upd__main.preset_main {
  grid-template-columns: auto;
  justify-content: inherit;
}
.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 .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: #a9d7ff;
  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-weight: 500;
}

.integrations-upd__drag-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 7px;
}

.integrations-upd__drag-main .field-actions.hide {
  display: none;
}

.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 0.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 {
  padding-top: 24.5px;
  display: none;
}

.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: #c0eaa5;
  border-color: #dfe5de;
}

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

.integrations-upd__actions-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  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-weight: 500;
}

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

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

.integrations-upd__accounts-input input.regular-text {
  padding: 15px 10px;
  border-radius: 4px 0 0 4px;
}

.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: 0;
  line-height: 18px;
}

.integrations-upd__actions-selects .select-styled {
  font-family: var(--gotham-font);
  font-weight: 500;
  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: auto / 1fr;
  grid-row-gap: 7px;
}

.integrations-upd__fields-name {
  display: block;
  margin-bottom: 21px;
  font-size: 17px;
  line-height: 22px;
  font-weight: 500;
}

.integrations-upd__fields-row {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: center;
  min-height: 56px;
  gap: 7px;
}

.integrations-upd__fields-row .sortable {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.integrations-upd__fields-row .form_field_dropable {
  height: 100%;
  padding: 5px;
  background-color: #ebf8e2;
  border: 1px dashed #60b219;
  border-radius: 4px;
}

.integrations-upd__fields-row .sperse_inner {
  height: 100%;
}

.integrations-upd__row-name {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  padding: 10px;
  background-color: #ebf8e2;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 4px;
}

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

.sortable .integrations-upd__field-item {
  background-color: #fff;
  border-radius: 4px;
  display: flex !important;
  gap: 15px;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  font-size: 12px;
  line-height: 16px;
  font-family: var(--gotham-font);
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  min-width: 180px;
}

.sortable .integrations-upd__field-item.drag_hide {
  display: none !important;
}

.integrations-upd__field-item .field-actions {
  display: flex;
}

.integrations-upd__field-item a {
  transition: opacity 0.3s;
  background-image: url(../images/icons/delete-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  cursor: pointer;
  opacity: 0;
  display: inline-block;
}

.sortable .integrations-upd__field-item:hover a {
  opacity: 1;
}

/*! Logs page ==============================================================================================================*/

.logs {
  padding-bottom: 50px;
}

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

.logs__select-inner {
  display: flex;
  gap: 10px;
}

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

.logs__actions-wrap--top {
  margin-bottom: 20px;
}

.logs__top-inner {
  margin-bottom: 25px;
}

.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-right: none;
  border-radius: 5px 0 0 5px;
  width: 100%;
  margin: 0;
  background-color: #fff;
  line-height: 1.2;
}

.logs__search-input::placeholder {
  color: #8d989d;
  line-height: 1.2;
}

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

.logs__table {
  margin-bottom: 30px;
  overflow-x: auto;
}

.logs__table table {
  white-space: unset !important;
}

.logs__table table td {
  min-width: 140px;
}

.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 {
  background-color: #fff;
}

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

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

.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: #2F55D4;
  font-family: var(--gotham-font);
  font-weight: 500;
}

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

.logs__table tr:first-child td:first-child {
  width: 50px;
  padding: 20px;
  border-radius: 10px 0 0 0;
}

.logs__table tr:first-child td:last-child {
  border-radius: 0 10px 0 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: 10px 15px;
  word-break: break-word;
}

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

.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-weight: 500;
}

.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(7) {
  width: 206px;
}

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

.logs__table-response {
  text-transform: uppercase;
  color: #0c509e;
  font-weight: 500;
}

.logs__table-ip {
  color: #0c509e;
  font-weight: 500;
}

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

.logs__search-wrap {
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-rows: auto;
  margin: 0 auto;
}

select.logs__select,
select.integrations__select {
  padding: 10px 23px;
  font-size: 14px !important;
  width: 100%;
  border: 1px solid #bbd2ed;
  outline: 0;
  cursor: pointer;
  min-width: 200px;
}

.logs__table td:nth-child(2) span.error {
  background-color: red;
}

.pagination {
  max-height: 42px;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  font-family: var(--gotham-font);
  font-weight: 500;
}

.pagination-items {
  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 0.3s;
}

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

.pagination-to-start a,
.pagination-to-end a {
  transition: background-color 0.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 {
  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;
  max-width: 70px;
  min-width: 42px;
  flex-shrink: 0;
}

.pagination-page input {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  color: #0d1821;
  width: 100%;
  background-color: transparent;
  text-align: center;
}

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

.activity {
  padding-bottom: 50px;
}

.activity__inner {
  overflow: hidden;
}

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

.activity__title {
  margin-bottom: 0;
}

.activity__main {
  background-color: #fff;
  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: var(--gotham-font);
  font-weight: 700;
}

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

.activity__left-timing span {
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  font-family: var(--gotham-font);
  font-weight: 500;
  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;
}

.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: var(--gotham-font);
  font-weight: 500;
  margin-bottom: 10px;
}

.activity__bottom-posted {
  background-color: #f9fbfe;
  border: 1px solid #dee3f2;
  border-radius: 8px;
  padding: 15px 15px 16px 23px;
  overflow-x: auto;
}

.activity__bottom-posted a {
  color: #00f;
}

.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: var(--gotham-font);
  font-weight: 500;
  background-color: #60b219;
  border-radius: 7px;
  color: #fff;
  padding: 9px 19px;
}

.activity__right-code span:nth-child(2).error {
  background-color: red;
}

.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: var(--gotham-font);
  font-weight: 700;
  text-transform: uppercase;
}

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

.activity__right-posted {
  display: block;
  font-size: 15px;
  line-height: 20px;
  font-family: var(--gotham-font);
  font-weight: 500;
  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: green;
  font-size: 14px;
  line-height: 21px;
  font-family: "Menlo-Regular", sans-serif;
  overflow-x: auto;
}

#preright {
  overflow-x: auto;
}

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

/*! Profile ==============================================================================================================  */

.profile {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 30px;
}

.profile__inner {
  display: flex;
  gap: clamp(10px, 2vw, 30px);
  text-align: center;
  width: 100%;
}

.profile__box {
  border: 1px solid #dee3f2;
  align-self: flex-start;
  border-radius: 10px;
  background-color: #fff;
  padding: 35px clamp(10px, 2vw, 20px);
  flex-shrink: 0;
}

.profile__box h4 {
  font-size: 20px;
}

.profile__photo-img {
  display: flex;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
  width: clamp(150px, 11vw, 206px);
  height: clamp(150px, 11vw, 206px);
}

.profile__photo-add {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.profile__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px !important;
  width: 100%;
}

.profile__label {
  text-align: left;
  margin-bottom: 15px;
}

.profile__right .col-md-9 {
  background-color: #fff;
  padding: 35px clamp(10px, 2vw, 20px);
  border-radius: 10px;
  border: 1px solid #dee3f2;
}

.profile__right .row {
  display: grid;
  grid-template: 1fr / 150px 1fr;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.profile__right .card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile__right .row .text-secondary {
  background-color: #f3f8fd;
  padding: 10px;
  border-radius: 6px;
  word-break: break-all;
}

.account__content {
  display: flex;
  gap: clamp(10px, 2vw, 30px);
}

.account__right-item {
  display: grid;
  grid-template: 1fr / 100px max-content;
  align-items: center;
  gap: 20px;
}

.account__right {
  width: 100%;
}

.account__left {
  display: inline-block;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #dee3f2;
  padding: 35px clamp(10px, 2vw, 20px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.account__left-avatar {
  border-radius: 50%;
  overflow: hidden;
  width: clamp(150px, 11vw, 206px);
  height: clamp(150px, 11vw, 206px);
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  margin-bottom: 30px;
}

.account__right form,
.account__right-wrap {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #dee3f2;
  padding: 35px clamp(10px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  align-items: flex-start;
}

.account__right-wrap {
  height: auto;
}

.account__right-wrap span {
  word-break: break-all;
}

.account__right form .button-primary {
  margin-top: auto;
  max-width: 315px;
  width: 100%;
}

.acoount__username {
  font-size: 20px;
  font-family: var(--gotham-font);
  font-weight: 700;
}

/*! Users ==============================================================================================================*/
.users__top-wrap {
  margin-bottom: 20px;
  color: #fff;
}

.users__bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.users__top-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.user__edit-title,
.account__title,
.integrations__title-wrap {
  margin-bottom: 20px;
}

.card-body input {
  border: 1px solid #ccc;
}

.card-body .img-div {
  display: inline-grid;
  grid-template: 1fr/200px 1fr;
  align-items: center;
  width: 100%;
  gap: 30px;
  cursor: pointer;
  min-height: 50px;
  max-height: 60px;
}

.card-body .form-group {
  display: flex;
  justify-content: flex-start;
}

.card-body .form-group input[type="checkbox"] {
  width: auto;
}

.savesettings__form {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #dee3f2;
  padding: 35px clamp(10px, 2vw, 20px);
  gap: 20px;
  height: 100%;
  align-items: flex-start;
  margin-top: 30px;
}

.savesettings__form .card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.savesettings__form .card-body .row {
  display: grid;
  grid-template: 1fr / 205px 1fr;
  gap: 30px;
  align-items: center;
}

.savesettings__form .card-body input {
  max-height: 42px;
  padding: 12px 15px;
  border: 1px solid #e4e9eb;
  border-radius: 5px;
  width: 100%;
  margin: 0;
}

.savesettings__form .card-body .col-sm-9 {
  width: 100%;
}

/*! App directory ==============================================================================================================*/

.app-directory {
  min-height: calc(100vh - 106px);
  padding: 30px 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 103px 29px;
  min-height: 330px;
  transition: all 0.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-size: 15px;
  line-height: 20px;
  margin-bottom: 3px;
}

.app-directory__item-content {
  transform: translate3d(0, 21px, 0);
  transition: all ease-in-out 0.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: var(--gotham-font);
  font-weight: 500;
  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 0.3s;
  right: 20px;
  left: 20px;
}

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

.app-directory__item-popup a:nth-child(1) {
  font-size: 14px;
  line-height: 19px;
  font-family: var(--gotham-font);
  font-weight: 500;
  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: var(--gotham-font);
  font-weight: 700;
  background-color: #0c509e;
  color: #fff;
  padding: 11px 25px 12px 37px;
  border-radius: 6px;
  transition: background-color 0.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%);
}

.col-app a img {
  display: block;
  object-fit: contain;
  max-width: 100%;
}

.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: 0.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;
  font-size: clamp(14px, 2vw, 16px);
  overflow: hidden;
}

.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: 0.2s;
  flex: 1 1 auto;
  width: 100%;
}

.tabs-panel__right-tabs span:hover {
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
  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: 0.3s;
  z-index: 10;
}

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

.tabs-panel__search-input input {
  border: 0;
  width: 100%;
  padding: 15px 15px 15px 0;
  margin-top: 1px;
  font-size: 15px;
  font-weight: 600;
  height: 1px;
}

.tabs-panel__search-input input:focus {
  border-color: #fff;
  box-shadow: none;
}

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

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

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

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

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

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

.to-center-screen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

/*! Platforms settings ==============================================================================================================*/

.pull-right a.tablinks {
  background-color: inherit;
  float: left;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  border-right: 0;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  text-decoration: none;
  color: #181829;
}

.pull-right a.tablinks:hover {
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
  color: #fff;
}

.pull-right a.tablinks.active {
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
  color: #fff;
}

.nav-tab-wrapper,
.wrap h2.nav-tab-wrapper,
h1.nav-tab-wrapper {
  border-bottom: 0;
  width: auto;
  padding-top: 0 !important;
  display: inline-block;
}

.nav-tab {
  float: none;
  border: 1px solid #ccc;
  border-left: 0;
  border-bottom: none;
  margin-left: 0;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.71428571;
  font-weight: 600;
  background: #efefef;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
  display: block;
}

.nav-tab-active,
.nav-tab-active:focus,
.nav-tab-active:focus:active,
.nav-tab-active:hover {
  border-bottom: 1px solid #f4f9fe;
  background: #fff;
  color: #000;
  border-right-width: 0;
}

.sperse-platform {
  display: flex;
  border-top: none;
}

.sperse-platform__wrap {
  box-shadow: 0 0 15px 5px #e0eafd67;
}

.sperse-platform .nav-tab-wrapper a:hover {
  border-right: 0;
}

.sperse-platform .nav-tab-wrapper a:first-child {
  border-top: 0;
}

.sperse-platform .nav-tab-wrapper a:nth-last-child(1) {
  border-bottom: 0;
}

.tab {
  overflow: hidden;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.tab a {
  background-color: inherit;
  float: left;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  border: 1px solid #ccc;
  border-right: 0;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
}

.tab a:hover {
  background-color: #ddd;
}

.tab a.active {
  background-color: #ccc;
}

.tabcontent {
  display: none;
  border-top: none;
  padding-top: 0;
  padding-right: 2px;
}

.tabcontent {
  animation: fadeEffect 1s;
}

.introbox {
  background-color: #fef3e6;
  border-left: 5px solid #f69d3c;
  margin: 0 0 20px 0;
  padding: 12px 32px 12px 12px;
  font-size: 15px;
  line-height: 1.75;
  border-radius: 0 6px 6px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.introbox__video-popup {
  position: fixed;
  font-family: var(--gotham-font);
  max-width: 1040px;
  width: 100%;
  height: 650px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.2s, z-index 0.2s;
  padding: 20px;
}

.introbox__video-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.introbox__video-popup.is-active {
  opacity: 1;
  pointer-events: all;
  z-index: 199;
}

.introbox__popup-header {
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.introbox__popup-title {
  font-size: 20px;
  font-weight: 500;
}

.introbox__popup-close {
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  background-image: url(../images/icons/close.svg);
  cursor: pointer;
  filter: grayscale(1);
}

.introbox__video-popup.is-active {
  opacity: 1;
  pointer-events: all;
  z-index: 19999;
}

.introbox__video-fade {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.473);
  opacity: 0;
  pointer-events: all;
  z-index: -1;
  transition: opacity 0.3s, z-index 0.3s;
}

.introbox__video-fade.is-active {
  opacity: 1;
  pointer-events: all;
  z-index: 198;
}

.introbox__popup-button {
  cursor: pointer;
  max-width: 150px;
}

.platform-box {
  padding-left: 20px;
}

.platform-box__logo {
  margin-bottom: 30px;
}

.introbox p {
  font-size: clamp(13px, 1vw, 15px);
}

.introbox a {
  font-family: var(--gotham-font);
  font-weight: 700;
  color: #00aeef;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  line-height: 1;
  display: inline-block;
}

.introbox a:hover {
  border-color: #00aeef;
}

.form-table th {
  vertical-align: top;
  text-align: left;
  padding: 20px 10px 20px 0;
  width: 200px;
  line-height: 1.3;
  font-weight: 600;
}

.form-table th,
.form-wrap label {
  color: #23282d;
  font-weight: 400;
  text-shadow: none;
  vertical-align: baseline;
}

.form-table,
.form-table td,
.form-table td p,
.form-table th {
  vertical-align: middle;
  font-size: 14px;
}

p.submit {
  text-align: left;
  max-width: 100%;
  margin: 20px 0;
}

.sperse__table.influencersoft__table {
  margin-top: 20px;
  overflow-x: auto;
}

.form-table td {
  margin-bottom: 9px;
  padding: 15px 0 15px 0;
  line-height: 1.3;
  vertical-align: middle;
}

/*! Main dashboard */

.main-section__inner {
  display: grid;
  gap: clamp(5px, 4vw, 70px);
  grid-template: 1fr / 1fr 1fr;
}

.main-section__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0;
}

h4.description {
  line-height: clamp(24px, 2vw, 28px);
  font-family: var(--gotham-font);
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 17px;
  letter-spacing: -0.26px;
  color: #0d1821;
}

.fa-arrow-right:before {
  display: none;
}

/*! Main dashboard */

/*! Accounts */
.pull-right__wrap {
  background-color: #fff;
  border-radius: 5px 5px 0 0;
}

.pull-right__wrap .tablinks:first-child {
  border-radius: 5px 0 0 0;
}

.pull-right__wrap .tablinks:last-child {
  border-radius: 0 5px 0 0;
}

#settings-form-wrap form {
  padding-left: 10px;
}

.platfotm__settings {
  background-color: #fff;
  border: 0;
  padding: 0 clamp(10px, 1vw, 20px);
  width: calc(100% - 180px);
}

.platfotm__settings.is-active {
  width: calc(100% - 40px);
}

.nav-tab__toggler {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  font-family: var(--gotham-font);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 40px;
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
}

.nav-tab__toggler path {
  fill: #fff;
  transition: fill 0.2s;
}

.nav-tab__toggler:hover {
  background-color: transparent;background-image: linear-gradient(90deg, #2F55D4 21%, #6610f2 100%);
  color: #fff;
}

.nav-tab__toggler:hover path {
  fill: #000;
}

.nav-tab__switchable {
  background-color: #fff;
}

.nav-tab__switchable .nav-tab {
  transition: width 0.5s, font-size 0.1s;
  display: flex;
  align-items: center;
  min-height: 35px;
  min-width: 180px;
}

.nav-tab__switchable .nav-tab.is-active {
  font-size: 0;
  width: 40px;
  min-width: auto;
}

.nav-tab__toggler.is-active {
  width: max-content;
}

.nav-tab__switchable .nav-tab__toggler.is-active svg {
  transform: rotate(180deg);
}

@media screen and(min-width: 600px) {
  .nav-tab__switchable .nav-tab:hover,
  .nav-tab__switchable .nav-tab-active:hover {
    font-size: 14px;
    min-width: 180px;
    width: 100%;
  }
}

.form-table__input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  gap: 20px;
  padding-right: 20px;
}

.form-table__input input.regular-text {
  border: none;
  background-color: transparent;
  width: 100%;
  padding: 15px 10px;
  border-radius: 4px 0 0 4px;
}

.form-table__input .spci_btn {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
}

.introbox__popup-button {
  cursor: pointer;
  width: 150px;
  flex-shrink: 0;
}

/* Verification block */
.entrance-page__content {
  margin: 0 auto;
  color: #85889d;
  display: flex;
  max-width: 500px;
  width: 100%;
  font-family: var(--gotham-font);
  display: flex;
  flex-direction: column;
}

.entrance-page__content.is-hidden {
  display: none;
}

.entrance-page__content--login .entrance-page__form-input--email {
  border-radius: 6px 6px 0 0;
}

.entrance-page__content--verification {
  text-align: center;
}

.entrance-page__content--verification .mailbox-info {
  margin-bottom: 20px;
  display: block;
}

.entrance-page__content--verification .check-email {
  color: #000;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 10px;
}

.entrance-page__content--verification
  .verification-input::-webkit-outer-spin-button,
.entrance-page__content--verification
  .verification-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.entrance-page__content--verification .reset-wrap {
  display: flex;
  justify-content: center;
  max-height: 0;
  margin-bottom: clamp(35px, 4vw, 45px);
  transition: max-height 0.2s;
}

.entrance-page__content--verification .reset-wrap.is-hidden {
  overflow: hidden;
}

.entrance-page__content--verification .reset-button {
  cursor: pointer;
  display: inline-block;
  transition: color 0.2s;
  font-weight: 500;
}

.entrance-page__content--verification .reset-button:hover {
  color: #561ef2;
}

.entrance-page__content--verification .verification-box {
  width: 100%;
}

/* .entrance-page__content--verification .verification-box.is-hidden {
  display: none;
} */

.entrance-page__content--verification .verification-box__text {
  border-radius: 6px;
  border: 1px solid #d7deeb;
  width: 100%;
  padding: 20px 10px;
  margin-bottom: 93px;
  background-color: #fff;
}

.entrance-page__content--verification .verification-message {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 500;
  background-color: #fce7ed;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid #e48c8c;
  text-align: center;
  justify-content: center;
}

.entrance-page__content--verification .verification-message p {
  color: #000;
  padding-left: 30px;
  position: relative;
}

.entrance-page__content--verification .verification-message p::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/icons/warning.svg);
}

.entrance-page__content--verification .verification-message span {
  display: inline-block;
  color: #0c65d4;
  cursor: pointer;
  margin-bottom: 0;
}

.entrance-page__content--verification .verification-message.is-hidden {
  display: none;
}

.entrance-page__title {
  font-weight: 700;
  font-size: clamp(32px, 3vw, 41px);
  line-height: clamp(35px, 3vw, 53px);
  color: #000;
  margin-bottom: 30px;
}

.entrance-page__subtitle {
  font-size: 16px;
  line-height: 24px;
  color: #696175;
  margin-bottom: clamp(20px, 3vw, 35px);
  text-align: center;
}

.entrance-page__subtitle--verification {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 10px;
}

.entrance-page__subtitle--verification .verification-addres {
  display: inline-block;
  color: #000;
  font-weight: 500;
}

.entrance-page__social {
  width: 100%;
  margin-bottom: clamp(15px, 3vw, 32px);
}

.entrance-page__social ul {
  display: grid;
  grid-template: 1fr / repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
}

.entrance-page__social li {
  width: 100%;
}

.entrance-page__social-link {
  display: flex;
  border-radius: 7px;
  color: #fff;
  height: 49px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  transition: background-color 0.3s;
}

.entrance-page__social-link--facebook {
  background-color: #3b5998;
  background-image: url(../img/icons/facebook-icon.svg);
}

.entrance-page__social-link--facebook:hover {
  background-color: #0c65d4;
}

.entrance-page__social-link--twitter {
  background-color: #41a1f2;
  background-image: url(../img/icons/twitter-icon.svg);
}

.entrance-page__social-link--twitter:hover {
  background-color: #0d8cda;
}

.entrance-page__social-link--linkedin {
  background-color: #2e78b6;
  background-image: url(../img/icons/linkedin-icon.svg);
}

.entrance-page__social-link--linkedin:hover {
  background-color: #005c8c;
}

.entrance-page__separator {
  font-size: 15px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(15px, 3vw, 34px);
  width: 100%;
  overflow: hidden;
}

.entrance-page__separator span {
  padding: 3px 22px;
  position: relative;
  z-index: 2;
}

.entrance-page__separator span::before,
.entrance-page__separator span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d7deeb;
  z-index: 1;
}

.entrance-page__separator span::before {
  left: -100%;
}

.entrance-page__separator span::after {
  right: -100%;
}

.entrance-page__form {
  display: flex;
  justify-content: center;
  width: 100%;
}

.entrance-page__form--login {
  margin-bottom: 30px;
}

.entrance-page__form--verification {
  flex-direction: column;
  margin-bottom: 20px;
}

.entrance-page__form--verification form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.entrance-page__form--verification form div {
  display: flex;
  color: #000;
  font-size: clamp(25px, 3vw, 32px);
  color: #d7deeb;
}

.entrance-page__form--verification form div input + input {
  border-left: none;
}

.entrance-page__form--verification input {
  border-radius: 0;
  border: 1px solid #d7deeb;
  width: 100%;
  height: clamp(50px, 6vw, 70px);
  text-align: center;
  font-size: clamp(25px, 3vw, 32px);
  text-transform: uppercase;
  font-weight: 700;
}

.entrance-page__form--verification input:first-child {
  border-radius: 6px 0 0 6px;
}

.entrance-page__form--verification input:last-child {
  border-radius: 0 6px 6px 0;
}

.entrance-page__form-timer {
  text-align: center;
  margin-bottom: clamp(25px, 4vw, 45px);
  line-height: 1.3;
}

input.verification-input.red_border {
  border-color: red;
}

input.verification-input.green_border {
  border-color: green;
}

.entrance-page__form-timer #time {
  display: inline-block;
  font-weight: 700;
  color: #000;
}

.entrance-page__form form {
  width: 100%;
}

.entrance-page__form-remember {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, margin 0.3s;
}

.entrance-page__form-remember.is-active {
  margin: 16px 0 0 0;
}

.entrance-page__form-remember .remember-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.entrance-page__form-remember .check-wrap {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  line-height: 20px;
}

.entrance-page__form-remember .check-box {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  opacity: 0;
}

.entrance-page__form-remember .check-style {
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background-color: #fff;
  margin-right: 13px;
}

.entrance-page__form-remember .check-style::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  background-color: transparent;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s, background-color 0.3s;
}

.entrance-page__form-remember .check-box:checked + .check-style::before {
  content: "";
  position: absolute;
  background-color: #561ef2;
  transform: translate(-50%, -50%) scale(1);
}

.entrance-page__form-remember--wrap {
  display: grid;
  grid-template: 1fr/1fr 1fr;
}

.entrance-page__form-input {
  padding: 16px 70px 16px 43px;
  background-repeat: no-repeat;
  background-position: left center;
  border: 1px solid #d7deeb;
}

.entrance-page__form-input--name {
  border-radius: 6px 6px 0 0;
  background: url(../img/icons/user-icon.svg) left 19.4px center no-repeat #fff;
  border-bottom: none;
}

.entrance-page__form-input--name.is-checked {
  background: url(../img/icons/user-icon.svg) left 19.4px center no-repeat,
    #fff url(../img/icons/check.svg) right 26px center no-repeat;
}

.entrance-page__form-input--email {
  background: url(../img/icons/email-icon.svg) left 18px center no-repeat #fff;
  border-radius: 0;
}

.entrance-page__form-input--email.is-checked {
  background: url(../img/icons/email-icon.svg) left 18px center no-repeat,
    #fff url(../img/icons/check.svg) right 26px center no-repeat;
}

.entrance-page__form-input--password {
  border-radius: 0 0 6px 6px;
  background-image: url(../img/icons/pass-icon.svg);
  background-position: left 20.4px center;
  padding-right: 70px;
  border-top: none;
}

.entrance-page__form-input--forgot {
  border-radius: 6px;
}

.entrance-page__form-password {
  position: relative;
}

.entrance-page__form-password .show-password {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  background-image: url(../img/icons/show-pass-icon.svg);
  z-index: 2;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  cursor: pointer;
  transition: transform 0.3s;
}

.entrance-page__form-password .show-password.is-hidden {
  transform: translateY(-50%) scale(0);
}

.entrance-page__form-button {
  border: none;
  border-radius: 7px;
  color: #fff;
  padding: 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  transition: background-color 0.3s;
  margin-top: 23px;
  background-color: #0d3985;
}

.entrance-page__form-button:hover {
  background-color: #0a3072;
}

.entrance-page__form-button--registration {
  background-color: #561ef2;
}

.entrance-page__form-button--registration:hover {
  background-color: #4417be;
}

.entrance-page__form-button--forgot {
  cursor: pointer !important;
  text-align: center;
}

.entrance-page__form #message {
  background: #fff;
  color: #000;
  position: relative;
  border-radius: 7px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, margin 0.2s ease-in-out;
}

.entrance-page__form #message.is-active {
  border: 1px solid #d7deeb;
  margin-top: 5px;
  margin-bottom: 5px;

}

.entrance-page__form #message .message-inner {
  padding: 20px 20px 10px;
}

.entrance-page__form #message p {
  padding: 0 10px 10px 25px;
  position: relative;
  line-height: 1.2;
}

.entrance-page__form #message p::before {
  position: absolute;
  content: "";
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.entrance-page__form .valid {
  color: #059105;
}

.entrance-page__form .invalid {
  color: #85889d;
}

.entrance-page__form .valid:before {
  background-image: url(../img/icons/check.svg);
}

.entrance-page__form .invalid:before {
  background-image: url(../img/icons/circle.svg);
}

.entrance-page__form--forgotpass {
  margin-bottom: 30px;
}

.entrance-page__privacy {
  font-size: 16px;
  line-height: 21px;
  color: #85889d;
  text-align: center;
}

.entrance-page__privacy a {
  color: #561ef2;
}

.entrance-page__right-buttons {
  height: clamp(40px, 3vw, 50px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.entrance-page__view-toggler {
  color: #000;
  font-size: 15px;
  line-height: 20px;
  font-family: inherit;
}

.entrance-page__view-toggler span {
  font-weight: 700;
}

.entrance-page__view-toggler.is-hidden {
  display: none;
}

.entrance-page__forgot-btn {
  color: #561ef2;
  cursor: pointer;
  margin-top: 16px;
  margin-left: auto;
  display: inline-block;
  min-height: 22px;
}

.entrance-page__forgot-back {
  align-self: flex-start;
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #000;
  cursor: pointer;
}

.entrance-page__forgot-back::before {
  position: absolute;
  content: "";
  width: 17px;
  height: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/icons/arrow-back-icon.svg);
}

.entrance-page__emails-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: clamp(15px, 2vw, 28px);
  row-gap: 20px;
  margin-bottom: 30px;
}

.entrance-page__emails-links a {
  padding-left: 32px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #000;
}

.entrance-page__emails-links a::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.entrance-page__emails-links a:nth-child(1):before {
  background-image: url(../images/icons/gmail-icon.svg);
}

.entrance-page__emails-links a:nth-child(2):before {
  background-image: url(../images/icons/outlook-icon.svg);
}

.avalible-fields {
  background-color: #ebf8e1;
  border-radius: 6px;
  padding: clamp(15px, 2vw, 19px);
  color: #12222e;
  margin-bottom: 20px;
}

.avalible-fields__header-select {
  width: 100%;
}

.avalible-fields__title {
  margin-bottom: 15px;
}

.avalible-fields__ac-container label {
  display: block;
  color: #0d1821;
  font-size: 19px;
  cursor: pointer;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 2px solid #000;
  position: relative;
}

.avalible-fields__ac-container label::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  right: 0;
  background-image: url(../images/icons/angle-down-bk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

.avalible-fields__ac-container input[type="checkbox"] {
  display: none;
}

.avalible-fields__ac-container input:checked ~ div.avalible-fields__ac-inner {
  margin-top: -1px;
  overflow: hidden;
  height: 0px;
}

.avalible-fields__ac-container input:checked ~ label {
  border-color: transparent;
  padding-bottom: 0;
  margin-bottom: 0;
}

.avalible-fields__ac-container input:checked ~ label::after {
  transform: rotate(180deg);
}

.app-links {
  margin-top: auto;
}

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

.profile__right .card-body .row {
  position: relative;
}
.profile__right .card-body .row span.spci_btn {
  position: absolute;
  right: 10px;
}

div#verification_error {
  color: red;
}
div#verification_success {
  color: green;
}
.sp-dashboard-btn button a {
  text-transform: capitalize;
}
.menu-top-wrap ul li a {
 transition: all 0.3s;
 color: #ffffff;
}

.menu-top-wrap a::before {
 visibility: visible !important;
 display: none;
}

.menu-top-wrap ul li a:hover, .menu-top-wrap ul li a:visited {
 visibility: visible;
}

/*** Tooltip design start *********/

.introjs-tooltip {
  background-color: #e3ecfe;
  -webkit-box-shadow: 0 3px 30px rgb(118 42 175 / 30%);
  box-shadow: 0 3px 30px rgb(118 42 175 / 30%);
}
.introjs-tooltip-title {
  color: #6610f2;
}
.introjs-skipbutton {
  color: #6610f2;
}

.introjs-bullets ul li a.active {
  background: #6610f2;
}
.introjs-bullets ul li a {
  background: #ffffff;
}
.introjs-arrow.top {
  border-bottom-color: #e3ecfe;
}

.introjs-button {
  
  border: 1px solid #2F55D4;
  text-shadow: 1px 1px 0 #6610f2;
  color: #ffffff;
  background-color: #6610f2;
}

.introjs-disabled {
  text-shadow: none;
}
.introjs-disabled {
  color: #9e9e9e;
  border-color: #bdbdbd;
  background-color: #f4f4f4;
}

.introjs-button:focus {
  background-color: #2F55D4;
 box-shadow: none; 
  border: 1px solid #2F55D4;
  color: #fff;
}

.introjs-tooltipbuttons {
  border-top: 1px solid #2F55D4;
}
.introjs-helperLayer {
    box-shadow: #2F55D4 0px 0px 1px 2px, rgb(33 33 33 / 50%) 0px 0px 0px 5000px;
}
div#error {
  color: red;
  padding: 18px 5px;
}

/**For modal*/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #fff;
  color: black;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #fff;
  color: black;
}
iframe#viewlog_addon {
    width: 100%;
    border: none;
    height: 100vh;
}

/** CSS for upgrade Chat **/

header#sperse_header {
  color: white;
    background-color: #100a33;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  width: 100%;
  z-index: 1201;
  box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
  transition: width 195ms cubic-bezier(0.4, 0, 0.6, 1) 0ms,margin 195ms cubic-bezier(0.4, 0, 0.6, 1) 0ms;
}
.minspace {
  display: flex;
  min-height: 64px;
  padding: 0px 8px;
  align-items: center;
  justify-content: flex-end;
}
.style-chooser,.style-chooser input[type=search]{
  background: #60b219 !important;
  border: none;
  color: white;
  font-size: 15px;
}
.integrations-upd__select-inner {

	margin: 15px 0 0 !important;
	padding: unset !important;
	background-color: unset !important;
	background-image: none !important;
	outline: none !important;
	border:none!important;
}
input[type=search]{
  padding: 0 8px;
    line-height: 2;
    min-height: 30px;
}
.v-select.vs--single.vs--searchable, .v-select.vs--searchable{
  background: white;
  border-radius: 4px;
  font-size: medium;
  padding: 1px 0;
}

#settings-form-wrap form {
  float: left;
  left: 30px;
  width: 100%;
  padding-left: 10px;
}

.form-table__input-wrap {
  display: grid;
  grid-template: 1fr / 1fr 30px;
  align-items: center;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  gap: 5px;
}

input.basic-text {
  width: 80%;
  padding: 5px 10px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  margin: 0;
  font-size: 18px;
  color: #319fe0;
  text-align: left;
  line-height: 2;
    min-height: 30px;
}
.form-table__input-wrap input {
  border: none;
  width: 100%;
  outline: none;
}
input.basic-text {
  font-size: clamp(14px, 2vw, 18px);
}
.sperse-platform input {
  outline: none !important;
}

.spci_btn {
  width: 19px;
  height: 24px;
  margin: -20px 0 0 2px;
}
.spci_btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#settings-form-wrap .spci_btn {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination_center{
  display: grid;
  grid-template-columns: repeat(2,auto);
}
.pagination_pages_total{
  padding: 12px;
  color: #0d1821;
}
.integrations__select-inner {
  display: flex;
  gap: 10px;
}
a.inactive {
  cursor: default;
}
.nav-tab__filter input {
  width: 100%;
  border-color: #ccc;
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  padding-left: 15px;
  color: #000;
  min-height: 35px;
    border-right: 1px solid #ccc;
}
.platform__page .tab.bottom-line{
  margin-bottom: 0;
}

div#navTabWrapper {
  max-height: 1000px;
  overflow-y: scroll;
  overflow-x: hidden;
}
div#navTabWrapper::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

div#navTabWrapper::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

div#navTabWrapper::-webkit-scrollbar-thumb
{
	background-color: rgb(8 12 20);
}

.registration__input.error {
  border-color: #ff0000;
}
.filter-input-wrap {
  padding: 0 20px 0 25px;
  margin-bottom: 20px;
}
.filter-input {
  padding: 10px 40px 10px 10px;
  line-height: 20px;
  background: #fff;
  text-align: left;
  border: 1px solid #cedbe3;
  border-radius: 4px;
  width: 100%;
  outline: none;
  font-size: 15px;
  color: #000;
  font-weight: 400;
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/VisualEditor_-_Icon_-_Search-big.svg/1200px-VisualEditor_-_Icon_-_Search-big.svg.png);
  background-position: right 5px center;
  background-repeat: no-repeat;
  background-size: 30px;
}
.filter-input-wrap .filter-input {
  background-color: #e1f2fc;
}