@charset "UTF-8";
fieldset[disabled] .multiselect {
  pointer-events: none;
}

.multiselect__spinner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 48px;
  height: 35px;
  background: #fff;
  display: block;
}

.multiselect__spinner:after, .multiselect__spinner:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 2px solid transparent;
  border-top-color: #41b883;
  box-shadow: 0 0 0 1px transparent;
}

.multiselect__spinner:before {
  animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  animation-iteration-count: infinite;
}

.multiselect__spinner:after {
  animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  animation-iteration-count: infinite;
}

.multiselect__loading-enter-active, .multiselect__loading-leave-active {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

.multiselect__loading-enter, .multiselect__loading-leave-active {
  opacity: 0;
}

.multiselect, .multiselect__input, .multiselect__single {
  font-family: inherit;
  font-size: 16px;
  touch-action: manipulation;
}

.multiselect {
  box-sizing: content-box;
  display: block;
  position: relative;
  width: 100%;
  min-height: 40px;
  text-align: left;
  color: #35495e;
}

.multiselect * {
  box-sizing: border-box;
}

.multiselect:focus {
  outline: none;
}

.multiselect--disabled {
  background: #ededed;
  pointer-events: none;
  opacity: 0.6;
}

.multiselect--active {
  z-index: 50;
}

.multiselect--active:not(.multiselect--above) .multiselect__current, .multiselect--active:not(.multiselect--above) .multiselect__input, .multiselect--active:not(.multiselect--above) .multiselect__tags {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.multiselect--active .multiselect__select {
  transform: rotate(180deg);
}

.multiselect--above.multiselect--active .multiselect__current, .multiselect--above.multiselect--active .multiselect__input, .multiselect--above.multiselect--active .multiselect__tags {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.multiselect__input, .multiselect__single {
  position: relative;
  display: inline-block;
  min-height: 20px;
  line-height: 20px;
  border: none;
  border-radius: 5px;
  background: #fff;
  padding: 0 0 0 5px;
  width: 100%;
  transition: border 0.1s ease;
  box-sizing: border-box;
  margin-bottom: 8px;
  vertical-align: top;
}

.multiselect__input:-ms-input-placeholder {
  color: #35495e;
}

.multiselect__input::-moz-placeholder {
  color: #35495e;
}

.multiselect__input::placeholder {
  color: #35495e;
}

.multiselect__tag ~ .multiselect__input, .multiselect__tag ~ .multiselect__single {
  width: auto;
}

.multiselect__input:hover, .multiselect__single:hover {
  border-color: #cfcfcf;
}

.multiselect__input:focus, .multiselect__single:focus {
  border-color: #a8a8a8;
  outline: none;
}

.multiselect__single {
  padding-left: 5px;
  margin-bottom: 8px;
}

.multiselect__tags-wrap {
  display: inline;
}

.multiselect__tags {
  min-height: 40px;
  display: block;
  padding: 8px 40px 0 8px;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  background: #fff;
  font-size: 14px;
}

.multiselect__tag {
  position: relative;
  display: inline-block;
  padding: 4px 26px 4px 10px;
  border-radius: 5px;
  margin-right: 10px;
  color: #fff;
  line-height: 1;
  background: #41b883;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.multiselect__tag-icon {
  cursor: pointer;
  margin-left: 7px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-weight: 700;
  font-style: normal;
  width: 22px;
  text-align: center;
  line-height: 22px;
  transition: all 0.2s ease;
  border-radius: 5px;
}

.multiselect__tag-icon:after {
  content: "×";
  color: #266d4d;
  font-size: 14px;
}

.multiselect__tag-icon:focus, .multiselect__tag-icon:hover {
  background: #369a6e;
}

.multiselect__tag-icon:focus:after, .multiselect__tag-icon:hover:after {
  color: #fff;
}

.multiselect__current {
  min-height: 40px;
  overflow: hidden;
  padding: 8px 30px 0 12px;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
}

.multiselect__current, .multiselect__select {
  line-height: 16px;
  box-sizing: border-box;
  display: block;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
}

.multiselect__select {
  position: absolute;
  width: 40px;
  height: 38px;
  right: 1px;
  top: 1px;
  padding: 4px 8px;
  text-align: center;
  transition: transform 0.2s ease;
}

.multiselect__select:before {
  position: relative;
  right: 0;
  top: 65%;
  color: #999;
  margin-top: 4px;
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: "";
}

.multiselect__placeholder {
  color: #adadad;
  display: inline-block;
  margin-bottom: 10px;
  padding-top: 2px;
}

.multiselect--active .multiselect__placeholder {
  display: none;
}

.multiselect__content-wrapper {
  position: absolute;
  display: block;
  background: #fff;
  width: 100%;
  max-height: 240px;
  overflow: auto;
  border: 1px solid #e8e8e8;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 50;
  -webkit-overflow-scrolling: touch;
}

.multiselect__content {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  min-width: 100%;
  vertical-align: top;
}

.multiselect--above .multiselect__content-wrapper {
  bottom: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
  border-top: 1px solid #e8e8e8;
}

.multiselect__content::webkit-scrollbar {
  display: none;
}

.multiselect__element {
  display: block;
}

.multiselect__option {
  display: block;
  padding: 12px;
  min-height: 40px;
  line-height: 16px;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.multiselect__option:after {
  top: 0;
  right: 0;
  position: absolute;
  line-height: 40px;
  padding-right: 12px;
  padding-left: 20px;
  font-size: 13px;
}

.multiselect__option--highlight {
  background: #41b883;
  outline: none;
  color: #fff;
}

.multiselect__option--highlight:after {
  content: attr(data-select);
  background: #41b883;
  color: #fff;
}

.multiselect__option--selected {
  background: #f3f3f3;
  color: #35495e;
  font-weight: 700;
}

.multiselect__option--selected:after {
  content: attr(data-selected);
  color: silver;
}

.multiselect__option--selected.multiselect__option--highlight {
  background: #ff6a6a;
  color: #fff;
}

.multiselect__option--selected.multiselect__option--highlight:after {
  background: #ff6a6a;
  content: attr(data-deselect);
  color: #fff;
}

.multiselect--disabled .multiselect__current, .multiselect--disabled .multiselect__select {
  background: #ededed;
  color: #a6a6a6;
}

.multiselect__option--disabled {
  background: #ededed !important;
  color: #a6a6a6 !important;
  cursor: text;
  pointer-events: none;
}

.multiselect__option--group {
  background: #ededed;
  color: #35495e;
}

.multiselect__option--group.multiselect__option--highlight {
  background: #35495e;
  color: #fff;
}

.multiselect__option--group.multiselect__option--highlight:after {
  background: #35495e;
}

.multiselect__option--disabled.multiselect__option--highlight {
  background: #dedede;
}

.multiselect__option--group-selected.multiselect__option--highlight {
  background: #ff6a6a;
  color: #fff;
}

.multiselect__option--group-selected.multiselect__option--highlight:after {
  background: #ff6a6a;
  content: attr(data-deselect);
  color: #fff;
}

.multiselect-enter-active, .multiselect-leave-active {
  transition: all 0.15s ease;
}

.multiselect-enter, .multiselect-leave-active {
  opacity: 0;
}

.multiselect__strong {
  margin-bottom: 8px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
}

[dir=rtl] .multiselect {
  text-align: right;
}

[dir=rtl] .multiselect__select {
  right: auto;
  left: 1px;
}

[dir=rtl] .multiselect__tags {
  padding: 8px 8px 0 40px;
}

[dir=rtl] .multiselect__content {
  text-align: right;
}

[dir=rtl] .multiselect__option:after {
  right: auto;
  left: 0;
}

[dir=rtl] .multiselect__clear {
  right: auto;
  left: 12px;
}

[dir=rtl] .multiselect__spinner {
  right: auto;
  left: 1px;
}

@keyframes spinning {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(2turn);
  }
}
@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Light.otf?5bbae07a4ee82643ea9213c810e097f8") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Regular.otf?068dd4e5de9f57ebcb2f7836746a144a") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Medium.otf?3d949f583ac8ba9c100b1f1c7dfa5a23") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Bold.otf?efc6252d6f02ee46d15a50c470be16b2") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Black.otf?917d7eed483f45ca4216d32ae737c473") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-018Thin.otf?4c5a3bbabb6429590b0311fb23e3aafd) format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-036Exlig.otf?5bccbd67a40d1da8015db04494477187) format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-054Light.otf?a534a91a4942c407fcb0875012e71c7a) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-072Reg.otf?f83ef56b50eac66bb68223b9aeaa2fb2) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-090Medi.otf?a691931007b096c1a3f15004b354270d) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-108Bold.otf?eb420a79d65111c8f7ec561b19d37ecc) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-126Heavy.otf?dac108ac47ab9fdcb1a4176d7e5641f7) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-144Black.otf?5262e2f3c98251f4e69edd2b79564998) format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.color-red {
  color: #CF1239 !important;
}

.color-green {
  color: #73f1f4 !important;
}

.color-orange {
  color: #f9af2c !important;
}

.color-blue {
  color: #007BFF !important;
}

.color-gray {
  color: #a4a4a4 !important;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #000 !important;
}

.color-dark {
  color: #1C1B29 !important;
}

.color-tyrkys {
  color: #00A3B8 !important;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
footer,
header,
main,
nav,
section {
  display: block;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

small {
  font-size: 80%;
}

img {
  border: 0;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

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

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input [type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

small {
  display: inline-block;
  line-height: 1.2em;
}

html,
* {
  box-sizing: border-box;
}

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

*:focus {
  outline: none;
}

* {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

select {
  cursor: pointer;
}

/* clearfix */
.group:before,
.group:after {
  content: "";
  display: table;
}

.group:after {
  clear: both;
}

.clear {
  clear: both;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
}

ul li {
  font-size: 15px;
}

select {
  border: 1px solid #dbe1e8;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-user-select: none;
}

select::-ms-expand {
  /* for IE 11 */
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  text-align: center;
}

.container {
  max-width: 1240px !important;
  padding: 0 30px !important;
  margin: 0 auto;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.owh {
  overflow: hidden;
}

.d-none {
  display: none !important;
}

.color-black {
  color: #000;
}

::-webkit-input-placeholder {
  color: #000;
}

:-moz-placeholder {
  color: #000;
}

::-moz-placeholder {
  opacity: 1;
  color: #000;
}

:-ms-input-placeholder {
  color: #000;
}

.ham-wrap {
  display: none;
  width: 50px;
  padding-right: 8px;
  text-align: right;
  height: 40px;
  cursor: pointer;
}

.hamburger {
  text-align: right;
}

.hamburger-menu,
.hamburger-menu:after,
.hamburger-menu:before {
  width: 30px;
  height: 3px;
}

.hamburger-menu {
  position: relative;
  transform: translateY(25px);
  background: rgb(255, 255, 255);
  transition: all 0ms 200ms;
}

.hamburger-menu.animate {
  background: rgba(0, 0, 0, 0);
}

.hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: rgb(255, 255, 255);
  transition: bottom 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: rgb(255, 255, 255);
  transition: top 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:after {
  top: 0;
  background: rgb(255, 255, 255);
  transform: rotate(45deg);
  transition: top 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-menu.animate:before {
  bottom: 0;
  background: rgb(255, 255, 255);
  transform: rotate(-45deg);
  transition: bottom 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger .line {
  width: 30px;
  height: 5px;
  background-color: #73f1f4;
  display: block;
  margin: 4px 0;
  margin-left: auto;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger .line:nth-child(3) {
  width: 20px;
}

.ham-wrap:hover .hamburger .line:nth-child(3),
.hamburger.active .line:nth-child(3) {
  width: 30px;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.blogs .hamburger.active .line {
  background-color: #73f1f4;
}
.blogs .hamburger .line {
  background-color: #1c1b29;
}

@media (prefers-color-scheme: dark) {
  .blogs .hamburger.active .line {
    background-color: #ecf0f1;
  }
  .blogs .hamburger .line {
    background-color: #1c1b29;
  }
}
.wrap-label input[type=radio],
.wrap-label input[type=checkbox] {
  display: none;
}

.wrap-label input[type=radio] + label span,
.wrap-label input[type=checkbox] + label span {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 7px 0 0;
  vertical-align: middle;
  border: 2px solid #dbe1e8;
  background: #ffffff;
  border-radius: 4px;
  cursor: pointer;
}

.wrap-label input[type=radio] + label span {
  border-radius: 50%;
  border: 1px solid #dbe1e8;
  background: #f5f6fb;
  box-shadow: inset 0px 2px 3px #b9b9b9;
}

.wrap-label input[type=checkbox]:checked + label span {
  border-color: #73f1f4;
}

.wrap-label input[type=radio]:checked + label span:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CF1239;
  box-shadow: 0px 2px 1px #b8b8bc;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.wrap-label label b {
  font-weight: 500;
  position: relative;
  top: 1px;
}

.check-td .wrap-label input[type=checkbox]:checked + label b {
  color: #73f1f4;
}

.wrap-label.noclick {
  pointer-events: none;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.succes {
  color: #73f1f4;
}

.fail {
  color: #CF1239;
}

body.w-oh,
body.w-oh-ham {
  overflow: hidden;
}
body.w-oh .body-wrap,
body.w-oh header,
body.w-oh-ham .body-wrap,
body.w-oh-ham header {
  overflow-y: scroll;
}

p {
  color: #667588;
}

.txt-r {
  text-align: right;
}

[x-cloak] {
  display: none !important;
}

@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Light.otf?5bbae07a4ee82643ea9213c810e097f8") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Regular.otf?068dd4e5de9f57ebcb2f7836746a144a") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Medium.otf?3d949f583ac8ba9c100b1f1c7dfa5a23") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Bold.otf?efc6252d6f02ee46d15a50c470be16b2") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CeraPro";
  src: url("/fonts/TypeMates - Cera Pro Black.otf?917d7eed483f45ca4216d32ae737c473") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-018Thin.otf?4c5a3bbabb6429590b0311fb23e3aafd) format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-036Exlig.otf?5bccbd67a40d1da8015db04494477187) format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-054Light.otf?a534a91a4942c407fcb0875012e71c7a) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-072Reg.otf?f83ef56b50eac66bb68223b9aeaa2fb2) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-090Medi.otf?a691931007b096c1a3f15004b354270d) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-108Bold.otf?eb420a79d65111c8f7ec561b19d37ecc) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-126Heavy.otf?dac108ac47ab9fdcb1a4176d7e5641f7) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ThreeSix";
  src: url(/fonts/ThreeSix10Pro-144Black.otf?5262e2f3c98251f4e69edd2b79564998) format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-weight: 400;
  line-height: normal;
  font-family: "CeraPro", sans-serif;
  font-size: 15px;
}

.advance-filter-wrap body {
  font-weight: 400;
  line-height: normal;
  font-family: "CeraPro", sans-serif;
  font-size: 15px;
}
.advance-filter-wrap body header .lng-wrap a.contact-button:hover {
  color: #1C1B29;
}
.advance-filter-wrap body header p,
.advance-filter-wrap body footer p {
  margin: 15px 0;
}
.advance-filter-wrap body header ol,
.advance-filter-wrap body header ul,
.advance-filter-wrap body footer ol,
.advance-filter-wrap body footer ul {
  margin-bottom: 0;
}
.advance-filter-wrap body header a:hover,
.advance-filter-wrap body footer a:hover {
  color: inherit;
}

h1 {
  font-size: 60px;
  font-family: "CeraPro", sans-serif;
  margin: 0;
}

h2 {
  font-family: "CeraPro", sans-serif;
  font-size: 40px;
}

h3 {
  font-size: 46px;
  line-height: 60px;
  margin: 43px 0;
  font-family: "CeraPro", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: #1C1B29;
}

.small-font {
  font-size: 13px;
}

.important {
  font-size: 36px;
  line-height: 46px;
}

p {
  line-height: normal;
}

a p {
  color: #667588;
}

.text-three {
  font-family: "ThreeSix", sans-serif;
}

strong.text-three {
  font-weight: 800;
}

.button {
  display: inline-block;
  font-family: "ThreeSix", sans-serif;
  font-size: 18px;
  line-height: 1em;
  font-weight: 700;
  color: #1C1B29;
  border: 0;
  background: #73f1f4;
  text-align: center;
  padding: 17px 32px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover {
  background: #fff;
}
.button.small {
  font-size: 16px;
  padding: 8px 12px 6px;
  border-radius: 6px;
}

.practive-item-wrap .button,
#demo .button {
  border: 3px solid #73f1f4;
}

input, select, textarea {
  border: 0;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  background: #fff;
  color: #000;
  border-radius: 3px;
}

input {
  font-size: 18px;
  margin-bottom: 10px;
}

textarea {
  height: auto;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  font-size: 18px;
  padding: 16px 20px;
  height: 150px;
  margin-bottom: 40px;
}

select {
  padding-right: 42px;
  background-image: url("/frontend/img/icon/i-select.svg");
  background-position: center right 15px;
  background-repeat: no-repeat;
  background-size: 20px auto;
}

::-webkit-input-placeholder {
  font-size: 12px;
  color: #667588;
}

:-moz-placeholder {
  font-size: 12px;
  color: #667588;
}

::-moz-placeholder {
  font-size: 12px;
  opacity: 1;
  color: #667588;
}

:-ms-input-placeholder {
  font-size: 12px;
  color: #667588;
}

#pop-up {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(29, 36, 69, 0.95);
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  overflow: auto;
  overflow-y: scroll;
  scrollbar-width: thin;
  -ms-overflow-style: none;
}
#pop-up::-webkit-scrollbar {
  width: 0;
  height: 0;
}
#pop-up .pop-up-wrap {
  min-height: 0;
  padding: 0 30px;
}
#pop-up .pop-up-wrap .pop-content {
  margin: 30px auto;
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
}
#pop-up .pop-up-wrap .pop-content.size-big {
  max-width: 1080px;
}
#pop-up .pop-up-wrap .pop-content.size-medium {
  max-width: 535px;
}
#pop-up .pop-up-wrap .pop-content.size-small {
  max-width: 350px;
}
#pop-up .pop-up-wrap .pop-content .gray-box {
  padding: 30px 40px;
  background: #f5f5f5;
}
#pop-up .pop-up-wrap .pop-content .white-box {
  padding: 30px 40px;
}

#pop-up .pop-up-wrap .pop-content .row.gray-box {
  padding: 20px 40px;
}
#pop-up .pop-up-wrap .pop-content .row.gray-box .left h2 {
  float: left;
  margin: 0;
  margin-right: 58px;
}
#pop-up .pop-up-wrap .pop-content .row.gray-box .left h2 + .link {
  margin-top: 15px;
}
#pop-up .pop-up-wrap .pop-content .pop-close {
  display: inline-block;
  margin-top: 10px;
}
#pop-up .pop-up-wrap .pop-content .pop-close i {
  font-size: 22px;
}

#pop-up .pop-up-wrap .pop-content .gray-box.pridanie-zam {
  padding-left: 90px;
}

#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam {
  padding: 30px 90px;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec1, #pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec2, #pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec3 {
  position: relative;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec1 .c-step, #pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec2 .c-step, #pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec3 .c-step {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 38px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: #000;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: -60px;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec1 .c-step {
  top: -8px;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec1 .osz {
  padding: 20px 0;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec1 .osz .cislo-z {
  width: calc(20% - 12px);
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec1 .osz .meno-z {
  width: calc(30% - 12px);
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec1 .osz .email-z {
  width: calc(30% - 12px);
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec1 .osz .narodenie-z {
  width: calc(20% - 12px);
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec1 .osz .pozicia-z {
  width: calc(50% - 12px);
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec2 {
  padding-bottom: 50px;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec3 .group .left {
  width: 50%;
  padding-right: 6px;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec3 .group .left select {
  width: 100%;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec3 .group .right {
  width: 50%;
  padding-left: 6px;
  height: 40px;
  line-height: 40px;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec3 .group .right p {
  font-size: 12px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .sec3 .group .right p strong {
  color: #000;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam h3 {
  margin-bottom: 2px;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam h3 + p {
  margin-top: 0;
  margin-bottom: 50px;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .button-row {
  padding: 30px 0 20px;
}
#pop-up .pop-up-wrap .pop-content .white-box.pridanie-zam .button-row .button:first-child {
  margin-right: 8px;
}

#pop-up .pop-up-wrap .pop-content.success-box h3 {
  font-size: 24px;
  margin-top: 10px;
}
#pop-up .pop-up-wrap .pop-content.success-box h3 span {
  color: #73f1f4;
}
#pop-up .pop-up-wrap .pop-content.success-box h3 + p {
  font-size: 12px;
}
#pop-up .pop-up-wrap .pop-content.success-box h3 + p strong {
  color: #667588;
}
#pop-up .pop-up-wrap .pop-content.success-box a.link {
  margin: 20px 0;
}
#pop-up .pop-up-wrap .pop-content.success-box hr {
  border: 1px solid #dbe1e8;
  margin-bottom: 24px;
}
#pop-up .pop-up-wrap .pop-content.success-box.size-small .button {
  width: 100%;
  text-align: center;
  padding: 14px 10px;
}
#pop-up .pop-up-wrap .pop-content.success-box.size-small .button:after {
  position: static;
  margin: -20px 0;
  margin-left: 3px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  color: #fff;
  padding: 0 !important;
  transition: all 0.3s ease;
}
body:not(.blogs) header.scroll2 .header-wrap {
  padding: 15px 0;
}
body:not(.blogs) header.scroll2 .header-wrap .logo-wrap .logo {
  position: relative;
}
body:not(.blogs) header.scroll2 .header-wrap .logo-wrap .logo::before {
  content: "";
  display: inline-block;
  transition: all 0.6s ease;
  opacity: 1;
}
body:not(.blogs) header.scroll2 .header-wrap .logo-wrap .logo img {
  transition: all 0.6s ease;
  width: 25px;
  opacity: 0;
}
header.scroll {
  top: 0;
  z-index: 12;
}
.blogs header.scroll .header-wrap .nav-wrap nav .sub-menu {
  top: 20px;
}
header.scroll.scroll2 .header-wrap .nav-wrap nav .sub-menu {
  top: 20px;
}
header.scroll .header-wrap {
  background: #1d1e2c;
}
header.scroll .header-wrap .nav-wrap {
  margin-top: 0;
}
header .header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  transition: all 0.3s ease;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
header .header-wrap .container {
  position: relative;
}
header .header-wrap .logo-wrap {
  display: inline-block;
  min-height: 30px;
}
header .header-wrap .logo-wrap .logo {
  position: relative;
  z-index: 3;
}
header .header-wrap .logo-wrap .logo::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("/frontend/img/logo-mobil.svg") center center no-repeat;
  background-size: auto;
  background-size: 30px auto;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
}
header .header-wrap .logo-wrap img {
  transition: all 0.3s ease;
}
header .header-wrap .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  right: 30px;
  margin: auto;
}
header .header-wrap .nav-wrap > div:first-child {
  width: 100px;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 15px 16px;
  box-shadow: 0px 20px 40px rgba(28, 27, 41, 0.5);
  border-radius: 6px;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box:before {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 27px solid #fff;
  position: absolute;
  top: -6px;
  left: -572px;
  right: 0;
  margin: auto;
  z-index: 1;
  transition: all 0.3s ease;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 {
  padding-left: 24px;
  border-right: 1px solid rgba(105, 107, 118, 0.1);
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3:last-child {
  border-right: 0;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 ul {
  padding-bottom: 20px;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 ul li {
  padding-bottom: 10px;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 ul li a {
  transition: all 0.3s ease;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 ul li a:hover {
  color: #00A3B8;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box h5 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 20px;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box h5 a {
  color: #696B76;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box h5 a:hover {
  color: #1C1B29;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box ul li a {
  font-size: 16px;
  font-family: "ThreeSix", sans-serif;
  color: #1C1B29;
}
header .header-wrap .nav-wrap ul.nav-magic {
  margin-bottom: 0;
}
header .header-wrap .nav-wrap ul.nav-magic > li {
  display: inline-block;
}
header .header-wrap .nav-wrap ul.nav-magic > li > a {
  position: relative;
  display: inline-block;
  font-family: "ThreeSix", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 700;
  padding: 5px 8px;
  margin: 0 18px;
  transition: all 0.3s ease;
}
header .header-wrap .nav-wrap ul.nav-magic > li > a:hover {
  color: #73f1f4;
}
header .header-wrap .nav-wrap ul.nav-magic > li > a:hover ~ .sub-menu {
  transform: scale(1);
}
header .header-wrap .nav-wrap ul.nav-magic > li > a:hover:before {
  width: calc(100% - 16px);
}
header .header-wrap .nav-wrap ul.nav-magic > li > a:focus {
  color: #73f1f4;
}
header .header-wrap .nav-wrap ul.nav-magic > li > a:focus:before {
  width: calc(100% - 16px);
}
header .header-wrap .nav-wrap ul.nav-magic > li > a.active {
  color: #73f1f4;
}
header .lng-wrap a.button {
  font-size: 16px;
  padding: 9px 12px 7px;
  border-radius: 6px;
}
header .lng-wrap a.lng-change {
  display: none !important;
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  padding-left: 23px;
  opacity: 0.5;
  pointer-events: none;
}
header .lng-wrap a.lng-change:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/frontend/img/icon/i-lng.svg") center center no-repeat;
  position: absolute;
  top: 2px;
  left: 0;
}
header .lng-wrap a.lng-change.active, header .lng-wrap a.lng-change:hover {
  color: #73f1f4;
}
header .lng-wrap a.lng-change:first-child {
  margin-right: 30px;
}
header .lng-wrap a.lng-change:hover:before {
  width: 100%;
}
header .lng-wrap a.lng-change:focus:before {
  width: 100%;
}

@media only screen and (min-width: 1140px) {
  header .header-wrap .nav-wrap nav li:nth-child(2) {
    position: relative;
  }
  header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu {
    top: 30px;
    left: -40px;
    right: -40px;
    min-width: 155px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu .menu-box:before {
    left: -642px;
  }
  .home header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu .menu-box:before {
    left: -635px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu.user-login .menu-box:before {
    left: -582px;
  }
  .home header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu.user-login .menu-box:before {
    left: -565px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) {
    position: relative;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu {
    top: 30px;
    left: -30px;
    right: -30px;
    min-width: 155px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu.sub-sowa {
    left: -122px;
    width: 380px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu.sub-sowa .menu-box {
    width: 380px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box:before {
    left: 0 !important;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box .row .col-3 {
    flex: 0 0 150px;
    max-width: 150px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box .row .col-3 ul {
    padding-bottom: 10px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box .row .col-9 {
    flex: 0 0 350px;
    max-width: 350px;
    padding-left: 24px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box .row .col-9 .row .col:last-child {
    max-width: 105px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box .row .col-9 ul {
    padding-bottom: 10px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box .row .col-9 ul li {
    padding-bottom: 10px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box .row .col-9 ul li a {
    transition: all 0.3s ease;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box .row .col-9 ul li a:hover {
    color: #00A3B8;
  }
  header .header-wrap .nav-wrap nav li:nth-child(4) {
    position: relative;
  }
  header .header-wrap .nav-wrap nav li:nth-child(4) .sub-menu {
    top: 30px;
    left: -20px;
    right: -20px;
    min-width: 155px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(4) .sub-menu .menu-box:before {
    left: 0 !important;
  }
  header .header-wrap .nav-wrap nav li:nth-child(4) .sub-menu .menu-box .row .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  header .header-wrap .nav-wrap nav li:nth-child(4) .sub-menu .menu-box .row .col-3 ul {
    padding-bottom: 10px;
  }

  .home header:not(.scroll) .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu .menu-box:before {
    left: -446px;
  }
  .home header:not(.scroll) .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu.user-login .menu-box:before {
    left: -385px;
  }
  .home header:not(.scroll) .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box:before {
    left: -137px;
  }

  header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu {
    transform: scale(0);
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu {
    transform: scale(0);
  }
  header .header-wrap .nav-wrap nav li.sub-menu-li {
    position: relative;
  }
  header .header-wrap .nav-wrap nav li.sub-menu-li .sub-menu {
    transform: scale(0);
  }
  header .header-wrap .nav-wrap nav li .sub-menu {
    justify-content: center;
    padding-top: 20px;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    max-width: 815px;
    margin: 0 auto;
    transition: all 0.3s ease;
    z-index: 1;
  }
  header .header-wrap .nav-wrap nav li .sub-menu:hover {
    transform: scale(1);
    opacity: 1;
  }
}
@media only screen and (min-width: 1200px) {
  header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu .menu-box:before {
    left: -750px;
  }
  .home header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu .menu-box:before {
    left: -730px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu.user-login .menu-box:before {
    left: -615px;
  }
  .home header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu.user-login .menu-box:before {
    left: -595px;
  }
  header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box:before {
    left: -322px;
  }
  .home header .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box:before {
    left: -305px;
  }

  .home header:not(.scroll) .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu .menu-box:before {
    left: -550px;
  }
  .home header:not(.scroll) .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu.user-login .menu-box:before {
    left: -415px;
  }
  .home header:not(.scroll) .header-wrap .nav-wrap nav li:nth-child(3) .sub-menu .menu-box:before {
    left: -120px;
  }
}
[class*=oi-]:before {
  display: inline-block;
  font-family: "Glyphter";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.oi-phone-solid:before {
  content: "A";
}

.oi-arr-l:before {
  content: "B";
}

.oi-arr-r:before {
  content: "C";
}

.oi-fk:before {
  content: "D";
}

.oi-ln:before {
  content: "E";
}

.oi-envelope-regular:before {
  content: "F";
}

.oi-lng:before {
  content: "G";
}

.oi-select:before {
  content: "H";
}

.oi-arr-b:before {
  content: "I";
}

.oi-kcentrum:before {
  content: "J";
}

.oi-add1:before {
  content: "K";
}

.oi-remove1:before {
  content: "L";
}

@keyframes slideUp {
  0% {
    top: 1800px;
  }
  100% {
    top: 0;
  }
}
@keyframes slideUpBott {
  0% {
    bottom: -250%;
  }
  30% {
    bottom: -250%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes slideUpBott2 {
  0% {
    bottom: -150%;
  }
  30% {
    bottom: -150%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes bgFade {
  0% {
    opacity: 0.93;
  }
  80% {
    opacity: 0.93;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sbFade {
  0% {
    opacity: 0;
    top: 80px;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes slide-in {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slide-inl {
  0% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slide-in-op {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slide-in-opl {
  0% {
    opacity: 0;
    transform: translateX(120%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slide-in-l-op {
  0% {
    opacity: 0;
    left: -120%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes slide-in-event-op {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes slide-in-event-h-op {
  0% {
    opacity: 0;
    left: 200%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes slide-in-l-opl {
  0% {
    opacity: 0;
    left: 120%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes transcale {
  0% {
    transform: translateY(200px) scale(0.3);
    transform-origin: center top;
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes sbFade {
  0% {
    opacity: 0;
    top: 80px;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes sbFade2 {
  0% {
    opacity: 0;
    top: 500px;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes leaves {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top {
  overflow: hidden;
}

.text-img {
  display: inline-block;
  position: relative;
  text-indent: -9999999px;
}
.text-img.txt-doping {
  width: 405px;
  height: 150px;
  margin-bottom: -25px;
  background: url("/frontend/img/text/doping.png") center center no-repeat;
  background-size: auto 140px;
  top: 6px;
}
.text-img.txt-44k {
  width: 405px;
  height: 135px;
  background: url("/frontend/img/text/44k.png") center center no-repeat;
  background-size: auto 133px;
  top: -10px;
}
.text-img.txt-112k {
  width: 575px;
  height: 135px;
  background: url("/frontend/img/text/25k.png") center center no-repeat;
  background-size: auto 108px;
  top: -5px;
}
.text-img.txt-surveys {
  width: 900px;
  height: 210px;
  background: url("/frontend/img/text/prieskumy2.png") center center no-repeat;
  background-size: auto 190px;
  margin-top: 20px;
  margin-bottom: -50px;
}
.text-img.txt-datach {
  width: 720px;
  height: 185px;
  background: url("/frontend/img/text/datach.png") center center no-repeat;
  background-size: auto 184px;
  margin-top: 20px;
}
.text-img.txt-marketing {
  width: 778px;
  height: 275px;
  background: url("/frontend/img/text/marketing.png") center center no-repeat;
  background-size: auto 264px;
  margin-top: 20px;
  margin-bottom: 45px;
  top: 5px;
}
.text-img.txt-influence {
  width: 1015px;
  height: 155px;
  background: url("/frontend/img/text/influence.png") center center no-repeat;
  background-size: auto 152px;
  margin-bottom: 0;
  top: 5px;
}
.text-img.txt-newbiz {
  width: 985px;
  height: 250px;
  background: url("/frontend/img/text/newbiz.png") center center no-repeat;
  background-size: auto 242px;
  margin-bottom: 38px;
  position: relative;
  left: -18px;
}
.text-img.txt-activation {
  width: 780px;
  height: 140px;
  background: url("/frontend/img/text/activation.png") center center no-repeat;
  background-size: auto 134px;
  margin-bottom: 0;
}
.text-img.txt-brand {
  width: 745px;
  height: 230px;
  background: url("/frontend/img/text/brand.png") center center no-repeat;
  background-size: auto 225px;
  margin-bottom: 38px;
}
.text-img.txt-campaign {
  width: 1190px;
  height: 290px;
  background: url("/frontend/img/text/campaign.png") center center no-repeat;
  background-size: auto 285px;
  margin-bottom: 0;
}
.text-img.txt-event {
  width: 815px;
  height: 230px;
  background: url("/frontend/img/text/event.png") center center no-repeat;
  background-size: auto 225px;
  margin-bottom: 38px;
}
.text-img.txt-insight {
  width: 770px;
  height: 260px;
  background: url("/frontend/img/text/insight.png") center center no-repeat;
  background-size: auto 258px;
  margin-bottom: 28px;
}
.text-img.txt-pr {
  width: 750px;
  height: 230px;
  background: url("/frontend/img/text/pr.png") center center no-repeat;
  background-size: auto 225px;
  margin-bottom: 32px;
}
.text-img.txt-price {
  width: 760px;
  height: 280px;
  background: url("/frontend/img/text/price.png") center center no-repeat;
  background-size: auto 275px;
  margin-bottom: 38px;
}
.text-img.txt-sampling {
  width: 770px;
  height: 200px;
  background: url("/frontend/img/text/sampling.png") center center no-repeat;
  background-size: auto 195px;
  margin-bottom: 0;
}
.text-img.txt-satisfaction {
  width: 1495px;
  height: 220px;
  background: url("/frontend/img/text/satisfaction.png") center center no-repeat;
  background-size: auto 218px;
  margin-bottom: 50px;
  position: relative;
  left: -58px;
}
.text-img.txt-social {
  width: 780px;
  height: 250px;
  background: url("/frontend/img/text/social.png") center center no-repeat;
  background-size: auto 245px;
  margin-bottom: 38px;
  position: relative;
  left: -10px;
}
.text-img.txt-upsell {
  width: 775px;
  height: 310px;
  background: url("/frontend/img/text/upsell.png") center center no-repeat;
  background-size: auto 308px;
  margin-bottom: 0;
  position: relative;
  left: -26px;
}
.text-img.txt-instagram {
  width: 775px;
  height: 156px;
  background: url("/frontend/img/text/instagram.png") center center no-repeat;
  background-size: auto 154px;
  margin-bottom: 0;
}
.text-img.txt-linkedin {
  width: 510px;
  height: 115px;
  background: url("/frontend/img/text/linkedin.png") center center no-repeat;
  background-size: auto 114px;
  margin-bottom: 0;
}

.event-instagram .title-wrap h1 {
  line-height: 110px;
}
.event-instagram .text-img.txt-instagram {
  height: 130px;
  background-size: auto 125px;
}

.event.event-masterclass .title-wrap + p {
  max-width: 780px;
}
.event.event-masterclass .title-wrap h1 {
  line-height: 135px;
}
.event.event-masterclass .title-wrap h2 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.event.event-masterclass header .header-wrap .nav-wrap nav li:first-child .sub-menu .menu-box::before {
  display: none !important;
}
.event.event-masterclass #scroll-section .row {
  margin-right: -16px;
  margin-left: -16px;
}
.event.event-masterclass #scroll-section .desription-wrap {
  padding-bottom: 62px;
}
.event.event-masterclass #scroll-section .row .col-4 {
  padding-right: 16px;
  padding-left: 16px;
  text-align: left;
}
.event.event-masterclass #scroll-section .row .col-4 .event-box {
  max-width: 100%;
}
.event.event-masterclass #scroll-section .row .col-4 .event-box strong {
  font-family: "ThreeSix", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #263442;
  max-width: 225px;
}
.event.event-masterclass #scroll-section .row .col-4 .event-box p {
  font-family: "CeraPro", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
}
.event.event-masterclass #scroll-section .row .col-4 .event-box .event-title {
  position: relative;
  border-bottom: 2px dashed #000000;
  padding-top: 8px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.event.event-masterclass #scroll-section .row .col-4 .event-box .event-title::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("/frontend/img/icon/event/i-arrow-right.svg") center center no-repeat;
  background-size: 32px auto;
  position: absolute;
  right: -11px;
  bottom: -16px;
}
.event.event-masterclass #scroll-section .row .col-4 .event-box.evaluation-box .img-wrap span {
  background: url("/frontend/img/icon/event/i-evaluation.svg") left center no-repeat;
}
.event.event-masterclass #scroll-section .row .col-4 .event-box.settings-box .img-wrap span {
  background: url("/frontend/img/icon/event/i-settings.svg") left center no-repeat;
}
.event.event-masterclass #scroll-section .row .col-4 .event-box.optimization-box .img-wrap span {
  background: url("/frontend/img/icon/event/i-optimization.svg") left center no-repeat;
}
.event.event-masterclass .program .desription-wrap p {
  max-width: 715px;
}
.event.event-masterclass .program-wrap::before {
  top: 2px;
}
.event.event-masterclass .program-wrap .program-title.in-view h3 {
  animation: sbFade 1000ms ease-in-out forwards;
}
.event.event-masterclass .program-wrap .program-title.in-view p {
  animation: sbFade 1000ms ease-in-out forwards;
}
.event.event-masterclass .program-wrap .program-title h3 {
  position: relative;
  opacity: 0;
  font-family: "ThreeSix", sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 0;
}
.event.event-masterclass .program-wrap .program-title p {
  position: relative;
  opacity: 0;
  font-size: 18px;
  color: #1c1b29;
  margin-top: 0;
  margin-bottom: 26px;
}
.event.event-masterclass .program-wrap .event-program-row.in-view .event-content {
  animation: slide-in-event-op 1s ease forwards;
}
.event.event-masterclass .program-wrap .event-program-row.in-view .event-hours strong {
  animation: slide-in-event-h-op 1s ease forwards;
}
.event.event-masterclass .program-wrap .event-program-row:last-child::before {
  top: 62px;
}
.event.event-masterclass .program-wrap .event-program-row .event-hours {
  flex: 0 0 250px;
  max-width: 250px;
  padding-left: 16px;
}
.event.event-masterclass .program-wrap .event-program-row .event-hours strong {
  position: relative;
  top: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 21px;
  font-weight: 700;
  color: #263442;
  padding: 35px 20px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
}
.event.event-masterclass .program-wrap .event-program-row .event-content::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 5px solid #73f2f5;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -48px;
}
.event.event-masterclass .program-wrap .event-program-row .event-content.event-consultations {
  flex-wrap: wrap;
}
.event.event-masterclass .program-wrap .event-program-row .event-content.event-consultations .event-persons {
  justify-content: start;
  flex: 0 0 100%;
  max-width: 100%;
}
.event.event-masterclass .program-wrap .event-program-row .event-content.event-consultations .event-person-names {
  padding-left: 16px;
  padding-right: 0;
  text-align: left;
}
.event.event-masterclass .program-wrap .event-program-row .event-content > .d-flex > div:first-child {
  padding-right: 20px;
  flex: 0 0 calc(100% - 250px);
  max-width: calc(100% - 250px);
}
.event.event-masterclass .program-wrap .event-program-row .ambassadoring-text h4 {
  max-width: 380px;
}
.event.event-masterclass .program-wrap .event-program-row .event-persons {
  display: flex;
  align-items: center;
  justify-content: end;
  flex: 0 0 250px;
  max-width: 250px;
}
.event.event-masterclass .program-wrap .event-program-row h4 {
  margin-bottom: 10px;
}
.event.event-masterclass .program-wrap .event-program-row .more-info {
  display: inline-block;
  color: #00a3b8;
}
.event.event-masterclass .program-wrap .event-program-row .more-info:hover {
  text-decoration: underline;
}
.event.event-masterclass .program-wrap .event-program-row .event-person-names {
  padding-right: 16px;
  text-align: right;
}
.event.event-masterclass .program-wrap .event-program-row .event-person-names p {
  width: 100%;
  margin: 4px 0;
}
.event.event-masterclass .program-wrap .event-program-row .event-person-img {
  display: flex;
}
.event.event-masterclass .program-wrap .event-program-row .event-person-img .img-wrap {
  width: 42px;
  height: 42px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  overflow: hidden;
}
.event.event-masterclass .program-wrap .event-program-row .event-person-img .img-wrap img {
  max-width: 40px;
}
.event.event-masterclass .program-wrap .event-program-row .event-person-img .img-wrap:nth-child(2) {
  margin-left: -10px;
}

.top {
  padding-top: 135px;
  text-align: center;
}
.top h1 {
  font-size: 160px;
  line-height: 1em;
  max-width: 900px;
  margin: 50px auto 45px;
  color: #fff;
}
.top .tooltip-top p {
  padding-bottom: 0;
}
.top p {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 400;
  max-width: 900px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
}
.top p span {
  font-weight: 700;
}

.plan.flat-price .new-price > .center > p {
  display: none !important;
}

header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 {
  flex: 0 0 100%;
  max-width: 100%;
}
header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 ul {
  padding-top: 15px;
  padding-bottom: 5px;
}

.home .our-tools {
  padding-bottom: 60px;
}
.home .our-tools .title-wrap + .anim-item {
  position: relative;
  opacity: 0;
}
.home .our-tools .title-wrap + .anim-item.in-view {
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.home .our-tools .partners-logo-wrap.anim-item {
  position: relative;
  opacity: 0;
}
.home .our-tools .partners-logo-wrap.anim-item.in-view {
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.home .our-tools .partners-logo-wrap.anim-item .partners-logos {
  margin-bottom: 30px;
}
.home .bevel-bottom {
  padding-bottom: 200px;
}
.home .top .instagram-input-wrap {
  display: none !important;
}
.home .top h1 {
  font-size: 120px;
  line-height: 1.2em;
  font-weight: 500;
  max-width: 800px;
}
.home .top .title-wrap + span {
  font-size: 24px;
  font-weight: 300;
  display: inline-block;
  position: relative;
  margin: 10px auto 60px;
  opacity: 0;
}
.home .top .title-wrap + span.in-view {
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.home .top .title-wrap + span + p {
  font-size: 22px;
  font-weight: 400;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  opacity: 0;
  position: relative;
}
.home .top .title-wrap + span + p span.text-three {
  font-size: 1.095em;
}
.home .top .title-wrap + span + p.in-view {
  animation: sbFade 1000ms ease-in-out 0.3s;
  animation-fill-mode: forwards;
}

.bg-gradient {
  position: relative;
  color: #fff;
}
.bg-gradient.bgg-rev:before {
  background: linear-gradient(165deg, #1c1c2a 0%, #1c1c2a 32%, #50899e);
  background-attachment: fixed;
  background-size: 100% 1380px;
  background-repeat: no-repeat;
}
.bg-gradient.bgg-rev:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #355867;
  background: url("/frontend/img/icon/top-line.png") center bottom 180px no-repeat;
  background-size: auto 515px;
  background-repeat: no-repeat;
}
.bg-gradient:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #355867;
  background: linear-gradient(-165deg, #1c1c2a 30%, #50899e);
  background-attachment: fixed;
  background-size: 100% 1500px;
  background-repeat: no-repeat;
}
.bg-gradient .container {
  position: relative;
  z-index: 1;
}

.bevel-bottom {
  padding-bottom: 8%;
}
.bevel-bottom .bevel {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: 1;
  background: url("/frontend/img/icon/bg-white.svg") center center no-repeat;
  background-size: auto;
  background-size: 100% 100%;
  padding-bottom: 8%;
  transform: scaleX(-1);
}
.bevel-bottom .bevel.bg-gray {
  background: url("/frontend/img/icon/bg-gray.svg") center center no-repeat;
  background-size: 100% 100%;
}
.bevel-bottom .bevel.bg-gray:before, .bevel-bottom .bevel.bg-gray:after {
  background: url("/frontend/img/icon/bending-gray.svg") center center no-repeat;
  background-size: 100% 100%;
}
.bevel-bottom .bevel:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("/frontend/img/icon/bending-w.svg") center center no-repeat;
  background-size: auto;
  background-size: 100% 100%;
  position: absolute;
  bottom: 5%;
  left: 0;
}
.bevel-bottom .bevel:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("/frontend/img/icon/bending-w.svg") center center no-repeat;
  background-size: auto;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: -23px;
  transform: scaleX(-1);
}
.bevel-bottom .bevel span {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("/frontend/img/icon/bending-w.svg") center center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 4%;
  left: -1px;
  transform: rotate(-7deg);
}

.bevel-top {
  padding-bottom: 8%;
  position: relative;
}
.bevel-top .bevel {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: 1;
  background: url("/frontend/img/icon/bg-white.svg") center center no-repeat;
  background-size: 100% 100%;
  padding-bottom: 8%;
}
.bevel-top .bevel.bg-gray {
  background: url("/frontend/img/icon/bg-gray.svg") center center no-repeat;
  background-size: 100% 100%;
}
.bevel-top .bevel.bg-gray:before, .bevel-top .bevel.bg-gray:after {
  background: url("/frontend/img/icon/bending-gray.svg") center center no-repeat;
  background-size: 100% 100%;
}
.bevel-top .bevel.bg-gray span {
  background: url("/frontend/img/icon/bending-gray.svg") center center no-repeat;
  background-size: 100% 100%;
}
.bevel-top .bevel:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("/frontend/img/icon/bending-w.svg") center center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 5%;
  left: 0;
}
.bevel-top .bevel:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("/frontend/img/icon/bending-w.svg") center center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: -23px;
  transform: scaleX(-1);
}
.bevel-top .bevel span {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("/frontend/img/icon/bending-w.svg") center center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 4%;
  left: -1px;
  transform: rotate(-7deg);
}
.bevel-top .bevel.bevel-blue {
  background: url("/frontend/img/icon/bg-green.svg") center center no-repeat;
  background-size: auto;
  background-size: 100% 100%;
}
.bevel-top .bevel.bevel-blue:before {
  background: url("/frontend/img/icon/bending-g.svg") center center no-repeat;
  background-size: auto;
  background-size: 100% 100%;
}
.bevel-top .bevel.bevel-blue:after {
  background: url("/frontend/img/icon/bending-g.svg") center center no-repeat;
  background-size: auto;
  background-size: 100% 100%;
}
.bevel-top .bevel.bevel-blue span {
  background: url("/frontend/img/icon/bending-g.svg") center center no-repeat;
  background-size: 100% 100%;
}
.bevel-top.bevel-end {
  padding-bottom: 40px !important;
}
.bevel-top.bevel-end .bevel {
  transform: scaleX(-1) rotate(180deg);
  bottom: auto;
  top: -1px;
  padding-bottom: 8% !important;
}
.bevel-top.bevel-end .bevel span {
  bottom: 4.5%;
}
.bevel-top.bevel-end .bevel:before {
  left: -3px;
}

.bg-blue {
  background: #73f1f4;
}

.bg-gray {
  background: #f8f8f8;
}
.bg-gray .button {
  border: 3px solid #73f1f4;
}

.title-wrap h2 {
  font-family: "ThreeSix", sans-serif;
  font-size: 80px;
  font-weight: 300;
}
.title-wrap h2 .text-three {
  font-weight: 900 !important;
}

.home .bg-blue {
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.home .bg-blue h3,
.home .bg-blue h4 {
  color: #fff;
}
.home .bg-blue .item-wrap h4 {
  font-size: 23px;
}
.home .bg-blue p {
  color: #000;
}

.contact {
  background: linear-gradient(-30deg, #1c1c2a 20%, #355867);
  background-attachment: fixed;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  margin-top: -20px;
}
.contact .contact-map {
  display: inline-block;
  width: 1920px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url("/frontend/img/map/map2.svg") center bottom 220px no-repeat;
  background-size: 1920px auto;
  background-attachment: fixed;
}
.contact .contact-form {
  opacity: 0;
  position: relative;
  margin-right: -35px;
}
.contact .contact-form .pop-close {
  display: none !important;
}
.contact .container > .row {
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact .container > .row .col-7 .text-box h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.17em;
  margin-top: 0;
  color: #73f1f4;
  max-width: 400px;
}
.contact .container > .row .col-7 .text-box h2 span {
  font-size: 48px;
  font-weight: 800;
}
.contact .container > .row .col-7 .text-box p {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.52em;
  margin: 0;
  max-width: 400px;
}
.contact .container > .row .col-7 .text-box p span {
  font-weight: 800;
}

.b-radius img {
  border-radius: 50%;
}

.contact-form {
  position: relative;
  background: #1c1b29;
  padding: 40px;
  border-radius: 8px;
}
.contact-form .contact-container h3 {
  color: #fff;
  font-size: 32px;
  line-height: 1.25em;
  margin-top: 0;
  margin-bottom: 5px;
}
.contact-form .contact-container .upload-wrap {
  padding-bottom: 18px;
}
.contact-form .contact-container .upload-wrap .upload-button {
  font-size: 14px;
  background-size: auto 32px;
}
.contact-form .contact-container .form-label textarea {
  margin-bottom: 25px;
}
.contact-form .contact-container .button-wrap .btn-submit {
  width: 100%;
}
.contact-form .pop-close {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px;
}
.contact-form .pop-close .cls-1 {
  transition: all 0.3s ease;
}
.contact-form .pop-close:hover .cls-1 {
  fill: #fff;
  stroke: #fff;
}
.contact-form.in-view {
  animation: sbFade 1000ms ease-in-out 0.3s;
  animation-fill-mode: forwards;
}
.contact-form > p {
  font-size: 20px;
  font-weight: 300;
  padding-left: 12px;
  color: #989898;
}
.contact-form input,
.contact-form textarea {
  background: #1c1b29;
  border-bottom: 1px solid #fff;
}
.contact-form .form-label {
  position: relative;
  padding-top: 28px;
  margin-top: 10px;
}
.contact-form .form-label.form-textarea {
  margin-top: 40px;
}
.contact-form .form-label label > span {
  position: absolute;
  display: inline-block;
  color: #fff;
  top: 42px;
  left: 12px;
  transition: all 0.3s ease;
}
.contact-form .form-label input,
.contact-form .form-label textarea {
  padding: 0 12px;
  color: #fff;
  transition: all 0.3s ease;
}
.contact-form .form-label input::-moz-placeholder, .contact-form .form-label textarea::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #1c1b29;
  opacity: 1;
  /* Firefox */
}
.contact-form .form-label input:-ms-input-placeholder, .contact-form .form-label textarea:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #1c1b29;
  opacity: 1;
  /* Firefox */
}
.contact-form .form-label input::placeholder,
.contact-form .form-label textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #1c1b29;
  opacity: 1;
  /* Firefox */
}
.contact-form .form-label input:-ms-input-placeholder,
.contact-form .form-label textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #1c1b29;
}
.contact-form .form-label input::-ms-input-placeholder,
.contact-form .form-label textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #1c1b29;
}
.contact-form .form-label input:not(:-moz-placeholder-shown) + span, .contact-form .form-label textarea:not(:-moz-placeholder-shown) + span {
  top: 10px;
  color: #989898;
}
.contact-form .form-label input:not(:-ms-input-placeholder) + span, .contact-form .form-label textarea:not(:-ms-input-placeholder) + span {
  top: 10px;
  color: #989898;
}
.contact-form .form-label input:focus + span, .contact-form .form-label input:not(:placeholder-shown) + span,
.contact-form .form-label textarea:focus + span,
.contact-form .form-label textarea:not(:placeholder-shown) + span {
  top: 10px;
  color: #989898;
}
.contact-form .form-label input:not(:focus):not(:-moz-placeholder-shown):not(:valid), .contact-form .form-label textarea:not(:focus):not(:-moz-placeholder-shown):not(:valid) {
  border-bottom: 1px solid #CF1239;
}
.contact-form .form-label input:not(:focus):not(:-ms-input-placeholder):not(:valid), .contact-form .form-label textarea:not(:focus):not(:-ms-input-placeholder):not(:valid) {
  border-bottom: 1px solid #CF1239;
}
.contact-form .form-label input:not(:focus):not(:placeholder-shown):not(:valid),
.contact-form .form-label textarea:not(:focus):not(:placeholder-shown):not(:valid) {
  border-bottom: 1px solid #CF1239;
}
.contact-form .form-label input[type=email]:not(:-moz-placeholder-shown), .contact-form .form-label textarea[type=email]:not(:-moz-placeholder-shown) {
  border-bottom: 1px solid #73f1f4;
}
.contact-form .form-label input[type=email]:not(:-ms-input-placeholder), .contact-form .form-label textarea[type=email]:not(:-ms-input-placeholder) {
  border-bottom: 1px solid #73f1f4;
}
.contact-form .form-label input[type=email]:not(:placeholder-shown),
.contact-form .form-label textarea[type=email]:not(:placeholder-shown) {
  border-bottom: 1px solid #73f1f4;
}
.contact-form .form-label input {
  height: 50px;
}
.contact-form .form-label textarea {
  padding: 10px 12px;
  height: auto;
  min-height: 50px;
  max-height: 250px;
}
.contact-form .form-textarea + .d-flex {
  margin-top: 40px;
}
.contact-form .form-textarea + .d-flex .upload-wrap + div {
  margin-left: auto;
  flex: 0 0 180px;
  max-width: 180px;
  text-align: right;
}
.contact-form .upload-wrap {
  position: relative;
  padding-right: 15px;
}
.contact-form .upload-wrap input[type=file] {
  display: none;
}
.contact-form .upload-wrap .upload-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 21px;
  color: #fff;
  padding-left: 60px;
  height: 50px;
  line-height: 45px;
  background: url("/frontend/img/icon/i-upload.svg") center left no-repeat;
  background-size: auto 38px;
}
.contact-form .upload-wrap .upload-button:hover {
  filter: brightness(0) invert(1);
}
.contact-form .upload-wrap small {
  display: none;
  width: 10px;
  height: 10px;
  background: url("/frontend/img/icon/i-x.svg") center center no-repeat;
  background-size: 10px auto;
  cursor: pointer;
}
.contact-form .upload-wrap.hasFile small {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 30px;
}
.contact-form .custom-file-upload > span:not(.upload-button) {
  display: block;
  width: 100%;
  font-size: 18px;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 25px;
  word-break: break-all;
}
.contact-form .custom-file-upload > span:not(.upload-button):empty {
  margin-top: 0;
  margin-bottom: 15px;
}

.contact-row {
  padding-bottom: 20px;
}
.contact-row .item-wrap {
  margin-right: 50px;
}
.contact-row .item-wrap:first-child p a {
  font-weight: 400;
}
.contact-row .item-wrap h5 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 15px;
  text-transform: uppercase;
  color: #fff;
}
.contact-row .item-wrap p {
  font-size: 18px;
  color: #fff;
  margin: 20px 0 10px;
}
.contact-row .item-wrap p a {
  font-weight: 700;
}
.contact-row .col-5 {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.contact-row .col-5 .d-flex {
  width: 100%;
}
.contact-row .col-5 .follow-wrap {
  display: flex;
  align-items: flex-end;
}
.contact-row .col-5 .follow-wrap p {
  font-size: 20px;
  color: #fff;
}

.copy-wrap {
  display: flex;
  align-items: center;
}
.copy-wrap + div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy-wrap + div a:hover {
  text-decoration: underline;
}

.follow-wrap p {
  font-size: 20px;
  color: #fff;
}

.social-wrap .follow-wrap {
  display: flex;
  align-items: flex-end;
}

.socila-icon ul li {
  display: inline-block;
}
.socila-icon ul li a {
  display: inline-block;
  width: 46px;
  height: 60px;
}
.socila-icon ul li a.fk {
  background: url("/frontend/img/icon/social/i-fk.svg") center center no-repeat;
  background-size: auto 22px;
}
.socila-icon ul li a.im {
  background: url("/frontend/img/icon/social/i-im.svg") center center no-repeat;
  background-size: auto 22px;
}
.socila-icon ul li a.ln {
  background: url("/frontend/img/icon/social/i-ln.svg") center center no-repeat;
  background-size: auto 22px;
}

@media screen and (max-height: 1000px) {
  .contact .contact-map {
    background-position: center center;
  }

  header.scroll .header-wrap .logo-wrap img {
    max-width: 100px;
  }
}
.our-tools {
  text-align: center;
}
.our-tools .title-wrap {
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.our-tools .title-wrap h2 {
  line-height: 1em;
  margin: 0 auto;
}
.our-tools .title-wrap h2 span {
  font-weight: 700;
}
.our-tools .title-wrap + p {
  font-size: 22px;
  font-weight: 400;
  color: #000;
  opacity: 0;
  position: relative;
}
.our-tools .title-wrap + p span.text-three {
  font-size: 1.095em;
  font-weight: 700;
}
.our-tools .title-wrap + p.in-view {
  animation: sbFade 1000ms ease-in-out 0.3s;
  animation-fill-mode: forwards;
}
.our-tools .row {
  margin-top: 80px;
  margin-left: -55px;
  margin-right: -20px;
}
.our-tools .row .col-3:first-child .item-wrap .icon-wrap img {
  transform: rotate(-10deg);
}
.our-tools .row .col-3:nth-child(1) h3:before {
  content: "O1";
}
.our-tools .row .col-3:nth-child(1) ul {
  padding-left: 102px;
}
.our-tools .row .col-3:nth-child(2) h3:before {
  content: "O2";
}
.our-tools .row .col-3:nth-child(2) ul {
  padding-left: 87px;
}
.our-tools .row .col-3:nth-child(3) h3:before {
  content: "O3";
}
.our-tools .row .col-3:nth-child(3) ul {
  padding-left: 118px;
}
.our-tools .row .col-3:nth-child(4) h3:before {
  content: "O4";
}
.our-tools .row .col-3:nth-child(4) ul {
  padding-left: 89px;
}
.our-tools .row .item-wrap {
  position: relative;
}
.our-tools .row .item-wrap .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.our-tools .row .item-wrap h3 {
  margin: 0 0 6px;
  font-size: 32px;
  font-family: "ThreeSix", sans-serif;
  font-weight: 800;
  color: #1c1b29;
}
.our-tools .row .item-wrap h3:before {
  position: relative;
  top: -10px;
  left: -10px;
  font-size: 28px;
  font-family: "CeraPro", sans-serif;
  font-weight: 400;
}
.our-tools .row .item-wrap ul li {
  font-size: 20px;
  text-align: left;
  position: relative;
  margin: 2px 0;
  transition: all 0.3s ease;
}
.our-tools .row .item-wrap ul li a:hover {
  color: #5adcdf;
}
.our-tools .row .item-wrap ul li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #73f1f4;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: -12px;
}
.our-tools .all-produts {
  padding: 30px 0 40px;
  text-align: right;
}
.our-tools .all-produts a.link {
  color: #73f1f4;
}

a.link {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #73f1f4;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
a.link:after {
  content: "»";
  display: inline-block;
  font-family: "ThreeSix", sans-serif;
  font-size: 50px;
  font-weight: 900;
  position: relative;
  top: 8px;
  margin-left: 10px;
}
a.link:hover {
  color: #3f566d !important;
}

.bg-blue a.link {
  color: #fff;
}
.bg-blue a.link:hover {
  color: #3f566d !important;
}

.blog-section {
  padding: 80px 0 30px;
}
.blog-section .row {
  margin-left: -40px;
  margin-right: -40px;
}
.blog-section .row.only-one {
  padding-top: 40px;
  padding-bottom: 40px;
}
.blog-section .row.only-one .col-4 {
  flex: 0 0 100%;
  max-width: 100%;
}
.blog-section .row.only-one .col-4 .item-wrap {
  display: flex;
  width: 100%;
}
.blog-section .row.only-one .col-4 .item-wrap .img-wrap {
  flex: 0 0 53%;
  max-width: 53%;
  height: auto;
  position: relative;
}
.blog-section .row.only-one .col-4 .item-wrap .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
}
.blog-section .row.only-one .col-4 .item-wrap .text-wrap {
  flex: 0 0 47%;
  max-width: 47%;
  padding-left: 40px;
}
.blog-section .row.only-one .col-4 .item-wrap .text-wrap h4 {
  font-size: 60px;
  max-width: 525px;
  line-height: 1em;
  letter-spacing: -1px;
}
.blog-section .row .col-4 {
  padding-left: 40px;
  padding-right: 40px;
}
.blog-section .row .col-4 a {
  display: block;
  width: 100%;
}
.blog-section .row .col-4:nth-child(3n) .item-wrap {
  animation-delay: 0.6s !important;
}
.blog-section .row .col-4:nth-child(3n+2) .item-wrap {
  animation-delay: 0.3s !important;
}
.blog-section .row .col-4 .item-wrap {
  position: relative;
  opacity: 0;
}
.blog-section .row .col-4 .item-wrap.in-view {
  animation: sbFade2 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.blog-section .row .col-4 .item-wrap .img-wrap {
  width: 100%;
  height: 335px;
  background: #abf7f8;
  border-radius: 20px;
  overflow: hidden;
}
.blog-section .row .col-4 .item-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.blog-section .row .col-4 .item-wrap .img-wrap img:hover {
  transform: scale(1.1);
}
.blog-section .row .col-4 .item-wrap .img-wrap + div {
  padding: 15px 0 0;
}
.blog-section .row .col-4 .item-wrap .img-wrap + div span {
  font-size: 21px;
}
.blog-section .row .col-4 .item-wrap h4 {
  font-size: 32px;
  margin: 5px 0;
  letter-spacing: -1px;
}
.blog-section .row .col-4 .item-wrap p {
  font-size: 20px;
  letter-spacing: -0.4px;
  max-width: 510px;
}
.blog-section .all-blogs {
  text-align: right;
  color: #fff;
  padding: 20px 0 40px;
}

.blogs .blogs-wrap .row .col-4 {
  flex: 0 0 50%;
  max-width: 50%;
}

.f-links-wrap a:first-child {
  margin-right: 20px;
}

footer {
  padding: 10px 60px;
  padding-top: 100px;
  background: #1c1b29;
  color: #fff;
  position: relative;
  z-index: 1;
  opacity: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  animation: fadeIn 1s ease forwards;
  margin-top: -20px;
  overflow: hidden;
}
footer .container > .d-flex {
  padding-top: 50px;
}
footer .footer-logo {
  padding-top: 0;
}
footer .row .footer-link {
  font-size: 16px;
  font-weight: 700;
  font-family: "ThreeSix", sans-serif;
  transition: all 0.3s ease;
}
footer .row .footer-link:hover {
  color: #73f1f4;
}
footer .row .col-10 ul {
  text-align: right;
}
footer .row .col-10 ul li {
  display: inline-block;
  margin-right: 58px;
}
footer .row .col-10 ul li:last-child {
  margin-right: 0;
}
footer .row .footer-menu {
  padding-bottom: 120px;
}
footer .row .footer-menu h5 {
  margin: 37px 0 17px;
}
footer .row .footer-menu h5 a {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(105, 107, 118, 0.7);
  transition: all 0.3s ease;
}
footer .row .footer-menu h5 a:hover {
  color: rgba(255, 255, 255, 0.8);
}
footer .row .footer-menu ul li {
  margin-bottom: 10px;
  margin-right: 0;
}
footer .row .footer-menu ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
footer .row .footer-menu ul li a:hover {
  color: #73f1f4;
}
footer.fix-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
footer p {
  color: #fff;
}

.our-tools .item-wrap {
  opacity: 0;
  transition: all 0.3s ease;
}
.our-tools .item-wrap.in-view {
  animation: sbFade 800ms ease-in-out;
  animation-fill-mode: forwards;
}
.our-tools .col-3:nth-child(1) .item-wrap.in-view {
  animation-delay: 100ms;
}
.our-tools .col-3:nth-child(2) .item-wrap.in-view {
  animation-delay: 200ms;
}
.our-tools .col-3:nth-child(3) .item-wrap.in-view {
  animation-delay: 300ms;
}
.our-tools .col-3:nth-child(4) .item-wrap.in-view {
  animation-delay: 400ms;
}
.our-tools .col-3:nth-child(5) .item-wrap.in-view {
  animation-delay: 500ms;
}
.our-tools .col-3:nth-child(6) .item-wrap.in-view {
  animation-delay: 600ms;
}

.pop-up {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(51, 84, 99, 0.85);
  display: none;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  overflow: auto;
  scrollbar-width: thin;
  flex-direction: column;
  z-index: 1000000000;
}
.pop-up:is(.pop-success, .pop-fail).open {
  animation: fade 200ms ease-in-out;
  animation-fill-mode: forwards;
}
.pop-up:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) {
  position: relative;
  width: 100%;
  animation: sbFade2 600ms ease-in-out;
  animation-fill-mode: forwards;
  background: #1c1b29;
  padding: 20px 60px;
  border-radius: 38px;
}
.pop-up:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .pop-close {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 25px;
  right: 30px;
  padding: 0;
}
.pop-up:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .pop-close .cls-1 {
  transition: all 0.3s ease;
}
.pop-up:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .pop-close:hover .cls-1 {
  fill: #fff;
  stroke: #fff;
}
.pop-up.open {
  display: flex !important;
  animation: fade 200ms ease-in-out;
  animation-fill-mode: forwards;
}
.pop-up.open .contact-form {
  animation: sbFade2 600ms ease-in-out;
  animation-fill-mode: forwards;
}
.pop-up .pop-wrap {
  min-height: 0;
  padding: 0 30px;
}
.pop-up .pop-wrap .pop-content {
  width: 100%;
  max-width: 615px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  display: flex;
  align-items: center;
}
.pop-up .pop-wrap .pop-content .contact-form {
  width: 100%;
  padding-bottom: 40px;
}

:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .circle-border {
  width: 66px;
  height: 66px;
  border-radius: 50%;
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .circle {
  width: 60px;
  height: 60px;
  top: 3px;
  border-radius: 50%;
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .circle {
  z-index: 1;
  position: relative;
  background: #1c1b29;
  transform: scale(1);
  animation: circle-anim 700ms ease forwards 0.2s;
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .circle-border {
  z-index: 0;
  position: absolute;
  background: #73f1f4;
  transform: scale(1.1);
  animation: circle-anim 400ms ease forwards 0.2s;
}
@keyframes circle-anim {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes circle-anim {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1.1);
  }
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .fail {
  transform: translate(-5px, 27px);
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap :is(.success, .fail)::before,
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap :is(.success, .fail)::after {
  content: "";
  display: block;
  height: 4px;
  background: #73f1f4;
  position: absolute;
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .fail::before,
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .fail::after {
  background: #e10050;
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .success::before {
  width: 17px;
  top: 58%;
  left: 23%;
  transform: rotateZ(50deg);
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .success::after {
  width: 30px;
  top: 50%;
  left: 35%;
  transform: rotateZ(-50deg);
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .fail::before {
  width: 30px;
  top: 50%;
  left: 35%;
  transform: rotateZ(45deg);
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) .img-wrap .fail::after {
  width: 30px;
  top: 50%;
  left: 35%;
  transform: rotateZ(-45deg);
}
:is(.pop-success, .pop-fail) :is(.success-wrap, .fail-wrap) h3 {
  text-align: center;
  margin: 40px 0 60px;
  color: #fff;
  font-size: 40px;
  line-height: 1.36em;
  font-weight: 500;
}

.pop-fail .fail-wrap .img-wrap .circle-border {
  background: #e10050;
}

.pop-event :is(.success-wrap, .fail-wrap) h3 {
  text-align: center;
  margin: 40px 0;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
}

.about-us .top {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  margin-bottom: -20px;
  z-index: 1;
}
.about-us #scroll-section {
  padding-top: 50px;
  padding-bottom: 215px;
  text-align: center;
}
.about-us #scroll-section .title-wrap h2 {
  font-size: 70px;
  line-height: 1em;
  margin: 100px auto 80px;
  max-width: 800px;
}
.about-us #scroll-section .title-wrap h2 span {
  font-weight: 700;
}
.about-us #scroll-section .title-wrap + p {
  font-size: 22px;
  max-width: 735px;
  color: #1c1b29;
  margin: 0 auto 150px;
}
.about-us #scroll-section .title-wrap + p span {
  font-weight: 700;
}
.about-us .scroll-arrow {
  margin-bottom: 60px;
}
.about-us .top .center h1 {
  font-size: 48px;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 45px;
}
.about-us .top .center p {
  max-width: 480px;
}
.about-us .top .center p span {
  font-size: 1.1em;
}
.about-us .team-wrap .row {
  justify-content: center;
  margin-right: -40px;
  margin-left: -40px;
}
.about-us .team-wrap .row .col-4 {
  margin-bottom: 60px;
}
.about-us .team-wrap .row .col-4:nth-child(3n) .team-item {
  animation-delay: 0.9s !important;
}
.about-us .team-wrap .row .col-4:nth-child(3n+1) .team-item {
  animation-delay: 0.3s !important;
}
.about-us .team-wrap .row .col-4:nth-child(3n+2) .team-item {
  animation-delay: 0.6s !important;
}
.about-us .team-wrap .row .col-4:nth-child(3) .team-item p {
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
}
.about-us .team-wrap .row .col-4:nth-child(4) .team-item p {
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
}
.about-us .team-wrap .row .col-4:nth-child(6) .team-item p {
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
}
.about-us .team-wrap .row .col-4:nth-child(7) .team-item p {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.about-us .team-wrap .row .col-4 .team-item {
  position: relative;
  opacity: 0;
}
.about-us .team-wrap .row .col-4 .team-item.in-view {
  animation: sbFade2 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.about-us .team-wrap .team-item .img-wrap {
  border-radius: 50%;
  overflow: hidden;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  clip-path: content-box;
}
.about-us .team-wrap .team-item .img-wrap img {
  transition: all 0.3s ease;
}
.about-us .team-wrap .team-item:hover img {
  transform: scale(1.2) translateY(15px);
}
.about-us .team-wrap .team-item h4 {
  font-size: 28px;
  color: #fff;
  margin: 20px 0 5px;
}
.about-us .team-wrap .team-item h4 + span {
  font-size: 20px;
}
.about-us .team-wrap .team-item p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.4em;
  color: #1c1b29;
  max-width: 325px;
  margin-left: auto;
  margin-right: auto;
}

.title-wrap + p .text-three {
  font-size: 33px;
}

.scroll-arrow {
  position: relative;
  display: inline-block;
  font-size: 22px;
  font-weight: 300;
  margin-top: 85px;
  margin-bottom: -2%;
  color: #747d86;
  animation: bounce 2s infinite 2s;
  z-index: 2;
}
.scroll-arrow:after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url("/frontend/img/icon/i-swipe-down.svg") center center no-repeat;
  background-size: 55px auto;
  margin: 0 auto;
}

.sixpack {
  text-align: center;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
.sixpack .title-wrap h2 {
  font-family: "CeraPro", sans-serif;
  font-weight: 400;
  line-height: 1em;
  max-width: 615px;
  margin: 30px auto 60px;
}
.sixpack .title-wrap h2 span {
  font-weight: 700;
}
.sixpack .title-wrap + p {
  font-size: 22px;
  color: #1c1b29;
  max-width: 600px;
  margin: 80px auto 60px;
}
.sixpack .title-wrap + p span {
  font-weight: 800;
}
.sixpack .sixpack-wrap {
  padding: 80px 0 80px;
  display: flex;
  justify-content: space-around;
}
.sixpack .sixpack-wrap.in-view .six-item {
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.sixpack .sixpack-wrap.in-view .six-item:nth-child(1) {
  animation-delay: 100ms;
}
.sixpack .sixpack-wrap.in-view .six-item:nth-child(2) {
  animation-delay: 200ms;
}
.sixpack .sixpack-wrap.in-view .six-item:nth-child(3) {
  animation-delay: 300ms;
}
.sixpack .sixpack-wrap.in-view .six-item:nth-child(4) {
  animation-delay: 400ms;
}
.sixpack .sixpack-wrap.in-view .six-item:nth-child(5) {
  animation-delay: 500ms;
}
.sixpack .sixpack-wrap.in-view .six-item:nth-child(6) {
  animation-delay: 600ms;
}
.sixpack .sixpack-wrap .six-item {
  padding: 0 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  position: relative;
}
.sixpack .sixpack-wrap .six-item img {
  transition: all 0.3s ease;
}
.sixpack .sixpack-wrap .six-item:hover img {
  transform: scale(1.1) translateY(-10px);
}

.title-wrap + p {
  font-size: 22px;
  opacity: 0;
  position: relative;
}
.title-wrap + p span.text-three {
  font-size: 1.095em;
}
.title-wrap + p.in-view {
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: forwards;
}

.products .top h1 {
  font-size: 48px;
  font-weight: 500;
  margin-top: 40px;
  max-width: 900px;
}
.products #scroll-section {
  padding-top: 100px;
  position: relative;
}

.blogs header {
  color: #1c1b29;
  transition: all 0.3s ease;
}
.blogs header .header-wrap .nav-wrap ul.nav-magic > li > a {
  color: #1c1b29;
}
.blogs header .header-wrap .nav-wrap ul.nav-magic > li > a:hover, .blogs header .header-wrap .nav-wrap ul.nav-magic > li > a:focus, .blogs header .header-wrap .nav-wrap ul.nav-magic > li > a.active {
  color: #73f1f4;
}
.blogs header .instagram-input-wrap .input-wrap label input {
  color: #000;
  background: #f8f8f8;
  border: 1px solid #e1e1e4;
}
.blogs header .instagram-input-wrap .input-wrap label input:focus:not(:-moz-placeholder-shown) {
  background: #ffffff;
}
.blogs header .instagram-input-wrap .input-wrap label input:focus:not(:-ms-input-placeholder) {
  background: #ffffff;
}
.blogs header .instagram-input-wrap .input-wrap label input:focus:not(:placeholder-shown) {
  background: #ffffff;
}
.blogs header .lng-wrap a.button {
  border: 2px solid #73f1f4;
  padding: 7px 11px 5px;
}
.blogs header .lng-wrap a.button.button-login {
  border-color: #263442;
}
.blogs header.scroll .header-wrap {
  background: #fff;
  box-shadow: 0 0 5px 4px rgba(64, 108, 135, 0.2);
  transition: all 0.3s ease;
  padding: 15px 0;
}
.blogs header.scroll .header-wrap .logo-wrap .logo {
  position: relative;
}
.blogs header.scroll .header-wrap .logo-wrap .logo::before {
  content: "";
  display: inline-block;
  transition: all 0.6s ease;
  opacity: 1;
}
.blogs header.scroll .header-wrap .logo-wrap .logo img {
  transition: all 0.6s ease;
  width: 0;
  opacity: 0;
}
.blogs .blogs-wrap .row {
  margin-right: -60px;
  margin-left: -60px;
}
.blogs .blogs-wrap .row .col-4,
.blogs .blogs-wrap .row .col-6 {
  margin-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
}
.blogs .blogs-wrap .row .col-4 a,
.blogs .blogs-wrap .row .col-6 a {
  display: block;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.blogs .blogs-wrap .row .col-4 .blog-item,
.blogs .blogs-wrap .row .col-6 .blog-item {
  width: 100%;
  position: relative;
  opacity: 0;
  text-align: left;
}
.blogs .blogs-wrap .row .col-4 .blog-item.in-view,
.blogs .blogs-wrap .row .col-6 .blog-item.in-view {
  animation: sbFade2 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.blogs .blogs-wrap .row .col-4 .blog-item .img-wrap,
.blogs .blogs-wrap .row .col-6 .blog-item .img-wrap {
  width: 100%;
  background: #e3fcfd;
  border-radius: 20px;
  overflow: hidden;
  clip-path: content-box;
}
.blogs .blogs-wrap .row .col-4 .blog-item .img-wrap img,
.blogs .blogs-wrap .row .col-6 .blog-item .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.blogs .blogs-wrap .row .col-4 .blog-item .img-wrap img:hover,
.blogs .blogs-wrap .row .col-6 .blog-item .img-wrap img:hover {
  transform: scale(1.1);
}
.blogs .blogs-wrap .row .col-4 .blog-item .text-wrap > span,
.blogs .blogs-wrap .row .col-6 .blog-item .text-wrap > span {
  display: inline-block;
  padding-top: 20px;
  font-size: 21px;
  color: #a4a4a4;
}
.blogs .blogs-wrap .row .col-4 .blog-item .text-wrap p,
.blogs .blogs-wrap .row .col-6 .blog-item .text-wrap p {
  font-size: 20px;
  max-width: 530px;
  color: #212735;
  padding-bottom: 8px;
}
.blogs .blogs-wrap .row .col-4:first-child,
.blogs .blogs-wrap .row .col-6:first-child {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 100px;
}
.blogs .blogs-wrap .row .col-4:first-child .blog-item,
.blogs .blogs-wrap .row .col-6:first-child .blog-item {
  display: flex;
  width: 100%;
  padding-top: 40px;
}
.blogs .blogs-wrap .row .col-4:first-child .blog-item .img-wrap,
.blogs .blogs-wrap .row .col-6:first-child .blog-item .img-wrap {
  flex: 0 0 53%;
  max-width: 53%;
  position: relative;
}
.blogs .blogs-wrap .row .col-4:first-child .blog-item .img-wrap img,
.blogs .blogs-wrap .row .col-6:first-child .blog-item .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
}
.blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap,
.blogs .blogs-wrap .row .col-6:first-child .blog-item .text-wrap {
  flex: 0 0 47%;
  max-width: 47%;
  padding-left: 40px;
}
.blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4,
.blogs .blogs-wrap .row .col-6:first-child .blog-item .text-wrap h4 {
  font-size: 50px;
  line-height: 1.1em;
  font-weight: 500;
  margin: 10px 0 45px;
  max-width: 525px;
  letter-spacing: -1px;
}
.blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4 strong,
.blogs .blogs-wrap .row .col-6:first-child .blog-item .text-wrap h4 strong {
  font-family: "ThreeSix", sans-serif;
  font-weight: 900;
  vertical-align: middle;
}
.blogs .blogs-wrap .row .col-4:not(:first-child):nth-child(3n) .blog-item,
.blogs .blogs-wrap .row .col-6:not(:first-child):nth-child(3n) .blog-item {
  animation-delay: 0.3s !important;
}
.blogs .blogs-wrap .row .col-4:not(:first-child):nth-child(3n+1) .blog-item,
.blogs .blogs-wrap .row .col-6:not(:first-child):nth-child(3n+1) .blog-item {
  animation-delay: 0.6s !important;
}
.blogs .blogs-wrap .row .col-4:not(:first-child) .blog-item .img-wrap,
.blogs .blogs-wrap .row .col-6:not(:first-child) .blog-item .img-wrap {
  height: 385px;
  width: 100%;
}
.blogs .blogs-wrap .row .col-4:not(:first-child) .blog-item .text-wrap h4,
.blogs .blogs-wrap .row .col-6:not(:first-child) .blog-item .text-wrap h4 {
  font-size: 33px;
  color: #212735;
  margin: 15px 0 20px;
}
.blogs .blogs-wrap .row .col-4:nth-child(3n),
.blogs .blogs-wrap .row .col-6:nth-child(3n) {
  display: flex;
  justify-content: center;
}
.blogs .blogs-wrap .row .col-4:nth-child(3n+1),
.blogs .blogs-wrap .row .col-6:nth-child(3n+1) {
  display: flex;
  justify-content: flex-end;
}

.blogs .blog-detail .row .col-4 {
  margin-bottom: 50px;
}

.blogs .blog-detail .top-detail .img-wrap {
  height: auto !important;
}

.blogs .blog-detail .top-detail .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html body.blogs .body-wrap .blogs-wrap .row .col-4:first-child .blog-item .img-wrap {
  height: 100% !important;
}

.blogs .blog-detail .container,
.blogs .text-blog .container {
  max-width: 960px !important;
}

.blogs .text-blog .maps-section .container {
  max-width: 1240px !important;
}

.blogs .blog-detail .top-detail .img-wrap {
  max-width: 685px;
  margin: 0 auto;
  width: 100%;
  height: 370px;
  background: #abf7f8;
  border-radius: 20px;
  overflow: hidden;
}
.blogs .blog-detail .top-detail .text-wrap h1 {
  font-size: 86px;
  line-height: 0.95em;
  font-weight: 500;
  color: #1c1b29;
  max-width: 100%;
  margin-bottom: 65px;
}
.blogs .blog-detail .top-detail .text-wrap h1 strong {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.blogs .blog-detail .top-detail .text-wrap p {
  max-width: 100%;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
  color: #1c1b29;
}
.blogs .blog-detail .top-detail .text-wrap p br {
  display: none;
}
.blogs .blog-detail .top-detail .img-wrap,
.blogs .blog-detail .top-detail .text-wrap {
  position: relative;
  opacity: 0;
}
.blogs .blog-detail .top-detail .img-wrap.in-view,
.blogs .blog-detail .top-detail .text-wrap.in-view {
  animation: sbFade2 1000ms ease-in-out;
  animation-fill-mode: forwards;
}

main .text-blog .text-blog-wrap h2 {
  font-size: 40px;
  margin-bottom: 0;
  margin-top: 60px;
}
main .text-blog .text-blog-wrap h3 {
  font-size: 32px;
  line-height: 1.4em;
  margin-bottom: -15px;
}
main .text-blog .text-blog-wrap p {
  font-size: 18px;
  line-height: 1.435em;
  margin: 30px 0;
}
main .text-blog .text-blog-wrap p:first-of-type {
  max-width: 1015px;
}
main .text-blog .text-blog-wrap .big-text {
  display: inline-block;
  margin: 10px 0;
  font-size: 1.36em !important;
  line-height: 1.2em;
}
main .text-blog .text-blog-wrap ul {
  margin: 0;
}
main .text-blog .text-blog-wrap ul li {
  font-size: 18px;
  line-height: 1.435em;
  margin: 25px 0;
}
main .text-blog .text-blog-wrap .author-wrap {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
main .text-blog .text-blog-wrap .author-wrap .d-flex {
  display: flex;
  align-items: center;
}
main .text-blog .text-blog-wrap .author-wrap .d-flex > div {
  display: flex;
}
main .text-blog .text-blog-wrap .author-wrap .d-flex .img-wrap {
  padding-right: 25px;
}
main .text-blog .text-blog-wrap .author-wrap .d-flex .img-wrap img {
  max-width: 135px;
}
main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex h6 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #a4a4a4;
  margin-right: 70px;
}
main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex h6 + p {
  margin-right: 70px;
}
main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex p {
  width: 100%;
}
main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex span {
  font-size: 18px;
  color: #a4a4a4;
}
main .text-blog .text-blog-wrap .author-wrap .d-flex p {
  font-size: 18px;
  margin: 0;
  color: #a4a4a4;
}

.text-blog .text-blog-wrap {
  padding-bottom: 50px;
  position: relative;
  opacity: 0;
}
.text-blog .text-blog-wrap .plan-table-wrap .table-wrap {
  min-width: 900px;
}
.text-blog .text-blog-wrap .plan-table-wrap .table-wrap .i-success,
.text-blog .text-blog-wrap .plan-table-wrap .table-wrap .i-fail {
  font-size: 0;
}
.text-blog .text-blog-wrap.in-view {
  animation: sbFade2 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.text-blog .text-blog-wrap p {
  font-size: 18px;
  color: #212735;
}
.text-blog .text-blog-wrap ul {
  margin: 30px 0;
  padding-left: 40px;
}
.text-blog .text-blog-wrap ul li {
  font-size: 18px;
  color: #212735;
  position: relative;
}
.text-blog .text-blog-wrap ul li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #73f1f4;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: -26px;
}
.text-blog .text-blog-wrap ol {
  margin: 30px 0;
}
.text-blog .text-blog-wrap ol li {
  font-size: 25px;
  color: #212735;
}

.products .body-wrap {
  overflow: initial;
}

.products-steps-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}
.products-steps-wrap .sticky-top,
.products-steps-wrap .sticky-bottom {
  display: none !important;
  width: 100%;
  height: 100px;
  position: sticky;
  transition: all 0.3 ease;
}
.products-steps-wrap .sticky-top:before,
.products-steps-wrap .sticky-bottom:before {
  content: "";
  width: 735px;
  height: 100px;
  background: #73f1f4;
  display: inline-block;
  position: absolute;
  transition: all 0.3 ease;
}
.products-steps-wrap.anim .sticky-bottom {
  transform: rotate(5deg);
}
.products-steps-wrap.anim .sticky-bottom:before {
  bottom: -95px;
  right: 50%;
}
.products-steps-wrap.anim2 .sticky-top {
  transform: rotate(8deg);
}
.products-steps-wrap.anim2 .sticky-top:before {
  top: -95px;
  left: 50%;
}
.products-steps-wrap .sticky-top {
  left: 0;
  top: 80px;
  background: linear-gradient(to top, rgba(115, 241, 244, 0) 1%, rgba(115, 241, 244, 0.6) 10%, #73f1f4 30%);
  transform: rotate(-8deg);
}
.products-steps-wrap .sticky-top:before {
  top: -95px;
  left: 0;
}
.products-steps-wrap .sticky-bottom {
  left: 0;
  bottom: 0;
  background: linear-gradient(rgba(115, 241, 244, 0) 1%, rgba(115, 241, 244, 0.6) 10%, #73f1f4 30%);
  margin-bottom: -100px;
  transform: rotate(-8deg);
}
.products-steps-wrap .sticky-bottom:before {
  bottom: -95px;
  right: 0;
}

.products-steps {
  position: relative;
  z-index: 1;
}
.products-steps .number-wrap {
  text-align: center;
  background: #73f1f4;
}
.products-steps .number-wrap.in-view {
  animation: leaves 1s ease-in-out 0.8s;
}
.products-steps .number-wrap > span {
  font-size: 300px;
  letter-spacing: -0.04em;
  line-height: 1em;
  font-weight: 700;
  font-family: "ThreeSix", sans-serif;
  color: #fff;
}
.products-steps .number-wrap h3 {
  line-height: 75px;
}
.products-steps .number-wrap h3 strong {
  font-size: 67px;
  font-weight: 700;
}
.products-steps .number-wrap h3 span {
  display: inline-block;
  width: 100%;
  font-size: 67px;
  font-weight: 300;
}
.products-steps .text-wrap {
  position: relative;
  opacity: 0;
}
.products-steps .text-wrap.in-view {
  animation: sbFade2 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.products-steps .text-wrap h4 {
  font-size: 24px;
  line-height: 1.2em;
  font-family: "ThreeSix", sans-serif;
  font-weight: 700;
  color: #1c1b29;
  margin: 0 0 30px;
}
.products-steps .text-wrap h4 strong {
  color: #1c1b29;
  font-weight: 700;
}
.products-steps .text-wrap h4 span {
  color: #1c1b29;
  font-weight: 700;
}
.products-steps .text-wrap h4 + ol {
  padding-top: 0;
  margin-top: 0;
}
.products-steps .text-wrap ol {
  position: relative;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
}
.products-steps .text-wrap ol + ol {
  margin-top: 30px;
}
.products-steps .text-wrap ol .img-wrap.g-icon img {
  width: auto !important;
  height: 80px !important;
  margin-bottom: -40px;
}
.products-steps .text-wrap ol .img-wrap.new-img img {
  width: auto !important;
  height: 80px !important;
  max-height: 80px !important;
  margin-bottom: -10px;
}
.products-steps .text-wrap ol .img-wrap img {
  width: auto !important;
  height: 55px !important;
}
.products-steps .text-wrap ol .img-wrap img[alt="Investície do nákupu mediálneho priestoru"] {
  max-width: 62px;
}
.products-steps .text-wrap ol li {
  display: flex;
  padding-bottom: 90px;
  text-align: center;
  justify-content: center;
  align-items: flex-end;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  position: relative;
}
.products-steps .text-wrap ol li h6 {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 22px;
  left: 0;
  font-size: 18px;
  letter-spacing: -1px;
  margin: 10px 0 0;
  height: 60px;
  font-weight: 400;
  color: #1c1b29;
}
.products-steps .text-wrap ul {
  margin-top: 20px;
  padding-left: 20px;
}
.products-steps .text-wrap ul li {
  position: relative;
  font-size: 16px;
  margin: 10px 0;
}
.products-steps .text-wrap ul li .text-three {
  font-family: "CeraPro", sans-serif;
}
.products-steps .text-wrap ul li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #1c1b29;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: -16px;
}
.products-steps .row .col-8 > .title-wrap {
  position: relative;
  top: 0;
  padding-left: 50px;
}
.products-steps .row .col-8 > .title-wrap h3 {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 48px;
  line-height: 1.1666em;
  font-weight: 500;
  max-width: 440px;
}
.products-steps .row .col-8 > .title-wrap.in-view {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.products-steps .row .col-8 > .row {
  width: 100%;
  padding-left: 50px;
}
.products-steps .row.step-1 {
  padding-bottom: 240px;
  background: url("/frontend/img/bg/line-top.svg") bottom 20px center no-repeat;
  background-size: 67% auto;
}
.products-steps .row.step-1 .col-8 {
  padding-top: 30px;
}
.products-steps .row.step-1 .col-8 > .row .col-12 .text-wrap h4 {
  margin-bottom: 50px;
}
.products-steps .row.step-1 .col-8 > .row .col-12 .text-wrap h4.mb-text {
  margin-bottom: 30px;
}
.products-steps .row.step-1 .col-8 > .row .col-6:last-child {
  padding-left: 50px;
}
.products-steps .row.step-1 .col-8 > .row .col-6:last-child h4 {
  max-width: 350px;
}
.products-steps .row.step-2 {
  padding: 0 0 240px;
  background: url("/frontend/img/bg/line-bottom.svg") bottom 20px center no-repeat;
  background-size: 67% auto;
}
.products-steps .row.step-2 .col-8 {
  padding-top: 30px;
}
.products-steps .row.step-2 .col-8 > .row .col-6:last-child {
  padding-top: 15px;
  margin-bottom: 0;
}
.products-steps .row.step-2 .row .text-wrap {
  max-width: 800px;
}
.products-steps .row.step-2 .row .col-8 > .title-wrap {
  padding-left: 0;
  padding-right: 30px;
}
.products-steps .row.step-2 .row .col-8 > .row {
  width: 100%;
  padding-right: 30px;
}
.products-steps .row.step-2 .number-wrap {
  position: relative;
  left: -20px;
}
.products-steps .row.step-2 .number-wrap h3 span {
  margin: 0 -15px;
  width: auto;
}
.products-steps .row.step-3 .row {
  display: flex;
}
.products-steps .row.step-3 .row .col-12 {
  display: flex;
  justify-content: flex-end;
}
.products-steps .row.step-3 .col-8 > .title-wrap {
  padding-top: 20px;
}
.products-steps .row.step-3 .col-8 > .title-wrap h3 {
  max-width: 300px;
}
.products-steps .row.step-3 .text-wrap {
  width: 100%;
}
.products-steps .row.step-3 .number-wrap {
  position: relative;
  left: 10px;
}
.products-steps .row.step-3 .number-wrap h3 span {
  display: inline;
}

.product .bevel-top {
  padding-bottom: 180px;
}

.product .products-steps .number-wrap h3 span {
  top: 0 !important;
}

.products .products-steps .text-wrap {
  padding-bottom: 50px;
}
.products .products-steps .text-wrap h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05em;
  margin-bottom: 21px;
}
.products .products-steps .text-wrap h4 span {
  color: #1c1b29;
}
.products .products-steps .text-wrap ul li {
  letter-spacing: 0;
}
.products .row.step-2 .col-8 > .title-wrap h3 {
  max-width: 435px;
}
.products .row.step-3 .col-8 > .title-wrap h3 {
  max-width: 435px;
}
.products .products-steps .row.step-2 .col-8 > .row .col-6:first-child h4 {
  max-width: 230px;
}
.products .products-steps .row.step-2 .col-8 > .row .col-6:nth-child(2) ul {
  max-width: 280px;
}
.products .products-steps .row.step-3 .number-wrap h3 span {
  display: inline-block;
  line-height: 60px;
}
.products .products-steps .row.step-3 .col-8 > .row {
  display: flex;
  justify-content: flex-end;
}
.products .products-steps .row.step-3 .col-8 > .row .text-wrap {
  left: 0;
}
.products .products-steps .row.step-3 .col-8 > .row .text-wrap ul li:last-child {
  max-width: 250px;
}

.benefits .title-wrap {
  text-align: center;
}
.benefits .title-wrap h2 {
  font-size: 80px;
  line-height: 1em;
  max-width: 575px;
  margin: 0 auto;
  letter-spacing: -1px;
}
.benefits .product-item-wrap {
  padding: 95px 0 100px;
}
.benefits .product-item-wrap .product-item {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
}
.benefits .product-item-wrap .product-item .img-wrap {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 100px;
  position: relative;
  opacity: 0;
}
.benefits .product-item-wrap .product-item .img-wrap.in-view {
  animation: transcale 1s ease forwards;
}
.benefits .product-item-wrap .product-item .text-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex: 0 0 60%;
  max-width: 60%;
}
.benefits .product-item-wrap .product-item .text-wrap.in-view h4 {
  animation: transcale 1s ease forwards;
}
.benefits .product-item-wrap .product-item .text-wrap.in-view ul {
  animation: sbFade2 1s ease forwards;
}
.benefits .product-item-wrap .product-item .text-wrap h4 {
  font-size: 28px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 35px;
  position: relative;
  opacity: 0;
}
.benefits .product-item-wrap .product-item .text-wrap ul {
  position: relative;
  opacity: 0;
  padding-left: 22px;
}
.benefits .product-item-wrap .product-item .text-wrap ul li {
  position: relative;
  font-size: 18px;
  margin: 10px 0;
}
.benefits .product-item-wrap .product-item .text-wrap ul li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #1c1b29;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: -16px;
}
.benefits .product-item-wrap .product-item .text-wrap ul li p {
  margin: 0;
  margin-top: 2px;
  line-height: 1.2em;
}
.benefits .product-item-wrap .product-item .text-wrap ul li p.text-three.color-gray {
  font-family: "CeraPro", sans-serif !important;
  color: #1c1b29 !important;
}
.benefits .product-item-wrap + .center {
  padding-bottom: 80px;
}
.benefits .product-item-wrap + .center .title-wrap h2 span {
  font-weight: 700;
}
.benefits .product-item-wrap + .center .title-wrap + p {
  font-size: 22px;
  color: #1c1b29;
  margin: 32px 0 40px;
}
.benefits .product-item-wrap + .center .title-wrap + p strong {
  color: #73f1f4;
}

.blogs-wrap a {
  display: block;
  width: 100%;
}

.blogs-wrap h4 {
  margin-bottom: 30px;
  margin-top: 25px;
}

.practice {
  overflow: hidden;
}
.practice .container {
  transition: all 0.3s ease;
}
.practice .title-wrap {
  text-align: center;
  margin-bottom: 15px;
}
.practice .title-wrap h2 {
  margin: 0 auto;
  max-width: 690px;
  line-height: 1em;
  font-weight: 400;
}
.practice .title-wrap h2 span {
  font-family: "ThreeSix", sans-serif;
  font-weight: 700;
}
.practice .title-wrap + p {
  font-size: 22px;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.practice .title-wrap + p span {
  font-weight: 700;
}

.practice-steps {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e1e1e4;
}
.practice-steps .item {
  position: relative;
  padding: 0 32px;
  transition: all 0.3s ease;
}
.practice-steps .item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 0;
}
.practice-steps .item a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #1c1b29;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.practice-steps .item a.active::before {
  width: 100%;
}
.practice-steps .item a.active h4, .practice-steps .item a:hover h4 {
  opacity: 1;
}
.practice-steps .item .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 135px;
}
.practice-steps .item h4 {
  margin: 0;
  font-size: 28px;
  font-family: "ThreeSix", sans-serif;
  font-weight: 700;
  color: #1c1b29;
  opacity: 0.5;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.practice-options {
  padding: 30px 0 100px;
  display: none;
}
.practice-options.active {
  display: block;
}
.practice-options .practice-item {
  padding: 20px 0;
  display: flex;
}
.practice-options .practice-item:nth-child(2n) {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
}
.practice-options .practice-item .practive-item-wrap {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
}
.practice-options .practice-item .practive-item-wrap .item-box {
  position: relative;
  top: 0;
  opacity: 0;
  padding: 0 100px;
}
.practice-options .practice-item .practive-item-wrap .item-box.in-view {
  animation: slide-in-l-op 1s ease forwards;
}
.practice-options .practice-item .practive-item-wrap h3 {
  font-size: 40px;
  margin: 20px 0;
  font-weight: 500;
}
.practice-options .practice-item .practive-item-wrap h3 span,
.practice-options .practice-item .practive-item-wrap h3 strong {
  font-family: "CeraPro", sans-serif !important;
  font-weight: 500 !important;
  color: #1c1b29 !important;
}
.practice-options .practice-item .practive-item-wrap p {
  font-size: 16px;
  line-height: 1.5em;
  color: #1c1b29;
  max-width: 380px;
  margin-bottom: 30px;
}
.practice-options .practice-item .practive-item-wrap p span,
.practice-options .practice-item .practive-item-wrap p strong {
  font-family: "CeraPro", sans-serif !important;
  color: #1c1b29 !important;
}
.practice-options .practice-item .practive-item-img {
  display: none !important;
  position: relative;
  top: 0;
  opacity: 0;
  margin-right: -130px;
}
.practice-options .practice-item .practive-item-img.in-view {
  animation: slide-in-l-opl 1s ease forwards;
}
.practice-options .practice-item:nth-child(2n) .practive-item-wrap .item-box.in-view {
  animation: slide-in-l-opl 1s ease forwards;
}
.practice-options .practice-item:nth-child(2n) .practive-item-img {
  margin-right: 0;
  margin-left: -130px;
}
.practice-options .practice-item:nth-child(2n) .practive-item-img.in-view {
  animation: slide-in-l-op 1s ease forwards;
}

.title-wrap {
  position: relative;
  opacity: 0;
  transition: all 1s ease-in-out;
}
.title-wrap.in-view {
  animation: transcale 1s ease forwards;
}

.product .top h1 {
  max-width: 1500px;
}
.product .top h1 .text-three {
  font-size: 163px;
  font-weight: 900;
}
.product .top .title-wrap {
  padding-bottom: 1px;
}
.product #scroll-section {
  position: relative;
}
.product #scroll-section .container > .title-wrap {
  padding-top: 30px;
  margin-bottom: 40px;
  z-index: 1;
}
.product #scroll-section .container > .title-wrap h2 {
  font-family: "ThreeSix", sans-serif;
  font-weight: 400;
  line-height: 1em;
  text-align: center;
  margin: 0 auto 80px;
}
.product #scroll-section .container > .title-wrap h2 strong {
  color: #fff;
  font-weight: 800;
}
.product .product-items-wrap {
  padding: 50px 0;
}
.product .product-items-wrap .product-item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 30px 0;
}
.product .product-items-wrap .product-item .img-wrap {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  opacity: 0;
}
.product .product-items-wrap .product-item .text-wrap {
  flex: 0 0 50%;
  max-width: 50%;
}
.product .product-items-wrap .product-item .text-wrap > span {
  font-size: 21px;
  color: #a4a4a4;
  position: relative;
  opacity: 0;
}
.product .product-items-wrap .product-item .text-wrap h3 {
  font-size: 62px;
  font-weight: 500;
  margin: 10px 0 50px;
  position: relative;
  opacity: 0;
}
.product .product-items-wrap .product-item .text-wrap h3 span {
  font-weight: 300;
}
.product .product-items-wrap .product-item .text-wrap p {
  font-size: 29px;
  letter-spacing: -1px;
  color: #1c1b29;
  position: relative;
  opacity: 0;
}
.product .product-items-wrap .product-item .text-wrap p strong.text-three {
  font-size: 1.14em;
}
.product .product-items-wrap .product-item:first-child .img-wrap.in-view {
  animation-delay: 0.5s !important;
}
.product .product-items-wrap .product-item:first-child .text-wrap.in-view > span {
  animation-delay: 0.5s !important;
}
.product .product-items-wrap .product-item:first-child .text-wrap.in-view h3 {
  animation-delay: 0.5s !important;
}
.product .product-items-wrap .product-item:first-child .text-wrap.in-view p {
  animation-delay: 0.5s !important;
}
.product .product-items-wrap .product-item:nth-child(2n) {
  flex-direction: row-reverse;
}
.product .product-items-wrap .product-item:nth-child(2n) .img-wrap.in-view {
  animation: slide-in-opl 1s ease forwards 0.2s;
}
.product .product-items-wrap .product-item:nth-child(2n) .text-wrap.in-view > span {
  animation: slide-in-op 1s ease forwards 0.2s;
}
.product .product-items-wrap .product-item:nth-child(2n) .text-wrap.in-view h3 {
  animation: transcale 1s ease forwards 0.2s;
}
.product .product-items-wrap .product-item:nth-child(2n) .text-wrap.in-view p {
  animation: sbFade2 1s ease forwards 0.2s;
}
.product .product-items-wrap .product-item:nth-child(2n+1) .img-wrap {
  display: flex;
  justify-content: flex-end;
}
.product .product-items-wrap .product-item:nth-child(2n+1) .img-wrap.in-view {
  animation: slide-in-op 1s ease forwards 0.2s;
}
.product .product-items-wrap .product-item:nth-child(2n+1) .text-wrap {
  text-align: right;
}
.product .product-items-wrap .product-item:nth-child(2n+1) .text-wrap.in-view > span {
  animation: slide-in-op 1s ease forwards 0.2s;
}
.product .product-items-wrap .product-item:nth-child(2n+1) .text-wrap.in-view h3 {
  animation: transcale 1s ease forwards 0.2s;
}
.product .product-items-wrap .product-item:nth-child(2n+1) .text-wrap.in-view p {
  animation: sbFade2 1s ease forwards 0.2s;
}
.product .product-items-wrap .product-item:nth-child(1) .img-wrap {
  justify-content: flex-start;
}
.product .product-items-wrap .product-item:nth-child(1) .img-wrap img:first-child {
  margin-right: -70px;
  margin-bottom: -140px;
}
.product .product-items-wrap .product-item:nth-child(1) .text-wrap {
  padding-left: 100px;
}
.product .product-items-wrap .product-item:nth-child(2) .img-wrap {
  padding-left: 150px;
  display: flex;
  align-items: center;
}
.product .product-items-wrap .product-item:nth-child(2) .text-wrap p {
  max-width: 650px;
}
.product .product-items-wrap .product-item:nth-child(3) .img-wrap {
  padding-right: 150px;
}
.product .product-items-wrap .product-item:nth-child(3) .text-wrap {
  padding-left: 40px;
}
.product .product-items-wrap .product-item:nth-child(3) .text-wrap h3 {
  font-weight: 300;
}
.product .product-items-wrap .product-item:nth-child(3) .text-wrap h3 strong {
  font-weight: 900;
}
.product .product-items-wrap .product-item:nth-child(3) .text-wrap h3 span {
  font-weight: 700;
}
.product .product-items-wrap .product-item:nth-child(3) .text-wrap p {
  max-width: 630px;
  margin-left: auto;
}
.product .product-items-wrap .product-item:nth-child(4) .img-wrap {
  padding-left: 150px;
  display: flex;
  align-items: center;
}
.product .product-items-wrap .product-item:nth-child(4) .img-wrap img {
  transform: rotate(45deg);
}
.product .product-items-wrap .product-item:nth-child(4) .text-wrap {
  font-weight: 300;
}
.product .product-items-wrap .product-item:nth-child(4) .text-wrap h3 {
  max-width: 450px;
}
.product .product-items-wrap .product-item:nth-child(4) .text-wrap h3 strong {
  font-family: "CeraPro", sans-serif;
  font-weight: 700;
}
.product .product-items-wrap .product-item:nth-child(5) .img-wrap {
  padding-right: 120px;
}
.product .product-items-wrap .product-item:nth-child(5) .text-wrap h3 {
  max-width: 365px;
  margin-left: auto;
}
.product .product-items-wrap .product-item:nth-child(5) .text-wrap h3 strong {
  font-weight: 900;
}
.product .product-items-wrap .product-item:nth-child(5) .text-wrap p {
  max-width: 620px;
  margin-left: auto;
}
.product .product-items-wrap .product-item:nth-child(6) .img-wrap {
  display: flex;
  align-items: center;
  padding-left: 120px;
}
.product .product-items-wrap .product-item:nth-child(6) .img-wrap img {
  position: relative;
  top: -20px;
}
.product .product-items-wrap .product-item:nth-child(6) .text-wrap h3 {
  max-width: 480px;
}
.product .product-items-wrap .product-item:nth-child(6) .text-wrap h3 strong {
  font-weight: 900;
}
.product .product-items-wrap .product-item:nth-child(6) .text-wrap p {
  max-width: 580px;
}
.product .product-items-wrap > .row {
  margin-top: 60px;
}
.product .product-items-wrap > .row .col-6:first-child ul li:last-child {
  max-width: 310px;
}
.product .product-items-wrap > .row .col-6:last-child ul {
  padding-left: 100px;
}
.product .product-items-wrap > .row ul {
  position: relative;
  opacity: 0;
}
.product .product-items-wrap > .row ul.in-view {
  animation: sbFade2 1s ease forwards;
}
.product .product-items-wrap > .row ul li {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 30px;
  font-size: 33px;
  font-weight: 800;
  margin: 5px 0;
  font-family: "ThreeSix", sans-serif;
}
.product .product-items-wrap > .row ul li:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background: #73f1f4;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 0;
}
.product .product-items-wrap > .row ul li small {
  font-family: "CeraPro", sans-serif;
  font-size: 0.8em;
  font-weight: 400;
}
.product .product-items-wrap + .center {
  padding-bottom: 100px;
}
.product .product-items-wrap + .center .title-wrap h2 {
  font-weight: 500;
  margin: 80px auto 20px;
}
.product .product-items-wrap + .center .title-wrap h2 span {
  font-weight: 700;
}
.product .product-items-wrap + .center .title-wrap + p {
  font-size: 22px;
  color: #1C1B29;
  margin: 0 0 50px;
}
.product .product-items-wrap + .center .title-wrap + p strong {
  color: #73f1f4;
}

.plans-section.bg-gradient:before {
  background: linear-gradient(5deg, #212735 10%, #2f4a59);
  background-attachment: scroll;
  background-size: auto;
  background-attachment: fixed;
  background-size: 100% 2000px;
  background-position: center bottom;
}

.plans-wrap {
  position: relative;
  top: -80px;
}
.plans-wrap > .row {
  justify-content: center;
}
.plans-wrap .row .col-3:nth-child(1) .item-wrap.in-view {
  animation-delay: 100ms;
}
.plans-wrap .row .col-3:nth-child(2) .item-wrap.in-view {
  animation-delay: 200ms;
}
.plans-wrap .row .col-3:nth-child(3) .item-wrap.in-view {
  animation-delay: 300ms;
}
.plans-wrap .row .col-3:nth-child(4) .item-wrap.in-view {
  animation-delay: 400ms;
}
.plans-wrap .row .col-3 .item-wrap {
  position: relative;
  opacity: 0;
  background: #1c1b29;
  padding: 24px 20px 30px;
  border-radius: 18px;
  height: 100%;
  text-align: center;
}
.plans-wrap .row .col-3 .item-wrap.in-view {
  animation: sbFade 1000ms ease-in-out forwards;
}
.plans-wrap .row .col-3 .item-wrap span.i-success {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("/frontend/img/icon/i-success.svg") center center no-repeat;
  background-size: 24px auto;
}
.plans-wrap .row .col-3 .item-wrap span.i-no {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("/frontend/img/icon/i-x.svg") center center no-repeat;
  background-size: 14px auto;
}
.plans-wrap .row .col-3 .item-wrap ul li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 55px;
}
.plans-wrap .row .col-3 .item-wrap ul li:last-child {
  height: 60px;
}
.plans-wrap .row .col-3 .item-wrap ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  height: 100%;
  background: #00a3b8;
  opacity: 0;
  transition: all 0.3s ease;
}
.plans-wrap .row .col-3 .item-wrap ul li.hover:before {
  opacity: 0.2;
}
.plans-wrap .row .col-3 .item-wrap ul li strong,
.plans-wrap .row .col-3 .item-wrap ul li span,
.plans-wrap .row .col-3 .item-wrap ul li a {
  position: relative;
  z-index: 2;
}
.plans-wrap .row .col-3 .item-wrap ul li strong + span {
  margin-top: -45px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap .function-wrap {
  padding: 1px 0;
  border-bottom: 1px solid #263442;
  margin-bottom: 20px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap .function-wrap h4 {
  font-size: 32px;
  color: #fff;
  margin: 20px 0 40px;
  text-transform: uppercase;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li {
  font-size: 18px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li > div {
  display: none;
  margin: 0;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li > div + p {
  margin: 0;
  color: #73f1f4;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li .button {
  margin-top: 10px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 130px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item + .price-item {
  padding-top: 0;
  margin-top: -10px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item.price-small strong {
  font-size: 40px;
  font-weight: 500;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item.price-small strong + span {
  margin-top: -25px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item strong {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  display: block;
  width: 100%;
  margin-top: -8px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item strong + span {
  display: inline-block;
  max-width: 200px;
  max-width: 140px;
  margin-top: -22px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item strong.text-small {
  font-size: 40px;
}
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.plans-wrap .row .col-3:nth-child(1) {
  padding-top: 90px;
}
.plans-wrap .row .col-3:nth-child(1) .item-wrap {
  background: #73f1f4;
  height: auto;
}
.plans-wrap .row .col-3:nth-child(1) .item-wrap h3 {
  font-size: 60px;
  font-weight: 700;
  font-family: "ThreeSix", sans-serif;
  margin: 20px 0 20px;
  color: #fff;
}
.plans-wrap .row .col-3:nth-child(1) .item-wrap ul {
  padding: 35px 0 30px;
  text-align: left;
}
.plans-wrap .row .col-3:nth-child(1) .item-wrap ul li {
  justify-content: flex-start;
  width: 100%;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #1c1b29;
}
.plans-wrap .row .col-3:nth-child(1) .item-wrap ul li strong {
  font-weight: 400;
}
.plans-wrap .row .col-3:nth-child(2) .img-wrap {
  height: 160px;
  background: url("/frontend/img/icon/i-l.svg") top center no-repeat;
  background-size: auto 125px;
}
.plans-wrap .row .col-3:nth-child(3) .img-wrap {
  height: 185px;
  background: url("/frontend/img/icon/i-xl.svg") top center no-repeat;
  background-size: auto 145px;
}
.plans-wrap .row .col-3:nth-child(4) .img-wrap {
  height: 200px;
  background: url("/frontend/img/icon/i-xxl.svg") top center no-repeat;
  background-size: auto 185px;
}

.product .top .title-wrap + p .text-three {
  font-size: 1.09em;
  font-weight: 500;
}
.product .products-steps-wrap {
  padding-bottom: 100px;
}
.product .products-steps .row .text-wrap ul li {
  margin: 10px 0;
}
.product .products-steps .row .text-wrap ul li strong {
  font-weight: 400;
}
.product .products-steps .row .text-wrap .icon-success {
  display: none !important;
  margin-top: 40px;
}
.product .products-steps .row .text-wrap .icon-success span {
  display: inline-block;
  width: 86px;
  height: 86px;
  background: url("/frontend/img/icon/i-success-circle.svg") center center no-repeat;
  background-size: auto 85px;
}
.product .products-steps .row.step-1 .col-8 > .row {
  max-width: 700px;
}
.product .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
  max-width: 680px;
}
.product .products-steps .row.step-2 .col-8 > .row {
  max-width: 800px;
}
.product .products-steps .row.step-2 .col-8 .text-wrap h4 {
  max-width: 635px;
}
.product .products-steps .row.step-3 .col-8 .text-wrap h4 {
  max-width: 535px;
}
.product.p-insight .top p {
  max-width: 530px;
}
.product.p-insight .top p span {
  letter-spacing: 0;
}
.product.p-insight .products-steps .text-wrap h4 + ol li:nth-child(7) h6 {
  margin: 0 -10px;
  width: auto;
  left: 5px;
}
.product.p-insight .products-steps .text-wrap ol {
  max-width: 670px;
  position: relative;
  left: -18px;
}
.product.p-insight .products-steps .text-wrap ol li {
  flex: 0 0 25%;
  max-width: 25%;
}
.product.p-brand .title-wrap {
  padding-top: 25px;
  text-align: center;
}
.product.p-brand .title-wrap h2 {
  margin-top: 10px;
  margin-bottom: 50px;
}
.product.p-brand .content-wrap {
  text-align: center;
  opacity: 0;
  position: relative;
}
.product.p-brand .content-wrap.in-view {
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: none;
  animation-fill-mode: forwards;
}
.product.p-brand .content-wrap h3 {
  font-size: 36px;
  line-height: 1.4em;
  max-width: 925px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  margin-top: 48px;
}
.product.p-brand .content-wrap p {
  font-size: 18px;
  max-width: 725px;
  margin: 30px auto 36px;
  color: #263442;
  line-height: 1.5em;
}
.product.p-brand .content-wrap p + .img-wrap {
  margin-top: -20px;
}
.product.p-brand .content-wrap .text-blog {
  max-width: 725px;
  margin: 50px auto;
}
.product.p-brand .content-wrap .text-blog .text-blog-wrap {
  padding-bottom: 0;
}
.product.p-brand .content-wrap .text-blog .text-blog-wrap ul {
  margin-left: 15px;
}
.product.p-brand .content-wrap .text-blog .text-blog-wrap ul li {
  text-align: left;
}
.product.p-brand .content-wrap .text-blog .text-blog-wrap ul li::before {
  top: 8px;
}
.product.p-brand .top p {
  max-width: 925px;
}
.product.p-brand .products-steps .text-wrap ol {
  max-width: 475px;
  left: 0;
}
.product.p-social .top p {
  max-width: 850px;
}
.product.p-social #scroll-section .title-wrap h2 {
  max-width: 1060px;
}
.product.p-social .products-steps .row.step-1 .row .text-wrap h4 {
  max-width: 640px;
}
.product.p-social .products-steps .text-wrap ol {
  max-width: 300px;
  left: -8px;
}
.product.p-pr .top p {
  max-width: 780px;
}
.product.p-pr .products-steps .text-wrap ol {
  max-width: 440px;
  left: -37px;
}
.product.p-pr .products-steps .text-wrap ol li {
  padding-bottom: 40px;
}
.product.p-pr .products-steps .text-wrap ol li h6 {
  bottom: -35px;
}
.product.p-pr #scroll-section .title-wrap h2 {
  max-width: 860px;
}
.product.p-pr .products-steps .row.step-1 .row .text-wrap h4 {
  max-width: 610px;
}
.product.p-pr .products-steps .row.step-2 .row .text-wrap ul {
  max-width: 610px;
}
.product.p-pr .products-steps .row.step-3 .row .text-wrap ul {
  max-width: 640px;
}
.product.p-pr .benefits .product-item-wrap .product-item .text-wrap ul {
  max-width: 520px;
}
.product.p-event .top p {
  max-width: 730px;
}
.product.p-event .products-steps .text-wrap ol {
  max-width: 260px;
  left: -22px;
}
.product.p-event .products-steps .text-wrap ol li {
  flex: 0 0 50%;
  max-width: 50%;
}
.product.p-event #scroll-section .title-wrap h2 {
  max-width: 1020px;
}
.product.p-event .products-steps .row.step-3 .row .text-wrap ul {
  max-width: 480px;
}
.product.p-event .benefits .product-item-wrap .product-item .text-wrap ul {
  max-width: 650px;
}
.product.p-sampling .top p {
  max-width: 890px;
}
.product.p-sampling .products-steps .text-wrap ol {
  max-width: 450px;
  left: -30px;
}
.product.p-sampling .products-steps .row.step-2 .row .text-wrap ul {
  max-width: 530px;
}
.product.p-sampling .products-steps .row.step-3 .row .text-wrap ul {
  max-width: 530px;
}
.product.p-campaign .top h1 .text-three {
  position: relative;
  z-index: 1;
}
.product.p-campaign .top p {
  max-width: 705px;
}
.product.p-campaign .products-steps .text-wrap ol {
  left: -37px;
}
.product.p-campaign .products-steps .text-wrap ol li {
  padding-bottom: 80px;
}
.product.p-campaign .products-steps .text-wrap ol li h6 {
  bottom: 8px;
}
.product.p-campaign .products-steps .row.step-2 .row .text-wrap ul {
  max-width: 740px;
}
.product.p-campaign .products-steps .row.step-2 .row .text-wrap ul li:nth-child(3) {
  max-width: 540px;
}
.product.p-campaign .products-steps .row.step-2 .row .text-wrap ul li:nth-child(4) {
  max-width: 520px;
}
.product.p-campaign .benefits .product-item-wrap .product-item .text-wrap ul {
  max-width: 480px;
}
.product.p-activation .top p {
  max-width: 890px;
}
.product.p-activation .products-steps .text-wrap ol {
  max-width: 440px;
  left: -36px;
}
.product.p-activation .products-steps .row.step-2 .row .text-wrap ul {
  max-width: 640px;
}
.product.p-price .products-steps .text-wrap ol {
  max-width: 660px;
  left: -13px;
}
.product.p-price .products-steps .text-wrap ol li {
  align-items: center;
}
.product.p-price .products-steps .text-wrap ol li:first-child {
  flex: 0 0 20%;
  max-width: 20%;
}
.product.p-price .products-steps .text-wrap ol li:nth-child(2) {
  flex: 0 0 40%;
  max-width: 40%;
}
.product.p-price .products-steps .text-wrap ol li:nth-child(3) {
  flex: 0 0 40%;
  max-width: 40%;
}
.product.p-price .products-steps .row.step-3 .row .text-wrap ul {
  max-width: 580px;
}
.product.p-upsell .top h1 {
  position: relative;
  left: 26px;
}
.product.p-upsell .top p {
  max-width: 720px;
}
.product.p-upsell .products-steps .text-wrap ol {
  max-width: 600px;
  left: -45px;
}
.product.p-upsell .products-steps .row.step-2 .row .text-wrap ul {
  max-width: 720px;
}
.product.p-upsell .products-steps .row.step-2 .row .text-wrap ul li:nth-child(5) {
  max-width: 550px;
}
.product.p-upsell .benefits .product-item-wrap .product-item .text-wrap ul {
  max-width: 425px;
}
.product.p-newbiz .products-steps .row.step-2 .row .text-wrap ul {
  max-width: 700px;
}
.product.p-newbiz .products-steps .text-wrap ol {
  max-width: 500px;
  left: -36px;
}
.product.p-newbiz .benefits .product-item-wrap .product-item .text-wrap ul li:nth-child(4) {
  max-width: 540px;
}
.product.p-influence .top p {
  max-width: 575px;
}
.product.p-influence .top p span {
  display: inline-block;
  max-width: 475px;
}
.product.p-influence.p-surveys .products-steps .text-wrap ol {
  max-width: 425px;
  left: -8px;
}
.product.p-influence .products-steps .text-wrap ol {
  max-width: 300px;
  left: -8px;
}
.product.p-influence .products-steps .row.step-2 .row .text-wrap ul {
  max-width: 730px;
}
.product.p-influence .products-steps .row.step-2 .row .text-wrap ul li:nth-child(5) {
  max-width: 650px;
}
.product.p-influence .products-steps .row.step-3 .row .text-wrap ul {
  max-width: 630px;
}
.product.p-satisfaction .top p {
  max-width: 685px;
}
.product.p-satisfaction .products-steps .text-wrap ol {
  max-width: 700px;
  left: -48px;
}
.product.p-satisfaction .products-steps .text-wrap ol li {
  align-items: center;
  flex: 0 0 25%;
  max-width: 25%;
}
.product.p-satisfaction .products-steps .row.step-1 .row .text-wrap h4 {
  max-width: 645px;
}
.product.p-satisfaction .products-steps .row.step-2 .row .text-wrap > ul ul {
  margin-top: 3px;
  margin-bottom: 5px;
}
.product.p-satisfaction .products-steps .row.step-2 .row .text-wrap > ul li:nth-child(2) {
  max-width: 490px;
}
.product.p-satisfaction .benefits .product-item-wrap .product-item .text-wrap ul {
  max-width: 425px;
}

#demo .title-wrap {
  padding-top: 30px;
}
#demo .title-wrap h2 {
  margin: 28px auto;
}
#demo .center p {
  font-size: 18px;
  max-width: 725px;
  margin: 30px auto 36px;
  color: #263442;
  line-height: 1.5em;
}
#demo .center .button,
#demo .center p {
  opacity: 0;
  position: relative;
}
#demo .center p.in-view {
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
#demo .center .button.in-view {
  animation: sbFade2 1000ms ease-in-out 0.2s;
  animation-fill-mode: forwards;
}
#demo .demo-img {
  margin-top: 74px;
  padding-bottom: 74px;
  transition: all 1s ease-in-out;
  position: relative;
  opacity: 0;
}
#demo .demo-img.in-view {
  animation: transcale 1s ease forwards;
}

.product-benefits-wrap {
  padding: 60px 0 100px;
}
.product-benefits-wrap > .row {
  margin-right: -16px;
  margin-left: -16px;
  padding-bottom: 60px;
}
.product-benefits-wrap > .row + .center p {
  color: #1c1b29;
}
.product-benefits-wrap > .row .col-4 {
  position: relative;
  padding-right: 16px;
  padding-left: 16px;
  margin-bottom: 32px;
}
.product-benefits-wrap > .row .col-4:nth-child(3n) .card-box .card-front,
.product-benefits-wrap > .row .col-4:nth-child(3n) .card-box .text-box {
  transition-delay: 0.6s;
}
.product-benefits-wrap > .row .col-4:nth-child(3n+2) .card-box .card-front,
.product-benefits-wrap > .row .col-4:nth-child(3n+2) .card-box .text-box {
  transition-delay: 0.4s;
}
.product-benefits-wrap > .row .col-4 .card-box {
  position: relative;
  height: 100%;
}
.product-benefits-wrap > .row .col-4 .card-box.in-view .card-front {
  transform: rotateY(180deg);
}
.product-benefits-wrap > .row .col-4 .card-box.in-view .text-box {
  transform: rotateY(0deg);
}
.product-benefits-wrap > .row .col-4 .card-front,
.product-benefits-wrap > .row .col-4 .text-box {
  border: 1px solid #e1e1e4;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  transition: transform 1s 0.2s;
  backface-visibility: hidden;
}
.product-benefits-wrap > .row .col-4 .card-front {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.product-benefits-wrap > .row .col-4 .text-box {
  border: 1px solid #e1e1e4;
  border-radius: 16px;
  padding: 32px 24px;
  padding-bottom: 18px;
  transform: rotateY(-180deg);
  z-index: 1;
}
.product-benefits-wrap > .row .col-4 .text-box .icon-wrap {
  height: 60px;
  display: flex;
  align-items: center;
}
.product-benefits-wrap > .row .col-4 .text-box span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.333em;
  font-weight: 700;
  width: 100%;
  color: #73f1f4;
  margin: 40px 0 10px;
}
.product-benefits-wrap > .row .col-4 .text-box h4 {
  font-family: "ThreeSix", sans-serif;
  font-size: 24px;
  line-height: 1.17em;
  font-weight: 800;
  margin: 20px 0 10px;
  color: #1c1b29;
}
.product-benefits-wrap > .row .col-4 .text-box p {
  font-size: 16px;
  line-height: 1.5em;
  color: #263442;
}

.top .policy-wrap {
  text-align: left;
  padding-bottom: 80px;
}
.top .policy-wrap h1 {
  font-size: 50px;
  color: #212735;
  margin-bottom: 60px;
}
.top .policy-wrap h2,
.top .policy-wrap h3,
.top .policy-wrap h4 {
  line-height: 1.3em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.top .policy-wrap h3 {
  font-size: 36px;
  margin: 50px auto 30px;
}
.top .policy-wrap h3 ~ p {
  padding-bottom: 0;
  margin-bottom: 0;
}
.top .policy-wrap h4 {
  font-size: 24px;
}
.top .policy-wrap p {
  font-size: 18px;
  color: #212735;
}
.top .policy-wrap p a {
  display: inline-block;
  width: auto;
  text-decoration: underline;
}
.top .policy-wrap p a:hover {
  text-decoration: none;
}
.top .policy-wrap ol {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  counter-reset: item;
  padding-left: 15px;
}
.top .policy-wrap ol li {
  position: relative;
  counter-increment: item;
  padding-left: 24px;
}
.top .policy-wrap ol li:before {
  content: counter(item, lower-alpha) ") ";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
}
.top .policy-wrap ol li p {
  padding: 0;
  margin-bottom: 12px;
}
.top .policy-wrap ul {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.top .policy-wrap ul li {
  position: relative;
  padding-left: 20px;
}
.top .policy-wrap ul li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #1c1b29;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 0;
}
.top .policy-wrap ul li p {
  padding: 0;
  margin-bottom: 12px;
}

body a {
  color: inherit;
}
body a:hover {
  text-decoration: none;
}

header .lng-wrap a.button.mr-1 {
  margin-right: 12px !important;
}
header .lng-wrap a.button.mr-1:hover {
  color: #1c1b29;
}

.instagram-input {
  position: relative;
  margin-right: 12px;
  transition: all 0.3s ease;
}
.instagram-input .input-wrap label {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
.instagram-input .input-wrap label:before {
  content: "";
  display: inline-block;
  width: 20px;
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  background: url("/frontend/img/icon/i-search.svg") center center no-repeat;
  background-size: 18px auto;
  filter: grayscale(1);
}
.instagram-input .input-wrap label input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  padding-left: 30px;
  font-size: 16px;
  height: 32px;
  max-width: 185px;
  margin: 0;
}
.instagram-input .input-wrap label input:not(:-moz-placeholder-shown) {
  background: #fff;
  color: #1c1b29;
  border-color: #f8f8f8;
}
.instagram-input .input-wrap label input:not(:-ms-input-placeholder) {
  background: #fff;
  color: #1c1b29;
  border-color: #f8f8f8;
}
.instagram-input .input-wrap label input:not(:placeholder-shown) {
  background: #fff;
  color: #1c1b29;
  border-color: #f8f8f8;
}
.instagram-input .input-wrap label input::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 14px;
  color: #96979f;
  opacity: 1;
  /* Firefox */
}
.instagram-input .input-wrap label input:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 14px;
  color: #96979f;
  opacity: 1;
  /* Firefox */
}
.instagram-input .input-wrap label input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 14px;
  color: #96979f;
  opacity: 1;
  /* Firefox */
}
.instagram-input .input-wrap label input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 14px;
  color: #96979f;
}
.instagram-input .input-wrap label input::-ms-input-placeholder {
  /* Microsoft Edge */
  font-size: 14px;
  color: #96979f;
}
.instagram-input .input-wrap + ul {
  background: #fff;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  border-radius: 6px;
  border: 1px solid #f8f8f8;
  max-height: 600px;
  min-width: 100%;
  overflow: auto;
  scrollbar-width: thin;
  box-shadow: 0px 4px 8px rgba(28, 27, 41, 0.05), 0px 2px 4px rgba(28, 27, 41, 0.05);
}
.instagram-input .input-wrap + ul:empty {
  display: none;
}
.instagram-input .input-wrap + ul li {
  background: #fff;
  color: #1c1b29;
  border-bottom: 1px solid #f8f8f8;
}
.instagram-input .input-wrap + ul li:last-child {
  border-bottom: 0;
}
.instagram-input .input-wrap + ul li a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  width: 100%;
  transition: all 0.3s ease;
}
.instagram-input .input-wrap + ul li a:hover {
  background: #e4f7f8;
  box-shadow: inset 0px -1px 0px rgba(225, 225, 228, 0.5);
}
.instagram-input .input-wrap + ul li a div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 16px;
}
.instagram-input .input-wrap + ul li a strong {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  margin-bottom: 4px;
}
.instagram-input .input-wrap + ul li a .img-wrap {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  max-width: 40px;
  padding-left: 0;
  margin-right: 0 !important;
}
.instagram-input .input-wrap + ul li a .img-wrap span {
  font-size: 16px !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
}
.instagram-input .input-wrap + ul li a .img-wrap img {
  border-radius: 50%;
}
.instagram-input .input-wrap + ul li a span.name-wrap {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  color: #696b76;
  text-align: left;
}
.instagram-input .input-wrap + ul li a span.name-wrap .lock-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("/frontend/img/icon/i-lock.svg") center center no-repeat;
  background-size: 18px auto;
}

.database-top {
  min-height: auto !important;
}

.insta-show {
  min-height: auto !important;
}

.login-top {
  min-height: auto !important;
  padding-top: 100px;
}
.login-top h1 {
  font-family: "ThreeSix", sans-serif;
  font-size: 40px;
}
.login-top.register-top + .bg-gray h2 {
  font-size: 32px;
  font-weight: 800;
  font-family: "ThreeSix", sans-serif;
  margin-bottom: 30px;
}
.login-top.register-top + .bg-gray .container {
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
.login-top.register-top + .bg-gray .button-wrap {
  padding-top: 10px;
}
.login-top.register-top + .bg-gray .button-wrap .button {
  width: 100%;
}
.login-top.register-top + .bg-gray .max-wrap {
  max-width: 675px;
}
.login-top.register-top + .bg-gray .reg-vop-wrap p {
  color: #96979f;
  font-size: 14px;
  max-width: 420px;
  margin: 0 auto;
}
.login-top.register-top + .bg-gray .reg-vop-wrap a {
  color: #00a3b8;
  transition: all 0.3s ease;
}
.login-top.register-top + .bg-gray .reg-vop-wrap a:hover {
  color: #3f566d;
}
.login-top.register-top + .bg-gray .bg-box {
  padding: 48px !important;
}
.login-top.register-top + .bg-gray .bg-box .icon-wrap {
  padding-bottom: 24px;
}
.login-top.register-top + .bg-gray .bg-box p {
  font-size: 18px;
  line-height: 28px;
}
.login-top.register-top + .bg-gray .bg-box .author-wrap {
  padding-top: 28px;
  display: flex;
}
.login-top.register-top + .bg-gray .bg-box .img-wrap {
  padding-right: 15px;
  flex: 0 0 68px;
  max-width: 68px;
}
.login-top.register-top + .bg-gray .bg-box .text-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.login-top.register-top + .bg-gray .bg-box .text-wrap h5 {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #1c1b29;
  margin: 0;
}
.login-top.register-top + .bg-gray .bg-box .text-wrap p {
  font-size: 14px;
  line-height: 1.4em;
  margin-bottom: 0;
  max-width: 140px;
}

.auth-wrap a.link {
  font-size: 14px;
  color: #00a3b8;
  background: none;
  padding: 0;
  text-transform: none;
}
.auth-wrap a.link::after {
  display: none;
}
.auth-wrap .login-top + .bg-gray .bg-box {
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0px 2px 8px rgba(105, 107, 118, 0.1);
  border-radius: 16px;
  padding: 40px;
  max-width: 450px;
  margin: 0 auto;
  margin-top: calc(-8% - 50px);
  margin-bottom: 80px;
}
.auth-wrap .button-wrap {
  padding-bottom: 25px;
}
.auth-wrap .button-wrap .button {
  width: 100%;
  padding: 15px 28px 13px;
}

body .kt-radio,
body .kt-checkbox {
  font-size: 14px;
  color: #1c1b29;
  padding-left: 26px;
}
body .kt-radio > span,
body .kt-checkbox > span {
  top: 2px;
}
body .kt-radio > span::after,
body .kt-checkbox > span::after {
  display: block;
  transform: none;
  transition: all 0.3s ease;
  width: 0;
  height: 0;
  margin: 0;
  top: 5px;
  left: 5px;
  border: 0;
}
body .kt-checkbox > input ~ span {
  width: 14px;
  height: 14px;
  border: 2px solid #96979f;
  border-radius: 2px;
}
body .kt-radio > input ~ span {
  width: 14px;
  height: 14px;
  border: 2px solid #96979f;
  border-radius: 2px;
  transform: translate(2px, 3px);
  transition: none !important;
}
body .kt-checkbox > input:checked ~ span {
  width: 14px;
  height: 14px;
  border-color: #00a3b8;
}
body .kt-checkbox > input:checked ~ span:after {
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  background: url(/frontend/img/icon/i-form-check.svg) center center no-repeat;
  background-size: 14px;
}
body .kt-radio > input:checked ~ span {
  width: 14px;
  height: 14px;
  border-color: #00a3b8;
  transition: none !important;
}
body .kt-radio > input:checked ~ span:after {
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  background: url(/frontend/img/icon/i-form-radio-active.svg) center center no-repeat;
  background-size: auto;
  transition: none !important;
}

.login-content .bg-box {
  margin-bottom: 40px !important;
}
.login-content > .d-flex.justify-content-between {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 60px;
  max-width: 450px;
  margin: 0 auto;
}
.login-content > .d-flex.justify-content-between a {
  font-size: 14px;
  color: #96979f;
  transition: all 0.3s ease;
}
.login-content > .d-flex.justify-content-between a:hover {
  color: #3f566d !important;
}

.form-group .form-label {
  font-size: 14px;
  font-weight: 700;
  color: #1c1b29;
}
.form-group .form-control {
  border: 1px solid #96979f;
  border-radius: 8px;
  padding: 14px 12px;
  height: auto;
}
.form-group .form-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.form-group .form-checkbox input {
  display: none;
}
.form-group .form-checkbox input + span:before {
  content: "";
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border: none;
  transition: 300ms all ease-in-out;
  border: 2px solid #00a3b8;
  border-radius: 2px;
}
.form-group .form-checkbox input + span:after {
  content: "";
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 9px;
  transform: translateX(-50%) translateY(-50%);
  width: 0%;
  height: 0%;
  border: none;
  border-radius: 1px;
  transition: 300ms all ease-in-out;
}
.form-group .form-checkbox input:checked + span::after {
  width: 18px;
  height: 18px;
  background: url("/frontend/img/icon/i-form-check.svg") center center no-repeat;
  background-size: auto;
  background-size: 18px;
}

.billing-information {
  border-top: 1px solid #e1e1e4;
  margin-top: 30px;
  padding-top: 40px;
}

.home .top h1 {
  font-size: 110px;
  line-height: 85%;
  padding-top: 90px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.home .our-tools #tab-flatrate > .center p {
  font-size: 18px;
  line-height: 1.5em;
  margin: 30px auto 40px;
  max-width: 750px;
}

@media only screen and (max-width: 1600px) {
  .login-top h1 {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 1140px) {
  .home header .instagram-input-wrap {
    transition: all 0.3s ease;
  }
  .home header .instagram-input input {
    transition: background-color 0.3s ease;
  }
  .home header:not(.scroll) .instagram-input-wrap {
    width: 50px;
  }
  .home header:not(.scroll) .instagram-input {
    position: absolute;
    width: 100%;
    max-width: 575px;
    top: 142px;
    right: calc(50% - 287px);
    margin-right: 0;
  }
  .home header:not(.scroll) .instagram-input .input-wrap + ul {
    width: 100%;
  }
  .home header:not(.scroll) .instagram-input label:before {
    left: 14px;
    background-size: 22px auto;
    filter: grayscale(0);
  }
  .home header:not(.scroll) .instagram-input input {
    font-size: 16px;
    width: 100%;
    padding-left: 40px;
    max-width: 575px;
    height: 48px;
    background: #fff;
    color: #000;
  }
  .home header:not(.scroll) .instagram-input input::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-size: 16px;
    color: #96979f;
    opacity: 1;
    /* Firefox */
  }
  .home header:not(.scroll) .instagram-input input:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-size: 16px;
    color: #96979f;
    opacity: 1;
    /* Firefox */
  }
  .home header:not(.scroll) .instagram-input input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-size: 16px;
    color: #96979f;
    opacity: 1;
    /* Firefox */
  }
  .home header:not(.scroll) .instagram-input input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-size: 16px;
    color: #96979f;
  }
  .home header:not(.scroll) .instagram-input input::-ms-input-placeholder {
    /* Microsoft Edge */
    font-size: 16px;
    color: #96979f;
  }
  .home header.scroll .instagram-input {
    position: absolute;
    top: 4px;
    right: 197px;
  }
  .home header.scroll .instagram-input-wrap {
    width: 185px;
  }
  .home header.scroll .instagram-input-wrap.user-login .instagram-input {
    right: 46px;
  }
  .home header.scroll.scroll2 .instagram-input {
    position: absolute;
    top: -1px;
  }
}
.database-top + section > div {
  position: relative;
  z-index: 1;
  margin-top: -8%;
}
.database-top.database-unlocked + section > div {
  position: relative;
  z-index: 1;
  margin-top: calc(-8% - 50px);
  padding-bottom: 80px;
}

.table-instagram-wrap {
  padding-bottom: 100px;
}
.table-instagram-wrap.table-locked > p {
  font-size: 18px;
  background: #fff;
  padding: 70px 25px;
  margin: 0;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
  text-align: center;
  text-align: center;
}
.table-instagram-wrap .flex-table {
  border-radius: 8px;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  overflow: hidden;
}
.table-instagram-wrap .flex-table div.flex-row {
  background: #e1e1e4 !important;
  padding: 17px 20px;
  padding-left: 0;
}
.table-instagram-wrap .flex-table div.flex-row h5 {
  font-size: 14px;
  font-weight: 400;
  color: #696b76;
  margin: 0;
}
.table-instagram-wrap .flex-table a.flex-row {
  transition: all 0.3s ease;
}
.table-instagram-wrap .flex-table a.flex-row:hover {
  background: #e4f7f8;
  box-shadow: inset 0px -1px 0px rgba(225, 225, 228, 0.5);
}
.table-instagram-wrap .flex-table .flex-row {
  display: flex;
  padding: 2px 20px;
  padding-left: 0;
}
.table-instagram-wrap .flex-table .flex-row:nth-child(2n) {
  background: #fff;
}
.table-instagram-wrap .flex-table .flex-row:nth-child(2n+1) {
  background: #f8f8f8;
}
.table-instagram-wrap .flex-table .flex-row .col {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  color: #1c1b29;
}
.table-instagram-wrap .flex-table .flex-row .col.img-col {
  display: flex;
  align-items: center;
}
.table-instagram-wrap .flex-table .flex-row .col.img-col p {
  color: inherit;
  word-break: break-all;
}
.table-instagram-wrap .flex-table .flex-row .col:nth-child(1) {
  max-width: 80px;
  justify-content: center;
}
.unlocked-table .table-instagram-wrap .flex-table .flex-row .col:nth-child(1) {
  max-width: none;
  justify-content: start;
}
.table-instagram-wrap .flex-table .flex-row .col:nth-child(1) h5 {
  text-align: center;
}
.unlocked-table .table-instagram-wrap .flex-table .flex-row .col:nth-child(2) {
  flex: 0 0 240px;
  max-width: 240px;
}
.table-instagram-wrap .flex-table .flex-row .col:nth-child(3) {
  max-width: 80px;
}
.unlocked-table .table-instagram-wrap .flex-table .flex-row .col:nth-child(3) {
  flex: 0 0 160px;
  max-width: 160px;
  justify-content: start;
}
.table-instagram-wrap .flex-table .flex-row .col:nth-child(4) {
  max-width: 170px;
}
.table-instagram-wrap .flex-table .flex-row .col:nth-child(5) {
  max-width: 90px;
}
.table-instagram-wrap .flex-table .flex-row .col:nth-child(6) {
  max-width: 110px;
}

.table-instagram-wrap .col.img-col .img-wrap,
.insta-show .insta-left .img-wrap,
.instagram-input .input-wrap + ul li a .img-wrap {
  display: flex;
  margin-right: 12px;
}
.table-instagram-wrap .col.img-col .img-wrap span,
.insta-show .insta-left .img-wrap span,
.instagram-input .input-wrap + ul li a .img-wrap span {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  background: #00a3b8;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  text-transform: uppercase;
}
.table-instagram-wrap .col.img-col .img-wrap[data-type=Médium] span,
.insta-show .insta-left .img-wrap[data-type=Médium] span,
.instagram-input .input-wrap + ul li a .img-wrap[data-type=Médium] span {
  background: #90a4ae;
  color: #263238;
}
.table-instagram-wrap .col.img-col .img-wrap[data-type="Influencer/Osoba"] span,
.insta-show .insta-left .img-wrap[data-type="Influencer/Osoba"] span,
.instagram-input .input-wrap + ul li a .img-wrap[data-type="Influencer/Osoba"] span {
  background: #ce93d8;
  color: #4a148c;
}
.table-instagram-wrap .col.img-col .img-wrap[data-type=Spoločnosť] span,
.insta-show .insta-left .img-wrap[data-type=Spoločnosť] span,
.instagram-input .input-wrap + ul li a .img-wrap[data-type=Spoločnosť] span {
  background: #80cbc4;
  color: #004d40;
}
.table-instagram-wrap .col.img-col .img-wrap[data-type=Komunita] span,
.insta-show .insta-left .img-wrap[data-type=Komunita] span,
.instagram-input .input-wrap + ul li a .img-wrap[data-type=Komunita] span {
  background: #90caf9;
  color: #0d47a1;
}

.instagram-input .input-wrap + ul li a .img-wrap {
  position: relative;
}
.instagram-input .input-wrap + ul li a .img-wrap::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: 1;
}
.instagram-input .input-wrap + ul li a .img-wrap[data-platform=instagram]::after {
  background: url("/frontend/img/icon/i-instagram-fill-black.svg") center left no-repeat;
  background-size: auto 20px;
}
.instagram-input .input-wrap + ul li a .img-wrap[data-platform=tiktok]::after {
  background: url("/frontend/img/icon/i-tiktok-fill-black.svg") center left no-repeat;
  background-size: auto 20px;
}

.insta-show .insta-left .img-wrap {
  margin-right: 0;
}
.insta-show .insta-left .img-wrap span {
  font-size: 32px;
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.top.database-top h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 40px auto 70px;
}

.insta-svg-wrap {
  background: #fff;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
}

.insta-show {
  text-align: left;
}
.insta-show.top {
  padding-top: 120px;
}
.insta-show .insta-left .img-wrap {
  display: inline-block;
  flex: 0 0 80px;
  max-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #00a3b8;
  overflow: hidden;
}
.insta-show .insta-left p {
  color: #fff;
  font-size: 16px;
  line-height: 1.4em;
  margin-top: 26px;
  max-width: 475px;
  margin-left: 0;
  margin-bottom: 0px;
}
.insta-show .insta-left .insta-data {
  border-top: 1px solid rgba(150, 151, 159, 0.1);
  padding-top: 8px;
  padding-bottom: 10px;
}
.insta-show .insta-left .insta-data > div {
  display: inline-block;
  margin-right: 80px;
}
.insta-show .insta-left .insta-data > div:last-child {
  margin-right: 0;
}
.insta-show .insta-left .insta-data > div h5 {
  font-size: 14px;
  color: #96979f;
  margin: 8px 0;
}
.insta-show .insta-left .insta-data > div strong {
  font-size: 16px;
  color: #fff;
}
.insta-show .insta-right .row {
  margin-right: -16px;
  margin-left: -16px;
}
.insta-show .insta-right .row .col-4 {
  padding-right: 16px;
  padding-left: 16px;
}
.insta-show .insta-right .row .col-4 .img-wrap {
  display: inline-block;
  width: 74px;
  height: 60px;
}
.insta-show .insta-right .row .col-4:nth-child(1) .img-wrap {
  background: url("/frontend/img/icon/i-heart.svg") center center no-repeat;
}
.insta-show .insta-right .row .col-4:nth-child(2) .img-wrap {
  background: url("/frontend/img/icon/i-engagement.svg") center center no-repeat;
}
.insta-show .insta-right .row .col-4:nth-child(3) .img-wrap {
  background: url("/frontend/img/icon/i-mentions.svg") center center no-repeat;
}
.insta-show .insta-right .insta-box {
  width: 100%;
  height: 100%;
  background: #263442;
  border-radius: 6px;
  padding: 35px 10px 25px;
  text-align: center;
}
.insta-show .insta-right .insta-box .d-flex {
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-left: 10px;
}
.insta-show .insta-right .insta-box .d-flex p {
  margin: 0;
  margin-right: 2px;
}
.insta-show .insta-right .insta-box p {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 14px;
  color: #96979f;
  line-height: 1.2em;
  padding: 0;
}
.insta-show .insta-right .insta-box strong {
  display: inline-block;
  font-size: 32px;
  padding: 18px 0 15px;
  width: 100%;
}
.insta-show .insta-right .insta-box strong .lock-icon {
  display: inline-block;
  width: 33px;
  height: 40px;
  background: url("/frontend/img/icon/i-lock-w.svg") left center no-repeat;
  vertical-align: top;
}
.insta-show .text-wrap {
  padding-left: 30px;
  text-align: left;
}
.insta-show .text-wrap > span {
  display: inline-block;
  font-size: 14px;
  position: relative;
  padding-right: 18px;
  margin-bottom: 6px;
}
.insta-show .text-wrap > span .insta-link {
  display: inline-block;
  padding-left: 24px;
}
.is-tiktok .insta-show .text-wrap > span .insta-link {
  padding-left: 26px;
}
.is-tiktok .insta-show .text-wrap > span .insta-link::before {
  background: url("/frontend/img/icon/i-tiktok-blue.svg") center left no-repeat;
  background-size: auto 16px;
}
.insta-show .text-wrap > span .insta-link:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/frontend/img/icon/i-instagram.svg") center left no-repeat;
  background-size: auto 16px;
  position: absolute;
  top: 1px;
  left: 0;
}
.insta-show .text-wrap > span i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/frontend/img/icon/i-verify.svg") center center no-repeat;
  position: absolute;
  top: 1px;
  right: 0;
}
.insta-show .text-wrap h2 {
  width: 100%;
  font-size: 24px;
  line-height: normal;
  color: #fff;
  margin: 0;
}
.insta-show .text-wrap > div span.lock-icon {
  display: inline-block;
  width: 26px;
  height: 36px;
  background: url("/frontend/img/icon/i-lock-w.svg") center center no-repeat;
  background-size: 26px auto;
  vertical-align: top;
}
.insta-show + section h1 {
  font-family: "ThreeSix", sans-serif;
  font-size: 28px;
  margin: 0;
  margin-bottom: 20px;
}
.insta-show + section h1 + p {
  line-height: 1.428em;
  max-width: 860px;
}
.insta-show + section .app-wrap {
  margin-top: 40px;
}
.insta-show + section .insta-analytics {
  padding-top: 30px;
  padding-bottom: 30px;
}
.insta-show + section .insta-analytics.unlocked {
  padding: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.insta-show + section .insta-analytics.unlocked h1 {
  font-family: "CeraPro";
  font-size: 56px;
  max-width: 675px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
.insta-show + section .insta-analytics.unlocked p {
  font-size: 16px;
  color: #263442;
  margin-left: auto;
  margin-right: auto;
}
.insta-show + section .insta-analytics h2 {
  font-family: "ThreeSix", sans-serif;
  font-size: 28px;
}
.insta-show + section .insta-analytics p {
  font-size: 14px;
  max-width: 780px;
  line-height: 1.428em;
}

.verify {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/frontend/img/icon/i-verify-b.svg") center center no-repeat;
  vertical-align: text-bottom;
  position: relative;
  left: -2px;
}

.node-top .verify {
  background: url("/frontend/img/icon/i-verify.svg") center center no-repeat;
}

.instagram-input .input-wrap + ul li a strong {
  position: relative;
  width: auto;
}
.instagram-input .input-wrap + ul li a strong[data-verify=True] {
  padding-right: 20px;
}
.instagram-input .input-wrap + ul li a strong[data-verify=True]:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/frontend/img/icon/i-verify-b.svg") center center no-repeat;
  position: absolute;
  top: 2px;
  right: 0;
}

#js-insta-category {
  width: 100% !important;
}

.perf-row.row {
  padding-bottom: 32px;
  margin-right: -16px;
  margin-left: -16px;
}
.perf-row.row .col-6 {
  padding-right: 16px;
  padding-left: 16px;
}
.perf-row.row .col-12 .white-box .d-flex {
  margin-bottom: 16px;
}
.perf-row.row .white-box {
  background: #fff;
  padding: 25px;
  height: 100%;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
}
.perf-row.row .white-box > .d-flex {
  align-items: center;
}
.perf-row.row .white-box h3 {
  font-size: 18px;
  line-height: 1.3em;
  margin: 0;
  margin-right: 2px;
}
.perf-row.row .white-box .avg-wrap {
  padding: 25px 0 30px;
}
.perf-row.row .white-box .avg-wrap .tooltip-wrap {
  display: flex;
}
.perf-row.row .white-box .avg-wrap .tooltip-wrap:first-of-type {
  margin-right: 30px;
}
.perf-row.row .white-box .avg-wrap > div {
  display: inline-block;
}
.perf-row.row .white-box .avg-wrap > div span {
  display: inline-block;
  font-size: 14px;
  color: #696b76;
  width: 100%;
  margin-bottom: 3px;
}
.perf-row.row .white-box .avg-wrap > div strong {
  font-size: 21px;
  color: #263442;
}
.perf-row.row .white-box .avg-wrap + div div {
  display: flex;
  padding: 8px 0;
}
.perf-row.row .white-box .avg-wrap + div div p {
  display: inline-block;
  color: #263442;
  margin: 0;
  padding-right: 2px;
}
.perf-row.row .white-box .avg-wrap + div div .tooltip-top {
  padding: 16px;
}
.perf-row.row .white-box .avg-wrap + div div span.locking {
  position: relative;
  top: -3px;
  display: inline-block;
  flex: 1;
  border-bottom: 1px dashed #e1e1e4;
  padding-right: 15px;
}
.perf-row.row .white-box .avg-wrap + div div span.locking i {
  position: absolute;
  top: 10px;
  right: 0;
  display: inline-block;
  width: 30px;
  height: 20px;
  background: #fff url("/frontend/img/icon/i-lock.svg") center right no-repeat;
}

.performance-information .col-3 {
  margin-bottom: 16px;
}
.performance-information .white-box .tooltip-wrap {
  display: flex;
  margin-bottom: 10px;
}
.performance-information .white-box .tooltip-wrap > span {
  font-size: 16px;
  color: #696b76;
  margin-right: 2px;
}
.performance-information .white-box strong {
  font-size: 18px;
}

.instagram-section .trend-data .col-4 {
  margin-bottom: 16px;
}
.instagram-section .trend-data .white-box {
  padding: 10px;
  position: relative;
}
.instagram-section .trend-data .white-box .date-range-wrap + div {
  min-height: 280px;
}
.instagram-section .trend-data .white-box h4 {
  padding: 14px;
  padding-bottom: 0;
}
.instagram-section .trend-data .date-range-wrap {
  padding-left: 14px;
  padding-right: 14px;
}

.instagram-section .trend-data .white-box.full .date-range-wrap + div {
  margin: 0 -10px;
}

.instagram-section .trend-data .white-box:not(.full) .date-range-wrap + div svg {
  width: 100% !important;
}

#my_dataviz svg {
  width: 100%;
}

.insta-show + section .insta-title + .app-wrap {
  margin-top: 25px;
}

h2.insta-title {
  font-family: "ThreeSix", sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-top: 56px;
}

.instagram-section .insta-title-tooltip {
  display: flex;
  align-items: center;
  padding: 56px 0 0;
}
.instagram-section .insta-title-tooltip h2 {
  font-family: "ThreeSix", sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin: 0;
}
.instagram-section .insta-title-tooltip + .app-wrap {
  margin-top: 20px;
}
.instagram-section .insta-title-tooltip .tooltip {
  margin-left: 10px;
}
.instagram-section .insta-title-tooltip .tooltip span {
  background-size: 20px auto;
}
.instagram-section .insta-title-tooltip .tooltip-top {
  bottom: auto;
  top: 125%;
  left: 0;
  width: 420px;
  margin-left: 0;
}
.instagram-section .insta-title-tooltip .tooltip-top p {
  font-size: 14px;
  text-align: left;
  margin: 0;
}

.mention-data {
  padding-top: 30px;
}

.instagram-section .white-box {
  background: #fff;
  padding: 24px;
  height: 100%;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
}
.instagram-section .white-box h4 {
  font-size: 18px;
  margin-top: 0;
}
.instagram-section .mention-data .white-box {
  padding-bottom: 0;
}

.timeline-wrap {
  padding: 30px 0;
}

.img-wrap.lock-img {
  padding-top: 20px;
  position: relative;
}
.img-wrap.lock-img .lock-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  background: url("/frontend/img/icon/ico-lock.svg") center right no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.insta-map-mentions {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px;
  background: #fff;
  box-shadow: 0 0 7px 6px #fff;
}
.insta-map-mentions > span {
  font-size: 14px;
  color: #696b76;
}
.insta-map-mentions p {
  margin: 0;
  margin-top: 5px;
}
.insta-map-mentions p strong {
  font-size: 21px;
  line-height: 1em;
  font-weight: 700;
  color: #263442;
}
.insta-map-mentions p small {
  position: relative;
  top: 1px;
  font-size: 12px;
  font-weight: 700;
  vertical-align: top;
  color: #00a3b8;
}

.insta-map-zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #e1e1e4;
  box-sizing: border-box;
  box-shadow: 0px 4px 8px rgba(28, 27, 41, 0.05), 0px 2px 4px rgba(28, 27, 41, 0.05);
  border-radius: 4px;
}
.insta-map-zoom > div {
  font-size: 26px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.insta-map-zoom > div:first-child {
  border-bottom: 1px solid #e1e1e4;
  background: url("/frontend/img/icon/i-add-b.svg") center center no-repeat;
  background-size: 20px auto;
}
.insta-map-zoom > div:last-child {
  border-bottom: 1px solid #e1e1e4;
  background: url("/frontend/img/icon/i-remove-b.svg") center center no-repeat;
  background-size: 20px auto;
}

.full-size {
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  border: 1px solid #e1e1e4;
  box-sizing: border-box;
  box-shadow: 0px 4px 8px rgba(28, 27, 41, 0.05), 0px 2px 4px rgba(28, 27, 41, 0.05);
  border-radius: 4px;
}
.full-size a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url("/frontend/img/icon/zoom-out.svg") center center no-repeat;
  background-size: 28px auto;
}

.insta-fixed-wrap.full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 100000;
  background-color: #fff;
}
.insta-fixed-wrap.full .map-spinner-wrap {
  width: 100%;
  height: 100%;
}
.insta-fixed-wrap.full .insta-svg-wrap {
  width: 100%;
  height: 100%;
}
.insta-fixed-wrap.full .insta-svg-wrap #js-insta-map {
  height: 100% !important;
}

.table-paginate-wrap {
  padding-top: 20px;
}

.paginate-viewed {
  display: flex;
  align-items: center;
  color: #696b76;
}
.paginate-viewed p {
  color: #696b76;
}
.paginate-viewed > div {
  display: flex;
  align-items: center;
  padding-right: 30px;
}
.paginate-viewed > div select {
  text-align: center;
  padding-left: 0;
  width: 50px;
  height: 20px;
  padding-right: 15px;
  background-position: center right 0;
  background-color: #f8f8f8;
}

.paginate-wrap ul {
  display: flex;
}
.paginate-wrap ul li {
  display: inline-block;
}
.paginate-wrap ul li.prev > a,
.paginate-wrap ul li.prev a.js-pageLock, .paginate-wrap ul li.next > a,
.paginate-wrap ul li.next a.js-pageLock {
  display: inline-block;
  width: 26px;
  height: 24px;
  line-height: 22px;
  text-align: center;
}
.paginate-wrap ul li.prev > a,
.paginate-wrap ul li.prev a.js-pageLock {
  background: url("/frontend/img/icon/i-arr-right.svg") center center no-repeat;
  transform: rotate(180deg);
}
.paginate-wrap ul li.prev:not(.start) {
  margin-right: 8px;
}
.paginate-wrap ul li.prev.start a {
  background: url("/frontend/img/icon/i-darr-right.svg") center center no-repeat;
  transform: rotate(180deg);
}
.paginate-wrap ul li.next > a,
.paginate-wrap ul li.next a.js-pageLock {
  background: url("/frontend/img/icon/i-arr-right.svg") center center no-repeat;
}
.paginate-wrap ul li.next:not(.end) {
  margin-left: 8px;
}
.paginate-wrap ul li.next.end a {
  background: url("/frontend/img/icon/i-darr-right.svg") center center no-repeat;
}
.paginate-wrap ul li:not(.prev):not(.next) > a,
.paginate-wrap ul li:not(.prev):not(.next) a.js-pageLock {
  display: inline-block;
  min-width: 24px;
  padding: 0 8px;
  height: 24px;
  line-height: 22px;
  text-align: center;
  background: #fff;
  color: #000;
}
.paginate-wrap ul li:not(.prev):not(.next) > a.active,
.paginate-wrap ul li:not(.prev):not(.next) a.js-pageLock.active {
  background: #00a3b8;
  color: #fff;
}

.accord-container {
  max-width: 778px;
  margin: 0 auto 120px;
}
.accord-container .insta-title-wrap {
  padding: 95px 0 42px;
}
.accord-container .insta-title-wrap h2 {
  font-family: "ThreeSix", sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.accord-container .insta-title-wrap p {
  font-size: 16px;
}
.accord-container .accord-wrap .accord-block {
  border-bottom: 1px solid #ccc;
}
.accord-container .accord-wrap .accord-block:first-of-type {
  border-top: 1px solid #ccc;
}
.accord-container .accord-wrap .accord-block.active .acord::after {
  background: url("/frontend/img/icon/i-remove.svg") center center no-repeat;
  background-size: 24px auto;
}
.accord-container .accord-wrap .accord-block .acord {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.3em;
  margin: 0;
  padding: 35px 0;
  padding-right: 20px;
}
.accord-container .accord-wrap .accord-block .acord::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 36px;
  right: 0;
  background: url("/frontend/img/icon/i-add.svg") center center no-repeat;
  background-size: 24px auto;
  transition: all 0.3s ease;
}
.accord-container .accord-wrap .accord-block .accord-wrap {
  display: none;
  padding: 5px 0 10px;
  margin-top: -30px;
}
.accord-container .accord-wrap .accord-block .accord-wrap p {
  font-size: 18px;
}

.sticky-element {
  display: flex;
  align-self: center;
  justify-content: center;
  padding: 10px 0 70px;
  position: sticky;
  bottom: -60px;
  z-index: 1;
  background: #ffffff;
  box-shadow: 0px -4px 10px rgba(28, 27, 41, 0.1);
  transition: all 0.3s ease;
}
.sticky-element.sticky-stop {
  background: none;
  box-shadow: none;
}

.insta-home {
  background: #f8f8f8;
}
.insta-home .body-wrap {
  overflow: hidden;
}

.insta-map-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 13px;
  background: #ffffff;
  border: 1px solid #e1e1e4;
  box-shadow: 0px 4px 8px rgba(28, 27, 41, 0.05), 0px 2px 4px rgba(28, 27, 41, 0.05);
  border-radius: 4px;
}
.insta-map-filter .check-group {
  margin-right: 18px;
}
.insta-map-filter .check-group:last-child {
  margin-right: 0;
}
.insta-map-filter .check-group input {
  display: none;
}
.insta-map-filter .check-group input:checked + label:before {
  background: url("/frontend/img/icon/i-succ-check.svg") center center no-repeat;
  background-size: 6px auto;
}
.insta-map-filter .check-group input#map-filter-influencer + label:before {
  border-color: #ce93d8;
}
.insta-map-filter .check-group input#map-filter-influencer:checked + label:before {
  background-color: #ce93d8;
}
.insta-map-filter .check-group input#map-filter-company + label:before {
  border-color: #80cbc4;
}
.insta-map-filter .check-group input#map-filter-company:checked + label:before {
  background-color: #80cbc4;
}
.insta-map-filter .check-group input#map-filter-community + label:before {
  border-color: #90caf9;
}
.insta-map-filter .check-group input#map-filter-community:checked + label:before {
  background-color: #90caf9;
}
.insta-map-filter .check-group input#map-filter-media + label:before {
  border-color: #90a4ae;
}
.insta-map-filter .check-group input#map-filter-media:checked + label:before {
  background-color: #90a4ae;
}
.insta-map-filter .check-group label {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #263442;
  width: 100%;
  padding-left: 20px;
  cursor: pointer;
}
.insta-map-filter .check-group label:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 3px;
  border: 1px solid #000;
  border-radius: 2px;
}

#js-insta-map {
  width: 100% !important;
}

.tooltip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.tooltip span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/frontend/img/icon/i-tooltip.svg") center center no-repeat;
  background-size: 12px auto;
  cursor: pointer;
}
.tooltip .tooltip-top {
  visibility: hidden;
  width: 232px;
  background-color: #fff;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
  color: #263442;
  text-align: center;
  padding: 16px;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  margin-left: -116px;
  opacity: 0;
  transition: opacity 0.6s;
}
.tooltip .tooltip-top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.tooltip .tooltip-top p {
  font-size: 14px !important;
  line-height: 20px !important;
  margin: 0;
  margin-bottom: 2px;
  color: #263442 !important;
}
.tooltip:hover .tooltip-top {
  visibility: visible;
  opacity: 1;
}

.tooltip.dark .tooltip-top {
  background: #1c1b29;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
}
.tooltip.dark .tooltip-top p {
  color: #fff !important;
}
.tooltip.dark .tooltip-top::after {
  border-color: #1c1b29 transparent transparent transparent;
}

.nojs-map,
.nojs-categories {
  background: #fff;
  padding: 25px;
  height: 100%;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
}
.nojs-map h3,
.nojs-categories h3 {
  font-size: 18px;
  line-height: 1.3em;
  margin: 0;
}
.nojs-map ul,
.nojs-categories ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
}
.nojs-map ul li,
.nojs-categories ul li {
  width: 50%;
  margin-bottom: 5px;
}
.nojs-map ul li a,
.nojs-categories ul li a {
  color: #667588;
  transition: all 0.3s ease;
}
.nojs-map ul li a:hover,
.nojs-categories ul li a:hover {
  color: #1c1b29;
}

.nav-wrap .event-button {
  display: none;
}
.nav-wrap .contact-button {
  margin-right: 10px;
}

header .lng-wrap a.button.button-login {
  position: relative;
  background: #263442;
  color: #fff;
  white-space: nowrap;
  padding-left: 32px;
  transition: all 0.3s ease;
}
header .lng-wrap a.button.button-login:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/frontend/img/icon/i-lock-w.svg") center center no-repeat;
  background-size: 16px auto;
  margin-right: 6px;
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 1px;
  margin: auto;
}
header .lng-wrap a.button.button-login:hover {
  background-color: #000;
}

.event .body-wrap {
  overflow: hidden;
}
.event .top .title-wrap .registration-closed {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event .top .title-wrap strong {
  display: inline-block;
  font-family: "ThreeSix", sans-serif;
  font-size: 40px;
  line-height: 1.2em;
  background: #73f2f5;
  box-shadow: 0px 40px 80px #1c1b29;
  color: #263442;
  border-radius: 8px;
  padding: 20px 40px;
  transform: rotate(-6deg);
  transition: all 0.3s ease;
}
.event .title-wrap h1 span {
  font-weight: 900;
}
.event .title-wrap + p {
  max-width: 665px;
}
.event .desription-wrap {
  text-align: center;
}
.event .desription-wrap p.anim-item {
  opacity: 0;
  position: relative;
}
.event .desription-wrap p.anim-item.in-view {
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.event .desription-wrap .button.anim-item {
  opacity: 0;
  position: relative;
}
.event .desription-wrap .button.anim-item.in-view {
  animation: sbFade2 1000ms ease-in-out 0.2s;
  animation-fill-mode: forwards;
}
.event .bg-gradient.bgg-rev::after {
  background: url("/frontend/img/bg/event-inside.svg") center bottom 180px no-repeat;
}
.event .title-wrap {
  text-align: center;
  padding-top: 30px;
}
.event .title-wrap h2 {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.event .bevel-top.bevel-end.bg-gradient {
  padding-top: 8%;
}
.event .bevel-top.bevel-end.bg-gradient .bevel {
  transform: rotate(180deg);
}
.event .bevel-top.bevel-end.bg-gradient .registry-free {
  text-align: center;
  padding-bottom: 120px;
}
.event .bevel-top.bevel-end.bg-gradient .registry-free.in-view h2 {
  animation: transcale 1s ease forwards;
}
.event .bevel-top.bevel-end.bg-gradient .registry-free.in-view p {
  animation: transcale 1s ease forwards;
}
.event .bevel-top.bevel-end.bg-gradient .registry-free.in-view .button {
  animation: sbFade2 1000ms ease-in-out 0.2s;
  animation-fill-mode: forwards;
}
.event .bevel-top.bevel-end.bg-gradient .registry-free h2 {
  position: relative;
  opacity: 0;
  font-family: "ThreeSix", sans-serif;
  font-size: 80px;
  font-weight: 300;
  color: #fff;
}
.event .bevel-top.bevel-end.bg-gradient .registry-free h2 + p {
  position: relative;
  opacity: 0;
  max-width: 580px;
  margin: -40px auto;
  margin-bottom: 60px;
  font-size: 18px;
  color: #fff;
}
.event .bevel-top.bevel-end.bg-gradient .registry-free h2 strong {
  font-weight: 900;
}
.event .bevel-top.bevel-end.bg-gradient .registry-free .button {
  position: relative;
  opacity: 0;
}
.event #scroll-section .desription-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 50px;
}
.event #scroll-section .desription-wrap p {
  font-size: 18px;
  color: #1c1b29;
}
.event #scroll-section .row .col-4 {
  text-align: center;
}
.event #scroll-section .row .col-4:nth-child(2) .event-box.in-view {
  animation-delay: 0.2s;
}
.event #scroll-section .row .col-4:nth-child(3) .event-box.in-view {
  animation-delay: 0.4s;
}
.event #scroll-section .row .col-4 .event-box {
  position: relative;
  opacity: 0;
  max-width: 220px;
  margin: 0 auto;
}
.event #scroll-section .row .col-4 .event-box.in-view {
  animation: sbFade2 1000ms ease-in-out forwards;
}
.event #scroll-section .row .col-4 .event-box.date-box .img-wrap span {
  background: url("/frontend/img/icon/i-date.svg") center center no-repeat;
}
.event #scroll-section .row .col-4 .event-box.place-box .img-wrap span {
  background: url("/frontend/img/icon/i-place.svg") center center no-repeat;
}
.event #scroll-section .row .col-4 .event-box.participants-box {
  max-width: 250px;
}
.event #scroll-section .row .col-4 .event-box.participants-box .img-wrap span {
  background: url("/frontend/img/icon/i-participants.svg") center center no-repeat;
}
.event #scroll-section .row .col-4 .img-wrap span {
  display: inline-block;
  width: 80px;
  height: 60px;
}
.event #scroll-section .row .col-4 strong {
  display: inline-block;
  margin-top: 10px;
  font-size: 21px;
  color: #263442;
}
.event #scroll-section .row .col-4 p {
  font-family: "ThreeSix", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #263442;
  margin-top: 20px;
}
.event .program .desription-wrap p {
  max-width: 750px;
  margin: 30px auto;
  font-size: 18px;
  color: #1c1b29;
}

.program-wrap {
  position: relative;
  padding-left: 40px;
  margin-top: 60px;
}
.program-wrap:before {
  content: "";
  display: inline-block;
  width: 1px;
  border-left: 1px dashed #96979f;
  position: absolute;
  top: 42px;
  bottom: 20px;
  left: 0;
}
.program-wrap .event-program-row {
  display: flex;
  padding-bottom: 16px;
}
.program-wrap .event-program-row .event-time {
  position: relative;
  top: 0;
  opacity: 0;
}
.program-wrap .event-program-row .event-content {
  position: relative;
  top: 0;
  opacity: 0;
}
.program-wrap .event-program-row.in-view .event-time {
  animation: slide-in-l-opl 1s ease forwards;
}
.program-wrap .event-program-row.in-view .event-content {
  animation: slide-in-l-opl 1s ease forwards 0.2s;
}
.program-wrap .event-program-row:last-child {
  position: relative;
}
.program-wrap .event-program-row:last-child:before {
  content: "";
  display: inline-block;
  width: 5px;
  position: absolute;
  left: -42px;
  top: 42px;
  bottom: 0;
  margin: auto;
  background: #f8f8f8;
}
.program-wrap .event-program-row .event-time {
  flex: 0 0 250px;
  max-width: 250px;
  padding-right: 16px;
}
.program-wrap .event-program-row .event-time span {
  position: relative;
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: #263442;
  padding: 35px 20px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
}
.program-wrap .event-program-row .event-time span:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 5px solid #73f2f5;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -48px;
}
.program-wrap .event-program-row .event-content {
  flex: 0 0 calc(100% - 250px);
  max-width: calc(100% - 250px);
  background: #ffffff;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
  padding: 32px 48px;
}
.program-wrap .event-program-row .event-content h4 {
  font-size: 21px;
  margin: 0;
}
.program-wrap .event-program-row .event-content .text-wrap > span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.program-wrap .event-program-row .event-content .text-wrap h4 {
  margin: 15px 0 20px;
}
.program-wrap .event-program-row .event-content .text-wrap p {
  font-size: 16px;
  line-height: 1.5em;
  color: #263442;
}
.program-wrap .event-program-row .event-content .instagram-insights {
  display: flex;
}
.program-wrap .event-program-row .event-content .instagram-insights .img-wrap {
  flex: 0 0 180px;
  max-width: 180px;
  padding-right: 40px;
}
.program-wrap .event-program-row .event-content .instagram-insights .img-wrap .img-mobile-text {
  text-align: center;
  padding-top: 15px;
}
.program-wrap .event-program-row .event-content .instagram-insights .img-wrap .img-mobile-text p {
  font-size: 12px;
  line-height: 1.4em;
  color: #263442;
  margin: 0;
  margin-top: 5px;
}
.program-wrap .event-program-row .event-content .instagram-insights .text-wrap {
  flex: 0 0 calc(100% - 180px);
  max-width: calc(100% - 180px);
}
.program-wrap .event-program-row .event-content .event-speakers {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 0;
  margin-right: -25px;
}
.program-wrap .event-program-row .event-content .event-speakers .speaker-wrap {
  max-width: 125px;
  margin-right: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.program-wrap .event-program-row .event-content .event-speakers .speaker-wrap .img-wrap {
  max-width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.program-wrap .event-program-row .event-content .event-speakers .speaker-wrap h6 {
  font-size: 14px;
  margin: 20px 0 5px;
}
.program-wrap .event-program-row .event-content .event-speakers .speaker-wrap strong {
  font-size: 12px;
  font-weight: 400;
  color: #263442;
}

.speakers .title-wrap {
  padding-bottom: 60px;
}
.speakers .row {
  margin-right: -16px;
  margin-left: -16px;
}
.speakers .row .col-6 {
  padding-right: 16px;
  padding-left: 16px;
  margin-bottom: 32px;
}
.speakers .row .col-4 {
  padding-right: 16px;
  padding-left: 16px;
  margin-bottom: 32px;
}
.speakers .row .col-4:nth-child(1) .speaker-box.in-view {
  animation-delay: 100ms;
}
.speakers .row .col-4:nth-child(2) .speaker-box.in-view {
  animation-delay: 200ms;
}
.speakers .row .col-4:nth-child(3) .speaker-box.in-view {
  animation-delay: 300ms;
}
.speakers .row .col-4:nth-child(4) .speaker-box.in-view {
  animation-delay: 400ms;
}
.speakers .row .col-4:nth-child(5) .speaker-box.in-view {
  animation-delay: 500ms;
}
.speakers .row .col-4:nth-child(6) .speaker-box.in-view {
  animation-delay: 600ms;
}
.speakers .speaker-box {
  background: #ffffff;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
  position: relative;
  opacity: 0;
}
.speakers .speaker-box.in-view {
  animation: sbFade2 1000ms ease-in-out forwards;
}
.speakers .speaker-box span {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #00a3b8;
  text-transform: uppercase;
}
.speakers .speaker-box .d-flex {
  align-items: center;
}
.speakers .speaker-box .d-flex a {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  max-width: 20px;
}
.speakers .speaker-box .d-flex a.ln {
  background: url("/frontend/img/icon/social/i-ln-g.svg") center center no-repeat;
  background-size: auto 20px;
}
.speakers .speaker-box .d-flex a.im {
  background: url("/frontend/img/icon/social/i-im-g.svg") center center no-repeat;
  background-size: auto 20px;
}
.speakers .speaker-box .img-wrap {
  padding-top: 30px;
  padding-bottom: 5px;
  min-height: 95px;
  display: flex;
  align-items: center;
}
.speakers .speaker-box .img-wrap img {
  max-width: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.speakers .speaker-box h3 {
  font-family: "ThreeSix", sans-serif;
  font-size: 32px;
  line-height: 1.3em;
  font-weight: 700;
  color: #263442;
  margin: 5px 0 0;
}
.speakers .speaker-box strong {
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
  color: #696b76;
  font-size: 18px;
}
.speakers .speaker-box p {
  font-size: 16px;
  color: #263442;
  line-height: 1.5em;
  margin-bottom: 0;
}

.pag-lock-wrap {
  position: relative;
}
.pag-lock-wrap:hover .tooltip-component {
  display: inline-block;
}
.pag-lock-wrap:hover .tooltip-component .node-middle .white {
  color: #fff;
}
.pag-lock-wrap .tooltip-component {
  width: 200px;
  display: none;
  position: absolute;
  bottom: 30px;
  right: -100px;
}
.pag-lock-wrap .tooltip-component:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: -7px;
  left: 0;
}

.home .top p {
  font-size: 20px;
  max-width: 585px;
}

.maps-section {
  padding: 200px 0 20px;
}
.maps-section .select-wrap {
  cursor: pointer;
  display: none;
  background: #fff;
  padding: 18px 16px;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
}
.maps-section .select-wrap.active {
  background-color: #f8f8f8;
}
.maps-section .select-wrap.active p:after {
  transform: rotate(180deg);
}
.maps-section .select-wrap p {
  position: relative;
  margin: 0;
  padding-left: 25px;
  padding-right: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: #263442;
}
.maps-section .select-wrap p::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.maps-section .select-wrap p:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("/frontend/img/icon/i-down-new.svg") center center no-repeat;
  position: absolute;
  top: -4px;
  right: 0;
  transition: all 0.3s ease;
}
.maps-section .select-wrap p[data-href="#actors"]::before {
  background: #efb19d;
}
.maps-section .select-wrap p[data-href="#fasion"]::before {
  background: #8ac9c3;
}
.maps-section .select-wrap p[data-href="#modeling"]::before {
  background: #e6d8e8;
}
.maps-section .select-wrap p[data-href="#easy"]::before {
  background: #ecafc4;
}
.maps-section .select-wrap p[data-href="#moms"]::before {
  background: #7586bc;
}
.maps-section .select-wrap p[data-href="#politics"]::before {
  background: #b0c9d8;
}
.maps-section .select-wrap p[data-href="#music"]::before {
  background: #97d1e3;
}
.maps-section .select-wrap p[data-href="#sport"]::before {
  background: #ea9667;
}
.maps-section .select-wrap p[data-href="#rap"]::before {
  background: #ecd270;
}
.maps-section .select-wrap p[data-href="#youtubers"]::before {
  background: #c1c0c0;
}
.maps-section .select-wrap p[data-href="#mma"]::before {
  background: #bed683;
}
.maps-section .row.perf-row .col-3 {
  flex: 0 0 260px;
  max-width: 260px;
}
.maps-section .row.perf-row .col-9 {
  flex: 0 0 calc(100% - 260px);
  max-width: calc(100% - 260px);
}
.maps-section.map-move {
  padding: 0;
  margin-bottom: -120px;
}
.maps-section.map-move .img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.maps-section.map-move .zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #e1e1e4;
  box-sizing: border-box;
  box-shadow: 0px 4px 8px rgba(28, 27, 41, 0.05), 0px 2px 4px rgba(28, 27, 41, 0.05);
  border-radius: 4px;
}
.maps-section.map-move .zoom > div {
  font-size: 26px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.maps-section.map-move .zoom > div.plus {
  border-bottom: 1px solid #e1e1e4;
  background: url("/frontend/img/icon/i-add-b.svg") center center no-repeat;
  background-size: 20px auto;
}
.maps-section.map-move .zoom > div.minus {
  border-bottom: 1px solid #e1e1e4;
  background: url("/frontend/img/icon/i-remove-b.svg") center center no-repeat;
  background-size: 20px auto;
}
.maps-section .maps-links li {
  margin-bottom: 20px;
}
.maps-section .maps-links li:last-child {
  margin-bottom: 0;
}
.maps-section .maps-links li a {
  display: inline-block;
  position: relative;
  font-family: "ThreeSix", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding-left: 28px;
  color: #96979f;
  transition: all 0.3s ease;
}
.maps-section .maps-links li a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.maps-section .maps-links li a:hover {
  color: #4b4959;
}
.maps-section .maps-links li a.active {
  color: #1c1b29;
}
.maps-section .maps-links li a[href="#actors"]::before {
  background: #efb19d;
}
.maps-section .maps-links li a[href="#fasion"]::before {
  background: #8ac9c3;
}
.maps-section .maps-links li a[href="#modeling"]::before {
  background: #e6d8e8;
}
.maps-section .maps-links li a[href="#easy"]::before {
  background: #ecafc4;
}
.maps-section .maps-links li a[href="#moms"]::before {
  background: #7586bc;
}
.maps-section .maps-links li a[href="#politics"]::before {
  background: #b0c9d8;
}
.maps-section .maps-links li a[href="#music"]::before {
  background: #97d1e3;
}
.maps-section .maps-links li a[href="#sport"]::before {
  background: #ea9667;
}
.maps-section .maps-links li a[href="#rap"]::before {
  background: #ecd270;
}
.maps-section .maps-links li a[href="#youtubers"]::before {
  background: #c1c0c0;
}
.maps-section .maps-links li a[href="#mma"]::before {
  background: #bed683;
}

.maps-content > .row {
  display: none;
  margin-right: -10px;
  margin-left: -10px;
}
.maps-content > .row .col-6 {
  padding-left: 10px;
  padding-right: 10px;
}
.maps-content > .row.active {
  display: flex;
}
.maps-content > .row h3 {
  font-size: 28px;
  line-height: 1.4em;
  margin-top: -8px;
  margin-bottom: 25px;
}
.maps-content > .row .white-box {
  font-size: 14px;
  padding-right: 40px;
}
.maps-content > .row .white-box h4 {
  margin-top: 0;
  font-size: 22px;
}
.maps-content > .row .white-box .avg-wrap {
  padding-top: 0;
}
.maps-content > .row .white-box .avg-wrap + div div {
  padding: 0;
}
.maps-content > .row .white-box .avg-wrap ~ div.maps-row {
  padding: 12px 0;
}
.maps-content > .row .white-box .avg-wrap ~ div .map-title-wrap strong {
  display: inline-block;
  padding-left: 22px;
  margin-bottom: 5px;
  position: relative;
}
.maps-content > .row .white-box .avg-wrap ~ div .map-title-wrap strong:before {
  display: inline-block;
  font-size: 10px;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background: #73f2f5;
  border-radius: 90%;
  position: absolute;
  top: 1px;
  left: 0;
}
.maps-content > .row .white-box .avg-wrap + div .map-title-wrap strong:before {
  content: "1";
}
.maps-content > .row .white-box .avg-wrap + div + div .map-title-wrap strong:before {
  content: "2";
}
.maps-content > .row .white-box .avg-wrap + div + div + div .map-title-wrap strong:before {
  content: "3";
}
.maps-content > .row .white-box .avg-wrap .tooltip-wrap {
  margin-bottom: 3px;
}
.maps-content > .row .white-box .avg-wrap .tooltip-wrap > span {
  display: inline-block;
  width: auto;
}
.maps-content > .row .white-box .avg-wrap strong {
  font-size: 18px !important;
}
.maps-content .maps-row {
  padding: 10px 0;
}
.maps-content .maps-row .map-title-wrap {
  margin-bottom: 1px;
}
.maps-content .maps-row .map-title-wrap strong {
  color: #263442;
}
.maps-content .maps-row .map-content-wrap {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #e1e1e4;
}
.maps-content .maps-row .map-content-wrap p {
  color: #263442;
  margin: 0;
  text-align: right;
}
.maps-content .maps-row .map-content-wrap > .d-flex span {
  background: #fff;
  position: relative;
  top: 2px;
  padding-right: 8px;
}
.maps-content .maps-row .map-content-wrap .map-data-end {
  position: relative;
  text-align: right;
}
.maps-content .maps-row .map-content-wrap .map-data-end > p {
  display: inline;
  background: #fff;
  position: relative;
  top: 2px;
  padding-left: 8px;
}
.maps-content .maps-row .map-content-wrap .map-data-end .tooltip {
  position: absolute;
  top: 0;
  right: -20px;
}
.maps-content .maps-row .map-content-wrap .tooltip p {
  text-align: center;
  margin: 0 auto !important;
}
.maps-content .maps-row .d-flex {
  padding-right: 12px;
}
.maps-content .maps-row .d-flex:first-of-type {
  flex-wrap: wrap;
  align-items: flex-end;
}
.maps-content .maps-row .d-flex:last-of-type {
  padding-left: 12px;
  padding-right: 0;
}
.maps-content .maps-row .d-flex strong {
  display: inline-block;
  width: 100%;
}
.maps-content .maps-row .locking {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  border-bottom: 1px dashed #e1e1e4;
  position: relative;
  top: -3px;
}

.interactive-image {
  height: 600px;
}
.interactive-image svg {
  width: 100% !important;
  height: 600px;
}

.app-preview-wrap {
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
}

@media only screen and (max-width: 600px) {
  .text-blog-wrap .row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .text-blog-wrap .mobile-row-rev {
    flex-direction: column-reverse;
  }
}
.text-blog-wrap .sticky-element {
  box-shadow: none;
}

.text-blog-wrap a.button {
  border: 2px solid #73f1f4;
}

.auth-front-wrap {
  position: relative;
}
.auth-front-wrap a {
  display: inline-block;
  position: relative;
  background: #263442;
  border-radius: 6px;
  padding: 4px;
  padding-right: 22px;
}
.auth-front-wrap a .img-wrap {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.auth-front-wrap a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 4px;
  background: url("/frontend/img/icon/i-dropdown.svg") center center no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
}
.auth-front-wrap .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: auto;
  right: 0;
  width: 142px;
  min-width: 142px;
  padding: 8px 0;
  background: #ffffff;
  box-shadow: 0px 4px 8px rgba(28, 27, 41, 0.3);
  border-radius: 4px;
}
.auth-front-wrap .dropdown-menu li a,
.auth-front-wrap .dropdown-menu li button {
  display: inline-block;
  font-family: "ThreeSix", sans-serif;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  padding: 8px 20px 6px;
  text-align: left;
  border: 0;
  background: #fff;
  color: #1c1b29;
  transition: all 0.3s ease;
}
.auth-front-wrap .dropdown-menu li a:hover,
.auth-front-wrap .dropdown-menu li button:hover {
  color: #00a3b8;
  background: #eafdfe;
}

.trend-data .white-box > div .domain {
  display: none !important;
}
.trend-data .white-box > div .tick line {
  color: rgba(105, 107, 118, 0.1);
}
.trend-data .white-box > div > svg > g > g + g .tick:nth-child(2n+1) {
  display: none;
}

#timeline-wrap {
  position: relative;
}

.timeline-wrap .white-box > div .domain {
  display: none !important;
}
.timeline-wrap .white-box > div .tick line {
  color: rgba(105, 107, 118, 0.1);
}
.timeline-wrap .white-box > div > div > svg > g > g + g .tick:nth-child(2n+1) {
  display: none;
}

.mention-data .white-box > div .domain {
  display: none !important;
}
.mention-data .white-box > div .tick line {
  color: rgba(105, 107, 118, 0.1);
}
.mention-data .white-box > div:not(#who-mention) > svg > g > g + g .tick:nth-child(2n+1) {
  display: none;
}
.mention-data .white-box > div#who-mention {
  margin: 0 -15px 0 -10px;
}
.mention-data .white-box > div#who-mention > svg > g > g:first-child .tick:nth-child(2n+1) {
  display: none;
}

.hashtags-search-wrap #js-hashtags {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(105, 107, 118, 0.3);
  border-radius: 2px;
  height: 39px;
  padding-left: 36px;
}
.hashtags-search-wrap .instagram-input .input-wrap label::before {
  filter: none;
  left: 10px;
  background: url("/frontend/img/icon/i-search-black.svg") center center no-repeat;
  background-size: 18px auto;
}

#hashtags-results {
  z-index: 1;
}
#hashtags-results li {
  padding: 16px 20px;
}
#hashtags-results li p {
  margin: 0;
}
#hashtags-results li p strong {
  font-weight: 500;
  color: #1c1b29;
}

#timeline {
  position: relative;
  overflow: auto;
  min-height: 300px;
}
#timeline > svg > g > g:first-child .tick line {
  display: none;
}

.timeline-form-check {
  margin: 0 -24px;
  margin-right: 0;
  margin-bottom: 15px;
  padding: 5px 24px;
  display: flex;
  flex-wrap: wrap;
}
.timeline-form-check .form-check-label {
  width: auto;
  margin-right: 24px;
}
.timeline-form-check .form-check-label:last-child {
  margin-right: 0;
}
.timeline-form-check .form-check-label label {
  color: #1c1b29;
  font-size: 14px;
}
.timeline-form-check .form-check-label input[type=checkbox] + label span::before {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #1c1b29;
}
.timeline-form-check .form-check-label input[type=checkbox] + label span::after {
  top: 9px;
  left: 8px;
}
.timeline-form-check .form-check-label input[type=checkbox]:checked + label span::after {
  width: 10px;
  height: 10px;
  background: #1c1b29;
}

.posts-table-wrap {
  overflow: auto;
  padding: 24px;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: -14px;
  margin-bottom: 14px;
  max-height: 500px;
}
.posts-table-wrap .posts-table {
  font-size: 14px;
}
.posts-table-wrap .posts-table .row {
  flex-wrap: nowrap;
}
.posts-table-wrap .posts-table .row .col {
  padding: 15px 16px;
  border-right: 1px solid rgba(105, 107, 118, 0.1);
}
.posts-table-wrap .posts-table .row .col .instagram-post-link {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/frontend/img/icon/i-instagram-dark.svg") center center no-repeat;
  background-size: 16px auto;
}
.is-tiktok .posts-table-wrap .posts-table .row .col .instagram-post-link {
  background: url("/frontend/img/icon/i-tiktok-dark.svg") center left no-repeat;
  background-size: auto 24px;
}
.posts-table-wrap .posts-table .row .col:first-child {
  padding-left: 24px;
  flex: 0 0 115px;
  max-width: 115px;
}
.posts-table-wrap .posts-table .row .col:last-child {
  border: 0;
  flex: 0 0 85px;
  max-width: 85px;
}
.posts-table-wrap .posts-table .row .col:nth-child(2) {
  min-width: 340px;
  position: relative;
}
.posts-table-wrap .posts-table .row .col:nth-child(3) {
  flex: 0 0 100px;
  max-width: 100px;
}
.posts-table-wrap .posts-table .row .col:nth-child(4) {
  flex: 0 0 110px;
  max-width: 110px;
}
.posts-table-wrap .posts-table .row .col:nth-child(5) {
  flex: 0 0 125px;
  max-width: 125px;
}
.posts-table-wrap .posts-table .row .col:nth-child(6) {
  flex: 0 0 135px;
  max-width: 135px;
}
.posts-table-wrap .posts-table .row .col .hover-text {
  display: none;
}
.posts-table-wrap .posts-table .row .col p {
  color: #1c1b29;
  margin: 0;
  line-height: 1.428em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.posts-table-wrap .posts-table .row .col p:hover + .hover-text {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 150%;
  padding: 16px;
  background: #1c1b29;
  color: #fff;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
  z-index: 1;
}
@supports (-webkit-line-clamp: 1) {
  .posts-table-wrap .posts-table .row .col p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.posts-table-wrap .posts-table .row:not(.th-row):nth-child(2n+1) .col {
  background: rgba(105, 107, 118, 0.05);
}
.posts-table-wrap .posts-table .row.th-row {
  position: sticky;
  top: 0;
  z-index: 1;
}
.posts-table-wrap .posts-table .row.th-row .col {
  background: #f0f0f1;
}
.posts-table-wrap .posts-table .row.th-row .col span {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #696b76;
}
.posts-table-wrap .posts-table .row.tfoot-row {
  position: sticky;
  bottom: 0;
  z-index: 1;
}
.posts-table-wrap .posts-table .row.tfoot-row .col {
  background: white !important;
  border: 0;
  border-top: 2px solid rgba(105, 107, 118, 0.1);
}
.posts-table-wrap .posts-table .row.tfoot-row .col span {
  font-weight: 700;
  white-space: nowrap;
}

.avg-label {
  font-family: "CeraPro", sans-serif;
  pointer-events: none;
  font-size: 10px;
  fill: #fff;
  font-weight: 500;
}

.date-range-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.date-range-wrap input {
  font-size: 14px;
  padding: 0 10px;
  border: 1px solid #96979f;
  border-radius: 4px;
  margin: 0;
}
.date-range-wrap .range-middle {
  display: flex;
  align-items: center;
}

.brands-table-wrap {
  margin-top: 0;
  padding-bottom: 0;
  height: 285px;
  overflow: auto;
}
.brands-table-wrap .brands-th-row {
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 8px 12px;
  color: #696b76;
  background: #f0f0f1;
  position: sticky;
  top: 0;
  z-index: 1;
}
.brands-table-wrap .brands-td-row {
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 9px 12px;
}
.brands-table-wrap .brands-td-row .brands-hover {
  display: inline-flex;
  align-items: center;
}
.brands-table-wrap .brands-td-row:nth-child(2n+1) {
  background: rgba(105, 107, 118, 0.05);
}
.brands-table-wrap .brands-td-row > div:first-child {
  width: calc(100% - 85px);
  padding-right: 10px;
  display: flex;
  align-items: center;
}
.brands-table-wrap .brands-td-row > div:first-child .brands-logo {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  max-width: 24px;
  margin-right: 10px;
  background-size: 24px auto;
}
.brands-table-wrap .brands-td-row > div:last-child {
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brands-table-wrap .brands-td-row > div:last-child .brands-percent {
  width: 60px;
  height: 4px;
  background: #e1e1e4;
  position: relative;
}
.brands-table-wrap .brands-td-row > div:last-child .brands-percent span {
  display: inline-block;
  height: 4px;
  background: #00a3b8;
  position: absolute;
  top: 0;
  left: 0;
}
.brands-table-wrap .brands-td-row p {
  color: #1c1b29;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.instagram-section .white-box h4 {
  line-height: 1.556em;
  margin-bottom: 18px;
}

.balance-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.balance-wrap > div:last-child {
  display: flex;
  font-size: 32px;
  font-weight: 700;
}
.balance-wrap > div:last-child span {
  color: #e1e1e4;
}
.balance-wrap > div:last-child strong {
  color: #1c1b29;
}

.sticky-unlock-profile {
  align-items: center;
}
.sticky-unlock-profile p {
  font-size: 16px;
  font-weight: 700;
  color: #1c1b29;
  margin: 0;
  margin-right: 24px;
}
.sticky-unlock-profile .button {
  padding-left: 57px;
  position: relative;
}
.sticky-unlock-profile .button:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("/frontend/img/icon/i-unlock-black.svg") center center no-repeat;
  background-size: auto 18px;
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.sticky-add-to-userlist img {
  max-height: 13px;
  transform: scale(2) translateY(-1px);
  transform-origin: right;
}

.insta-home .database-top h1 {
  margin-top: 8px;
  margin-bottom: 70px;
}

.advance-filter-wrap {
  background: #f8f8f8;
}
.advance-filter-wrap .top.database-top h1 {
  margin-top: 8px;
  margin-bottom: 115px;
}
.advance-filter-wrap .content-container {
  margin: 0 auto;
  margin-top: calc(-8% - 50px);
  padding-bottom: 125px;
}
.advance-filter-wrap.advance-filter-all .content-container {
  min-height: 1000px;
}
.advance-filter-wrap.advance-filter-all .content-container.fullScreen {
  min-height: auto;
}

#app .content-container {
  font-family: "CeraPro", sans-serif;
}
#app .content-container .content-head {
  padding: 14px 16px;
  height: 56px;
}
#app .content-container .content-head h3 {
  font-size: 18px;
  color: #1c1b29;
  font-weight: 700;
}
#app .content-container .content-head .btn {
  width: 24px;
  height: 24px;
}
#app .content-container .content-head .table-options-parent {
  align-items: center;
}
#app .content-container .content-head .table-options-parent .text-nowrap.mr-3 {
  margin-right: 16px !important;
}
#app .content-container .filter-container .filter-item {
  padding: 17px 16px 0;
}
#app .content-container .filter-container .filter-item h6 {
  font-size: 14px;
  font-weight: 700;
  color: #1c1b29;
}
#app .content-container .filter-container .filter-item input {
  font-family: "CeraPro", sans-serif;
  font-size: 14px;
  padding: 0 8px;
}
#app .content-container .filter-container .filter-item select {
  font-family: "CeraPro", sans-serif;
  font-size: 14px;
  padding: 0 8px;
  padding-right: 36px;
  height: 36px;
  background-image: url("/frontend/img/icon/i-select-teal.svg");
  background-size: 10px auto;
}
#app .content-container .filter-container .filter-item .multi-range-slider {
  padding: 18px 10px;
  padding-bottom: 5px;
}
#app .content-container .filter-container .filter-item .multi-range-slider .bar-inner {
  height: 2px;
  margin-top: 0;
}
#app .content-container .filter-container .filter-item .multi-range-slider .thumb::before {
  width: 16px;
  height: 16px;
  border-width: 2px !important;
}
#app .content-container .searchInput {
  width: 145px !important;
  background-size: 16px auto;
  background-position: left 10px center;
}
#app .content-container .searchInput:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
#app .content-container .searchInput::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
#app .content-container .searchInput::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
#app .content-container .customize-table .header .header-text {
  white-space: nowrap;
}
#app .content-container .customize-table .easy-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}
#app .content-container .customize-table .easy-checkbox label::before {
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
}
#app .content-container .customize-table .easy-checkbox label::after {
  width: 0;
  height: 0;
  left: 10px;
  top: 10px;
  transform: none;
  border: 0 !important;
}
#app .content-container .customize-table .easy-checkbox input[type=checkbox]:checked + label[data-v-7e69a276]::after {
  width: 14px;
  height: 14px;
  transform: translateX(-50%) translateY(-50%);
  background: #00a3b8 url("/frontend/img/icon/i-success-check.svg") center center no-repeat;
  background-size: 8px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#app .content-container .customize-table tr td {
  padding: 8px 15px;
}

#app .content-container .customize-table .easy-checkbox .allSelected + label::after {
  width: 14px;
  height: 14px;
  transform: translateX(-50%) translateY(-50%);
  background: #00a3b8 url("/frontend/img/icon/i-success-check.svg") center center no-repeat;
  background-size: 8px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#app .content-container .customize-table .easy-checkbox .partSelected + label::after {
  width: 14px;
  height: 14px;
  transform: translateX(-50%) translateY(-50%);
  background: #00a3b8 url("/frontend/img/icon/i-indeterminate.svg") center center no-repeat;
  background-size: 22px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#app .content-container .easy-data-table__rows-selector {
  margin-right: 20px;
}
#app .content-container .easy-data-table__rows-selector .rows-input__wrapper {
  border: 0;
}
#app .content-container .easy-data-table__rows-selector .rows-input__wrapper .rows-input {
  color: #1c1b29;
  font-weight: 700;
}
#app .content-container .easy-data-table__rows-selector .rows-input__wrapper .triangle {
  border-top: solid 4px #00a3b8;
  border-left: solid 4px transparent;
  border-right: solid 4px transparent;
}

#app .buttons-pagination .item {
  font-size: 14px;
  height: 24px;
  line-height: 24px !important;
  padding: 0 7px;
  color: #696b76;
  font-weight: 400;
}
#app .buttons-pagination .item.button.active {
  color: #fff;
  font-weight: 700;
}
#app .previous-page__click-button .arrow,
#app .next-page__click-button .arrow {
  border-top: 2px solid #00a3b8;
  border-left: 2px solid #00a3b8;
}
#app .previous-page__click-button.first-page .arrow,
#app .next-page__click-button.last-page .arrow {
  border-color: #e0e0e0;
}
#app .left-container .filter-container + .filter-container ul {
  padding: 8px 0;
  margin-bottom: 0 !important;
}
#app .left-container .filter-container + .filter-container .list-item {
  padding: 0;
  margin: 0;
}
#app .left-container .filter-container + .filter-container .list-item a {
  display: inline-block;
  width: 100%;
  padding: 8px 20px;
  transition: all 0.3s ease;
}
#app .left-container .filter-container + .filter-container .list-item a:hover {
  color: #00a3b8;
  background: #eafdfe;
}
#app .vue3-easy-data-table__header th.sortable .header {
  color: #1c1b29;
}
#app .vue3-easy-data-table__header th.sortable .sortType-icon {
  border-bottom-color: #1c1b29;
}
#app .vue3-easy-data-table__header th.sortable.none .header {
  color: #696b76;
}
#app .vue3-easy-data-table__header th.sortable.none .sortType-icon {
  border-bottom-color: #96979f;
  opacity: 1;
}
#app .stickyListCreate .stickyListItem {
  margin: 0 auto;
  width: 100%;
  max-width: 1270px !important;
  padding: 0 30px !important;
  text-align: right;
}
#app .table-options {
  left: auto;
  right: -5px;
  top: -5px;
}
#app .table-options li {
  padding: 7px 16px;
  font-family: "ThreeSix", sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
}
#app .table-options li a:hover {
  color: #00a3b8;
}
#app .followers-tag {
  padding: 3px 4px;
}
#app .modal-content {
  padding: 0;
}
#app .modal-content .modal-header {
  padding: 24px;
  padding-bottom: 3px;
}
#app .modal-content .modal-header h5 {
  padding-top: 15px;
  font-size: 32px;
  font-weight: 800;
}
#app .modal-content .modal-body {
  padding: 0 24px;
}
#app .modal-content .modal-body > label {
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0 10px;
}
#app .modal-content .modal-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #e1e1e4;
  padding: 0 24px;
  padding-bottom: 20px;
}
#app .modal-content .modal-footer {
  padding: 24px;
}
#app .modal-content .modal-footer .btn {
  padding: 3px 12px;
  border-radius: 6px;
  margin: 0;
}
#app .modal-content .modal-footer .btn.btn-save {
  margin-right: 12px;
}
#app .modal-content .modalFieldsList {
  margin: 0;
}
#app .email-input {
  margin: 18px 0 24px;
  padding: 0;
  border: 0;
  background: none;
}
#app .email-input input {
  padding: 3px 12px;
  border: 1px solid #96979f;
  border-radius: 8px;
}

#app .fullScreen.content-container {
  margin: 0 auto;
  margin-top: calc(-8% - 50px);
}

.subscription-tabs ul {
  border-bottom: 1px solid #e1e1e4;
}
.subscription-tabs ul li {
  display: inline-block;
}
.subscription-tabs ul li a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
}
.subscription-tabs ul li a.active {
  font-weight: 700;
  color: #00a3b8;
  border-bottom: 2px solid #00a3b8;
  margin-bottom: -1px;
}

.customer-settings .border-top {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #e1e1e4;
  padding-bottom: 10px;
}
.customer-settings .button.button-delete {
  color: #00a3b8;
  background: #eafdfe;
  border-color: #eafdfe !important;
}
.customer-settings .button.button-delete:hover {
  border-color: #73f1f4 !important;
  background: #73f1f4;
  color: #1c1b29;
}
.settings .settings-wrap .customer-settings .bg-gray {
  max-width: 225px;
  margin-left: auto;
  padding-bottom: 16px;
  margin-top: 26px;
}
.settings .settings-wrap .customer-settings .bg-gray p {
  line-height: 1.4em;
}
.settings .settings-wrap .customer-settings .form-group input[disabled].form-control {
  background: #e1e1e4;
}

.subscription-item {
  display: flex;
  border: 1px solid #e1e1e4;
  box-shadow: 0px 2px 8px rgba(105, 107, 118, 0.1);
  border-radius: 6px;
  margin: 24px 0;
}
.subscription-item .seb-left-content {
  flex: 0 0 240px;
  max-width: 240px;
  background: #e1e1e4;
  padding: 16px;
}
.subscription-item .seb-left-content .sub-packet {
  background: #263442;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 8px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.subscription-inactive .subscription-item .seb-left-content .sub-packet {
  background: #ffffff;
}
.subscription-inactive .subscription-item .seb-left-content .sub-packet p {
  color: #96979f;
}
.subscription-inactive .subscription-item .seb-left-content .sub-packet strong {
  color: #96979f;
}
.subscription-item .seb-left-content .sub-packet > div {
  text-align: center;
}
.subscription-item .seb-left-content .sub-packet p {
  font-size: 14px;
  font-weight: 700;
  color: #e1e1e4;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 8px;
}
.subscription-item .seb-left-content .sub-packet strong {
  font-size: 40px;
}
.subscription-item .sub-main-content {
  flex: 0 0 calc(100% - 240px);
  max-width: calc(100% - 240px);
}
.subscription-item .sub-main-content .sub-table .sub-row {
  display: flex;
  padding: 11px 14px;
  border-bottom: 1px solid #e1e1e4;
}
.subscription-credit .subscription-item .sub-main-content .sub-table .sub-row:nth-child(2n+1) {
  background: #f8f8f8;
}
.subscription-flatrate .subscription-item .sub-main-content .sub-table .sub-row:nth-child(2n+1) {
  background: #f8f8f8;
}
.subscription-item .sub-main-content .sub-table .sub-row .col:last-child {
  text-align: right;
}
.subscription-item .sub-main-content .sub-table .sub-row .col p {
  color: #1c1b29;
  margin: 2px 0;
  font-size: 14px;
  line-height: 20px;
}
.subscription-item .sub-main-content .sub-table .sub-row .col strong {
  color: #1c1b29;
}
.subscription-item .sub-main-content .sub-table .sub-row .col .sub-state {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c1b29;
  padding: 4px 8px;
  border-radius: 4px;
}
.subscription-item .sub-main-content .sub-table .sub-row .col .sub-state.sub-state-expired {
  color: #fff;
  background: #ff3333;
}
.subscription-item .sub-main-content .sub-table .sub-row .col .sub-state.sub-state-active {
  background: #73f2f5;
}
.subscription-item .sub-main-content .sub-table .sub-row .col .sub-state.sub-state-inactive {
  color: #fff;
  background: #696b76;
}
.subscription-item .sub-main-content .sub-table .sub-row .btn-link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding-left: 26px;
  color: #00a3b8;
}
.subscription-item .sub-main-content .sub-table .sub-row .btn-link::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.subscription-item .sub-main-content .sub-table .sub-row .btn-link.btn-show-plan {
  margin-right: 24px;
}
.subscription-item .sub-main-content .sub-table .sub-row .btn-link.btn-show-plan::before {
  background: url("/frontend/img/icon/i-btn-info.svg") center center no-repeat;
  background-size: 20px auto;
}
.subscription-item .sub-main-content .sub-table .sub-row .btn-link.btn-show-zoznam::before {
  background: url("/frontend/img/icon/i-btn-zoznam.svg") center center no-repeat;
  background-size: 20px auto;
}

.subscription-plan {
  padding: 30px 0;
}
.settings .settings-wrap .subscription-plan h4 {
  font-family: "ThreeSix", sans-serif;
  font-size: 24px;
  font-weight: 800;
  padding: 0;
  margin: 18px 0 4px;
}
.subscription-plan p {
  font-size: 14px;
  line-height: 1.5em;
  color: #263442;
  max-width: 280px;
  margin: 4px auto 25px;
}

.history-empty {
  padding: 30px 0;
}
.settings .settings-wrap .history-empty h4 {
  font-family: "ThreeSix", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3em;
  color: #696b76;
  max-width: 280px;
  margin: 16px auto 0;
}

.history-table {
  padding-bottom: 30px;
  overflow: auto;
}
.history-table .tr-row {
  font-size: 14px;
  color: #1c1b29;
  display: flex;
  padding: 15px 8px;
  padding-bottom: 0;
}
.history-table .tr-row.tr-head {
  background: #fff !important;
}
.history-table .tr-row.tr-head .col {
  padding-bottom: 15px;
  border-bottom: 1px solid #e1e1e4;
}
.history-table .tr-row.tr-head .col span {
  color: #696b76;
}
.history-table .tr-row .col {
  flex: 0 0 145px;
  max-width: 145px;
}
.history-table .tr-row .col:first-child {
  flex: 0 0 130px;
  max-width: 130px;
}
.history-table .tr-row .col:nth-child(3) {
  flex: 0 0 50px;
  max-width: 50px;
}
.history-table .tr-row .col:nth-child(4) {
  flex: 0 0 80px;
  max-width: 80px;
}
.history-table .tr-row .col:nth-child(6) {
  flex: 0 0 80px;
  max-width: 80px;
}
.history-table .tr-row .col:nth-child(7) {
  flex: 0 0 80px;
  max-width: 80px;
}
.history-table .tr-row .col:nth-child(8) {
  flex: 0 0 80px;
  max-width: 80px;
}
.history-table .tr-row:nth-child(2n+1) {
  background: #f8f8f8;
}

.webpay-wrap h5 {
  font-size: 14px;
  margin: 0;
  margin-bottom: 10px;
}
body.payment .webpay-wrap .white-box {
  padding: 13px 12px;
}

.pay-information {
  margin-bottom: 30px;
}
.pay-information > div {
  margin: 10px 20px;
}
.pay-information > div p {
  position: relative;
  margin: 0;
  padding-left: 36px;
}
.pay-information > div p:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -6px;
  left: 0;
}
.pay-information > div.pay-support p:before {
  background: url("/frontend/img/icon/i-pay-support.svg") center center no-repeat;
  background-size: 32px auto;
}
.pay-information > div.pay-refunds p:before {
  background: url("/frontend/img/icon/i-pay-refunds.svg") center center no-repeat;
  background-size: 32px auto;
}
.pay-information > div.pay-encrypted p:before {
  background: url("/frontend/img/icon/i-pay-encrypted.svg") center center no-repeat;
  background-size: 32px auto;
}
.pay-information + .d-flex {
  padding-bottom: 80px;
}
.pay-information + .d-flex a {
  display: inline-block;
  font-size: 14px;
  color: #96979f;
  margin: 10px 15px;
}
.pay-information + .d-flex a:hover {
  text-decoration: underline;
}

body .was-validated .form-control:invalid:focus,
body .form-control.is-invalid:focus {
  border-color: #ff3333;
}
body .was-validated .form-control:invalid,
body .form-control.is-invalid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23FF3333' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23FF3333' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px auto;
}
body .was-validated .form-control:invalid[type=password],
body .form-control.is-invalid[type=password] {
  background-position: right 55px center;
}
body .invalid-feedback {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  position: relative;
  top: -4px;
  color: #ff3333;
}

.history-download {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/frontend/img/icon/i-btn-download.svg") center center no-repeat;
  background-size: 18px auto;
}

body.w-oh.subscription-dialog .settings-wrap {
  z-index: 101;
}

.pop-up.pop-plan .contact-form {
  padding-top: 40px;
  border-radius: 8px;
}
.pop-up.pop-plan .contact-form .pop-close {
  padding: 12px;
  top: 5px;
  right: 5px;
}
.pop-up.pop-plan .contact-form .plan-title h3 {
  font-family: "ThreeSix", sans-serif;
  font-size: 32px;
  color: #ffffff;
  margin: 0;
  margin-bottom: 20px;
}

.no-userlists {
  padding: 30px;
  padding-bottom: 200px;
}
.no-userlists h4 {
  font-family: "ThreeSix", sans-serif;
  font-size: 24px;
  font-weight: 800;
  padding: 0;
  margin: 18px 0 4px;
}

.table-instagram-filter-wrap.unlocked-table .filter-container {
  background-color: white;
  border-radius: 6px;
  padding-bottom: 8px;
  padding-top: 8px;
  box-shadow: 0px 2px 8px rgba(105, 107, 118, 0.1);
}
.table-instagram-filter-wrap.unlocked-table .side-list-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.table-instagram-filter-wrap.unlocked-table .side-list-item.selected {
  background-color: #eafdfe;
  color: var(--primary-dark);
}

.filter-container .side-list-item {
  padding: 12px 16px;
  transition: all 0.3s ease;
}
.filter-container .side-list-item:hover {
  color: #1c1b29;
  background-color: #eafdfe;
}
.filter-container h4 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #96979f;
  padding: 4px 16px;
  margin: 0;
  margin-bottom: 2px;
}
.filter-container ul {
  margin: 0;
}
.filter-container ul + h4 {
  position: relative;
  padding-top: 20px;
  margin-top: 16px;
}
.filter-container ul + h4::before {
  content: "";
  display: inline-block;
  background: #e1e1e4;
  height: 1px;
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
}

.body-wrap .left-container {
  margin-right: 32px;
}

.unlocked-table .avatar {
  width: 32px;
  height: 32px;
  background-color: pink;
  border-radius: 50%;
  margin-right: 0.5rem;
  flex-shrink: 0;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 25px;
  text-transform: uppercase;
  color: #4a148c;
  overflow: hidden;
}
.unlocked-table .table-instagram-wrap {
  padding-bottom: 45px;
}
.unlocked-table.table-instagram-filter-wrap .flex-table div.flex-row {
  padding-left: 15px;
}
.unlocked-table.table-instagram-filter-wrap .flex-table span.flex-row {
  padding: 8px 14px;
}
.unlocked-table .show-profil {
  color: #00a3b8;
}

.slider-wrap {
  position: relative;
}
.slider-wrap .slider-prev {
  display: inline-block;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: url("/frontend/img/icon/event/i-slider-prev.svg") center center no-repeat;
  background-size: 48px auto;
  position: absolute;
  top: 0;
  left: -74px;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.slider-wrap .slider-prev.hidden {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}
.slider-wrap .slider-next {
  display: inline-block;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: url("/frontend/img/icon/event/i-slider-next.svg") center center no-repeat;
  background-size: 48px auto;
  position: absolute;
  top: 0;
  right: -74px;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.slider-wrap .slider-next.hidden {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}
.slider-wrap .slider-dots {
  display: none;
}
.slider-wrap .slider-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #263442;
  margin: 6px;
  transition: all 0.3s ease;
}
.slider-wrap .slider-dots span.active {
  background: #ffffff;
}
.slider-wrap .slider-content {
  position: relative;
  width: 100%;
}
.slider-wrap .slider-content .slider-item {
  position: relative;
  width: 100%;
  display: flex;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.slider-wrap .slider-content .slider-item.item-2 .slider-text h2 {
  max-width: 350px;
}
.slider-wrap .slider-content .slider-item.item-4 .slider-text h2 {
  max-width: 500px;
}
.slider-wrap .slider-content .slider-item:not(.active) {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.slider-wrap .slider-content .slider-item.active {
  opacity: 1;
  transform: scale(1);
}
.slider-wrap .slider-content .slider-item .slider-text {
  width: 60%;
  padding: 20px 48px 40px;
  position: relative;
  background: #1c1b29;
}
.slider-wrap .slider-content .slider-item .slider-text .close-wrap {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
}
.slider-wrap .slider-content .slider-item .slider-text .close-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.slider-wrap .slider-content .slider-item .slider-text .close-wrap a svg {
  width: 18px;
}
.slider-wrap .slider-content .slider-item .slider-text h2 {
  font-size: 40px;
  font-family: "ThreeSix", sans-serif;
  color: #fff;
  margin-bottom: 22px;
}
.slider-wrap .slider-content .slider-item .slider-text .event-author-time {
  display: flex;
  align-items: center;
  border-top: 1px solid #696b76;
  border-bottom: 1px solid #696b76;
}
.slider-wrap .slider-content .slider-item .slider-text .event-author-time .event-author {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.slider-wrap .slider-content .slider-item .slider-text .event-author-time .event-author .img-wrap {
  width: 24px;
  margin-right: 8px;
  border-radius: 50%;
  overflow: auto;
}
.slider-wrap .slider-content .slider-item .slider-text .event-author-time .event-time p {
  padding-left: 34px;
  position: relative;
}
.slider-wrap .slider-content .slider-item .slider-text .event-author-time .event-time p::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/frontend/img/icon/event/i-slider-time.svg") center center no-repeat;
  background-size: 24px auto;
  position: absolute;
  top: 0;
  left: 0;
}
.slider-wrap .slider-content .slider-item .slider-text h3 {
  font-size: 21px;
  line-height: 32px;
  margin: 20px 0 12px;
  color: #fff;
}
.slider-wrap .slider-content .slider-item .slider-text p {
  font-size: 16px;
  line-height: 24px;
  color: #e1e1e4;
}
.slider-wrap .slider-content .slider-item .slider-text ul li {
  font-size: 16px;
  line-height: 24px;
  color: #e1e1e4;
  margin: 7px 0;
  padding-left: 16px;
  position: relative;
}
.slider-wrap .slider-content .slider-item .slider-text ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #73f2f5;
  position: absolute;
  top: 10px;
  left: 0;
}
.slider-wrap .slider-content .slider-item .slider-text .button-wrap {
  padding-top: 34px;
}
.slider-wrap .slider-content .slider-item .slider-text .button-wrap .button:not(.button-dark) {
  margin-right: 8px;
}
.slider-wrap .slider-content .slider-item .slider-text .button-wrap .button-dark {
  color: #73f2f5;
  background: #1c1b29;
}
.slider-wrap .slider-content .slider-item .slider-text .button-wrap .button-dark:hover {
  color: #1c1b29;
  background: #fff;
}
.slider-wrap .slider-content .slider-item .slider-img {
  width: 40%;
}
.slider-wrap .slider-content .slider-item .slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pop-up.pop-slider .pop-wrap .pop-content {
  max-width: 1300px;
  padding: 20px 60px;
}
.pop-up.pop-slider .pop-wrap .pop-content .slider-wrap {
  width: 100%;
  height: 100%;
}
.pop-up.pop-slider .pop-wrap .pop-content .slider-wrap .slider-content {
  display: flex;
  align-items: center;
  height: 100%;
}

.slider-wrap .slider-content .slider-item .slider-text .event-author-time {
  flex-wrap: wrap;
  padding: 8px 0;
}
.slider-wrap .slider-content .slider-item .slider-text .event-author-time p {
  margin: 8px 0;
}

@font-face {
  font-family: "pass";
  font-style: normal;
  font-weight: 400;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAATsAA8AAAAAB2QAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAcg9+z70dERUYAAAF0AAAAHAAAAB4AJwANT1MvMgAAAZAAAAA/AAAAYH7AkBhjbWFwAAAB0AAAAFkAAAFqZowMx2N2dCAAAAIsAAAABAAAAAQAIgKIZ2FzcAAAAjAAAAAIAAAACAAAABBnbHlmAAACOAAAALkAAAE0MwNYJ2hlYWQAAAL0AAAAMAAAADYPA2KgaGhlYQAAAyQAAAAeAAAAJAU+ATJobXR4AAADRAAAABwAAAAcCPoA6mxvY2EAAANgAAAAEAAAABAA5gFMbWF4cAAAA3AAAAAaAAAAIAAKAE9uYW1lAAADjAAAARYAAAIgB4hZ03Bvc3QAAASkAAAAPgAAAE5Ojr8ld2ViZgAABOQAAAAGAAAABuK7WtIAAAABAAAAANXulPUAAAAA1viLwQAAAADW+JM4eNpjYGRgYOABYjEgZmJgBEI2IGYB8xgAA+AANXjaY2BifMg4gYGVgYVBAwOeYEAFjMgcp8yiFAYHBl7VP8wx/94wpDDHMIoo2DP8B8kx2TLHACkFBkYA8/IL3QB42mNgYGBmgGAZBkYGEEgB8hjBfBYGDyDNx8DBwMTABmTxMigoKKmeV/3z/z9YJTKf8f/X/4/vP7pldosLag4SYATqhgkyMgEJJnQFECcMOGChndEAfOwRuAAAAAAiAogAAQAB//8AD3jaY2BiUGJgYDRiWsXAzMDOoLeRkUHfZhM7C8Nbo41srHdsNjEzAZkMG5lBwqwg4U3sbIx/bDYxgsSNBRUF1Y0FlZUYBd6dOcO06m+YElMa0DiGJIZUxjuM9xjkGRhU2djZlJXU1UDQ1MTcDASNjcTFQFBUBGjYEkkVMJCU4gcCKRTeHCk+fn4+KSllsJiUJEhMUgrMUQbZk8bgz/iA8SRR9qzAY087FjEYD2QPDDAzMFgyAwC39TCRAAAAeNpjYGRgYADid/fqneL5bb4yyLMwgMC1H90HIfRkCxDN+IBpFZDiYGAC8QBbSwuceNpjYGRgYI7594aBgcmOAQgYHzAwMqACdgBbWQN0AAABdgAiAAAAAAAAAAABFAAAAj4AYgI+AGYB9AAAAAAAKgAqACoAKgBeAJIAmnjaY2BkYGBgZ1BgYGIAAUYGBNADEQAFQQBaAAB42o2PwUrDQBCGvzVV9GAQDx485exBY1CU3PQgVgIFI9prlVqDwcZNC/oSPoKP4HNUfQLfxYN/NytCe5GwO9/88+/MBAh5I8C0VoAtnYYNa8oaXpAn9RxIP/XcIqLreZENnjwvyfPieVVdXj2H7DHxPJH/2/M7sVn3/MGyOfb8SWjOGv4K2DRdctpkmtqhos+D6ISh4kiUUXDj1Fr3Bc/Oc0vPqec6A8aUyu1cdTaPZvyXyqz6Fm5axC7bxHOv/r/dnbSRXCk7+mpVrOqVtFqdp3NKxaHUgeod9cm40rtrzfrt2OyQa8fppCO9tk7d1x0rpiQcuDuRkjjtkHt16ctbuf/radZY52/PnEcphXpZOcofiEZNcQAAeNpjYGIAg///GBgZsAF2BgZGJkZmBmaGdkYWRla29JzKggxD9tK8TAMDAxc2D0MLU2NjENfI1M0ZACUXCrsAAAABWtLiugAA) format("woff");
}
.login-wrap input[type=password] {
  font-family: "pass", "CeraPro", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 50px;
}
.login-wrap input[type=password]:-moz-placeholder-shown {
  font-weight: 400;
}
.login-wrap input[type=password]:-ms-input-placeholder {
  font-weight: 400;
}
.login-wrap input[type=password]:placeholder-shown {
  font-weight: 400;
}
.login-wrap .form-group .form-control {
  height: 50px;
}

.settings input[type=password] {
  font-family: "pass", "CeraPro", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
}
.settings input[type=password]:-moz-placeholder-shown {
  font-weight: 400;
}
.settings input[type=password]:-ms-input-placeholder {
  font-weight: 400;
}
.settings input[type=password]:placeholder-shown {
  font-weight: 400;
}

.show-password-button {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/frontend/img/icon/i-button-pass-hide.svg") center center no-repeat;
  background-size: 24px auto;
}
.show-password-button.active {
  background: url("/frontend/img/icon/i-button-pass-show.svg") center center no-repeat;
  background-size: 24px auto;
}

.form-password-show {
  position: relative;
}

.show-password-wrap {
  position: absolute;
  top: 40px;
  right: 20px;
}

.customer-settings .show-password-wrap {
  position: absolute;
  top: 35px;
  right: 20px;
}

.contact-box {
  display: flex;
  align-self: end;
  padding-top: 60px;
}
.contact-box .contact-place-wrap {
  position: relative;
  opacity: 0;
  padding-left: 60px;
  padding-right: 60px;
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: forwards;
}
.contact-box .contact-place-wrap p {
  font-size: 16px;
  margin: 5px 0;
  color: #ffffff;
}
.contact-box .contact-place-wrap:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/frontend/img/icon/i-place2.svg") center center no-repeat;
  background-size: 24px auto;
}
.contact-box .contact-person-wrap {
  position: relative;
  opacity: 0;
  padding-left: 60px;
  animation: sbFade 1000ms ease-in-out 0.3s;
  animation-fill-mode: forwards;
}
.contact-box .contact-person-wrap h5 {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}
.contact-box .contact-person-wrap p {
  font-size: 16px;
  margin: 5px 0;
  color: #ffffff;
}
.contact-box .contact-person-wrap:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/frontend/img/person/kristina-ujvaryova.png") center center no-repeat;
  background-size: 40px auto;
}

.col-contact {
  display: flex;
  flex-wrap: wrap;
}
.col-contact .text-box h2,
.col-contact .text-box p {
  opacity: 0;
  position: relative;
}
.col-contact .text-box.in-view h2 {
  animation: transcale 1s ease forwards;
}
.col-contact .text-box.in-view p {
  animation: sbFade 1000ms ease-in-out;
  animation-fill-mode: forwards;
}

.product.p-influence #scroll-section .title-wrap h2 {
  padding-bottom: 40px;
}
.product.p-influence .products-steps .row.step-1 .col-8 > .title-wrap h3 {
  font-weight: 500;
}
.product.p-influence .products-steps .row .col-8 > .title-wrap h3 {
  margin-bottom: 50px;
  font-weight: 500;
}

body #app .content-container .customize-table .header .header-text {
  white-space: normal;
}

.product.p-influence #tab-flatrate {
  display: none;
}
.product.p-influence #tab-flatrate.active {
  display: block;
}
.product.p-influence #tab-credit {
  display: none;
}
.product.p-influence #tab-credit.active {
  display: block;
}

.inf-plans {
  padding-bottom: 5px;
}
.inf-plans .title-wrap {
  padding: 20px 0 30px;
}
.inf-plans .title-wrap h2 {
  margin: 0;
}
.inf-plans .tab-button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
}
.inf-plans .tab-button-wrap .tab-button {
  margin: 0 10px;
}
.inf-plans .tab-button-wrap .tab-button a {
  display: inline-block;
  font-family: "ThreeSix", sans-serif;
  padding: 21px;
  font-size: 28px;
  font-weight: 700;
  color: #263442;
  opacity: 0.5;
  transition: all 0.3s ease;
  border-bottom: 2px solid #f8f8f8;
}
.inf-plans .tab-button-wrap .tab-button a.active {
  border-bottom: 2px solid #1c1b29;
  opacity: 1;
}
.inf-plans .tab-button-wrap .tab-button a:hover {
  opacity: 1;
}
.inf-plans .plan-table-wrap .plan-row:first-child .plan-col:nth-child(2) {
  border-radius: 0;
}

.credit .plan-table-wrap .plan-row .plan-col .save-wrap {
  background: none;
  display: flex;
  width: 100%;
  align-items: flex-end;
}
.credit .plan-table-wrap .plan-row .plan-col .save-wrap .save-select {
  width: 100%;
  background-color: #f8f8f8;
}

.save-select label {
  display: inline-block;
  width: 100%;
  position: relative;
}
.save-select label.select-country {
  margin-bottom: 8px;
}
.save-select label.select-country::before {
  background: url("/frontend/img/icon/i-select-sk.svg") center center no-repeat;
  background-size: 15px auto;
}
.table-cz .save-select label.select-country::before {
  background: url("/frontend/img/icon/i-select-cz.svg") center center no-repeat;
  background-size: 15px auto;
}
.save-select label.select-platform::before {
  width: 18px;
  height: 18px;
  background: url("/frontend/img/icon/i-platform-instagram.svg") center center no-repeat;
  background-size: 18px auto;
}
.table-tiktok .save-select label.select-platform::before {
  background: url("/frontend/img/icon/i-platform-tiktok.svg") center center no-repeat;
  background-size: 18px auto;
}
.save-select label select {
  width: 100%;
  padding-left: 30px;
  font-weight: 700;
}
.save-select label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  left: 8px;
}

.credit .plan-table-wrap.table-tiktok .plan-row .plan-col {
  flex: 0 0 25%;
  max-width: 25%;
}

.flat-price .plan-table-wrap.table-tiktok .plan-row .plan-col {
  flex: 0 0 33.3333333333% !important;
  max-width: 33.3333333333% !important;
}

.flat-price.new-price .plan-table-wrap .plan-row .plan-col {
  flex: 0 0 25% !important;
  max-width: 25% !important;
}

.plan-table-wrap .plan-row .plan-col .save-wrap {
  max-width: 220px;
}

.can-unlocked-profile .tooltip-component.node-tooltip.locked .node-middle,
.can-unlocked-profile .tooltip-component.node-tooltip.locked .node-bottom {
  display: none !important;
}

.url-tag {
  text-align: center;
  padding-right: 20px;
}
.url-tag a {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/frontend/img/icon/i-im-black.svg") center center no-repeat;
  background-size: auto 20px;
}
.url-tag.tiktok a {
  background: url("/frontend/img/icon/i-tiktok.svg") center center no-repeat;
  background-size: auto 24px;
}

body .stickyListItem button {
  line-height: 100%;
  padding: 8px 12px 7px;
  padding-left: 37px;
}
body .stickyListItem button.btn-add-list {
  background: url("/frontend/img/icon/i-add-b.svg") left 8px center no-repeat;
  background-size: auto 24px;
}
body .stickyListItem button.btn-share {
  background: url("/frontend/img/icon/i-share.svg") left 10px center no-repeat;
  background-size: auto 14px;
}
body .stickyListItem button.btn-save {
  padding-left: 12px;
}
body .stickyListCreate {
  height: auto;
  padding: 8px 0;
}

#unlockPopup.pop-up .success-wrap {
  padding: 40px 60px;
}
#unlockPopup .pop-close {
  padding: 3px;
}
#unlockPopup .insta-show .insta-left {
  margin-top: 20px;
  text-align: center;
}
#unlockPopup .insta-show .insta-left .img-wrap {
  padding-top: 0;
  margin: 0 auto;
}
#unlockPopup h3.mt-2.mb-4 {
  font-family: "ThreeSix", sans-serif;
  font-size: 32px;
  line-height: 1.25em;
  margin: 30px auto 40px !important;
}

.posts-table-wrap .posts-table .row:last-child .col p:hover + .hover-text, .posts-table-wrap .posts-table .row:nth-last-child(2) .col p:hover + .hover-text, .posts-table-wrap .posts-table .row:nth-last-child(3) .col p:hover + .hover-text {
  top: auto;
  bottom: 100%;
}

.hashtags-fixed-wrap {
  position: relative;
  min-height: 300px;
}
.hashtags-fixed-wrap .full-size {
  left: 0;
  bottom: 0;
}

.hashtags-fixed-wrap.full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  z-index: 100000;
  background-color: #fff;
}
.hashtags-fixed-wrap.full .full-size {
  bottom: 20px;
  left: 20px;
}
.hashtags-fixed-wrap.full #hashtags {
  width: 100%;
  height: 100%;
}
.hashtags-fixed-wrap.full #hashtags svg {
  width: 100%;
  height: 100%;
}

.hashtags-input.instagram-input {
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}
.hashtags-input.instagram-input .input-wrap {
  max-width: 100%;
  margin: 0;
}

.hashtags-fixed-wrap {
  height: 300px;
}

#hashtags {
  height: 100%;
}
#hashtags svg {
  height: 100%;
  width: 100%;
}

body select {
  font-family: "CeraPro", sans-serif;
  background-image: url("/frontend/img/icon/i-select-teal.svg");
  background-size: 10px auto;
}

.filter-toogle {
  display: none !important;
  width: 100%;
}

.insta-home .database-top .sowa-title h1 {
  margin-bottom: 10px;
}
.insta-home .database-top .sowa-title p {
  font-size: 60px;
  font-weight: 900 !important;
  font-family: "ThreeSix", sans-serif;
  color: #73f1f4 !important;
  margin: 20px auto 30px;
}

.insta-home .database-top.nominations-top .sowa-title h1 {
  margin-bottom: 65px;
}

.p-influence .benefits {
  padding-top: 30px;
}
.p-influence #demo {
  padding-bottom: 0;
}
.p-influence #demo .row .col-6:first-child {
  flex: 0 0 55%;
  max-width: 55%;
}
.p-influence #demo .row .col-6:last-child {
  flex: 0 0 45%;
  max-width: 45%;
}
.p-influence #demo .demo-img {
  padding-bottom: 0;
}
.p-influence #demo .demo-img .img-wrap {
  margin-bottom: -70px;
  margin-right: 35px;
  margin-top: 90px;
  box-shadow: 0px 617px 246px rgba(28, 27, 41, 0.01), 0px 347px 208px rgba(28, 27, 41, 0.05), 0px 154px 154px rgba(28, 27, 41, 0.09), 0px 38px 85px rgba(28, 27, 41, 0.1), 0px 0px 0px rgba(28, 27, 41, 0.1);
}
.p-influence #demo .demo-img .img-demo-wrap {
  text-align: right;
}

.nominations-top {
  min-height: auto !important;
}
.nominations-top h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 8px auto;
}

.nominations-wrap {
  padding-bottom: 80px;
}
.nominations-wrap ul {
  display: flex;
  flex-wrap: wrap;
}
.nominations-wrap ul li {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 16px;
}
.nominations-wrap ul li a {
  font-family: "ThreeSix", sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 15px;
  text-align: center;
  border: 1px solid #1c1b29;
  border-radius: 16px;
  min-height: 90px;
  transition: all 0.3s ease;
}
.nominations-wrap ul li a.nominations-voting {
  background-color: #1c1b29;
  color: #fff;
}
.nominations-wrap ul li a.nominations-voting:hover {
  color: #73f1f4;
  border-color: #1c1b29;
}
.nominations-wrap ul li a:hover {
  color: #00a3b8;
  border-color: #00a3b8;
}

.pop-up.pop-custom .contact-form .pop-close {
  padding: 12px;
}
.pop-up.pop-custom .pop-wrap .pop-content {
  max-width: 550px;
}
.pop-up.pop-custom .contact-container h2 {
  font-size: 32px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.pop-up.pop-custom .contact-container h2 + p {
  font-size: 14px;
  color: #e1e1e4;
}
.pop-up.pop-custom .contact-container .form-group {
  border-bottom: 1px solid #263442;
  padding: 20px 0 10px;
}
.pop-up.pop-custom .contact-container .form-group h6 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
}
.pop-up.pop-custom .contact-container .form-group input {
  padding: 0 10px;
  font-size: 14px;
  height: 36px;
  background-color: #fff;
}
.pop-up.pop-custom .contact-container .form-group select {
  font-size: 14px;
  background-color: #fff;
}
.pop-up.pop-custom .contact-container .form-group textarea {
  padding: 10px;
  padding-top: 8px;
  font-size: 14px;
  height: 70px;
  min-height: 50px;
  max-height: 200px;
  margin-bottom: 15px;
  background-color: #fff;
}
.pop-up.pop-custom .contact-container .form-group .form-check-label-wrap {
  padding-bottom: 5px;
}
.pop-up.pop-custom .contact-container .form-group .form-check-label {
  margin-top: 5px;
  margin-bottom: 5px;
}
.pop-up.pop-custom .contact-container .form-group .form-check-label input[type=checkbox] + label span::before {
  top: 3px;
  width: 14px;
  height: 14px;
}
.pop-up.pop-custom .contact-container .form-group .form-check-label input[type=checkbox] + label span::after {
  top: 10px;
  left: 7px;
}
.pop-up.pop-custom .contact-container .form-group .form-check-label input[type=checkbox]:checked + label span::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
}
.pop-up.pop-custom .contact-container .form-group .form-check-label span {
  color: #e1e1e4;
}

.p-influence .inf-plans .title-wrap {
  padding-top: 60px;
}
.p-influence .product-benefits-wrap {
  padding-bottom: 0;
}
.p-influence .inf-plans .tab-button-wrap {
  padding-top: 10px;
  padding-bottom: 5px;
}

.product.p-influence #tab-credit > .center p,
.product.p-influence #tab-flatrate > .center p {
  font-size: 18px;
  line-height: 1.5em;
  margin: 30px auto 40px;
}

.product.p-influence #tab-flatrate > .center p {
  max-width: 750px;
}

.product.p-influence #tab-credit > .center p {
  max-width: 800px;
}

.relative {
  position: relative;
}

.partners-logo-wrap {
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 80px;
}
.partners-logo-wrap h3 {
  font-family: "ThreeSix", sans-serif;
  font-size: 28px;
  line-height: 1.36em;
  margin-bottom: 32px;
}

.partners-logos {
  margin: 25px 0 25px;
}
.partners-logos .partner-item {
  padding: 8px;
}
.partners-logos .partner-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px;
  width: 154px;
  height: 77px;
  box-shadow: 0px 2px 8px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.partners-logos .partner-item a:hover {
  transform: scale(1.1) translateY(-10px);
}

.instagram-section .white-box .post-filter h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.post-filter {
  padding-bottom: 12px;
}
.post-filter + .post-filter {
  padding-bottom: 16px;
}
.post-filter + .post-filter .col:first-child {
  max-width: 452px;
}
.post-filter + .post-filter .col:first-child ~ .col {
  max-width: 175px;
}
.post-filter .col.category-col {
  flex: 0 0 380px;
  max-width: 380px;
}
.post-filter .col.mt-auto {
  margin-top: 0 !important;
  flex: 0 0 320px;
  max-width: 320px;
}
.post-filter .date-range-wrap input {
  border: 1px solid #e1e1e4;
  border-radius: 4px;
}
.post-filter .instagram-input {
  margin-right: 0;
}
.post-filter .instagram-input .input-wrap label {
  border: 1px solid #e1e1e4;
  border-radius: 4px;
}
.post-filter .instagram-input .input-wrap label:before {
  filter: none;
}
.post-filter .instagram-input .input-wrap label input {
  height: 34px;
  width: 100%;
  border: 0;
  max-width: 100%;
}
.post-filter .instagram-select select {
  height: 36px;
  border: 1px solid #e1e1e4;
  border-radius: 4px;
}
.post-filter .date-range-wrap {
  max-width: 300px;
}
.post-filter .date-range-wrap input {
  height: 36px;
  border-radius: 4px;
}

.instagram-input .input-wrap + ul {
  z-index: 1;
}

.sowa-all .table-instagram-wrap .flex-table .flex-row .col:nth-child(3) {
  flex: 0 0 200px;
  max-width: 200px;
}
.sowa-all .table-instagram-wrap .flex-table .flex-row .col:nth-child(4) {
  flex: 0 0 80px;
  max-width: 80px;
}
.sowa-all .table-instagram-wrap .flex-table .flex-row .col:nth-child(5) {
  flex: 0 0 170px;
  max-width: 170px;
}
.sowa-all .table-instagram-wrap .flex-table .flex-row .col:nth-child(6) {
  flex: 0 0 90px;
  max-width: 90px;
}
.sowa-all .table-instagram-wrap .flex-table .flex-row .col:nth-child(7) {
  flex: 0 0 110px;
  max-width: 110px;
}

.locking-icon {
  display: inline-block;
}
.locking-icon a {
  display: inline-block;
}
.locking-icon i {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: #fff url("/frontend/img/icon/i-lock-black.svg") center center no-repeat;
}

.trend-data.no-click .date-range-wrap {
  pointer-events: none;
}

#category-range {
  padding-bottom: 5px;
}
#category-range.no-click {
  pointer-events: none;
}
#category-range .range-middle {
  justify-content: center;
  width: 18px;
}

.mention-data.no-click .date-range-wrap {
  pointer-events: none;
}

.post-filter.no-click {
  pointer-events: none;
}

.timeline-check-range-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.timeline-check-range-wrap .date-range-wrap .range-middle {
  width: 18px;
  justify-content: center;
}

.no-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  transition: all 0.3s ease;
}
.no-content p {
  color: #1c1b29;
}

.no-content[style="display: block;"] {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 0.8;
}

.date-range-wrap + div {
  position: relative;
}

.evaluation-tooltip {
  background: #1c1b29;
  border-radius: 4px;
  padding: 4px 8px;
  text-align: center;
  min-width: 90px;
}
.evaluation-tooltip strong {
  font-size: 14px;
  font-weight: 400;
}
.evaluation-tooltip span {
  font-size: 14px;
  font-weight: 400;
  color: #a5a6b1;
}

.timeline-tooltip.show {
  visibility: visible !important;
}
.timeline-tooltip:hover {
  visibility: visible !important;
}
.timeline-tooltip .timeline-tooltip-content {
  background: #1c1b29;
  color: #fff;
  border-radius: 4px;
  padding: 16px;
  width: 420px;
}
.timeline-tooltip .timeline-tooltip-content a {
  font-size: 14px;
  color: #73f2f5;
}
.timeline-tooltip .timeline-tooltip-content p {
  color: #ffffff;
  word-break: break-word;
  margin-top: 0;
}
.timeline-tooltip .timeline-tooltip-content .timeline-data-content {
  display: flex;
  width: 100%;
  padding: 2px 0;
}
.timeline-tooltip .timeline-tooltip-content .timeline-data-content > div span {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 14px;
  width: 100%;
  color: #96979f;
}
.timeline-tooltip .timeline-tooltip-content .timeline-data-content > div strong {
  font-size: 16px;
  color: #fff;
}

.timeline-tooltip a,
.mentions-tooltip a,
.brands-tooltip-wrap a {
  font-size: 12px;
  color: #73f2f5;
}
.timeline-tooltip a.instagram-link,
.mentions-tooltip a.instagram-link,
.brands-tooltip-wrap a.instagram-link {
  position: relative;
  padding-left: 17px;
}
.timeline-tooltip a.instagram-link:before,
.mentions-tooltip a.instagram-link:before,
.brands-tooltip-wrap a.instagram-link:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("/frontend/img/icon/i-instagram.svg") center left no-repeat;
  background-size: auto 12px;
  position: absolute;
  top: 3px;
  left: 0;
}
.is-tiktok .timeline-tooltip a.instagram-link,
.is-tiktok .mentions-tooltip a.instagram-link,
.is-tiktok .brands-tooltip-wrap a.instagram-link {
  padding-left: 22px;
}
.is-tiktok .timeline-tooltip a.instagram-link::before,
.is-tiktok .mentions-tooltip a.instagram-link::before,
.is-tiktok .brands-tooltip-wrap a.instagram-link::before {
  top: 0px;
  width: 16px;
  height: 16px;
  background: url("/frontend/img/icon/i-tiktok-blue.svg") center left no-repeat;
  background-size: auto 16px;
}
.timeline-tooltip a.detail-link,
.mentions-tooltip a.detail-link,
.brands-tooltip-wrap a.detail-link {
  display: inline-block;
  position: relative;
  padding-right: 17px;
}
.timeline-tooltip a.detail-link:after,
.mentions-tooltip a.detail-link:after,
.brands-tooltip-wrap a.detail-link:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("/frontend/img/icon/i-arr-right-t.svg") center center no-repeat;
  background-size: auto 16px;
  position: absolute;
  top: 4px;
  right: 0;
}
.timeline-tooltip hr,
.mentions-tooltip hr,
.brands-tooltip-wrap hr {
  border: 0;
  height: 1px;
  background: rgba(150, 151, 159, 0.4);
}

.category-tooltip hr {
  border: 0;
  height: 1px;
  background: rgba(150, 151, 159, 0.4);
  margin-bottom: 8px;
}
.category-tooltip strong {
  display: inline-block;
  margin-bottom: 5px;
}
.category-tooltip p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 10px;
}
.category-tooltip p:last-child {
  margin-bottom: 0;
}
.category-tooltip p.hastags-tooltip-list {
  font-weight: 400;
}
.category-tooltip .timeline-data-content {
  display: flex;
}
.category-tooltip .timeline-data-content > div {
  padding-right: 30px;
}
.category-tooltip span {
  font-size: 14px;
  color: #96979f;
}

.mentions-tooltip {
  position: fixed !important;
  background: #1c1b29;
  border-radius: 4px;
  padding: 16px;
  padding-top: 10px;
  min-width: 200px;
}
.mentions-tooltip strong {
  display: inline-block;
  width: 100%;
  margin: 5px 0 6px;
  font-weight: 700;
  font-size: 18px;
}
.mentions-tooltip p {
  margin-top: 0;
  color: #96979f;
}
.mentions-tooltip a {
  display: inline-block;
}
.mentions-tooltip a.instagram-link:before {
  top: 2px;
  left: 0;
}
.mentions-tooltip a.detail-link:after {
  top: 2px;
  right: 0;
}

.trend-data .white-box .evaluation-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  padding-bottom: 18px;
}
.trend-data .white-box .evaluation-title h4 {
  padding: 0;
  padding-right: 10px;
  margin: 0;
}
.trend-data .white-box.full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: auto;
}
.trend-data .white-box.full .date-range-wrap {
  max-width: 320px;
}
.trend-data .white-box.full #followers-data {
  overflow: auto;
}
.trend-data .white-box.full #followers-data svg {
  width: 1500px;
}
.trend-data .white-box.full #mentions-data {
  overflow: auto;
}
.trend-data .white-box.full #mentions-data svg {
  width: 1500px;
}
.trend-data .white-box.full #posts-data {
  overflow: auto;
}
.trend-data .white-box.full #posts-data svg {
  width: 1500px;
}

.full-size-button-eval {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url("/frontend/img/icon/i-full-size.svg") center center no-repeat;
  background-size: 28px auto;
}

.posts-tooltip-wrap {
  position: fixed;
  top: 0;
  left: 540px;
  background: #1c1b29;
  color: #fff;
  border-radius: 4px;
  padding: 16px;
  max-width: 420px;
  display: none;
  z-index: 10;
}
.posts-tooltip-wrap p {
  color: #fff;
  margin: 0;
}
.posts-tooltip-wrap.show {
  display: block;
}

.brands-tooltip-wrap {
  position: fixed;
  top: 0;
  left: 540px;
  background: #1c1b29;
  color: #fff;
  border-radius: 4px;
  padding: 16px;
  padding-top: 10px;
  max-width: 420px;
  display: none;
  z-index: 10;
}
.brands-tooltip-wrap p {
  color: #fff;
  margin: 0;
}
.brands-tooltip-wrap.show {
  display: block;
}
.brands-tooltip-wrap:hover {
  display: block;
}
.brands-tooltip-wrap strong {
  display: inline-block;
  width: 100%;
  margin: 5px 0 6px;
  font-weight: 700;
  font-size: 18px;
}
.brands-tooltip-wrap a {
  display: inline-block;
}
.brands-tooltip-wrap a.instagram-link:before {
  top: 2px;
  left: 0;
}
.brands-tooltip-wrap a.detail-link:after {
  top: 2px;
  right: 0;
}

.multiselect {
  min-height: 36px;
}
.multiselect::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 34px;
  position: absolute;
  top: 1px;
  right: 1px;
  background: linear-gradient(270deg, #ffffff 43.38%, rgba(255, 255, 255, 0) 100%);
  border-radius: 8px;
}
.multiselect .multiselect__input {
  font-family: "CeraPro", sans-serif;
  height: 20px;
  font-size: 14px;
  border: 0;
  padding-left: 0 !important;
  top: 2px;
}
.multiselect .multiselect__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
.multiselect .multiselect__input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
.multiselect .multiselect__input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
.multiselect .multiselect__placeholder {
  font-family: "CeraPro", sans-serif;
  font-size: 14px;
  border-color: #96979f;
  margin-bottom: 7px;
  padding-top: 3px;
}
.multiselect .multiselect__select {
  z-index: 1;
}
.multiselect .multiselect__tags {
  padding: 6px 20px 0 8px;
  min-height: 36px;
}
.multiselect .multiselect__tags .multiselect__tag {
  background: #696b76;
  border-radius: 4px;
  min-width: 85px;
}
.multiselect .multiselect__tags .multiselect__tag .multiselect__tag-icon::after {
  color: #fff;
}
.multiselect .multiselect__tags .multiselect__tag .multiselect__tag-icon:hover {
  background: #4a4c53;
}
.multiselect .multiselect__tags .multiselect__tags-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.post-activation-select select,
.post-collaboration-select select {
  font-size: 14px;
  padding-left: 8px;
}

.instagram-section .instagram-input .input-wrap label input {
  color: #1c1b29;
}

.category-wrap {
  position: relative;
}

.filter-container .filter-item .instagram-select .multiselect::after {
  display: none;
}
.filter-container .filter-item .instagram-select .multiselect__spinner {
  height: 34px;
  z-index: -1;
}
.filter-container .filter-item .instagram-select .multiselect__content-wrapper {
  width: 130%;
  font-size: 0;
  border: 0;
}
.filter-container .filter-item .instagram-select .multiselect__content-wrapper .multiselect__content {
  overflow: auto;
  max-height: 300px;
  border: 1px solid #e8e8e8;
}
.filter-container .filter-item .instagram-select .multiselect__content-wrapper .multiselect__content[style="display: block;"] {
  border: 0;
}
.filter-container .filter-item .instagram-select .multiselect__select {
  height: 34px;
}
.filter-container .filter-item .instagram-select .multiselect__tags {
  border: 1px solid #e1e1e4;
  border-radius: 4px;
}
.filter-container .filter-item .instagram-select .multiselect__tags .multiselect__tags-wrap {
  overflow: auto;
  flex-wrap: wrap;
}
.filter-container .filter-item .instagram-select .multiselect__tags .multiselect__placeholder {
  color: #96979f;
}
.filter-container .filter-item .instagram-select .multiselect__tags input {
  border: 0;
  padding-left: 0 !important;
  top: 2px;
}
.filter-container .filter-item .instagram-select .multiselect__tags input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
.filter-container .filter-item .instagram-select .multiselect__tags input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
.filter-container .filter-item .instagram-select .multiselect__tags input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
#app .content-container .filter-container .filter-item input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
#app .content-container .filter-container .filter-item input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}
#app .content-container .filter-container .filter-item input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #96979f;
  opacity: 1;
}

.product.p-influence.p-surveys .plan-table-wrap .plan-row .plan-col {
  flex: 0 0 20%;
  max-width: 20%;
}
.product.p-influence.p-surveys .save-select label select {
  padding-left: 12px;
}
.product.p-influence.p-surveys .save-select label::before {
  display: none !important;
}
.product.p-influence.p-surveys .credit .plan-table-wrap .table-wrap {
  min-width: auto;
  max-width: 700px;
  margin: 0 auto;
}
.product.p-influence.p-surveys .credit .plan-table-wrap .table-wrap .plan-row .plan-col {
  flex: 0 0 50%;
  max-width: 50%;
}
.product.p-influence.p-surveys .save-wrap {
  display: flex;
  align-items: flex-end;
}
.product.p-influence.p-surveys .save-wrap .save-select {
  width: 100%;
}

.icon-platform-wrap {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.search-radio-wrap {
  padding: 16px 16px 8px 16px;
}

.search-radio-wrp {
  display: flex;
  align-items: center;
  background: #E1E1E4;
  border-radius: 8px;
  padding: 2px;
}
.search-radio-wrp label {
  margin: 0 !important;
}
.search-radio-wrp label input {
  display: none;
}
.search-radio-wrp label input:checked + span {
  color: #00a3b8;
  background: #fff;
}
.search-radio-wrp label span {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: #696B76;
  cursor: pointer;
}

.plan.credit .plan-table-wrap .plan-row .plan-col .save-wrap {
  max-width: 100%;
}
.plan.credit .plan-table-wrap .plan-row .plan-col .save-wrap .save-select {
  border-right: 1px solid #e1e1e4;
}

.product.p-influence.p-surveys .plan-table-wrap.table-sk .plan-col-sk {
  display: flex;
}
.product.p-influence.p-surveys .plan-table-wrap.table-cz .plan-col-sk,
.product.p-influence.p-surveys .plan-table-wrap.table-sk .plan-col-cz {
  display: none;
}
.product.p-influence.p-surveys .plan-table-wrap.table-cz .plan-col-cz {
  display: flex;
}

.partners-container {
  width: 1180px;
  overflow: hidden;
  position: relative;
}

.instagram-input .loading {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  height: 50%;
  transform: translate(-10px, -50%);
  pointer-events: none;
}

.instagram-input.is-loading .loading {
  display: flex;
}

.ch2 .ch2-container {
  font-family: "CeraPro", sans-serif;
}
.ch2 .ch2-container .ch2-settings {
  overflow: hidden !important;
  border-radius: 6px;
}
.ch2 .ch2-container .ch2-settings .ch2-btn-secondary,
.ch2 .ch2-container .ch2-settings .ch2-btn-primary {
  font-size: 14px !important;
  font-weight: 700;
  font-family: "ThreeSix", sans-serif;
  border-radius: 6px;
  background-color: #263442 !important;
}
.ch2 .ch2-container .ch2-settings .ch2-btn-secondary:hover,
.ch2 .ch2-container .ch2-settings .ch2-btn-primary:hover {
  box-shadow: none !important;
  background-color: #000 !important;
}
.ch2 .ch2-container .ch2-settings .ch2-btn-primary {
  font-size: 16px !important;
}
.ch2 .ch2-dialog-actions .ch2-btn {
  width: auto;
  font-size: 16px !important;
  font-weight: 700;
  font-family: "ThreeSix", sans-serif;
  border-radius: 6px;
}
.ch2 .ch2-dialog-actions .ch2-btn:hover {
  box-shadow: none !important;
}
.ch2 .ch2-dialog-actions .ch2-btn:hover.ch2-btn-text {
  background-color: #cccccc !important;
}
.ch2 .ch2-dialog-actions .ch2-btn:hover.ch2-btn-primary {
  background-color: #000 !important;
}
.ch2 .ch2-dialog-actions .ch2-btn.ch2-btn-text {
  background-color: #E1E1E4 !important;
  text-decoration: none;
}
.ch2 .ch2-dialog-actions .ch2-btn.ch2-btn-primary {
  background-color: #263442 !important;
}
.ch2 .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright {
  width: 400px;
  border-radius: 8px;
  box-sizing: border-box !important;
  padding: 24px !important;
}
.ch2 .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright .ch2-dialog-close {
  display: none !important;
}
.ch2 .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright .ch2-dialog-content #ch2-dialog-title {
  font-size: 18px;
}
.ch2 .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright .ch2-dialog-content #ch2-dialog-title strong {
  font-size: 18px;
}
.ch2 .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright .ch2-dialog-content #ch2-dialog-title ~ p {
  display: none;
}
.ch2 .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright .ch2-dialog-actions {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.ch2 .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright .ch2-dialog-actions .ch2-btn.ch2-allow-all-btn {
  margin-right: 10px;
}

.ch2-icon .ch2-open-settings-btn {
  display: flex;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 60px !important;
}
.ch2-icon .ch2-open-settings-btn svg {
  display: none !important;
}
.ch2-icon .ch2-open-settings-btn:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.ch2-icon .ch2-open-settings-btn::before {
  content: "";
  display: inline-block;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  background: url("/frontend/img/icon/i-cookies.svg") center left no-repeat;
  background-size: auto 56px;
  margin-right: 12px;
}

@media only screen and (max-width: 600px) {
  .ch2 .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright {
    width: calc(100% - 50px);
    max-width: 400px;
  }
  .ch2 .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright .ch2-dialog-actions {
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 480px) {
  .ch2 .ch2-icon {
    left: 10px;
    bottom: 10px;
  }
  .ch2 .ch2-icon .ch2-open-settings-btn {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 40px !important;
  }
  .ch2 .ch2-icon .ch2-open-settings-btn svg {
    display: none !important;
  }
  .ch2 .ch2-icon .ch2-open-settings-btn:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  }
  .ch2 .ch2-icon .ch2-open-settings-btn::before {
    content: "";
    display: inline-block;
    flex: 0 0 41px;
    width: 41px;
    height: 41px;
    background: url("/frontend/img/icon/i-cookies.svg") center left no-repeat;
    background-size: auto 41px;
    margin-right: 12px;
  }
}
.settings {
  background: #f8f8f8;
}
.settings .top {
  padding-top: 135px !important;
  min-height: auto !important;
}
.settings .top h1 {
  font-size: 56px;
  text-align: left;
  margin: 10px 0 45px;
}
.settings .settings-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  margin-top: calc(-8% + 20px);
}
.settings .settings-wrap h1 {
  padding: 40px 0;
}
.settings .settings-wrap h2 {
  font-size: 32px;
  margin-top: 0;
}
.settings .settings-wrap h4 {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.settings .settings-wrap h4.title-border {
  border-bottom: 1px solid #ccc;
}
.settings .settings-wrap h5 {
  font-size: 18px;
  margin-top: 0;
}
.settings .settings-wrap .bg-gray {
  max-width: 225px;
  margin-left: auto;
  padding: 16px;
}
.settings .settings-wrap .bg-gray p {
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 400;
  color: #696b76;
  margin: 0;
}
.settings .settings-wrap .form-wrap {
  margin-bottom: 15px;
}
.settings .settings-wrap .form-wrap span {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #696b76;
}
.settings .settings-wrap .form-wrap input {
  font-size: 16px;
  padding: 8px 10px;
  border: 1px solid #96979f;
  border-radius: 4px;
}
.settings .settings-wrap .form-group {
  margin-bottom: 15px;
}
.settings .settings-wrap .form-group .form-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #696b76;
  padding-bottom: 8px;
}
.settings .settings-wrap .form-group .form-control {
  font-size: 16px;
  padding: 9px 10px;
  border-radius: 4px;
}
.settings .settings-wrap .bg-box {
  background: #ffffff;
  box-shadow: 0px 2px 8px rgba(105, 107, 118, 0.1);
  border-radius: 6px;
  padding: 24px;
}
.settings .settings-wrap .bg-box .button {
  border: 2px solid #73f1f4;
}
.settings .settings-wrap .container > .row {
  margin-right: -16px;
  margin-left: -16px;
}
.settings .settings-wrap .container > .row > .col-3, .settings .settings-wrap .container > .row > .col-4, .settings .settings-wrap .container > .row > .col-6, .settings .settings-wrap .container > .row > .col-8, .settings .settings-wrap .container > .row > .col-12 {
  padding-left: 16px;
  padding-right: 16px;
}
.settings .settings-wrap .row .col-3:first-child .bg-box {
  padding: 8px 0;
}
.settings .settings-wrap .row .col-3:first-child .bg-box ul {
  width: 100%;
}
.settings .settings-wrap .row .col-3:first-child .bg-box ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 16px;
  width: 100%;
}
.settings .settings-wrap .row .col-3:first-child .bg-box ul li a.active {
  background: #eafdfe;
  position: relative;
  padding-left: 45px;
}
.settings .settings-wrap .row .col-3:first-child .bg-box ul li a.active:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/frontend/img/icon/i-success-dark.svg") center center no-repeat;
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.settings .settings-wrap .row .col-3:first-child .bg-box ul li a:hover {
  background: #eafdfe;
}
.settings .settings-wrap .row .col-3:last-child .button {
  width: 100%;
  border: 2px solid #73f1f4;
}
.settings .button-white-wrap {
  padding: 24px;
}
.settings .button-white-wrap .button {
  background-color: #ffffff;
  border: 2px solid #ffffff !important;
  color: #00a3b8;
}
.settings .button-white-wrap .button:hover {
  background-color: #73f1f4;
  color: #1c1b29;
}

.plan {
  background-color: #f8f8f8;
}
.plan .top {
  padding-top: 135px !important;
  min-height: auto !important;
}
.plan .top h1 {
  font-size: 56px;
  margin: 8px auto 20px;
}
.plan .top h1 + p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 80px;
  color: #e1e1e4;
  max-width: 575px;
}
.plan .top.bg-gradient::before {
  background: radial-gradient(rgba(115, 241, 244, 0.2) 0%, rgba(0, 0, 0, 0) 72.6%), #1c1b29;
  background-position: top 100px center;
  background-repeat: no-repeat;
}
.plan .top + div > .container {
  margin-top: calc(-8% - 50px);
  position: relative;
  z-index: 1;
}
.plan.signpost .top h1 + p {
  margin-bottom: 10px;
  max-width: 750px;
}
.plan.signpost .bg-gray > .container {
  max-width: 1080px !important;
}
.plan.signpost .bg-gray > .container > .row {
  margin-left: -16px;
  margin-right: -16px;
}
.plan.signpost .bg-gray > .container > .row > .col-6 {
  padding-left: 16px;
  padding-right: 16px;
}
.plan.signpost .white-box {
  padding: 40px;
  padding-bottom: 112px;
  height: 100%;
  text-align: center;
  position: relative;
}
.plan.signpost .white-box .button-wrap {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  margin: auto;
}
.plan.signpost .white-box h3 {
  font-family: "ThreeSix", sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin: 20px 0 5px;
}
.plan.signpost .white-box h3 + p {
  font-size: 16px;
  line-height: 1.5em;
  color: #696b76;
  max-width: 390px;
  margin: 5px auto 40px;
}
.plan.signpost .white-box small {
  display: inline-block;
  font-size: 14px;
  margin-top: 12px;
  color: #696b76;
}
.plan.signpost .white-box .button {
  padding: 15px 32px 11px;
}
.plan.flat-price .top h1 + p {
  max-width: 750px;
  margin-bottom: 15px;
  margin-top: 25px;
}
.plan .white-box {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 2px 8px rgba(105, 107, 118, 0.1);
  border-radius: 16px;
}

.active-info {
  font-size: 16px;
  max-width: 575px;
  padding: 16px 24px;
  margin: 10px auto;
  background: #1c1b29;
  border-radius: 8px;
  margin-bottom: 100px;
}
.active-info a {
  color: #73f2f5;
}

.plan-table-wrap {
  margin-bottom: 50px;
  padding-top: 35px;
  overflow: auto;
  padding-bottom: 50px;
}
.plan-table-wrap .table-wrap {
  min-width: 964px;
  position: relative;
}
.flat-price .plan-table-wrap.table-monthly .plan-row .plan-col {
  flex: 0 0 25%;
  max-width: 25%;
  transition: all 0.3s ease;
}
.plan-table-wrap .yearly-data > div span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 8px auto 5px;
  color: #1c1b29;
  background: #73f2f5;
  border-radius: 4px;
  padding: 5px 8px;
}
.plan-table-wrap .yearly-data > div span.opacity-0 {
  opacity: 0;
}
.plan-table-wrap .plan-row {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  background: #f8f8f8;
}
.plan-table-wrap .plan-row:hover:not(:first-child):not(:last-child) .plan-col {
  background-color: #eafdfe !important;
}
.plan-table-wrap .plan-row:first-child {
  background: none;
}
.plan-table-wrap .plan-row:first-child .plan-col {
  padding: 0;
  flex-wrap: wrap;
}
.plan-table-wrap .plan-row:first-child .plan-col .plan-top {
  width: 100%;
  border-bottom: 1px solid #e1e1e4;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 24px 20px;
}
.plan-table-wrap .plan-row:first-child .plan-col .plan-bottom {
  text-align: center;
  padding: 22px 20px 23px;
}
.plan-table-wrap .plan-row:first-child .plan-col .plan-bottom strong {
  font-size: 32px;
}
.plan-table-wrap .plan-row:first-child .plan-col .plan-bottom p {
  font-size: 16px;
  color: #1c1b29;
  margin: 8px 0 3px;
}
.plan-table-wrap .plan-row:first-child .plan-col .plan-bottom small {
  font-size: 12px;
  color: #696b76;
}
.plan-table-wrap .plan-row:first-child .plan-col.plan-col-sk.is-custom {
  border-top-right-radius: 16px;
}
.plan-table-wrap .plan-row:first-child .plan-col.plan-col-sk.is-custom + div {
  border-top-left-radius: 16px;
}
.plan-table-wrap .plan-row:first-child .plan-col:not(:first-child) {
  background: #f8f8f8;
}
.plan-table-wrap .plan-row:first-child .plan-col:first-child {
  background: transparent;
  align-items: flex-start;
  padding-right: 16px;
  z-index: 1;
  border: 0;
}
.plan-table-wrap .plan-row:first-child .plan-col:last-child {
  border-top-right-radius: 16px;
}
.plan-table-wrap .plan-row:first-child .plan-col:nth-child(2) {
  border-top-left-radius: 16px;
}
.plan-table-wrap .plan-row:first-child .plan-col:nth-child(2), .plan-table-wrap .plan-row:first-child .plan-col:nth-child(10) {
  position: relative;
  margin-top: -20px;
  padding-top: 20px;
  background: #fff;
  border-top: 1px solid #73f2f5;
  border-top-left-radius: 16px !important;
  border-top-right-radius: 16px !important;
}
.plan-table-wrap .plan-row:first-child .plan-col:nth-child(2):before, .plan-table-wrap .plan-row:first-child .plan-col:nth-child(10):before {
  display: inline-block;
  width: 100%;
  height: 464px;
  box-shadow: 0px 2px 8px rgba(105, 107, 118, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 16px;
}
.plan-table-wrap .plan-row:first-child .plan-col:nth-child(2)::after, .plan-table-wrap .plan-row:first-child .plan-col:nth-child(10)::after {
  content: "Najpopulárnejší";
  display: inline-block;
  width: 122px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  background: #00a3b8;
  color: #fff;
  border-radius: 4px;
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  margin: auto;
}
.plan-table-wrap .plan-row:last-child .plan-col {
  background-color: #f8f8f8;
  padding-top: 24px;
  padding-bottom: 32px;
}
.plan-table-wrap .plan-row:last-child .plan-col:first-child {
  background-color: #f8f8f8 !important;
}
.plan-table-wrap .plan-row:last-child .plan-col:nth-child(2), .plan-table-wrap .plan-row:last-child .plan-col:nth-child(10) {
  padding-bottom: 32px;
  background-color: #fff !important;
  border-bottom: 1px solid #73f2f5;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.plan-table-wrap .plan-row:nth-child(2n) {
  background-color: #f1f1f2;
}
.plan-table-wrap .plan-row:nth-child(2n) .plan-col:first-child {
  background-color: #f1f1f2;
}
.plan-table-wrap .plan-row:nth-child(2n) .plan-col:nth-child(2), .plan-table-wrap .plan-row:nth-child(2n) .plan-col:nth-child(10) {
  background-color: #f8f8f8;
}
.plan-table-wrap .plan-row .plan-col {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 12px 24px;
  border-left: 1px solid #e1e1e4;
}
.plan-table-wrap .plan-row .plan-col .save-wrap {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.plan-table-wrap .plan-row .plan-col .save-box {
  background: #1c1b29;
  border-radius: 16px;
  width: 100%;
  padding: 24px;
  text-align: center;
}
.plan-table-wrap .plan-row .plan-col .save-box h4 {
  color: #73f2f5;
  font-size: 32px;
  margin: 0 auto 10px;
}
.plan-table-wrap .plan-row .plan-col .save-box p {
  font-size: 16px;
  color: #fff;
  margin: 12px 0 20px;
}
.plan-table-wrap .plan-row .plan-col .save-box .switch-buttons {
  display: flex;
  border: 1px solid #73f2f5;
  border-radius: 8px;
}
.plan-table-wrap .plan-row .plan-col .save-box .switch-buttons a {
  display: inline-block;
  font-family: "ThreeSix", sans-serif;
  font-weight: 700;
  width: 50%;
  color: #73f2f5;
  padding: 7px 8px 5px;
  border-radius: 6px;
}
.plan-table-wrap .plan-row .plan-col .save-box .switch-buttons a.active {
  background-color: #73f2f5;
  color: #1c1b29;
}
.flat-price .plan-table-wrap .plan-row .plan-col {
  flex: 0 0 20%;
  max-width: 20%;
}
.plan-table-wrap .plan-row .plan-col .button {
  width: 100%;
  padding: 13px 12px;
}
.plan-table-wrap .plan-row .plan-col span.i-success {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/frontend/img/icon/i-success-plan.svg") center center no-repeat;
  background-size: 24px auto;
}
.plan-table-wrap .plan-row .plan-col span.i-fail {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/frontend/img/icon/i-fail-plan.svg") center center no-repeat;
  background-size: 24px auto;
}
.plan-table-wrap .plan-row .plan-col span {
  text-align: center;
}
.plan-table-wrap .plan-row .plan-col:first-child {
  border-left: 0;
  justify-content: start;
  background-color: #f8f8f8;
  border-right: 1px solid #e1e1e4;
  margin-right: -1px;
}
.plan-table-wrap .plan-row .plan-col:first-child span {
  text-align: left;
}
.plan-table-wrap .plan-row .plan-col:nth-child(3) {
  border-right: 0;
}
.plan-table-wrap .plan-row .plan-col:nth-child(2), .plan-table-wrap .plan-row .plan-col:nth-child(10) {
  border-left: 1px solid #73f2f5;
  border-right: 1px solid #73f2f5;
  background-color: #fff;
}

.plan-table-wrap .plan-row:last-child .plan-col:first-child {
  border-color: #f8f8f8;
}

.plan-table-wrap .plan-row:last-child .plan-col:nth-child(3) {
  border-color: #f8f8f8;
}

.plan-table-wrap .plan-row:last-child {
  background-color: #f8f8f8;
}

.plan-table-dialog-wrap .table-wrap {
  overflow: auto;
}
.plan-table-dialog-wrap .plan-row {
  display: flex;
  min-width: 535px;
  justify-content: space-between;
}
.plan-table-dialog-wrap .plan-row:nth-child(2n) {
  background: #11101d;
}
.plan-table-dialog-wrap .plan-row .plan-col {
  display: flex;
  align-items: center;
  color: #e1e1e4;
  flex: 1 1 auto;
  padding: 12px 16px;
}
.plan-table-dialog-wrap .plan-row .plan-col:nth-child(2) {
  flex: 0 0 130px;
  max-width: 130px;
}
.plan-table-dialog-wrap .plan-row .plan-col:nth-child(3) {
  flex: 0 0 130px;
  max-width: 130px;
}
.plan-table-dialog-wrap .plan-row .plan-col span.i-success {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/frontend/img/icon/i-success-plan.svg") center center no-repeat;
  background-size: 24px auto;
}
.plan-table-dialog-wrap .plan-row .plan-col span.i-fail {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/frontend/img/icon/i-fail-plan.svg") center center no-repeat;
  background-size: 24px auto;
}
.settings .settings-wrap .plan-table-dialog-wrap .button-wrap {
  padding-top: 40px;
}
.settings .settings-wrap .plan-table-dialog-wrap .button-wrap .button {
  background: #1c1b29;
  color: #73f2f5;
  border-color: #1c1b29;
}
.settings .settings-wrap .plan-table-dialog-wrap .button-wrap .button:hover {
  background: #73f2f5;
  color: #1c1b29;
  border-color: #73f2f5;
}

.credit .plan-table-wrap .plan-row:first-child .plan-col:last-child {
  position: relative;
  margin-top: -20px;
  padding-top: 20px;
  background: #fff;
  border-top: 1px solid #73f2f5;
  border-left: 1px solid #73f2f5;
  border-right: 1px solid #73f2f5;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.credit .plan-table-wrap .plan-row:nth-child(2n) .plan-col:last-child {
  background-color: #f8f8f8;
}
.credit .plan-table-wrap .plan-row .plan-col:last-child {
  border-left: 1px solid #73f2f5;
  border-right: 1px solid #73f2f5;
  background-color: #fff;
}
.credit .plan-table-wrap .plan-row:first-child .plan-col:last-child::after {
  content: "Najpopulárnejší";
  display: inline-block;
  width: 122px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  background: #00a3b8;
  color: #fff;
  border-radius: 4px;
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  margin: auto;
}
.credit .plan-table-wrap .plan-row:last-child .plan-col:last-child {
  padding-bottom: 32px;
  background-color: #fff !important;
  border-bottom: 1px solid #73f2f5;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.plan-col .save-select {
  padding: 24px 16px;
}
.plan-col .save-select select {
  border: 1px solid #96979F;
  border-radius: 4px;
}

body.confirmation {
  background: radial-gradient(140.25% 112.85% at 1% 99.24%, rgba(115, 241, 244, 0.2) 0%, rgba(0, 0, 0, 0) 72.6%), #1c1b29;
  background-position: center center;
  background-repeat: no-repeat;
}
body.confirmation .top {
  padding-bottom: 150px;
}
body.confirmation .top .img-wrap {
  padding-top: 20px;
}
body.confirmation .top h1 {
  font-size: 56px;
  line-height: 1.3em;
  max-width: 750px;
  margin: 30px auto 25px;
}
body.confirmation .top strong {
  font-size: 24px;
  font-family: "ThreeSix", sans-serif;
  color: #73f2f5;
}
body.confirmation .top p {
  font-size: 14px;
  color: #96979f;
  margin-top: 75px;
  margin-bottom: 10px;
  padding-bottom: 0;
}
body.confirmation .top a {
  color: #73f2f5;
  transition: all 0.3s ease;
}
body.confirmation .top a:hover {
  color: #00a3b8;
}

.credit .plan-table-wrap .plan-row:first-child .plan-col:first-child {
  padding-right: 0;
}

html.max-height {
  height: 100%;
}

.login-top h1 {
  font-weight: 800;
}

.login-wrap .h1-wrap {
  position: relative;
}
.login-wrap .h1-wrap::after {
  content: "";
  display: inline-block;
  width: 98px;
  height: 98px;
  background: url("/frontend/img/icon/icon-login.svg") center center no-repeat;
  background-size: 98px auto;
  position: absolute;
  top: -45px;
  right: 162px;
  z-index: 1;
}
.login-wrap .login-content {
  position: relative;
}
.login-wrap .login-content::after {
  content: "";
  display: inline-block;
  width: 112px;
  height: 97px;
  background: url("/frontend/img/icon/icon-login2.svg") center center no-repeat;
  background-size: 112px auto;
  position: absolute;
  top: 120px;
  left: 100px;
  z-index: 1;
}
.login-wrap header {
  position: absolute;
}
.login-wrap header .header-wrap .logo-wrap img {
  height: 40px;
}

.auth-wrap .login-top.register-top + .bg-gray .bg-box {
  margin-bottom: 0;
}

.login-wrap .auth-wrap .login-top.reset-password h1 {
  margin-bottom: 20px;
}
.login-wrap .auth-wrap .login-top.reset-password p {
  color: #e1e1e4;
  margin-bottom: 0;
}
.login-wrap .auth-wrap .login-top.reset-password p strong {
  color: #73f2f5;
}

@media only screen and (min-width: 2000px) {
  .login-wrap .auth-wrap .login-top + .bg-gray .bg-box {
    margin-top: -14%;
  }
}
@media only screen and (max-width: 1500px) {
  .login-top.register-top + .bg-gray .container {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .plan-table-wrap .plan-row .plan-col {
    font-size: 14px;
  }
  .plan-table-wrap .plan-row .plan-col .button {
    font-size: 15px;
  }

  .plan-table-wrap .plan-row .plan-col:first-child {
    position: sticky;
    left: 0;
  }
}
body.payment {
  background-color: #f8f8f8;
}
body.payment header,
body.payment footer {
  display: none !important;
}
body.payment .form-wrap {
  max-width: 692px;
}
body.payment .logo-wrap {
  padding: 40px 0 60px;
}
body.payment .form-group input {
  font-size: 16px;
}
body.payment .form-control {
  border-color: #696b76;
}
body.payment .form-control:focus {
  border-color: #696b76;
}
body.payment .white-box {
  position: sticky;
  top: 30px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0px 2px 8px rgba(105, 107, 118, 0.1);
  border-radius: 16px;
}
body.payment .white-box .data-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
body.payment .white-box .data-row p {
  font-size: 16px;
  color: #1c1b29;
  margin: 0;
}
body.payment .white-box .data-row strong {
  font-size: 16px;
}
body.payment .white-box .data-row.total-price {
  padding-top: 15px;
  padding-bottom: 17px;
  margin-top: 15px;
  border-top: 1px solid #e1e1e4;
}
body.payment .white-box .data-row.total-price p {
  font-size: 21px;
  color: #1c1b29;
  font-weight: 700;
}
body.payment .white-box .data-row.total-price strong {
  font-size: 21px;
}
body.payment .white-box .button-wrap .button {
  border: 2px solid #73f1f4;
  width: 100%;
}
body.payment form > .row {
  padding-bottom: 80px;
}
body.payment .form-group {
  padding-bottom: 16px;
  padding-right: 16px;
}
body.payment .form-group .form-label {
  display: inline-block;
  padding-bottom: 8px;
}
body.payment .form-group .form-control {
  border: 1px solid #e1e1e4;
  transition: all 0.3s ease;
  padding: 14px 12px;
}
body.payment .form-group .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 16px;
}
body.payment .form-group .form-control::-moz-placeholder {
  font-size: 16px;
}
body.payment .form-group .form-control::placeholder {
  font-size: 16px;
}
body.payment .form-group .form-control:focus {
  border: 1px solid #96979f;
}
body.payment .form-group select {
  font-size: 16px;
  padding: 0 12px;
  border: 1px solid #96979f;
  border-radius: 8px;
  height: 50px;
}

@media only screen and (max-width: 1023px) {
  .settings .settings-wrap > .container > .row > .col-3:first-child {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .settings .settings-wrap > .container > .row > .col-9 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .credit .plan-table-wrap .plan-row .plan-col .save-wrap {
    display: block;
    border-right: 1px solid #e1e1e4;
    margin-right: -1px;
    height: 85px;
    border-radius: 0;
  }

  .credit .plan-table-wrap .plan-row:first-child .plan-col:first-child {
    align-items: flex-end;
    border-radius: 0;
  }

  .login-top.top {
    padding-top: 100px;
  }

  .login-top.register-top + .bg-gray .container > .row > .col-8 {
    flex: 0 0 calc(100% - 300px);
    max-width: calc(100% - 300px);
  }

  .login-top.register-top + .bg-gray .container > .row > .col-4 {
    flex: 0 0 300px;
    max-width: 300px;
  }

  .login-top.register-top + .bg-gray .bg-box {
    padding: 30px !important;
  }
  .login-top.register-top + .bg-gray .bg-box p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
  }

  body.payment form > .row > .col-8 {
    flex: 0 0 calc(100% - 300px);
    max-width: calc(100% - 300px);
  }
  body.payment form > .row > .col-4 {
    flex: 0 0 300px;
    max-width: 300px;
  }
  body.payment form .form-wrap .col-4,
body.payment form .form-wrap .col-5,
body.payment form .form-wrap .col-6,
body.payment form .form-wrap .col-7,
body.payment form .form-wrap .col-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.payment .white-box .data-row p,
body.payment .white-box .data-row strong {
    font-size: 14px;
  }
  body.payment .white-box .data-row.total-price p,
body.payment .white-box .data-row.total-price strong {
    font-size: 16px;
  }
  body.payment .form-group input.form-control {
    font-size: 14px;
  }
  body.payment .form-group input.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-size: 14px;
  }
  body.payment .form-group input.form-control::-moz-placeholder {
    font-size: 14px;
  }
  body.payment .form-group input.form-control::placeholder {
    font-size: 14px;
  }
  body.payment .form-group select {
    font-size: 14px;
  }

  .pay-information > div {
    margin: 15px 15px;
  }

  .subscription-item {
    flex-wrap: wrap;
  }
  .subscription-item .seb-left-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .subscription-item .seb-left-content .sub-packet {
    padding: 20px 10px;
  }
  .subscription-item .sub-main-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .login-wrap .h1-wrap::after {
    display: none;
  }

  .login-wrap .login-content::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .plan.signpost .bg-gray > .container > .row > .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .active-info {
    font-size: 12px;
  }

  .plan .top h1 {
    font-size: 42px;
  }

  .plan .top h1 + p {
    font-size: 14px;
  }

  .active-info a {
    margin-left: 10px;
  }

  .plan.signpost .white-box h3 {
    font-size: 26px;
    line-height: 1.4em;
  }

  .plan.signpost .white-box h3 + p {
    font-size: 14px;
  }

  .settings .top h1 {
    font-size: 42px;
  }

  .settings .top h1 {
    margin-bottom: 80px;
  }

  .settings .settings-wrap {
    margin-top: calc(-8% - 20px);
  }

  .settings .settings-wrap > .container > .row > .col-3:first-child,
.settings .settings-wrap > .container > .row > .col-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .settings .settings-wrap > .container > .row > .col-9 {
    padding-top: 30px;
  }

  .login-top.register-top + .bg-gray .container > .row > .col-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .login-top.register-top + .bg-gray .container > .row > .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 60px;
  }
  .login-top.register-top + .bg-gray .container > .row > .col-4 .d-flex.justify-content-between.pt-4 {
    padding-top: 35px !important;
    padding-bottom: 45px;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
    margin: 0 auto;
  }

  .auth-wrap .login-top.register-top + .bg-gray .bg-box {
    margin-top: 0;
  }

  .pay-information {
    flex-wrap: wrap;
  }

  .pay-information + .d-flex {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 600px) {
  body.payment form > .row > .col-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body.payment form > .row > .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  body.payment form > .row {
    padding-bottom: 40px;
  }

  .billing-information {
    margin-top: 20px;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .plan .top h1 + p {
    margin-bottom: 80px !important;
  }

  .plan-table-wrap .plan-row .plan-col {
    font-size: 12px;
    padding: 12px 12px;
  }

  .plan-table-wrap .table-wrap {
    min-width: 520px;
  }

  .flat-price .plan-table-wrap .table-wrap {
    min-width: 720px;
  }

  .plan-table-wrap .plan-row .plan-col .button {
    font-size: 13px;
  }

  .plan .top + div > .container {
    padding: 0 15px !important;
  }

  .plan-table-wrap .plan-row .plan-col .save-box {
    padding: 15px;
  }
  .plan-table-wrap .plan-row .plan-col .save-box h4 {
    font-size: 20px;
  }
  .plan-table-wrap .plan-row .plan-col .save-box p {
    font-size: 12px;
  }
  .plan-table-wrap .plan-row .plan-col .save-box .switch-buttons {
    flex-wrap: wrap;
  }
  .plan-table-wrap .plan-row .plan-col .save-box .switch-buttons a {
    width: 100%;
  }

  .settings .settings-wrap .customer-settings .bg-gray {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .settings .settings-wrap .customer-settings .col-8,
.settings .settings-wrap .customer-settings .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .settings .settings-wrap .bg-gray {
    margin-left: 0;
  }

  .plan-table-wrap .plan-row:first-child .plan-col .plan-bottom strong {
    font-size: 24px;
  }
  .plan-table-wrap .plan-row:first-child .plan-col .plan-bottom p {
    margin-bottom: 15px;
  }

  .settings .settings-wrap h2 {
    font-size: 26px;
  }

  .settings-wrap h4 + form > .row {
    flex-direction: column-reverse;
  }

  .settings-wrap form > .row .col-6,
.settings-wrap form > .row .col-8,
.settings-wrap form > .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .settings .settings-wrap .bg-gray {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .plan.signpost .top h1 + p {
    margin-bottom: 30px !important;
  }

  .plan.signpost .white-box {
    padding: 20px;
  }
  .plan.signpost .white-box .img-wrap img {
    max-width: 40px;
  }
  .plan.signpost .white-box h3 {
    font-size: 20px;
    margin: 12px 0 8px;
  }
  .plan.signpost .white-box h3 + p {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .plan.signpost .white-box .button-wrap {
    position: static;
  }
  .plan.signpost .white-box .button {
    font-size: 14px;
    padding: 10px 24px 8px;
  }
  .plan.signpost .white-box small {
    font-size: 12px;
  }

  .plan .top {
    padding-top: 100px !important;
  }

  .plan.signpost .pb-5.pt-4 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .plan.signpost .bg-gray > .container > .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .plan.signpost .bg-gray > .container > .row > .col-6 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .settings .top {
    padding-top: 100px !important;
  }

  .settings .settings-wrap .row .col-3:first-child .bg-box ul li a {
    font-size: 14px;
  }

  .settings .settings-wrap .form-group .form-control {
    font-size: 14px;
  }

  .button {
    font-size: 16px;
    padding: 13px 28px 12px;
  }

  .credit .plan-table-wrap .plan-row .plan-col .save-wrap {
    height: 75px;
  }

  .login-top.top h1 {
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .auth-wrap .login-top + .bg-gray .bg-box {
    padding: 25px;
  }

  .auth-wrap a.link {
    font-size: 12px;
  }

  .auth-wrap .container {
    padding: 0 20px !important;
  }

  .login-top h1 {
    font-size: 36px;
  }

  .login-top.register-top + .bg-gray h2 {
    margin-top: 20px;
  }

  .login-top.register-top + .bg-gray .bg-box p {
    font-size: 14px;
    line-height: 1.5em;
  }

  .login-content > .d-flex.justify-content-between {
    flex-wrap: wrap;
    padding: 0;
    justify-content: center !important;
  }
  .login-content > .d-flex.justify-content-between a {
    width: 100%;
    text-align: center;
    padding: 5px 10px;
    margin-bottom: 5px;
  }
}
.table-instagram-filter-wrap {
  display: flex;
}
.table-instagram-filter-wrap .table-instagram-filter {
  flex: 0 0 270px;
  max-width: 270px;
  margin-right: 32px;
}
.table-instagram-filter-wrap .table-instagram-filter .insta-filter-head {
  padding: 14px 16px;
}
.table-instagram-filter-wrap .table-instagram-wrap {
  flex: 0 0 calc(100% - 302px);
  max-width: calc(100% - 302px);
}
.table-instagram-filter-wrap .table-instagram-wrap .followers-tag {
  font-size: 14px;
  background-color: #00a3b8;
  border-radius: 4px;
  color: #fff;
  min-width: 60px;
  text-align: center;
  padding: 4px 10px;
  font-weight: 700;
  text-align: center;
}
.table-instagram-filter-wrap .table-instagram-wrap .locking i {
  display: inline-block;
  width: 30px;
  height: 20px;
  background: url("/frontend/img/icon/i-lock-gray.svg") center center no-repeat;
  background-size: 16px auto;
}
.table-instagram-filter-wrap .insta-filter-head {
  padding: 12px 16px;
  background: #E1E1E4;
  border-bottom: 1px solid #96979F;
  border-radius: 6px 6px 0px 0px;
  display: flex;
  justify-content: space-between;
}
.table-instagram-filter-wrap .insta-filter-head h3 {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
.table-instagram-filter-wrap .insta-filter-head .button.small {
  padding: 6px 12px 4px;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

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

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-button-next, .swiper-button-prev {
  color: #00A3B8;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 24px;
  font-weight: bolder;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-button-prev {
  left: -70px;
}

.swiper-button-next {
  right: -70px;
}

.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.container-fluid, .container-xl {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container-xl {
    max-width: 1200px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
/*!
 * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2017 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */
.instagram-select select.bs-select-hidden,
.instagram-select select.selectpicker {
  display: none !important;
}
.instagram-select .bootstrap-select {
  width: 220px\9 ;
}
.instagram-select .bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}
.instagram-select .bootstrap-select > .dropdown-toggle.bs-placeholder,
.instagram-select .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.instagram-select .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.instagram-select .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #999;
}
.instagram-select .bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}
.instagram-select .bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}
.instagram-select .error .bootstrap-select .dropdown-toggle,
.instagram-select .has-error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.instagram-select .bootstrap-select.fit-width {
  width: auto !important;
}
.instagram-select .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 220px;
}
.instagram-select .bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.instagram-select .bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.instagram-select .bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}
.instagram-select .bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.instagram-select .bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.instagram-select .bootstrap-select.btn-group:not(.input-group-btn),
.instagram-select .bootstrap-select.btn-group[class*=col-] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.instagram-select .bootstrap-select.btn-group.dropdown-menu-right,
.instagram-select .bootstrap-select.btn-group[class*=col-].dropdown-menu-right,
.instagram-select .row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
  float: right;
}
.instagram-select .form-group .bootstrap-select.btn-group,
.instagram-select .form-horizontal .bootstrap-select.btn-group,
.instagram-select .form-inline .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.instagram-select .form-group-lg .bootstrap-select.btn-group.form-control,
.instagram-select .form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.instagram-select .form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.instagram-select .form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.instagram-select .form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.instagram-select .bootstrap-select.btn-group.disabled,
.instagram-select .bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}
.instagram-select .bootstrap-select.btn-group.disabled:focus,
.instagram-select .bootstrap-select.btn-group > .disabled:focus {
  outline: 0 !important;
}
.instagram-select .bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}
.instagram-select .bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}
.instagram-select .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.instagram-select .bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 14px;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.instagram-select .bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
  width: 100%;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  box-sizing: border-box;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  box-sizing: border-box;
}
.instagram-select .bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.instagram-select .bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.instagram-select .bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.instagram-select .bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.instagram-select .bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.instagram-select .bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.instagram-select .bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.instagram-select .bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.instagram-select .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.instagram-select .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}
.instagram-select .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.instagram-select .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.instagram-select .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after,
.instagram-select .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
  display: block;
}
.instagram-select .bs-actionsbox,
.instagram-select .bs-donebutton,
.instagram-select .bs-searchbox {
  padding: 4px 8px;
}
.instagram-select .bs-actionsbox {
  width: 100%;
  box-sizing: border-box;
}
.instagram-select .bs-actionsbox .btn-group button {
  width: 50%;
}
.instagram-select .bs-donebutton {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.instagram-select .bs-donebutton .btn-group button {
  width: 100%;
}
.instagram-select .bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.instagram-select .bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
.instagram-select .dropup,
.instagram-select .dropdown {
  position: relative;
}
.instagram-select .dropdown-toggle:focus {
  outline: 0;
}
.instagram-select .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.instagram-select .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.instagram-select .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.instagram-select .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.instagram-select .dropdown-menu > li > a:hover,
.instagram-select .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.instagram-select .dropdown-menu > .disabled > a,
.instagram-select .dropdown-menu > .disabled > a:hover,
.instagram-select .dropdown-menu > .disabled > a:focus {
  color: #777;
}
.instagram-select .dropdown-menu > .disabled > a:hover,
.instagram-select .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.instagram-select .open > .dropdown-menu {
  display: block;
}
.instagram-select .open > a {
  outline: 0;
}
.instagram-select .dropdown-menu-right {
  right: 0;
  left: auto;
}
.instagram-select .dropdown-menu-left {
  right: auto;
  left: 0;
}
.instagram-select .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.instagram-select .dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.instagram-select .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.instagram-select .dropup .caret,
.instagram-select .navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9 ;
}
.instagram-select .dropup .dropdown-menu,
.instagram-select .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .instagram-select .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .instagram-select .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.instagram-select .btn-group,
.instagram-select .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.instagram-select .btn-group > .btn,
.instagram-select .btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.instagram-select .btn-group > .btn:hover,
.instagram-select .btn-group-vertical > .btn:hover,
.instagram-select .btn-group > .btn:focus,
.instagram-select .btn-group-vertical > .btn:focus,
.instagram-select .btn-group > .btn:active,
.instagram-select .btn-group-vertical > .btn:active,
.instagram-select .btn-group > .btn.active,
.instagram-select .btn-group-vertical > .btn.active {
  z-index: 2;
}
.instagram-select .btn-group .btn + .btn,
.instagram-select .btn-group .btn + .btn-group,
.instagram-select .btn-group .btn-group + .btn,
.instagram-select .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.instagram-select .btn-toolbar {
  margin-left: -5px;
}
.instagram-select .btn-toolbar .btn,
.instagram-select .btn-toolbar .btn-group,
.instagram-select .btn-toolbar .input-group {
  float: left;
}
.instagram-select .btn-toolbar > .btn,
.instagram-select .btn-toolbar > .btn-group,
.instagram-select .btn-toolbar > .input-group {
  margin-left: 5px;
}
.instagram-select .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.instagram-select .btn-group > .btn:first-child {
  margin-left: 0;
}
.instagram-select .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.instagram-select .btn-group > .btn:last-child:not(:first-child),
.instagram-select .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.instagram-select .btn-group > .btn-group {
  float: left;
}
.instagram-select .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.instagram-select .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.instagram-select .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.instagram-select .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.instagram-select .btn-group .dropdown-toggle:active,
.instagram-select .btn-group.open .dropdown-toggle {
  outline: 0;
}
.instagram-select .btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.instagram-select .btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.instagram-select .btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.instagram-select .btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.instagram-select .btn .caret {
  margin-left: 0;
}
.instagram-select .btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.instagram-select .dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.instagram-select .btn-group-vertical > .btn,
.instagram-select .btn-group-vertical > .btn-group,
.instagram-select .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.instagram-select .btn-group-vertical > .btn-group > .btn {
  float: none;
}
.instagram-select .btn-group-vertical > .btn + .btn,
.instagram-select .btn-group-vertical > .btn + .btn-group,
.instagram-select .btn-group-vertical > .btn-group + .btn,
.instagram-select .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.instagram-select .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.instagram-select .btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.instagram-select .btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.instagram-select .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.instagram-select .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.instagram-select .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.instagram-select .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.instagram-select .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.instagram-select .btn-group-justified > .btn,
.instagram-select .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.instagram-select .btn-group-justified > .btn-group .btn {
  width: 100%;
}
.instagram-select .btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
.instagram-select [data-toggle=buttons] > .btn input[type=radio],
.instagram-select [data-toggle=buttons] > .btn-group > .btn input[type=radio],
.instagram-select [data-toggle=buttons] > .btn input[type=checkbox],
.instagram-select [data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.instagram-select .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.instagram-select .input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.instagram-select .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.instagram-select .input-group .form-control:focus {
  z-index: 3;
}
.instagram-select .input-group-lg > .form-control,
.instagram-select .input-group-lg > .input-group-addon,
.instagram-select .input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.instagram-select select.input-group-lg > .form-control,
.instagram-select select.input-group-lg > .input-group-addon,
.instagram-select select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
.instagram-select textarea.input-group-lg > .form-control,
.instagram-select textarea.input-group-lg > .input-group-addon,
.instagram-select textarea.input-group-lg > .input-group-btn > .btn,
.instagram-select select[multiple].input-group-lg > .form-control,
.instagram-select select[multiple].input-group-lg > .input-group-addon,
.instagram-select select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.instagram-select .input-group-sm > .form-control,
.instagram-select .input-group-sm > .input-group-addon,
.instagram-select .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.instagram-select select.input-group-sm > .form-control,
.instagram-select select.input-group-sm > .input-group-addon,
.instagram-select select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
.instagram-select textarea.input-group-sm > .form-control,
.instagram-select textarea.input-group-sm > .input-group-addon,
.instagram-select textarea.input-group-sm > .input-group-btn > .btn,
.instagram-select select[multiple].input-group-sm > .form-control,
.instagram-select select[multiple].input-group-sm > .input-group-addon,
.instagram-select select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.instagram-select .input-group-addon,
.instagram-select .input-group-btn,
.instagram-select .input-group .form-control {
  display: table-cell;
}
.instagram-select .input-group-addon:not(:first-child):not(:last-child),
.instagram-select .input-group-btn:not(:first-child):not(:last-child),
.instagram-select .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.instagram-select .input-group-addon,
.instagram-select .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.instagram-select .input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.instagram-select .input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.instagram-select .input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.instagram-select .input-group-addon input[type=radio],
.instagram-select .input-group-addon input[type=checkbox] {
  margin-top: 0;
}
.instagram-select .input-group .form-control:first-child,
.instagram-select .input-group-addon:first-child,
.instagram-select .input-group-btn:first-child > .btn,
.instagram-select .input-group-btn:first-child > .btn-group > .btn,
.instagram-select .input-group-btn:first-child > .dropdown-toggle,
.instagram-select .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.instagram-select .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.instagram-select .input-group-addon:first-child {
  border-right: 0;
}
.instagram-select .input-group .form-control:last-child,
.instagram-select .input-group-addon:last-child,
.instagram-select .input-group-btn:last-child > .btn,
.instagram-select .input-group-btn:last-child > .btn-group > .btn,
.instagram-select .input-group-btn:last-child > .dropdown-toggle,
.instagram-select .input-group-btn:first-child > .btn:not(:first-child),
.instagram-select .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.instagram-select .input-group-addon:last-child {
  border-left: 0;
}
.instagram-select .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.instagram-select .input-group-btn > .btn {
  position: relative;
}
.instagram-select .input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.instagram-select .input-group-btn > .btn:hover,
.instagram-select .input-group-btn > .btn:focus,
.instagram-select .input-group-btn > .btn:active {
  z-index: 2;
}
.instagram-select .input-group-btn:first-child > .btn,
.instagram-select .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.instagram-select .input-group-btn:last-child > .btn,
.instagram-select .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.instagram-select .btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid #E1E1E4;
  padding: 6px 12px 3px;
  padding-right: 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border-radius: 4px;
}
.instagram-select .bs-searchbox .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.instagram-select .caret {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("/frontend/img/icon/i-select-teal.svg") center center no-repeat;
  background-size: 10px auto;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li a {
  padding-right: 20px;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li a:hover {
  background-color: #e4f7f8;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li.hidden {
  display: none;
}
.instagram-select .bootstrap-select.btn-group .dropdown-menu li.selected a {
  background-image: url("/frontend/img/icon/i-success-dark.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px auto;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.border {
  border: 1px solid #dbe1e8 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dbe1e8 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right {
  border-right: 1px solid #dbe1e8 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dbe1e8 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left {
  border-left: 1px solid #dbe1e8 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mr-n1 {
  margin-right: -0.25rem !important;
}

.mr-n2 {
  margin-right: -0.5rem !important;
}

.mr-n3 {
  margin-right: -1rem !important;
}

.mr-n4 {
  margin-right: -1.5rem !important;
}

.mr-n5 {
  margin-right: -3rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.ml-n1 {
  margin-left: -0.25rem !important;
}

.ml-n2 {
  margin-left: -0.5rem !important;
}

.ml-n3 {
  margin-left: -1rem !important;
}

.ml-n4 {
  margin-left: -1.5rem !important;
}

.ml-n5 {
  margin-left: -3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #007bff !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.font-italic {
  font-style: italic !important;
}

.text-break {
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.font-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-0 {
    margin-right: 0 !important;
  }

  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mr-sm-3 {
    margin-right: 1rem !important;
  }

  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mr-sm-5 {
    margin-right: 3rem !important;
  }

  .mr-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-0 {
    margin-left: 0 !important;
  }

  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ml-sm-3 {
    margin-left: 1rem !important;
  }

  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ml-sm-5 {
    margin-left: 3rem !important;
  }

  .ml-sm-auto {
    margin-left: auto !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-sm-n3 {
    margin-top: -1rem !important;
  }

  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mr-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mr-sm-n3 {
    margin-right: -1rem !important;
  }

  .mr-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mr-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .ml-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .ml-sm-n3 {
    margin-left: -1rem !important;
  }

  .ml-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .ml-sm-n5 {
    margin-left: -3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-0 {
    padding-right: 0 !important;
  }

  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pr-sm-3 {
    padding-right: 1rem !important;
  }

  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pr-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-0 {
    padding-left: 0 !important;
  }

  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }

  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }

  .pl-sm-3 {
    padding-left: 1rem !important;
  }

  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }

  .pl-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }

  .text-sm-justify {
    text-align: justify !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .mr-md-0 {
    margin-right: 0 !important;
  }

  .mr-md-1 {
    margin-right: 0.25rem !important;
  }

  .mr-md-2 {
    margin-right: 0.5rem !important;
  }

  .mr-md-3 {
    margin-right: 1rem !important;
  }

  .mr-md-4 {
    margin-right: 1.5rem !important;
  }

  .mr-md-5 {
    margin-right: 3rem !important;
  }

  .mr-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-0 {
    margin-left: 0 !important;
  }

  .ml-md-1 {
    margin-left: 0.25rem !important;
  }

  .ml-md-2 {
    margin-left: 0.5rem !important;
  }

  .ml-md-3 {
    margin-left: 1rem !important;
  }

  .ml-md-4 {
    margin-left: 1.5rem !important;
  }

  .ml-md-5 {
    margin-left: 3rem !important;
  }

  .ml-md-auto {
    margin-left: auto !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-md-n3 {
    margin-top: -1rem !important;
  }

  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mr-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mr-md-n3 {
    margin-right: -1rem !important;
  }

  .mr-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mr-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n1 {
    margin-left: -0.25rem !important;
  }

  .ml-md-n2 {
    margin-left: -0.5rem !important;
  }

  .ml-md-n3 {
    margin-left: -1rem !important;
  }

  .ml-md-n4 {
    margin-left: -1.5rem !important;
  }

  .ml-md-n5 {
    margin-left: -3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-0 {
    padding-right: 0 !important;
  }

  .pr-md-1 {
    padding-right: 0.25rem !important;
  }

  .pr-md-2 {
    padding-right: 0.5rem !important;
  }

  .pr-md-3 {
    padding-right: 1rem !important;
  }

  .pr-md-4 {
    padding-right: 1.5rem !important;
  }

  .pr-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-0 {
    padding-left: 0 !important;
  }

  .pl-md-1 {
    padding-left: 0.25rem !important;
  }

  .pl-md-2 {
    padding-left: 0.5rem !important;
  }

  .pl-md-3 {
    padding-left: 1rem !important;
  }

  .pl-md-4 {
    padding-left: 1.5rem !important;
  }

  .pl-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .text-md-justify {
    text-align: justify !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-0 {
    margin-right: 0 !important;
  }

  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mr-lg-3 {
    margin-right: 1rem !important;
  }

  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mr-lg-5 {
    margin-right: 3rem !important;
  }

  .mr-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-0 {
    margin-left: 0 !important;
  }

  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ml-lg-3 {
    margin-left: 1rem !important;
  }

  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ml-lg-5 {
    margin-left: 3rem !important;
  }

  .ml-lg-auto {
    margin-left: auto !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-lg-n3 {
    margin-top: -1rem !important;
  }

  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mr-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mr-lg-n3 {
    margin-right: -1rem !important;
  }

  .mr-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mr-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .ml-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .ml-lg-n3 {
    margin-left: -1rem !important;
  }

  .ml-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .ml-lg-n5 {
    margin-left: -3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-0 {
    padding-right: 0 !important;
  }

  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pr-lg-3 {
    padding-right: 1rem !important;
  }

  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pr-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-0 {
    padding-left: 0 !important;
  }

  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }

  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }

  .pl-lg-3 {
    padding-left: 1rem !important;
  }

  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }

  .pl-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }

  .text-lg-justify {
    text-align: justify !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-0 {
    margin-right: 0 !important;
  }

  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mr-xl-3 {
    margin-right: 1rem !important;
  }

  .mr-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mr-xl-5 {
    margin-right: 3rem !important;
  }

  .mr-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-0 {
    margin-left: 0 !important;
  }

  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ml-xl-3 {
    margin-left: 1rem !important;
  }

  .ml-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ml-xl-5 {
    margin-left: 3rem !important;
  }

  .ml-xl-auto {
    margin-left: auto !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mr-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mr-xl-n3 {
    margin-right: -1rem !important;
  }

  .mr-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mr-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .ml-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .ml-xl-n3 {
    margin-left: -1rem !important;
  }

  .ml-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .ml-xl-n5 {
    margin-left: -3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-0 {
    padding-right: 0 !important;
  }

  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pr-xl-3 {
    padding-right: 1rem !important;
  }

  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pr-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-0 {
    padding-left: 0 !important;
  }

  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }

  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }

  .pl-xl-3 {
    padding-left: 1rem !important;
  }

  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }

  .pl-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }

  .text-xl-justify {
    text-align: justify !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 2800px) {
  .bg-gradient.bevel-bottom .bevel::before {
    bottom: 12px;
  }

  .bg-gradient.bevel-bottom .bevel::after {
    top: -22px;
  }

  .bg-gradient.bevel-bottom .bevel span {
    bottom: 10px;
  }

  .bevel-top .bevel::after {
    top: -22px;
  }
}
@media only screen and (max-width: 1800px) {
  .our-tools .title-wrap {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .top {
    height: auto !important;
  }
}
@media only screen and (max-width: 1023px) {
  .top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 16%;
  }
}
@media only screen and (max-width: 820px) {
  .scroll-arrow {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .top {
    padding-top: 30%;
  }
}
@media only screen and (max-width: 480px) {
  .top {
    padding-top: 26%;
  }

  .bevel-top.bevel-end .bevel::after {
    top: -23px;
    transform: scaleX(-1) rotate(0deg);
  }

  .bevel-top.bevel-end .bevel {
    top: -1px;
  }

  body .text-blog-wrap h4 {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 2000px) {
  .product #scroll-section .container > .title-wrap {
    padding-top: 50px;
  }

  .sixpack .title-wrap h2 {
    margin-top: 50px;
  }

  .login-wrap .auth-wrap .login-top.reset-password p {
    margin-bottom: 80px;
  }

  .login-wrap .auth-wrap .login-top.reset-password h1 {
    padding-bottom: 0;
  }

  .nominations-top h1 {
    margin-bottom: 30px;
  }

  .pop-up.pop-success h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1600px) {
  .home .top .title-wrap + span {
    font-size: 24px;
  }
  .home .top .title-wrap + span + p {
    font-size: 24px;
  }

  .text-img.txt-doping {
    width: 340px;
    height: 136px;
    margin-bottom: -20px;
    top: 0;
    background-size: auto 115px;
  }

  .product .top h1 {
    font-size: 120px;
    max-width: 700px;
    margin-bottom: 40px;
  }
  .product .top h1 .text-three {
    font-size: 130px;
  }

  .text-img.txt-influence {
    width: 645px;
    height: 132px;
    margin-bottom: 5px;
    background-size: auto 120px;
  }

  .our-tools .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .our-tools .row ul {
    padding-left: 0 !important;
    margin: 0 auto;
    position: relative;
  }
  .our-tools .row .col-3:nth-child(1) ul {
    max-width: 175px;
    left: 30px;
  }
  .our-tools .row .col-3:nth-child(2) ul {
    max-width: 175px;
    left: 15px;
  }
  .our-tools .row .col-3:nth-child(3) ul {
    max-width: 175px;
    left: 43px;
  }
  .our-tools .row .col-3:nth-child(4) ul {
    max-width: 180px;
    left: 34px;
  }
  .our-tools .row .item-wrap h3 {
    font-size: 35px;
  }
  .our-tools .row .item-wrap ul li {
    font-size: 20px;
  }

  .blog-section .all-blogs {
    padding: 20px 0 10px;
  }
  .blog-section .row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .blog-section .row .col-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .blog-section .row .col-4 a {
    display: inline-block;
    padding: 0 20px;
  }
  .blog-section .row .col-4 .img-wrap + div span {
    font-size: 16px;
  }
  .blog-section .row .col-4 .item-wrap h4 {
    font-size: 28px;
  }
  .blog-section .row .col-4 .item-wrap p {
    font-size: 21px;
  }

  .text-img.txt-marketing {
    width: 604px;
    height: 220px;
    background-size: auto 200px;
    margin-bottom: 38px;
  }

  .scroll-arrow {
    font-size: 16px;
  }

  .top p {
    font-size: 20px;
  }

  .products-steps .number-wrap > span {
    font-size: 300px;
  }

  .about-us .team-wrap .team-item {
    padding: 0 10px;
  }

  .about-us .team-wrap .row {
    margin: 0 -10px;
  }

  .sixpack .title-wrap h2 {
    margin: 80px auto 60px;
  }

  .sixpack .title-wrap + p {
    margin: 50px auto 0;
  }

  .sixpack .title-wrap h2 span {
    position: relative;
    top: 2px;
  }

  .text-img.txt-datach {
    width: 717px;
    height: 185px;
    background-size: auto 180px;
  }

  .our-tools .title-wrap {
    margin-top: 0;
  }

  .practice-steps .item span {
    left: 0;
    top: 100px;
    font-size: 30px;
  }

  .product .product-items-wrap .product-item .text-wrap h3 {
    font-size: 50px;
    line-height: 1.1em;
    margin-bottom: 30px;
  }
  .product .product-items-wrap .product-item .text-wrap > span {
    font-size: 20px;
  }
  .product .product-items-wrap .product-item .text-wrap p {
    font-size: 22px;
  }

  .product .product-items-wrap > .row ul li {
    font-size: 26px;
  }
  .product .product-items-wrap > .row ul li:before {
    top: 12px;
  }

  .product .product-items-wrap + .center .title-wrap h2 {
    font-size: 100px;
  }
  .product .product-items-wrap + .center .title-wrap + p {
    font-size: 24px;
  }

  .bevel-top.bevel-end .bevel::before {
    left: -5px;
  }

  .product .product-items-wrap .product-item:nth-child(1) .img-wrap {
    justify-content: center;
  }
  .product .product-items-wrap .product-item:nth-child(1) .img-wrap img:first-child {
    max-width: 280px;
    margin-bottom: -70px;
  }
  .product .product-items-wrap .product-item:nth-child(1) .img-wrap img:last-child {
    max-width: 200px;
    margin-top: -60px;
  }
  .product .product-items-wrap .product-item:nth-child(1) .text-wrap {
    padding-left: 0;
  }
  .product .product-items-wrap .product-item:nth-child(2) .img-wrap img {
    max-width: 200px;
  }
  .product .product-items-wrap .product-item:nth-child(3) .img-wrap img {
    max-width: 200px;
  }
  .product .product-items-wrap .product-item:nth-child(4) .img-wrap img {
    max-width: 250px;
  }
  .product .product-items-wrap .product-item:nth-child(5) .img-wrap img {
    max-width: 250px;
  }
  .product .product-items-wrap .product-item:nth-child(6) .img-wrap img {
    max-width: 200px;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4 {
    font-size: 60px;
  }
  .blogs .blogs-wrap .row .col-4:first-child .blog-item .img-wrap {
    height: auto !important;
  }

  .blogs .blogs-wrap .row.col-4 .blog-item .text-wrap p,
.blog-section .row .col-4 .item-wrap p {
    font-size: 20px;
  }

  header .header-wrap .logo-wrap img {
    max-width: 120px;
  }

  .product #scroll-section .title-wrap h2 {
    font-size: 80px;
    margin-bottom: 0;
  }

  .products-steps .row .col-8 > .title-wrap h3 {
    font-size: 40px;
    margin-top: 22px;
    margin-bottom: 50px;
  }

  .products-steps .text-wrap h4 {
    font-size: 22px;
  }

  .product .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 475px;
  }

  .product .products-steps .row.step-2 .col-8 > .title-wrap h3 {
    max-width: 390px;
  }

  .product .products-steps .row.step-3 .col-8 > .title-wrap h3 {
    max-width: 275px;
  }

  .products-steps .text-wrap ul li {
    font-size: 16px;
  }

  .products-steps .number-wrap h3 {
    line-height: 50px;
    margin-top: -20px !important;
  }
  .products-steps .number-wrap h3 strong {
    font-size: 50px;
  }
  .products-steps .number-wrap h3 span {
    font-size: 50px;
  }

  .products-steps .number-wrap > span {
    font-size: 300px;
  }

  .product #scroll-section .title-wrap {
    top: 0;
  }

  .product .products-steps-wrap {
    padding-bottom: 0;
  }

  .practice .container {
    max-width: 1240px !important;
  }

  .blog-section .row.only-one .col-4 .item-wrap .text-wrap h4 {
    font-size: 60px;
  }

  .blogs .blog-detail .top-detail .text-wrap p {
    font-size: 30px;
  }

  .benefits .product-item-wrap {
    padding: 50px 0;
  }

  .benefits .product-item-wrap .product-item .text-wrap ul li::before {
    top: 9px;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4 {
    font-size: 50px;
  }

  .blogs .blogs-wrap .row .col-4 .blog-item .text-wrap > span {
    font-size: 18px;
  }

  .row.step-3 .col-8 > .title-wrap h3 {
    max-width: 365px;
  }

  .products-steps .row .col-8 > .title-wrap h3 {
    margin-top: -5px;
  }

  .products .row.step-3 .col-8 > .title-wrap h3 {
    max-width: 365px;
  }

  .products-steps .row.step-3 .col-8 > .title-wrap {
    padding-top: 26px;
  }

  .practice .title-wrap {
    padding-top: 20px;
  }

  .blog-section {
    padding-bottom: 50px;
  }

  .home .bevel-bottom {
    padding-bottom: 11%;
  }

  .product #scroll-section .container > .title-wrap {
    padding-top: 60px;
  }

  .products .top h1 {
    font-size: 45px;
    max-width: 700px;
  }

  .text-img.txt-marketing {
    margin-top: 10px;
  }

  .program-wrap {
    padding-bottom: 40px;
  }

  .event .top .title-wrap strong {
    font-size: 28px;
  }

  .insta-show + section .insta-analytics.unlocked {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .event-instagram .text-img.txt-instagram {
    background-size: auto 105px;
    height: 110px;
  }
}
@media only screen and (max-width: 1530px) {
  footer {
    padding-right: 0;
    padding-left: 0;
  }

  .contact .contact-form {
    margin-right: 0;
  }

  .contact-row .item-wrap h5 {
    font-size: 18px;
  }
  .contact-row .item-wrap p {
    font-size: 18px;
    margin: 10px 0 10px;
  }

  .product .product-items-wrap {
    padding: 50px 40px;
  }

  .product .product-items-wrap .product-item:nth-child(2n-1) .img-wrap img {
    position: relative;
    left: -30px;
  }
  .product .product-items-wrap .product-item:nth-child(2n) .img-wrap img {
    position: relative;
    left: 30px;
  }
}
@media only screen and (max-width: 1499px) {
  .products #scroll-section {
    overflow: hidden;
  }

  .products .products-steps .row.step-2 .col-8 > .row {
    margin-bottom: 0;
  }

  .products #scroll-section {
    padding-top: 60px;
  }

  .products-steps {
    margin-top: 0;
  }
}
@media only screen and (max-height: 800px) {
  .contact .container > .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact .container > .row .col-7 .text-box h2 {
    padding-top: 50px;
  }

  .contact .container > .row .col-7 {
    padding-bottom: 30px;
  }

  .contact-form {
    padding-bottom: 40px;
  }

  footer p br {
    display: none;
  }

  .contact-form > p {
    font-size: 18px;
  }

  .follow-wrap p {
    font-size: 18px;
  }

  .contact-form .form-label.form-textarea {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1480px) {
  .blog-section .row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .blog-section .row .col-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .blog-section .row .col-4 a {
    padding: 0 30px;
  }

  a.link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1380px) {
  .contact-form .form-textarea + .d-flex {
    padding-bottom: 30px;
    flex-wrap: wrap;
  }
  .contact-form .form-textarea + .d-flex .upload-wrap {
    margin-right: 10px;
  }
  .contact-form .form-textarea + .d-flex .upload-wrap + div {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .blogs .blogs-wrap .row .col-4:first-child {
    margin-bottom: 60px;
  }

  .our-tools .row .col-3 .icon-wrap {
    height: 100px;
  }
  .our-tools .row .col-3 .item-wrap h3 {
    font-size: 28px;
  }
  .our-tools .row .col-3 .item-wrap h3:before {
    font-size: 26px;
  }
  .our-tools .row .col-3 .item-wrap ul li {
    font-size: 19px;
    margin: 5px 0;
  }
  .our-tools .row .col-3 .item-wrap ul li:before {
    top: 8px;
  }
  .our-tools .row .col-3:nth-child(1) .icon-wrap img {
    max-width: 95px;
  }
  .our-tools .row .col-3:nth-child(1) ul {
    left: 38px;
  }
  .our-tools .row .col-3:nth-child(2) .icon-wrap img {
    max-width: 115px;
  }
  .our-tools .row .col-3:nth-child(2) ul {
    left: 24px;
  }
  .our-tools .row .col-3:nth-child(3) .icon-wrap img {
    max-width: 95px;
  }
  .our-tools .row .col-3:nth-child(3) ul {
    left: 50px;
  }
  .our-tools .row .col-3:nth-child(4) .icon-wrap img {
    max-width: 95px;
  }

  .home .top h1 {
    font-size: 105px;
  }

  .home .top .title-wrap + span {
    font-size: 21px;
  }

  .home .top .title-wrap + span + p {
    font-size: 21px;
    max-width: 695px;
  }

  .benefits .title-wrap {
    padding-top: 30px;
  }

  .event .title-wrap {
    padding-top: 50px;
  }

  .map-content-wrap .tooltip .tooltip-top {
    left: auto;
    right: -30px;
  }
  .map-content-wrap .tooltip .tooltip-top:after {
    left: auto;
    right: 35px;
  }

  .event .top .title-wrap .registration-closed {
    top: 66px;
  }
}
@media only screen and (max-width: 1280px) {
  .blog-section .row .col-4 a,
.blogs .blogs-wrap .row.col-4 a {
    padding: 0 10px;
  }

  .blog-section .row .col-4 .item-wrap p {
    font-size: 20px;
  }

  .about-us .team-wrap .row .col-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .about-us .team-wrap .row .col-3:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1250px) {
  .advance-filter-wrap #app > .d-flex {
    padding: 0 30px;
  }
  .advance-filter-wrap.advance-filter-all .content-container {
    min-height: auto;
  }
  .advance-filter-wrap .content-container {
    width: 100%;
    min-height: auto;
  }
  .advance-filter-wrap .table-container {
    flex: 0 0 calc(100% - 300px);
    max-width: calc(100% - 300px);
    min-width: auto;
  }
}
@media only screen and (max-width: 1200px) {
  .contact-box {
    flex-wrap: wrap;
  }

  .contact-box .contact-place-wrap {
    margin-bottom: 40px;
  }

  .about-us #scroll-section .title-wrap h2 {
    font-size: 78px;
    max-width: 985px;
  }

  .sixpack .title-wrap h2 {
    margin-top: 90px;
  }

  .products-steps-wrap {
    background-position: top 380px center, bottom 180px right 200px;
  }

  .products-steps .row .col-8 > .row .col-6 {
    max-width: 300px;
  }

  .product .products-steps .row.step-2 .col-8 .text-wrap {
    padding-right: 60px;
  }

  .product .products-steps .row.step-2 .col-8 .text-wrap h4 {
    max-width: 600px;
    margin-bottom: 40px;
  }

  .products-steps .row.step-3 .text-wrap h4 {
    margin-bottom: 30px;
  }

  .product .products-steps .number-wrap > span {
    font-size: 240px;
  }
  .product .products-steps .number-wrap h3 {
    font-size: 40px;
    line-height: 40px;
  }
  .product .products-steps .number-wrap h3 strong,
.product .products-steps .number-wrap h3 span {
    font-size: 40px;
  }

  .blogs .blog-detail .top-detail .text-wrap h1 {
    font-size: 80px;
    margin-bottom: 60px;
  }

  main .text-blog .text-blog-wrap h2 {
    font-size: 38px;
  }
  main .text-blog .text-blog-wrap h3 {
    font-size: 30px;
    margin-bottom: -5px;
  }

  main .text-blog .text-blog-wrap ul li {
    font-size: 18px;
  }

  h2 + h3 {
    margin-top: 20px;
  }

  .blogs .blog-detail .top-detail .text-wrap p {
    font-size: 26px;
  }

  main .text-blog .text-blog-wrap p {
    font-size: 18px;
  }

  .blogs .blog-detail .top-detail .text-wrap p {
    margin-bottom: 30px;
  }

  main .text-blog .text-blog-wrap p {
    margin: 30px 0;
  }

  main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex span {
    font-size: 18px;
  }

  .blogs .blog-detail .top-detail .img-wrap {
    max-width: 600px;
    height: 380px;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4 {
    font-size: 50px;
    margin-bottom: 30px;
  }

  .blogs .blogs-wrap .row.col-4 .blog-item .text-wrap p,
.blog-section .row .col-4 .item-wrap p {
    font-size: 18px;
  }

  footer .container > .row > .col-2 {
    flex: 0 0 150px;
    max-width: 150px;
    margin-right: -50px;
  }
  footer .container > .row > .col-10 {
    flex: 0 0 calc(100% - 150px);
    max-width: calc(100% - 150px);
  }
  footer .container > .row > .col-10 ul {
    text-align: left;
  }
  footer .container > .row > .col-10 ul li {
    margin-right: 50px;
    margin-bottom: 25px;
  }
  footer .container > .row > .col-10 ul li:last-child {
    margin-right: 0;
  }

  .products-steps .row.step-1 {
    padding-bottom: 16%;
  }

  header .header-wrap .nav-wrap > div:first-child {
    width: 100px;
  }

  header .header-wrap .nav-wrap ul.nav-magic > li > a {
    margin: 0 12px;
  }

  .insta-show .insta-left .insta-data {
    padding-bottom: 30px;
  }

  .event #scroll-section .row {
    padding-bottom: 30px;
  }
  .event #scroll-section .row .col-4 p {
    font-size: 32px;
  }

  .speakers .speaker-box {
    padding: 20px 25px 25px;
  }
  .speakers .speaker-box span {
    font-size: 12px;
  }
  .speakers .speaker-box h3 {
    font-size: 32px;
  }
  .speakers .speaker-box p {
    font-size: 15px;
  }
  .speakers .speaker-box .img-wrap {
    padding-top: 20px;
  }
  .speakers .speaker-box strong {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .insta-show .insta-right .row .insta-box strong {
    font-size: 26px;
  }

  .insta-show .insta-right .insta-box strong .lock-icon {
    height: 33px;
    background-size: auto 33px;
  }

  .blog-section .row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .blog-section .row .col-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-section .row .col-4 .item-wrap .img-wrap {
    height: 280px;
  }

  .maps-section .row.perf-row > .col-3, .maps-section .row.perf-row > .col-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .maps-section .maps-links {
    margin-bottom: 20px;
  }
  .maps-section .maps-links li {
    display: inline-block;
    margin-right: 30px;
  }

  .table-instagram-wrap .flex-table .flex-row .col:nth-child(4) {
    display: none !important;
  }

  .nominations-top h1 {
    margin-bottom: 50px;
  }

  .instagram-section .trend-data .white-box .date-range-wrap + div {
    min-height: 200px;
  }

  .plan-table-wrap .plan-row .plan-col:first-child {
    margin-right: 0;
  }

  .plan-table-wrap .plan-row:first-child .plan-col:first-child {
    background-color: #f8f8f8;
    margin-top: -35px;
    padding-top: 35px;
  }
}
@media only screen and (max-width: 1139px) {
  .ham-wrap {
    display: block;
    position: relative;
    z-index: 3;
    top: 0;
    height: 30px;
  }

  .blogs header .header-wrap .nav-wrap {
    color: #fff;
  }

  header .header-wrap .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2;
    flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    margin-top: 0 !important;
    display: none;
    animation: fade 400ms ease-in-out;
    animation-fill-mode: forwards;
    padding-top: 80px;
  }
  header .header-wrap .nav-wrap.active {
    display: flex;
    flex-wrap: nowrap;
  }
  header .header-wrap .nav-wrap .lng-wrap {
    padding: 20px 0;
    background: #fff;
  }
  header .header-wrap .nav-wrap .lng-wrap a {
    color: #000;
    font-size: 20px;
    margin-right: 40px;
  }
  header .header-wrap .nav-wrap .lng-wrap a.active {
    color: #73f1f4;
  }
  header .header-wrap .nav-wrap .lng-wrap a:before {
    display: none;
  }
  header .header-wrap .nav-wrap nav .nav-magic > li {
    position: relative;
  }
  header .header-wrap .nav-wrap nav .nav-magic > li a.clicked {
    color: #73f1f4 !important;
  }
  header .header-wrap .nav-wrap nav .jsSubmenu {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url("/frontend/img/icon/i-down-new.svg") center center no-repeat;
    background-size: 40px auto;
    position: absolute;
    top: 21px;
    right: 25px;
    z-index: 1;
    cursor: pointer;
    transform: rotate(0);
    transform-origin: center center;
    transition: all 0.3s ease;
  }
  header .header-wrap .nav-wrap nav .jsSubmenu.active {
    transform: rotate(180deg);
  }
  header .header-wrap .nav-wrap nav .sub-menu {
    display: none;
    margin: 0;
    padding: 0;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box {
    padding: 15px 0;
    margin-right: -15px;
    margin-left: -10px;
    box-shadow: none;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 {
    position: relative;
    border-right: 0;
    padding-left: 15px;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 ul li {
    padding: 2px 0;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 ul li a {
    display: inline-block;
    font-size: 18px;
    padding: 5px 0;
    color: #263442;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 h5 {
    font-size: 20px;
    margin: 25px 0;
    margin-top: 15px;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 h5 a {
    color: #96979F;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 .jsSubmenu {
    top: 18px;
    right: 40px;
  }
  header .header-wrap .nav-wrap nav > ul {
    margin-bottom: 30px;
    padding-left: 45px;
  }
  header .header-wrap .nav-wrap nav > ul > li {
    display: block;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid rgba(150, 151, 159, 0.1);
  }
  header .header-wrap .nav-wrap nav > ul > li:last-child {
    border-bottom: 0;
  }
  header .header-wrap .nav-wrap nav > ul > li > a {
    font-size: 32px !important;
    color: #000 !important;
    font-family: "ThreeSix", sans-serif;
    margin-right: 0;
    text-align: left;
    padding-left: 0 !important;
    margin: 0 !important;
  }
  header .header-wrap .nav-wrap nav > ul > li > a.active {
    color: #00A3B8;
  }
  header .header-wrap .nav-wrap nav > ul > li > a:before {
    display: none !important;
    width: 30px !important;
    height: 30px;
    color: #000 !important;
    font-size: 30px;
    font-weight: 300;
    background: none;
    bottom: auto;
    left: -38px;
    top: 5px;
    position: absolute;
  }
  header .header-wrap .nav-wrap nav > ul > li:nth-child(1) > a:before {
    content: "01";
  }
  header .header-wrap .nav-wrap nav > ul > li:nth-child(2) > a:before {
    content: "02";
  }
  header .header-wrap .nav-wrap nav > ul > li:nth-child(3) > a:before {
    content: "03";
  }
  header .header-wrap .nav-wrap nav > ul > li:nth-child(4) > a:before {
    content: "04";
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3:last-child ul {
    padding-bottom: 0;
  }

  header .header-wrap .nav-wrap nav .sub-menu {
    position: static;
    opacity: 1;
    transform: none;
  }
  header .header-wrap .nav-wrap nav .sub-menu .row .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  header .header-wrap .nav-wrap > div:first-child {
    display: none !important;
  }

  nav {
    width: 100%;
    overflow: auto;
  }
  nav > ul {
    max-width: 400px;
    margin: 0 auto;
  }

  .instagram-input-wrap {
    position: absolute;
    top: 0;
    left: 150px;
    right: 90px;
    margin: 0 auto;
  }

  .instagram-input {
    margin-right: 0;
    max-width: 422px;
    margin: 0 auto;
  }

  .instagram-input .input-wrap {
    width: 100%;
    max-width: 422px;
    margin: 23px auto;
  }
  .instagram-input .input-wrap label input {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-color: #3f3f4b;
    background-color: #292937;
  }

  header {
    padding: 0 10px;
  }

  header .header-wrap .container {
    display: flex;
    justify-content: space-between;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box::before {
    display: none !important;
  }

  header .header-wrap .nav-wrap .lng-wrap .button {
    border: 3px solid #73f1f4;
  }

  header .header-wrap .nav-wrap .lng-wrap .button.button-login {
    color: #fff;
    border: 3px solid #263442;
    padding-left: 48px;
    margin-right: 0;
  }
  header .header-wrap .nav-wrap .lng-wrap .button.button-login:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background-size: 20px auto;
  }

  header.scroll .instagram-input .input-wrap {
    margin: 15px auto;
  }

  .instagram-input .input-wrap + ul {
    width: 100%;
    z-index: 2;
  }

  .instagram-input .input-wrap label input {
    background: #F8F8F8;
    border: 1px solid #E1E1E4;
    border-radius: 6px;
    height: 40px;
  }

  .insta-show .insta-right .insta-box .d-flex {
    padding-left: 0;
    padding-top: 0;
    justify-content: flex-start;
  }

  header .header-wrap .nav-wrap nav > ul {
    max-width: 480px;
    padding-left: 58px;
  }

  header .header-wrap .nav-wrap nav .jsSubmenu {
    right: -9px;
  }

  .event #scroll-section .row .col-4 p {
    font-size: 26px;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box {
    margin-left: 0;
    margin-right: 0;
  }

  header .header-wrap .nav-wrap .lng-wrap {
    width: 365px;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-9 ul li a {
    display: inline-block;
    font-size: 18px;
    padding: 5px 0;
    color: #263442;
  }

  header .header-wrap .nav-wrap nav li:nth-child(2) .sub-menu .menu-box .row .col-9 .row .col:last-child {
    max-width: 105px;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-9 h5 a {
    font-size: 20px;
    color: #96979F;
  }

  .home .top {
    padding-top: 80px;
  }
  .home .top .title-wrap h1 {
    margin-top: 0;
  }
  .home .top .instagram-input-wrap {
    padding: 0 22px;
    width: 100%;
    position: static;
    display: block !important;
    align-self: flex-start;
  }
  .home .top .instagram-input-wrap .instagram-input .input-wrap {
    margin-top: 16px;
    max-width: 620px;
    margin-bottom: 50px;
  }

  .home .top .title-wrap h1 {
    padding-top: 0;
    margin-top: 80px;
  }

  .top .instagram-input {
    max-width: 500px;
  }

  .auth-front-wrap {
    width: 100%;
  }
  .auth-front-wrap > a {
    display: none !important;
  }
  .auth-front-wrap > ul.dropdown-menu {
    display: block !important;
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: 0;
    border-top: 1px solid #1C1B29;
    border-radius: 0;
  }
  .auth-front-wrap > ul.dropdown-menu li {
    padding: 20px 0;
  }
  .auth-front-wrap > ul.dropdown-menu li:first-child {
    border-bottom: 1px solid rgba(150, 151, 159, 0.1);
  }
  .auth-front-wrap > ul.dropdown-menu li:last-child {
    padding: 10px 0;
  }
  .auth-front-wrap > ul.dropdown-menu li a {
    font-size: 32px !important;
    padding-left: 0;
    width: auto;
  }
  .auth-front-wrap > ul.dropdown-menu li a:hover {
    background: none;
  }
  .auth-front-wrap > ul.dropdown-menu li button {
    font-size: 18px;
    padding: 16px 20px 14px;
    text-align: center;
    background: #E1E1E4;
    border-radius: 8px;
  }
  .auth-front-wrap > ul.dropdown-menu li button:hover {
    background: #73F2F5;
    color: #1C1B29;
  }

  header .header-wrap .nav-wrap .lng-wrap {
    width: 100%;
    max-width: 480px;
    padding-left: 58px;
    padding-top: 30px;
  }

  header .header-wrap .nav-wrap nav > ul > li:last-child {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .product .product-items-wrap {
    padding: 50px 20px;
  }

  .practice-options .practice-item .practive-item-wrap a.link {
    font-size: 18px;
  }
  .practice-options .practice-item .practive-item-wrap a.link:after {
    top: 6px;
    font-size: 38px;
  }

  .our-tools .row .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .our-tools .row .col-3:nth-child(2) {
    padding-bottom: 20px;
  }
  .our-tools .all-produts {
    padding-top: 0;
    margin-top: -20px;
  }

  .home .top h1 {
    font-size: 90px;
    max-width: 645px;
  }
  .home .top .title-wrap + span {
    font-size: 20px;
  }
  .home .top .title-wrap + span + p {
    font-size: 20px;
    max-width: 638px;
  }

  .text-img.txt-doping {
    width: 286px;
    height: 124px;
    margin-bottom: -30px;
    top: -10px;
    background-size: auto 93px;
  }

  .product .top h1 {
    font-size: 90px;
  }
  .product .top h1 .text-three {
    font-size: 90px;
  }
  .product .top .title-wrap + p {
    font-size: 20px;
    max-width: 700px;
  }

  .text-img.txt-influence {
    width: 470px;
    height: 105px;
    margin-bottom: 0;
    background-size: auto 87px;
  }

  .our-tools .title-wrap + p {
    font-size: 20px;
  }
  .our-tools .title-wrap h2 {
    font-size: 70px;
  }

  .about-us .top .center h1 {
    font-size: 40px;
    max-width: 530px;
  }

  .text-img.txt-datach {
    width: 530px;
    height: 145px;
    background-size: auto 125px;
    margin-top: 15px;
    top: 0;
  }

  .about-us #scroll-section .title-wrap h2 {
    font-size: 65px;
    max-width: 740px;
  }

  .sixpack .title-wrap h2 {
    font-size: 70px;
    max-width: 450px;
  }
  .sixpack .title-wrap h2 span {
    font-size: 80px;
  }

  .products .top h1 {
    max-width: 828px;
  }

  .text-img.txt-marketing {
    width: 422px;
    height: 145px;
    background-size: auto 142px;
    margin-top: 5px;
    margin-bottom: 38px;
  }

  .products .top h1 {
    font-size: 40px;
    max-width: 500px;
  }

  .blog-section .row .col-4 .item-wrap .img-wrap + div span {
    font-size: 16px;
  }
  .blog-section .row .col-4 .item-wrap h4 {
    font-size: 24px;
  }
  .blog-section .row .col-4 .item-wrap p {
    font-size: 18px;
  }

  .blogs .blogs-wrap .row.col-4 .blog-item .text-wrap span {
    font-size: 16px;
  }
  .blogs .blogs-wrap .row.col-4 .blog-item .text-wrap h4 {
    font-size: 24px;
  }
  .blogs .blogs-wrap .row.col-4 .blog-item .text-wrap p {
    font-size: 18px;
  }

  .blog-section .row .col-4 .item-wrap .img-wrap,
.blogs .blogs-wrap .row.col-4 .blog-item .img-wrap {
    height: 280px;
  }

  .contact .container > .row .col-7 .text-box h2 {
    font-size: 45px;
  }
  .contact .container > .row .col-7 .text-box h2 span {
    font-size: 50px;
  }

  .contact .container > .row .col-7 .text-box p {
    font-size: 20px;
  }

  #contact-form .container > .row .col-7 {
    padding-top: 0;
    padding-bottom: 60px;
  }
  #contact-form .row .col-7 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 50px;
  }
  #contact-form .row .col-7 .text-box {
    transform: none !important;
  }
  #contact-form .row .col-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact .contact-map {
    background-position: left calc(50% + 280px) bottom;
  }

  .contact .container > .row {
    height: auto;
  }

  .contact .contact-form {
    max-width: 550px;
  }

  .products-steps .number-wrap h3 {
    font-size: 35px;
    line-height: 1.2em;
    margin-top: -25px;
  }
  .products-steps .number-wrap h3 strong {
    font-size: 35px;
  }
  .products-steps .number-wrap h3 span {
    font-size: 35px;
  }

  .products-steps .row.step-2 .row .col-6:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .practice-options {
    padding: 40px 0 80px;
  }

  .practice-steps .item .icon-wrap img {
    max-width: 80px;
  }
  .practice-steps .item h4 {
    font-size: 22px;
  }

  .practice-options .practice-item {
    padding: 5px 0;
  }

  .contact-form .form-textarea + .d-flex .upload-wrap + div {
    width: auto;
  }

  .product .product-items-wrap .product-item .text-wrap h3 {
    font-size: 36px;
  }
  .product .product-items-wrap .product-item .text-wrap > span {
    font-size: 18px;
  }
  .product .product-items-wrap .product-item .text-wrap p {
    font-size: 18px;
  }
  .product .product-items-wrap .product-item:nth-child(1) .img-wrap {
    justify-content: center;
  }
  .product .product-items-wrap .product-item:nth-child(1) .img-wrap img:first-child {
    max-width: 220px;
    margin-bottom: -70px;
  }
  .product .product-items-wrap .product-item:nth-child(1) .img-wrap img:last-child {
    max-width: 150px;
    margin-top: -60px;
  }
  .product .product-items-wrap .product-item:nth-child(1) .text-wrap {
    padding-left: 0;
  }
  .product .product-items-wrap .product-item:nth-child(2) .img-wrap img {
    max-width: 150px;
  }
  .product .product-items-wrap .product-item:nth-child(3) .img-wrap img {
    max-width: 150px;
  }
  .product .product-items-wrap .product-item:nth-child(4) .img-wrap img {
    max-width: 200px;
  }
  .product .product-items-wrap .product-item:nth-child(5) .img-wrap img {
    max-width: 200px;
  }
  .product .product-items-wrap .product-item:nth-child(6) .img-wrap img {
    max-width: 150px;
  }

  .product .product-items-wrap + .center {
    padding-bottom: 80px;
  }

  .plans-wrap .row .col-3:nth-child(1) {
    display: none !important;
  }

  .plans-wrap .row .col-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li {
    margin-bottom: 20px;
    height: auto;
    font-size: 18px;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li > div {
    display: block;
    width: 100%;
    margin-bottom: 2px;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li:before {
    display: none !important;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li:nth-child(8) {
    margin-bottom: 0;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li:nth-child(8) strong {
    font-size: 62px;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li:nth-child(9) {
    margin-bottom: 0;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li:nth-child(9) strong {
    font-size: 38px;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li:nth-child(10) {
    margin-bottom: 0;
  }

  .plans-wrap .row .col-3 .item-wrap .button {
    font-size: 18px;
  }
  .plans-wrap .row .col-3 .item-wrap span.i-success {
    background-size: 30px auto;
    height: 30px;
  }
  .plans-wrap .row .col-3 .item-wrap span.i-no {
    background-size: 21px auto;
    height: 30px;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4 {
    font-size: 50px;
    margin-bottom: 30px;
  }

  .text-blog .text-blog-wrap p {
    font-size: 18px;
  }
  .text-blog .text-blog-wrap ul li,
.text-blog .text-blog-wrap ol li {
    font-size: 18px;
  }

  .text-blog .text-blog-wrap ul li::before {
    top: 7px;
    left: -21px;
  }

  .blogs .blogs-wrap .row .col-4:first-child {
    margin-bottom: 30px;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item {
    padding-top: 20px;
  }

  .products-steps .text-wrap.in-view {
    animation-duration: 800ms;
  }

  .product .product-items-wrap .product-item .img-wrap img {
    position: static !important;
    left: 0 !important;
  }

  .about-us .team-wrap .row .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .blogs .top {
    padding-top: 125px;
  }

  .products-steps .row .col-8 > .row .col-6 {
    max-width: 240px;
  }

  .products .products-steps .row.step-2 .col-8 > .row {
    margin-bottom: -50px;
  }

  .products #scroll-section .products-steps .step-2 .row {
    padding-left: 0;
  }

  .products-steps .row .col-8 > .row .col-6 {
    margin-bottom: 40px;
  }
  .products-steps .row .col-8 > .row .col-6 .text-wrap {
    padding-bottom: 0;
  }

  .products-steps .row.step-3 .col-8 > .row .col-6 {
    max-width: 315px;
  }

  .products #scroll-section .products-steps .step-1 .col-8 {
    padding-top: 20px;
  }

  .product #scroll-section .title-wrap h2 {
    font-size: 70px;
    margin-bottom: 0;
  }

  .products-steps .number-wrap h3 {
    line-height: 40px;
    margin-top: -20px !important;
  }
  .products-steps .number-wrap h3 strong {
    font-size: 40px;
  }
  .products-steps .number-wrap h3 span {
    font-size: 40px;
  }

  .products-steps .row.step-3 .number-wrap h3 {
    max-width: 270px;
  }

  .products-steps .number-wrap > span {
    font-size: 180px;
  }

  .benefits .title-wrap h2 {
    font-size: 80px;
    max-width: 800px;
  }

  .benefits .product-item-wrap .product-item .text-wrap h4 {
    font-size: 24px;
  }

  .benefits .product-item-wrap .product-item .text-wrap ul li {
    font-size: 16px;
  }

  .benefits .product-item-wrap .product-item .img-wrap {
    padding-left: 60px;
    display: flex;
    justify-content: center;
  }

  .benefits .product-item-wrap {
    padding: 70px 0 80px;
  }

  .benefits .product-item-wrap + .center .title-wrap + p {
    font-size: 26px;
  }

  .product #scroll-section .title-wrap {
    margin-top: -20px;
  }

  .products .products-steps .row.step-1 .col-8 > .row {
    margin-bottom: 0;
  }

  .products .products-steps .row.step-2 .col-8 > .row {
    justify-content: center;
  }

  .products .products-steps .row.step-3 .col-8 > .row {
    justify-content: center;
  }

  .products-steps .row.step-2 .row .col-6:last-child {
    flex: 0 0 480px;
    max-width: 480px;
  }

  .blog-section .row.only-one .col-4 .item-wrap .text-wrap h4 {
    font-size: 38px;
  }

  .products-steps .number-wrap h3 span {
    top: 2px;
    line-height: 40px !important;
  }

  .product #scroll-section {
    padding-top: 20px;
  }

  .product .products-steps .row.step-1 .col-8 > .row .text-wrap {
    margin-bottom: 30px;
  }

  .product .products-steps .number-wrap > span {
    font-size: 180px;
  }
  .product .products-steps .row .col-8 > .title-wrap h3 {
    margin-bottom: 50px;
  }
  .product .products-steps .number-wrap h3 {
    font-size: 40px;
    line-height: 40px;
  }
  .product .products-steps .number-wrap h3 strong,
.product .products-steps .number-wrap h3 span {
    font-size: 40px;
  }

  .blogs .blog-detail .top-detail .text-wrap h1 {
    font-size: 60px;
    margin-bottom: 60px;
  }

  .blogs .blog-detail .top-detail .text-wrap p {
    font-size: 22px;
  }

  main .text-blog .text-blog-wrap p {
    font-size: 16px;
  }

  .text-blog .text-blog-wrap .ol-follower li {
    font-size: 16px;
  }

  .blogs .blog-detail .top-detail .text-wrap p {
    margin-bottom: 0;
  }

  main .text-blog .text-blog-wrap p {
    margin: 20px 0;
  }

  main .text-blog .text-blog-wrap ul {
    margin: 20px 0;
  }

  main .text-blog .text-blog-wrap ul li {
    font-size: 16px;
    margin: 20px 0;
  }

  main .text-blog .text-blog-wrap .author-wrap > .d-flex {
    flex-wrap: nowrap;
  }

  main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex span {
    font-size: 16px;
  }

  main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex h6,
main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex p {
    font-size: 16px;
  }

  .product.p-campaign .products-steps .text-wrap ol {
    margin-right: -50px;
  }

  .benefits .product-item-wrap .product-item .text-wrap ul li::before {
    top: 8px;
  }

  .about-us .team-wrap .row .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .img-wrap {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .blogs .blogs-wrap .row .col-4 .blog-item .text-wrap p {
    font-size: 18px;
  }

  .blogs .top {
    padding-bottom: 0;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4 {
    font-size: 45px;
  }

  .title-wrap h2 {
    font-size: 60px;
  }

  .event .title-wrap {
    padding-top: 60px;
  }
  .event .title-wrap h2 {
    line-height: 1em;
  }

  .practice .title-wrap + p {
    margin-bottom: 60px;
  }

  .practice-options .practice-item .practive-item-wrap h3 {
    font-size: 36px;
    line-height: 1.3em;
  }

  .button {
    padding: 16px 28px 14px;
  }

  .practice-options .practice-item .practive-item-wrap .item-box {
    padding: 0;
    max-width: 300px;
    margin: 0 auto;
  }

  .product.p-upsell .top h1 {
    left: 0;
  }

  .product-benefits-wrap > .row .col-4 .text-box h4 {
    font-size: 22px;
  }

  .product-benefits-wrap > .row .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .about-us #scroll-section .title-wrap + p {
    margin-bottom: 100px;
  }

  .about-us #scroll-section {
    padding-bottom: 100px;
  }

  .about-us .top .center h1 {
    margin-bottom: 80px;
  }

  .products .top h1 {
    margin-bottom: 60px;
  }

  .product .top h1 {
    margin-bottom: 60px;
  }

  .contact .contact-form.in-view {
    animation: sbFade 600ms ease-in-out 0s;
    animation-fill-mode: forwards;
  }

  .plans-wrap .row .col-3 .item-wrap.in-view {
    animation: sbFade 600ms ease-in-out forwards;
    animation-delay: 0s !important;
  }

  .top .policy-wrap h1 {
    font-size: 46px;
  }

  .top .policy-wrap h2 {
    font-size: 32px;
  }

  .top .policy-wrap h3 {
    font-size: 26px;
  }

  .top .policy-wrap p {
    font-size: 16px;
  }

  .top .policy-wrap {
    padding-bottom: 60px;
  }

  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item {
    height: 80px;
    padding-top: 0;
    margin-bottom: 0;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item strong {
    font-size: 32px;
  }

  .product.p-satisfaction .products-steps .text-wrap ol li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .top.database-top h1 {
    margin-top: 0;
  }

  .table-instagram-wrap .flex-table .flex-row .col:nth-child(4) {
    display: none !important;
  }
  .table-instagram-wrap .flex-table .flex-row .col:nth-child(5) {
    max-width: 120px;
  }
  .table-instagram-wrap .flex-table .flex-row .col:nth-child(6) {
    max-width: 115px;
  }

  .table-instagram-wrap {
    padding-bottom: 80px;
  }
  .table-instagram-wrap .table-paginate-wrap {
    padding-top: 40px;
  }
  .table-instagram-wrap .table-paginate-wrap > .d-flex {
    flex-direction: column-reverse;
  }
  .table-instagram-wrap .paginate-viewed {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
  }
  .table-instagram-wrap .paginate-viewed > div {
    padding-left: 30px;
  }
  .table-instagram-wrap .paginate-viewed > p {
    margin: 10px 0;
  }

  .insta-show .insta-left {
    flex: 0 0 calc(100% - 360px);
    max-width: calc(100% - 360px);
  }
  .insta-show .insta-right {
    flex: 0 0 360px;
    max-width: 360px;
  }
  .insta-show .insta-right .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .insta-show .insta-right .row .insta-box {
    display: flex;
    align-items: center;
    padding: 15px 18px 20px;
  }
  .insta-show .insta-right .row .insta-box .img-wrap {
    flex: 0 0 74px;
    max-width: 74px;
  }
  .insta-show .insta-right .row .insta-box .img-wrap + div {
    width: 100%;
    padding-left: 25px;
    text-align: left;
  }
  .insta-show .insta-right .row .insta-box strong {
    padding: 0;
  }
  .insta-show .insta-right .row .insta-box p {
    max-width: 100%;
    height: auto;
    justify-content: flex-start;
    margin: 0;
  }

  .accord-container .insta-title-wrap {
    padding: 50px 0 20px;
  }

  .insta-show .insta-left .insta-data {
    padding-bottom: 40px;
  }

  .insta-show + section .container > h1 {
    padding-top: 20px;
  }

  .home .top h1 {
    padding-top: 0;
  }

  .database-top + section > div {
    margin-top: calc(-8% - 60px);
  }

  .top.database-top h1 {
    padding-bottom: 50px;
  }

  .program-wrap .event-program-row .event-time {
    flex: 0 0 200px;
    max-width: 200px;
  }
  .program-wrap .event-program-row .event-time span {
    font-size: 18px;
    padding: 25px 20px;
  }
  .program-wrap .event-program-row .event-content {
    padding: 25px 30px;
    flex: 0 0 calc(100% - 200px);
    max-width: calc(100% - 200px);
  }
  .program-wrap .event-program-row .event-content h4 {
    font-size: 18px;
  }
  .program-wrap .event-program-row .event-content .text-wrap h4 {
    margin-top: 10px;
  }
  .program-wrap .event-program-row .event-content .text-wrap p {
    font-size: 14px;
  }
  .program-wrap .event-program-row .event-content .instagram-insights .img-wrap {
    flex: 0 0 180px;
    max-width: 180px;
    padding-right: 25px;
  }

  .speakers .speaker-box h3 {
    font-size: 28px;
  }
  .speakers .speaker-box p {
    font-size: 14px;
  }

  .event .bevel-top.bevel-end.bg-gradient .registry-free {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .event .bevel-top.bevel-end.bg-gradient .registry-free h2 {
    font-size: 50px;
  }

  .top .instagram-input {
    max-width: 500px;
  }
  .top .instagram-input .input-wrap + ul {
    z-index: 3;
  }

  .pop-event .success-wrap h3 {
    font-size: 29px;
    line-height: 1.5em;
  }

  .event .top .title-wrap strong {
    font-size: 22px;
    padding: 15px 25px;
  }

  .event .top .title-wrap .registration-closed {
    top: 75px;
  }

  header .header-wrap .nav-wrap .lng-wrap .button {
    font-size: 22px;
    padding: 12px 32px 10px;
    margin-right: 25px;
  }

  .instagram-section .trend-data > .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }

  .instagram-section .mention-data > .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }

  h2.insta-title {
    margin-top: 30px;
  }

  .performance-information > .col-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .performance-information .white-box {
    padding: 12px 18px;
  }

  .performance-information .white-box .tooltip-wrap > span {
    font-size: 14px;
  }

  .performance-information .white-box .tooltip-wrap {
    margin-bottom: 2px;
  }

  .performance-information .white-box strong {
    font-size: 15px;
  }

  .insta-show + section .insta-analytics.unlocked h1 {
    font-size: 40px;
  }

  .insta-show + section .insta-analytics.unlocked p {
    font-size: 15px;
  }

  h2.insta-title {
    font-size: 26px;
  }

  .event.event-masterclass .program-wrap .event-program-row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-content {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    width: 100%;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-content > .d-flex {
    width: 100%;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-content::before {
    display: none;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-hours {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-hours strong {
    padding: 0;
    background: none;
    box-shadow: none;
    justify-content: start;
    margin: 16px 0;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-hours::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 5px solid #73F2F5;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -48px;
  }

  .event.event-masterclass .program-wrap .event-program-row:last-child::before {
    top: 38px;
    bottom: -25px;
  }

  .event.event-masterclass #scroll-section .row .col-4 .event-box strong {
    font-size: 32px;
  }
  .event.event-masterclass #scroll-section .row .col-4 .event-box p {
    font-size: 15px;
  }

  .event.event-masterclass .title-wrap h2 {
    max-width: 710px;
  }

  .event.event-masterclass .speakers .row .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .slider-wrap .slider-content .slider-item .slider-img {
    display: none;
  }

  .slider-wrap .slider-content .slider-item .slider-text {
    width: 100%;
  }

  .event .bevel-top.bevel-end.bg-gradient .registry-free h2 + p {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 35px;
  }

  .home .top .title-wrap h1 {
    margin-top: 40px;
  }

  .event-instagram .text-img.txt-instagram {
    background-size: auto 80px;
    height: 90px;
  }

  .event.event-masterclass.event-instagram .title-wrap h1 {
    line-height: 70px;
  }

  .table-instagram-filter-wrap .table-instagram-filter {
    display: none;
  }

  .table-instagram-filter-wrap .table-instagram-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #app .vue3-easy-data-table__footer {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  #app .vue3-easy-data-table__footer .pagination__rows-per-page {
    flex: 0 0 210px;
    max-width: 210px;
    margin-bottom: 20px;
  }
  #app .vue3-easy-data-table__footer .pagination__items-index {
    flex: 0 0 calc(100% - 210px);
    max-width: calc(100% - 210px);
    margin: 0;
    margin-bottom: 20px;
  }

  .advance-filter-wrap .content-container {
    padding-bottom: 80px;
  }

  .insta-home .database-top .sowa-title h1 {
    font-size: 48px;
    padding-bottom: 0;
  }
  .insta-home .database-top .sowa-title p {
    font-size: 50px;
    margin-bottom: 100px;
  }

  .insta-home .database-top.nominations-top .sowa-title h1 {
    padding-bottom: 40px;
  }

  .nominations-top h1 {
    font-size: 46px;
  }

  .nominations-wrap ul li {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .sowa-all .table-instagram-wrap .flex-table .flex-row .col:nth-child(5) {
    display: none;
  }

  .sowa-all .top.nominations-top {
    padding-top: 120px;
  }

  .timeline-check-range-wrap {
    flex-wrap: wrap;
  }
  .timeline-check-range-wrap .timeline-form-check {
    width: 100%;
  }

  .post-filter.row .col .instagram-input .input-wrap {
    margin: 0;
    margin-bottom: 16px;
  }

  .post-filter {
    padding-bottom: 10px;
  }

  .post-filter .date-range-wrap {
    margin-bottom: 16px;
  }

  .post-hashtags-input.instagram-input .input-wrap label input {
    background-color: #fff;
  }

  .post-filter {
    flex-wrap: wrap;
  }
  .post-filter .instagram-input .input-wrap label input {
    background-color: #fff;
  }

  #posts .white-box > h4 + .row.post-filter .col:first-child {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .post-filter .col.category-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .post-filter + .post-filter .col:first-child {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .post-filter + .post-filter .col:first-child ~ .col {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media only screen and (max-width: 1139px) and (prefers-color-scheme: dark) {
  .instagram-input .input-wrap label input,
.blogs header .instagram-input-wrap .input-wrap label input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 ul li a,
header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-9 ul li a {
    color: #fff;
  }

  .auth-front-wrap .dropdown-menu {
    background: #1C1B29;
    border-color: rgba(255, 255, 255, 0.1) !important;
  }
  .auth-front-wrap .dropdown-menu li {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .auth-front-wrap .dropdown-menu li a {
    color: #fff !important;
    background: #1C1B29;
  }
  .auth-front-wrap .dropdown-menu li a::after {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .program-wrap .event-program-row .event-content .instagram-insights {
    flex-wrap: wrap;
  }
  .program-wrap .event-program-row .event-content .instagram-insights .img-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
  }
  .program-wrap .event-program-row .event-content .instagram-insights .img-wrap img {
    max-width: 100px;
  }
  .program-wrap .event-program-row .event-content .instagram-insights .img-wrap .img-mobile-text {
    padding-left: 20px;
    display: block;
    padding-top: 5px;
    text-align: left;
  }
  .program-wrap .event-program-row .event-content .instagram-insights .img-wrap .img-mobile-text p {
    margin: 0;
    margin-top: 5px;
  }
  .program-wrap .event-program-row .event-content .instagram-insights .text-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .maps-content > .row > .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .maps-content > .row > .col-6 + .col-6 {
    margin-top: 20px;
  }

  .maps-section .row.perf-row > .col-3 {
    position: sticky;
    top: 60px;
    left: 0;
    background: #f8f8f8;
    z-index: 1;
  }
  .maps-section .row.perf-row > .col-3 .maps-links {
    padding-top: 20px;
    margin-bottom: 0;
  }

  .maps-section {
    padding-top: 150px;
  }

  .maps-section .row.perf-row > .col-9 {
    padding-top: 30px;
  }

  .maps-section .maps-links li:last-child {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 800px) {
  .products-steps-wrap {
    background-position: top 320px center, bottom 250px right 10%;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4 {
    font-size: 38px;
  }

  .blogs .blogs-wrap .row.col-4 .blog-item .text-wrap p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 481px) {
  .filter-container > ul {
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .filter-container > ul {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .about-us .team-wrap .row .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .text-img.txt-datach {
    margin-top: 5px;
    width: 345px;
    height: 98px;
    background-size: auto 80px;
  }

  .top p {
    font-size: 20px;
  }

  .title-wrap + p .text-three,
.about-us .top .center p span {
    font-size: 22px;
  }

  .home .top h1 {
    font-size: 60px;
    max-width: 440px;
  }

  .text-img.txt-doping {
    width: 210px;
    height: 80px;
    margin-bottom: 0;
    top: -5px;
    background-size: auto 69px;
  }

  .home .top .title-wrap + span + p {
    font-size: 18px;
    max-width: 490px;
    margin-bottom: 0;
  }

  .home .top .title-wrap h1 {
    margin-bottom: 80px;
  }

  .home .top .title-wrap + span {
    margin-bottom: 80px;
  }

  .top h1 {
    margin-bottom: 100px;
  }

  .about-us .top .center h1 {
    margin-top: 20px;
    margin-bottom: 100px;
  }

  .our-tools .title-wrap h2 {
    font-size: 50px;
  }

  .our-tools .row .col-3 .icon-wrap {
    height: 100px;
  }
  .our-tools .row .col-3 .item-wrap h3 {
    font-size: 26px;
  }
  .our-tools .row .col-3 .item-wrap h3:before {
    font-size: 25px;
  }
  .our-tools .row .col-3 .item-wrap ul li {
    font-size: 18px;
    margin: 5px 0;
  }
  .our-tools .row .col-3 .item-wrap ul li:before {
    top: 8px;
  }
  .our-tools .row .col-3:nth-child(1) .icon-wrap img {
    max-width: 85px;
  }
  .our-tools .row .col-3:nth-child(2) .icon-wrap img {
    max-width: 105px;
  }
  .our-tools .row .col-3:nth-child(3) .icon-wrap img {
    max-width: 85px;
  }
  .our-tools .row .col-3:nth-child(4) .icon-wrap img {
    max-width: 85px;
  }

  .blog-section .row .col-4,
.blogs .blogs-wrap .row.col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .blog-section .row .col-4 a,
.blogs .blogs-wrap .row.col-4 a {
    padding: 0;
  }

  .blog-section .row,
.blogs .blogs-wrap .row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .blog-section .row .col-4,
.blogs .blogs-wrap .row .col-4 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .blog-section .row .col-4 .item-wrap .img-wrap + div span,
.blogs .blogs-wrap .row .col-4 .item-wrap .img-wrap + div span {
    font-size: 12px;
  }
  .blog-section .row .col-4 .item-wrap p,
.blogs .blogs-wrap .row .col-4 .item-wrap p {
    font-size: 16px;
  }

  .practice-steps .item.active h4 {
    font-size: 22px;
    position: absolute;
    left: 0;
  }
  .practice-steps .item h4 {
    font-size: 20px;
  }
  .practice-steps .item:nth-child(3) .icon-wrap img {
    max-width: 50px;
  }
  .practice-steps .item .icon-wrap {
    height: 80px;
  }
  .practice-steps .item .icon-wrap img {
    max-width: 60px;
  }
  .practice-steps .item span {
    top: 68px;
    font-size: 20px;
  }

  .products-steps-wrap {
    background: none;
  }

  .products-steps > .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .products-steps > .row .col-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .products-steps > .row.step-2 {
    padding: 60px 0;
    flex-direction: column-reverse;
  }
  .products-steps .number-wrap {
    display: flex;
    align-items: center;
    padding-left: 20px !important;
  }
  .products-steps .number-wrap h3 {
    text-align: left;
    padding-left: 30px;
    position: relative;
    top: 0;
  }

  .products-steps .row .col-8 .row .col-6 {
    margin-bottom: 40px;
  }

  .products #scroll-section .products-steps .step-1 .col-8 {
    padding-top: 0;
    padding-left: 10px;
  }

  .products #scroll-section .products-steps .step-2 .row {
    padding-left: 10px;
  }

  .products-steps > .row.step-2 {
    padding: 20px 0;
  }

  .products-steps .row .number-wrap {
    padding-bottom: 0;
    margin-bottom: -25px;
  }

  .products-steps .row.step-3 .number-wrap {
    top: 0;
  }

  .products-steps .row.step-3 .text-wrap {
    padding-left: 30px;
  }

  .products-steps .row.step-3 .row {
    justify-content: flex-start;
  }

  .contact .contact-map {
    background-position: left calc(50% + 465px) bottom;
  }

  .practice .title-wrap h2 {
    font-size: 50px;
  }
  .practice .title-wrap h2 span {
    font-size: 50px;
  }

  .practice .title-wrap + p {
    font-size: 20px;
  }

  .products-steps .row .col-8 .row .col-6 .text-wrap {
    width: 100% !important;
    max-width: 315px;
    margin: 0 auto;
  }

  .products #scroll-section .products-steps .step-1 .col-8 .text-wrap {
    padding-left: 0 !important;
  }

  .products #scroll-section .products-steps .step-2 .row {
    padding-left: 0 !important;
  }

  .products-steps .number-wrap {
    padding-left: 0 !important;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .products-steps .number-wrap h3 {
    padding-left: 0;
    text-align: center;
  }

  .our-tools .title-wrap {
    padding-top: 30px;
  }

  .about-us #scroll-section .title-wrap h2 {
    font-size: 50px;
    margin: 15px auto 30px;
  }
  .about-us #scroll-section .title-wrap + p {
    font-size: 20px;
  }

  .about-us .team-wrap .team-item p {
    font-size: 16px;
  }

  .about-us .team-wrap .team-item h4 {
    font-size: 24px;
  }
  .about-us .team-wrap .team-item h4 + span {
    font-size: 18px;
  }

  .sixpack .title-wrap h2 {
    font-size: 50px;
  }
  .sixpack .title-wrap h2 span {
    font-size: 50px;
  }
  .sixpack .title-wrap + p {
    font-size: 20px;
  }

  .product .top h1 {
    max-width: 400px;
    font-size: 60px;
    line-height: 1.1em;
  }
  .product .top h1 .text-three {
    font-size: 60px;
  }

  .text-img.txt-influence {
    width: 295px;
    height: 60px;
    margin-bottom: 0;
    background-size: auto 52px;
  }

  .product .top .title-wrap + p {
    font-size: 18px;
    max-width: 600px;
  }

  .product .product-items-wrap .product-item .img-wrap {
    display: flex;
    align-items: center;
    justify-content: center !important;
    padding: 0 !important;
    flex: 0 0 40%;
    max-width: 40%;
  }
  .product .product-items-wrap .product-item .text-wrap {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .product .product-items-wrap > .row .col-6:last-child ul {
    padding-left: 0;
  }

  .product .product-items-wrap > .row {
    margin-top: 30px;
  }

  .product .product-items-wrap > .row ul li {
    font-size: 20px;
  }
  .product .product-items-wrap > .row ul li:before {
    top: 7px;
  }

  .product .product-items-wrap + .center .title-wrap h2 {
    margin-top: 30px;
  }

  .plans-wrap .row {
    justify-content: center;
  }
  .plans-wrap .row .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }

  .plans-wrap .row .col-3:last-child .item-wrap ul li:nth-child(8) {
    display: none;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item {
    flex-wrap: wrap;
  }
  .blogs .blogs-wrap .row .col-4:first-child .blog-item .img-wrap {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    height: 300px !important;
  }
  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0;
  }

  .blogs .blog-detail .row .col-4:first-child {
    margin-bottom: 0;
  }
  .blogs .blog-detail .row .col-4:first-child .blog-item .text-wrap p {
    padding-bottom: 0;
  }

  .sixpack .sixpack-wrap {
    flex-wrap: wrap;
    padding: 80px 0 40px;
  }
  .sixpack .sixpack-wrap .six-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    margin-bottom: 30px;
  }

  .about-us .body-wrap .team-wrap .row .col-3 .team-item {
    animation-delay: 0s !important;
  }

  .about-us #scroll-section .title-wrap h2 {
    font-size: 48px;
  }

  .product .product-items-wrap {
    padding: 50px 0;
  }

  .products-steps .row.step-2 {
    background: none !important;
  }

  .products-steps .row.step-3 .number-wrap {
    left: 0;
  }

  .products-steps .row.step-2 .number-wrap h3 span {
    margin: 0 !important;
  }

  .products-steps .number-wrap h3 {
    text-align: left;
    margin-left: 25px !important;
  }

  .products-steps .row .col-8 > .row .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .products-steps .row.step-2 .number-wrap {
    left: 0;
  }

  .product #scroll-section .title-wrap h2 {
    font-size: 50px;
    margin-bottom: 0;
  }

  .products-steps .text-wrap h4 {
    font-size: 24px;
  }

  .products-steps .text-wrap ul li {
    font-size: 16px;
  }

  .benefits .title-wrap h2 {
    font-size: 70px;
    max-width: 800px;
  }

  .benefits .product-item-wrap .product-item .text-wrap h4 {
    font-size: 22px;
  }

  .benefits .product-item-wrap {
    padding: 70px 0 80px;
  }

  .benefits .product-item-wrap + .center .title-wrap + p {
    font-size: 22px;
  }

  .product #scroll-section .title-wrap {
    top: 0;
  }

  .product .products-steps .row.step-1 .col-8 > .row .text-wrap {
    margin-bottom: -70px;
  }

  .product .products-steps .row.step-2 .col-8 > .row .text-wrap {
    margin-bottom: 0;
  }

  .products-steps .row.step-3 .text-wrap {
    left: 0;
    padding-left: 0;
  }

  .blog-section .row.only-one .col-4 .item-wrap {
    flex-wrap: wrap;
  }

  .blog-section .row.only-one .col-4 .item-wrap {
    max-width: 480px;
  }
  .blog-section .row.only-one .col-4 .item-wrap .img-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    height: 200px;
  }
  .blog-section .row.only-one .col-4 .item-wrap .text-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .blog-section .row.only-one {
    padding: 0;
  }

  .practice-options .practice-item .practive-item-wrap {
    max-width: 70% !important;
  }

  .practice-options {
    padding: 30px 0 40px;
  }

  .products-steps .row .number-wrap {
    margin-bottom: -10px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  .products-steps .row.step-2 .col-8,
.products-steps .row.step-3 .col-8 {
    padding-top: 0 !important;
  }

  .products-steps .row.step-2 .col-8 > .row .col-6:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .products-steps .row.step-2 .col-8 > .row .col-6:last-child .text-wrap {
    margin: 0;
  }

  .products .products-steps .row.step-2 .col-8 > .row {
    margin-bottom: 0;
  }

  .products .products-steps .row.step-3 .col-8 > .row {
    justify-content: flex-start;
  }

  .products-steps .row.step-3 .col-8 > .row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .products-steps .row.step-3 .col-8 > .row .col-6 .text-wrap {
    max-width: 100%;
  }

  .product .products-steps .row.step-1 .col-8 {
    justify-content: flex-start;
  }
  .product .products-steps .row.step-1 .col-8 > .row {
    max-width: 100%;
    width: auto;
  }

  .product .products-steps .row.step-1 .col-8 {
    padding-top: 0;
  }
  .product .products-steps .row.step-1 .number-wrap {
    padding-top: 0;
  }
  .product .products-steps .row.step-2 .col-8 {
    padding-top: 50px;
  }
  .product .products-steps .row.step-2 .number-wrap {
    padding-top: 30px;
  }
  .product .products-steps .row.step-3 .col-8 {
    padding-bottom: 0;
  }
  .product .products-steps .row.step-3 .number-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .product .products-steps .row.step-1 .col-8 > .row .text-wrap {
    margin-bottom: 0;
  }
  .product .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 425px;
  }

  .products-steps .number-wrap {
    background: none !important;
  }

  .product #scroll-section .title-wrap {
    padding: 15px 0 20px;
  }

  .product .product-items-wrap .product-item:nth-child(1) .img-wrap img:first-child {
    display: none;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4 {
    max-width: 380px;
  }
  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap p {
    max-width: 460px;
    margin-left: 0;
  }

  .products #scroll-section {
    padding-top: 10px;
  }

  .blogs .blogs-wrap .row .col-4 a {
    padding: 0;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .img-wrap {
    max-width: 480px !important;
  }

  .blogs .blogs-wrap .row .col-4 .blog-item .text-wrap > span {
    font-size: 15px;
  }

  footer .container > .row > .col-6 .footer-menu .row .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  footer .container > .row > .col-6 .footer-menu .row .col-3 ul li {
    width: 100%;
  }

  .products-steps .row.step-3 .col-8 > .title-wrap {
    padding-top: 0;
  }

  .products-steps .row.step-1 {
    background: none;
    padding-bottom: 0;
  }

  .products .products-steps .text-wrap {
    padding-bottom: 0;
  }

  .products .products-steps .row.step-3 .col-8 > .row .text-wrap {
    padding-bottom: 30px;
  }

  .practice .title-wrap {
    padding-top: 20px;
  }

  .practice .title-wrap + p {
    font-size: 18px;
    max-width: 400px;
    margin: 20px auto 40px;
  }

  .products-steps .row .col-8 > .title-wrap {
    padding-left: 0;
    text-align: center;
  }
  .products-steps .row .col-8 > .title-wrap h3 {
    margin-left: auto;
    margin-right: auto;
  }

  .products-steps .row .col-8 > .row {
    padding-left: 0;
  }

  .products .products-steps .row.step-1 .col-8 > .row {
    max-width: 500px;
    margin: 0 auto;
  }

  .products .products-steps .row.step-2 .col-8 > .row {
    max-width: 500px;
    margin: 0 auto;
  }

  .products .products-steps .row.step-3 .col-8 > .row {
    max-width: 295px;
    margin: 0 auto;
    position: relative;
    left: 20px;
  }

  .products-steps .row .col-8 > .title-wrap h3 {
    margin-bottom: 80px;
  }

  .products-steps .row .col-8 > .title-wrap h3 {
    font-size: 36px;
  }

  .products .row.step-3 .col-8 > .title-wrap h3 {
    max-width: 330px;
  }

  .products .products-steps > .row.step-2 {
    padding-top: 0;
  }

  .product .products-steps .row .col-8 > .row .text-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .product .products-steps .row.step-2 .col-8 .text-wrap {
    padding-right: 0;
  }

  .product .products-steps {
    padding-bottom: 50px;
  }

  .product .bevel-top {
    padding-bottom: 80px;
  }

  .benefits .title-wrap {
    padding-top: 60px;
  }

  .benefits .product-item-wrap {
    padding: 40px 0 60px;
  }

  .practice {
    padding-bottom: 60px;
  }

  .practice-steps {
    flex-wrap: wrap;
    border-bottom: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
  .practice-steps .item {
    padding: 0 20px;
    margin-bottom: 10px;
  }

  .our-tools .title-wrap {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .about-us #scroll-section .title-wrap h2 {
    font-size: 45px;
    margin-bottom: 50px;
    max-width: 380px;
  }

  .about-us .team-wrap .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-us #scroll-section .title-wrap + p {
    margin-bottom: 50px;
  }

  body.about-us .body-wrap .team-wrap .row .col-4 .team-item {
    animation-delay: 0s !important;
  }

  .about-us #scroll-section {
    padding-bottom: 50px;
  }

  .plans-section.bevel-top.bevel-end {
    padding-bottom: 0 !important;
  }

  .plans-wrap .row .col-3:last-child {
    margin-bottom: 0;
  }

  .product .top h1 {
    margin-bottom: 60px;
  }

  .product #scroll-section .container > .title-wrap h2 {
    margin-bottom: 0;
  }

  footer .container > .row > .col-6 .footer-menu {
    padding-bottom: 40px;
  }

  footer .container > .d-flex {
    flex-wrap: wrap;
  }
  footer .container > .d-flex > div:nth-child(1) {
    order: 2;
    flex: 0 0 50%;
    max-width: 50%;
  }
  footer .container > .d-flex > div:nth-child(2) {
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .container > .d-flex > div:nth-child(3) {
    display: flex;
    justify-content: flex-end;
    order: 3;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .copy-wrap + div.f-links-wrap {
    padding: 10px 0;
    justify-content: flex-start;
  }

  .top.database-top {
    padding-top: 125px;
  }
  .top.database-top h1 {
    font-size: 36px;
  }

  .table-instagram-wrap .flex-table .flex-row .col:nth-child(3) {
    display: none !important;
  }
  .table-instagram-wrap .flex-table .flex-row .col:nth-child(5) {
    max-width: 70px;
  }

  .insta-show .insta-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .insta-show .insta-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .insta-show .insta-right .row .col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .insta-show .insta-right .row .insta-box {
    flex-wrap: wrap;
  }
  .insta-show .insta-right .row .insta-box .img-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .insta-show .insta-right .row .insta-box .img-wrap + div {
    padding-left: 0;
    text-align: center;
  }

  .insta-show .insta-right .row .insta-box p {
    justify-content: center;
  }

  .insta-show .insta-left .insta-data {
    padding-bottom: 32px;
  }

  .insta-show .insta-right {
    padding-bottom: 15px;
  }

  .insta-show .insta-right .insta-box .d-flex {
    padding-left: 5px;
    padding-top: 15px;
    justify-content: center;
  }

  .event #scroll-section .row {
    padding-bottom: 20px;
  }
  .event #scroll-section .row .col-4 .event-box {
    max-width: 195px;
  }
  .event #scroll-section .row .col-4 p {
    font-size: 24px;
  }

  .program-wrap::before {
    top: 22px;
  }
  .program-wrap .event-program-row {
    flex-wrap: wrap;
  }
  .program-wrap .event-program-row:last-child::before {
    top: 25px;
  }
  .program-wrap .event-program-row .event-time {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .program-wrap .event-program-row .event-time span {
    background: none;
    box-shadow: none;
    padding: 0;
    padding: 10px;
    text-align: left;
  }
  .program-wrap .event-program-row .event-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .speakers .row .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .speakers .row .col-4 .speaker-box.in-view {
    animation-delay: 0ms !important;
  }

  .insta-show .insta-right .row .insta-box strong {
    display: inline-block;
    width: 100%;
    padding-top: 10px;
  }

  .pop-event .success-wrap h3 {
    font-size: 26px;
    line-height: 1.5em;
  }

  .event .top .title-wrap strong {
    font-size: 18px;
    padding: 13px 23px;
  }

  .event .top .title-wrap .registration-closed {
    top: 80px;
  }

  .text-blog .col-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .text-blog .col-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .performance-information > .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .insta-show + section .insta-analytics.unlocked {
    padding-top: 50px;
    padding-bottom: 10px;
  }

  .insta-show + section .insta-analytics.unlocked h1 {
    font-size: 32px;
    max-width: 375px;
  }

  .event.event-masterclass .program-wrap .event-program-row .event-content:not(.event-consultations) > .d-flex {
    flex-wrap: wrap;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-content:not(.event-consultations) > .d-flex > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-content:not(.event-consultations) .event-persons {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: start;
    flex-direction: row-reverse;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-content:not(.event-consultations) .event-persons .event-person-names {
    padding-right: 0;
    padding-left: 16px;
    text-align: left;
  }

  .event.event-masterclass #scroll-section .row .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .event.event-masterclass #scroll-section .row .col-4 .event-box {
    flex-wrap: wrap;
  }

  .slider-wrap .slider-next {
    top: auto;
    bottom: 110px;
    right: 30px;
    z-index: 1;
  }
  .slider-wrap .slider-prev {
    top: auto;
    bottom: 110px;
    left: 30px;
    z-index: 1;
  }
  .slider-wrap .slider-dots {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100px;
    bottom: 125px;
    left: 30px;
    right: 30px;
    margin: auto;
    z-index: 1;
  }

  .pop-up.pop-slider .pop-wrap .pop-content {
    padding-left: 0;
    padding-right: 0;
  }

  .slider-wrap .slider-content .slider-item .slider-text .button-wrap {
    padding-top: 90px;
  }

  .slider-wrap .slider-content .slider-item {
    transform: none;
  }

  .slider-wrap .slider-prev {
    z-index: 2;
  }
  .slider-wrap .slider-next {
    z-index: 2;
  }
  .slider-wrap .slider-dots {
    z-index: 2;
  }
  .slider-wrap .slider-item.active {
    z-index: 1;
  }

  .login-top.register-top + .bg-gray .max-wrap {
    margin-top: 30px;
  }

  .reg-vop-wrap.center.mb-5.pb-5 {
    margin-bottom: 20px !important;
  }

  .event-instagram .text-img.txt-instagram {
    background-size: auto 70px;
    height: 80px;
  }

  .event.event-masterclass.event-instagram .title-wrap h1 {
    line-height: 60px;
  }

  .table-instagram-wrap .table-overview {
    overflow: auto;
  }

  .table-instagram-wrap .flex-table .flex-row .col:nth-child(3),
.table-instagram-wrap .flex-table .flex-row .col:nth-child(4) {
    display: flex !important;
  }

  .table-instagram-wrap .flex-table .flex-row .col:nth-child(1) {
    flex: 0 0 80px;
    max-width: 80px;
  }
  .table-instagram-wrap .flex-table .flex-row .col:nth-child(2) {
    flex: 0 0 220px;
    max-width: 220px;
  }
  .table-instagram-wrap .flex-table .flex-row .col:nth-child(3) {
    flex: 0 0 80px;
    max-width: 80px;
  }
  .table-instagram-wrap .flex-table .flex-row .col:nth-child(4) {
    flex: 0 0 180px;
    max-width: 180px;
  }
  .table-instagram-wrap .flex-table .flex-row .col:nth-child(5) {
    flex: 0 0 100px;
    max-width: 100px;
  }
  .table-instagram-wrap .flex-table .flex-row .col:nth-child(6) {
    flex: 0 0 120px;
    max-width: 120px;
  }

  .table-instagram-wrap .flex-table div.flex-row {
    padding: 0;
  }
  .table-instagram-wrap .flex-table div.flex-row .col {
    padding-top: 17px;
    padding-bottom: 20px;
    background: #e1e1e4 !important;
  }
  .table-instagram-wrap .flex-table a.flex-row:hover .col {
    background: #e4f7f8;
  }
  .table-instagram-wrap .flex-table .flex-row:nth-child(2n+1) .col {
    background: #f8f8f8;
  }
  .table-instagram-wrap .flex-table .flex-row:nth-child(2n) .col {
    background: #fff;
  }

  .table-instagram-wrap .flex-table .flex-row {
    padding-top: 0;
    padding-bottom: 0;
  }
  .table-instagram-wrap .flex-table .flex-row .col {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .advance-filter-wrap #app > .d-flex .content-container {
    display: block;
  }

  .advance-filter-wrap .table-container {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  .advance-filter-all .left-container {
    margin-right: 0;
  }
  .advance-filter-all .filter-container ul {
    display: flex;
    flex-wrap: wrap;
  }
  .advance-filter-all .filter-container ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .unlocked-table .table-instagram-wrap .flex-table .flex-row .col:nth-child(1) {
    flex: 0 0 300px;
    max-width: 300px;
  }

  .unlocked-table.table-instagram-filter-wrap .flex-table span.flex-row {
    padding-top: 0;
    padding-bottom: 0;
  }
  .unlocked-table.table-instagram-filter-wrap .flex-table span.flex-row .col {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .advance-filter-wrap .body-wrap .left-container {
    margin-right: 0;
  }

  .insta-home .database-top .sowa-title h1 {
    font-size: 36px;
    line-height: 1.1em;
    padding-bottom: 0;
  }
  .insta-home .database-top .sowa-title p {
    font-size: 38px;
    line-height: 1.1em;
    margin-bottom: 100px;
  }

  .nominations-wrap ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .sowa-all .table-instagram-wrap .flex-table .flex-row .col:nth-child(5) {
    display: flex;
  }

  .timeline-check-range-wrap .timeline-form-check {
    width: auto;
    margin-right: -24px;
  }

  .post-filter .date-range-wrap {
    margin-left: 0 !important;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .row.perf-category .white-box > .d-flex.justify-content-between {
    flex-wrap: wrap;
  }
  .row.perf-category .white-box > .d-flex.justify-content-between > .d-flex {
    width: 100%;
  }

  .instagram-section .insta-title-tooltip {
    position: relative;
  }
  .instagram-section .insta-title-tooltip .tooltip {
    position: static;
  }
  .instagram-section .insta-title-tooltip .tooltip .tooltip-top {
    width: 100%;
    left: 10px;
    right: 10px;
  }

  .home .our-tools #tab-flatrate > .center p {
    font-size: 16px;
    margin: 10px auto 20px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .row.performance-information .col-3:nth-child(2n) .tooltip .tooltip-top {
    left: auto;
    right: 0;
  }
  .row.performance-information .col-3:nth-child(2n) .tooltip .tooltip-top::after {
    display: none;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .instagram-section .trend-data .date-range-wrap {
    padding-left: 4px;
    padding-right: 4px;
  }

  .instagram-section .trend-data .white-box h4 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .date-range-wrap input {
    padding: 0 4px;
    font-size: 12px;
  }

  .post-filter .date-range-wrap {
    max-width: 245px;
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 600px) {
  .contact-row .item-wrap h5 {
    font-size: 15px;
  }
  .contact-row .item-wrap p {
    font-size: 15px;
  }

  #contact-form .row .col-7 .d-flex {
    flex-wrap: wrap;
  }

  .contact-form .form-textarea + .d-flex {
    margin-top: 20px;
  }
  .contact-form .form-textarea + .d-flex .upload-wrap + div {
    padding: 10px 0 20px;
    width: 100%;
  }

  .products-steps .number-wrap h3 {
    font-size: 36px !important;
    line-height: 36px !important;
  }
  .products-steps .number-wrap h3 strong,
.products-steps .number-wrap h3 span {
    font-size: 36px;
  }

  .product .products-steps .number-wrap h3 {
    font-size: 36px;
    line-height: 36px;
  }
  .product .products-steps .number-wrap h3 strong,
.product .products-steps .number-wrap h3 span {
    font-size: 36px;
  }

  .benefits .product-item-wrap {
    padding-bottom: 50px;
  }

  .benefits .title-wrap h2 {
    font-size: 56px;
  }

  .benefits .product-item-wrap + .center .title-wrap + p {
    margin: 20px 0 35px;
  }

  .benefits .product-item-wrap + .center .title-wrap + p {
    font-size: 18px;
  }

  .product .products-steps .row.step-2 .col-8 .text-wrap {
    padding-right: 0;
  }

  .products .top p br {
    display: none;
  }

  .top {
    padding-top: 26%;
  }

  .blogs .blog-detail .top-detail .text-wrap h1 {
    font-size: 40px;
  }

  .blogs .blog-detail .top-detail .text-wrap p {
    font-size: 20px;
  }

  main .text-blog .text-blog-wrap .author-wrap .d-flex .img-wrap img {
    max-width: 100px;
  }

  main .text-blog .text-blog-wrap .author-wrap .d-flex > div {
    flex-wrap: wrap;
  }
  main .text-blog .text-blog-wrap .author-wrap .d-flex > div > span {
    margin-top: 5px;
  }

  .product .products-steps .text-wrap ol {
    left: 0 !important;
  }
  .product .products-steps .text-wrap ol + ol {
    margin-top: 30px;
  }

  header.scroll .header-wrap .nav-wrap {
    overflow: hidden;
  }

  .product-benefits-wrap > .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-benefits-wrap > .row .col-4 .text-box span {
    margin: 25px 0 10px;
  }

  .product-benefits-wrap > .row .col-4 .text-box .icon-wrap img {
    max-width: 50px;
  }

  .insta-map-filter {
    flex-wrap: wrap;
    max-width: 245px;
  }
  .insta-map-filter .check-group {
    margin-right: 0;
    padding-right: 15px;
    width: 50%;
  }

  .insta-show + section .container > h1 {
    padding-top: 30px;
  }

  .perf-row.row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .perf-row.row .col-6 + .col-6 {
    margin-top: 32px;
  }

  header .header-wrap .nav-wrap {
    padding-top: 160px;
  }
  header .header-wrap .instagram-input-wrap {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    padding: 0 22px;
    padding-top: 6px;
  }
  header .header-wrap .instagram-input {
    max-width: 100%;
  }
  header .header-wrap .instagram-input .input-wrap {
    max-width: 100%;
    margin: 0;
    padding-top: 0;
  }

  header.scroll .header-wrap .nav-wrap {
    padding-top: 120px;
  }
  header.scroll .header-wrap .instagram-input-wrap {
    top: 50px;
  }
  header.scroll .header-wrap .instagram-input {
    max-width: 100%;
  }
  header.scroll .header-wrap .instagram-input .input-wrap {
    margin: 0;
  }

  header .header-wrap .nav-wrap nav > ul {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  header .header-wrap .nav-wrap .lng-wrap {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  header .header-wrap .nav-wrap .lng-wrap .button {
    margin-right: 0;
  }

  .event #scroll-section .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .event #scroll-section .row .col-4 .event-box {
    display: flex;
    align-items: center;
    max-width: 100% !important;
    text-align: left;
    margin-bottom: 30px;
  }
  .event #scroll-section .row .col-4 .event-box .img-wrap {
    flex: 0 0 100px;
    max-width: 100px;
  }
  .event #scroll-section .row .col-4 .event-box p {
    margin: 0;
  }
  .event #scroll-section .row .col-4 .event-box strong {
    margin-top: 0;
    margin-bottom: 4px;
  }

  .event #scroll-section .desription-wrap {
    padding-bottom: 30px;
  }

  .insta-show .insta-right .row .insta-box strong {
    font-size: 24px;
  }

  .insta-show .insta-right .insta-box strong .lock-icon {
    height: 30px;
    background-size: auto 30px;
  }

  .instagram-input {
    max-width: 100%;
  }

  .blogs .blogs-wrap .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .insta-show .insta-left .insta-data > div {
    margin-right: 40px;
    vertical-align: top;
  }

  .instagram-section .trend-data > .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .instagram-section .mention-data > .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .event.event-masterclass .speakers .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .event-author-time {
    flex-wrap: wrap;
  }

  .slider-wrap .slider-content .slider-item .slider-text h2 {
    font-size: 32px;
  }

  .speakers .row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-9 .row {
    margin-right: 0;
  }

  .post-filter.row .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .post-filter.row .col .instagram-input .input-wrap {
    margin: 0;
    margin-bottom: 16px;
  }

  header .header-wrap .nav-wrap .lng-wrap {
    max-width: 100%;
  }

  .post-filter + .post-filter .col:first-child ~ .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .post-filter + .post-filter .col:first-child ~ .col:last-child .instagram-select {
    margin-bottom: 0;
  }
  .post-filter + .post-filter .col:first-child ~ .col .instagram-select {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .filter-toogle {
    display: block !important;
  }

  .our-tools .row {
    margin-top: 30px;
  }

  .top.blogs-wrap {
    padding-top: 100px;
    padding-bottom: 30px;
  }

  main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex h6,
main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex p,
main .text-blog .text-blog-wrap .author-wrap .d-flex .d-flex span {
    font-size: 14px;
  }

  .sixpack .sixpack-wrap {
    flex-wrap: wrap;
    padding: 80px 0 20px;
  }
  .sixpack .sixpack-wrap .six-item {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
  .sixpack .sixpack-wrap .six-item:last-child {
    margin-top: 20px;
  }

  .contact-form .upload-wrap .upload-button {
    font-size: 18px;
  }

  .contact-form {
    padding: 10px 20px;
    padding-bottom: 40px;
    padding-top: 35px;
    border-radius: 20px;
    border-top-right-radius: 0;
  }
  .contact-form .form-label {
    padding-top: 18px;
    margin-top: 0;
  }
  .contact-form .form-label.form-textarea {
    margin-top: 5px;
  }
  .contact-form .form-label.form-textarea + .d-flex.justify-content-between {
    justify-content: center !important;
    margin-top: 30px;
    padding-bottom: 0;
  }
  .contact-form .form-label.form-textarea + .d-flex.justify-content-between .upload-wrap {
    margin-right: 0;
    padding-left: 0;
  }
  .contact-form .form-label.form-textarea + .d-flex.justify-content-between .upload-wrap + div {
    margin-left: 0;
    justify-content: center;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .contact-form .form-label.form-textarea + .d-flex.justify-content-between .upload-wrap .upload-button {
    font-size: 15px;
    padding-left: 50px;
    background-size: auto 32px;
  }

  .product .product-items-wrap .product-item .img-wrap {
    padding: 0 !important;
    padding-bottom: 40px !important;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .product .product-items-wrap .product-item .text-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product .product-items-wrap .product-item:nth-child(1) .img-wrap {
    padding-bottom: 80px !important;
  }

  .product .product-items-wrap .product-item:nth-child(6) .img-wrap img {
    top: 0;
  }

  .product .product-items-wrap .product-item:nth-child(2) {
    padding-top: 0;
  }

  .product .product-items-wrap .product-item:nth-child(2n) {
    padding-top: 10px;
  }

  .product .product-items-wrap .product-item:nth-child(4) {
    padding-top: 20px;
  }
  .product .product-items-wrap .product-item:nth-child(4) .img-wrap img {
    max-width: 170px;
  }

  .our-tools .row .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
    top: 0 !important;
    margin-bottom: 30px;
  }

  .event.event-masterclass #scroll-section .desription-wrap {
    padding-bottom: 32px;
  }

  .event.event-masterclass #scroll-section .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .event.event-masterclass #scroll-section .row .col-4 .event-box .event-title {
    padding-bottom: 0;
    border: 0;
    margin-bottom: 0;
  }
  .event.event-masterclass #scroll-section .row .col-4 .event-box .event-title::after {
    display: none;
  }
  .event.event-masterclass #scroll-section .row .col-4 .event-box .event-title .img-wrap {
    flex: 0 0 70px;
    max-width: 70px;
  }
  .event.event-masterclass #scroll-section .row .col-4 p {
    margin-top: 16px;
  }

  .practice-options {
    padding: 0 0 30px;
  }

  .practice-options .practice-item .practive-item-wrap {
    flex: 0 0 80%;
    max-width: 80% !important;
  }

  .text-img.txt-marketing {
    width: 320px;
    height: 120px;
    background-size: auto 108px;
    margin-top: 0;
    margin-bottom: 38px;
  }

  .products .top h1 {
    font-size: 38px;
  }

  .contact .contact-map {
    bottom: 220px;
  }

  .about-us .team-wrap {
    padding-bottom: 30px;
  }
  .about-us .team-wrap .row .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .text-img.txt-datach {
    width: 320px;
  }

  .top .title-wrap {
    margin: -10px;
  }

  .home .top h1 {
    font-size: 50px;
    max-width: 325px;
  }

  .text-img.txt-doping {
    width: 180px;
    height: 62px;
    margin-bottom: -6px;
    top: -5px;
    background-size: auto 60px;
    left: -2px;
  }

  header .header-wrap {
    padding-top: 20px;
  }

  header.scroll .header-wrap {
    margin-top: 0;
  }

  .header-wrap .logo-wrap img {
    max-width: 120px;
  }

  .contact .container > .row .col-7 .text-box h2 {
    font-size: 40px;
  }
  .contact .container > .row .col-7 .text-box h2 span {
    font-size: 38px;
  }

  .contact .container > .row .col-7 .text-box p {
    font-size: 18px;
  }

  .our-tools .row .col-3 {
    margin-bottom: 15px;
  }
  .our-tools .row .col-3 .item-wrap h3 {
    margin: 0 !important;
  }
  .our-tools .row .col-3 .item-wrap ul {
    max-width: 150px !important;
    left: 15px !important;
  }
  .our-tools .row .col-3:nth-child(1) .icon-wrap img {
    max-width: 70px;
  }
  .our-tools .row .col-3:nth-child(2) .icon-wrap img {
    max-width: 90px;
  }
  .our-tools .row .col-3:nth-child(3) .icon-wrap img {
    max-width: 70px;
  }
  .our-tools .row .col-3:nth-child(1) .item-wrap ul, .our-tools .row .col-3:nth-child(4) .item-wrap ul {
    max-width: 130px !important;
  }

  a.link {
    font-size: 18px;
  }
  a.link:after {
    top: 5px;
    font-size: 35px;
  }

  .our-tools .all-produts {
    margin-top: 0;
    padding-bottom: 20px;
  }

  .blog-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .blog-section .all-blogs {
    padding-top: 0;
  }

  .contact-form > p {
    font-size: 18px;
  }

  .contact .contact-form {
    padding-top: 60px;
  }

  .text-blog .img-margin {
    overflow: hidden;
  }
  .text-blog .img-margin .img-wrap {
    margin-right: -100px;
  }

  .home .bg-blue::before,
.home .bg-blue::after,
.contact::before,
.contact::after {
    width: 30px;
    height: 30px;
  }

  .our-tools .col-3 .item-wrap.in-view {
    animation-delay: 0s !important;
  }

  .body-wrap .blog-section .row .col-4 .item-wrap {
    animation-delay: 0s !important;
  }

  .products-steps .number-wrap.in-view {
    animation-delay: 0s !important;
  }

  .products-steps .row .col-8 .row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .products-steps .number-wrap {
    flex-wrap: wrap;
  }

  .our-tools .row .col-3 .icon-wrap {
    height: 80px;
  }

  .plans-wrap .row .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product .product-items-wrap + .center .title-wrap h2 {
    font-size: 60px;
    line-height: 1em;
  }
  .product .product-items-wrap + .center .title-wrap + p {
    font-size: 20px;
  }

  .product .product-items-wrap + .center {
    padding-bottom: 0;
  }

  .socila-icon ul li a {
    width: 40px;
    height: 60px;
  }
  .socila-icon ul li a.fk {
    background-size: auto 20px;
  }
  .socila-icon ul li a.im {
    background-size: auto 20px;
  }
  .socila-icon ul li a.ln {
    background-size: auto 20px;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item {
    padding-top: 0;
  }

  .blogs .blogs-wrap .row.col-4:not(:first-child) .blog-item .img-wrap {
    height: 300px;
  }

  .plans-wrap .row .col-3.item-wrap.in-view {
    animation-delay: 0s;
  }

  .practice-options .practice-item a.link {
    font-size: 16px;
  }

  .about-us #scroll-section .title-wrap + p {
    font-size: 18px;
    margin-bottom: 60px;
  }

  .products-steps .number-wrap h3 {
    top: 0;
  }

  header .header-wrap .logo-wrap .logo {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url("/frontend/img/logo-mobil.svg") center center no-repeat;
    background-size: 42px auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
  }
  header .header-wrap .logo-wrap .logo img {
    display: none;
  }
  header.scroll .header-wrap .logo-wrap .logo {
    width: 30px !important;
    height: 30px !important;
    background-size: 30px auto !important;
  }

  .our-tools .row {
    margin-left: -30px;
    margin-right: -20px;
  }
  .our-tools .row .col-3 .item-wrap h3 {
    font-size: 21px;
  }
  .our-tools .row .col-3 .item-wrap h3::before {
    font-size: 17px;
  }
  .our-tools .row .col-3 .item-wrap ul {
    left: 35px !important;
    margin: 0;
  }
  .our-tools .row .col-3 .item-wrap ul li {
    font-size: 15px;
    margin: 1px 0;
  }
  .our-tools .row .col-3 .item-wrap ul li:before {
    width: 4px;
    height: 4px;
    top: 8px;
    left: -10px;
  }
  .our-tools .row .col-3:nth-child(1) .icon-wrap img {
    max-width: 60px;
  }
  .our-tools .row .col-3:nth-child(2) {
    padding-bottom: 0;
  }
  .our-tools .row .col-3:nth-child(2) .icon-wrap img {
    max-width: 70px;
  }
  .our-tools .row .col-3:nth-child(3) .icon-wrap img {
    max-width: 60px;
  }
  .our-tools .row .col-3:nth-child(4) .icon-wrap img {
    max-width: 60px;
  }

  a.link {
    font-size: 15px;
  }

  .our-tools .title-wrap + p {
    font-size: 18px;
  }
  .our-tools .title-wrap + p .text-three {
    font-size: 1.12em;
  }

  .blogs .row .col-4:not(:first-child) .blog-item .img-wrap {
    height: 180px;
  }
  .blogs .row .col-4:not(:first-child) .blog-item .text-wrap span {
    font-size: 12px;
  }
  .blogs .row .col-4:not(:first-child) .blog-item .text-wrap h4 {
    font-size: 22px;
  }
  .blogs .row .col-4:not(:first-child) .blog-item .text-wrap p {
    font-size: 15px;
  }

  .blog-section .row .col-4 .item-wrap .img-wrap {
    height: 180px;
  }

  .products #scroll-section .products-steps .step-1 .col-4 {
    padding-bottom: 20px;
  }
  .products #scroll-section .products-steps .step-1 .col-8 .text-wrap {
    padding-left: 20px;
  }
  .products #scroll-section .products-steps .step-1 .col-8 > .row .col-6:last-child {
    padding-left: 0;
  }
  .products #scroll-section .products-steps .step-2 {
    padding: 20px 0 0;
    margin-top: 0;
  }
  .products #scroll-section .products-steps .step-3 .col-4 {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .products-steps .row.step-3 .col-8 > .row .col-6 {
    max-width: 100%;
  }

  .products-steps .row.step-3 .col-8 > .row .col-6 .text-wrap {
    max-width: 315px;
  }

  .products-steps .text-wrap ul li {
    font-size: 16px;
  }

  .practice-options .practice-item .practive-item-wrap h3 {
    font-size: 32px;
  }
  .practice-options .practice-item .practive-item-wrap p {
    font-size: 15px;
  }

  .home .top .title-wrap + span {
    margin-bottom: 20%;
  }

  .top h1 {
    margin-bottom: 20%;
  }

  .products-steps .row .number-wrap {
    margin-bottom: 0;
  }
  .products-steps .row .number-wrap h3 {
    text-align: center;
    margin-left: auto !important;
    width: 100%;
  }

  .products-steps .row.step-2 .number-wrap {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .products-steps .number-wrap > span {
    font-size: 160px !important;
  }

  .products .products-steps .row.step-2 .col-8 > .row .col-6:first-child h4 {
    max-width: 100%;
  }

  .products-steps .row.step-2 .col-8 > .row .col-6:last-child {
    padding-top: 0;
  }
  .products-steps .row.step-2 .col-8 > .row .col-6:last-child .text-wrap {
    margin: 0 auto;
  }

  .practice-options .practice-item .practive-item-wrap p,
.practice-options .practice-item .practive-item-wrap h3,
.products .products-steps .text-wrap ul li {
    letter-spacing: 0;
  }

  .products #scroll-section .products-steps .step-2 .row .col-6 + .col-6 {
    padding-top: 5px;
  }

  .products .products-steps .text-wrap h4 {
    margin-bottom: 12px;
  }

  .products-steps .text-wrap ul li::before {
    width: 4px;
    height: 4px;
    top: 8px;
    left: -10px;
  }

  .practice-options .practice-item .practive-item-wrap a.link {
    font-size: 16px;
  }
  .practice-options .practice-item .practive-item-wrap a.link:after {
    top: 4px;
    font-size: 30px;
  }

  .blogs .blogs-wrap .row.col-4 .blog-item .text-wrap p {
    font-size: 16px;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item .text-wrap h4 {
    font-size: 38px;
  }

  .product #scroll-section {
    padding-top: 40px;
  }

  .product .products-steps .row.step-1 .number-wrap {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .product .products-steps .row.step-2 .number-wrap {
    padding-top: 40px;
  }
  .product .products-steps .row.step-3 .number-wrap {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .product .products-steps .text-wrap ol {
    left: 0 !important;
    margin: 0 -20px;
    width: calc(100% + 60px);
  }

  .product.p-price .products-steps .text-wrap ol {
    left: 20px !important;
  }

  .product .products-steps .row.step-2 .number-wrap {
    padding-top: 30px;
  }

  .products-steps .text-wrap ol li img {
    max-height: 50px !important;
  }
  .products-steps .text-wrap ol li .img-wrap.g-icon img {
    max-height: 65px !important;
  }

  .product .products-steps .row.step-1 .col-8 > .row .text-wrap {
    margin-bottom: 0;
  }

  .product .products-steps .text-wrap ol li {
    margin-bottom: 20px !important;
  }

  .benefits .product-item-wrap {
    padding: 40px 0 40px;
  }

  .benefits .product-item-wrap .product-item {
    flex-wrap: wrap;
  }
  .benefits .product-item-wrap .product-item .text-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .benefits .product-item-wrap .product-item .img-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-bottom: 40px;
  }
  .benefits .product-item-wrap .product-item .img-wrap img {
    max-width: 100px;
  }

  .benefits .product-item-wrap + .center {
    padding-bottom: 40px;
  }

  .product #scroll-section .title-wrap {
    padding: 0;
  }

  .top p {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .product .product-items-wrap {
    padding: 100px 0 20px;
  }

  .product .product-items-wrap .product-item:nth-child(1) .img-wrap img:first-child {
    display: inline-block;
  }

  .product .product-items-wrap .product-item .text-wrap h3 {
    font-size: 34px;
  }

  .product .product-items-wrap .product-item .text-wrap > span {
    font-size: 15px;
  }

  .product .product-items-wrap .product-item .text-wrap p {
    font-size: 16px;
    letter-spacing: 0;
  }

  .product .product-items-wrap .product-item {
    padding-top: 30px;
  }

  .product .product-items-wrap .product-item:nth-child(2n) {
    padding-top: 30px;
  }

  main .text-blog .text-blog-wrap .author-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .blogs .blog-detail .top-detail .text-wrap h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .blogs .blog-detail .top-detail .img-wrap {
    height: 300px;
  }

  .blogs .blog-detail .top-detail .text-wrap h1 {
    text-align: left;
    margin-top: 25px;
    margin-bottom: 40px;
  }
  .blogs .blog-detail .top-detail .text-wrap h1 strong {
    width: auto;
  }

  .blogs .blog-detail .top-detail .text-wrap p {
    font-size: 18px;
  }

  main .text-blog .text-blog-wrap p {
    font-size: 15px;
  }

  .text-blog .text-blog-wrap .ol-follower li {
    font-size: 15px;
  }

  .text-blog .text-blog-wrap .ol-follower {
    margin-top: 15px;
  }

  main .text-blog .text-blog-wrap ul li {
    font-size: 15px;
  }

  main .text-blog .text-blog-wrap h2 {
    font-size: 30px;
  }

  main .text-blog .text-blog-wrap h3 {
    font-size: 24px;
    margin-bottom: 0;
  }

  .text-img.txt-activation {
    left: 0 !important;
    background-size: auto 63px !important;
  }

  .products-steps .text-wrap ul {
    padding-left: 12px;
  }

  .benefits .product-item-wrap .product-item .text-wrap ul {
    padding-left: 12px;
  }

  .benefits .product-item-wrap .product-item .text-wrap ul li::before {
    top: 10px;
    width: 4px;
    height: 4px;
    left: -10px;
  }

  .bevel-top .bevel::before {
    transform: rotate(-2deg);
  }

  .bevel-top .bevel::after {
    top: -22px;
    transform: scaleX(-1) rotate(-2deg);
  }

  .product .top .title-wrap + p {
    font-size: 16px;
  }

  .products .scroll-arrow {
    margin-top: 20px;
  }

  .scroll-arrow {
    margin-top: 40px;
  }

  footer {
    padding-top: 50px;
  }

  footer .container > .row > .col-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .container > .row > .col-2 .footer-logo {
    padding-top: 0;
    padding-bottom: 40px;
  }
  footer .container > .row > .col-6 {
    padding-left: 10px;
  }
  footer .container > .row > .col-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .container > .row > .col-10 .footer-link {
    display: inline-block;
  }

  header .header-wrap .logo-wrap .logo::before {
    display: none !important;
  }

  .home .top .title-wrap + span + p {
    font-size: 16px;
  }

  header .header-wrap .nav-wrap nav > ul > li > a {
    font-size: 30px !important;
  }
  header .header-wrap .nav-wrap nav > ul > li > a:before {
    font-size: 25px;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 h5 {
    font-size: 18px;
  }

  header .header-wrap .nav-wrap .lng-wrap .button {
    margin-right: 155px;
    padding: 14px 33px;
  }

  .products .products-steps .row.step-3 .col-8 > .row {
    left: 0;
    padding-bottom: 40px;
  }

  .products .products-steps .row.step-2 .number-wrap {
    padding-bottom: 0;
  }

  .products .products-steps .row.step-1 .number-wrap {
    margin-bottom: -15px;
  }

  .products .products-steps .row.step-3 .number-wrap {
    margin-bottom: -15px;
  }

  .practice .title-wrap {
    padding-bottom: 40px;
  }
  .practice .title-wrap h2 {
    font-size: 40px;
  }
  .practice .title-wrap h2 span {
    font-size: 42px;
  }

  #contact-form .row .col-7 .d-flex {
    padding-bottom: 20px;
  }

  .product .products-steps .row.step-2 .number-wrap {
    padding-bottom: 0;
  }

  .product .products-steps .row.step-1 .number-wrap {
    padding-bottom: 0;
  }

  .product .products-steps .row.step-3 .number-wrap {
    padding-bottom: 0;
  }

  .product .products-steps .row.step-2 .col-8 > .title-wrap h3 {
    max-width: 320px;
  }

  .product.p-insight .products-steps .text-wrap ol li {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  header .header-wrap .nav-wrap .lng-wrap .button {
    margin-right: 25px;
  }

  .product .products-steps .row .col-8 > .title-wrap h3 {
    margin-bottom: 80px;
  }

  .practice .title-wrap {
    padding-top: 40px;
    padding-bottom: 25px;
  }

  .practice-options .practice-item {
    padding: 20px 0;
  }

  .practice .title-wrap h2 {
    font-size: 50px;
  }

  .blogs .blogs-wrap .row .col-4:first-child .blog-item {
    padding-bottom: 30px;
  }

  .practive-item-wrap .button {
    padding: 10px 22px;
  }

  .products-steps .text-wrap h4 {
    font-size: 22px;
  }

  .products-steps .text-wrap ol li h6 {
    font-size: 16px !important;
  }

  .benefits .product-item-wrap + .center .title-wrap + p {
    margin-bottom: 50px;
  }

  .title-wrap h2 {
    font-size: 50px;
  }

  #demo .center p {
    font-size: 16px;
    margin-bottom: 45px;
  }

  #demo .demo-img {
    padding-bottom: 20px;
  }

  .product.p-satisfaction .products-steps .text-wrap ol {
    width: calc(100% + 20px);
    max-width: 300px;
    margin: 0 auto;
    margin-left: -8px;
  }
  .product.p-satisfaction .products-steps .text-wrap ol li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li > div {
    font-size: 15px;
    padding-bottom: 3px;
  }

  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item {
    height: 110px;
  }
  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item:not(.price-small) {
    padding-top: 0;
    margin-bottom: 0;
  }

  header {
    padding: 0 5px;
  }
  header .header-wrap .container {
    padding: 0 20px !important;
    padding-left: 20px !important;
    padding-left: 25px !important;
  }

  header.scroll .header-wrap {
    padding: 8px 0 !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .product .products-steps .row .col-8 > .title-wrap h3 {
    margin-bottom: 70px;
  }

  .p-activation .products-steps > .row.step-2 .number-wrap {
    padding-top: 10px;
  }

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

  .benefits .title-wrap h2 {
    font-size: 50px;
  }

  .product .products-steps .text-wrap ol + ol {
    margin-top: 20px;
  }
  .product .products-steps .text-wrap ol + ol li {
    margin-bottom: 0 !important;
  }

  .product.p-pr .products-steps .text-wrap ol li {
    padding-bottom: 50px;
  }
  .product.p-pr .products-steps .text-wrap ol li h6 {
    bottom: -25px;
  }

  .product .products-steps .text-wrap ol {
    margin-bottom: -20px;
  }
  .product .products-steps .text-wrap ol li {
    margin-bottom: 0 !important;
  }

  .product.p-campaign .products-steps .text-wrap ol + ol {
    margin-top: 50px;
    margin-bottom: 0;
  }

  .product.p-upsell .products-steps .text-wrap ol {
    margin-bottom: 0;
  }

  .product.p-sampling .products-steps .text-wrap ol {
    width: 100%;
  }
  .product.p-sampling .products-steps .text-wrap ol li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product .products-steps-wrap {
    padding-top: 0;
  }

  .product.p-campaign .products-steps .text-wrap ol, .product.p-brand .products-steps .text-wrap ol {
    padding-bottom: 20px;
    width: calc(100% + 20px);
    max-width: 350px;
    margin: 0 auto;
  }
  .product.p-campaign .products-steps .text-wrap ol li, .product.p-brand .products-steps .text-wrap ol li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .home .top .title-wrap + span {
    font-size: 16px;
    margin-top: 0;
  }

  .top p {
    font-size: 16px;
  }

  .title-wrap + p .text-three,
.about-us .top .center p span {
    font-size: 17px;
  }

  .text-img.txt-datach {
    margin-top: 0;
  }

  .about-us .top .center h1 {
    font-size: 38px;
    margin-top: 50px;
  }

  .top .policy-wrap h1 {
    font-size: 38px;
  }

  .top .policy-wrap h2 {
    font-size: 26px;
  }

  .top .policy-wrap h3 {
    font-size: 22px;
  }

  .top .policy-wrap p {
    font-size: 15px;
  }

  .top .policy-wrap {
    padding-bottom: 30px;
  }

  .product #scroll-section .container > .title-wrap {
    padding-top: 40px;
  }

  .product #scroll-section .title-wrap h2 {
    font-size: 46px;
  }

  footer .container > .d-flex > div:nth-child(2) {
    justify-content: flex-start;
    padding-bottom: 20px;
  }

  .plans-wrap .row .col-3:not(:first-child) .item-wrap ul li.price-item strong.text-small {
    font-size: 32px;
  }

  .product.p-brand .products-steps .text-wrap ol li:nth-child(4) h6 {
    max-width: 150px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  main .text-blog .text-blog-wrap ul {
    padding-left: 20px;
  }

  .blog-section .row .col-4,
.blogs .blogs-wrap .row.col-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .blogs .blogs-wrap .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .top.blogs-wrap {
    padding-bottom: 20px;
  }

  .f-links-wrap a:first-child {
    width: calc(50% - 20px);
    margin-right: 40px;
  }
  .f-links-wrap a:last-child {
    width: 50%;
  }

  .text-blog .text-blog-wrap ul li::before {
    top: 6px;
  }

  .table-instagram-wrap .flex-table .flex-row .col:last-child {
    justify-content: flex-end;
    text-align: right;
  }

  .accord-container .insta-title-wrap h2 {
    font-size: 26px;
  }

  .accord-container .accord-wrap .accord-block .accord-wrap p {
    font-size: 14px;
  }

  .accord-container .accord-wrap .accord-block .acord {
    font-size: 16px;
    padding: 25px 0;
    padding-right: 30px;
  }

  .accord-container .insta-title-wrap {
    padding: 30px 0 36px;
  }

  .accord-container {
    margin-bottom: 80px;
  }

  .perf-row.row {
    padding-bottom: 30px;
  }

  .sticky-element.sticky-stop {
    margin-bottom: -30px;
  }

  .insta-show .insta-right {
    padding-bottom: 20px;
  }

  .insta-show .insta-right .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .insta-show .insta-right .row .insta-box .img-wrap {
    flex: 0 0 48px;
    max-width: 48px;
    background-size: 48px auto !important;
  }

  .insta-show .insta-right .row .insta-box {
    flex-wrap: nowrap;
  }

  .insta-show .insta-right .row .insta-box .img-wrap + div {
    padding-left: 25px;
    text-align: left;
  }

  .insta-show .insta-right .row .insta-box {
    padding: 10px 18px 14px;
  }

  .insta-show .insta-right .row .insta-box p {
    margin-top: 0;
    justify-content: flex-start;
  }

  .insta-show .insta-right .insta-box strong {
    font-size: 28px;
  }

  .insta-show .insta-left > p {
    padding-bottom: 20px !important;
  }

  .insta-analytics h2 {
    margin-top: 10px;
    font-size: 24px;
  }

  .insta-analytic {
    padding-bottom: 25px;
  }

  .insta-map-filter {
    max-width: 125px;
  }
  .insta-map-filter .check-group {
    width: 100%;
  }

  .instagram-input-wrap {
    left: 96px;
    right: 84px;
  }

  .instagram-input .input-wrap label input {
    height: 40px;
  }
  .instagram-input .input-wrap label input:not(:-moz-placeholder-shown) {
    border-color: #96979F;
  }
  .instagram-input .input-wrap label input:not(:-ms-input-placeholder) {
    border-color: #96979F;
  }
  .instagram-input .input-wrap label input:not(:placeholder-shown) {
    border-color: #96979F;
  }

  header .header-wrap .nav-wrap nav > ul {
    margin-bottom: 10px;
  }

  .app-wrap {
    padding-top: 98px;
  }
  .app-wrap .insta-map-filter {
    width: 100%;
    top: -108px;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 18px;
    padding-bottom: 0;
    border: 0;
    box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  }
  .app-wrap .insta-map-filter .check-group {
    width: 50%;
    margin-bottom: 18px;
  }
  .app-wrap .insta-map-filter .check-group label {
    padding-left: 25px;
  }
  .app-wrap .insta-map-filter .check-group label::before {
    top: 0;
    width: 18px;
    height: 18px;
    background-size: 8px auto !important;
  }

  .insta-show .insta-right .insta-box .d-flex {
    padding-left: 0;
    padding-top: 0;
    justify-content: flex-start;
  }

  .insta-analytic h2 {
    margin-bottom: 20px;
  }

  header .header-wrap .nav-wrap ul.nav-magic > li > a {
    font-size: 24px !important;
  }

  header .header-wrap .nav-wrap nav .jsSubmenu {
    top: 17px;
  }

  .tooltip-component.node-tooltip .node-bottom {
    display: none !important;
  }

  .pop-up.pop-demo .pop-wrap .pop-content .contact-form h2 {
    padding-right: 48px;
  }

  .sticky-wrap .container {
    overflow: hidden;
  }

  .home .body-wrap {
    overflow: hidden;
  }

  .pop-up.pop-event .pop-wrap .pop-content .contact-form h5 + .row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  body .pop-up .pop-wrap {
    padding: 0 25px;
  }

  body .pop-up.pop-demo .pop-wrap .pop-content .contact-form,
body .pop-up.pop-event .pop-wrap .pop-content .contact-form {
    padding: 45px 25px;
  }

  .speakers .row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .event .title-wrap {
    padding-top: 40px;
  }

  .event .top .title-wrap {
    padding-top: 20px;
  }

  .speakers .title-wrap {
    padding-bottom: 40px;
  }

  .event .bevel-top.bevel-end.bg-gradient .registry-free {
    padding-bottom: 30px;
  }
  .event .bevel-top.bevel-end.bg-gradient .registry-free h2 {
    font-size: 32px;
  }

  .event #scroll-section .row .col-4 strong {
    font-size: 18px;
  }
  .event #scroll-section .row .col-4 p {
    font-size: 20px;
  }

  .event #scroll-section .desription-wrap p {
    font-size: 14px;
    line-height: 1.5em;
  }

  .event .program .desription-wrap p {
    font-size: 14px;
    line-height: 1.5em;
  }

  .program-wrap {
    padding-left: 20px;
  }
  .program-wrap .event-program-row .event-time span::before {
    left: -27px;
  }

  .program-wrap {
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .program-wrap .event-program-row:last-child::before {
    left: -22px;
  }
  .program-wrap .event-program-row .event-content h4 {
    font-size: 16px;
  }
  .program-wrap .event-time span {
    font-size: 16px;
  }

  .program-wrap .event-program-row .event-content .instagram-insights .img-wrap {
    padding-bottom: 25px;
  }
  .program-wrap .event-program-row .event-content .instagram-insights .img-wrap .img-mobile-text {
    font-size: 14px;
    text-align: left;
    padding-top: 0px;
  }
  .program-wrap .event-program-row .event-content .instagram-insights .img-wrap .img-mobile-text p {
    font-size: 12px;
  }
  .program-wrap .event-program-row .event-content .instagram-insights .img-wrap img {
    max-width: 56px;
  }

  .program-wrap .event-program-row .event-content {
    padding: 25px 16px;
  }
  .program-wrap .event-program-row .event-content .event-speakers .speaker-wrap {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: left;
  }
  .program-wrap .event-program-row .event-content .event-speakers .speaker-wrap .img-wrap {
    flex: 0 0 40px;
    max-width: 40px;
    margin: 0;
  }
  .program-wrap .event-program-row .event-content .event-speakers .speaker-wrap .img-wrap + div {
    padding-left: 12px;
  }
  .program-wrap .event-program-row .event-content .event-speakers .speaker-wrap h6 {
    margin: 0;
  }

  .top.database-top h1 {
    font-size: 28px;
  }

  header .header-wrap .nav-wrap .lng-wrap .button.event-button {
    font-size: 20px;
  }

  .program-wrap .event-program-row .event-content .event-speakers {
    margin-bottom: -20px;
  }

  .program-wrap .event-program-row .event-content .event-speakers .speaker-wrap .img-wrap {
    height: auto;
  }

  .table-instagram-wrap .flex-table div.flex-row h5 {
    font-size: 12px;
  }

  .insta-show .insta-left .insta-data > div {
    margin-bottom: 10px;
  }

  .ch2-theme-overlay .ch2-dialog.ch2-dialog-bottomright {
    bottom: 20px;
  }

  .accord-container .accord-wrap .accord-block .acord::after {
    top: 26px;
  }

  .home .scroll-arrow {
    margin-bottom: 20px;
  }

  .maps-section .select-wrap {
    display: block;
  }

  .dos-select {
    position: relative;
  }
  .dos-select .maps-links {
    display: none;
    background: #fff;
    box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
    padding: 25px 16px;
    padding-bottom: 5px;
    border-radius: 8px;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .maps-section .row.perf-row > .col-3 {
    top: 50px;
  }

  .maps-content > .row .white-box .avg-wrap ~ div .map-title-wrap strong {
    margin-bottom: 1px;
  }

  .maps-content .maps-row:last-child {
    padding-bottom: 0 !important;
  }
  .maps-content .maps-row:last-child .map-content-wrap {
    border-bottom: 0 !important;
  }

  .maps-content .maps-row .map-content-wrap {
    display: block !important;
  }
  .maps-content .maps-row .map-content-wrap .map-data-end {
    display: block !important;
    text-align: left;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .maps-content .maps-row .map-content-wrap .map-data-end > p {
    position: static;
    padding: 0 !important;
    color: #696B76 !important;
  }
  .maps-content .maps-row .map-content-wrap .map-data-end .tooltip {
    display: inline !important;
    position: static;
    width: auto;
  }
  .maps-content .maps-row .map-content-wrap .map-data-end .tooltip span {
    display: none;
  }
  .maps-content .maps-row .map-content-wrap .map-data-end .tooltip .tooltip-top {
    display: inline !important;
    height: auto !important;
    padding: 0 !important;
    position: static !important;
    display: inline !important;
    margin: 0 !important;
    opacity: 1 !important;
    width: auto !important;
    visibility: visible !important;
    background: none !important;
    box-shadow: none !important;
  }
  .maps-content .maps-row .map-content-wrap .map-data-end .tooltip .tooltip-top p {
    display: inline !important;
    text-align: left !important;
    color: #696B76 !important;
  }
  .maps-content .maps-row .map-content-wrap .map-data-end .tooltip .tooltip-top p:before {
    content: " (";
  }
  .maps-content .maps-row .map-content-wrap .map-data-end .tooltip .tooltip-top p:after {
    content: ")";
  }
  .maps-content .maps-row .map-content-wrap .map-data-end .tooltip .tooltip-top::after {
    display: none !important;
  }

  .maps-content > .row h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .maps-content > .row .white-box {
    padding: 16px;
  }
  .maps-content > .row .white-box h4 {
    padding-top: 8px;
    font-size: 21px;
    margin-bottom: 20px;
  }
  .maps-content > .row .white-box .avg-wrap {
    padding-bottom: 5px;
  }
  .maps-content > .row .white-box .avg-wrap > div {
    width: 100%;
    margin-bottom: 15px;
  }

  main .text-blog .text-blog-wrap h2 {
    margin-top: 40px;
  }

  .maps-section.map-move {
    margin-top: -25px;
  }

  .blogs .blog-detail .top-detail .text-wrap h1 {
    line-height: 1.2em;
  }

  .insta-show .insta-right .row .insta-box .tooltip-top p {
    justify-content: center;
  }

  .insta-show .insta-left .insta-data .tooltip {
    display: none;
  }

  .insta-show .insta-left .insta-data {
    padding-bottom: 28px;
  }

  .pop-event .success-wrap h3 {
    font-size: 22px;
    line-height: 1.5em;
  }

  .event .top .title-wrap strong {
    font-size: 16px;
    padding: 12px 22px;
  }

  .event .top .title-wrap .registration-closed {
    top: 40px;
  }

  .performance-information > .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .login-wrap .auth-wrap .login-top.reset-password p {
    margin-bottom: 100px !important;
  }

  .event.event-masterclass .program-wrap .program-title h3 {
    font-size: 32px;
  }

  .event.event-masterclass .program-wrap .program-title p {
    font-size: 15px;
  }

  .event.event-masterclass .program-wrap .event-program-row .event-hours strong {
    font-size: 16px;
  }

  .event.event-masterclass .program-wrap .event-program-row .event-hours::before {
    left: -28px;
  }

  .event.event-masterclass .program-wrap .event-program-row .event-content {
    padding: 16px;
    padding-bottom: 50px;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-content h4 {
    font-size: 18px;
    line-height: 28px;
  }
  .event.event-masterclass .program-wrap .event-program-row .event-content .more-info {
    font-size: 14px;
    position: absolute;
    left: 16px;
    bottom: 18px;
  }

  body .pop-up.pop-slider {
    background: #1c1b29;
  }
  body .pop-up.pop-slider .pop-wrap {
    padding: 0;
  }
  body .pop-up.pop-slider .pop-wrap .pop-content {
    padding: 0;
  }

  .slider-wrap .slider-content .slider-item .slider-text {
    padding: 20px 20px 20px;
  }
  .slider-wrap .slider-content .slider-item .slider-text .button-wrap .button:not(.button-dark) {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .slider-wrap .slider-content .slider-item .slider-text .button-wrap .button {
    width: 100%;
    max-width: 380px;
  }

  .slider-wrap .slider-prev {
    bottom: 150px;
  }

  .slider-wrap .slider-next {
    bottom: 150px;
  }

  .slider-wrap .slider-dots {
    bottom: 165px;
  }

  .event #scroll-section .row .col-4 .event-box .img-wrap {
    flex: 0 0 80px;
    max-width: 80px;
  }

  .contact .container > .row .col-7 .text-box h2 {
    padding-top: 10px;
  }

  .contact-person a {
    word-break: break-all;
  }

  .contact-box .contact-place-wrap {
    padding-right: 0;
  }

  #unlockPopup.pop-up .success-wrap {
    padding: 30px 20px;
  }

  #unlockPopup h3.mt-2.mb-4 {
    font-size: 26px;
    margin-bottom: 30px !important;
  }

  .event-instagram .text-img.txt-instagram {
    background-size: auto 50px;
    height: 55px;
  }

  .event.event-masterclass.event-instagram .title-wrap h1 {
    line-height: 50px;
  }

  .table-instagram-wrap .flex-table .flex-row .col:nth-child(1) {
    flex: 0 0 60px;
    max-width: 60px;
  }

  .table-instagram-wrap .flex-table .flex-row .col:nth-child(2) {
    flex: 0 0 200px;
    max-width: 200px;
  }

  .advance-filter-wrap .top.database-top h1 {
    margin-bottom: 70px;
  }

  .database-top.database-unlocked + section > div {
    padding-bottom: 35px;
  }

  .advance-filter-all .filter-container ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #app .content-container .content-head {
    position: relative;
    flex-wrap: wrap;
    height: auto;
  }
  #app .content-container .content-head h3 {
    margin-bottom: 10px;
  }
  #app .content-container .content-head h3.d-none {
    display: block !important;
  }
  #app .content-container .content-head .table-options-parent {
    width: 100%;
  }
  #app .content-container .content-head .table-options-parent .text-nowrap {
    position: absolute;
    top: -32px;
    right: 0;
    margin-right: 0 !important;
  }

  #app .content-container .content-head .table-options-parent .text-nowrap.mr-3 {
    margin-right: 0 !important;
  }

  #app .content-container .searchInput {
    width: 100%;
  }

  .insta-home .database-top .sowa-title h1 {
    font-size: 30px;
    line-height: 1.1em;
    padding-bottom: 0;
  }
  .insta-home .database-top .sowa-title p {
    font-size: 32px;
    line-height: 1.1em;
    margin-bottom: 100px !important;
  }

  .nominations-top h1 {
    font-size: 30px;
  }
  .nominations-top + section > .container {
    padding: 0 10px !important;
  }

  .nominations-wrap ul li {
    padding: 8px;
  }
  .nominations-wrap ul li a {
    font-size: 18px;
  }

  .top.nominations-top h1 {
    margin-bottom: 50px;
  }

  .pop-up.pop-success .success-wrap {
    padding: 30px;
  }
  .pop-up.pop-success h3 {
    font-size: 24px;
  }

  .p-influence #demo .row .col-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .p-influence #demo .demo-img .img-demo-wrap {
    margin-bottom: -60px;
  }

  .p-influence #demo .demo-img .img-wrap {
    margin-right: 0;
    margin-bottom: 30px;
    margin-top: 0;
  }

  .p-influence .benefits {
    padding-top: 0;
  }

  .p-influence .inf-plans .title-wrap {
    padding-top: 60px;
  }
  .p-influence .product-benefits-wrap > .row {
    padding-bottom: 0;
  }
  .p-influence .product-benefits-wrap {
    padding-bottom: 0;
  }
  .p-influence .inf-plans .tab-button-wrap .tab-button a {
    font-size: 18px;
  }
  .p-influence .inf-plans .tab-button-wrap {
    padding-bottom: 30px;
  }

  .plan-table-wrap .plan-row:first-child .plan-col .plan-bottom strong {
    font-size: 20px;
  }

  .partners-logos {
    margin-bottom: 60px;
  }

  .product.p-influence #tab-credit > .center p,
.product.p-influence #tab-flatrate > .center p {
    font-size: 15px;
    margin: 20px auto 30px;
  }

  .advance-filter-wrap #app > .d-flex {
    padding: 0;
  }
  .advance-filter-wrap #app > .d-flex .filter-container {
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: none;
    background: none;
    padding-bottom: 24px;
  }
  .advance-filter-wrap #app > .d-flex .filter-container h4 {
    padding: 6px 16px;
    background: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin-bottom: 0;
  }

  .advance-filter-wrap .table-container {
    margin-top: 0;
  }

  .btn.btn-gray.filter-toogle {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  #app .vue3-easy-data-table__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .auth-front-wrap > ul.dropdown-menu li a {
    font-size: 24px !important;
  }

  header .header-wrap .nav-wrap nav > ul > li {
    padding: 10px 0;
  }

  .auth-front-wrap > ul.dropdown-menu li {
    padding: 10px 0;
  }

  header .header-wrap .nav-wrap .lng-wrap {
    padding-top: 12px;
  }

  header .header-wrap .nav-wrap .lng-wrap a.button {
    width: 100%;
    margin-right: 0 !important;
    text-align: center;
  }
  header .header-wrap .nav-wrap .lng-wrap a.button.mr-1 {
    margin-bottom: 12px;
  }

  header .header-wrap .nav-wrap .lng-wrap.user-noauth {
    flex-wrap: wrap;
    padding-top: 24px;
  }

  header .header-wrap .nav-wrap nav .jsSubmenu {
    width: 30px;
    height: 30px;
    background-size: 24px auto;
    top: 12px;
    right: -4px;
  }

  .advance-filter-wrap .body-wrap .left-container .filter-container + .filter-container.mt-3 {
    display: none !important;
  }

  .post-filter.row .col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .post-filter.row .post-activation-select {
    margin-bottom: 16px;
  }

  .mentions-tooltip {
    left: 30px !important;
    right: 30px !important;
  }

  .brands-tooltip-wrap {
    left: 30px !important;
    right: 30px !important;
  }

  .tooltip-component.category-tooltip {
    left: 30px !important;
    right: 30px !important;
  }

  .timeline-tooltip {
    left: -30px !important;
    right: -30px !important;
  }
  .timeline-tooltip .timeline-tooltip-content {
    width: 100%;
  }

  .timeline-tooltip .timeline-tooltip-content .timeline-data-content {
    flex-wrap: wrap;
  }
  .timeline-tooltip .timeline-tooltip-content .timeline-data-content > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .timeline-tooltip .timeline-tooltip-content .timeline-data-content > div:nth-child(1), .timeline-tooltip .timeline-tooltip-content .timeline-data-content > div:nth-child(2) {
    padding-bottom: 6px;
  }

  .posts-tooltip-wrap {
    left: 30px !important;
    right: 30px !important;
  }

  .plan-col .save-select {
    padding-left: 0;
    padding-right: 0;
  }
  .plan-col .save-select select {
    padding-right: 38px;
  }

  .subscription-item .sub-main-content .sub-table .sub-row .btn-link.btn-show-plan {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 450px) {
  .pag-lock-wrap .tooltip-component {
    right: -80px;
  }

  header .header-wrap .nav-wrap .lng-wrap .button {
    font-size: 18px;
    padding: 12px 18px 10px;
    margin-right: 18px;
  }
}
@media only screen and (max-width: 400px) {
  .text-img.txt-activation {
    left: 0 !important;
    background-size: auto 49px !important;
  }

  header .header-wrap .nav-wrap .lng-wrap {
    width: 100%;
  }

  .maps-section .maps-links li {
    width: 100%;
  }

  .insta-show .insta-left .insta-data > div strong[data-type="Influencer/Osoba"] {
    display: inline-block;
    word-break: break-word;
    max-width: 80px;
  }

  .date-range-wrap input {
    font-size: 12px;
    padding: 0 5px;
  }
}
@media only screen and (max-width: 380px) {
  .text-img.txt-sampling {
    height: 80px;
    background-size: auto 70px;
  }

  .text-img.txt-campaign {
    height: 85px;
    background-size: auto 68px;
  }

  footer .copy-wrap {
    flex: 0 0 calc(100% - 120px);
    max-width: calc(100% - 120px);
    padding-right: 15px;
  }
  footer .social-wrap {
    flex: 0 0 120px;
    max-width: 120px;
  }

  .home .top h1 {
    font-size: 45px;
  }

  .pag-lock-wrap .tooltip-component {
    right: -40px;
  }
}
@media only screen and (max-width: 350px) {
  .text-img.txt-datach {
    width: 280px;
    height: 80px;
    background-size: auto 70px;
  }

  .home .top h1 {
    font-size: 42px;
  }

  .text-img.txt-doping {
    width: 150px;
    height: 60px;
    margin-bottom: 0;
    top: -6px;
    background-size: auto 50px;
  }

  .text-img.txt-marketing {
    width: 300px;
    height: 110px;
    background-size: auto 100px;
    margin-bottom: 25px;
  }

  header .header-wrap .nav-wrap nav > ul {
    padding-left: 30px;
  }

  header .header-wrap .nav-wrap nav .jsSubmenu {
    right: -15px;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 .jsSubmenu {
    right: 30px;
  }

  .ham-wrap {
    padding-right: 0;
  }
}
@media only screen and (max-width: 340px) {
  .insta-show .insta-left .insta-data > div {
    margin-right: 34px;
  }
}
@media (prefers-color-scheme: dark) and (max-width: 1023px) {
  header .header-wrap .nav-wrap {
    background: #1C1B29;
  }
  header .header-wrap .nav-wrap nav ul li a {
    color: #fff;
  }
  header .header-wrap .nav-wrap nav ul li a::before {
    color: #fff !important;
  }
  header .header-wrap .nav-wrap .lng-wrap {
    background: #1C1B29;
  }

  header .header-wrap .nav-wrap nav > ul > li > a {
    color: #fff !important;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box {
    background: #1C1B29;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box h5 a {
    color: #8C8F9B;
  }
  header .header-wrap .nav-wrap nav .sub-menu .menu-box ul li a {
    color: rgb(255, 255, 255);
  }
}
@media screen and (max-width: 1023px) and (orientation: landscape) {
  header .header-wrap .nav-wrap nav > ul > li > a {
    font-size: 32px !important;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 h5 {
    margin: 15px 0;
  }

  header .header-wrap .nav-wrap nav .sub-menu .menu-box .row .col-3 .jsSubmenu {
    width: 45px;
    height: 45px;
    top: 6px;
    background-size: 40px auto;
  }
}
.text-img.txt-insight {
  width: 645px;
  height: 200px;
  margin-bottom: -15px;
  background-size: auto 195px;
}

.text-img.txt-brand {
  width: 680px;
  height: 180px;
  margin-bottom: 2px;
  background-size: auto 175px;
}

.text-img.txt-social {
  width: 680px;
  height: 180px;
  margin-bottom: 0;
  background-size: auto 180px;
}

.text-img.txt-pr {
  width: 500px;
  height: 175px;
  margin-bottom: 0;
  background-size: auto 172px;
}

.text-img.txt-event {
  width: 730px;
  height: 165px;
  margin-bottom: 0;
  background-size: auto 160px;
}

.text-img.txt-sampling {
  width: 770px;
  height: 200px;
  margin-bottom: -35px;
  background-size: auto 195px;
  left: 18px;
}

.text-img.txt-campaign {
  width: 850px;
  height: 205px;
  margin-bottom: -35px;
  background-size: auto 200px;
}

.text-img.txt-activation {
  width: 880px;
  height: 155px;
  margin-bottom: 0;
  background-size: auto 150px;
  left: -13px;
}

.text-img.txt-price {
  width: 630px;
  height: 205px;
  margin-bottom: 0;
  background-size: auto 200px;
}

.text-img.txt-upsell {
  width: 705px;
  height: 225px;
  margin-bottom: -40px;
  background-size: auto 220px;
  left: -15px;
}

.text-img.txt-newbiz {
  width: 755px;
  height: 180px;
  margin-bottom: 0;
  background-size: auto 175px;
  left: -8px;
}

.text-img.txt-satisfaction {
  width: 945px;
  height: 215px;
  margin-bottom: -30px;
  background-size: auto 135px;
  left: -10px;
}

.product.p-insight .top h1 {
  max-width: 1000px;
}
.product.p-insight .top p {
  max-width: 500px;
}
.product.p-insight #scroll-section .title-wrap h2 {
  max-width: 1290px;
}
.product.p-brand .top h1 {
  max-width: 1000px;
}
.product.p-brand .top p {
  max-width: 770px;
}
.product.p-brand #scroll-section .title-wrap h2 {
  max-width: 890px;
}
.product.p-social .top h1 {
  max-width: 1000px;
}
.product.p-social .top p {
  max-width: 755px;
}
.product.p-social #scroll-section .title-wrap h2 {
  max-width: 580px;
}
.product.p-influence #scroll-section .title-wrap h2 {
  max-width: 900px;
}
.product.p-surveys .top h1 {
  max-width: 900px;
}
.product.p-pr .top h1 {
  max-width: 800px;
}
.product.p-pr .top p {
  max-width: 710px;
}
.product.p-pr #scroll-section .title-wrap h2 {
  max-width: 600px;
}
.product.p-event .top h1 {
  max-width: 1000px;
}
.product.p-event .top p {
  max-width: 660px;
}
.product.p-event #scroll-section .title-wrap h2 {
  max-width: 805px;
}
.product.p-sampling .top h1 {
  max-width: 1000px;
}
.product.p-sampling .top p {
  max-width: 790px;
}
.product.p-sampling #scroll-section .title-wrap h2 {
  max-width: 990px;
}
.product.p-campaign .top h1 {
  max-width: 1100px;
}
.product.p-campaign .top p {
  max-width: 660px;
}
.product.p-campaign #scroll-section .title-wrap h2 {
  max-width: 990px;
}
.product.p-activation .top h1 {
  max-width: 1400px;
}
.product.p-activation .top p {
  max-width: 775px;
}
.product.p-activation #scroll-section .title-wrap h2 {
  max-width: 990px;
}
.product.p-price .top h1 {
  max-width: 900px;
}
.product.p-price .top p {
  max-width: 735px;
}
.product.p-price #scroll-section .title-wrap h2 {
  max-width: 890px;
}
.product.p-upsell .top h1 {
  max-width: 900px;
}
.product.p-upsell .top p {
  max-width: 700px;
}
.product.p-upsell #scroll-section .title-wrap h2 {
  max-width: 940px;
}
.product.p-upsell .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
  max-width: 495px;
}
.product.p-newbiz .top h1 {
  max-width: 900px;
}
.product.p-newbiz #scroll-section .title-wrap h2 {
  max-width: 990px;
}
.product.p-newbiz .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
  max-width: 595px;
}
.product.p-satisfaction .top h1 {
  max-width: 1400px;
}
.product.p-satisfaction #scroll-section .title-wrap h2 {
  max-width: 850px;
}
.product.p-satisfaction .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
  max-width: 670px;
}

@media only screen and (max-width: 1600px) {
  .product.p-surveys .top h1 {
    max-width: 700px;
  }

  .text-img.txt-surveys {
    width: 700px;
    height: 150px;
    background-size: auto 148px;
  }

  .text-img.txt-insight {
    width: 645px;
    height: 160px;
    margin-bottom: 0;
    background-size: auto 155px;
  }

  .text-img.txt-brand {
    width: 525px;
    height: 145px;
    margin-bottom: 15px;
    background-size: auto 142px;
  }

  .text-img.txt-social {
    width: 680px;
    height: 155px;
    margin-bottom: 5px;
    background-size: auto 150px;
  }

  .text-img.txt-pr {
    width: 460px;
    height: 150px;
    margin-bottom: 10px;
    background-size: auto 142px;
  }

  .text-img.txt-event {
    width: 500px;
    height: 130px;
    margin-bottom: 15px;
    background-size: auto 130px;
  }

  .text-img.txt-sampling {
    width: 770px;
    height: 180px;
    margin-bottom: -15px;
    background-size: auto 180px;
  }

  .text-img.txt-campaign {
    width: 770px;
    height: 175px;
    margin-bottom: -25px;
    background-size: auto 175px;
  }

  .text-img.txt-activation {
    width: 830px;
    height: 140px;
    margin-bottom: 5px;
    background-size: auto 140px;
    left: -8px;
  }

  .text-img.txt-price {
    width: 515px;
    height: 170px;
    margin-bottom: 5px;
    background-size: auto 170px;
  }

  .text-img.txt-upsell {
    width: 590px;
    height: 210px;
    margin-bottom: -22px;
    background-size: auto 200px;
    left: -15px;
  }

  .text-img.txt-newbiz {
    width: 605px;
    height: 155px;
    margin-bottom: 5px;
    background-size: auto 150px;
    left: -15px;
  }

  .text-img.txt-satisfaction {
    width: 850px;
    height: 130px;
    margin-bottom: 5px;
    background-size: auto 120px;
    left: -15px;
  }

  .text-img.txt-instagram {
    width: 585px;
    height: 125px;
    margin-bottom: 0;
    background-size: auto 120px;
  }

  .text-img.txt-linkedin {
    width: 490px;
    height: 110px;
    margin-bottom: 0;
    background-size: auto 100px;
  }

  .event.event-masterclass .title-wrap h1 {
    line-height: 118px;
  }

  .event h1 {
    font-size: 130px;
    line-height: 1em;
  }
  .event .bg-gradient.bgg-rev::after {
    background-position: center bottom 30px;
  }

  .product.p-insight .top h1 {
    max-width: 960px;
  }
  .product.p-insight .top p {
    max-width: 430px;
  }
  .product.p-insight #scroll-section .title-wrap h2 {
    max-width: 1080px;
  }
  .product.p-insight .products-steps .row.step-2 .col-8 .text-wrap h4 {
    max-width: 620px;
  }
  .product.p-brand .top h1 {
    max-width: 800px;
  }
  .product.p-brand .top p {
    max-width: 740px;
  }
  .product.p-brand #scroll-section .title-wrap h2 {
    max-width: 1000px;
  }
  .product.p-social .top h1 {
    max-width: 900px;
  }
  .product.p-social .top p {
    max-width: 690px;
  }
  .product.p-social #scroll-section .title-wrap h2 {
    max-width: 800px;
  }
  .product.p-pr .top h1 {
    max-width: 600px;
  }
  .product.p-pr .top p {
    max-width: 640px;
  }
  .product.p-pr #scroll-section .title-wrap h2 {
    max-width: 750px;
  }
  .product.p-event .top h1 {
    max-width: 600px;
  }
  .product.p-event .top p {
    max-width: 600px;
  }
  .product.p-event #scroll-section .title-wrap h2 {
    max-width: 805px;
  }
  .product.p-sampling .top h1 {
    max-width: 900px;
  }
  .product.p-sampling .top p {
    max-width: 725px;
  }
  .product.p-sampling #scroll-section .title-wrap h2 {
    max-width: 990px;
  }
  .product.p-campaign .top h1 {
    max-width: 1100px;
  }
  .product.p-campaign .top p {
    max-width: 620px;
  }
  .product.p-campaign #scroll-section .title-wrap h2 {
    max-width: 990px;
  }
  .product.p-activation .top h1 {
    max-width: 900px;
  }
  .product.p-activation .top p {
    max-width: 735px;
  }
  .product.p-activation #scroll-section .title-wrap h2 {
    max-width: 990px;
  }
  .product.p-price .top h1 {
    max-width: 600px;
  }
  .product.p-price .top p {
    max-width: 735px;
  }
  .product.p-price #scroll-section .title-wrap h2 {
    max-width: 800px;
  }
  .product.p-upsell .top h1 {
    max-width: 900px;
  }
  .product.p-upsell .top p {
    max-width: 640px;
  }
  .product.p-upsell #scroll-section .title-wrap h2 {
    max-width: 960px;
  }
  .product.p-upsell .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 430px;
  }
  .product.p-newbiz .top h1 {
    max-width: 900px;
  }
  .product.p-newbiz #scroll-section .title-wrap h2 {
    max-width: 990px;
  }
  .product.p-newbiz .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 595px;
  }
  .product.p-satisfaction .top h1 {
    max-width: 900px;
  }
  .product.p-satisfaction .top p {
    max-width: 620px;
  }
  .product.p-satisfaction #scroll-section .title-wrap h2 {
    max-width: 980px;
  }
  .product.p-satisfaction .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 670px;
  }
  .product.p-influence #scroll-section .title-wrap h2 {
    margin-top: 50px;
    max-width: 865px;
  }

  .product .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 615px;
  }

  .product .products-steps .row .text-wrap .icon-success span {
    width: 62px;
    height: 62px;
    background-size: auto 60px;
  }

  .products-steps .number-wrap h3 {
    font-size: 50px;
    line-height: 50px;
    max-width: 340px;
  }

  .products-steps .text-wrap ol li h6 {
    font-size: 18px;
  }
  .products-steps .text-wrap ol li img {
    max-height: 50px;
  }
  .products-steps .text-wrap ol li .img-wrap.g-icon img {
    width: auto;
    max-height: 80px;
  }

  .follow-wrap p {
    font-size: 18px;
  }

  .plans-wrap .row .col-3 .item-wrap span.i-success {
    background-size: 32px auto;
  }

  .plans-wrap .row .col-3 .item-wrap span.i-no {
    background-size: 24px auto;
  }

  .plans-wrap .row .col-3:nth-child(1) .item-wrap ul li,
.plans-wrap .row .col-3:not(:first-child) .item-wrap ul li {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1023px) {
  .product.p-surveys .top h1 {
    max-width: 550px;
  }

  .text-img.txt-surveys {
    width: 535px;
    height: 110px;
    background-size: auto 105px;
    margin-bottom: -35px;
  }

  .text-img.txt-44k {
    width: 330px;
    height: 125px;
    background-size: auto 110px;
  }

  .text-img.txt-112k {
    width: 470px;
    height: 125px;
    background-size: auto 89px;
  }

  .text-img.txt-insight {
    width: 370px;
    height: 110px;
    margin-bottom: 0;
    background-size: auto 107px;
  }

  .text-img.txt-brand {
    width: 355px;
    height: 110px;
    margin-bottom: 15px;
    background-size: auto 100px;
  }

  .text-img.txt-social {
    width: 480px;
    height: 115px;
    margin-bottom: 2px;
    background-size: auto 105px;
  }

  .text-img.txt-pr {
    width: 470px;
    height: 105px;
    margin-bottom: 2px;
    background-size: auto 100px;
  }

  .text-img.txt-event {
    width: 500px;
    height: 100px;
    margin-bottom: 0px;
    background-size: auto 95px;
  }

  .text-img.txt-sampling {
    width: 570px;
    height: 132px;
    margin-bottom: -20px;
    background-size: auto 130px;
  }

  .text-img.txt-campaign {
    width: 638px;
    height: 130px;
    margin-bottom: -25px;
    background-size: auto 125px;
  }

  .text-img.txt-activation {
    width: 600px;
    height: 105px;
    margin-bottom: 5px;
    background-size: auto 100px;
  }

  .text-img.txt-price {
    width: 345px;
    height: 120px;
    margin-bottom: 0;
    background-size: auto 115px;
  }

  .text-img.txt-upsell {
    width: 400px;
    height: 140px;
    margin-bottom: -22px;
    background-size: auto 135px;
    left: -15px;
  }

  .text-img.txt-newbiz {
    width: 465px;
    height: 105px;
    margin-bottom: 5px;
    background-size: auto 100px;
    left: -13px;
  }

  .text-img.txt-satisfaction {
    width: 690px;
    height: 100px;
    margin-bottom: 5px;
    background-size: auto 98px;
    left: 0;
  }

  .text-img.txt-instagram {
    width: 585px;
    height: 95px;
    margin-bottom: 0;
    background-size: auto 90px;
  }

  .event h1 {
    font-size: 100px;
    line-height: 1em;
  }
  .event h1 .text-three.color-white {
    display: inline-block;
    width: 100%;
  }

  .product.p-insight .top h1 {
    max-width: 560px;
  }
  .product.p-insight .top p {
    max-width: 375px;
  }
  .product.p-brand .top h1 {
    max-width: 600px;
  }
  .product.p-brand .top p {
    max-width: 600px;
  }
  .product.p-brand #scroll-section .title-wrap h2 {
    max-width: 1000px;
  }
  .product.p-social .top h1 {
    max-width: 600px;
  }
  .product.p-social .top p {
    max-width: 570px;
  }
  .product.p-social #scroll-section .title-wrap h2 {
    max-width: 685px;
  }
  .product.p-pr .top h1 {
    max-width: 500px;
  }
  .product.p-pr .top p {
    max-width: 535px;
  }
  .product.p-pr #scroll-section .title-wrap h2 {
    max-width: 540px;
  }
  .product.p-event .top h1 {
    max-width: 600px;
  }
  .product.p-event .top p {
    max-width: 490px;
  }
  .product.p-event #scroll-section .title-wrap h2 {
    max-width: 700px;
  }
  .product.p-sampling .top h1 {
    max-width: 600px;
  }
  .product.p-sampling .top p {
    max-width: 595px;
  }
  .product.p-sampling #scroll-section .title-wrap h2 {
    max-width: 840px;
  }
  .product.p-sampling .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 500px;
  }
  .product.p-campaign .top h1 {
    max-width: 700px;
  }
  .product.p-campaign .top p {
    max-width: 490px;
  }
  .product.p-campaign #scroll-section .title-wrap h2 {
    max-width: 990px;
  }
  .product.p-activation .top h1 {
    max-width: 700px;
  }
  .product.p-activation .top p {
    max-width: 600px;
  }
  .product.p-activation #scroll-section .title-wrap h2 {
    max-width: 700px;
  }
  .product.p-price .top h1 {
    max-width: 500px;
  }
  .product.p-price .top p {
    max-width: 560px;
  }
  .product.p-price #scroll-section .title-wrap h2 {
    max-width: 660px;
  }
  .product.p-price .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 495px;
  }
  .product.p-price .products-steps .row.step-2 .col-8 > .row .text-wrap h4 {
    max-width: 530px;
  }
  .product.p-upsell .top h1 {
    max-width: 500px;
  }
  .product.p-upsell .top p {
    max-width: 500px;
  }
  .product.p-upsell #scroll-section .title-wrap h2 {
    max-width: 850px;
  }
  .product.p-upsell .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 495px;
  }
  .product.p-newbiz .top h1 {
    max-width: 500px;
  }
  .product.p-newbiz .top p {
    max-width: 590px;
  }
  .product.p-newbiz #scroll-section .title-wrap h2 {
    max-width: 825px;
  }
  .product.p-newbiz .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 480px;
  }
  .product.p-satisfaction .top h1 {
    max-width: 1400px;
  }
  .product.p-satisfaction .top p {
    max-width: 500px;
  }
  .product.p-satisfaction #scroll-section .title-wrap h2 {
    max-width: 800px;
  }
  .product.p-satisfaction .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 495px;
  }
  .product.p-influence #scroll-section .title-wrap h2 {
    margin-top: 20px;
    max-width: 765px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .product.p-surveys .top h1 {
    max-width: 380px;
  }

  .text-img.txt-surveys {
    width: 360px;
    height: 80px;
    background-size: auto 75px;
    margin-bottom: -25px;
  }

  .text-img.txt-44k {
    width: 260px;
    height: 85px;
    background-size: auto 75px;
  }

  .text-img.txt-112k {
    width: 370px;
    height: 82px;
    background-size: auto 60px;
  }

  .text-img.txt-insight {
    width: 270px;
    height: 76px;
    margin-bottom: 0;
    background-size: auto 75px;
  }

  .text-img.txt-brand {
    width: 310px;
    height: 80px;
    margin-bottom: 0;
    background-size: auto 70px;
  }

  .text-img.txt-social {
    width: 250px;
    height: 80px;
    margin-bottom: 0;
    background-size: auto 70px;
    left: -2px;
  }

  .text-img.txt-pr {
    width: 300px;
    height: 80px;
    margin-bottom: 5px;
    background-size: auto 75px;
  }

  .text-img.txt-event {
    width: 260px;
    height: 65px;
    margin-bottom: 0;
    background-size: auto 65px;
  }

  .event.event-masterclass .title-wrap h1 {
    line-height: 78px;
  }

  .text-img.txt-linkedin {
    width: 320px;
    height: 70px;
    margin-bottom: 0;
    background-size: auto 62px;
  }

  .text-img.txt-sampling {
    width: 350px;
    height: 90px;
    margin-bottom: -15px;
    background-size: auto 85px;
    left: 5px;
  }

  .text-img.txt-campaign {
    width: 365px;
    height: 95px;
    margin-bottom: -20px;
    background-size: auto 82px;
  }

  .text-img.txt-activation {
    width: 400px;
    height: 70px;
    margin-bottom: 0;
    background-size: auto 65px;
  }

  .text-img.txt-price {
    width: 480px;
    height: 80px;
    margin-bottom: 2px;
    background-size: auto 80px;
  }

  .text-img.txt-upsell {
    width: 305px;
    height: 95px;
    margin-bottom: -15px;
    background-size: auto 90px;
    left: -5px;
  }

  .text-img.txt-newbiz {
    width: 405px;
    height: 75px;
    margin-bottom: 0;
    background-size: auto 70px;
    left: -4px;
  }

  .text-img.txt-satisfaction {
    width: 480px;
    height: 65px;
    margin-bottom: 5px;
    background-size: auto 62px;
    left: 0;
  }

  .text-img.txt-instagram {
    width: 345px;
    height: 75px;
    margin-bottom: 0;
    background-size: auto 70px;
  }

  .event h1 {
    font-size: 80px;
  }
  .event .top p {
    font-size: 18px;
  }

  .product.p-insight .top h1 {
    max-width: 400px;
  }
  .product.p-insight .top p {
    max-width: 335px;
  }
  .product.p-brand .top h1 {
    max-width: 420px;
  }
  .product.p-brand .top p {
    max-width: 545px;
  }
  .product.p-brand #scroll-section .title-wrap h2 {
    max-width: 1000px;
  }
  .product.p-social .top h1 {
    max-width: 400px;
  }
  .product.p-social .top p {
    max-width: 505px;
  }
  .product.p-social #scroll-section .title-wrap h2 {
    max-width: 505px;
  }
  .product.p-pr .top h1 {
    max-width: 300px;
  }
  .product.p-pr .top p {
    max-width: 460px;
  }
  .product.p-pr #scroll-section .title-wrap h2 {
    max-width: 380px;
  }
  .product.p-event .top h1 {
    max-width: 400px;
  }
  .product.p-event .top p {
    max-width: 440px;
  }
  .product.p-event #scroll-section .title-wrap h2 {
    max-width: 500px;
  }
  .product.p-sampling .top h1 {
    max-width: 400px;
  }
  .product.p-sampling .top p {
    max-width: 528px;
  }
  .product.p-sampling #scroll-section .title-wrap h2 {
    max-width: 600px;
  }
  .product.p-campaign .top h1 {
    max-width: 500px;
  }
  .product.p-campaign .top p {
    max-width: 430px;
  }
  .product.p-campaign #scroll-section .title-wrap h2 {
    max-width: 990px;
  }
  .product.p-activation .top h1 {
    max-width: 400px;
  }
  .product.p-activation .top p {
    max-width: 525px;
  }
  .product.p-activation #scroll-section .title-wrap h2 {
    max-width: 500px;
  }
  .product.p-price .top h1 {
    max-width: 400px;
  }
  .product.p-price .top p {
    max-width: 510px;
  }
  .product.p-price #scroll-section .title-wrap h2 {
    max-width: 550px;
  }
  .product.p-upsell .top h1 {
    max-width: 400px;
  }
  .product.p-upsell .top p {
    max-width: 445px;
  }
  .product.p-upsell #scroll-section .title-wrap h2 {
    max-width: 530px;
  }
  .product.p-upsell .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 495px;
  }
  .product.p-newbiz .top h1 {
    max-width: 500px;
  }
  .product.p-newbiz .top p {
    max-width: 545px;
  }
  .product.p-newbiz #scroll-section .title-wrap h2 {
    max-width: 490px;
  }
  .product.p-newbiz .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 595px;
  }
  .product.p-satisfaction .top h1 {
    max-width: 500px;
  }
  .product.p-satisfaction #scroll-section .title-wrap h2 {
    max-width: 1030px;
  }
  .product.p-satisfaction .products-steps .row.step-1 .col-8 > .row .text-wrap h4 {
    max-width: 670px;
  }
  .product.p-influence #scroll-section .title-wrap h2 {
    margin-top: 10px;
    max-width: 535px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 600px) {
  .product .top h1 .text-img {
    width: 100% !important;
  }
}
@media only screen and (max-width: 480px) {
  .home .top p {
    font-size: 18px;
  }

  .text-img.txt-44k {
    width: 215px;
    height: 65px;
    background-size: auto 60px;
  }

  .text-img.txt-112k {
    width: 285px;
    height: 65px;
    background-size: auto 45px;
  }

  .text-img.txt-satisfaction {
    width: 480px;
    height: 50px;
    margin-bottom: 0;
    background-size: auto 50px;
    left: 0;
  }

  .text-img.txt-instagram {
    width: 320px;
    height: 70px;
    margin-bottom: 0;
    background-size: auto 65px;
  }

  .event h1 {
    font-size: 70px;
  }
  .event .top p {
    font-size: 16px;
  }

  .event.event-masterclass .title-wrap h1 {
    font-size: 55px;
    line-height: 56px;
  }

  .text-img.txt-linkedin {
    width: 245px;
    height: 50px;
    margin-bottom: 0;
    background-size: auto 45px;
  }
}
@media only screen and (max-width: 380px) {
  .product.p-surveys .top h1 {
    max-width: 320px;
  }

  .text-img.txt-surveys {
    height: 70px;
    background-size: auto 62px;
    margin-bottom: -15px;
  }

  .text-img.txt-satisfaction {
    width: 480px;
    height: 45px;
    margin-bottom: 0;
    background-size: auto 41px;
    left: 0;
  }

  .text-img.txt-instagram {
    width: 285px;
    height: 60px;
    margin-bottom: 0;
    background-size: auto 58px;
  }

  .text-img.txt-sampling {
    background-size: auto 70px;
    left: 0;
  }

  .text-img.txt-campaign {
    background-size: auto 66px;
  }

  .product.p-satisfaction .top h1 {
    font-size: 48px;
  }
  .product.p-satisfaction .top h1 .text-three {
    font-size: 50px;
  }
}
@media only screen and (max-width: 350px) {
  .text-img.txt-newbiz {
    background-size: auto 68px;
    left: -2px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .bg-gradient::before {
    background-size: 100% auto;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0), screen and (min-width: 0\0 ) and (min-resolution: 0.001dpcm) {
  .bg-gradient::before {
    background-size: 100% auto;
  }
}
/* CHECKBOX INPUT */
.contact .contact-form .contact-container {
  height: 100%;
  overflow-y: auto;
  padding-right: 5px;
}

.form-check-label {
  display: inline-block;
  width: 48%;
  margin-top: 1em;
  margin-bottom: 1em;
}

.form-check-label label {
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: #96979F;
  transition: all 0.3s ease;
  padding-left: 30px;
  cursor: pointer;
  padding-right: 8px;
}

.form-check-label,
.form-check-label.form-check,
.form-check-label.form-check2 {
  position: relative;
}

.form-check-label input[type=checkbox] {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  opacity: 0;
  z-index: -1;
}

.form-check-label.form-check2 input[type=checkbox] {
  top: 15px;
  left: 4px;
  width: 10px;
  height: 10px;
}

.form-check-label input[type=checkbox] + label span::before {
  cursor: pointer;
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border: none;
  content: "";
  transition: 300ms all ease-in-out;
  border: 2px solid #73f1f4;
  border-radius: 2px;
}

.contact-form .form-check-label input[type=checkbox] + label span::before {
  background: #191823;
}

.form-check-label input[type=checkbox] + label span::after {
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 9px;
  transform: translateX(-50%) translateY(-50%);
  width: 0%;
  height: 0%;
  border: none;
  content: "";
  border-radius: 1px;
  transition: 300ms all ease-in-out;
}

.form-check-label input[type=checkbox]:checked + label span::after {
  width: 18px;
  height: 18px;
  background: url("/frontend/img/icon/i-form-check.svg") center center no-repeat;
  background-size: 18px;
}

.pop-up .form-check-label input[type=checkbox]:checked + label span::after {
  width: 18px;
  height: 18px;
  background: url("/frontend/img/icon/i-form-check-pop.svg") center center no-repeat;
  background-size: 18px;
}

.contact-form #product-check {
  padding-top: 30px;
}

.contact-form #product-check + .form-label.form-textarea {
  margin-top: 20px;
}

.form-check-label.form-check2 {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 30px;
}
.form-check-label.form-check2 label {
  color: #E1E1E4;
}

.pop-up.pop-demo .pop-wrap .pop-content .contact-form,
.pop-up.pop-event .pop-wrap .pop-content .contact-form {
  padding: 45px;
  border-radius: 8px;
}
.pop-up.pop-demo .pop-wrap .pop-content .contact-form h2,
.pop-up.pop-event .pop-wrap .pop-content .contact-form h2 {
  color: #fff;
  margin: 0;
  margin-top: 8px;
}
.pop-up.pop-demo .pop-wrap .pop-content .contact-form h2 + p,
.pop-up.pop-event .pop-wrap .pop-content .contact-form h2 + p {
  font-size: 16px;
  font-weight: 400;
  color: #E1E1E4;
  margin: 5px 0 18px;
}
.pop-up.pop-demo .pop-wrap .pop-content .contact-form .form-label,
.pop-up.pop-event .pop-wrap .pop-content .contact-form .form-label {
  margin-top: 0;
}
.pop-up.pop-demo .pop-wrap .pop-content .contact-form .form-label label input,
.pop-up.pop-event .pop-wrap .pop-content .contact-form .form-label label input {
  border-color: #96979F;
}
.pop-up.pop-demo .pop-wrap .pop-content .contact-form .form-label label > span,
.pop-up.pop-event .pop-wrap .pop-content .contact-form .form-label label > span {
  color: #96979F;
}

.pop-up.pop-event .pop-wrap .pop-content .contact-form h5 {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 8px 0 12px;
}
.pop-up.pop-event .pop-wrap .pop-content .contact-form h5 + .row {
  padding-bottom: 40px;
}
.pop-up.pop-event .pop-wrap .pop-content .contact-form h5 + .row .form-check-label.form-check2 {
  padding-bottom: 8px;
  margin: 0;
}
.pop-up.pop-event .pop-wrap .pop-content .contact-form .form-label + .form-check-label.form-check2 {
  margin-bottom: 0;
}

.tooltip-component {
  position: fixed;
  z-index: 1500;
  padding: 15px 20px 18px;
  max-width: 420px;
  background-color: #1C1B29;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: opacity 0.3s ease;
}
.tooltip-component.link-tooltip {
  max-width: 100%;
  padding-left: 12px;
  padding-right: 25px;
}
.tooltip-component.link-tooltip ul {
  padding-left: 20px;
}
.tooltip-component.link-tooltip ul li {
  position: relative;
  font-size: 15px;
  margin-bottom: 10px;
}
.tooltip-component.link-tooltip ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #73F2F5;
  position: absolute;
  top: 9px;
  left: -15px;
}
.tooltip-component.link-tooltip ul li::after {
  content: "";
  width: 1px;
  background: #696B76;
  position: absolute;
  top: 17px;
  bottom: -15px;
  left: -13px;
  margin: auto;
}
.tooltip-component.link-tooltip ul li:first-child:last-of-type {
  left: -5px;
}
.tooltip-component.link-tooltip ul li:first-child:last-of-type::before {
  display: none;
}
.tooltip-component.link-tooltip ul li:last-child {
  margin-bottom: 0;
}
.tooltip-component.link-tooltip ul li:last-child::after {
  display: none;
}
.tooltip-component.link-tooltip p {
  font-size: 15px;
  margin: 0;
  margin-top: 2px;
}
.tooltip-component .node-top {
  color: #fff;
}
.tooltip-component .node-top .insta-link {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  margin-bottom: 1px;
  margin-right: 2px;
}
.tooltip-component .node-top .insta-link::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("/frontend/img/icon/i-instagram.svg") center left no-repeat;
  background-size: auto 12px;
  position: absolute;
  top: 3px;
  left: 0;
}
.is-tiktok .tooltip-component .node-top .insta-link {
  padding-left: 22px;
}
.is-tiktok .tooltip-component .node-top .insta-link::before {
  top: 1px;
  width: 16px;
  height: 16px;
  background: url("/frontend/img/icon/i-tiktok-blue.svg") center left no-repeat;
  background-size: auto 16px;
}
.tooltip-component .node-top span {
  font-size: 14px;
}
.tooltip-component .node-top strong {
  display: inline-block;
  margin-top: 4px;
  font-size: 18px;
  width: 100%;
}
.tooltip-component .node-middle {
  padding: 8px 0 0;
  margin: 8px 0 0;
  border-top: 1px solid rgba(150, 151, 159, 0.2);
}
.tooltip-component .node-bottom {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(150, 151, 159, 0.2);
}
.tooltip-component .node-bottom a:not(.button) {
  display: inline-block;
  position: relative;
  padding-right: 18px;
}
.tooltip-component .node-bottom a:not(.button)::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  right: 0;
  background: url("/frontend/img/icon/i-arr-right-t.svg") center center no-repeat;
  background-size: 16px auto;
}
.tooltip-component span.grey {
  font-size: 14px;
}
.tooltip-component strong.white {
  display: inline-block;
  margin: 2px 0 8px;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
}
.tooltip-component a {
  font-size: 14px;
}

.tooltip-component.node-tooltip.locked .node-top span,
.tooltip-component.node-tooltip.company .node-top span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #73F2F5;
}
.tooltip-component.node-tooltip.locked .node-top span:before,
.tooltip-component.node-tooltip.company .node-top span:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 14px;
  background: url("/frontend/img/icon/icon-map-lock-tyr.svg") center center no-repeat;
  background-size: 12px auto;
  position: absolute;
  top: 2px;
  left: 0;
}
.tooltip-component.node-tooltip.locked .node-middle,
.tooltip-component.node-tooltip.company .node-middle {
  border: 0;
}
.tooltip-component.node-tooltip.locked .node-bottom,
.tooltip-component.node-tooltip.company .node-bottom {
  margin-top: 6px;
  border: 0;
}

.blog-section .row .col-4 .item-wrap .img-wrap {
  height: auto !important;
}

.blogs .blogs-wrap .row .col-4:not(:first-child) .blog-item .img-wrap,
.blogs .blogs-wrap .row .col-6:not(:first-child) .blog-item .img-wrap {
  height: auto !important;
}

body.blogs .body-wrap .blogs-wrap .row .col-4:first-child .blog-item .img-wrap {
  height: auto !important;
}

.blogs .blogs-wrap .row .col-4:first-child .blog-item .img-wrap img,
.blogs .blogs-wrap .row .col-6:first-child .blog-item .img-wrap img {
  position: static !important;
}

.text-blog-wrap h4 {
  font-size: 25px;
  margin-top: 45px;
  margin-bottom: 30px;
}

body .text-blog-wrap h4 {
  margin-bottom: 30px;
  margin-top: 25px;
}

.text-blog-wrap h5 {
  font-size: 18px;
  margin-top: 35px;
  margin-bottom: 20px;
}

.text-blog-wrap table {
  margin-top: 30px;
}

.text-blog-wrap table tr td,
.text-blog-wrap table tr th {
  border: 1px solid #ccc;
  padding: 5px 8px;
}

.text-blog .text-blog-wrap .ol-follower {
  padding-right: 20px;
}

.text-blog .text-blog-wrap .ol-follower li {
  font-size: 18px;
  margin-bottom: 12px;
}

.map-spinner-wrap {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0px 2px 9px rgba(105, 107, 118, 0.1);
  border-radius: 8px;
}

#which-mention,
#who-mention {
  position: relative;
}

#which-mention {
  height: calc(100% - 125px);
}

#who-mention {
  height: 285px;
  overflow: auto;
}

.instagram-spinner-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.insta-svg-wrap.insta-hide {
  position: fixed;
  top: -100%;
  opacity: 0;
}

@media only screen and (max-width: 480px) {
  .text-blog-wrap h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .text-blog-wrap .table-wrap {
    overflow: auto;
  }

  .text-blog .text-blog-wrap .ol-follower li {
    font-size: 15px;
  }

  .author-wrap div[style="font-size: 18px; color: #a4a4a4;"] {
    font-size: 15px !important;
  }
}
.tmp-menu .nav-wrap .event-button {
  display: inline-block;
}

.tmp-menu .nav-wrap .contact-button {
  display: none;
}

.home .tmp-menu + main .top h1 {
  padding-top: 30px;
}

@media only screen and (min-width: 1200px) {
  header.tmp-menu .header-wrap .nav-wrap nav li:nth-child(1) .sub-menu .menu-box::before {
    left: -362px !important;
  }
}
@media only screen and (min-width: 1024px) {
  header.tmp-menu .header-wrap .nav-wrap nav li:nth-child(1) .sub-menu .menu-box::before {
    left: -360px !important;
  }
}
@media only screen and (max-width: 600px) {
  header.tmp-menu .header-wrap .nav-wrap {
    padding-top: 90px;
  }
}
.important-fields {
  display: none;
}

.blogs .blogs-wrap .row .col-4 .blog-item .text-wrap p {
  position: relative;
}
.blogs .blogs-wrap .row .col-4 .blog-item .text-wrap p::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
