@import "font.css";
/* Defining some vars */
:root {
  --primary-background-color: #fafbfc;
  --dark-background-color: #424242;

  --primary-color: #E22A78;
  --primary-color-hover: #D81B60;
  --primary-color-active: #D81B60;
  --primary-color-active-border: #D81B60;

  --primary-outline-color: #a5175b;
  --primary-outline-color-hover: #a5175b;
  --primary-outline-color-active: #a5175b;
  --primary-outline-color-active-border: #bb5f8b;

  --secondary-color: #bdbdbd;
  --secondary-color-hover: #9e9e9e;
  --secondary-color-active: #757575;
  --secondary-color-active-border: #9e9e9e;

  --primary-text-color: #424242;

  --disabled-background: #f5f5f5;
}

.app-text-primary {
    color: var(--primary-outline-color)!important;
}

.app-text-secondary {
    color: var(--secondary-color)!important;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--primary-background-color);
  font-family: Source Sans Pro, sans-serif;
  color: #1e1e1e;
  max-width: 100vw;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main.linklist-main {
  overflow-y: auto;
  padding: 0;
  min-height: calc(100vh - 87px);
  height: calc(100vh - 87px);
  max-height: calc(100vh - 87px);
  overflow-x: hidden;
}

.custom-fixed-height {
  max-height: 100%;
  height: 100%;
  min-height: 100%;
}

@media (max-width: 995px) {
  main.linklist-main {
    padding: 0;
    max-height: unset;
    height: auto;
    min-height: unset;
  }
  .custom-fixed-height {
    max-height: unset;
    height: unset;
    min-height: unset;
  }

  #btn-get-started {
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }
}

nav.navbar {
  padding: 15px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

nav.navbar-absolute.navbar-light {
  border-bottom: unset;
}

.left-container {
  border-right: 1px solid #dddddd;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color-hover);
}

canvas {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

a {
  color: #1e1e1e;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: rgba(0, 0, 0, 0.9);
}

a:active {
  transition: none;
}

.modal-header {
  padding: 1rem;
  border-bottom: 0;
}

.modal-subheader {
  padding: 0 1rem;
  border-bottom: 0;
  margin: 0;
}

.modal-content {
  padding: 1rem;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.default-text {
  color: #adb5bd;
  font-size: 17px;
  cursor: default;
}

/* Forms */
.content-tab {
  padding: 20px;
  background-color: #fff;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  -khtml-border-radius: 0 0 0 4px;
}

.form-control {
  font-size: 0.9rem;
}

.form-control:focus {
  border-color: rgba(59, 88, 118, 0.09);
}

.form-control-border {
  border: 0;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
}

.input-group-text {
  font-size: 0.9rem;
}

.panel-default {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
}
.panel-default > .panel-heading {
  background-color: #fff;
  border-color: #edeeee;
}
.panel-default > .panel-footer {
  background-color: #fff;
  border-color: #edeeee;
}
.panel-heading {
  padding: 8px 15px;
}

/* Footer */
.footer {
  padding: 3rem 0;
  margin: auto 0 0 0;
  font-size: 0.95rem;
  background: #fff;
  color: rgba(0,0,0,1);
  width: 100%;
}

.footer.platform {
  min-height: 50px;
  max-height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,1);
  background: #fff;
}

.footer.platform a{
  color: var(--primary-color)!important;
}

.footer.platform p {
  margin: 0;
  font-size: 16px !important;
  font-weight: normal !important;
}

.footer .social-info .created-by {
  margin-right: 10px;
}

.footer .social-info .social-links .link {
  padding-top: 6px;
  margin: 2px;
  font-size: 18px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #DBDBDB;
  color: white!important;
  text-align: center;
  text-decoration: none;
}

.footer .social-info .social-links .link:hover {
  background: var(--primary-color);
}

.footer {
  color: rgba(255, 255, 255);
}

.footer span.icon {
  max-width: 1em;
}

.footer a:not(.dropdown-item),
.footer a:hover:not(.dropdown-item) {
  color: rgba(255, 255, 255);
}

.footer a.icon {
  color: rgba(255, 255, 255);
}

.icon-facebook:hover {
  transition: color 0.2s ease-in-out;
  color: #4267b2 !important;
}

.icon-twitter:hover {
  transition: color 0.2s ease-in-out;
  color: #1da1f2 !important;
}

.icon-instagram:hover {
  transition: color 0.2s ease-in-out;
  color: #d84614 !important;
}

.icon-youtube:hover {
  transition: color 0.2s ease-in-out;
  color: #ff0000 !important;
}

.icon-linkedin:hover {
  transition: color 0.2s ease-in-out;
  color: #0073b0 !important;
}

.footer-logo {
  max-width: 125px;
  height: auto;
  filter: grayscale(100%);
}

/* Helper classes */
.clickable {
  cursor: pointer;
}

.no-underline,
.no-underline:hover {
  text-decoration: none;
}

.font-weight-bolder {
  font-weight: 700;
}

.icon-stripe {
  color: #6772e5;
}

.icon-paypal {
  color: #283b81;
}

/* Navbar custom menu */
.navbar-main {
  /* min-height: 0 !important; */
  z-index: 1;
  background: transparent;
}

.navbar-absolute {
  position: absolute;
  width: 100%;
  margin: 0;
}

.navbar-main .navbar-nav > li > a {
  padding: 1rem !important;
}

.navbar-main .navbar-nav > li > a.ni-index {
  padding: 8px 18px !important;
  font-weight: normal;
  font-size: 15px;
}

.navbar-logo {
  max-height: 2.5rem;
  height: 2.5rem;
}

.navbar-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
}

.list-group-item:first-child {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.list-group-item:last-child {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  background-color: #3b4f5e;
  border-color: #3b4f5e;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  background-color: #3b4f5e;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--primary-text-color) !important;
}

#main_navbar a.nav-link {
  padding: 7px 19px !important;
}

/* Get Started with Postgrain Button */
#li-get-started,
#pg-call {
  display: flex;
  align-items: center;
  justify-content: center;
}

#pg-call {
  max-width: 400px;
  margin-right: 9px;
}

#btn-get-started {
  color: #1e96fa;
  background-color: #ffffff;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -khtml-border-radius: 40px;
  transition: none !important;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.only-mobile {
  display: none;
}

.not-mobile {
  display: block;
}

@media (max-width: 992px) {
  .only-mobile {
    display: block;
  }

  .not-mobile,
  #pg-call.not-mobile,
  #li-get-started.not-mobile {
    display: none;
  }

  .sm-logo > img {
    width: auto;
  }

  #btn-get-started {
    width: fit-content !important;
  }
}

.max-content {
  width: max-content;
}

@media screen and (max-width: 992px) {
  .max-content {
    width: initial;
  }
}

#btn-get-started:hover {
  text-decoration: underline;
  text-decoration-color: #1e96fa;
}

#li-get-started > #btn-get-started {
  padding-left: 6px !important;
  padding-right: 6px !important;
  margin-left: 16px;
}

@media (max-width: 1200px) {
  #pg-call {
    max-width: 276px;
  }
}

@media (max-width: 992px) {
  #li-get-started {
    justify-content: flex-start;
  }

  #pg-call {
    display: block;
    text-align: left;
    margin-top: 16px;
    max-width: 100%;
  }

  #pg-call > p {
    max-width: 276px;
  }
}

#pg-banner li {
  list-style: none;
}

#mobile-menu {
  display: none !important;
  padding-top: 20px;
  /* min-height: 117px !important; */
}

#mobile-menu hr {
  width: 100vw;
  background-color: #e5e5e5;
  transform: translateX(-15px);
}

#mobile-menu ul.mobile-menu-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobile-menu ul.mobile-menu-list li.mobile-menu-list-item {
  width: 100%;
  list-style: none;
  margin: 5px 0;
}

#mobile-menu ul.mobile-menu-list li.mobile-menu-list-item a {
  color: var(--primary-text-color);
}

#menu-container.navbar-collapse {
  display: none !important;
}

@media only screen and (max-width: 992px) {
  #menu-container.navbar-collapse {
    display: flex !important;
    transition: max-height .35s ease;
  }

  .show #mobile-menu {
    display: flex !important;
    flex-direction: column;
    max-height: 100vh;
  }

  .show #pg-banner {
    display: none;
  }

  .navbar-collapse.collapsing#menu-container #mobile-menu,
  .navbar-collapse.collapsing#menu-container #pg-banner {
    display: none !important;
  }
}

/* Get Started with Postgrain Button */

.chart-container {
  position: relative;
  margin: auto;
  height: 250px;
  width: 100%;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--primary-color);
}

/* Dropdown */
#linklist-menu-dropdown.nav-link.dropdown-toggle.menu-dropdown::after,
#linklist-menu-help.nav-link.dropdown-toggle.menu-dropdown::after {
  display: none;
}

#linklist-menu-help.nav-link.dropdown-toggle.menu-dropdown {
  padding-left: 10px !important;
  padding-right: 10px !important;
  position: relative;
}

#linklist-menu-help.nav-link.dropdown-toggle.menu-dropdown.news-available::before {
  content: "";
  background-color: #e22a78;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  display: block;
  top: 8px;
  right: 10px;
}

li.dropdown a.menu-dropdown {
  border-radius: 18px;
  margin-top: 9px;
  margin-bottom: 9px;
}

li.dropdown a.menu-dropdown:hover,
li.dropdown a.menu-dropdown:focus {
  background-color: #e0e0e0;
  color: #6c757d !important;
}

.dropdown-item {
  color: var(--primary-text-color);
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--dark-background-color);
}

.dropdown-toggle-simple::after {
  display: none;
}

.dropdown-menu {
  box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15) !important;
  border: 0;
}

#linklist-menu-dropdown > i.fa-chevron-down {
  transition: transform 350ms;
}

#linklist-menu-dropdown[aria-expanded="true"] > i.fa-chevron-down {
  transform: rotate(180deg);
}
/* Buttons */
.btn {
  border: 0;
  transition: all 0.2s !important;
  padding: 9px 16px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.65;
}

.btn.loading {
  pointer-events: none;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  opacity: 0.5;
}

.btn-get-back {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-radius: 50rem !important;
}

.btn-primary.dropdown-toggle {
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color) !important;
  outline: unset !important;
}

.btn-primary:hover {
  background-color: var(--primary-color-hover);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary.dropdown-toggle:focus {
  background-color: var(--primary-color-hover) !important;
  box-shadow: 0 0 0 0.2rem var(--primary-color-active-border) !important;
  color: white;
}

.btn-primary:disabled {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-primary-outline {
  background-color: inherit;
  color: var(--primary-outline-color);
  border-radius: 50rem !important;
}

.btn-primary-outline:active,
.btn-primary-outline:focus {
  background-color: var(--primary-outline-color-active) !important;
  box-shadow: 0 0 0 0.2rem var(--primary-outline-color-active-border) !important;
  color: white;
}

.btn-primary-outline:hover,
.btn-primary-outline.loading,
.btn-primary-outline.loaded {
  background-color: var(--primary-outline-color-hover);
  color: #ffffff;
}

.btn-primary-outline.loaded {
  align-items: center;
}

.btn-primary-outline:disabled {
  border-color: none !important;
  color: rgba(165, 23, 91, 0.65);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50rem !important;
}

.btn-secondary:hover {
  background-color: var(--secondary-color-hover);
}

.btn-secondary:active,
.btn-secondary:focus {
  background-color: var(--secondary-color-active);
  color: white;
  box-shadow: 0 0 0 0.2rem var(--secondary-color-active-border) !important;
}

.btn-secondary:disabled {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.btn-secondary-outline {
  background-color: inherit;
  color: var(--secondary-color-active);
  border-radius: 50rem !important;
}

.btn-secondary-outline:hover {
  background-color: var(--secondary-color-hover);
  color: #ffffff;
}

.btn-secondary-outline:active,
.btn-secondary-outline:focus {
  background-color: var(--secondary-color-active);
  color: white;
  box-shadow: 0 0 0 0.2rem var(--secondary-color-active-border) !important;
}

.btn-secondary-outline:disabled {
  color: var(--secondary-color) !important;
  border-color: none !important;
}

.btn-white {
  background-color: #fff;
  color: #000;
  border: 1px solid #ced4da;
  padding: 4px !important;
}

.btn-white:hover {
  background-color: #fff;
  color: #000;
  opacity: 0.9;
}

.btn-white:active {
  background-color: #fff;
  color: #000;
  opacity: 0.5;
  outline: unset;
}

.btn.loading {
  pointer-events: none;
}

/* icon picker */
.btn-icon-picker {
  background: unset;
  color: #adb5bd;
}

.btn-icon-picker-selected {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color-hover);
  color: #fff;
}

.icon-picker-arrow {
  color: var(--primary-text-color);
}

/* Index */
.index-container {
  width: 100%;
  margin-top: 7rem;
  height: 100vh;
  color: var(--primary-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-btn-outline {
  background-color: #ffffff;
  color: #424242;
}

.landing-btn-outline:hover {
  background-color: #424242;
  color: #ffffff;
}

.landing-btn-outline:focus,
.landing-btn-outline:active {
  background-color: #424242 !important;
  color: white;
  box-shadow: 0 0 0 0.2rem #4242429a !important;
}

/* Input editable */
input.url_edit_field {
  border: none !important;
  border-radius: unset !important;
  background-color: inherit !important;
  outline: none !important;
  padding-bottom: 5px !important;
  border-bottom: 1.5px solid #bdbdbd !important;
  width: 100%;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}

input.url_edit_field:not(:disabled):hover {
  box-shadow: none !important;
  border-bottom: 1.5px dashed #bdbdbd !important;
}

input.url_edit_field:focus {
  border-bottom: 1.5px solid var(--primary-color) !important;
}

input.url_edit_field.valid:focus {
  border-bottom: 1.5px solid var(--primary-color) !important;
  padding-right: calc(1.5em + 0.75rem);
}

input.url_edit_field + small {
  font-size: 12px;
  line-height: 13px;
  margin-top: 5px;
}

input.url_edit_field:focus + small {
  display: initial;
}

input.url_edit_field.valid + small {
  color: var(--primary-color);
}

input.url_edit_field.invalid + small {
  color: #9e9e9e;
}

input.url_edit_field.invalid:focus {
  border-bottom: 1.5px solid #bdbdbd !important;
  padding-right: calc(1.5em + 0.75rem);
}

/*background-image: linear-gradient(-220deg, #cf3eff, #3e82ff);*/

@media (min-width: 576px) {
  .index-container::before {
    left: -20%;
    top: 48%;
  }
}

@keyframes index_container_blob {
  from {
    /*border-radius: 125%;*/
    transform: scale(0.4);
  }
  to {
    /*border-radius: 75% 50% 85% 50%;*/
    transform: scale(1);
  }
}
.index-header {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.index-subheader {
  font-size: 1rem;
  text-align: center;
}

.index-button {
  padding: 1rem 1.7rem;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 0.8rem 0 rgba(136, 152, 170, 0.15) !important;
  transition: all 0.2s ease-in-out;
}

/* Header container */
.header {
  padding: 1.5rem 0;
}

.user-avatar {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  max-width: 80px;
  max-height: 80px;
}

/* Link Settings page */
.link-image-preview,
.img-container {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.img-container {
  border: 0.1rem solid #bdbdbd;
  min-width: 125px;
}

#container-without-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img-preview-text {
  line-height: 20px;
  margin: 0.5rem 0 0 0;
}

.link-background-type-preset {
  width: 2.3rem;
  min-height: 2rem;
  height: 100%;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  border: 1px solid #adb5bd;
  opacity: 0.75;
  transition: 0.2s opacity;
}

.link-background-type-preset:hover {
  cursor: pointer;
}

input[type="radio"]:checked ~ .link-background-type-preset {
  opacity: 1;
}

input[type="radio"]:checked ~ .link-background-type-preset::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: #fff;
  font-size: 1.4rem;
  vertical-align: middle;
  padding: 6px 6px;
}

.custom-check {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 25px;
}

.custom-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -khtml-border-radius: 4px;
  border: 1px solid #ddd;
}

.custom-check input:checked ~ .checkmark {
  background-color: #fff;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-check input:checked ~ .checkmark:after {
  display: block;
}

.custom-check .checkmark:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 0.8rem;
  color: #e22b79;
  content: "\f00c";
  margin-top: -3px;
  padding-left: 0.5px;
}

#background_type_preset {
  display: flex;
  justify-content: space-around;
}

#background_type_image_input::-webkit-file-upload-button {
  visibility: hidden;
  height: 0;
  width: 0;
}

#background_type_image_status {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
  max-width: 36px;
  height: 36px;
  border-radius: 50%;
}

#background_type_image_status:hover {
  background-color: #e5e5e5;
}

#image_file_status {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
}

.image-help {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;

  color: #9e9e9e;
}

.link-background-type-image {
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

/* Biolink preview iframe */
.biolink-preview-container {
}
.biolink-preview-container.hidden {
  display: none;
}

.linklist-container-left,
.linklist-container-right {
  display: flex;
  align-items: center;
  height: 68px;
}

.linklist-container-left {
  align-self: flex-start;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 55%;
}

.linklist-container-right {
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
}

.linklist-container-right > a {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  height: 38px;
  width: 38px;
}

.linklist-container-right a:first-child {
  margin-left: 0;
}

.linklist-container-right a:last-child {
  margin-right: 0;
}

.link-container {
  padding: 1rem 2rem;
  background-color: #ffffff;
  min-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0px;
  border: 1px solid #e5e5e5;
  position: relative;
  cursor: pointer;
}

.link-container:hover {
  background-color: #f5f5f5 !important;
}

.link-container + .link-container {
  border-top-width: 0;
}

.link-container:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.link-container:last-of-type {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.link-container.on-preview {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.link-container.on-preview > .linklist-container-left p:first-child {
  color: var(--primary-color);
}

.biolink-preview {
  position: relative;
  margin: 0 auto;
  height: auto;
  width: auto;
  display: inline-block;
  text-align: left;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -khtml-border-radius: 4rem;
  padding: 0.7rem;
  background: linear-gradient(45deg, #444, #111);
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.2);
  border: 0.3rem solid #444546;
}

.biolink-preview-iframe-container {
  overflow: hidden;
  width: 330px;
  height: calc(90vh - 223px);
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -khtml-border-radius: 3rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}

@media (max-height: 858px) and (min-width: 768px) {
  .biolink-preview-iframe-container {
    width: 275px;
    height: calc(95vh - 223px);
    min-height: 480px;
  }
}

.preview-link {
  max-width: 70% !important;
  display: inline-flex !important;
}

@media screen and (max-width: 460px) {
  .preview-link {
    max-width: 55% !important;
  }
}

#preview-loading {
  width: 40px;
  height: 40px;
}

.biolink-preview-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.biolink-preview-iframe.loading {
  display: none;
}

/* Others */
.trigger-type-select {
  max-width: 150px !important;
}

.container-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.container-disabled-simple {
  pointer-events: none;
}

/* custom shadow cards */
.card-shadow {
  /*box-shadow: 0px 0px 20px #00000010;*/
  box-shadow: 0 0 0.8rem 0 rgba(136, 152, 170, 0.15) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Other animations */
@keyframes slowbounce {
  from {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes initiate_underline {
  from {
    background-size: 0% 0.25em;
  }
  to {
    background-size: 100% 0.25em;
  }
}

/* Animate dropdown menu */
.dropdown .dropdown-menu {
  animation-name: opacityIn;
  animation-duration: 0.2s;
}

@keyframes opacityIn {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

/* Custom row */
.custom-row {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
  padding: 1.5rem;
  position: relative;
  background: white;
}

.link.custom-row {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.link-icon {
  padding: 0.25rem 0.5rem;
  border-radius: 45%;
  -webkit-border-radius: 45%;
  -moz-border-radius: 45%;
  -khtml-border-radius: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 38px;
  min-height: 38px;
}

.link-icon:hover,
.link-icon.filled {
  color: var(--dark-background-color) !important;
  text-decoration: none;
  background-color: #e0e0e0;
}

.custom-row-inactive {
  background: var(--disabled-background);
}

.custom-row-side-controller {
  right: 101%;
  top: 25%;
  font-size: 1.2em;
  padding-left: 0;
}

.custom-row-side-controller-grab {
  cursor: grab;
}

.custom-row-statistic-number {
  font-size: 18px;
}

.custom-row-statistic-icon {
}

/* Tables */
.thead-black th {
  color: white;
  background-color: var(--dark-background-color);
  border-color: var(--dark-background-color);
}

.table-custom-container {
  /*box-shadow: 0px 0px 20px #0000001a;*/
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
}

.table-custom {
  margin-bottom: 0;
}

.table-custom thead th {
  border-top: 0;
  border-bottom: 0;
}

.table-custom th {
  padding: 1.25rem 1rem;
}

.table-custom td {
  padding: 1.75rem 1rem;
  background: white;
  vertical-align: middle;
}

.table-custom tbody tr {
  transition: all 0.2s ease-in-out;
}

.table-custom tbody tr:hover td {
  background: #f5f5f5;
}

/* Custom PRE container */
.pre-custom {
  box-shadow: 0px 0px 20px #0000001a;
  background: white;
  padding: 2rem;
  font-size: 0.75rem;
}

/* Helpers */
.appearance-none {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.select-custom-altum {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232D3748' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    no-repeat right 0.75rem center/8px 10px;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  background-color: #e9ecef;
}
.zoomer {
  transition: transform 0.2s ease-in-out;
}
.zoomer:hover {
  transform: scale(1.02);
}
.zoomer-shadow {
  transition: transform 0.2s ease-in-out;
  box-shadow: 0px 0px 20px #0000001a;
}
.zoomer-shadow:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 25px #00000012;
}
.highlight-shadow {
  animation: highlight-shadow 1.5s infinite;
}
.margin-top-12 {
  margin-top: 12rem;
}
.margin-bottom-12 {
  margin-bottom: 12rem;
}
.margin-top-9 {
  margin-top: 9rem;
}
.margin-bottom-9 {
  margin-bottom: 9rem;
}
.margin-top-6 {
  margin-top: 6rem;
}
.margin-bottom-6 {
  margin-bottom: 6rem;
}
.margin-top-3 {
  margin-top: 3rem;
}
.margin-bottom-3 {
  margin-bottom: 3rem;
}

@keyframes highlight-shadow {
  0% {
    box-shadow: rgba(26, 185, 140, 0.75) 0 0 0.1rem 0.05rem;
  }

  50% {
    box-shadow: rgba(26, 185, 140, 0.75) 0 0 0.5rem 0.25rem;
  }

  100% {
    box-shadow: rgba(26, 185, 140, 0.75) 0 0 0.1rem 0.05rem;
  }
}

/* Headers */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1,
.h1 {
  font-size: 2.25rem;
}

.underline {
  background-image: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-color)
  );
  background-repeat: no-repeat;
  background-position: 0 85%;
  background-size: 100% 0.25em;

  animation-name: initiate_underline;
  animation-delay: 0.2s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

/* Pricing */
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto 3em;
}
.pricing-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  flex: 0 1 315px;
}
.pricing-action,
.pricing-action-disabled {
  color: inherit;
  border: none;
  background: none;
}
.pricing-action:focus,
.pricing-action-disabled:focus {
  outline: none;
}

.pricing-feature-list {
  text-align: left;
}

.pricing-palden .pricing-item {
  cursor: default;
  color: #7b7f84;
  background: #fff;
  border-radius: 20px 20px 10px 10px;
  -webkit-border-radius: 20px 20px 10px 10px;
  -moz-border-radius: 20px 20px 10px 10px;
  -khtml-border-radius: 20px 20px 10px 10px;
  margin: 1em;
}

.pricing-palden .pricing-deco {
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -khtml-border-radius: 10px 10px 0 0;
  background: var(--secondary-color);
  padding: 2em 0 9em;
  position: relative;
}

.pricing-palden .pricing-deco-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
}

.pricing-palden .pricing-title {
  font-size: 0.75em;
  margin-bottom: 3em;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #fff;
}

.pricing-palden .deco-layer {
  transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
  transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
  transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
  font-size: 2.5em;
}

.pricing-palden .pricing-price {
  font-size: 5em;
  font-weight: bold;
  padding: 0;
  color: #fff;
  margin: 0 0 0.25em 0;
  line-height: 0.75;
}

.pricing-palden .pricing-currency {
  font-size: 0.15em;
  vertical-align: top;
}

.pricing-palden .pricing-period {
  font-size: 0.15em;
  padding: 0 0 0 0.5em;
  font-style: italic;
}

.pricing-palden .pricing-sub {
  font-size: 0.85em;
  color: #f8f9fa;
  margin-top: 3em;
}

.pricing-palden .pricing__sentence {
  font-weight: bold;
  margin: 0 0 1em 0;
  padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
  margin: 0;
  padding: 0.25em 0 2.5em;
  list-style: none;
  text-align: center;
}

.pricing-palden .pricing-feature {
  padding: 1em 0;
}

.pricing-palden .pricing-action {
  font-weight: bold;
  margin: auto 3em 2em 3em;
  padding: 1em 2em;
  color: #fff;
  border-radius: 30px;
  background: var(--secondary-color);
  transition: background-color 0.2s;
}

.pricing-palden .pricing-action:hover,
.pricing-palden .pricing-action:focus {
  background-color: #100a13;
  text-decoration: none;
}

.pricing-palden .pricing-action-disabled {
  font-weight: bold;
  margin: auto 3em 2em 3em;
  padding: 1em 2em;
  color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -khtml-border-radius: 30px;
  background: #6c757d;
  transition: background-color 0.2s;
}

.pricing-palden .pricing-action-disabled:hover,
.pricing-palden .pricing-action-disabled:focus {
  background-color: #100a13;
}

.pricing-palden .pricing-item--featured .pricing-deco {
  padding: 5em 0 8.885em 0;
}

/* Custom Radio Boxes */
.custom-radio-box {
  cursor: pointer;
}

.custom-radio-box .custom-radio-box-main-text {
  font-size: 2.25rem;
}

.custom-radio-box .custom-radio-box-main-icon {
  font-size: 2.5rem;
}

.custom-radio-box input[type="radio"] + div {
  transition: all 0.2s ease-in-out;
}

.custom-radio-box input[type="radio"]:checked + div {
  background: var(--primary-color);
  color: white;
}

/* Gradients */
.bg-gradient-primary {
  background: linear-gradient(230deg, #759bff, #843cf6);
}

.bg-gradient-secondary {
  background: linear-gradient(to right, #e7ebf0, #868e96);
}

.bg-gradient-success {
  background: linear-gradient(45deg, #7bffce, #30c93e);
}

.bg-gradient-info {
  background: linear-gradient(190deg, #64ddf1, #3c98f6);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #ffc480, #ff763b);
}

.bg-gradient-danger {
  background: linear-gradient(316deg, #fc5286, #fbaaa2);
}

.bg-gradient-light {
  background: linear-gradient(to right, #cfd9df 0%, #e2ebf0 100%);
}

.bg-gradient-dark {
  background: linear-gradient(to right, #7d7979 0%, #000000 100%);
}

/* Badge colors */
.badge-primary {
  color: hsl(211, 100%, 35%);
  background-color: hsl(211, 100%, 85%);
}

.badge-secondary {
  color: hsl(208, 7%, 35%);
  background-color: hsl(208, 7%, 85%);
}

.badge-success {
  color: hsla(134, 50%, 30%, 1);
  background-color: hsla(134, 50%, 85%, 1);
}

.badge-danger {
  color: hsla(354, 70%, 35%, 1);
  background-color: hsla(354, 70%, 85%, 1);
}

.badge-warning {
  color: hsla(40, 80%, 30%, 1);
  background-color: hsla(45, 100%, 85%, 1);
}

.badge-info {
  color: hsla(188, 60%, 30%, 1);
  background-color: hsla(188, 78%, 85%, 1);
}

.badge-light {
  color: hsla(210, 15%, 35%, 1);
  background-color: hsl(210, 17%, 95%);
}

.badge-dark {
  color: hsla(210, 10%, 90%, 1);
  background-color: hsla(210, 10%, 20%, 1);
}

/* Invoice css */
.invoice-table th {
  border-top: 0 !important;
}

@media print {
  .invoice-header-buttons {
    display: none;
  }

  .invoice-logo {
    filter: grayscale(100%);
  }
}

.pickr {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -khtml-border-radius: 0.25rem;
}

.custom-color-pickr {
  padding: 0;
  background-color: currentColor;
  cursor: pointer;
  max-width: 36px;
  min-width: 36px;
}

.circled-outline {
  border: 1px solid var(--primary-color);
  padding: 3px 7px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  color: var(--primary-color);
  transition: none;
}

.circled-outline:hover {
  color: #fff;
  background-color: var(--primary-color);
}

.primary-text {
  color: var(--primary-text-color);
}

@keyframes slide_left {
  0% {
    right: 0;
    opacity: 0.5;
  }
  100% {
    right: 25px;
    opacity: 1;
  }
}

.toast {
  min-width: 200px;
  max-width: 90vw;
  animation-name: slide_left;
  animation-duration: 500ms;
  position: fixed;
  top: 90px;
  right: 25px;
  z-index: 100;
}

#btn-animation {
  width: 25px;
  height: 20px;
  margin-right: 0.5rem;
  margin-bottom: 2px;
}

.scrollable-tab {
  max-height: 100%;
  overflow-y: auto;
}

.back-btn {
  margin-right: 9px;
  color: var(--primary-color);
  padding: 6px 10px;
}

.lnk-update {
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-btn:hover {
  border-radius: 50%;
  background-color: #e0e0e0 !important;
}

.login-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.basic-illustration {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.login-btn {
  color: white;
  width: 100%;
  margin: 0.5rem 0;
  font-size: 16px;
  border-radius: 50rem !important;
  padding-top: 9px;
  padding-bottom: 9px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  transition: opacity 200ms;
}

.login-btn:hover {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.login-btn.google {
  background-color: #ea4335;
}

.login-btn.twitter {
  background-color: #1da1f2;
}

.login-btn.google i,
.login-btn.twitter i {
  margin-right: 9px;
}

.forgot-pass {
  color: var(--primary-color) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}

.basic-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: calc(100vh - 88px);
  background-color: #fafafa;
}

.show-password {
  position: absolute;
  right: 8px;
  top: 38px;
  cursor: pointer;
}

.primary-color {
  color: var(--primary-color) !important;
}

.is-invalid {
  border-color: #dc3545;
  background: none !important;
}

.sub-header {
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-helper {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  color: #9e9e9e;
}

.custom-card {
  padding: 18px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  background-color: white;
  border-radius: 4px;
}

.img-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 40%;
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
}

@keyframes hideshow {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 340px) {
  .hide-on-xs {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .btn-block-on-sm {
    width: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 450px) {
  .link-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .linklist-container-left {
    width: 55%;
  }

  .linklist-container-right > a {
    margin: 0;
    padding: 6px;
    width: 45%;
  }
}

@media (max-width: 768px) {
  .left-container {
    border-right: unset;
  }

  .content-tab {
    border-right: 1px solid #ddd;
  }

  .linklist-container-right > a {
    margin: 0;
  }
}

@media (min-width: 992px) {
  .custom-row-side-controller {
    position: absolute;
    padding: 0.4em 0.4em;
  }

  .login-container {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .basic-illustration {
    display: none;
  }
}

@media (min-width: 1200px) {
  .index-container::after {
    height: 130px;
    width: 155px;
    right: 0;
    top: 12%;
  }

  .sub-header {
    max-width: 60%;
  }

  .index-container::before {
    left: -12%;
    top: 48%;
  }
}

/* iPad */
@media (max-height: 1024px) and (min-height: 1024px) and (max-width: 768px) and (min-width: 768px) {
  .pad-no-mrg {
    margin: 0;
  }
}

.landing-font-family {
  font-family: "Montserrat", sans-serif!important;
}

.landing-sub-title,
.landing-card-title {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.landing-card-description {
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
}

.landing-footer-text {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: normal;
  font-size: 22px;
}

.features-card {
  width: 100%;
  max-width: 260px;
  height: 165px;
  max-height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.features-card-1 {
  background-color: #FFDD50;
}

.features-card-2 {
  background-color: #5956E9;
}

.features-card-3 {
  background-color: #E22A78;
}

.card-modal {
  max-width: 598px;
  width: 100%;
  min-height: 559px;
  max-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  transition: opacity 300ms;
}

.card-modal i {
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  font-size: 12pt;
  padding: 4px;
}

i.go-to-right,
i.go-to-left {
  display: block;
  top: 50%;
  position: absolute;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}

i.go-to-right.slick-disabled,
i.go-to-left.slick-disabled {
  display: none !important;
}

i.go-to-left {
  left: 7px;
}

i.go-to-right {
  right: 7px;
}

.card-modal .announcement-modal-close {
  position: absolute;
  z-index: 10;
  top: 18px;
  right: 18px;
  padding: 4px 6px;
  color: #ffffff;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  transition: opacity 200ms;
}

.announcement-modal-close {
  opacity: 1;
}

.announcement-modal-close:hover {
  opacity: 0.7;
}

.card-carousel {
  width: 100%;
  border-radius: 4px 4px 0 0;
  max-height: 320px;
  min-height: 200px;
  margin-bottom: 0 !important;
  position: relative;
}

.card-carousel .card-img {
  width: 100%;
  border-radius: 4px 4px 0 0;
  max-height: 320px;
  min-height: 200px;
  height: 300px;
}

.card-carousel .slick-dots {
  bottom: 20px;
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.card-carousel .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.card-carousel .slick-dots li.slick-active button {
  opacity: 1;
  color: #fff;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

.card-carousel .slick-dots li button {
  display: table-cell;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0.5px solid #ffffff;
  padding: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  font-size: 0;
  line-height: 0;
}

.card-carousel .slick-dots li button::before {
  color: #ffffff;
  content: "";
  opacity: 0;
}

label.img-add {
  width: 535px;
  min-width: 512px;
  max-width: 535px;
  height: 100%;
  padding: 30px;
  align-self: center;
  justify-self: center;
}

label.img-preview {
  width: 535px;
  height: 100%;
  padding: 0;
  align-self: center;
  justify-self: center;
}

label.img-add[aria-hidden="true"] {
  visibility: hidden;
}

label.img-add .add-img-wrapper {
  width: 100%;
  height: 100%;
  min-height: 200px;
  cursor: pointer;
  border: 1px dashed #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-content {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content .announc-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  margin-top: 0;
}

.card-content .announc-desc {
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.card-content .card-actions {
  width: 100%;
  display: flex;
  margin-top: auto;
  justify-content: center;
  margin-top: 10px;
}

.card-content .card-actions button.btn {
  margin-right: 5px;
  margin-left: 5px;
}

.control-button {
  cursor: pointer;
  font-size: 28pt;
  margin: 15px;
}

.control-button.disabled {
  color: #eeeeee !important;
  cursor: not-allowed;
  pointer-events: none;
}

ul.releases-dates-list {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0;
}

ul.releases-dates-list .releases-dates-list-item {
  padding-top: 10px;
  padding-bottom: 10px;
}

ul.releases-dates-list .releases-dates-list-item + .releases-dates-list-item {
  border-top: 1px solid #e5e5e5;
}

ul.notes-list {
  margin-bottom: 10px;
}

li.releases-dates-list-item ul li h5.release-category {
  margin-top: 20px;
  margin-bottom: 15px;
}

button.navbar-toggler:focus {
  outline: none;
}

.navbar-menu {
  border: none;
}

.section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section .container{
  margin-top: 180px;
}

.landing-profiles .container {
  margin-bottom: 180px;
}

.landing-profiles .container .slick-slide {
  outline: none
}

.landing-profiles .container .slick-dots li button:before{
  font-size: 30px!important;
  line-height: 30px!important;
}

.landing-profiles .container .slick-dots li.slick-active button:before {
  color: var(--primary-color)!important;
}

.home {
  background-color: #FAFAFA;
  height: 100vh;
}

.illustration-one,
.illustration-two,
.illustration-three,
.illustration-four,
.landing-profiles,
.features,
.features-footer {
  background-color: #fff;
  height: 100%;
}

.landing-footer,
.features-footer {
  margin-top: 0;
  padding: 100px;
}

.index-description {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.index-description .index-header,
.index-description .index-subheader,
.index-description .register-btn {
  text-align: left;
}

.influencers-itens {
  display: flex!important;
  outline: none!important;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
}

.feature {
  margin: 80px 0 25px 0;
}

.feature-cards-container {
    display: flex;
    width: 100%;
    min-height: 500px;
    background: #FAFAFA;
    border-radius: 20px;
}

.lp-overflow {
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 450px) {
  .index-container {
    flex-direction: column;
  }

  .how-it-works {
    margin-left: unset!important;
  }

  .index-description {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .index-description .index-header,
  .index-description .index-subheader,
  .index-description .register-btn {
    text-align: center;
  }

  .landing-footer-text {
    width: 100vw;
  }

  .feature {
    margin: 25px 0;
  }

  .feature-cards-container {
    flex-direction: column;
  }

  .landing-footer-btns {
    flex-direction: column;
  }

  .landing-profiles .container .slick-dots li button:before{
    line-height: 100px!important;
  }
}

@media (max-width: 770px) {
  .how-it-works {
    margin-left: unset!important;
  }

  .footer.platform {
    max-height: unset;
  }

  .footer.platform .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
  }

  .footer.platform .footer-container .all-rights-reserved,
  .footer.platform .footer-container .social-info .created-by {
    margin-bottom: 20px;
  }

  .footer.platform .footer-container .social-info {
    flex-direction: column;
  }

  #main_navbar_svg,
  #menu-container-svg {
    width: 36px;
    height: 36px;
  }

  #main_navbar_svg *,
  #menu-container-svg * {
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main_navbar_svg[aria-expanded = "true"] #main_navbar_svg #main_navbar_svg_top,
  .menu-container-svg[aria-expanded = "true"] #menu-container-svg #menu-container-svg-top {
    transform: rotate(44deg) translateX(2px) translateY(-3px);
  }

  .main_navbar_svg[aria-expanded = "true"] #main_navbar_svg #main_navbar_svg_center,
  .menu-container-svg[aria-expanded = "true"] #menu-container-svg #menu-container-svg-center {
    opacity: 0;
  }

  .main_navbar_svg[aria-expanded = "true"] #main_navbar_svg #main_navbar_svg_bottom,
  .menu-container-svg[aria-expanded = "true"] #menu-container-svg #menu-container-svg-bottom {
    transform: rotate(-45deg) translateX(-12px) translateY(0px);
  }

  .fixed-nav {
    position: fixed;
  }

  .navbar-menu-content {
    position: fixed;
    top: 70px;
    background: #FAFAFA;
    width: 100vw;
    right: 0;
    left: 0;
    height: 100vh;
    padding: 10px;
  }

  .navbar-menu-content .how-it-works,
  .navbar-menu-content .enter {
    margin: 10px 0;
  }

  .navbar-menu-content .register a {
    margin: 20px 0;
    width: 100%;
  }

  .divider {
    height: 0.5px;
    background: #EAEAEA;
  }
}

.nav-link {
    font-weight: bold;
}


/** cards  **/
.lcard {
    height: 100%;
}

.lcard-header {
    height: 30px;
}

.lcard-body {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -khtml-border-radius: 0.25rem;
    padding: 1.5rem;
    position: relative;
    background: white;
    height: calc(100% - 32px);
}

.list-group-item:first-of-type {
    border: none;
}

.b-none {
    border: none !important;
}
