@charset "UTF-8";
* {
  transition-timing-function: ease-in-out;
  font-family: "Raleway", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

@media (max-width: 992px) {
  h2 {
    font-size: 18px;
  }
}
.btn {
  cursor: pointer !important;
  color: #FFF !important;
}

/**
 * Header
 */
.top-bar {
  background: #323232;
  height: 45px;
}

.top-bar .social {
  font-size: 0;
  padding: 0;
  margin: 0;
  border-left: 1px rgba(202, 202, 202, 0.2) solid;
}

.top-bar .social li {
  padding: 0;
  margin: 0;
  display: inline-block;
  border-right: 1px rgba(202, 202, 202, 0.2) solid;
}

.top-bar .social a {
  display: block;
  font-size: 16px;
  color: #fff;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
}

.top-bar .social a:hover {
  background: #d18f5c;
  transition: background 0.5s;
}

/**
 * Navigation
 */
.header .navigation {
  margin: 0;
  padding: 0;
}

.header .navigation li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.header .navigation li.featured a {
  background: #d18f5c;
  color: #FFF;
}

.header .navigation li.featured.featured-blink a {
  animation: featured-background 2s alternate infinite;
}

@keyframes featured-background {
  from {
    background: #d18f5c;
  }
  to {
    background: #449D44;
  }
}
.header .navigation li.featured a:hover,
.header .navigation li.featured a:focus,
.header .navigation li.featured a:active {
  animation: none;
  background: #ED9D5F;
  color: #FFF;
}

.header .navigation li a {
  display: inline-block;
  height: 45px;
  color: #cacaca;
  line-height: 45px;
  font-size: 14px;
  padding: 0 15px;
  text-decoration: none !important;
  transition: color 0.5s;
}

.header .navigation li a:hover,
.header .navigation li a:focus,
.header .navigation li a:active {
  color: #FFF;
}

/**
 * Notification Dropdown
 */
.notification-bell,
.notification-dropdown {
  display: none;
}

@media (min-width: 992px) {
  .notification-bell {
    display: block;
    position: relative;
  }

  .notification-bell i {
    font-size: 24px;
    transform: translateY(3px);
  }

  .notification-dropdown {
    display: block !important;
    position: absolute;
    z-index: 500;
    left: -15px;
    width: 400px;
    height: 350px;
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    top: 30px;
    transition: top 0.5s, opacity 0.5s;
  }

  .notification-dropdown.open {
    visibility: visible;
    opacity: 1;
    top: 55px;
  }

  .notification-dropdown::after {
    display: block;
    position: absolute;
    left: 20px;
    top: -19px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 20px;
    border-color: transparent transparent #4D4D4D transparent;
  }

  .notification-header {
    background: #4D4D4D;
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #FFFFFF;
  }

  .notification-footer a {
    display: block;
    text-align: center;
    width: 100%;
    height: 40px !important;
    line-height: 40px !important;
    transition: color 1s;
    background: #FFFFFF;
    border-top: 1px #ddd solid;
  }

  .notification-footer a:hover {
    color: #ED9D5F !important;
  }

  .notification-body {
    height: 260px;
    overflow-y: scroll;
  }

  .notification-entry > a {
    display: block;
    line-height: 1.5 !important;
    color: #ED9D5F !important;
    border-bottom: 1px #ddd solid;
    padding: 15px 10px !important;
    font-size: 15px !important;
    height: auto !important;
    width: 100%;
    margin: 0 !important;
    transition: padding 0.3s !important;
  }

  .notification-entry > a:hover {
    padding-left: 13px !important;
  }

  .notification-entry:last-of-type > a {
    border: none !important;
  }
}
/**
 * Campaign
 */
.campaign {
  position: relative;
  width: 100%;
  background: #ED9D5F;
  overflow: hidden;
  height: 350px;
}

@media (min-width: 800px) {
  .campaign {
    height: calc(100vh - 45px);
  }
}
.campaign-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: url("/assets/linkvertise/img/campaign_alternative.png") no-repeat no-repeat center bottom;
  animation: 1s campaign-background;
  animation-timing-function: ease-in-out;
  transform: translate(0, 15px);
  display: none;
}

@media (min-height: 800px) and (min-width: 1000px) {
  .campaign-background {
    background-size: 700px auto;
    display: block !important;
  }
}
@keyframes campaign-background {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 15px);
  }
}
.campaign-header {
  font-weight: 600;
  color: #FFF;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 200;
  top: 50px;
  font-size: 28px;
}

.campaign-header .campaign-subheading a {
  color: #FFF !important;
  text-decoration: underline !important;
  font-weight: 700;
}

.campaign-subheading {
  font-size: 18px;
  font-family: "Raleway", sans-serif;
}

@media (min-width: 768px) {
  .campaign-header {
    font-size: 48px;
    top: 150px;
  }
}
.campaign-input {
  margin-top: 50px;
}

.campaign-input .form-control {
  border-radius: 10px;
  border: none !important;
  height: 50px;
  padding: 8px 20px !important;
  line-height: 34px;
  font-size: 22px;
}

.campaign-input .btn {
  border-radius: 10px;
  border: none !important;
  height: 50px;
  line-height: 40px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #FFF !important;
}

@media (min-width: 768px) {
  .campaign-input .btn {
    border-radius: 0 10px 10px 0;
  }

  .campaign-input .form-control {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
  }
}
/**
 * Features
 */
.features {
  padding: 100px 0;
}

.feature {
  padding: 0 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .feature {
    border-right: 1px rgba(0, 0, 0, 0.1) solid;
    margin-right: 20px;
    min-height: 300px;
    padding: 0 20px 0 0;
    margin-bottom: 0;
  }

  .feature.last {
    border: none;
    padding: 0;
    margin: 0;
  }
}
.features h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-wrapper {
  position: relative;
  margin-bottom: 10px;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #FFF;
  border-radius: 100%;
  font-size: 28px;
}

/**
 * Sumup
 */
.sumup {
  overflow: hidden;
  position: relative;
  background: #323232;
  padding: 100px 0;
  color: #FFF;
}

.sumup img {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .sumup img {
    margin-bottom: 0;
  }
}
.sumup li {
  margin-bottom: 10px;
}

.sumup .btn {
  border-radius: 0;
  border: 5px #d18f5c solid;
  background: #d18f5c;
  color: #FFF !important;
  padding: 10px 20px;
  font-weight: 400;
  transition: background 0.5s;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.sumup .btn:hover {
  background: rgba(0, 0, 0, 0);
}

.sumup img {
  width: 100%;
}

.testimonials {
  padding: 50px 0 100px 0;
}

.testimonials .heading {
  margin-bottom: 50px;
  text-align: center;
}

.testimonials .position {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #ABABAB;
  font-size: 12px;
}

.testimonials p {
  text-align: justify;
}

/**
 * Forms
 */
.form-control {
  font-family: "Poppins", sans-serif;
}

form .btn {
  cursor: pointer !important;
}

.alert {
  color: #FFF;
  border: none;
  border-radius: 0;
}

.alert ul {
  margin: 0;
  padding: 0;
}

.alert .close {
  color: #FFF !important;
}

.alert.alert-danger {
  background: #E16E6E;
}

.alert.alert-success {
  background: #449D44;
}

.alert.alert-primary {
  background: #D18F5C;
}

.alert a {
  color: #FFF !important;
  text-decoration: underline;
}

/**
 * Footer
 */
.footer {
  line-height: 45px;
  background: #323232;
}

@media (min-width: 1120px) {
  .footer {
    text-align: right;
    height: 45px;
  }
}
.footer a {
  color: #cacaca;
  padding: 0 10px;
  text-decoration: none !important;
  transition: color 0.5s;
}

.footer a:hover {
  color: #FFF;
}

/**
 * Sidebar
 */
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  background: #3b3b3b;
  padding: 30px 0;
  color: #FFF;
  width: 0;
  overflow: hidden;
  transition: width 0.5s;
  z-index: 100;
}

.bg-linkvertise {
  background: #D18F5C !important;
}

.sidebar-close {
  padding-right: 30px;
}

.sidebar-close a {
  color: #FFF;
  transition: color 0.5s;
}

.sidebar-close a:hover,
.sidebar-close a:active,
.sidebar-close a:focus {
  color: #d18f5c;
}

.sidebar.show {
  width: 100% !important;
}

@media (min-width: 992px) {
  .sidebar {
    display: block !important;
    top: 45px !important;
    position: absolute !important;
    width: 300px !important;
    min-height: calc(100vh - 90px) !important;
  }
}
.sidebar .heading {
  padding: 0 30px;
  margin-bottom: 30px;
}

.sidebar li a {
  display: block;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  padding: 10px 30px;
  transition: background 0.5s;
  text-decoration: none !important;
}

.sidebar li a:hover {
  background: #434343;
}

.sidebar li a.active {
  background: #D18F5C;
}

.sidebar i {
  margin-right: 5px;
}

/**
 * Dashboard Content
 */
.dashboard-content {
  background: #f5f5f5;
  right: 0;
  padding: 30px;
  min-height: calc(100vh - 90px);
}

@media (min-width: 992px) {
  .dashboard-page {
    padding: 0 0 0 300px;
    background: #3B3B3B;
  }
}
/*
.info-section
{
    text-align: center;
    border-bottom: 1px #ddd solid;
    margin-bottom: 20px;
    padding-bottom: 20px;
}


@media (min-width: 768px)
{
    */
.info-section {
  border-right: 1px #ddd solid;
  border-bottom: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

/*}*/
.info-section.last {
  border: none !important;
  margin: 0;
  padding: 0;
}

/**
 * Animation
 */
.animate-pulse {
  animation: 1s pulse infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.animate-slim-spin {
  animation: 1s slim-spin infinite;
}

@keyframes slim-spin {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/**
 * DataTables
 */
/**
 * Quick-Nav
 */
.quick-nav {
  background: #3B3B3B;
}

.quick-nav ul {
  padding: 0;
}

.quick-nav li {
  display: inline-block;
  padding: 0;
}

.quick-nav li a {
  font-size: 16px;
  padding: 0 20px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  color: #FFF !important;
  text-decoration: none;
}

.quick-nav li a:hover,
.quick-nav li a:active,
.quick-nav li a:focus {
  background: #434343;
}

.quick-nav i {
  text-align: center;
}

.quick-nav li a.active {
  background: #d18f5c;
}

#link_datatable {
  overflow-x: scroll;
}

@media (min-width: 992px) {
  .pull-right-md-up {
    float: right;
  }
}
.about {
  padding: 70px 0 50px 0;
}

.about .heading {
  margin-bottom: 20px;
}

.about .embed-responsive {
  border: #d18f5c solid 5px !important;
}

.language-flag {
  border-radius: 5px;
  height: 16px;
}

.grecaptcha-badge {
  display: none;
}

.redirect .top-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  background: #d18f5c;
  z-index: 1000;
}

.redirect .page {
  margin-top: 80px;
  min-height: 100vh;
  background: #FDFEFE;
}

.redirect .top-bar .brand {
  position: relative;
  height: 80px;
  width: calc(100% - 225px);
}

.redirect .top-bar .brand a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #FFF;
  text-decoration: none !important;
  font-size: 18px;
  max-width: 50%;
}

@media (min-width: 1200px) {
  .redirect .top-bar .brand a {
    max-width: 80%;
    font-size: 32px;
  }
}
.redirect .btn-top-bar {
  margin-top: 20px;
  border-radius: 100px;
  border: 3px #FFF solid;
  background: transparent;
  color: #FFF !important;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 15px;
  transition: background 0.5s;
  font-family: "Poppins", sans-serif;
}

.redirect .page {
  padding-top: 20px;
}

.redirect .redirect-wrapper {
  padding: 10px 20px 20px 20px;
  box-shadow: 0 1px 5px rgba(227, 182, 45, 0.6);
  border-radius: 5px;
  background: #FBFBFB;
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .redirect .redirect-wrapper {
    max-width: 480px;
    margin: 0 auto 10px auto;
  }

  .redirect .redirect-wrapper.redirect-wrapper-big {
    max-width: 750px;
  }
}
.redirect .redirect-box {
  padding: 30px 30px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.29);
  border-radius: 5px;
  background: #FBFBFB;
}

.redirect h2 {
  margin-bottom: 20px;
  font-size: 23px;
  text-align: center;
}

.redirect .todo * {
  text-decoration: none !important;
}

.redirect .todo-entry {
  border: 1px #eee solid;
  border-radius: 3px;
  display: block;
  margin: 10px 0;
  position: relative;
  height: 80px;
  cursor: default;
  transition: border 0.3s;
}

.redirect .todo-entry.active {
  border: 1px #ddd solid;
  cursor: pointer;
}

.redirect .todo-icon {
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  display: inline-block;
  width: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 36px;
  color: #232323;
}

.redirect .todo-content {
  left: 80px;
  top: 15px;
  right: 0;
  position: absolute;
  text-align: left;
}

.redirect .todo-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

.redirect .todo-subheading {
  font-size: 14px;
  font-weight: 500;
  color: #343434;
}

.redirect .next-page .btn {
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.redirect .next-page .btn.disabled {
  cursor: not-allowed !important;
}

@media (max-width: 768px) {
  .redirect .next-page .btn {
    font-size: 28px;
  }
}
.redirect .small-text {
  color: #5f5f5f;
}

.redirect .todo-icon img {
  width: 50px;
}

.redirect .todo-entry .todo-arrow {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  color: #5F5F5F;
  font-size: 32px;
  transition: transform 0.2s ease-in-out;
}

.redirect .todo-entry.active .todo-arrow {
  display: block;
}

.redirect .todo-entry:hover .todo-arrow {
  transform: translate(-8px, -50%);
}

.redirect .ad-left,
.redirect .ad-right {
  float: left;
  width: 300px;
  height: 100px;
  text-align: center;
  display: block;
}

.redirect .ad-wrapper {
  display: inline-block;
}

.captcha {
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF;
  z-index: 1000000;
}

.captcha-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.link_create_progress_bar {
  transition: width 0.5s;
}

.form-check {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.form-check-toggle {
  position: relative;
  padding-left: 0;
  line-height: 30px;
}

.form-check-toggle input {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 0%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.form-check-toggle input + span {
  cursor: pointer;
  user-select: none;
  height: 30px;
  margin-left: 70px;
  display: block;
}

.form-check-toggle input + span:before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  height: 30px;
  width: 50px;
  background: #FFF;
  border: solid 1px #eff2f3;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
  border-radius: 15px;
}

.form-check-toggle input + span:after {
  width: 28px;
  height: 28px;
  margin-top: 1px;
  margin-left: 1px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background: #FFF;
  transition: margin-left 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
  font-weight: bold;
  content: "";
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), 0 0 5px rgba(0, 0, 0, 0.05);
}

.form-check-toggle input:checked + span:after {
  content: "";
  margin-left: 21px;
  box-shadow: none;
}

.form-check-toggle input:checked + span:before {
  background-color: #449D44;
  border-color: #449D44;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.browser_notifer {
  cursor: default !important;
  position: fixed;
  left: 50px;
  top: 150px;
  z-index: 100000;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.loading {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #FFF;
  z-index: 1000000;
  text-align: center;
  height: 100vh;
  line-height: 100vh;
}

.youtube-wrapper {
  position: fixed;
  bottom: 70px;
  right: 25px;
  z-index: 1000;
}

.youtube-wrapper img {
  height: 80px;
}

@media (min-width: 992px) {
  .youtube-wrapper img {
    height: 60px;
  }
}
.payment_method {
  opacity: 0.4;
  text-align: center;
  transition: opacity 0.5s;
  cursor: pointer;
}

.payment_method.active,
.payment_method:hover {
  opacity: 1;
}

.payment_method img {
  height: 40px;
}

.card .center label {
  text-align: center;
  width: 100%;
}

.loading-overlay {
  position: fixed;
  z-index: 1000000;
  background: rgba(255, 255, 255, 0.5);
  visibility: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 1s, visibility 0s ease-in-out 0.5s;
}

.loading-overlay.show {
  visibility: visible;
  opacity: 1;
}

.loading-overlay .loader {
  text-align: center;
  position: fixed;
  font-size: 64px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 0s ease-in-out 0.5s;
}

.loading-overlay.show .loader {
  visibility: visible;
  opacity: 1;
  display: block !important;
}

.chat-message {
  font-size: 14px;
  border-radius: 5px;
  padding: 5px 37px 5px 7px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  display: inline-block;
  max-width: 60%;
  text-align: left;
}

.support-area {
  background: #fbfbfb;
}

.nano .nano-content {
  padding-right: 20px;
}

.nano .nano-pane {
  background: #888;
}

.nano .nano-slider {
  background: #111;
}

.support-inner {
  height: 300px !important;
}

.chat-message-user {
  background: #D18F5C;
  color: #ffffff;
  margin-right: 10px;
}

.chat-message-admin {
  background: #3B3B3B;
  color: #ffffff;
  margin-right: 10px;
}

.chat-time {
  position: absolute;
  right: 7px;
  bottom: 5px;
  font-size: 10px;
  opacity: 0.8;
  display: block;
}

.chat-date {
  display: inline-block;
  margin: 15px 0 10px 0;
  padding: 5px 7px;
  border-radius: 5px;
  background: #dfe1e6;
  font-size: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-entry span {
  font-size: 16px;
  font-weight: 700;
}

.faq-entry i {
  cursor: pointer;
  color: #D18F5C;
}

.faq-entry a {
  font-size: 14px;
}

.faq-entry {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
}

.faq-entry:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-entry-top span {
  font-size: 20px;
  font-weight: 700;
  line-height: 51px;
  padding-right: 25px;
}

.faq-entry-top i {
  cursor: pointer;
  color: #D18F5C;
  font-size: 25px;
  line-height: 51px;
  position: absolute;
  right: 30px;
}

.faq-entry-top a {
  font-size: 14px;
}

.support_badge {
  float: right;
  margin-top: 11px;
  /* background: #D18F5C; */
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  animation: featured-background 0.8s alternate infinite;
  background: #d18f5c;
}

.payout-heading {
  font-family: "Poppins", sans-serif;
}

.payment_method {
  overflow: hidden;
  position: relative;
}

.payment_method .card-body {
  height: 80px;
}

.payout-image {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  transition: top 0.3s ease-in;
}

.payout-image {
  top: 140px;
}

.payout-image-grey {
  top: 50%;
}

.payment_method:hover .payout-image,
.payment_method.active .payout-image {
  top: 50%;
}

.payment_method:hover .payout-image-grey,
.payment_method.active .payout-image-grey {
  top: -140px;
}

.footer-payout {
  background: #4D4D4D;
}

.schedule-addon {
  transform: rotate(-45deg);
  background: #28a745;
  color: #fff;
  position: absolute;
  top: 15px;
  left: -35px;
  right: auto;
  bottom: auto;
  font-size: 10px;
  text-align: center;
  width: 120px;
}

.payout-progress {
  height: 20px;
  margin-top: 2px;
}

.linkvertise-tabs {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

.linkvertise-tabs .nav-item {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
}

.linkvertise-tabs .nav-link {
  background: #4D4D4D;
  text-align: center;
  font-family: "Poppins", sans-serif;
  border: none !important;
  color: #FFF !important;
  border-radius: 0;
  font-weight: 700;
  transition: background 0.5s;
}

.linkvertise-tabs .nav-link.active {
  background: #D18F5C;
}

.btn-linkvertise {
  background: #D18F5C;
  border: none;
}

.btn-linkvertise:hover,
.btn-linkvertise:active,
.btn-linkvertise:focus {
  background: #4D4D4D !important;
}

.btn-linkvertise-inverse {
  background: #4D4D4D;
  border: none;
}

.btn-linkvertise-inverse:hover,
.btn-linkvertise-inverse:active,
.btn-linkvertise-inverse:focus {
  background: #D18F5C !important;
}

.notification_badge {
  position: absolute;
  display: none;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  top: 6px;
  right: 17px;
  animation: featured-background 0.8s alternate infinite;
  color: white;
  line-height: 12px;
}

@media (min-width: 992px) {
  .notification_badge {
    display: block;
  }
}
.badge-number {
  padding-left: 4px;
}

.chart-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.position-relative {
  position: relative;
}

.chart-loading.inactive {
  display: none;
}

.redirect-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  right: 0;
  left: 0;
  top: 0;
  bottom: -300px;
  z-index: 10000;
  font-size: 64px;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

#web_modal .modal-dialog {
  margin-top: 15px !important;
}

.web-time-hint {
  color: #FFF;
  background: #181818;
  display: inline-block;
  padding: 0 5px;
  margin-right: 30px;
  font-size: 18px;
  height: 26px;
  line-height: 26px;
  position: relative;
  transform: translateY(-6px);
}

@media (min-width: 992px) {
  .web-time-hint::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 13px solid #181818;
  }
}
.web-close-btn {
  height: 40px;
  line-height: 40px;
  font-size: 40px;
  color: #181818;
}

.web-close-btn:hover {
  color: #d18f5c;
}

.web-close-btn:focus {
  color: #d18f5c;
}

.web-close-btn:active {
  color: #d18f5c;
}

.web-heading {
  line-height: 40px;
  margin-bottom: 0;
}

.web-icon {
  transform: translateY(-5px);
}

/*
@media (min-width: 576px) {
    .modal-xl {
        max-width: 90%;
        margin: 30px auto;
    }
}
*/
@media (min-width: 992px) {
  .modal-xl {
    max-width: 800px;
  }
}
.script-wp-api {
  line-height: 25px;
}

@media (max-width: 992px) {
  .modal-fullscreen {
    max-width: 100% !important;
    margin-top: 0px !important;
  }
}
#video_modal {
  margin-top: 15px !important;
}

.mb-25px {
  margin-bottom: 25px;
}

.payoneer {
  height: 55px !important;
}

.countdown-digit {
  text-align: center;
  display: inline-block;
  min-width: 18px;
}

.duration-inner i {
  font-size: 40px;
}

.duration-inner {
  display: flex;
  align-items: center;
}

.duration-inner span {
  margin-left: 20px;
  font-size: 18px;
}

.img-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.img-wrapper .icon-placeholder,
.img-wrapper img {
  margin-bottom: 5px;
  margin-right: 5px;
  border-radius: 100%;
  background: #e9ecef;
  width: 50px;
  height: 50px;
}
.img-wrapper img {
  cursor: pointer;
  border: 2px #181818 solid;
  transition: border 0.3s, transform 0.3s;
}
.img-wrapper img.active {
  border: 2px #d18f5c solid;
  transform: scale(1.05);
}

.download-input-desc {
  display: none;
}

.download-link {
  position: relative;
}
.download-link .download-input {
  opacity: 0;
  height: 0;
  padding: 0;
  border: none;
  transition: border 0.3s, padding 0.3s, margin-top 0.3s, heigh 0.3s, opacity 0.3s;
}
.download-link i {
  transition: rotate 0.3s;
}
.download-link.active i {
  transform: rotate(180deg);
}
.download-link.active .download-input {
  border: 1px #ced4da solid;
  padding: 6px 12px;
  margin-top: 8px;
  height: 39px;
  opacity: 1;
}
.download-link.active .download-input-desc {
  display: block;
  position: absolute;
  top: 54px;
  right: -15px;
  transform: translateX(100%);
}

.btn-upload {
  color: white !important;
  background: #d18f5c !important;
  border-color: #ced4da !important;
}

#modal_link_create .dropzone .dz-preview .dz-image,
#modal_link_edit .dropzone .dz-preview .dz-image,
.ads-dynamic .dropzone .dz-preview .dz-image,
#modal__mass_edit_link .dropzone .dz-preview .dz-image {
  border-radius: 5px;
  width: 120px;
  height: 67.5px;
}
#modal_link_create .dropzone,
#modal_link_edit .dropzone,
.ads-dynamic .dropzone,
#modal__mass_edit_link .dropzone {
  border: 2px dashed #ced4da !important;
  border-radius: 5px;
  color: #495057 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#modal_link_create .modal-header,
#modal_link_edit .modal-header,
.ads-dynamic .modal-header,
#modal__mass_edit_link .modal-header {
  height: 66px;
  padding: 0 16px;
}
#modal_link_create .modal-header .headline,
#modal_link_edit .modal-header .headline,
.ads-dynamic .modal-header .headline,
#modal__mass_edit_link .modal-header .headline {
  font-size: 30px;
  font-weight: 600;
  line-height: 66px;
}
#modal_link_create .modal-header .close-btn,
#modal_link_edit .modal-header .close-btn,
.ads-dynamic .modal-header .close-btn,
#modal__mass_edit_link .modal-header .close-btn {
  height: 40px;
  font-size: 40px;
  line-height: 66px;
  color: #181818;
}
#modal_link_create .modal-header .close-btn i:hover,
#modal_link_edit .modal-header .close-btn i:hover,
.ads-dynamic .modal-header .close-btn i:hover,
#modal__mass_edit_link .modal-header .close-btn i:hover {
  color: #d18f5c;
}
#modal_link_create .pointer,
#modal_link_edit .pointer,
.ads-dynamic .pointer,
#modal__mass_edit_link .pointer {
  cursor: pointer;
}
#modal_link_create .modal-body .headline, #modal_link_create.dynamic-ads .headline,
#modal_link_edit .modal-body .headline,
#modal_link_edit.dynamic-ads .headline,
.ads-dynamic .modal-body .headline,
.ads-dynamic.dynamic-ads .headline,
#modal__mass_edit_link .modal-body .headline,
#modal__mass_edit_link.dynamic-ads .headline {
  font-size: 24px;
}
#modal_link_create .modal-body .premium_progress_bar, #modal_link_create.dynamic-ads .premium_progress_bar,
#modal_link_edit .modal-body .premium_progress_bar,
#modal_link_edit.dynamic-ads .premium_progress_bar,
.ads-dynamic .modal-body .premium_progress_bar,
.ads-dynamic.dynamic-ads .premium_progress_bar,
#modal__mass_edit_link .modal-body .premium_progress_bar,
#modal__mass_edit_link.dynamic-ads .premium_progress_bar {
  height: 15px;
}
#modal_link_create .modal-body .progress, #modal_link_create.dynamic-ads .progress,
#modal_link_edit .modal-body .progress,
#modal_link_edit.dynamic-ads .progress,
.ads-dynamic .modal-body .progress,
.ads-dynamic.dynamic-ads .progress,
#modal__mass_edit_link .modal-body .progress,
#modal__mass_edit_link.dynamic-ads .progress {
  height: 1rem;
  background-color: #e9ecef;
  margin: 10px 30px 10px 30px;
  width: calc(100% - 60px);
  border-radius: 0.25rem;
}
#modal_link_create .modal-body .information, #modal_link_create.dynamic-ads .information,
#modal_link_edit .modal-body .information,
#modal_link_edit.dynamic-ads .information,
.ads-dynamic .modal-body .information,
.ads-dynamic.dynamic-ads .information,
#modal__mass_edit_link .modal-body .information,
#modal__mass_edit_link.dynamic-ads .information {
  position: relative;
}
#modal_link_create .modal-body .information .info-text, #modal_link_create.dynamic-ads .information .info-text,
#modal_link_edit .modal-body .information .info-text,
#modal_link_edit.dynamic-ads .information .info-text,
.ads-dynamic .modal-body .information .info-text,
.ads-dynamic.dynamic-ads .information .info-text,
#modal__mass_edit_link .modal-body .information .info-text,
#modal__mass_edit_link.dynamic-ads .information .info-text {
  visibility: hidden;
  position: absolute;
  top: 24px;
  right: 0px;
  box-shadow: 5px 5px 16px -2px #adadad;
  border-radius: 5px;
  padding: 12px;
  width: 250px;
  text-align: justify;
  z-index: 20;
}
@media (min-width: 1200px) {
  #modal_link_create .modal-body .information .info-text, #modal_link_create.dynamic-ads .information .info-text,
#modal_link_edit .modal-body .information .info-text,
#modal_link_edit.dynamic-ads .information .info-text,
.ads-dynamic .modal-body .information .info-text,
.ads-dynamic.dynamic-ads .information .info-text,
#modal__mass_edit_link .modal-body .information .info-text,
#modal__mass_edit_link.dynamic-ads .information .info-text {
    right: -230px;
  }
}
#modal_link_create .modal-body .information:hover .info-text, #modal_link_create.dynamic-ads .information:hover .info-text,
#modal_link_edit .modal-body .information:hover .info-text,
#modal_link_edit.dynamic-ads .information:hover .info-text,
.ads-dynamic .modal-body .information:hover .info-text,
.ads-dynamic.dynamic-ads .information:hover .info-text,
#modal__mass_edit_link .modal-body .information:hover .info-text,
#modal__mass_edit_link.dynamic-ads .information:hover .info-text {
  visibility: visible;
  background: white;
}
#modal_link_create .modal-body .information i, #modal_link_create.dynamic-ads .information i,
#modal_link_edit .modal-body .information i,
#modal_link_edit.dynamic-ads .information i,
.ads-dynamic .modal-body .information i,
.ads-dynamic.dynamic-ads .information i,
#modal__mass_edit_link .modal-body .information i,
#modal__mass_edit_link.dynamic-ads .information i {
  font-size: 24px;
}
#modal_link_create .modal-body .continue-btn, #modal_link_create.dynamic-ads .continue-btn,
#modal_link_edit .modal-body .continue-btn,
#modal_link_edit.dynamic-ads .continue-btn,
.ads-dynamic .modal-body .continue-btn,
.ads-dynamic.dynamic-ads .continue-btn,
#modal__mass_edit_link .modal-body .continue-btn,
#modal__mass_edit_link.dynamic-ads .continue-btn {
  background: #d18f5c;
  color: white;
  font-size: 18px;
  padding: 10px 0;
  border-radius: 2px;
  margin: 0;
}
#modal_link_create .modal-body .back-btn, #modal_link_create.dynamic-ads .back-btn,
#modal_link_edit .modal-body .back-btn,
#modal_link_edit.dynamic-ads .back-btn,
.ads-dynamic .modal-body .back-btn,
.ads-dynamic.dynamic-ads .back-btn,
#modal__mass_edit_link .modal-body .back-btn,
#modal__mass_edit_link.dynamic-ads .back-btn {
  background: #4D4D4D;
  color: white;
  font-size: 18px;
  padding: 10px 0;
  border-radius: 2px;
  margin: 0;
}
#modal_link_create .step-1 .error-wrapper,
#modal_link_edit .step-1 .error-wrapper,
.ads-dynamic .step-1 .error-wrapper,
#modal__mass_edit_link .step-1 .error-wrapper {
  border: 1px solid #ced4da;
  border-radius: 0 0 5px 5px;
  border-top: none;
  padding: 0 0.75rem;
  font-family: "Poppins", sans-serif;
  color: #495057;
}
#modal_link_create .step-1 .error-wrapper i,
#modal_link_edit .step-1 .error-wrapper i,
.ads-dynamic .step-1 .error-wrapper i,
#modal__mass_edit_link .step-1 .error-wrapper i {
  color: #f54842;
  font-size: 26px;
  line-height: 50px;
}
#modal_link_create .step-1 .error-wrapper .error-message,
#modal_link_edit .step-1 .error-wrapper .error-message,
.ads-dynamic .step-1 .error-wrapper .error-message,
#modal__mass_edit_link .step-1 .error-wrapper .error-message {
  margin-left: 15px;
  padding: 15px 0;
}
#modal_link_create .step-1 .form-control,
#modal_link_edit .step-1 .form-control,
.ads-dynamic .step-1 .form-control,
#modal__mass_edit_link .step-1 .form-control {
  height: 50px;
  border-radius: 5px 5px 0 0;
}
#modal_link_create .step-1 .form-control:focus,
#modal_link_edit .step-1 .form-control:focus,
.ads-dynamic .step-1 .form-control:focus,
#modal__mass_edit_link .step-1 .form-control:focus {
  border: 1px solid #ced4da;
  box-shadow: none;
}
#modal_link_create .step-2 .prepend-english,
#modal_link_edit .step-2 .prepend-english,
.ads-dynamic .step-2 .prepend-english,
#modal__mass_edit_link .step-2 .prepend-english {
  border-radius: unset !important;
}
#modal_link_create .step-2 .custom-select-english,
#modal_link_edit .step-2 .custom-select-english,
.ads-dynamic .step-2 .custom-select-english,
#modal__mass_edit_link .step-2 .custom-select-english {
  border-radius: 5px 0 0 0 !important;
}
#modal_link_create .step-2 .preview,
#modal_link_edit .step-2 .preview,
.ads-dynamic .step-2 .preview,
#modal__mass_edit_link .step-2 .preview {
  background: #d18f5c;
  min-width: 75%;
  margin: auto;
  padding: 10px 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.29);
  color: white;
  font-size: 18px;
  border-radius: 2px;
  text-decoration: none;
}
#modal_link_create .step-2 .go-to,
#modal_link_edit .step-2 .go-to,
.ads-dynamic .step-2 .go-to,
#modal__mass_edit_link .step-2 .go-to {
  border-radius: 0 0 5px 5px;
  border-top: none;
  padding: 0 0.75rem;
  line-height: calc(50px - 1.5rem);
  font-family: "Poppins", sans-serif;
  color: #495057;
}
#modal_link_create .step-2 .error-wrapper,
#modal_link_edit .step-2 .error-wrapper,
.ads-dynamic .step-2 .error-wrapper,
#modal__mass_edit_link .step-2 .error-wrapper {
  border: 1px solid #ced4da;
  border-radius: 0 0 5px 5px;
  border-top: none;
  padding: 0 0.75rem;
  font-family: "Poppins", sans-serif;
  color: #495057;
}
#modal_link_create .step-2 .error-wrapper i,
#modal_link_edit .step-2 .error-wrapper i,
.ads-dynamic .step-2 .error-wrapper i,
#modal__mass_edit_link .step-2 .error-wrapper i {
  color: #f54842;
  font-size: 26px;
  line-height: 50px;
}
#modal_link_create .step-2 .error-wrapper .error-message,
#modal_link_edit .step-2 .error-wrapper .error-message,
.ads-dynamic .step-2 .error-wrapper .error-message,
#modal__mass_edit_link .step-2 .error-wrapper .error-message {
  margin-left: 15px;
  padding: 15px 0;
}
#modal_link_create .step-2 .input-group,
#modal_link_edit .step-2 .input-group,
.ads-dynamic .step-2 .input-group,
#modal__mass_edit_link .step-2 .input-group {
  margin: 0;
}
#modal_link_create .step-2 .input-group .custom-select,
#modal_link_edit .step-2 .input-group .custom-select,
.ads-dynamic .step-2 .input-group .custom-select,
#modal__mass_edit_link .step-2 .input-group .custom-select {
  height: 50px;
  border-radius: unset;
  border-right: unset;
}
#modal_link_create .step-2 .input-group .input-group-text,
#modal_link_edit .step-2 .input-group .input-group-text,
.ads-dynamic .step-2 .input-group .input-group-text,
#modal__mass_edit_link .step-2 .input-group .input-group-text {
  border-radius: 5px 0 0 0;
}
#modal_link_create .step-2 .input-group .form-control,
#modal_link_edit .step-2 .input-group .form-control,
.ads-dynamic .step-2 .input-group .form-control,
#modal__mass_edit_link .step-2 .input-group .form-control {
  height: 50px;
  display: inline-block;
  margin: 0;
  border-bottom-right-radius: unset;
}
#modal_link_create .step-2 .input-group .form-control:focus,
#modal_link_edit .step-2 .input-group .form-control:focus,
.ads-dynamic .step-2 .input-group .form-control:focus,
#modal__mass_edit_link .step-2 .input-group .form-control:focus {
  border: 1px solid #ced4da;
  box-shadow: none;
}
#modal_link_create .step-3 .error-wrapper,
#modal_link_edit .step-3 .error-wrapper,
.ads-dynamic .step-3 .error-wrapper,
#modal__mass_edit_link .step-3 .error-wrapper {
  border: 1px solid #ced4da;
  border-radius: 0 0 5px 5px;
  border-top: none;
  padding: 0 0.75rem;
  font-family: "Poppins", sans-serif;
  color: #495057;
}
#modal_link_create .step-3 .error-wrapper i,
#modal_link_edit .step-3 .error-wrapper i,
.ads-dynamic .step-3 .error-wrapper i,
#modal__mass_edit_link .step-3 .error-wrapper i {
  color: #f54842;
  font-size: 26px;
  line-height: 50px;
}
#modal_link_create .step-3 .error-wrapper .error-message,
#modal_link_edit .step-3 .error-wrapper .error-message,
.ads-dynamic .step-3 .error-wrapper .error-message,
#modal__mass_edit_link .step-3 .error-wrapper .error-message {
  margin-left: 15px;
  padding: 15px 0;
}
#modal_link_create .step-3 .input-group,
#modal_link_edit .step-3 .input-group,
.ads-dynamic .step-3 .input-group,
#modal__mass_edit_link .step-3 .input-group {
  margin: 0;
}
#modal_link_create .step-3 .input-group .custom-select,
#modal_link_edit .step-3 .input-group .custom-select,
.ads-dynamic .step-3 .input-group .custom-select,
#modal__mass_edit_link .step-3 .input-group .custom-select {
  height: 50px;
  border-radius: 5px 0 0 0;
  border-right: unset;
}
#modal_link_create .step-3 .input-group .input-group-text,
#modal_link_edit .step-3 .input-group .input-group-text,
.ads-dynamic .step-3 .input-group .input-group-text,
#modal__mass_edit_link .step-3 .input-group .input-group-text {
  border-radius: 0;
}
#modal_link_create .step-3 .input-group .form-control,
#modal_link_edit .step-3 .input-group .form-control,
.ads-dynamic .step-3 .input-group .form-control,
#modal__mass_edit_link .step-3 .input-group .form-control {
  height: 50px;
  display: inline-block;
  margin: 0;
  border-bottom-right-radius: unset;
}
#modal_link_create .step-3 .input-group .form-control:focus,
#modal_link_edit .step-3 .input-group .form-control:focus,
.ads-dynamic .step-3 .input-group .form-control:focus,
#modal__mass_edit_link .step-3 .input-group .form-control:focus {
  border: 1px solid #ced4da;
  box-shadow: none;
}
#modal_link_create .step-4 .progress,
#modal_link_edit .step-4 .progress,
.ads-dynamic .step-4 .progress,
#modal__mass_edit_link .step-4 .progress {
  width: calc(100%);
}
#modal_link_create .step-4 .preview,
#modal_link_edit .step-4 .preview,
.ads-dynamic .step-4 .preview,
#modal__mass_edit_link .step-4 .preview {
  position: relative;
}
#modal_link_create .step-4 .preview .headline,
#modal_link_edit .step-4 .preview .headline,
.ads-dynamic .step-4 .preview .headline,
#modal__mass_edit_link .step-4 .preview .headline {
  font-size: 1rem;
}
#modal_link_create .step-4 .error-wrapper,
#modal_link_edit .step-4 .error-wrapper,
.ads-dynamic .step-4 .error-wrapper,
#modal__mass_edit_link .step-4 .error-wrapper {
  border: 1px solid #ced4da;
  border-radius: 0 0 5px 5px;
  border-top: none;
  padding: 0 0.75rem;
  font-family: "Poppins", sans-serif;
  color: #495057;
}
#modal_link_create .step-4 .error-wrapper.error-images,
#modal_link_edit .step-4 .error-wrapper.error-images,
.ads-dynamic .step-4 .error-wrapper.error-images,
#modal__mass_edit_link .step-4 .error-wrapper.error-images {
  border-top: 1px solid #ced4da;
  border-radius: 5px;
  margin-bottom: 10px;
}
#modal_link_create .step-4 .error-wrapper i,
#modal_link_edit .step-4 .error-wrapper i,
.ads-dynamic .step-4 .error-wrapper i,
#modal__mass_edit_link .step-4 .error-wrapper i {
  color: #f54842;
  font-size: 26px;
  line-height: 50px;
}
#modal_link_create .step-4 .error-wrapper .error-message,
#modal_link_edit .step-4 .error-wrapper .error-message,
.ads-dynamic .step-4 .error-wrapper .error-message,
#modal__mass_edit_link .step-4 .error-wrapper .error-message {
  margin-left: 15px;
  padding: 15px 0;
}
#modal_link_create .step-4 textarea,
#modal_link_edit .step-4 textarea,
.ads-dynamic .step-4 textarea,
#modal__mass_edit_link .step-4 textarea {
  height: unset !important;
}
#modal_link_create .step-4 .form-control,
#modal_link_edit .step-4 .form-control,
.ads-dynamic .step-4 .form-control,
#modal__mass_edit_link .step-4 .form-control {
  height: 50px;
  border-radius: 5px 5px 0 0;
}
#modal_link_create .step-4 .form-control:focus,
#modal_link_edit .step-4 .form-control:focus,
.ads-dynamic .step-4 .form-control:focus,
#modal__mass_edit_link .step-4 .form-control:focus {
  border: 1px solid #ced4da;
  box-shadow: none;
}
#modal_link_create .step-4 .preview-wrapper,
#modal_link_edit .step-4 .preview-wrapper,
.ads-dynamic .step-4 .preview-wrapper,
#modal__mass_edit_link .step-4 .preview-wrapper {
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 15px 0.75rem;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.29);
}
#modal_link_create .step-4 .preview-wrapper .title,
#modal_link_edit .step-4 .preview-wrapper .title,
.ads-dynamic .step-4 .preview-wrapper .title,
#modal__mass_edit_link .step-4 .preview-wrapper .title {
  font-size: 18px;
  color: blue;
}
#modal_link_create .step-4 .preview-wrapper .link-url,
#modal_link_edit .step-4 .preview-wrapper .link-url,
.ads-dynamic .step-4 .preview-wrapper .link-url,
#modal__mass_edit_link .step-4 .preview-wrapper .link-url {
  font-size: 14px;
  color: green;
}
#modal_link_create .step-4 .preview-wrapper .desc,
#modal_link_edit .step-4 .preview-wrapper .desc,
.ads-dynamic .step-4 .preview-wrapper .desc,
#modal__mass_edit_link .step-4 .preview-wrapper .desc {
  font-size: 14px;
}
#modal_link_create .step-4 .form-check-toggle input + span:before,
#modal_link_edit .step-4 .form-check-toggle input + span:before,
.ads-dynamic .step-4 .form-check-toggle input + span:before,
#modal__mass_edit_link .step-4 .form-check-toggle input + span:before {
  height: 25px;
  width: 59px;
}
#modal_link_create .step-4 .form-check-toggle input + span:after,
#modal_link_edit .step-4 .form-check-toggle input + span:after,
.ads-dynamic .step-4 .form-check-toggle input + span:after,
#modal__mass_edit_link .step-4 .form-check-toggle input + span:after {
  height: 23px;
  width: 23px;
}
#modal_link_create .step-4 .form-check-toggle input:checked + span:after,
#modal_link_edit .step-4 .form-check-toggle input:checked + span:after,
.ads-dynamic .step-4 .form-check-toggle input:checked + span:after,
#modal__mass_edit_link .step-4 .form-check-toggle input:checked + span:after {
  margin-left: 35px;
}
#modal_link_create .step-4 .form-check-toggle,
#modal_link_edit .step-4 .form-check-toggle,
.ads-dynamic .step-4 .form-check-toggle,
#modal__mass_edit_link .step-4 .form-check-toggle {
  line-height: 27px;
}
#modal_link_create .step-4 .form-check-toggle input + span,
#modal_link_edit .step-4 .form-check-toggle input + span,
.ads-dynamic .step-4 .form-check-toggle input + span,
#modal__mass_edit_link .step-4 .form-check-toggle input + span {
  margin-left: 83px;
}
#modal_link_create .step-221 .error-wrapper,
#modal_link_edit .step-221 .error-wrapper,
.ads-dynamic .step-221 .error-wrapper,
#modal__mass_edit_link .step-221 .error-wrapper {
  border: 1px solid #ced4da;
  border-radius: 0 0 5px 5px;
  border-top: none;
  padding: 0 0.75rem;
  font-family: "Poppins", sans-serif;
  color: #495057;
}
#modal_link_create .step-221 .error-wrapper i,
#modal_link_edit .step-221 .error-wrapper i,
.ads-dynamic .step-221 .error-wrapper i,
#modal__mass_edit_link .step-221 .error-wrapper i {
  color: #f54842;
  font-size: 26px;
  line-height: 50px;
}
#modal_link_create .step-221 .error-wrapper .error-message,
#modal_link_edit .step-221 .error-wrapper .error-message,
.ads-dynamic .step-221 .error-wrapper .error-message,
#modal__mass_edit_link .step-221 .error-wrapper .error-message {
  margin-left: 15px;
  padding: 15px 0;
}
#modal_link_create .step-221 .icon-headline,
#modal_link_edit .step-221 .icon-headline,
.ads-dynamic .step-221 .icon-headline,
#modal__mass_edit_link .step-221 .icon-headline {
  font-size: 1.2rem;
}
#modal_link_create .step-6 button, #modal_link_create.ads-dynamic button,
#modal_link_edit .step-6 button,
#modal_link_edit.ads-dynamic button,
.ads-dynamic .step-6 button,
.ads-dynamic.ads-dynamic button,
#modal__mass_edit_link .step-6 button,
#modal__mass_edit_link.ads-dynamic button {
  border: none;
  cursor: pointer !important;
}
#modal_link_create .step-6 .installer-hover, #modal_link_create.ads-dynamic .installer-hover,
#modal_link_edit .step-6 .installer-hover,
#modal_link_edit.ads-dynamic .installer-hover,
.ads-dynamic .step-6 .installer-hover,
.ads-dynamic.ads-dynamic .installer-hover,
#modal__mass_edit_link .step-6 .installer-hover,
#modal__mass_edit_link.ads-dynamic .installer-hover {
  position: relative;
}
#modal_link_create .step-6 .installer-info, #modal_link_create.ads-dynamic .installer-info,
#modal_link_edit .step-6 .installer-info,
#modal_link_edit.ads-dynamic .installer-info,
.ads-dynamic .step-6 .installer-info,
.ads-dynamic.ads-dynamic .installer-info,
#modal__mass_edit_link .step-6 .installer-info,
#modal__mass_edit_link.ads-dynamic .installer-info {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0;
  width: 100%;
  border-radius: 5px;
  padding: 12px;
  text-align: center;
  z-index: 20;
  display: none;
  background: white;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.29);
}
#modal_link_create .step-6 .installer-hover:hover .installer-info, #modal_link_create.ads-dynamic .installer-hover:hover .installer-info,
#modal_link_edit .step-6 .installer-hover:hover .installer-info,
#modal_link_edit.ads-dynamic .installer-hover:hover .installer-info,
.ads-dynamic .step-6 .installer-hover:hover .installer-info,
.ads-dynamic.ads-dynamic .installer-hover:hover .installer-info,
#modal__mass_edit_link .step-6 .installer-hover:hover .installer-info,
#modal__mass_edit_link.ads-dynamic .installer-hover:hover .installer-info {
  display: flex;
  opacity: 1;
}
#modal_link_create .step-6 .progress-revenue, #modal_link_create.ads-dynamic .progress-revenue,
#modal_link_edit .step-6 .progress-revenue,
#modal_link_edit.ads-dynamic .progress-revenue,
.ads-dynamic .step-6 .progress-revenue,
.ads-dynamic.ads-dynamic .progress-revenue,
#modal__mass_edit_link .step-6 .progress-revenue,
#modal__mass_edit_link.ads-dynamic .progress-revenue {
  height: 40px;
  width: 100%;
}
#modal_link_create .step-6 .progress-bar-revenue, #modal_link_create.ads-dynamic .progress-bar-revenue,
#modal_link_edit .step-6 .progress-bar-revenue,
#modal_link_edit.ads-dynamic .progress-bar-revenue,
.ads-dynamic .step-6 .progress-bar-revenue,
.ads-dynamic.ads-dynamic .progress-bar-revenue,
#modal__mass_edit_link .step-6 .progress-bar-revenue,
#modal__mass_edit_link.ads-dynamic .progress-bar-revenue {
  background: #28a745;
  font-size: 1rem;
}
#modal_link_create .step-6 .row, #modal_link_create.ads-dynamic .row,
#modal_link_edit .step-6 .row,
#modal_link_edit.ads-dynamic .row,
.ads-dynamic .step-6 .row,
.ads-dynamic.ads-dynamic .row,
#modal__mass_edit_link .step-6 .row,
#modal__mass_edit_link.ads-dynamic .row {
  overflow: hidden;
}
#modal_link_create .step-6 .row [class*=col-], #modal_link_create.ads-dynamic .row [class*=col-],
#modal_link_edit .step-6 .row [class*=col-],
#modal_link_edit.ads-dynamic .row [class*=col-],
.ads-dynamic .step-6 .row [class*=col-],
.ads-dynamic.ads-dynamic .row [class*=col-],
#modal__mass_edit_link .step-6 .row [class*=col-],
#modal__mass_edit_link.ads-dynamic .row [class*=col-] {
  margin-bottom: -99999px;
  padding-bottom: 99999px;
}
#modal_link_create .step-6 .revenue-card, #modal_link_create.ads-dynamic .revenue-card,
#modal_link_edit .step-6 .revenue-card,
#modal_link_edit.ads-dynamic .revenue-card,
.ads-dynamic .step-6 .revenue-card,
.ads-dynamic.ads-dynamic .revenue-card,
#modal__mass_edit_link .step-6 .revenue-card,
#modal__mass_edit_link.ads-dynamic .revenue-card {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.29);
  cursor: pointer;
  border-radius: 5px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#modal_link_create .step-6 .revenue-card .icon, #modal_link_create.ads-dynamic .revenue-card .icon,
#modal_link_edit .step-6 .revenue-card .icon,
#modal_link_edit.ads-dynamic .revenue-card .icon,
.ads-dynamic .step-6 .revenue-card .icon,
.ads-dynamic.ads-dynamic .revenue-card .icon,
#modal__mass_edit_link .step-6 .revenue-card .icon,
#modal__mass_edit_link.ads-dynamic .revenue-card .icon {
  position: absolute;
  top: 5px;
  right: 9px;
  font-size: 19px;
}
#modal_link_create .step-6 .revenue-card .badge, #modal_link_create.ads-dynamic .revenue-card .badge,
#modal_link_edit .step-6 .revenue-card .badge,
#modal_link_edit.ads-dynamic .revenue-card .badge,
.ads-dynamic .step-6 .revenue-card .badge,
.ads-dynamic.ads-dynamic .revenue-card .badge,
#modal__mass_edit_link .step-6 .revenue-card .badge,
#modal__mass_edit_link.ads-dynamic .revenue-card .badge {
  position: absolute;
  bottom: 13px;
  right: -70px;
  padding: 0.5rem;
  width: 200px;
  background: #449D44;
  color: white;
  text-align: center;
  box-shadow: 4px 4px 15px rgba(26, 35, 126, 0.2);
  transform: rotate(-45deg);
}
#modal_link_create .step-6 .revenue-card .title, #modal_link_create.ads-dynamic .revenue-card .title,
#modal_link_edit .step-6 .revenue-card .title,
#modal_link_edit.ads-dynamic .revenue-card .title,
.ads-dynamic .step-6 .revenue-card .title,
.ads-dynamic.ads-dynamic .revenue-card .title,
#modal__mass_edit_link .step-6 .revenue-card .title,
#modal__mass_edit_link.ads-dynamic .revenue-card .title {
  font-size: 22px;
}
#modal_link_create .step-6 .revenue-card .benefits i, #modal_link_create.ads-dynamic .revenue-card .benefits i,
#modal_link_edit .step-6 .revenue-card .benefits i,
#modal_link_edit.ads-dynamic .revenue-card .benefits i,
.ads-dynamic .step-6 .revenue-card .benefits i,
.ads-dynamic.ads-dynamic .revenue-card .benefits i,
#modal__mass_edit_link .step-6 .revenue-card .benefits i,
#modal__mass_edit_link.ads-dynamic .revenue-card .benefits i {
  width: 20px;
}
#modal_link_create .step-6 .revenue-card .benefits i.fa-check, #modal_link_create.ads-dynamic .revenue-card .benefits i.fa-check,
#modal_link_edit .step-6 .revenue-card .benefits i.fa-check,
#modal_link_edit.ads-dynamic .revenue-card .benefits i.fa-check,
.ads-dynamic .step-6 .revenue-card .benefits i.fa-check,
.ads-dynamic.ads-dynamic .revenue-card .benefits i.fa-check,
#modal__mass_edit_link .step-6 .revenue-card .benefits i.fa-check,
#modal__mass_edit_link.ads-dynamic .revenue-card .benefits i.fa-check {
  color: #28a745;
}
#modal_link_create .step-6 .revenue-card .benefits i.fa-times, #modal_link_create.ads-dynamic .revenue-card .benefits i.fa-times,
#modal_link_edit .step-6 .revenue-card .benefits i.fa-times,
#modal_link_edit.ads-dynamic .revenue-card .benefits i.fa-times,
.ads-dynamic .step-6 .revenue-card .benefits i.fa-times,
.ads-dynamic.ads-dynamic .revenue-card .benefits i.fa-times,
#modal__mass_edit_link .step-6 .revenue-card .benefits i.fa-times,
#modal__mass_edit_link.ads-dynamic .revenue-card .benefits i.fa-times {
  color: red;
}

@media (max-width: 992px) {
  .modal-link {
    max-width: unset !important;
  }
}

.download-link {
  position: relative;
}

.guideline {
  margin-top: 10px;
}
.guideline span {
  margin-left: 15px;
}
.guideline i {
  font-size: 24px;
}
.guideline i.yellow {
  color: #ffc107;
}
.guideline i.red {
  color: #f54842;
}

#modal_preview_seo .title {
  font-size: 18px;
  color: blue;
}
#modal_preview_seo .link-url {
  font-size: 14px;
  color: green;
}
#modal_preview_seo .desc {
  font-size: 14px;
}

#modal_programmm .modal-header, #modal_impressum .modal-header, #modal_agb .modal-header, #modal_datenschutz .modal-header, #modal_preview_seo .modal-header {
  height: 66px;
  padding: 0 16px;
}
#modal_programmm .modal-header .headline, #modal_impressum .modal-header .headline, #modal_agb .modal-header .headline, #modal_datenschutz .modal-header .headline, #modal_preview_seo .modal-header .headline {
  font-size: 30px;
  font-weight: 600;
  line-height: 66px;
}
#modal_programmm .modal-header .close-btn, #modal_impressum .modal-header .close-btn, #modal_agb .modal-header .close-btn, #modal_datenschutz .modal-header .close-btn, #modal_preview_seo .modal-header .close-btn {
  height: 40px;
  font-size: 40px;
  line-height: 66px;
  color: #181818;
}
#modal_programmm .modal-header .close-btn i, #modal_impressum .modal-header .close-btn i, #modal_agb .modal-header .close-btn i, #modal_datenschutz .modal-header .close-btn i, #modal_preview_seo .modal-header .close-btn i {
  cursor: pointer;
}
#modal_programmm .modal-header .close-btn i:hover, #modal_impressum .modal-header .close-btn i:hover, #modal_agb .modal-header .close-btn i:hover, #modal_datenschutz .modal-header .close-btn i:hover, #modal_preview_seo .modal-header .close-btn i:hover {
  color: #d18f5c;
}

.lv-btn {
  background: #D18F5C;
}

.faq-hr {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1px;
}

.faq-banner {
  background: #D18F5C;
  position: relative;
}
.faq-banner i {
  left: 50%;
  transform: translateX(-50%);
  animation-name: faq-circle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  position: absolute;
  font-size: 24px;
  animation-timing-function: linear;
}

@keyframes faq-circle {
  0% {
    top: calc(10px + 0%);
  }
  100% {
    top: calc(100% - 35px);
  }
}
.percentage-high {
  color: #449D44;
  font-weight: 400;
  margin-bottom: 0;
}

.percentage-null {
  color: #007bff;
  font-weight: 400;
  margin-bottom: 0;
}

.percentage-low {
  color: #dc3545;
  font-weight: 400;
  margin-bottom: 0;
}

.kpi-amount {
  background: #D18F5C;
  text-align: center;
  color: white;
  font-weight: 400;
}
.kpi-amount h5 {
  margin-bottom: 0;
}

.loading-statistics {
  border-right: 1px #ddd solid;
}
.loading-statistics.last {
  border: none !important;
  margin: 0;
  padding: 0;
}

.test {
  font-size: 1.5rem;
  font-weight: 600;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #323232;
  color: white;
  width: 100%;
  padding-left: 25px;
  z-index: 99999999;
  display: flex;
  justify-content: space-between;
}

.cookie-consent__message {
  padding: 15px;
}

.js-cookie-consent-agree {
  flex-shrink: 0;
  background: #D18F5C;
  border: none;
  color: white;
  min-height: 42px;
  margin: 0;
  padding-left: 1.8em;
  padding-right: 1.8em;
  cursor: pointer;
}

.advanced-btn {
  width: calc(100% + 2.5rem);
  color: black !important;
  background: #E5E5E5;
  margin: 0 -1.25rem -1.25rem -1.25rem;
  border-radius: 0 0 2px 2px;
}
.advanced-btn i {
  font-size: 28px;
  color: #4d4d4d;
}

.link-image {
  position: relative;
  width: max-content;
  max-width: 100%;
}
.link-image::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #00000000;
  content: "";
  display: block;
  transition: background 0.3s;
  cursor: pointer;
}
.link-image:hover::before {
  background: #00000080;
  animation: flash-background-red-black infinite alternate 0.6s;
}
.link-image:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  color: #FFF;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  animation: times-pulse infinite alternate 0.5s;
  cursor: pointer;
}

@keyframes times-pulse {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
@keyframes flash-background-red-black {
  from {
    background: #00000080;
  }
  to {
    background: #88000080;
  }
}
.ad-selection-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  box-sizing: revert !important;
  max-width: 350px;
  border: 2px solid #F5F5F5;
  margin: 0 auto;
}
.ad-selection-card .thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
}
.ad-selection-card.selected {
  border: 2px solid #FF8114;
}
.ad-selection-card.disabled {
  border: 1px solid lightgray;
  opacity: 0.4;
  cursor: not-allowed;
}
.ad-selection-card .content-container {
  padding: 24px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ad-selection-card .content-container .icon {
  max-width: 120px;
  margin-bottom: 24px;
}
.ad-selection-card .content-container .title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}
.ad-selection-card .content-container .description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  min-height: 3lh;
}

/*# sourceMappingURL=style.css.map */
