@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Fredoka+One&display=swap");
/* ============================================
         ESTILOS Y CLASES GENERALES
============================================ */
@import url("https://fonts.googleapis.com/css2?family=Alegreya&family=Lato&family=Montserrat&family=Open+Sans&family=Oswald&family=Raleway&family=Roboto&family=Slabo+13px&family=Titillium+Web&family=Black+Ops+One&family=Courgette&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gupter:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tomorrow:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Handlee&display=swap");
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Fredoka One", sans-serif;
  color: #134276;
  margin: 0;
  font-weight: 300;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
  /* 1rem = 10px */
}

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

body {
  font-family: "Barlow", sans-serif;
  background-color: white;
  margin: 0px;
}

p {
  margin: 0px;
}

p, span {
  color: black;
  font-family: "Barlow", sans-serif;
}

p, span, h6, .h6, label {
  font-size: 1.6rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  p, span, h6, .h6, label {
    font-size: 1.6rem;
  }
}

a {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transition-property: color;
  transition-property: color;
  text-decoration: none;
  font-size: 1.6rem;
  color: #134276;
}

a:hover {
  text-decoration: none;
}

a > img, a .icon, a i {
  pointer-events: none;
}

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

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 1.6rem;
}

figure {
  margin: 0;
  padding: 0;
}

summary {
  list-style: none;
  list-style-type: none;
}

summary::-webkit-details-marker,
details > summary::-webkit-details-marker {
  display: none;
}

summary::marker,
details > summary::marker {
  display: none;
}

summary:hover, summary:focus, summary:active {
  outline: none;
}

details > summary {
  list-style: none;
  list-style-type: none;
}

.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 6rem 0rem;
  min-height: calc(100vh - 6rem);
  position: relative;
}

.main-container.home {
  padding-bottom: 0;
}

.main-container .section-row {
  width: 100%;
  height: 100%;
  position: relative;
}

.main-container .section-row .section-wrapper {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 2rem 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .main-container .section-row .section-wrapper {
    padding: 2rem 5rem;
  }
}

@media screen and (max-width: 768px) {
  .main-container .section-row .section-wrapper {
    padding: 2rem;
  }
}

.main-container .section-row .section-wrapper.grid-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 992px) {
  .main-container .section-row .section-wrapper.grid-2 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.main-container .section-row .section-wrapper.full-height {
  min-height: calc(100vh - 10rem);
}

.main-container .section-row .section-wrapper.grid-sidebar {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  -ms-grid-columns: 1fr 400px;
      grid-template-columns: 1fr 400px;
}

@media screen and (max-width: 992px) {
  .main-container .section-row .section-wrapper.grid-sidebar {
    -ms-grid-columns: 1fr 300px;
        grid-template-columns: 1fr 300px;
  }
}

@media screen and (max-width: 768px) {
  .main-container .section-row .section-wrapper.grid-sidebar {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.content-page {
  padding: 2rem 0rem;
}

.content-page * {
  scroll-margin-top: 80px;
}

@media screen and (max-width: 992px) {
  .content-page {
    padding: 0rem;
  }
}

.content-page .content-target {
  position: absolute;
}

.content-page .agreement {
  color: #666666;
  font-weight: 300;
  font-size: 1.4rem;
  margin-bottom: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-page h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content-page p {
  margin-bottom: 2rem;
  color: #666666;
  font-size: 2rem;
  font-weight: 300;
  line-height: 28px;
}

.content-page a {
  font-size: 2rem;
}

.content-page h2, .content-page h3, .content-page h4 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  margin-top: 4rem;
}

.content-page ul {
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.content-page ul li {
  font-size: 2rem;
  color: #666666;
  font-weight: 300;
  position: relative;
}

.content-page ul li::before {
  content: '';
  width: .5rem;
  height: .5rem;
  background-color: #4d4d4d;
  position: absolute;
  right: calc(100% + .75rem);
  top: 1rem;
  border-radius: 50%;
}

.content-page ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.content-sidebar {
  padding: 5rem 2rem 2rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
}

@media screen and (max-width: 992px) {
  .content-sidebar {
    padding: 0rem;
  }
}

@media screen and (max-width: 768px) {
  .content-sidebar {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.content-sidebar .content-date {
  font-weight: 600;
  color: #e73657;
  -ms-flex-item-align: end;
      align-self: flex-end;
  border: 1px solid #e73657;
  border-radius: 5rem;
  padding: .2rem 1.5rem;
  font-size: 1.4rem;
}

.content-table {
  padding: 2rem;
  background-color: white;
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
  border-radius: 20px;
}

.content-table.sticky-table {
  position: -webkit-sticky;
  position: sticky;
  top: 8rem;
}

.content-table .content-table-header {
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(46, 48, 56, 0.1);
}

.content-table .content-table-header .content-table-title {
  font-family: "Fredoka One", sans-serif;
  color: #134276;
  font-size: 2.2rem;
}

.content-table .content-table-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem 4rem .5rem 0rem;
  font-family: "Fredoka One", sans-serif;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 1.8rem;
}

.content-table .content-table-list li a::before {
  content: "\e908";
  font-family: 'onemasterlink-icon';
  position: absolute;
  right: 0px;
  top: 2px;
  opacity: 0;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 2.2rem;
  width: 3rem;
  height: 3rem;
  color: #e73657;
}

.content-table .content-table-list li a:hover::before {
  opacity: 1;
}

.content-table .content-table-list li a:active, .content-table .content-table-list li a:focus {
  color: #e73657;
}

.content-table .content-table-list li a:active::before, .content-table .content-table-list li a:focus::before {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .content-table {
    height: 72px;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .content-table .content-table-header {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
    position: relative;
    -webkit-transition: all 2000ms ease-out;
    transition: all 2000ms ease-out;
  }
  .content-table .content-table-header::after {
    content: "\e905";
    font-family: 'onemasterlink-icon';
    font-size: 2rem;
    position: absolute;
    top: 2px;
    right: 0;
    color: #666666;
    -webkit-transition: content 800ms ease-out;
    transition: content 800ms ease-out;
  }
  .content-table .content-table-list {
    display: none;
    opacity: .3;
    -webkit-transition: all 2300ms ease-out;
    transition: all 2300ms ease-out;
  }
  .content-table.open {
    height: auto;
  }
  .content-table.open .content-table-header {
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(46, 48, 56, 0.1);
  }
  .content-table.open .content-table-header::after {
    content: "\e904";
  }
  .content-table.open .content-table-list {
    display: block;
    opacity: 1;
  }
}

@media screen and (max-width: 576px) {
  .content-table {
    height: auto;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  .content-table .content-table-header {
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(46, 48, 56, 0.1);
  }
  .content-table .content-table-header::after {
    content: '';
  }
  .content-table .content-table-list {
    display: block;
    opacity: 1;
  }
}

.content-tables {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .content-tables {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 16px;
    width: 95%;
    position: fixed;
    bottom: 30px;
    z-index: 10;
  }
}

@media screen and (max-width: 576px) {
  .content-tables {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    position: static;
    width: 100%;
  }
}

/** FOOTER COMPONENT STYLES */
.footer-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f7f8fd;
  min-height: 5rem;
}

.footer-section .footer-section_topWave {
  position: absolute;
  left: 0;
  bottom: calc(100% - 2px);
  z-index: -1;
}

.footer-section .footer-section_topWave path {
  fill: #f7f8fd;
}

.footer-section .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 2rem;
}

.footer-section .footer-content .footer-item {
  color: #134276;
  text-decoration: none;
}

/********************************/
.external-form-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 14rem 10rem 5rem 0rem;
}

@media screen and (max-width: 992px) {
  .external-form-info {
    display: none;
  }
}

.external-form-info h1 {
  font-size: 4.8rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .external-form-info h1 {
    text-align: center;
  }
}

.external-form-info p {
  font-size: 2.4rem;
  color: #666666;
}

@media screen and (max-width: 768px) {
  .external-form-info p {
    text-align: center;
  }
}

.external-form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 1rem;
  padding-right: 9.5rem;
}

@media screen and (max-width: 992px) {
  .external-form-wrapper {
    padding-right: 0rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .external-form-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 425px;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  border-radius: 20px;
  padding: 3.5rem;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .form-wrapper {
    padding: 2rem 2rem 3rem 2rem;
  }
}

.form-wrapper .form-header {
  margin-bottom: 2rem;
}

.form-wrapper .form-header .form-header-title {
  font-size: 3rem;
  color: #134276;
  font-weight: 300;
}

.form-wrapper .form-userOptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-wrapper .recover-password {
  text-align: right;
  white-space: nowrap;
}

.inputs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 2rem;
}

.auth-alert-card {
  background-color: #FFE5EA;
  padding: 1rem 2rem;
  border-radius: 5px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  -webkit-transition: .2s;
  transition: .2s;
  max-height: 50rem;
}

.auth-alert-card ol {
  padding: 0px 0px 0px 1.3rem;
  margin: 0px;
}

.auth-alert-card ol li {
  font-size: 1.4rem;
  color: #E83658;
}

.auth-alert-card ol li span {
  color: #E83658;
  font-size: 1.4rem;
  font-weight: bold;
}

.auth-alert-card .close-card {
  position: absolute;
  top: .5rem;
  right: .5rem;
}

.auth-alert-card .close-card .icon {
  pointer-events: none;
  font-size: .8rem;
  font-weight: bold;
  color: #666666;
}

.auth-alert-card p {
  color: #E83658;
  font-weight: 600;
}

.comming-soon {
  padding: .2rem 1rem;
  border: 1px solid #e73657;
  color: #e73657;
  border-radius: 5rem;
  line-height: 0;
  font-weight: 600;
  height: 2.5rem;
}

.input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
}

.input-wrapper label {
  margin-bottom: .7rem;
  color: black;
  font-weight: 400;
}

.input-wrapper .input-text {
  position: relative;
}

.input-wrapper .input-text.readonly .delete-input {
  background-color: transparent !important;
}

.input-wrapper .input-text input {
  height: 4.4rem;
  border-radius: 5rem;
  border: 1px solid rgba(46, 48, 56, 0.1);
  outline: 0;
  -webkit-transition: .2s;
  transition: .2s;
  width: 100%;
  background-color: white;
}

.input-wrapper .input-text input:active, .input-wrapper .input-text input:focus {
  border-color: #00AFF0;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 175, 240, 0.2);
          box-shadow: 0px 0px 20px rgba(0, 175, 240, 0.2);
}

.input-wrapper .input-text input:-moz-read-only {
  background: rgba(19, 66, 118, 0.05);
  color: #134276;
}

.input-wrapper .input-text input:read-only {
  background: rgba(19, 66, 118, 0.05);
  color: #134276;
}

.input-wrapper .input-text input::-webkit-input-placeholder {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.input-wrapper .input-text input:-ms-input-placeholder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.input-wrapper .input-text input::-ms-input-placeholder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.input-wrapper .input-text input::placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-wrapper .input-text .input-icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2.4rem;
  color: #e73657;
  width: 25px;
  height: 25px;
  font-size: 2rem;
}

.input-wrapper .input-text .input-icon .icon {
  width: 20px;
  height: 20px;
  font-size: 2rem;
}

.input-wrapper .input-text .input-icon img {
  width: 20px;
  height: 20px;
}

.input-wrapper .input-text .delete-input {
  position: absolute;
  top: 2px;
  right: 2px;
  height: calc(100% - 4px);
  width: 40px;
  border: 0;
  padding: 5px 10px;
  background-color: white;
  color: #E83658;
  border-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.input-wrapper .input-text .delete-input .icon {
  font-size: 1.8rem;
  color: #666666;
  pointer-events: none;
}

.input-wrapper .input-text .delete-input img {
  pointer-events: none;
}

.input-wrapper .input-text .delete-input span {
  pointer-events: none;
}

.input-wrapper .input-text .delete-input span i {
  -webkit-transition: .2s;
  transition: .2s;
}

.input-wrapper .input-text .delete-input:hover span i {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.input-wrapper .input-textarea textarea {
  outline: none;
  width: 100%;
  border: 1px solid rgba(46, 48, 56, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  color: #666666;
  -webkit-transition: .2s;
  transition: .2s;
  resize: none;
  min-height: 15rem;
}

.input-wrapper .input-textarea textarea:active, .input-wrapper .input-textarea textarea:focus {
  border-color: #00b0f0;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(46, 48, 56, 0.5);
          box-shadow: 0px 0px 5px -1px rgba(46, 48, 56, 0.5);
}

.input-wrapper .input-textarea textarea::-webkit-input-placeholder {
  font-family: "Barlow", sans-serif;
}

.input-wrapper .input-textarea textarea:-ms-input-placeholder {
  font-family: "Barlow", sans-serif;
}

.input-wrapper .input-textarea textarea::-ms-input-placeholder {
  font-family: "Barlow", sans-serif;
}

.input-wrapper .input-textarea textarea::placeholder {
  font-family: "Barlow", sans-serif;
}

.input-wrapper .input-checkbox {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.input-wrapper .input-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  top: 5px;
  left: 4px;
}

.input-wrapper .input-checkbox input[type="checkbox"]::before {
  display: inline-block;
  width: 0px;
  height: 0px;
  margin: 0px;
  vertical-align: middle;
  cursor: pointer;
  content: "";
}

.input-wrapper .input-checkbox input[type="checkbox"]:checked ~ label::before {
  background-color: #134276;
  content: "\e91b";
  color: white;
}

.input-wrapper .input-checkbox label {
  margin: 0rem;
  color: black;
  cursor: pointer;
  padding-left: 3rem;
}

.input-wrapper .input-checkbox label::before {
  content: '';
  font-family: 'onemasterlink-icon';
  font-size: 1rem;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(46, 48, 56, 0.1);
  position: absolute;
  left: 5px;
  top: 2px;
  border-radius: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.input-wrapper.add-icon .input-text input {
  padding-left: 4rem;
}

.divisor-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  margin: 2rem 0rem;
}

.divisor-wrapper::before {
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(46, 48, 56, 0.1);
}

.divisor-wrapper span {
  background-color: white;
  position: relative;
  z-index: 2;
  padding: 0px 10px;
  cursor: default;
  color: black;
}

.form-loginOptions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .form-loginOptions {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.form-loginOptions a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  border: 1px solid rgba(46, 48, 56, 0.1);
  border-radius: 5rem;
  -webkit-transition: .2s;
  transition: .2s;
  min-height: 5.5rem;
}

@media screen and (max-width: 768px) {
  .form-loginOptions a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-loginOptions a span {
    text-align: center;
  }
}

.form-loginOptions a:hover {
  border-color: transparent;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(46, 48, 56, 0.5);
          box-shadow: 0px 0px 5px -1px rgba(46, 48, 56, 0.5);
}

.form-loginOptions a img {
  margin: 0rem 1rem;
  width: 2.4rem;
  height: 2.4rem;
}

.form-loginOptions a span {
  color: #000000;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
}

.form-footer span, .form-footer a {
  font-size: 1.6rem;
  font-weight: 400;
}

.form-footer a {
  font-weight: 500;
}

.dropdown-wrapper {
  position: relative;
  cursor: pointer;
}

.dropdown-wrapper .dropdown-link {
  white-space: nowrap;
  font-weight: 600;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.dropdown-wrapper .dropdown-link span {
  pointer-events: none;
}

.dropdown-wrapper .dropdown-link > .icon {
  color: #e73657;
  margin-right: .5rem;
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}

.dropdown-wrapper .dropdown-link img {
  pointer-events: none;
  margin-right: .5rem;
}

.dropdown-wrapper .dropdown-link.select-dropdown {
  border: 1px solid #ebebeb;
  padding: 0rem 3.5rem 0rem .5rem;
  border-radius: 5rem;
}

.dropdown-wrapper .dropdown-link.select-dropdown::before {
  content: "\e904";
  font-family: 'onemasterlink-icon';
  position: absolute;
  right: .7rem;
  top: .85rem;
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
}

.dropdown-wrapper .dropdown-list {
  position: absolute;
  top: calc(100% + 1rem);
  min-width: 240px;
  z-index: 999;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem 1rem 2rem 2rem;
  -webkit-box-shadow: 0px 0px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 0px 50px rgba(31, 66, 114, 0.1);
  border-radius: 1.5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  -webkit-transition-property: max-height;
  transition-property: max-height;
  z-index: 888;
}

.dropdown-wrapper .dropdown-list.from-right {
  right: 0rem;
}

.dropdown-wrapper .dropdown-list.from-right::before {
  right: 2.5rem;
}

.dropdown-wrapper .dropdown-list.from-left {
  left: 0;
}

.dropdown-wrapper .dropdown-list.from-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.dropdown-wrapper .dropdown-list.from-responsive {
  right: -6rem;
}

@media screen and (min-width: 769px) {
  .dropdown-wrapper .dropdown-list.from-responsive {
    left: 50%;
    min-width: 26rem !important;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.dropdown-wrapper .dropdown-list .dropdown-item, .dropdown-wrapper .dropdown-list .dropdown-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: black;
  min-height: 4rem;
  -webkit-transition: .25s linear;
  transition: .25s linear;
  border-radius: 5px;
  opacity: 0;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  padding: 0px;
  font-family: "Barlow", sans-serif;
}

.dropdown-wrapper .dropdown-list .dropdown-item p, .dropdown-wrapper .dropdown-list .dropdown-option p {
  font-size: 1.6rem;
  pointer-events: none;
  color: black;
  font-weight: 500;
}

.dropdown-wrapper .dropdown-list .dropdown-item > img, .dropdown-wrapper .dropdown-list .dropdown-option > img {
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 10px;
  pointer-events: none;
  -webkit-transition: .2s;
  transition: .2s;
}

.dropdown-wrapper .dropdown-list .dropdown-item .subNav-item-icon, .dropdown-wrapper .dropdown-list .dropdown-option .subNav-item-icon {
  width: 15px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dropdown-wrapper .dropdown-list .dropdown-item .subNav-item-icon img, .dropdown-wrapper .dropdown-list .dropdown-option .subNav-item-icon img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 20px;
  height: 20px;
  pointer-events: none;
  border-radius: 2px;
}

.dropdown-wrapper .dropdown-list .dropdown-item .subNav-item-text, .dropdown-wrapper .dropdown-list .dropdown-option .subNav-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.dropdown-wrapper .dropdown-list .dropdown-item:hover > img, .dropdown-wrapper .dropdown-list .dropdown-option:hover > img {
  margin-right: 15px;
}

.dropdown-wrapper .dropdown-list .dropdown-item.delete-btn, .dropdown-wrapper .dropdown-list .dropdown-option.delete-btn {
  color: #E83658;
  border-top: 1px solid rgba(46, 48, 56, 0.1);
  margin-top: .5rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.dropdown-wrapper .dropdown-list .add-icon-list, .dropdown-wrapper .dropdown-list .dropdown-options, .dropdown-wrapper .dropdown-list .add-payment-list {
  max-height: 240px;
  padding-right: .5rem;
  scrollbar-color: rgba(46, 48, 56, 0.5) #134276;
  scrollbar-width: thin;
  overflow-y: auto;
  z-index: 1;
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.dropdown-wrapper .dropdown-list .add-icon-list::-webkit-scrollbar, .dropdown-wrapper .dropdown-list .dropdown-options::-webkit-scrollbar, .dropdown-wrapper .dropdown-list .add-payment-list::-webkit-scrollbar {
  width: 5px;
  -webkit-appearance: none;
}

.dropdown-wrapper .dropdown-list .add-icon-list::-webkit-scrollbar-track, .dropdown-wrapper .dropdown-list .dropdown-options::-webkit-scrollbar-track, .dropdown-wrapper .dropdown-list .add-payment-list::-webkit-scrollbar-track {
  background-color: rgba(46, 48, 56, 0.05);
  border-radius: 50px;
}

.dropdown-wrapper .dropdown-list .add-icon-list::-webkit-scrollbar-thumb, .dropdown-wrapper .dropdown-list .dropdown-options::-webkit-scrollbar-thumb, .dropdown-wrapper .dropdown-list .add-payment-list::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #134276;
}

.dropdown-wrapper .dropdown-list .add-icon-list::-webkit-scrollbar-thumb:hover, .dropdown-wrapper .dropdown-list .dropdown-options::-webkit-scrollbar-thumb:hover, .dropdown-wrapper .dropdown-list .add-payment-list::-webkit-scrollbar-thumb:hover {
  background: rgba(46, 48, 56, 0.5);
}

.dropdown-wrapper .dropdown-list .add-icon-list .dropdown-option, .dropdown-wrapper .dropdown-list .dropdown-options .dropdown-option, .dropdown-wrapper .dropdown-list .add-payment-list .dropdown-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dropdown-wrapper .dropdown-list:not(.show) {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
}

.dropdown-wrapper .dropdown-list:not(.show) .dropdown-item, .dropdown-wrapper .dropdown-list:not(.show) .dropdown-option {
  opacity: 0;
}

.dropdown-wrapper .dropdown-list.show {
  max-height: 240px;
  -webkit-transition-property: max-height;
  transition-property: max-height;
  visibility: visible;
  opacity: 1;
}

.dropdown-wrapper .dropdown-list.show .dropdown-item, .dropdown-wrapper .dropdown-list.show .dropdown-option {
  opacity: 1;
}

@media screen and (max-width: 375px) {
  .dropdown-wrapper.themes-filter {
    display: none;
  }
}

.modal-container {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 66, 118, 0.2);
  z-index: 999;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
}

.modal-container .modal-wrapper {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 3rem 4rem;
  background-color: white;
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
  border-radius: 20px;
  width: calc(100% - 2rem);
  max-width: 50rem;
}

@media screen and (max-width: 768px) {
  .modal-container .modal-wrapper {
    padding: 4rem 2rem;
  }
}

.modal-container .modal-wrapper > .modal-close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.4rem;
  color: rgba(46, 48, 56, 0.75);
  width: 4rem;
  height: 4rem;
  border-radius: 5rem;
  -webkit-transition: .2s;
  transition: .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-container .modal-wrapper > .modal-close-btn:hover {
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
}

.modal-container .modal-wrapper > .modal-close-btn i, .modal-container .modal-wrapper > .modal-close-btn img {
  pointer-events: none;
  font-weight: bold;
  color: #999999;
}

.modal-container .modal-wrapper .modal-header {
  margin-bottom: 2rem;
}

.modal-container .modal-wrapper .modal-header .modal-title {
  font-size: 3rem;
  color: #134276;
  font-family: "Fredoka One", sans-serif;
}

.modal-container .modal-wrapper .modal-body > p {
  color: black;
  font-weight: 300;
}

.modal-container .modal-wrapper .modal-footer {
  margin-top: 2rem;
}

.modal-container .modalConfirm-wrapper {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 2rem;
  background-color: white;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  border-radius: 20px;
  width: calc(100% - 2rem);
  max-width: 35rem;
}

.modal-container .modalConfirm-wrapper > .modal-close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  color: rgba(46, 48, 56, 0.75);
  width: 4rem;
  height: 4rem;
  border-radius: 5rem;
  -webkit-transition: .2s;
  transition: .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-container .modalConfirm-wrapper > .modal-close-btn:hover {
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
}

.modal-container .modalConfirm-wrapper > .modal-close-btn i {
  pointer-events: none;
  color: rgba(46, 48, 56, 0.5);
  font-size: 1.2rem;
  font-weight: bold;
}

.modal-container .modalConfirm-wrapper .modal-header {
  margin-bottom: 2rem;
}

.modal-container .modalConfirm-wrapper .modal-header .modal-title {
  font-size: 1.8rem;
  color: #134276;
  font-family: "Fredoka One", sans-serif;
}

.modal-container .modalConfirm-wrapper .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
}

.modal-container .modalConfirm-wrapper .modal-footer .btn {
  font-size: 1.4rem;
}

.modal-container .modalConfirm-wrapper .modal-footer .btn.modal-close-btn {
  color: #134276;
}

.modal-container.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.polygon-bg {
  background-image: url("/static/images/login/polygon-bg.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.polygon-bg.home {
  background-image: unset;
  overflow: hidden;
}

.polygon-bg.home::after {
  content: '';
  position: absolute;
  background-image: url("/static/images/home/polygon-home-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: -450px;
  left: calc(100% - 50vw);
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  height: 120rem;
  width: 120rem;
  z-index: -1;
}

.polygon-bg.home::before {
  content: '';
  position: absolute;
  background-image: url("/static/images/home/circles-home-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: calc(100% - 50vw);
  -webkit-transform: translateX(-150px);
          transform: translateX(-150px);
  top: 240px;
  height: 36rem;
  width: 36rem;
}

@media screen and (max-width: 1299px) {
  .polygon-bg {
    background-position: calc(300px) -750px;
  }
}

@media screen and (max-width: 1100px) {
  .polygon-bg {
    background-position: calc(200px) -750px;
  }
}

@media screen and (max-width: 768px) {
  .polygon-bg {
    background-position: calc(0px) -750px;
  }
  .polygon-bg.home::after {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
}

@media screen and (max-width: 375px) {
  .polygon-bg {
    background-position: calc(-50px) -750px;
  }
}

@media screen and (min-width: 1300px) {
  .polygon-bg {
    background-position: calc(300px) -750px;
  }
}

@media screen and (min-width: 1400px) {
  .polygon-bg {
    background-position: calc(400px) -750px;
  }
}

@media screen and (min-width: 1500px) {
  .polygon-bg {
    background-position: calc(500px) -750px;
  }
}

@media screen and (min-width: 1600px) {
  .polygon-bg {
    background-position: calc(600px) -750px;
  }
}

@media screen and (min-width: 1700px) {
  .polygon-bg {
    background-position: calc(700px) -750px;
  }
}

@media screen and (min-width: 1800px) {
  .polygon-bg {
    background-position: calc(800px) -750px;
  }
}

@media screen and (min-width: 1900px) {
  .polygon-bg {
    background-position: calc(900px) -750px;
  }
}

.dashboard-wrapper {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 45rem;
      grid-template-columns: 1fr 45rem;
  gap: 2rem;
}

.dashboard-wrapper .dashboard-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  position: relative;
}

.dashboard-wrapper .dashboard-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  position: relative;
}

@media screen and (max-width: 992px) {
  .dashboard-wrapper {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .dashboard-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 3rem;
  }
  .dashboard-wrapper .dashboard-right {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.collapse-card {
  background-color: white;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  width: 100%;
  border-radius: 20px;
  padding: 0rem 2rem 0rem 2rem;
  min-height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .collapse-card {
    max-width: 50vw;
  }
}

@media screen and (min-width: 1201px) {
  .collapse-card {
    max-width: 65rem;
  }
}

.collapse-card .collapse-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 6rem;
  border-bottom: 1px solid rgba(46, 48, 56, 0.05);
  gap: 1.5rem;
  width: 100%;
}

.collapse-card .collapse-card-header .collapse-card-header_grab {
  width: 2.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: -webkit-grab;
  cursor: grab;
}

.collapse-card .collapse-card-header .collapse-card-header_grab i {
  font-size: 1.6rem;
  color: #666666;
}

.collapse-card .collapse-card-header .collapse-card-header_title {
  width: 100%;
  pointer-events: none;
}

.collapse-card .collapse-card-header .collapse-card-header_title p {
  font-family: "Fredoka One", sans-serif;
  color: #134276;
  font-size: 1.8rem;
}

.collapse-card .collapse-card-header .collapse-card-header_title span {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #666666;
}

@media screen and (max-width: 992px) {
  .collapse-card .collapse-card-header .collapse-card-header_title span {
    display: none;
  }
}

.collapse-card .collapse-card-header .collapse-card-header_options {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.collapse-card .collapse-card-header .collapse-card-header_options > a {
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.collapse-card .collapse-card-header .collapse-card-header_options .dropdoswn-wrapper > a {
  white-space: nowrap;
  font-weight: 600;
  text-align: center;
}

.collapse-card .collapse-card-header .collapse-card-header_options .toggleCard-btn {
  position: relative;
}

.collapse-card .collapse-card-header .collapse-card-header_options .toggleCard-btn span {
  color: white;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}

@media screen and (max-width: 992px) {
  .collapse-card .collapse-card-header .collapse-card-header_options .toggleCard-btn {
    background-color: unset;
    padding: 0px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .collapse-card .collapse-card-header .collapse-card-header_options .toggleCard-btn span {
    display: none;
  }
  .collapse-card .collapse-card-header .collapse-card-header_options .toggleCard-btn::before {
    content: "\e946";
    font-family: 'onemasterlink-icon';
    width: 30px;
    height: 30px;
    background-color: #e73657;
    border-radius: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.collapse-card .collapse-card-header .collapse-card-header_options .collapse-card-btn {
  width: 4rem;
  height: 100%;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #134276;
}

.collapse-card .collapse-card-header .collapse-card-header_options .collapse-card-btn .icon {
  font-size: 1.2rem;
  -webkit-transition: .2s;
  transition: .2s;
  font-weight: bold;
}

.collapse-card .collapse-card-header .collapse-card-header_options .collapse-card-btn img {
  -webkit-transition: .2s;
  transition: .2s;
}

.collapse-card .collapse-card-header .collapse-card-header_options .collapse-card-btn > * {
  pointer-events: none;
}

.collapse-card .collapse-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.collapse-card .collapse-card-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
  width: 100%;
}

.collapse-card .collapse-card-submit .cancel-btn {
  color: #134276;
  font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 992px) {
  .collapse-card .collapse-card-submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .collapse-card .collapse-card-submit .save-btn {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.collapse-card.collapsed {
  max-height: 3rem;
  overflow: hidden;
}

.collapse-card.collapsed .collapse-card-header {
  border-color: transparent;
}

.collapse-card.collapsed .collapse-card-header .collapse-card-header_options .collapse-card-btn img, .collapse-card.collapsed .collapse-card-header .collapse-card-header_options .collapse-card-btn .icon {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

@media screen and (max-width: 768px) {
  .collapse-card {
    max-width: calc(100vw - 4rem);
  }
}

.edit-header-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.edit-header-profile .edit-header-profile_photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border: 2px solid rgba(46, 48, 56, 0.05);
  border-radius: 20px;
  padding: 2rem;
}

.edit-header-profile .edit-header-profile_photo .header-upload-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  position: relative;
}

.edit-header-profile .edit-header-profile_photo .header-upload-image input[type="file"] {
  display: none;
}

.edit-header-profile .edit-header-profile_photo .header-upload-image input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

.edit-header-profile .edit-header-profile_photo .header-upload-image label {
  background-color: #e73657;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  white-space: nowrap;
}

.edit-header-profile .edit-header-profile_photo .preview-header-photo {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  padding: .3rem;
  border: 4px solid #134276;
  border-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.edit-header-profile .edit-header-profile_photo .preview-header-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5rem;
}

.edit-header-profile .edit-header-profile_photo .preview-header-photo .remove-header-photo {
  position: absolute;
  right: -1rem;
  top: -1rem;
  background-color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5rem;
}

.edit-header-profile .edit-header-profile_photo .preview-header-photo .remove-header-photo .icon {
  font-size: 1.8rem;
  color: #999999;
  background-color: white;
}

@media screen and (max-width: 992px) {
  .edit-header-profile .edit-header-profile_photo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .edit-header-profile .edit-header-profile_photo .header-upload-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.edit-header-profile .edit-header-profile_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.edit-header-profile .edit-header-profile_info .collapse-card-submit {
  margin-bottom: 2rem;
}

.social-icons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.social-icons-wrapper .social-icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}

.social-icons-wrapper .social-icon-item .social-icon-item_grab {
  width: 4rem;
  padding-left: 1rem;
  font-size: 1.6rem;
  color: #666666;
  cursor: -webkit-grab;
  cursor: grab;
}

.social-icons-wrapper .collapse-card-submit {
  margin: 2rem 0rem;
}

.add-payment-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid #00b0f0;
  border-radius: 20px;
  -webkit-transition: .2s;
  transition: .2s;
}

.add-payment-wrapper:focus-within {
  border-color: #00b0f0;
}

.add-payment-wrapper .add-payment-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.add-payment-wrapper .add-payment-image input[type="file"] {
  display: none;
}

.add-payment-wrapper .add-payment-image input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

.add-payment-wrapper .add-payment-image label {
  cursor: pointer;
}

.add-payment-wrapper .add-payment-image label img {
  width: 7rem;
  height: 7rem;
}

.add-link-wrapper {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid #00b0f0;
  border-radius: 20px;
  -webkit-transition: .2s;
  transition: .2s;
}

.add-link-wrapper:focus-within {
  border-color: #00b0f0;
}

.add-link-wrapper .add-link-image input[type="file"] {
  display: none;
}

.add-link-wrapper .add-link-image input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

.add-link-wrapper .add-link-image label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 19rem;
  border: dashed 2px rgba(46, 48, 56, 0.1);
  border-radius: 20px;
  cursor: pointer;
}

.add-link-wrapper .add-link-image label img {
  margin-bottom: 2rem;
  border: 2px solid rgba(46, 48, 56, 0.1);
  border-radius: 5rem;
  width: 6rem;
  height: 6rem;
}

.add-link-wrapper .add-link-image label p {
  font-size: 2rem;
  color: #134276;
  font-weight: 300;
}

.add-link-wrapper .add-link-image label span {
  font-size: 1.4rem;
  color: #666666;
}

.add-link-wrapper .add-link-price {
  padding-left: 1.3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 992px) {
  .add-link-wrapper .add-link-price {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0rem;
  }
}

.add-link-wrapper .add-link-price .price-check > p {
  font-size: 1.4rem;
  color: #666666;
  margin-top: .5rem;
}

.add-link-wrapper.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.list-link-wrapper .list-link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.list-link-wrapper .list-link-item:first-child {
  margin-top: 2rem;
}

.list-link-wrapper .list-link-item:last-child {
  margin-bottom: 2rem;
}

.list-link-wrapper .list-link-item .list-link-grab {
  width: 3rem;
  height: 4rem;
  cursor: -webkit-grab;
  cursor: grab;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list-link-wrapper .list-link-item .list-link-grab .icon {
  font-size: 1.6rem;
  color: #666666;
}

.list-link-wrapper .list-link-item .list-link-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 2px solid rgba(46, 48, 56, 0.05);
  width: 100%;
  border-radius: 20px;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 12rem;
  padding: 1rem 7rem 1rem 2rem;
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_img {
  border: 2px solid rgba(46, 48, 56, 0.05);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 1rem;
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_img img {
  border-radius: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
  height: calc(6rem - 2px);
  width: calc(6rem - 2px);
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_body p {
  font-family: "Fredoka One", sans-serif;
  color: #134276;
  font-size: 1.8rem;
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_body span {
  font-size: 1.6rem;
  color: #666666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_options {
  height: 100%;
  width: 100%;
  max-width: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
  position: absolute;
  right: 0px;
  bottom: 0px;
  padding: 1rem 2rem 1rem 0rem;
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_options .dropdown-link .icon, .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .linkOptions-dropdown .icon {
  font-size: 1.8rem;
  margin-right: 0px;
  color: #666666;
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_options .link-card-price {
  background-color: #e73657;
  color: white;
  border-radius: 5rem;
  font-size: 1.6rem;
  padding: 0rem 1rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_options .delete-link-btn {
  padding: .5rem;
  color: #4d4d4d;
  margin-right: -.7rem;
}

.list-link-wrapper .list-link-item .list-link-card .list-link-card_options .delete-link-btn .icon {
  pointer-events: none;
}

@media screen and (max-width: 992px) {
  .list-link-wrapper .list-link-item .list-link-card {
    height: 8.8rem;
  }
  .list-link-wrapper .list-link-item .list-link-card .list-link-card_img {
    border-radius: 10px;
  }
  .list-link-wrapper .list-link-item .list-link-card .list-link-card_img img {
    width: 2.8rem;
    height: 2.8rem;
  }
  .list-link-wrapper .list-link-item .list-link-card .list-link-card_body span {
    font-size: 1.4rem;
  }
  .list-link-wrapper .list-link-item .list-link-card .list-link-card_options {
    padding: 1rem  1rem 1rem 0rem;
    gap: 1.5rem;
  }
  .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .cardOptions-wrapper .dropdown-link .icon, .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .cardOptions-wrapper .linkOptions-dropdown .icon, .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .dropdown-wrapper .dropdown-link .icon, .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .dropdown-wrapper .linkOptions-dropdown .icon {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .cardOptions-wrapper .dropdown-link img, .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .cardOptions-wrapper .linkOptions-dropdown img, .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .dropdown-wrapper .dropdown-link img, .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .dropdown-wrapper .linkOptions-dropdown img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .list-link-wrapper .list-link-item .list-link-card .list-link-card_options .link-card-price {
    font-size: 1.4rem;
  }
}

.list-link-wrapper .list-link-item.is-live .list-link-card .list-link-card_img::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  bottom: -.3rem;
  right: -.3rem;
  background-color: #48CC5D;
  border-radius: 5rem;
}

@media screen and (max-width: 992px) {
  .list-link-wrapper .list-link-item.is-live .list-link-card .list-link-card_img::before {
    content: '';
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    bottom: -.3rem;
    right: -.3rem;
    background-color: #48CC5D;
    border-radius: 5rem;
  }
}

.sidebar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  position: -webkit-sticky;
  position: sticky;
  top: 8rem;
  width: 100%;
}

.preview-container {
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}

.preview-container .preview-wrapper {
  width: 400px;
  height: 768px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transform: translate(0%, -16%) scale(0.68);
          transform: translate(0%, -16%) scale(0.68);
  margin-bottom: -25.5rem;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}

.preview-container .preview-wrapper .frame-wrapper {
  height: 100%;
}

.preview-container .preview-wrapper .frame-wrapper:before {
  content: '';
  position: absolute;
  background-image: url("/static/images/mobile-mockup.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 111;
  pointer-events: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  overflow: hidden;
}

.preview-container .preview-wrapper .frame-wrapper .frame-mockup {
  border: none;
  padding: 15px;
}

@media (max-height: 720px) {
  .preview-container .preview-wrapper {
    margin-bottom: -33.5rem;
    -webkit-transform: translate(0%, -22%) scale(0.58);
            transform: translate(0%, -22%) scale(0.58);
  }
}

@media screen and (max-width: 992px) {
  .preview-container .preview-wrapper {
    margin-bottom: -33.5rem;
    -webkit-transform: translate(0%, -22%) scale(0.58);
            transform: translate(0%, -22%) scale(0.58);
  }
}

@media screen and (max-width: 768px) {
  .preview-container {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .preview-container .preview-wrapper {
    position: absolute;
    right: .5rem;
    bottom: 9rem;
    -webkit-transform: translate(40%, -7%) scale(0.2);
            transform: translate(40%, -7%) scale(0.2);
  }
  .preview-container.hidden .preview-wrapper {
    -webkit-transform: translate(calc(40% + 10rem), -7%) scale(0.2);
            transform: translate(calc(40% + 10rem), -7%) scale(0.2);
  }
  .preview-container.show {
    background-color: rgba(19, 66, 118, 0.2);
    pointer-events: all;
  }
  .preview-container.show .preview-wrapper {
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(calc(50%), calc(50vh - 50%)) scale(0.68);
            transform: translate(calc(50%), calc(50vh - 50%)) scale(0.68);
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) and (max-height: 768px) {
  .preview-container.show .preview-wrapper {
    -webkit-transform: translate(calc(50%), calc(5%)) scale(0.47);
            transform: translate(calc(50%), calc(5%)) scale(0.47);
  }
}

.preview-mockup-options {
  position: fixed;
  bottom: 7rem;
  right: .5rem;
  gap: 1rem;
  display: none;
}

@media screen and (max-width: 768px) {
  .preview-mockup-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.preview-mockup-options .toggler {
  width: 3.5rem;
  height: 3.5rem;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(46, 48, 56, 0.25);
          box-shadow: 0px 1px 2px 0px rgba(46, 48, 56, 0.25);
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.preview-mockup-options .toggler::before {
  color: #e73657;
  pointer-events: none;
  -webkit-transition: .2s;
  transition: .2s;
}

.preview-mockup-options .mockup-zoom {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.preview-mockup-options .mockup-zoom::before {
  content: "\e94c";
  font-family: 'onemasterlink-icon';
  font-size: 1.8rem;
}

.preview-mockup-options .mockup-zoom.zoom::before {
  content: "\e94d";
}

.preview-mockup-options .mockup-zoom.hide {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.preview-mockup-options .mockup-visibility::before {
  content: "\e927";
  font-family: 'onemasterlink-icon';
  font-size: 2.4rem;
}

.preview-mockup-options .mockup-visibility.hidden::before {
  content: "\e945";
}

.preview-mobile {
  position: fixed;
  bottom: 8rem;
  right: 1rem;
  display: none;
}

@media screen and (max-width: 768px) {
  .preview-mobile {
    display: block;
  }
}

.preview-mobile .preview-mobile-toggler {
  background-color: #e73657;
  width: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5rem;
  -webkit-box-shadow: 0px 0px 0px 5px rgba(231, 54, 87, 0.2);
          box-shadow: 0px 0px 0px 5px rgba(231, 54, 87, 0.2);
  -webkit-transition: .2s;
  transition: .2s;
  position: relative;
}

.preview-mobile .preview-mobile-toggler::before {
  content: "\e917";
  font-family: 'onemasterlink-icon';
  font-size: 3rem;
  color: white;
}

.preview-mobile .preview-mobile-toggler.active::before {
  content: "\e916";
  font-size: 2.5rem;
}

.preview-mobile img {
  width: 3rem;
  height: 3rem;
  pointer-events: none;
}

.copy-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  background-color: white;
  -webkit-box-shadow: 0px 20px 20px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 20px 20px rgba(31, 66, 114, 0.1);
  width: 100%;
  height: 5.5rem;
  border-radius: 5rem;
  max-width: 40rem;
  padding: 1rem 1rem 1rem 1.5rem;
}

@media screen and (max-width: 768px) {
  .copy-link-wrapper {
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.copy-link-wrapper .copy-link-text {
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.copy-link-wrapper .copy-link-btn {
  text-transform: uppercase;
}

.copy-link-wrapper .copy-link-btn img {
  margin-right: .5rem;
  width: 1.6rem;
  height: 1.6rem;
  pointer-events: none;
}

.copy-link-wrapper .copy-link-btn .icon {
  margin-right: .5rem;
  font-size: 1.6rem;
  pointer-events: none;
}

.copy-link-wrapper .copy-link-btn span {
  color: white;
  font-size: 1.6rem;
  pointer-events: none;
  text-transform: uppercase;
}

.steps-container {
  -webkit-transition: .2s;
  transition: .2s;
}

.steps-container .steps-button {
  background-color: #e73657;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3rem 1fr 3rem;
      grid-template-columns: 3rem 1fr 3rem;
  border-radius: 5rem;
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 16.5rem;
  padding: 0rem;
  gap: .5rem;
  -webkit-box-shadow: 0px 0px 0px 5px rgba(231, 54, 87, 0.2);
          box-shadow: 0px 0px 0px 5px rgba(231, 54, 87, 0.2);
}

.steps-container .steps-button .steps-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  pointer-events: none;
}

.steps-container .steps-button .steps-icon .icon {
  width: 3rem;
  height: 3rem;
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: white;
}

.steps-container .steps-button .steps-text {
  text-transform: uppercase;
  color: white;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  pointer-events: none;
}

.steps-container .steps-button .steps-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.steps-container .steps-button .steps-close .icon {
  color: white;
  font-size: 1.4rem;
  pointer-events: none;
}

.steps-container .steps-button .steps-close img {
  width: 2rem;
  height: 2rem;
  pointer-events: none;
}

.steps-container .steps-wrapper {
  position: absolute;
  background-color: white;
  padding: 2rem;
  width: 28rem;
  border-radius: 20px;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
}

.steps-container .steps-wrapper .steps-wrapper_header {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #EBEBEB;
}

.steps-container .steps-wrapper .steps-wrapper_header .card-steps-close {
  position: absolute;
  right: 0px;
  top: 0px;
}

.steps-container .steps-wrapper .steps-wrapper_header .card-steps-close .icon {
  font-size: 1rem;
  color: #999999;
  pointer-events: none;
}

.steps-container .steps-wrapper .steps-wrapper_header .steps-title {
  font-size: 1.8rem;
  margin-bottom: .7rem;
}

.steps-container .steps-wrapper .steps-wrapper_header p {
  font-size: 1.4rem;
  font-weight: 500;
  color: black;
}

.steps-container .steps-wrapper .steps-wrapper_body {
  padding-left: 1rem;
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list {
  padding-left: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list::before {
  content: '';
  position: absolute;
  right: calc(100% - 2.5px);
  top: 10%;
  height: 80%;
  width: 1px;
  border-radius: 5rem;
  background-color: #cccccc;
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list .step-item {
  position: relative;
  height: 4.4rem;
  width: 100%;
  padding: 1rem 2rem;
  background: #F8F9FD;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list .step-item::before {
  content: '';
  position: absolute;
  right: calc(100% + 1.5rem);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 5rem;
  border: 1px solid #cccccc;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list .step-item p {
  color: black;
  font-weight: 500;
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list .step-item.checked {
  background-color: rgba(52, 168, 83, 0.15);
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list .step-item.checked::before {
  content: "\e91b";
  font-family: 'onemasterlink-icon';
  border-color: #137646;
  color: #137646;
  font-weight: bold;
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list .step-item.checked:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(100% + 2.7rem);
  top: 3.5rem;
  width: 1px;
  height: 4rem;
  background-color: #34A853;
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list .step-item.next-step {
  background-color: white;
  border: 1px solid #00AFF0;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 175, 240, 0.2);
          box-shadow: 0px 0px 20px rgba(0, 175, 240, 0.2);
}

.steps-container .steps-wrapper .steps-wrapper_body .steps-list .step-item.next-step::before {
  border-color: #00AFF0;
}

.steps-container .steps-wrapper.show {
  -webkit-transform: translateY(0rem);
          transform: translateY(0rem);
  visibility: visible;
  opacity: 1;
}

.steps-container:not(.steps-header) {
  position: absolute;
  bottom: 0px;
  left: calc(100% - 8rem);
}

.steps-container:not(.steps-header) .steps-button {
  height: 4.8rem;
  min-width: 16.5rem;
}

.steps-container:not(.steps-header) .steps-wrapper {
  bottom: calc(100% + 2rem);
  right: 0px;
}

.steps-container.steps-header {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.steps-container.steps-header .steps-button {
  height: 4rem;
}

.steps-container.steps-header .steps-wrapper {
  top: calc(100% + 2rem);
  right: 2rem;
}

@media screen and (max-width: 1200px) {
  .steps-container:not(.steps-header) {
    top: calc(100% + 2rem);
    left: unset;
    right: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .steps-container:not(.steps-header) {
    display: none;
  }
  .steps-container.steps-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 2rem;
  }
  .steps-container.steps-header .steps-button {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3rem 1fr;
        grid-template-columns: 3rem 1fr;
    padding-right: 1rem;
  }
}

.steps-container.hide {
  -webkit-transform: translate(40%, -7%) scale(0);
          transform: translate(40%, -7%) scale(0);
}

.userSettings-wrapper {
  width: 100%;
  max-width: 90rem;
  padding: 1rem 2rem 2rem 2rem;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  background-color: white;
}

.userSettings-wrapper .userSettings-options {
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  border-bottom: 2px solid rgba(46, 48, 56, 0.05);
}

@media screen and (max-width: 576px) {
  .userSettings-wrapper .userSettings-options {
    gap: 2rem;
  }
}

.userSettings-wrapper .userSettings-options .userSettings-option {
  height: 100%;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Fredoka One", sans-serif;
  position: relative;
}

.userSettings-wrapper .userSettings-options .userSettings-option::before {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  bottom: -1.5px;
  left: 0px;
}

.userSettings-wrapper .userSettings-options .userSettings-option.active {
  color: #e73657;
}

.userSettings-wrapper .userSettings-options .userSettings-option.active::before {
  background-color: #e73657;
  -webkit-box-shadow: 0px 0px 20px rgba(232, 54, 88, 0.5);
          box-shadow: 0px 0px 20px rgba(232, 54, 88, 0.5);
}

.userSettings-wrapper .userSettings-body {
  width: 100%;
  height: 100%;
}

.userSettings-wrapper .userSettings-body .userSettings-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box {
  padding: 3rem 1rem;
  border-bottom: 1px solid rgba(46, 48, 56, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .toggle-btn {
  position: absolute;
  right: 1rem;
  top: 3.5rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .toggle-btn .icon {
  color: #134276;
  font-size: 1.4rem;
  font-weight: bold;
  pointer-events: none;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .toggle-btn.hide {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box > p {
  color: black;
  font-weight: 400;
}

@media screen and (max-width: 992px) {
  .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box > p.mw-300, .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box > p.mw-400 {
    width: 100%;
    max-width: 100%;
  }
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box:last-child {
  border: none;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-content_box-title {
  font-family: "Fredoka One", sans-serif;
  color: #134276;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
}

@media screen and (max-width: 992px) {
  .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-password .colums-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-content_box-body {
  max-height: 100rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-password, .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-analytics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-password > p, .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-analytics > p {
  color: black;
  font-weight: 400;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-password > p a, .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-analytics > p a {
  text-decoration: underline;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-password .form-buttons, .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-analytics .form-buttons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: calc(100% + 1rem);
  right: 0px;
  gap: 2rem;
  -webkit-transition: .2s;
  transition: .2s;
}

@media screen and (max-width: 576px) {
  .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-password .form-buttons, .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box .userSettings-analytics .form-buttons {
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box.toggable {
  gap: 0rem;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box.toggable .userSettings-content_box-title {
  cursor: pointer;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box.toggable .userSettings-content_box-body {
  padding-top: 2rem;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box.toggable .userSettings-content_box-body .form-buttons {
  margin-right: 5rem;
  bottom: calc(100% - 1rem);
}

@media screen and (max-width: 576px) {
  .userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box.toggable .userSettings-content_box-body .form-buttons {
    margin-right: 0rem;
  }
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box.hide .userSettings-content_box-body {
  max-height: 0px;
  opacity: 0;
  visibility: hidden;
  padding-top: 0rem;
}

.userSettings-wrapper .userSettings-body .userSettings-content .userSettings-content_box.hide .userSettings-content_box-body .form-buttons {
  visibility: hidden;
  opacity: 0;
}

.select-wrapper {
  position: relative;
}

.select-wrapper .select-default {
  position: relative;
  z-index: 889;
  cursor: pointer;
  background-color: white;
  border-radius: 25px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.select-wrapper .select-default button {
  width: 100%;
  padding: 1.1rem 4rem 1.1rem 2rem;
  pointer-events: none;
  position: relative;
  text-align: left;
  white-space: nowrap;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.select-wrapper .select-default button span {
  font-size: 16px;
  color: #666666;
}

.select-wrapper .select-default button .icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2rem;
  color: #e73657;
}

.select-wrapper .select-default button img {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.select-wrapper .select-default::before {
  content: "\e904";
  font-family: 'onemasterlink-icon';
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666666;
}

.select-wrapper .select-default.w-icon button {
  padding: 1.1rem 4rem 1.1rem 4rem;
}

.select-wrapper .select-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  z-index: 888;
  width: 100%;
  top: 1px;
  left: 0px;
  padding-top: 40px;
  background-color: white;
  border-radius: 25px;
  -webkit-box-shadow: 0px 0px 0px 2px rgba(46, 48, 56, 0.1);
          box-shadow: 0px 0px 0px 2px rgba(46, 48, 56, 0.1);
  overflow: hidden;
  overflow-y: auto;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.select-wrapper .select-options::-webkit-scrollbar {
  display: none;
}

.select-wrapper .select-options .select-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7.5px 1.2rem;
  -webkit-transition: .3s;
  transition: .3s;
  gap: 1rem;
}

.select-wrapper .select-options .select-option img {
  width: 2rem;
  height: 2rem;
  pointer-events: none;
}

.select-wrapper .select-options .select-option p {
  pointer-events: none;
  -webkit-transition: .2s;
  transition: .2s;
  color: #666666;
}

.select-wrapper .select-options .select-option:hover p {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}

.select-wrapper .select-options:not(.show) {
  padding-bottom: 0px;
  max-height: 0px;
}

.select-wrapper .select-options:not(.show) .select-option {
  opacity: 0;
}

.select-wrapper .select-options.show {
  max-height: 400px;
  padding-bottom: 10px;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  border-radius: 22px;
}

.select-wrapper .select-options.show .select-option {
  opacity: 1;
}

.userSettings-blockVisitors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.userSettings-blockVisitors .select-blockVisitors .select-options.show {
  max-height: 200px;
}

.userSettings-blockVisitors .list-blockVisitors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.userSettings-blockVisitors .list-blockVisitors .country-block {
  background-color: #134276;
  border-radius: 5rem;
  padding: .5rem .5rem .5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .7rem;
}

.userSettings-blockVisitors .list-blockVisitors .country-block span {
  color: white;
  font-weight: 500;
  font-size: 1.4rem;
  pointer-events: none;
}

.userSettings-blockVisitors .list-blockVisitors .country-block .remove-btn {
  border-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.userSettings-blockVisitors .list-blockVisitors .country-block .remove-btn .icon {
  pointer-events: none;
  color: white;
  font-size: 1.4rem;
}

.userSettings-blockVisitors .list-blockVisitors .country-block .remove-btn img {
  width: 1.2rem;
  height: 1.2rem;
  pointer-events: none;
}

.discoverProfiles-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0rem;
  gap: 2rem;
}

.discoverProfiles-wrapper .discoverProfiles-header h1 {
  font-size: 30px;
  text-align: center;
}

.discoverProfiles-wrapper .discoverProfiles-list {
  padding: 6rem 0rem 2rem 0rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(26rem, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
  gap: 7rem 5rem;
  width: 100%;
  justify-items: center;
}

@media screen and (max-width: 768px) {
  .discoverProfiles-wrapper .discoverProfiles-list {
    gap: 7rem 2rem;
  }
}

@media screen and (max-width: 576px) {
  .discoverProfiles-wrapper .discoverProfiles-header h1 {
    font-size: 2.5rem;
  }
}

.discoverProfile-card {
  background-color: white;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  max-width: 35rem;
  width: 100%;
  position: relative;
}

.discoverProfile-card .discoverProfile-card-follow {
  height: 2.6rem;
  position: absolute;
  background-color: #e73657;
  right: 2rem;
  top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5rem;
  z-index: 555;
  padding: .5rem .8rem;
  gap: .5rem;
  -webkit-box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
  -webkit-transition: .2s;
  transition: .2s;
}

.discoverProfile-card .discoverProfile-card-follow::after {
  content: attr(data-text);
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  text-transform: capitalize;
}

.discoverProfile-card .discoverProfile-card-follow:not(.followed)::before {
  content: "\e917";
  font-family: 'onemasterlink-icon';
  color: white;
}

.discoverProfile-card .discoverProfile-card-follow.followed {
  padding: .5rem 1rem;
  background-color: white;
  border: 2px solid #134276;
}

.discoverProfile-card .discoverProfile-card-follow.followed::after {
  color: #134276;
  font-weight: 600;
}

.discoverProfile-card .discoverProfile-card-share {
  position: absolute;
  background-color: #e73657;
  width: 2.4rem;
  height: 2.4rem;
  right: 2rem;
  top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  z-index: 555;
}

.discoverProfile-card .discoverProfile-card-share .icon {
  color: white;
}

.discoverProfile-card .discoverProfile-card-share img {
  pointer-events: none;
}

.discoverProfile-card .discoverProfile-card_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 1rem;
  margin-top: -6rem;
}

.discoverProfile-card .discoverProfile-card_header .card_header-picture {
  width: 10rem;
  height: 10rem;
}

.discoverProfile-card .discoverProfile-card_header .card_header-username {
  font-family: "Fredoka One", sans-serif;
  color: #134276;
  font-size: 1.8rem;
}

.discoverProfile-card .discoverProfile-card_header .card_header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f7f8fd;
  padding: .3rem 1rem .3rem .3rem;
  border-radius: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
}

.discoverProfile-card .discoverProfile-card_header .card_header-links span {
  padding: .3rem;
  font-family: "Fredoka One", sans-serif;
  color: #e73657;
  background-color: white;
  border-radius: .7rem;
  -webkit-box-shadow: 0px 5px 10px rgba(31, 66, 114, 0.05);
          box-shadow: 0px 5px 10px rgba(31, 66, 114, 0.05);
}

.discoverProfile-card .discoverProfile-card_header .card_header-links p {
  font-weight: 600;
  color: #134276;
  line-height: 0;
}

.discoverProfile-card .discoverProfile-card_body {
  overflow: hidden;
  min-height: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .5rem;
}

.discoverProfile-card .discoverProfile-card_body .discoverProfile-location, .discoverProfile-card .discoverProfile-card_body .discoverProfile-url, .discoverProfile-card .discoverProfile-card_body .discoverProfile-bio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .5rem;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  padding-left: 2rem;
}

.discoverProfile-card .discoverProfile-card_body .discoverProfile-location .icon, .discoverProfile-card .discoverProfile-card_body .discoverProfile-url .icon, .discoverProfile-card .discoverProfile-card_body .discoverProfile-bio .icon {
  color: #e73657;
  font-size: 1.4rem;
  position: absolute;
  left: 0px;
  top: .5rem;
}

.discoverProfile-card .discoverProfile-card_body .discoverProfile-location p, .discoverProfile-card .discoverProfile-card_body .discoverProfile-url p, .discoverProfile-card .discoverProfile-card_body .discoverProfile-bio p {
  font-weight: 500;
  color: #666666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.discoverProfile-card .discoverProfile-card_body .discoverProfile-location p {
  -webkit-line-clamp: 1;
  word-break: break-all;
}

.discoverProfile-card .discoverProfile-card_body .discoverProfile-url p {
  -webkit-line-clamp: 1;
  word-break: break-all;
}

.discoverProfile-card .discoverProfile-card_body .discoverProfile-bio p {
  -webkit-line-clamp: 3;
  line-height: 24px;
  word-break: keep-all;
}

.discoverProfile-card .discoverProfile-card_cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.discoverProfile-card .discoverProfile-card_cta a {
  height: 3.6rem;
  width: 100%;
  border: 2px solid #134276;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5rem;
  font-weight: 600;
  line-height: 0;
}

.discoverProfile-card .discoverProfile-card_cta a:hover {
  color: #e73657;
  border-color: #e73657;
}

@media screen and (min-width: 992px) {
  .discoverProfile-card .discoverProfile-card_cta a {
    max-width: 13rem;
  }
}

.support-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0rem;
  gap: 2rem;
}

.support-wrapper .support-info {
  width: 100%;
}

.support-wrapper .support-info h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.support-wrapper .support-info p {
  width: 50%;
  font-size: 2rem;
  color: #666666;
}

@media screen and (max-width: 992px) {
  .support-wrapper .support-info p {
    width: 100%;
  }
}

.support-wrapper .support-faq {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

@media screen and (max-width: 768px) {
  .support-wrapper .support-faq {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.support-wrapper .support-faq .support-faq_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}

.support-wrapper .support-contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  margin-top: 10rem;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .support-wrapper .support-contact {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-top: 4rem;
  }
}

.support-wrapper .support-contact .support-contact_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.support-wrapper .support-contact .support-contact_col > h3 {
  font-size: 3rem;
}

.support-wrapper .support-contact .support-contact_col > p {
  font-size: 1.8rem;
}

.contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 3rem;
  background-color: white;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  border-radius: 20px;
}

.contact-wrapper h3 {
  font-size: 2.4rem;
}

.contact-wrapper .contact-subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-wrapper .contact-subject .subject-option {
  position: relative;
}

.contact-wrapper .contact-subject .subject-option label {
  background-color: #134276;
  color: white;
  border-radius: 5rem;
  min-height: 2.4rem;
  padding: .1rem 1rem 0rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  font-weight: 500;
}

.contact-wrapper .contact-subject .subject-option input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.contact-wrapper .contact-subject .subject-option input:checked ~ label {
  background-color: #e73657;
}

.contact-wrapper .contact-submit {
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media screen and (min-width: 992px) {
  .contact-wrapper .contact-submit {
    max-width: 25rem;
  }
}

.acordion-wrapper {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.acordion-wrapper h3 {
  font-size: 2.4rem;
}

.acordion-wrapper .acordion-card {
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  width: 100%;
  max-width: 800px;
  background-color: white;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
}

.acordion-wrapper .acordion-card .acordion-card-header {
  padding: 2rem 2rem 2rem 2rem;
  position: relative;
  cursor: pointer;
  background: white;
  border-radius: 20px;
}

.acordion-wrapper .acordion-card .acordion-card-header p {
  font-size: 1.8rem;
  pointer-events: none;
  color: #134276;
  font-family: "Fredoka One", sans-serif;
}

.acordion-wrapper .acordion-card .acordion-card-header::before {
  content: "\e917";
  font-family: 'onemasterlink-icon';
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 20px;
  font-size: 2rem;
  color: #e73657;
}

.acordion-wrapper .acordion-card .acordion-card-content {
  overflow: hidden;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.acordion-wrapper .acordion-card .acordion-card-content p {
  font-size: 1.8rem;
  color: #666666;
  font-weight: 400;
}

.acordion-wrapper .acordion-card.show .acordion-card-header {
  background-color: transparent;
}

.acordion-wrapper .acordion-card.show .acordion-card-header::before {
  content: "\e916";
  color: #134276;
}

.acordion-wrapper .acordion-card.show .acordion-card-content {
  padding: 0px 20px 20px 20px;
  opacity: 1;
  max-height: 1000px;
}

.acordion-wrapper .acordion-card:not(.show) {
  gap: 0px;
}

.acordion-wrapper .acordion-card:not(.show) .acordion-card-content {
  opacity: 0;
  padding: 0px 20px 0px 20px;
  -webkit-transition: .3s;
  transition: .3s;
  max-height: 0px;
}

.showMore-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
}

.showMore-wrapper a {
  width: 16rem;
  font-weight: 500;
}

.notify-container {
  position: fixed;
  top: -1rem;
  right: -1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
  max-height: calc(100vh - 12rem);
  overflow: hidden;
  padding: 10rem 3rem;
  pointer-events: none;
  z-index: 999;
}

.notify-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 6rem;
  position: relative;
  background-color: white;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 40rem;
  -webkit-transition: .2s;
  transition: .2s;
  pointer-events: all;
}

.notify-wrapper .notify-icon {
  width: 4rem;
  height: 4rem;
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.notify-wrapper .notify-icon::before {
  content: "";
  font-family: 'onemasterlink-icon';
  width: 2.8rem;
  height: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
  color: white;
  font-weight: bold;
}

.notify-wrapper .notify-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 4rem;
  gap: 1px;
}

.notify-wrapper .notify-body .notify-body_title {
  font-weight: 400;
  font-family: "Fredoka One", sans-serif;
  color: black;
  font-size: 1.6rem;
}

.notify-wrapper .notify-body .notify-body_text {
  color: #666666;
  font-size: 1.4rem;
}

.notify-wrapper .notify-close {
  width: 4rem;
  height: 4rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .2s;
  transition: .2s;
}

.notify-wrapper .notify-close::before {
  content: "\e921";
  font-family: 'onemasterlink-icon';
  color: #666666;
}

.notify-wrapper .notify-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.notify-wrapper.success {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(23, 185, 107, 0.4);
          box-shadow: 0px 0px 0px 1px rgba(23, 185, 107, 0.4);
}

.notify-wrapper.success .notify-icon::before {
  content: "\e91c";
  color: #137646;
}

.notify-wrapper.success .notify-body .notify-body_title {
  color: #137646;
}

.notify-wrapper.alert {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(250, 186, 64, 0.4);
          box-shadow: 0px 0px 0px 1px rgba(250, 186, 64, 0.4);
}

.notify-wrapper.alert .notify-icon::before {
  content: "\e91d";
  color: #E99B05;
}

.notify-wrapper.alert .notify-body .notify-body_title {
  color: #E99B05;
}

.notify-wrapper.error {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(232, 54, 88, 0.4);
          box-shadow: 0px 0px 0px 1px rgba(232, 54, 88, 0.4);
}

.notify-wrapper.error .notify-icon::before {
  content: "\e922";
  color: #E83658;
}

.notify-wrapper.error .notify-body .notify-body_title {
  color: #E83658;
}

.notify-wrapper.info {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(22, 86, 174, 0.4);
          box-shadow: 0px 0px 0px 1px rgba(22, 86, 174, 0.4);
}

.notify-wrapper.info .notify-icon::before {
  content: "\e948";
  color: #1F4272;
}

.notify-wrapper.info .notify-body .notify-body_title {
  color: #1F4272;
}

.notify-wrapper.hide {
  -webkit-transform: translateX(calc(100% + 2rem));
          transform: translateX(calc(100% + 2rem));
}

.temporalNotify-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
  max-height: calc(50vh);
  overflow: hidden;
  pointer-events: none;
  z-index: 995;
}

@media screen and (max-width: 768px) {
  .temporalNotify-container {
    bottom: 8rem;
  }
}

.temporalNotify-container .temporalNotify-wrapper {
  min-width: 10rem;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  -webkit-transition: .2s;
  transition: .2s;
}

.temporalNotify-container .temporalNotify-wrapper .notify-text {
  font-weight: 600;
}

.temporalNotify-container .temporalNotify-wrapper.success {
  background-color: #E7FFF3;
}

.temporalNotify-container .temporalNotify-wrapper.success .notify-text {
  color: #137646;
}

.temporalNotify-container .temporalNotify-wrapper.alert {
  background-color: #FFF4E9;
}

.temporalNotify-container .temporalNotify-wrapper.alert .notify-text {
  color: #E99B05;
}

.temporalNotify-container .temporalNotify-wrapper.error {
  background-color: #FFE5EA;
}

.temporalNotify-container .temporalNotify-wrapper.error .notify-text {
  color: #E83658;
}

.temporalNotify-container .temporalNotify-wrapper.info {
  background-color: #E9F2FF;
}

.temporalNotify-container .temporalNotify-wrapper.info .notify-text {
  color: #1F4272;
}

.temporalNotify-container .temporalNotify-wrapper.hide {
  -webkit-transform: translateX(calc(100%));
          transform: translateX(calc(100%));
}

.createNotify-wrapper {
  min-height: 50vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}

.createNotify-wrapper .createNotify-normal, .createNotify-wrapper .createNotify-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.createNotify-wrapper .createNotify-normal h2, .createNotify-wrapper .createNotify-small h2 {
  text-align: center;
  font-size: 2.4rem;
}

.createNotify-wrapper .createNotify-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem;
  gap: 1rem;
}

.createNotify-wrapper .createNotify-list button {
  padding: 1rem;
  font-weight: bold;
}

.createNotify-wrapper .createNotify-list .successBtn {
  color: #137646;
}

.createNotify-wrapper .createNotify-list .alertBtn {
  color: #E99B05;
}

.createNotify-wrapper .createNotify-list .errorBtn {
  color: #E83658;
}

.createNotify-wrapper .createNotify-list .infoBtn {
  color: #1F4272;
}

.stats-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px 0px;
}

@media (min-width: 998px) {
  .stats-wrapper {
    max-width: 920px;
  }
}

@media (max-width: 997px) {
  .stats-wrapper {
    padding: 20px 50px;
  }
}

@media (max-width: 576px) {
  .stats-wrapper {
    padding: 20px;
  }
}

.stats-wrapper .statistics-block {
  min-height: 240px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0px 10px;
}

.stats-wrapper .statistics-block .statistics-wrapper {
  background-color: white;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  place-content: center;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header .statistics-header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: bold;
  color: #134276;
  padding-top: 15px;
  padding-right: 15px;
  position: relative;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header .statistics-header-info .name {
  font-size: 14px;
}

@media (max-width: 767px) {
  .stats-wrapper .statistics-block .statistics-wrapper .statistics-header .statistics-header-info .name {
    font-size: 20px;
  }
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header .statistics-header-info .icon {
  font-size: 28px;
  line-height: 1.2;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header .statistics-header-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  color: #134276;
  padding-top: 15px;
  padding-right: 15px;
  position: relative;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header .statistics-header-data .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .stats-wrapper .statistics-block .statistics-wrapper .statistics-header .statistics-header-data .name {
    font-size: 20px;
  }
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header .statistics-header-data .name .icon {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
  color: #134276;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header .statistics-header-data .amount {
  text-align: end;
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header-legend {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px 10px 0px 0px;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header-legend .legend {
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  color: #134276;
  padding-left: 25px;
  position: relative;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header-legend .legend:nth-of-type(2):before {
  background-color: #caacf9;
}

@media (max-width: 767px) {
  .stats-wrapper .statistics-block .statistics-wrapper .statistics-header-legend .legend {
    font-size: 18px;
  }
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header-legend .legend:not(:last-child) {
  margin-bottom: 10px;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-header-legend .legend::before {
  content: '';
  position: absolute;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #2196F3;
  border-radius: 5rem;
  opacity: .4;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-pieChart > div svg g[aria-label="Chart"] ~ g > g > g[aria-labelledby], .stats-wrapper .statistics-block .statistics-wrapper .mapStatistics-mapChart > div svg g[aria-label="Chart"] ~ g > g > g[aria-labelledby], .stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser > div svg g[aria-label="Chart"] ~ g > g > g[aria-labelledby], .stats-wrapper .statistics-block .statistics-wrapper .trendsChart > div svg g[aria-label="Chart"] ~ g > g > g[aria-labelledby], .stats-wrapper .statistics-block .statistics-wrapper .statistics-chartEarnings > div svg g[aria-label="Chart"] ~ g > g > g[aria-labelledby] {
  display: none;
  visibility: hidden;
}

.stats-wrapper .statistics-block .statistics-wrapper .mapStatistics-mapChart {
  -webkit-filter: drop-shadow(0px 1px 1px rgba(46, 48, 56, 0.05));
          filter: drop-shadow(0px 1px 1px rgba(46, 48, 56, 0.05));
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-pieChart {
  width: 100px;
  height: 100px;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-pieChart > div svg {
  -webkit-filter: drop-shadow(0px 1px 1px rgba(46, 48, 56, 0.25));
          filter: drop-shadow(0px 1px 1px rgba(46, 48, 56, 0.25));
}

.stats-wrapper .statistics-block .statistics-wrapper .legend-container {
  max-height: 140px;
  overflow: hidden;
  padding-bottom: 10px;
}

.stats-wrapper .statistics-block .statistics-wrapper .legend-container .legend-wrapper {
  height: 130px;
  overflow: hidden;
}

.stats-wrapper .statistics-block .statistics-wrapper .legend-container .legend-wrapper .legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  pointer-events: none;
  padding: 2.5px 15px;
}

.stats-wrapper .statistics-block .statistics-wrapper .legend-container .legend-wrapper .legend-item .legend-category {
  font-size: 14px;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.stats-wrapper .statistics-block .statistics-wrapper .legend-container .legend-wrapper .legend-item .legend-category .legend-marker {
  pointer-events: none;
  width: 15px;
  height: 15px;
  border-radius: 5rem;
  margin-right: 10px;
}

.stats-wrapper .statistics-block .statistics-wrapper .legend-container .legend-wrapper .legend-item .legend-category .legend-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.stats-wrapper .statistics-block .statistics-wrapper .legend-container .legend-wrapper .legend-item .legend-value {
  font-size: 14px;
  font-weight: bold;
  text-align: end;
  color: #134276;
  pointer-events: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px;
}

@media (min-width: 576px) {
  .stats-wrapper .statistics-block .statistics-wrapper .mapStatistics-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 220px;
        grid-template-columns: 1fr 220px;
  }
}

.stats-wrapper .statistics-block .statistics-wrapper .mapStatistics-container .mapStatistics-wrapper > div {
  height: 100%;
  padding: 20px;
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}

@media (max-width: 576px) {
  .stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-header .links-trends-select {
  width: 60%;
  position: relative;
}

@media (max-width: 576px) {
  .stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-header .links-trends-select {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 10px;
    width: 100%;
  }
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-header .links-trends-select .siteTrendSelected {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  color: #134276;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-header .links-trends-select .siteTrendSelected::before {
  content: '';
  height: 15px;
  width: 15px;
  background-color: #2196F3;
  border-radius: 5rem;
  opacity: .4;
  margin-right: 10px;
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-header .legend {
  font-size: 14px;
  font-weight: bold;
  color: #134276;
  padding-left: 50px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-header .legend {
    font-size: 20px;
  }
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-content {
  width: 100%;
  height: 100%;
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-content .link-trends-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 15px;
  position: relative;
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-content .link-trends-item:not(:last-child) {
  margin-bottom: 10px;
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-content .link-trends-item .link-trends-name {
  line-height: 1;
  font-size: 14px;
  color: #134276;
  padding-left: 25px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-content .link-trends-item .link-trends-name {
    font-size: 16px;
  }
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-content .link-trends-item .link-trends-name::before {
  content: '';
  position: absolute;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #2196F3;
  border-radius: 5rem;
  opacity: .4;
}

.stats-wrapper .statistics-block .statistics-wrapper .links-trends-wrapper .links-trends-content .link-trends-item .link-trends-value {
  font-size: 14px;
  font-weight: bold;
  color: #134276;
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  padding-left: 10px;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser-legend {
  width: 100%;
  padding: 15px 15px 0px 15px;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser-legend .chartUser-legend {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser-legend .chartUser-legend:not(:last-child) {
  margin-bottom: 10px;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser-legend .chartUser-legend.views::before {
  background-color: #5cb7fc;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser-legend .chartUser-legend.followers::before {
  background-color: #caacf9;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser-legend .chartUser-legend.links::before {
  background-color: #f88192;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser-legend .chartUser-legend::before {
  content: '';
  height: 15px;
  width: 15px;
  border-radius: 5rem;
  margin-right: 10px;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser-legend .chartUser-legend .legend-name {
  line-height: 1;
  font-size: 14px;
  color: #134276;
  position: relative;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.stats-wrapper .statistics-block .statistics-wrapper .statistics-chartUser-legend .chartUser-legend .legend-value {
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  color: #134276;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body .introjs-showElement {
  z-index: 99 !important;
}

.introjs-helperLayer {
  -webkit-box-shadow: rgba(31, 66, 114, 0.2) 0px 0px 1px 2px, rgba(31, 66, 114, 0.2) 0px 0px 0px 5000px !important;
          box-shadow: rgba(31, 66, 114, 0.2) 0px 0px 1px 2px, rgba(31, 66, 114, 0.2) 0px 0px 0px 5000px !important;
}

.customTooltip.introjs-tooltip {
  min-width: 270px;
  width: 100%;
  max-width: 270px;
  border-radius: 1rem;
  padding: 2rem;
}

.customTooltip.introjs-floating .introjs-tooltipbuttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.customTooltip.introjs-floating .introjs-nextbutton {
  padding: 1rem 1.5rem;
}

.customTooltip.introjs-floating .introjs-nextbutton::before {
  content: url("/static/images/rocket.svg");
  vertical-align: middle;
  margin-right: 1rem;
}

.customTooltip .introjs-hidden {
  display: none !important;
}

.customTooltip .introjs-tooltip-header {
  padding: 0;
}

.customTooltip .introjs-tooltip-header .introjs-tooltip-title {
  font-family: "Fredoka One", sans-serif;
  font-size: 1.8rem;
  color: #134276;
  padding: 1rem 0;
  font-weight: 300;
}

.customTooltip .introjs-tooltip-header .introjs-skipbutton::after {
  content: url("/static/images/close.svg");
  position: absolute;
  top: 2rem;
}

.customTooltip .introjs-tooltiptext {
  padding: 0;
  padding-bottom: 2rem;
  font-size: "Barlow", sans-serif;
  color: #666666;
  font-size: 1.6rem;
  line-height: 2rem;
}

.customTooltip .introjs-tooltipbuttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: none;
  padding: 0;
}

.customTooltip .introjs-tooltipbuttons::after {
  content: none;
}

.customTooltip .introjs-button {
  display: block;
  font-size: "Barlow", sans-serif;
  border-radius: 5rem;
  border: 0;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transition-property: background-color, color, -webkit-filter, -webkit-box-shadow;
  transition-property: background-color, color, -webkit-filter, -webkit-box-shadow;
  transition-property: background-color, filter, box-shadow, color;
  transition-property: background-color, filter, box-shadow, color, -webkit-filter, -webkit-box-shadow;
  text-decoration: none;
  outline: none;
  padding: .5rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
}

.customTooltip .introjs-prevbutton {
  border: 1px solid #134276;
  color: #134276;
  padding: 1rem 2.5rem;
}

.customTooltip .introjs-nextbutton, .customTooltip .introjs-nextbutton:focus {
  color: white !important;
  text-shadow: 0px 1px 1px rgba(46, 48, 56, 0.25);
  background-color: #e73657;
  border: none;
  padding: 1rem 2.5rem;
}

.customTooltip .introjs-nextbutton:hover, .customTooltip .introjs-nextbutton:focus:hover {
  -webkit-box-shadow: 0px 0px 0px 5px rgba(231, 54, 87, 0.2);
          box-shadow: 0px 0px 0px 5px rgba(231, 54, 87, 0.2);
}

.customTooltip .introjs-nextbutton::before, .customTooltip .introjs-nextbutton:focus::before {
  font-family: 'onemasterlink-icon';
  content: '\e903';
  vertical-align: middle;
  margin-right: 1rem;
}

@media screen and (min-width: 576px) {
  .customTooltip.introjs-tooltip {
    min-width: 300px;
    max-width: 300px;
  }
}

@media screen and (min-width: 768px) {
  .customTooltip.introjs-tooltip {
    min-width: 350px;
    max-width: 350px;
  }
  .customTooltip.introjs-floating .introjs-tooltipbuttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.error404-container {
  padding-bottom: 0rem;
}

.error404-container .section-row {
  min-height: calc(100vh - 6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error404-container .section-row::before, .error404-container .section-row::after {
  content: '';
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 400px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .error404-container .section-row::before, .error404-container .section-row::after {
    height: 100px;
  }
}

.error404-container .section-row::before {
  z-index: -2;
  background-image: url("/static/images/home/wave-2.svg");
}

.error404-container .section-row::after {
  z-index: -1;
  background-image: url("/static/images/home/wave-3.svg");
}

.error404-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  height: 100%;
  width: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 7rem 0rem;
}

.error404-wrapper .error404-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}

.error404-wrapper .error404-info h1 {
  font-size: 4.8rem;
}

.error404-wrapper .error404-info p {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .error404-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 4rem;
    padding: 2rem 0rem;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .error404-wrapper .error404-info h1 {
    font-size: 3.6rem;
  }
}

.error404-wrapper .error404-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.error404-wrapper .error404-image img {
  width: 100%;
  max-width: 43rem;
}

@media screen and (max-width: 768px) {
  .error404-wrapper .error404-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .error404-wrapper .error404-image img {
    max-width: 25rem;
  }
}

@media screen and (max-width: 375px) {
  .error404-wrapper .error404-image img {
    max-width: 15rem;
  }
}

.p-0 {
  padding: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 992px) {
  .lg-p-0 {
    padding: 0 !important;
  }
  .lg-px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .lg-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .lg-pt-0 {
    padding-top: 0 !important;
  }
  .lg-pb-0 {
    padding-bottom: 0 !important;
  }
  .lg-m-0 {
    margin: 0 !important;
  }
  .lg-mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .lg-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .lg-mt-0 {
    margin-top: 0 !important;
  }
  .lg-mb-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-0 {
    padding: 0 !important;
  }
  .md-px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .md-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .md-pt-0 {
    padding-top: 0 !important;
  }
  .md-pb-0 {
    padding-bottom: 0 !important;
  }
  .md-m-0 {
    margin: 0 !important;
  }
  .md-mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .md-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .md-mt-0 {
    margin-top: 0 !important;
  }
  .md-mb-0 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-0 {
    padding: 0 !important;
  }
  .sm-px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .sm-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .sm-pt-0 {
    padding-top: 0 !important;
  }
  .sm-pb-0 {
    padding-bottom: 0 !important;
  }
  .sm-m-0 {
    margin: 0 !important;
  }
  .sm-mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .sm-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .sm-mt-0 {
    margin-top: 0 !important;
  }
  .sm-mb-0 {
    margin-bottom: 0 !important;
  }
}

.p-1 {
  padding: 10px !important;
}

.px-1 {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.py-1 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.pt-1 {
  padding-top: 10px !important;
}

.pb-1 {
  padding-bottom: 10px !important;
}

.m-1 {
  margin: 10px !important;
}

.mx-1 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

.my-1 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mt-1 {
  margin-top: 10px !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-1 {
    padding: 10px !important;
  }
  .lg-px-1 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .lg-py-1 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .lg-pt-1 {
    padding-top: 10px !important;
  }
  .lg-pb-1 {
    padding-bottom: 10px !important;
  }
  .lg-m-1 {
    margin: 10px !important;
  }
  .lg-mx-1 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .lg-my-1 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .lg-mt-1 {
    margin-top: 10px !important;
  }
  .lg-mb-1 {
    margin-bottom: 10px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-1 {
    padding: 10px !important;
  }
  .md-px-1 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .md-py-1 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .md-pt-1 {
    padding-top: 10px !important;
  }
  .md-pb-1 {
    padding-bottom: 10px !important;
  }
  .md-m-1 {
    margin: 10px !important;
  }
  .md-mx-1 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .md-my-1 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .md-mt-1 {
    margin-top: 10px !important;
  }
  .md-mb-1 {
    margin-bottom: 10px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-1 {
    padding: 10px !important;
  }
  .sm-px-1 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .sm-py-1 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .sm-pt-1 {
    padding-top: 10px !important;
  }
  .sm-pb-1 {
    padding-bottom: 10px !important;
  }
  .sm-m-1 {
    margin: 10px !important;
  }
  .sm-mx-1 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .sm-my-1 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .sm-mt-1 {
    margin-top: 10px !important;
  }
  .sm-mb-1 {
    margin-bottom: 10px !important;
  }
}

.p-2 {
  padding: 20px !important;
}

.px-2 {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.py-2 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.pt-2 {
  padding-top: 20px !important;
}

.pb-2 {
  padding-bottom: 20px !important;
}

.m-2 {
  margin: 20px !important;
}

.mx-2 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.my-2 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-2 {
    padding: 20px !important;
  }
  .lg-px-2 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .lg-py-2 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .lg-pt-2 {
    padding-top: 20px !important;
  }
  .lg-pb-2 {
    padding-bottom: 20px !important;
  }
  .lg-m-2 {
    margin: 20px !important;
  }
  .lg-mx-2 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .lg-my-2 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .lg-mt-2 {
    margin-top: 20px !important;
  }
  .lg-mb-2 {
    margin-bottom: 20px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-2 {
    padding: 20px !important;
  }
  .md-px-2 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .md-py-2 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .md-pt-2 {
    padding-top: 20px !important;
  }
  .md-pb-2 {
    padding-bottom: 20px !important;
  }
  .md-m-2 {
    margin: 20px !important;
  }
  .md-mx-2 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .md-my-2 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .md-mt-2 {
    margin-top: 20px !important;
  }
  .md-mb-2 {
    margin-bottom: 20px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-2 {
    padding: 20px !important;
  }
  .sm-px-2 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .sm-py-2 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .sm-pt-2 {
    padding-top: 20px !important;
  }
  .sm-pb-2 {
    padding-bottom: 20px !important;
  }
  .sm-m-2 {
    margin: 20px !important;
  }
  .sm-mx-2 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .sm-my-2 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .sm-mt-2 {
    margin-top: 20px !important;
  }
  .sm-mb-2 {
    margin-bottom: 20px !important;
  }
}

.p-3 {
  padding: 30px !important;
}

.px-3 {
  padding-right: 30px !important;
  padding-left: 30px !important;
}

.py-3 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.pt-3 {
  padding-top: 30px !important;
}

.pb-3 {
  padding-bottom: 30px !important;
}

.m-3 {
  margin: 30px !important;
}

.mx-3 {
  margin-right: 30px !important;
  margin-left: 30px !important;
}

.my-3 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-3 {
    padding: 30px !important;
  }
  .lg-px-3 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .lg-py-3 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .lg-pt-3 {
    padding-top: 30px !important;
  }
  .lg-pb-3 {
    padding-bottom: 30px !important;
  }
  .lg-m-3 {
    margin: 30px !important;
  }
  .lg-mx-3 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .lg-my-3 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .lg-mt-3 {
    margin-top: 30px !important;
  }
  .lg-mb-3 {
    margin-bottom: 30px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-3 {
    padding: 30px !important;
  }
  .md-px-3 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .md-py-3 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .md-pt-3 {
    padding-top: 30px !important;
  }
  .md-pb-3 {
    padding-bottom: 30px !important;
  }
  .md-m-3 {
    margin: 30px !important;
  }
  .md-mx-3 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .md-my-3 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .md-mt-3 {
    margin-top: 30px !important;
  }
  .md-mb-3 {
    margin-bottom: 30px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-3 {
    padding: 30px !important;
  }
  .sm-px-3 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .sm-py-3 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .sm-pt-3 {
    padding-top: 30px !important;
  }
  .sm-pb-3 {
    padding-bottom: 30px !important;
  }
  .sm-m-3 {
    margin: 30px !important;
  }
  .sm-mx-3 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .sm-my-3 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .sm-mt-3 {
    margin-top: 30px !important;
  }
  .sm-mb-3 {
    margin-bottom: 30px !important;
  }
}

.p-4 {
  padding: 40px !important;
}

.px-4 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.py-4 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pt-4 {
  padding-top: 40px !important;
}

.pb-4 {
  padding-bottom: 40px !important;
}

.m-4 {
  margin: 40px !important;
}

.mx-4 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.my-4 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mt-4 {
  margin-top: 40px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-4 {
    padding: 40px !important;
  }
  .lg-px-4 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .lg-py-4 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .lg-pt-4 {
    padding-top: 40px !important;
  }
  .lg-pb-4 {
    padding-bottom: 40px !important;
  }
  .lg-m-4 {
    margin: 40px !important;
  }
  .lg-mx-4 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .lg-my-4 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .lg-mt-4 {
    margin-top: 40px !important;
  }
  .lg-mb-4 {
    margin-bottom: 40px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-4 {
    padding: 40px !important;
  }
  .md-px-4 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .md-py-4 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .md-pt-4 {
    padding-top: 40px !important;
  }
  .md-pb-4 {
    padding-bottom: 40px !important;
  }
  .md-m-4 {
    margin: 40px !important;
  }
  .md-mx-4 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .md-my-4 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .md-mt-4 {
    margin-top: 40px !important;
  }
  .md-mb-4 {
    margin-bottom: 40px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-4 {
    padding: 40px !important;
  }
  .sm-px-4 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .sm-py-4 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .sm-pt-4 {
    padding-top: 40px !important;
  }
  .sm-pb-4 {
    padding-bottom: 40px !important;
  }
  .sm-m-4 {
    margin: 40px !important;
  }
  .sm-mx-4 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .sm-my-4 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .sm-mt-4 {
    margin-top: 40px !important;
  }
  .sm-mb-4 {
    margin-bottom: 40px !important;
  }
}

.p-5 {
  padding: 50px !important;
}

.px-5 {
  padding-right: 50px !important;
  padding-left: 50px !important;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.pt-5 {
  padding-top: 50px !important;
}

.pb-5 {
  padding-bottom: 50px !important;
}

.m-5 {
  margin: 50px !important;
}

.mx-5 {
  margin-right: 50px !important;
  margin-left: 50px !important;
}

.my-5 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mt-5 {
  margin-top: 50px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-5 {
    padding: 50px !important;
  }
  .lg-px-5 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .lg-py-5 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .lg-pt-5 {
    padding-top: 50px !important;
  }
  .lg-pb-5 {
    padding-bottom: 50px !important;
  }
  .lg-m-5 {
    margin: 50px !important;
  }
  .lg-mx-5 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .lg-my-5 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .lg-mt-5 {
    margin-top: 50px !important;
  }
  .lg-mb-5 {
    margin-bottom: 50px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-5 {
    padding: 50px !important;
  }
  .md-px-5 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .md-py-5 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .md-pt-5 {
    padding-top: 50px !important;
  }
  .md-pb-5 {
    padding-bottom: 50px !important;
  }
  .md-m-5 {
    margin: 50px !important;
  }
  .md-mx-5 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .md-my-5 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .md-mt-5 {
    margin-top: 50px !important;
  }
  .md-mb-5 {
    margin-bottom: 50px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-5 {
    padding: 50px !important;
  }
  .sm-px-5 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .sm-py-5 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .sm-pt-5 {
    padding-top: 50px !important;
  }
  .sm-pb-5 {
    padding-bottom: 50px !important;
  }
  .sm-m-5 {
    margin: 50px !important;
  }
  .sm-mx-5 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .sm-my-5 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .sm-mt-5 {
    margin-top: 50px !important;
  }
  .sm-mb-5 {
    margin-bottom: 50px !important;
  }
}

.p-6 {
  padding: 60px !important;
}

.px-6 {
  padding-right: 60px !important;
  padding-left: 60px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.pt-6 {
  padding-top: 60px !important;
}

.pb-6 {
  padding-bottom: 60px !important;
}

.m-6 {
  margin: 60px !important;
}

.mx-6 {
  margin-right: 60px !important;
  margin-left: 60px !important;
}

.my-6 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.mt-6 {
  margin-top: 60px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-6 {
    padding: 60px !important;
  }
  .lg-px-6 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .lg-py-6 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .lg-pt-6 {
    padding-top: 60px !important;
  }
  .lg-pb-6 {
    padding-bottom: 60px !important;
  }
  .lg-m-6 {
    margin: 60px !important;
  }
  .lg-mx-6 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .lg-my-6 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .lg-mt-6 {
    margin-top: 60px !important;
  }
  .lg-mb-6 {
    margin-bottom: 60px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-6 {
    padding: 60px !important;
  }
  .md-px-6 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .md-py-6 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .md-pt-6 {
    padding-top: 60px !important;
  }
  .md-pb-6 {
    padding-bottom: 60px !important;
  }
  .md-m-6 {
    margin: 60px !important;
  }
  .md-mx-6 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .md-my-6 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .md-mt-6 {
    margin-top: 60px !important;
  }
  .md-mb-6 {
    margin-bottom: 60px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-6 {
    padding: 60px !important;
  }
  .sm-px-6 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .sm-py-6 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .sm-pt-6 {
    padding-top: 60px !important;
  }
  .sm-pb-6 {
    padding-bottom: 60px !important;
  }
  .sm-m-6 {
    margin: 60px !important;
  }
  .sm-mx-6 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .sm-my-6 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .sm-mt-6 {
    margin-top: 60px !important;
  }
  .sm-mb-6 {
    margin-bottom: 60px !important;
  }
}

.p-7 {
  padding: 70px !important;
}

.px-7 {
  padding-right: 70px !important;
  padding-left: 70px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.pt-7 {
  padding-top: 70px !important;
}

.pb-7 {
  padding-bottom: 70px !important;
}

.m-7 {
  margin: 70px !important;
}

.mx-7 {
  margin-right: 70px !important;
  margin-left: 70px !important;
}

.my-7 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.mt-7 {
  margin-top: 70px !important;
}

.mb-7 {
  margin-bottom: 70px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-7 {
    padding: 70px !important;
  }
  .lg-px-7 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .lg-py-7 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .lg-pt-7 {
    padding-top: 70px !important;
  }
  .lg-pb-7 {
    padding-bottom: 70px !important;
  }
  .lg-m-7 {
    margin: 70px !important;
  }
  .lg-mx-7 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .lg-my-7 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .lg-mt-7 {
    margin-top: 70px !important;
  }
  .lg-mb-7 {
    margin-bottom: 70px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-7 {
    padding: 70px !important;
  }
  .md-px-7 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .md-py-7 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .md-pt-7 {
    padding-top: 70px !important;
  }
  .md-pb-7 {
    padding-bottom: 70px !important;
  }
  .md-m-7 {
    margin: 70px !important;
  }
  .md-mx-7 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .md-my-7 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .md-mt-7 {
    margin-top: 70px !important;
  }
  .md-mb-7 {
    margin-bottom: 70px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-7 {
    padding: 70px !important;
  }
  .sm-px-7 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .sm-py-7 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .sm-pt-7 {
    padding-top: 70px !important;
  }
  .sm-pb-7 {
    padding-bottom: 70px !important;
  }
  .sm-m-7 {
    margin: 70px !important;
  }
  .sm-mx-7 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .sm-my-7 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .sm-mt-7 {
    margin-top: 70px !important;
  }
  .sm-mb-7 {
    margin-bottom: 70px !important;
  }
}

.p-8 {
  padding: 80px !important;
}

.px-8 {
  padding-right: 80px !important;
  padding-left: 80px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.pt-8 {
  padding-top: 80px !important;
}

.pb-8 {
  padding-bottom: 80px !important;
}

.m-8 {
  margin: 80px !important;
}

.mx-8 {
  margin-right: 80px !important;
  margin-left: 80px !important;
}

.my-8 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.mt-8 {
  margin-top: 80px !important;
}

.mb-8 {
  margin-bottom: 80px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-8 {
    padding: 80px !important;
  }
  .lg-px-8 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .lg-py-8 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .lg-pt-8 {
    padding-top: 80px !important;
  }
  .lg-pb-8 {
    padding-bottom: 80px !important;
  }
  .lg-m-8 {
    margin: 80px !important;
  }
  .lg-mx-8 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .lg-my-8 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .lg-mt-8 {
    margin-top: 80px !important;
  }
  .lg-mb-8 {
    margin-bottom: 80px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-8 {
    padding: 80px !important;
  }
  .md-px-8 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .md-py-8 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .md-pt-8 {
    padding-top: 80px !important;
  }
  .md-pb-8 {
    padding-bottom: 80px !important;
  }
  .md-m-8 {
    margin: 80px !important;
  }
  .md-mx-8 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .md-my-8 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .md-mt-8 {
    margin-top: 80px !important;
  }
  .md-mb-8 {
    margin-bottom: 80px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-8 {
    padding: 80px !important;
  }
  .sm-px-8 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .sm-py-8 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .sm-pt-8 {
    padding-top: 80px !important;
  }
  .sm-pb-8 {
    padding-bottom: 80px !important;
  }
  .sm-m-8 {
    margin: 80px !important;
  }
  .sm-mx-8 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .sm-my-8 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .sm-mt-8 {
    margin-top: 80px !important;
  }
  .sm-mb-8 {
    margin-bottom: 80px !important;
  }
}

.p-9 {
  padding: 90px !important;
}

.px-9 {
  padding-right: 90px !important;
  padding-left: 90px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.pt-9 {
  padding-top: 90px !important;
}

.pb-9 {
  padding-bottom: 90px !important;
}

.m-9 {
  margin: 90px !important;
}

.mx-9 {
  margin-right: 90px !important;
  margin-left: 90px !important;
}

.my-9 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}

.mt-9 {
  margin-top: 90px !important;
}

.mb-9 {
  margin-bottom: 90px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-9 {
    padding: 90px !important;
  }
  .lg-px-9 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .lg-py-9 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .lg-pt-9 {
    padding-top: 90px !important;
  }
  .lg-pb-9 {
    padding-bottom: 90px !important;
  }
  .lg-m-9 {
    margin: 90px !important;
  }
  .lg-mx-9 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .lg-my-9 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .lg-mt-9 {
    margin-top: 90px !important;
  }
  .lg-mb-9 {
    margin-bottom: 90px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-9 {
    padding: 90px !important;
  }
  .md-px-9 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .md-py-9 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .md-pt-9 {
    padding-top: 90px !important;
  }
  .md-pb-9 {
    padding-bottom: 90px !important;
  }
  .md-m-9 {
    margin: 90px !important;
  }
  .md-mx-9 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .md-my-9 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .md-mt-9 {
    margin-top: 90px !important;
  }
  .md-mb-9 {
    margin-bottom: 90px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-9 {
    padding: 90px !important;
  }
  .sm-px-9 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .sm-py-9 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .sm-pt-9 {
    padding-top: 90px !important;
  }
  .sm-pb-9 {
    padding-bottom: 90px !important;
  }
  .sm-m-9 {
    margin: 90px !important;
  }
  .sm-mx-9 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .sm-my-9 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .sm-mt-9 {
    margin-top: 90px !important;
  }
  .sm-mb-9 {
    margin-bottom: 90px !important;
  }
}

.p-10 {
  padding: 100px !important;
}

.px-10 {
  padding-right: 100px !important;
  padding-left: 100px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

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

.pb-10 {
  padding-bottom: 100px !important;
}

.m-10 {
  margin: 100px !important;
}

.mx-10 {
  margin-right: 100px !important;
  margin-left: 100px !important;
}

.my-10 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.mt-10 {
  margin-top: 100px !important;
}

.mb-10 {
  margin-bottom: 100px !important;
}

@media screen and (min-width: 992px) {
  .lg-p-10 {
    padding: 100px !important;
  }
  .lg-px-10 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .lg-py-10 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .lg-pt-10 {
    padding-top: 100px !important;
  }
  .lg-pb-10 {
    padding-bottom: 100px !important;
  }
  .lg-m-10 {
    margin: 100px !important;
  }
  .lg-mx-10 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .lg-my-10 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .lg-mt-10 {
    margin-top: 100px !important;
  }
  .lg-mb-10 {
    margin-bottom: 100px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .md-p-10 {
    padding: 100px !important;
  }
  .md-px-10 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .md-py-10 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .md-pt-10 {
    padding-top: 100px !important;
  }
  .md-pb-10 {
    padding-bottom: 100px !important;
  }
  .md-m-10 {
    margin: 100px !important;
  }
  .md-mx-10 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .md-my-10 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .md-mt-10 {
    margin-top: 100px !important;
  }
  .md-mb-10 {
    margin-bottom: 100px !important;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .sm-p-10 {
    padding: 100px !important;
  }
  .sm-px-10 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .sm-py-10 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .sm-pt-10 {
    padding-top: 100px !important;
  }
  .sm-pb-10 {
    padding-bottom: 100px !important;
  }
  .sm-m-10 {
    margin: 100px !important;
  }
  .sm-mx-10 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .sm-my-10 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .sm-mt-10 {
    margin-top: 100px !important;
  }
  .sm-mb-10 {
    margin-bottom: 100px !important;
  }
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.over-y-hide {
  overflow-y: hidden !important;
}

.over-x-hide {
  overflow-x: hidden !important;
}

.p-relative {
  position: relative;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase !important;
}

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

.rounded-pill {
  border-radius: 5rem;
}

.rounded-small {
  border-radius: 5px;
}

.rounded-med {
  border-radius: 10px;
}

.rounded-large {
  border-radius: 20px;
}

.rounded-circle {
  border-radius: 50%;
}

.w-100 {
  width: 100%;
}

.mw-100 {
  max-width: 100px;
}

.mw-200 {
  max-width: 200px;
}

.mw-300 {
  max-width: 300px;
}

.mw-400 {
  max-width: 400px;
}

.mw-500 {
  max-width: 500px;
}

.mw-600 {
  max-width: 600px;
}

.mw-700 {
  max-width: 700px;
}

.mw-800 {
  max-width: 800px;
}

.order-1 {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-2 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-3 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-4 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-5 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-6 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-7 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-8 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-9 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-10 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

@media screen and (max-width: 992px) {
  .md-hidden {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sm-hidden {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sm-min-hidden {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .xsm-hidden {
    display: none;
  }
}

.input-rounded {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.input-rounded label {
  margin-bottom: 2.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  bottom: calc(100% - 15px);
  padding: 2.5px 5px;
  border-radius: 5rem;
  color: #777;
  font-size: 14px;
}

.input-rounded.add-button input {
  padding: 0px 75px 0px 15px;
}

.input-rounded.add-icon input {
  padding: 0px 15px 0px 40px;
}

.input-rounded.add-icon span {
  position: absolute;
  left: 15px;
  bottom: 11px;
  font-size: 15px;
  color: #134276;
  -webkit-transition: .2s;
  transition: .2s;
}

.input-rounded.add-icon.add-button input {
  padding: 0px 75px 0px 40px;
}

.input-rounded input {
  border-radius: 5rem;
  border: 2px solid rgba(46, 48, 56, 0.1);
  outline: none;
  height: 40px;
  padding: 0px 15px 0px 15px;
  width: 100%;
  font-size: 14px;
  -webkit-transition: .2s;
  transition: .2s;
  color: #134276;
  -webkit-transition-property: -webkit-box-shadow border-color;
  transition-property: -webkit-box-shadow border-color;
  transition-property: box-shadow border-color;
  transition-property: box-shadow border-color, -webkit-box-shadow border-color;
}

.input-rounded input::-webkit-input-placeholder {
  color: #777;
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 14px;
}

.input-rounded input:-ms-input-placeholder {
  color: #777;
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 14px;
}

.input-rounded input::-ms-input-placeholder {
  color: #777;
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 14px;
}

.input-rounded input::placeholder {
  color: #777;
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 14px;
}

.input-rounded input:focus, .input-rounded input:active {
  border-color: rgba(46, 48, 56, 0.25);
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
}

.input-rounded input:focus ~ span, .input-rounded input:active ~ span {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.input-rounded input:focus ~ button, .input-rounded input:active ~ button {
  opacity: 1;
}

.input-rounded input:focus::-webkit-input-placeholder, .input-rounded input:active::-webkit-input-placeholder {
  opacity: .3;
}

.input-rounded input:focus:-ms-input-placeholder, .input-rounded input:active:-ms-input-placeholder {
  opacity: .3;
}

.input-rounded input:focus::-ms-input-placeholder, .input-rounded input:active::-ms-input-placeholder {
  opacity: .3;
}

.input-rounded input:focus::placeholder, .input-rounded input:active::placeholder {
  opacity: .3;
}

.input-rounded button {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #134276;
  color: white;
  height: 30px;
  border-radius: 5rem;
  padding: 0px 10px;
  z-index: 1;
  font-weight: bold;
  -webkit-transition: .2s;
  transition: .2s;
  opacity: .9;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.input-rounded textarea {
  resize: none;
  min-height: 100px;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 7px;
  font-size: 14px;
  color: #777;
  -webkit-transition: .3s;
  transition: .3s;
  border: 2px solid rgba(46, 48, 56, 0.1);
  outline: none;
}

.input-rounded textarea:active, .input-rounded textarea:focus {
  border-color: rgba(46, 48, 56, 0.25);
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
}

.input-rounded textarea:active::-webkit-input-placeholder, .input-rounded textarea:focus::-webkit-input-placeholder {
  opacity: .3;
}

.input-rounded textarea:active:-ms-input-placeholder, .input-rounded textarea:focus:-ms-input-placeholder {
  opacity: .3;
}

.input-rounded textarea:active::-ms-input-placeholder, .input-rounded textarea:focus::-ms-input-placeholder {
  opacity: .3;
}

.input-rounded textarea:active::placeholder, .input-rounded textarea:focus::placeholder {
  opacity: .3;
}

.input-rounded textarea::-webkit-input-placeholder {
  color: #777;
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 14px;
}

.input-rounded textarea:-ms-input-placeholder {
  color: #777;
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 14px;
}

.input-rounded textarea::-ms-input-placeholder {
  color: #777;
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 14px;
}

.input-rounded textarea::placeholder {
  color: #777;
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 14px;
}

.input-rounded .select {
  position: relative;
  border-radius: 5rem;
  border: 2px solid rgba(46, 48, 56, 0.1);
}

.input-rounded .select:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  z-index: 1;
  pointer-events: none;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: var(--oml-secondary);
  font-size: 24px;
  border-radius: 0px 5rem 5rem 0px;
}

.input-rounded .select select {
  -webkit-appearance: none;
  border: none;
  outline: none;
  color: var(--oml-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 15px;
  width: 100%;
  height: 40px;
  border-radius: 5rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.input-rounded .select select:focus {
  border-color: rgba(46, 48, 56, 0.25);
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
}

.input-rounded .select select option {
  max-width: 100%;
}

.accordion-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 800px;
}

@media (max-width: 992px) {
  .accordion-wrapper {
    padding: 0px;
  }
}

.accordion-wrapper .accordion-card {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
  width: 100%;
}

.accordion-wrapper .accordion-card h3 {
  font-size: 18px;
  color: #134276;
  margin: 0;
}

.accordion-wrapper .accordion-card p {
  color: #134276;
}

.accordion-wrapper .accordion-card .accordion-card-header {
  position: relative;
  background-color: #f7f8fd;
  padding: 5px 50px 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 50px;
}

.accordion-wrapper .accordion-card .accordion-card-header:hover {
  cursor: pointer;
}

.accordion-wrapper .accordion-card .accordion-card-header::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 24px;
  -webkit-transition: .3s;
  transition: .3s;
  color: #134276;
}

.accordion-wrapper .accordion-card .accordion-card-header[data-expanded="false"]::before {
  content: "\f0fe";
}

.accordion-wrapper .accordion-card .accordion-card-header[data-expanded="true"]::before {
  content: "\f146";
}

.accordion-wrapper .accordion-card .accordion-card-header .accordion-card-header_title {
  pointer-events: none;
}

.accordion-wrapper .accordion-card .accordion-card-header .accordion-card-header_icon {
  font-size: 24px;
  color: #134276;
  pointer-events: none;
}

.accordion-wrapper .accordion-card .accordion-card-content {
  overflow: hidden;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  height: 0px;
  opacity: 0;
  background-color: white;
}

.accordion-wrapper .accordion-card .accordion-card-content.show {
  height: auto;
  opacity: 1;
}

.accordion-wrapper .accordion-card .accordion-card-content .accordion-card-body {
  padding: 10px 20px 20px 20px;
}

@media (min-width: 1400px) {
  .accordion-wrapper .accordion-card h3 {
    font-size: 20px;
  }
  .accordion-wrapper .accordion-card .card-body p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .accordion-wrapper .accordion-card h2 {
    font-size: 14px;
  }
}

.itemSubMenu-wrapper {
  position: relative;
}

.itemSubMenu-wrapper .subNav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.itemSubMenu-wrapper .subNav-link span {
  line-height: 1;
  font-size: 16px;
  pointer-events: none;
  margin-left: 7.5px;
}

.itemSubMenu-wrapper .subNav-link img {
  border-radius: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 2px;
  pointer-events: none;
}

.itemSubMenu-wrapper .subNav-items {
  position: absolute;
  top: calc(100%);
  min-width: 200px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

.itemSubMenu-wrapper .subNav-items.float-items {
  top: calc(100% + 15px);
  border-radius: 5px;
}

.itemSubMenu-wrapper .subNav-items.from-right {
  right: 0;
}

.itemSubMenu-wrapper .subNav-items.from-left {
  left: 0;
}

.itemSubMenu-wrapper .subNav-items.from-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.itemSubMenu-wrapper .subNav-items:not(.show) {
  max-height: 0;
  padding: 0 5px;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transition-property: max-height padding;
  transition-property: max-height padding;
  overflow: hidden;
}

.itemSubMenu-wrapper .subNav-items:not(.show) > a, .itemSubMenu-wrapper .subNav-items:not(.show) .subNav-item {
  opacity: 0;
}

.itemSubMenu-wrapper .subNav-items.show {
  max-height: 1000px;
  padding: 5px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  -webkit-transition-property: max-height padding;
  transition-property: max-height padding;
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
  overflow: visible;
  border-radius: 10px;
}

.itemSubMenu-wrapper .subNav-items.show > a {
  opacity: 1;
}

.itemSubMenu-wrapper .subNav-items .subNav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  color: #134276;
  -webkit-transition: .2s;
  transition: .2s;
  border-radius: 5px;
  text-decoration: none;
}

.itemSubMenu-wrapper .subNav-items .subNav-item:not(.subNav-item-dropdown) {
  padding: 10px;
}

.itemSubMenu-wrapper .subNav-items .subNav-item:hover {
  background-color: rgba(46, 48, 56, 0.1);
}

.itemSubMenu-wrapper .subNav-items .subNav-item > img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  pointer-events: none;
}

.itemSubMenu-wrapper .subNav-items .subNav-item .subNav-item-icon {
  width: 15px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.itemSubMenu-wrapper .subNav-items .subNav-item .subNav-item-icon img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 20px;
  height: 20px;
  pointer-events: none;
  border-radius: 2px;
}

.itemSubMenu-wrapper .subNav-items .subNav-item .subNav-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.logout-item {
  margin-top: 5px;
  position: relative;
  color: #E83658;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.logout-item:hover {
  background-color: #E83658;
  color: white;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.logout-item:hover::before {
  opacity: 0;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.logout-item::before {
  content: '';
  height: 1px;
  width: 100%;
  background-color: rgba(46, 48, 56, 0.1);
  position: absolute;
  bottom: 100%;
  left: 0%;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.subNav-item-dropdown {
  position: relative;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.subNav-item-dropdown .subNav-item-dropdown-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  color: #134276;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.subNav-item-dropdown .subNav-item-dropdown-link span {
  pointer-events: none;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.subNav-item-dropdown .subNav-item-dropdown-list {
  position: absolute;
  right: calc(100% + 10px);
  background-color: white;
  -webkit-box-shadow: 0px 1px 3px -0.5px rgba(46, 48, 56, 0.5);
          box-shadow: 0px 1px 3px -0.5px rgba(46, 48, 56, 0.5);
  padding: 5px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  min-width: 100px;
  max-height: 500px;
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: .2s;
  transition: .2s;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.subNav-item-dropdown .subNav-item-dropdown-list.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.itemSubMenu-wrapper .subNav-items .subNav-item.subNav-item-dropdown .subNav-item-dropdown-list a {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.subNav-item-dropdown .subNav-item-dropdown-list a img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 50%;
}

.itemSubMenu-wrapper .subNav-items .subNav-item.subNav-item-dropdown .subNav-item-dropdown-list a:hover {
  background-color: rgba(46, 48, 56, 0.1);
}

.itemSubMenu-wrapper.mobile-subNav .subNav-items {
  position: relative;
  max-width: 100%;
}

.btn {
  border-radius: 5rem;
  border: 0;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transition-property: background-color, color, -webkit-filter, -webkit-box-shadow;
  transition-property: background-color, color, -webkit-filter, -webkit-box-shadow;
  transition-property: background-color, filter, box-shadow, color;
  transition-property: background-color, filter, box-shadow, color, -webkit-filter, -webkit-box-shadow;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  outline: none;
  padding: .5rem 2rem;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  line-height: 24px;
}

.btn span {
  font-weight: 600;
}

.btn:hover {
  -webkit-box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 50px rgba(31, 66, 114, 0.1);
}

.btn-xsmall {
  height: 2.4rem;
  min-height: 2.4rem;
  max-height: 2.4rem;
  font-size: 1.2rem;
}

.btn-small {
  height: 3rem;
  min-height: 3rem;
  max-height: 3rem;
  font-size: 1.4rem;
}

.btn-med {
  height: 3.6rem;
  min-height: 3.6rem;
  max-height: 3.6rem;
  font-size: 1.4rem;
}

.btn-large {
  height: 4.4rem;
}

.btn-extraLarge {
  height: 5.6rem;
}

@media screen and (max-width: 768px) {
  .sm-btn-extraLarge {
    height: 5.6rem;
  }
}

.btn-primary-oml, .btn-secondary-oml, .btn-warning-oml, .btn-dark-oml {
  color: white !important;
  text-shadow: 0px 1px 1px rgba(46, 48, 56, 0.25);
}

.btn-info-oml, .btn-light-oml {
  color: black !important;
}

.btn-primary-oml:hover {
  background-color: #134276;
}

.btn-secondary-oml:hover {
  background-color: #e73657;
  -webkit-box-shadow: 0px 0px 0px 5px rgba(231, 54, 87, 0.2);
          box-shadow: 0px 0px 0px 5px rgba(231, 54, 87, 0.2);
}

.btn-info-oml:hover {
  background-color: #1F4272;
}

.btn-warning-oml:hover {
  background-color: #E99B05;
}

.btn-light-oml:hover {
  background-color: #f7f8fd;
}

.btn-dark-oml:hover {
  background-color: black;
}

.btn-outline-oml {
  border: 2px solid #134276;
  color: #134276;
}

.text-primary-oml {
  color: #134276;
}

.bg-primary-oml, .btn-primary-oml {
  background-color: #134276;
}

.bg-secondary-oml, .btn-secondary-oml {
  background-color: #e73657;
}

.bg-info-oml, .btn-info-oml {
  background-color: #1F4272;
}

.bg-warning-oml, .btn-warning-oml {
  background-color: #E99B05;
}

.bg-light-oml, .btn-light-oml-oml {
  background-color: #f7f8fd;
}

.bg-dark-oml, .btn-dark-oml {
  background-color: black;
}

.waves::before, .waves::after {
  content: '';
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.waves::before {
  z-index: -2;
  background-image: url("/static/images/home/wave-2.svg");
}

.waves::after {
  z-index: -1;
  background-image: url("/static/images/home/wave-3.svg");
}

.contentTabs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 65rem;
  padding: 2rem 2rem 4rem 2rem;
  background-color: white;
  border-radius: 20px;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
}

@media screen and (max-width: 992px) {
  .contentTabs-wrapper.tabStyles .contentTabs-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .contentTabs-wrapper.tabStyles .contentTabs-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

@media screen and (max-width: 450px) {
  .contentTabs-wrapper.tabStyles .contentTabs-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.contentTabs-wrapper .contentTabs-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

@media screen and (max-width: 450px) {
  .contentTabs-wrapper .contentTabs-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.contentTabs-wrapper .contentTabs-tab {
  padding: 1rem 2rem;
  border: 1px solid rgba(31, 66, 114, 0.1);
  border-radius: 10px;
  height: 4.4rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #134276;
  -webkit-transition: -webkit-box-shadow .2s ease-in-out;
  transition: -webkit-box-shadow .2s ease-in-out;
  transition: box-shadow .2s ease-in-out;
  transition: box-shadow .2s ease-in-out, -webkit-box-shadow .2s ease-in-out;
  white-space: nowrap;
}

.contentTabs-wrapper .contentTabs-tab.active {
  background-color: #538bc830;
}

.contentTabs-wrapper .contentTabs-tab:hover:not(.active) {
  -webkit-box-shadow: 0px 0px 20px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 0px 20px rgba(31, 66, 114, 0.1);
}

.contentTabs-wrapper .contentTabs-tab .icon {
  margin-right: 1rem;
  pointer-events: none;
}

.contentTabs-wrapper .contentTabs-content {
  position: relative;
  overflow: hidden;
}

.contentTabs-wrapper .contentTabs-card {
  left: 0px;
  top: 0px;
}

.contentTabs-wrapper .contentTabs-card:not(.active) {
  opacity: 0;
  visibility: 0;
  position: absolute;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0s, -webkit-transform 0s;
  transition: opacity 0s, -webkit-transform 0s;
  transition: opacity 0s, transform 0s;
  transition: opacity 0s, transform 0s, -webkit-transform 0s;
}

.contentTabs-wrapper .contentTabs-card.active {
  position: relative;
  opacity: 1;
  visibility: 1;
  -webkit-transition: opacity .4s, -webkit-transform 0s;
  transition: opacity .4s, -webkit-transform 0s;
  transition: opacity .4s, transform 0s;
  transition: opacity .4s, transform 0s, -webkit-transform 0s;
}

@font-face {
  font-family: 'onemasterlink-icon';
  src: url("/static/libs/icons/onemasterlink-icon.eot?c26nmi");
  src: url("/static/libs/icons/onemasterlink-icon.eot?c26nmi#iefix") format("embedded-opentype"), url("/static/libs/icons/onemasterlink-icon.ttf?c26nmi") format("truetype"), url("/static/libs/icons/onemasterlink-icon.woff?c26nmi") format("woff"), url("/static/libs/icons/onemasterlink-icon.svg?c26nmi#onemasterlink-icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'onemasterlink-icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-arrow-left:before {
  content: "\e900";
}

.ico-arrow-right:before {
  content: "\e901";
}

.ico-arrow-long-left:before {
  content: "\e902";
}

.ico-arrow-long-right:before {
  content: "\e903";
}

.ico-caret-down:before {
  content: "\e904";
}

.ico-caret-up:before {
  content: "\e905";
}

.ico-bars:before {
  content: "\e906";
}

.ico-bars-alt:before {
  content: "\e907";
}

.ico-arrow-text:before {
  content: "\e908";
}

.ico-bars-right:before {
  content: "\e909";
}

.ico-at-circle:before {
  content: "\e90a";
}

.ico-bars-circle:before {
  content: "\e90b";
}

.ico-dolar-circle:before {
  content: "\e90c";
}

.ico-star-circle:before {
  content: "\e90d";
}

.ico-link-circle:before {
  content: "\e90e";
}

.ico-t-circle:before {
  content: "\e90f";
}

.ico-envelop-circle:before {
  content: "\e910";
}

.ico-location-circle:before {
  content: "\e911";
}

.ico-user-circle:before {
  content: "\e912";
}

.ico-language-circle:before {
  content: "\e913";
}

.ico-face-smile:before {
  content: "\e914";
}

.ico-analytics:before {
  content: "\e915";
}

.ico-minus-circle:before {
  content: "\e916";
}

.ico-plus-circle:before {
  content: "\e917";
}

.ico-times-circle:before {
  content: "\e918";
}

.ico-chart-pie:before {
  content: "\e919";
}

.ico-chart-line-circle:before {
  content: "\e91a";
}

.ico-check:before {
  content: "\e91b";
}

.ico-check-circle-alt:before {
  content: "\e91c";
}

.ico-cog:before {
  content: "\e92b";
}

.ico-puzzle-piece:before {
  content: "\e91e";
}

.ico-puzzle-piece-alt:before {
  content: "\e91f";
}

.ico-times:before {
  content: "\e920";
}

.ico-times-alt:before {
  content: "\e921";
}

.ico-grip-vertical:before {
  content: "\e923";
}

.ico-ellipsis-h:before {
  content: "\e924";
}

.ico-earnings:before {
  content: "\e925";
}

.ico-eye:before {
  content: "\e926";
}

.ico-eye-slash:before {
  content: "\e927";
}

.ico-eye-slash-alt:before {
  content: "\e928";
}

.ico-eye-droppper:before {
  content: "\e929";
}

.ico-home-alt:before {
  content: "\e92a";
}

.ico-globe:before {
  content: "\e944";
}

.ico-globe-world:before {
  content: "\e92c";
}

.ico-filter:before {
  content: "\e92d";
}

.ico-hand:before {
  content: "\e92e";
}

.ico-infinite:before {
  content: "\e92f";
}

.ico-location:before {
  content: "\e930";
}

.ico-picture-alt:before {
  content: "\e931";
}

.ico-quotes-left:before {
  content: "\e932";
}

.ico-search-alt:before {
  content: "\e933";
}

.ico-share:before {
  content: "\e934";
}

.ico-shop:before {
  content: "\e935";
}

.ico-sign-out:before {
  content: "\e936";
}

.ico-steps:before {
  content: "\e937";
}

.ico-support:before {
  content: "\e938";
}

.ico-t:before {
  content: "\e939";
}

.ico-copy:before {
  content: "\e93a";
}

.ico-trash:before {
  content: "\e93b";
}

.ico-link:before {
  content: "\e93c";
}

.ico-users:before {
  content: "\e93d";
}

.ico-oml-logo:before {
  content: "\e93e";
}

.ico-facebook-alt:before {
  content: "\e93f";
  color: #1877f2;
}

.ico-google-color .path1:before {
  content: "\e940";
  color: #4285f4;
}

.ico-google-color .path2:before {
  content: "\e941";
  margin-left: -1em;
  color: #34a853;
}

.ico-google-color .path3:before {
  content: "\e942";
  margin-left: -1em;
  color: #fbbc05;
}

.ico-google-color .path4:before {
  content: "\e943";
  margin-left: -1em;
  color: #ea4335;
}

.ico-phone:before {
  content: "\e945";
}

.ico-plus:before {
  content: "\e946";
}

.ico-wallet:before {
  content: "\e947";
}

.ico-alert-alt:before {
  content: "\e91d";
}

.ico-times-circle-alt:before {
  content: "\e922";
}

.ico-info-circle-alt:before {
  content: "\e948";
}

.ico-theme:before {
  content: "\e949";
}

.ico-edit:before {
  content: "\e94a";
}

.ico-camera:before {
  content: "\e94b";
}

.ico-zoom-in:before {
  content: "\e94c";
}

.ico-zoom-out:before {
  content: "\e94d";
}

.header-container {
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 998;
  -webkit-transition: .3s linear;
  transition: .3s linear;
}

.header-container .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 6rem;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0rem 10rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.header-container .header-wrapper .header-brand {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.header-container .header-wrapper .header-brand a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Fredoka One", sans-serif;
  font-size: 1.8rem;
  color: #134276;
  gap: .7rem;
  font-weight: 500;
}

.header-container .header-wrapper .header-brand a .icon {
  font-size: 3.5rem;
  color: #e73657;
}

.header-container .header-wrapper .header-brand a img {
  width: 16rem;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .header-container .header-wrapper .header-brand a {
    font-size: 1.6rem;
  }
}

.header-container .header-wrapper .header-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.header-container .header-wrapper .header-navigation .navigation-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 1.4rem;
  height: 3.6rem;
}

.header-container .header-wrapper .header-navigation .navigation-link.sign-in {
  background-color: #e73657;
  color: white;
  border-radius: 5rem;
  padding: .5rem 2rem;
  border: 2px solid black;
  min-width: 9.6rem;
  font-weight: 600;
  line-height: -1;
}

@media screen and (max-width: 768px) {
  .header-container .header-wrapper .header-navigation .navigation-link.sign-in {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.header-container .header-wrapper .header-navigation .navigation-link.sign-up {
  background-color: white;
  color: #e73657;
  border-radius: 5rem;
  padding: 5px 2rem;
  border: 1px solid white;
  font-weight: 600;
  min-width: 9.6rem;
  line-height: 1;
}

.header-container .header-wrapper .header-navigation .navigation-link:hover {
  border-color: transparent;
}

.header-container .header-wrapper .header-navigation .dropdown-wrapper .select-lang > .icon,
.header-container .header-wrapper .header-navigation .dropdown-wrapper .select-lang span {
  pointer-events: none;
}

.header-container .header-wrapper .header-navigation .dropdown-wrapper .select-lang > .icon {
  font-size: 1.8rem;
}

.header-container .header-wrapper .header-navigation .dropdown-wrapper .select-lang span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
}

.header-container .header-wrapper .header-navigation .dropdown-wrapper .select-lang span > .icon {
  font-size: 1.2rem;
  margin-left: .5rem;
}

@media screen and (max-width: 768px) {
  .header-container .header-wrapper .header-navigation .dropdown-wrapper {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header-container .header-wrapper .header-navigation:not(.dashboard-navigation) .navigation-link:not(.select-lang) {
    display: none;
  }
}

.header-container .header-wrapper .header-navigation.dashboard-navigation {
  height: 6rem;
  gap: 0rem;
}

.header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link {
  width: 5rem;
  height: 100%;
  position: relative;
}

.header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link::before {
  content: '';
  height: 3px;
  width: 100%;
  background-color: transparent;
  position: absolute;
  bottom: 0px;
  left: 0px;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link .icon {
  font-size: 2rem;
}

.header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link:hover::before {
  background-color: #e73657;
}

.header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link.active .icon {
  color: #e73657;
}

.header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link.active svg path {
  fill: #e73657;
}

.header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link.active::before {
  background-color: #e73657;
}

.header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link.appearance svg {
  margin-top: -7px;
}

.header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link svg {
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 768px) {
  .header-container .header-wrapper .header-navigation.dashboard-navigation {
    gap: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 50px rgba(31, 66, 114, 0.1);
            box-shadow: 0px 0px 50px rgba(31, 66, 114, 0.1);
    -ms-flex-pack: distribute;
        justify-content: space-around;
    border-radius: 2rem 2rem 0px 0px;
  }
  .header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link .icon {
    font-size: 2.8rem;
  }
  .header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link svg {
    width: 30px;
    height: 30px;
  }
  .header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link.iphone-style .icon,
  .header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link.iphone-style img {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .header-container .header-wrapper .header-navigation.dashboard-navigation .navigation-link .icon {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 1200px) {
  .header-container .header-wrapper {
    padding: 0rem 5rem;
  }
}

@media screen and (max-width: 768px) {
  .header-container .header-wrapper {
    padding: 0rem 2rem;
  }
}

.header-container:not(.header-transparent) {
  -webkit-box-shadow: 0px -1px 2px 2px rgba(46, 48, 56, 0.25);
          box-shadow: 0px -1px 2px 2px rgba(46, 48, 56, 0.25);
  background-color: white;
}

.header-container:not(.header-transparent) .header-wrapper {
  height: 6rem;
}

.header-container:not(.header-transparent) .header-wrapper .header-navigation .navigation-link {
  -webkit-transition: .3s linear;
  transition: .3s linear;
}

.header-container:not(.header-transparent) .header-wrapper .header-navigation .navigation-link.sign-in {
  background-color: white;
  color: #134276;
  border-radius: 5rem;
  padding: .5rem 2rem;
  border: 2px solid #134276;
  font-weight: 600;
}

.header-container:not(.header-transparent) .header-wrapper .header-navigation .navigation-link.sign-up {
  background-color: #e73657;
  color: white;
  border-radius: 5rem;
  padding: 5px 2rem;
  border: 1px solid #e73657;
  font-weight: 400;
}

.header-container:not(.header-transparent) .header-wrapper .header-navigation .dropdown-wrapper .select-lang > .icon,
.header-container:not(.header-transparent) .header-wrapper .header-navigation .dropdown-wrapper .select-lang span {
  color: #134276;
}

.header-container:not(.header-transparent) .header-wrapper .header-navigation .dropdown-wrapper .select-lang > .icon {
  color: #134276;
}

.header-container:not(.header-transparent) .header-wrapper .header-navigation .dropdown-wrapper .select-lang span > .icon {
  color: #134276;
}

.header-container.header-transparent {
  background-color: transparent;
}

.header-container.header-transparent .header-wrapper {
  height: 8rem;
}

.header-container.header-transparent .header-wrapper .header-navigation .navigation-link.sign-in {
  background-color: #e73657;
  color: white;
  border-radius: 5rem;
  padding: .5rem 2rem;
  border: 2px solid white;
  font-weight: 600;
}

.header-container.header-transparent .header-wrapper .header-navigation .navigation-link.sign-up {
  border-radius: 5rem;
  padding: 5px 2rem;
  border: 1px solid white;
  font-weight: 600;
}

.header-container.header-transparent .header-wrapper .header-navigation .dropdown-wrapper .select-lang > .icon,
.header-container.header-transparent .header-wrapper .header-navigation .dropdown-wrapper .select-lang span {
  color: white;
}

.header-container.header-transparent .header-wrapper .header-navigation .dropdown-wrapper .select-lang > .icon {
  color: white;
}

.header-container.header-transparent .header-wrapper .header-navigation .dropdown-wrapper .select-lang span > .icon {
  color: white;
}

.menu-profile {
  width: 50px;
  height: 100%;
  position: relative;
  display: -ms-grid;
  display: grid;
  place-content: center;
  border-radius: 5rem;
  overflow: hidden;
}

.menu-profile .menu-profile-image {
  width: 35px;
  height: 35px;
  border: 2px solid #134276;
  padding: 2px;
  border-radius: 5rem;
}

.menu-profile .menu-profile-image img {
  border-radius: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu-profile:hover {
  cursor: pointer;
}

.menu-profile:hover img {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(46, 48, 56, 0.25);
          box-shadow: 0px 0px 10px 1px rgba(46, 48, 56, 0.25);
}

.menu-profile::before {
  display: none;
}

.menu-profile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s;
  transition: .2s;
}

.menu-profile.active img {
  border: 2px solid #134276;
}

.sidebarMenu-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  background-color: transparent;
  z-index: 999;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  -webkit-transition: .2s;
  transition: .2s;
  pointer-events: none;
}

.sidebarMenu-container .sidebarMenu-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  max-width: 35rem;
  top: 0px;
  right: -100%;
  background-color: white;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

@media screen and (max-width: 992px) {
  .sidebarMenu-container .sidebarMenu-wrapper {
    max-width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .sidebarMenu-container .sidebarMenu-wrapper {
    max-width: 100%;
  }
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-close {
  position: absolute;
  top: 2rem;
  left: 1rem;
  height: 4rem;
  width: 4rem;
  border-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .2s;
  transition: .2s;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-close .icon {
  color: #134276;
  font-size: 2.4rem;
  pointer-events: none;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-close img {
  pointer-events: none;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-close:hover {
  -webkit-box-shadow: 0px 1px 3px -0.5px rgba(46, 48, 56, 0.5);
          box-shadow: 0px 1px 3px -0.5px rgba(46, 48, 56, 0.5);
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 3rem;
  -webkit-box-shadow: 0px 30px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 30px 50px rgba(31, 66, 114, 0.1);
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-image {
  width: 8rem;
  height: 8rem;
  border: 3.5px solid #134276;
  padding: .2rem;
  border-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 7.5px 1px rgba(46, 48, 56, 0.25);
          box-shadow: 0px 0px 7.5px 1px rgba(46, 48, 56, 0.25);
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5rem;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-username p {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Fredoka One", sans-serif;
  color: #134276;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-copyLink {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .5rem 1rem;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-copyLink p {
  margin-right: 1rem;
  font-size: 1.4rem;
  color: #666666;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-copyLink .copy-btn {
  min-width: 3.2rem;
  height: 3.2rem;
  background-color: #e73657;
  border-radius: 7.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-copyLink .copy-btn .icon {
  font-size: 1.8rem;
  color: white;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-copyLink .copy-btn img {
  width: 2.2rem;
  height: 2.2rem;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-metrics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  width: 100%;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-metrics .userInfo-metric {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  border: 1px solid rgba(46, 48, 56, 0.1);
  border-radius: 20px;
  width: 100%;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-metrics .userInfo-metric .metrics-count {
  font-size: 1.8rem;
  color: #134276;
  font-family: "Fredoka One", sans-serif;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-userInfo .userInfo-metrics .userInfo-metric .metrics-info {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #666666;
  font-weight: 500;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation {
  padding: 3rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0rem;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link .navigation-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link .navigation-text .icon {
  font-size: 2rem;
  color: #134276;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link .navigation-text img,
.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link .navigation-text .icon {
  margin-right: 1rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link .navigation-text span {
  color: black;
  font-weight: 500;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link .navigation-info .comming-soon {
  padding: .2rem 1rem;
  border: 1px solid #e73657;
  color: #e73657;
  border-radius: 5rem;
  line-height: 0;
  font-weight: 600;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link:hover .navigation-text img,
.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link:hover .navigation-text .icon {
  margin-right: 2rem;
  color: #e73657;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-content .sidebarMenu-navigation .navigation-link:hover .navigation-text span {
  color: #e73657;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer {
  padding: 2rem;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer .sidebarMenu-logout {
  border-top: 1px solid rgba(46, 48, 56, 0.1);
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer .sidebarMenu-logout .logout-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 1rem;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer .sidebarMenu-logout .logout-btn .icon {
  font-size: 1.8rem;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer .sidebarMenu-logout .logout-btn img,
.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer .sidebarMenu-logout .logout-btn .icon {
  margin-right: 1rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer .sidebarMenu-logout .logout-btn span {
  color: black;
  font-weight: 500;
  -webkit-transition: .2s;
  transition: .2s;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer .sidebarMenu-logout .logout-btn:hover span {
  color: #e73657;
}

.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer .sidebarMenu-logout .logout-btn:hover img,
.sidebarMenu-container .sidebarMenu-wrapper .sidebarMenu-footer .sidebarMenu-logout .logout-btn:hover .icon {
  margin-right: 2rem;
  color: #e73657;
}

.sidebarMenu-container.show {
  background-color: rgba(19, 66, 118, 0.2);
  right: 0px;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.sidebarMenu-container.show .sidebarMenu-wrapper {
  right: 0px;
}

.footer-container {
  width: 100%;
  position: relative;
}

.footer-container .footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  min-height: 6rem;
  margin: 0 auto;
  padding: 0px 2rem;
  border-top: 1px solid rgba(46, 48, 56, 0.25);
}

@media screen and (max-width: 768px) {
  .footer-container .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0rem;
  }
  .footer-container .footer-wrapper .footer-links {
    margin-bottom: 1rem;
  }
}

.footer-container .footer-wrapper .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-container .footer-wrapper .footer-links a {
  color: #134276;
  padding: 5px 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}

.footer-container .footer-wrapper .footer-copyright span {
  font-size: 1.4rem;
  color: #666666;
  font-weight: 300;
}

.footer-container.home {
  overflow: hidden;
}

.footer-container.home .footer-wrapper {
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: none;
  padding: 8rem 2rem 2rem;
}

.footer-container.home .icon {
  color: #e73657;
  font-size: 5rem;
  line-height: .7;
}

.footer-container.home .footer-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Fredoka One", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #134276;
  padding-bottom: 1.4rem;
}

.footer-container.home .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 630px;
  border-top: 1px solid rgba(46, 48, 56, 0.25);
  padding-top: 1rem;
}

.footer-container.home .footer-links a {
  font-size: 1.6rem;
  font-weight: 500;
}

.footer-container.home .footer-copyright {
  padding-top: .5rem;
}

.footer-container.home .footer-copyright span {
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .footer-container.home .footer-wrapper {
    padding: 8rem 0 2rem;
  }
}

.styles-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  width: 100%;
  gap: 2rem;
}

.styles-wrapper .styles-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.styles-wrapper .styles-header p {
  font-family: "Fredoka One", sans-serif;
  color: #134276;
}

.styles-wrapper .styles-header .swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-right: 1.5rem;
}

.styles-wrapper .styles-header .swiper-navigation .icon {
  font-size: 2rem;
  color: #134276;
}

.styles-wrapper .themes-list {
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  background-color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.styles-wrapper .themes-list::-webkit-scrollbar {
  width: 5px;
  -webkit-appearance: none;
}

.styles-wrapper .themes-list::-webkit-scrollbar-track {
  background-color: rgba(46, 48, 56, 0.05);
  border-radius: 50px;
}

.styles-wrapper .themes-list::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #134276;
}

.styles-wrapper .themes-list::-webkit-scrollbar-thumb:hover {
  background: rgba(46, 48, 56, 0.5);
}

.styles-wrapper .custom-styles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 3rem;
  background-color: white;
}

.style-card-wrapper {
  border: 1px solid #EBEBEB;
  width: 100%;
  max-width: 18rem;
  min-width: 18rem;
  height: 27rem;
  border-radius: 20px;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  gap: 1rem;
}

.style-card-wrapper .style-name {
  font-weight: 600;
  color: #134276;
  width: 100%;
  white-space: nowrap;
}

.style-card-wrapper label.style-card-preview {
  width: 11rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.style-card-wrapper label.style-card-preview:hover {
  cursor: pointer;
}

.style-card-wrapper label.style-card-preview .style-background {
  height: 100%;
  width: 100%;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  z-index: 0;
}

.style-card-wrapper label.style-card-preview .style-background .background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  pointer-events: none;
  overflow: hidden;
}

.style-card-wrapper label.style-card-preview .style-background .background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
  outline: none;
}

.style-card-wrapper label.style-card-preview .style-background .style-linksPreview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: .5rem;
  pointer-events: none;
}

.style-card-wrapper label.style-card-preview .style-background .style-linksPreview span {
  width: calc(100% - 3rem);
  height: 2rem;
  background-color: white;
  border-radius: 5px;
  pointer-events: none;
  -webkit-filter: drop-shadow(0px 0px 1px rgba(46, 48, 56, 0.25));
          filter: drop-shadow(0px 0px 1px rgba(46, 48, 56, 0.25));
}

.style-card-wrapper label.style-card-preview .style-background.image-overlay .style-linksPreview {
  display: none;
}

.style-card-wrapper label.style-card-preview .style-background.image-overlay .background-image {
  background-color: #ffffff !important;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 175, 240, 0.3);
          box-shadow: 0px 5px 10px rgba(0, 175, 240, 0.3);
}

.style-card-wrapper label.style-card-preview .style-background.image-overlay::before {
  content: '';
  position: absolute;
  width: 8rem;
  height: 8rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.5);
  background-image: url("/static/images/upload-image.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(46, 48, 56, 0.01);
  -webkit-filter: drop-shadow(0px 0px 2px rgba(46, 48, 56, 0.25));
          filter: drop-shadow(0px 0px 2px rgba(46, 48, 56, 0.25));
}

.style-card-wrapper:not(.row-options) .style-card-options {
  min-width: 3.2rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  z-index: 0;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector .sp-replacer {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0px;
  -webkit-transition: .2s;
  transition: .2s;
  background-color: white;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector .sp-replacer .sp-preview {
  height: 100%;
  width: 100%;
  border: none;
  background: transparent;
  position: relative;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector .sp-replacer .sp-preview::after {
  content: "\e929";
  font-family: 'onemasterlink-icon';
  position: absolute;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: white;
  font-size: 1.6rem;
  pointer-events: none;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector .sp-replacer .sp-preview .sp-preview-inner {
  border-radius: 5px;
  border: 2px solid white;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector .sp-replacer .sp-dd {
  display: none;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector label {
  position: absolute;
  top: 0px;
  background: #e73657;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector label .icon {
  pointer-events: none;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector.active label, .style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector.edited label {
  background: transparent !important;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector.active label .icon, .style-card-wrapper:not(.row-options) .style-card-options .style-card-option.color-selector.edited label .icon {
  display: none !important;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option label {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  border: 2px solid white;
  background: white;
  -webkit-box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  position: relative;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option label::before {
  content: '';
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-color: transparent;
  height: 12px;
  width: 12px;
  border-radius: 5rem;
  border: 2px solid transparent;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option label:hover {
  cursor: pointer;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option > input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: 0;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option > input[type="radio"]:checked ~ label {
  -webkit-box-shadow: 0px 5px 10px rgba(0, 175, 240, 0.3);
          box-shadow: 0px 5px 10px rgba(0, 175, 240, 0.3);
  border-color: white;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option > input[type="radio"]:checked ~ label::before {
  background-color: #e73657;
  border-color: white;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option input[type="file"] {
  display: none;
}

.style-card-wrapper:not(.row-options) .style-card-options .style-card-option input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

.style-card-wrapper.row-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.style-card-wrapper.row-options .style-card-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 1rem;
}

.style-card-wrapper.row-options .style-card-options .style-card-option {
  width: 100%;
  height: 2.5rem;
}

.style-card-wrapper.row-options .style-card-options .style-card-option label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.style-card-wrapper.row-options .style-card-options .style-card-option label:hover {
  cursor: pointer;
}

.style-card-wrapper.row-options .style-card-options .style-card-option label.fill-style {
  background-color: #00b0f0;
}

.style-card-wrapper.row-options .style-card-options .style-card-option label.outline-style {
  border: 2px solid #00b0f0;
}

.style-card-wrapper.row-options .style-card-options .style-card-option label::before {
  content: '';
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-color: transparent;
  height: 12px;
  width: 12px;
  border-radius: 5rem;
  border: 2px solid transparent;
}

.style-card-wrapper.row-options .style-card-options .style-card-option > input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.style-card-wrapper.row-options .style-card-options .style-card-option > input[type="radio"]:checked ~ label {
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 176, 240, 0.5);
          box-shadow: 0px 0px 5px 1px rgba(0, 176, 240, 0.5);
}

.style-card-wrapper.row-options .style-card-options .style-card-option > input[type="radio"]:checked ~ label::before {
  background-color: #e73657;
  border-color: white;
}

.style-card-wrapper.custom-style input[type="file"] {
  display: none;
}

.style-card-wrapper.custom-style input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

.style-card-wrapper:not(.custom-style).active {
  -webkit-box-shadow: 0px 7px 10px 5px #538bc830;
          box-shadow: 0px 7px 10px 5px #538bc830;
}

.style-card-wrapper:not(.active):not(.custom-style) .style-card-options .style-card-option label {
  -webkit-box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
  border-color: white !important;
}

.style-card-wrapper:not(.active):not(.custom-style) .style-card-options .style-card-option label::before {
  display: none;
}

.style-card-wrapper > input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.style-card-wrapper > input[type="radio"]:checked ~ label.style-card-preview .style-background {
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 176, 240, 0.5);
          box-shadow: 0px 0px 5px 1px rgba(0, 176, 240, 0.5);
}

.style-card-wrapper > input[type="radio"]:checked ~ .style-card-options .style-card-option > input[type="radio"]:checked ~ label::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.style-card-wrapper > input[type="radio"]:not(:checked) ~ .style-card-options .style-card-option label {
  -webkit-box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
  border-color: white !important;
}

.custom-font {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  border: 1px solid #EBEBEB;
  border-radius: 20px;
  padding: 1.5rem;
}

.custom-font .custom-font-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-font .custom-font-header p {
  font-weight: 600;
  color: #134276;
}

.custom-font .custom-font-header .font-color-selector {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
}

.custom-font .custom-font-header .font-color-selector label {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  position: absolute;
  top: 0px;
  left: 0px;
  border: 2px solid white;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  cursor: pointer;
}

.custom-font .custom-font-header .font-color-selector label .icon {
  color: white;
  pointer-events: none;
}

.custom-font .custom-font-header .font-color-selector input {
  opacity: 0;
  visibility: hidden;
}

.custom-font .custom-font-header .font-color-selector .sp-replacer {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0px;
  -webkit-transition: .2s;
  transition: .2s;
  background-color: white;
}

.custom-font .custom-font-header .font-color-selector .sp-replacer .sp-preview {
  height: 100%;
  width: 100%;
  border: none;
  background: transparent;
  position: relative;
}

.custom-font .custom-font-header .font-color-selector .sp-replacer .sp-preview::after {
  content: "\e929";
  font-family: 'onemasterlink-icon';
  position: absolute;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: white;
  font-size: 1.6rem;
  pointer-events: none;
}

.custom-font .custom-font-header .font-color-selector .sp-replacer .sp-preview .sp-preview-inner {
  border-radius: 5px;
  border: 2px solid white;
}

.custom-font .custom-font-header .font-color-selector .sp-dd {
  display: none;
}

.custom-font .custom-font-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.custom-font .custom-font-list.dark-items .custom-font-option label {
  background-color: #333333;
}

.custom-font .custom-font-list .custom-font-option {
  position: relative;
}

.custom-font .custom-font-list .custom-font-option label {
  height: 4.5rem;
  width: 12.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #EBEBEB;
  border-radius: 5px;
  color: #666666;
  font-weight: 500;
}

.custom-font .custom-font-list .custom-font-option label:hover {
  cursor: pointer;
}

.custom-font .custom-font-list .custom-font-option label::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  height: 12px;
  width: 12px;
  border-radius: 5rem;
  border: 2px solid transparent;
}

.custom-font .custom-font-list .custom-font-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-font .custom-font-list .custom-font-option input[type="radio"]:checked ~ label {
  -webkit-box-shadow: 0px 5px 10px rgba(0, 175, 240, 0.3);
          box-shadow: 0px 5px 10px rgba(0, 175, 240, 0.3);
  border-color: #00b0f0;
}

.custom-font .custom-font-list .custom-font-option input[type="radio"]:checked ~ label::before {
  background-color: #e73657;
  border-color: white;
}

@media screen and (max-width: 768px) {
  .custom-font .custom-font-list {
    gap: 1rem;
  }
  .custom-font .custom-font-list .custom-font-option label {
    width: 11.5rem;
  }
}

.custom-logo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #EBEBEB;
  border-radius: 20px;
  padding: 1.5rem;
}

.custom-logo .custom-logo-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-logo .custom-logo-header p {
  font-weight: 600;
  color: #134276;
}

.custom-logo .custom-logo-header .logo-visibility {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-logo .custom-logo-header .logo-visibility::before {
  content: '';
  font-family: 'onemasterlink-icon';
  color: #e73657;
  font-size: 2.4rem;
  pointer-events: none;
}

.custom-logo .custom-logo-header .logo-visibility:not(.hide)::before {
  content: "\e927";
}

.custom-logo .custom-logo-header .logo-visibility.hide::before {
  content: "\e926";
}

.custom-logo .custom-logo-options {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-transition: .3s;
  transition: .3s;
  max-height: 500px;
  padding-top: 2rem;
}

.custom-logo .custom-logo-options .logo-color-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #EBEBEB;
  padding: 2rem 2rem 2rem 2rem;
  border-radius: 20px;
}

.custom-logo .custom-logo-options .logo-color-option .logo-text {
  font-size: 2.2rem;
  font-family: "Fredoka One", sans-serif;
  color: #134276;
}

.custom-logo .custom-logo-options .logo-color-option .logo-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.custom-logo .custom-logo-options .logo-color-option .logo-image-wrapper .logo-image-preview {
  width: 7rem;
  height: 7rem;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}

.custom-logo .custom-logo-options .logo-color-option .logo-image-wrapper .logo-image-preview .delete-logo {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 5rem;
  background-color: #134276;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.custom-logo .custom-logo-options .logo-color-option .logo-image-wrapper .logo-image-preview .delete-logo .icon {
  font-size: .8rem;
  color: white;
  font-weight: bold;
  pointer-events: none;
}

.custom-logo .custom-logo-options .logo-color-option .logo-image-wrapper .logo-image-text {
  font-weight: 600;
  color: #134276;
}

.custom-logo .custom-logo-options .logo-color-option .color-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option label {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  border: 2px solid white;
  background-color: white;
  -webkit-box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 10px 10px rgba(31, 66, 114, 0.1);
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option label:hover {
  cursor: pointer;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option label::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  height: 12px;
  width: 12px;
  border-radius: 5rem;
  border: 2px solid transparent;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option input[type="radio"]:checked ~ label {
  -webkit-box-shadow: 0px 5px 10px rgba(0, 175, 240, 0.3);
          box-shadow: 0px 5px 10px rgba(0, 175, 240, 0.3);
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option input[type="radio"]:checked ~ label::before {
  background-color: #e73657;
  border-color: white;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector .sp-replacer {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0px;
  -webkit-transition: .2s;
  transition: .2s;
  background-color: white;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector .sp-replacer .sp-preview {
  height: 100%;
  width: 100%;
  border: none;
  background: transparent;
  position: relative;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector .sp-replacer .sp-preview::after {
  content: "\e929";
  font-family: 'onemasterlink-icon';
  position: absolute;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: white;
  font-size: 1.6rem;
  pointer-events: none;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector .sp-replacer .sp-preview .sp-preview-inner {
  border-radius: 5px;
  border: 2px solid white;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector .sp-replacer .sp-dd {
  display: none;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector label {
  position: absolute;
  top: 0px;
  background-color: #e73657;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector label .icon {
  pointer-events: none;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector.active label, .custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector.edited label {
  background: transparent !important;
}

.custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector.active label .icon, .custom-logo .custom-logo-options .logo-color-option .color-options .color-option.color-selector.edited label .icon {
  display: none !important;
}

.custom-logo .custom-logo-options .logo-color-option:not(.custom-logo-selected) .logo-image-wrapper {
  display: none;
}

.custom-logo .custom-logo-options .logo-color-option.custom-logo-selected {
  padding: 3rem 2rem 2rem 2rem;
}

.custom-logo .custom-logo-options .logo-color-option.custom-logo-selected .logo-text {
  display: none;
}

.custom-logo .custom-logo-options .logo-color-option.custom-logo-selected .color-options {
  display: none;
}

.custom-logo .custom-logo-options .logo-image-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-logo .custom-logo-options .logo-image-option .image-selector input[type="file"] {
  display: none;
}

.custom-logo .custom-logo-options .logo-image-option .image-selector input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

.custom-logo .custom-logo-options .logo-image-option .image-selector label {
  white-space: nowrap;
}

.custom-logo .custom-logo-options .logo-image-option .image-selector label:hover {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .custom-logo .custom-logo-options {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.custom-logo.hide-logo {
  gap: 0rem;
}

.custom-logo.hide-logo .custom-logo-options {
  padding-top: 0rem;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
}

.fill-style {
  background-color: rgba(46, 48, 56, 0.1);
}

.outline-style {
  border: 2px solid rgba(46, 48, 56, 0.1);
}

.rounded-style {
  border-radius: 7px;
}

.circle-style {
  border-radius: 5rem;
}

.rounded-style {
  border-radius: 7px;
}

.circle-style {
  border-radius: 5rem;
}

.font-default {
  font-family: "Barlow", sans-serif;
}

.font-alegreya {
  font-family: 'Alegreya', serif;
}

.font-lato {
  font-family: 'Lato', sans-serif;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.font-open-sans {
  font-family: 'Open Sans', sans-serif;
}

.font-oswald {
  font-family: 'Oswald', sans-serif;
}

.font-raleway {
  font-family: 'Raleway', sans-serif;
}

.font-roboto {
  font-family: 'Roboto', sans-serif;
}

.font-slabo {
  font-family: 'Slabo 13px', serif;
}

.font-titillium {
  font-family: 'Titillium Web', sans-serif;
}

.font-black-ops-one {
  font-family: 'Black Ops One', sans-serif;
}

.font-courgette {
  font-family: 'Courgette', sans-serif;
}

.colorPicker-container {
  background-color: white;
  border-radius: 1rem;
  border: 2px solid #EBEBEB;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
}

.colorPicker-container .sp-picker-container .sp-input-container input {
  border: 2px solid #EBEBEB;
  outline: none;
}

.colorPicker-container .sp-picker-container .sp-input-container input:focus, .colorPicker-container .sp-picker-container .sp-input-container input:active {
  border-color: #134276;
}

.colorPicker-container .sp-picker-container .sp-button-container .sp-choose {
  background: #e73657;
  color: white;
  border-radius: 5rem;
  padding: 0rem 2rem;
  border: none;
  font-family: "Barlow", sans-serif;
  font-weight: normal;
  height: 2.6rem;
}

@media screen and (max-width: 768px) {
  .colorPicker-container .sp-palette-container .sp-palette-button-container {
    display: none;
  }
}

.gradient-selector-wrapper {
  position: absolute;
  left: 50%;
  top: 17rem;
  width: 315px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
  padding: 2rem;
  -webkit-box-shadow: 0px 0px 50px rgba(31, 66, 114, 0.3);
          box-shadow: 0px 0px 50px rgba(31, 66, 114, 0.3);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .2s;
  transition: .2s;
}

.gradient-selector-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: -1;
  border-radius: 10px;
}

.gradient-selector-wrapper.show {
  opacity: 1;
  visibility: visible;
}

.gradient-selector-wrapper .gradient-selector-close {
  position: absolute;
  left: 100%;
  bottom: 100%;
  font-size: .8rem;
  -webkit-transform: translate(-55%, 55%);
          transform: translate(-55%, 55%);
  background-color: white;
  height: 2.2rem;
  width: 2.2rem;
  border-radius: 50%;
  -webkit-box-shadow: 0px 1px 3px -0.5px rgba(46, 48, 56, 0.5);
          box-shadow: 0px 1px 3px -0.5px rgba(46, 48, 56, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gradient-selector-wrapper .gradient-selector-direction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .5rem;
}

.gradient-selector-wrapper .gradient-selector-direction p {
  font-size: 1.4rem;
  color: #134276;
  font-weight: 600;
}

.gradient-selector-wrapper .direction-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .5rem;
}

.gradient-selector-wrapper .direction-option {
  position: relative;
}

.gradient-selector-wrapper .direction-option input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.gradient-selector-wrapper .direction-option input:checked + label {
  border-color: #00AFF0;
}

.gradient-selector-wrapper .direction-option label {
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1rem;
  color: #134276;
  cursor: pointer;
  padding: .5rem;
  position: relative;
}

.gradient-selector-wrapper .direction-option label .icon {
  pointer-events: none;
  z-index: 1;
}

.gradient-selector-wrapper .direction-option label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #134276;
  height: 2.2rem;
  width: 2.2rem;
  border-radius: 50%;
  pointer-events: none;
  background-color: white;
}

.gradient-selector-wrapper .direction-option:nth-child(7) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.gradient-selector-wrapper .direction-option:nth-child(8) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.gradient-selector-wrapper .direction-option:nth-child(1) {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.gradient-selector-wrapper .direction-option:nth-child(2) {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.gradient-selector-wrapper .direction-option:nth-child(3) {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.gradient-selector-wrapper .direction-option:nth-child(4) {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}

.gradient-selector-wrapper .direction-option:nth-child(5) {
  -webkit-transform: rotate(-270deg);
          transform: rotate(-270deg);
}

.gradient-selector-wrapper .direction-option:nth-child(6) {
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}

.gradient-selector-wrapper .gradient-selector-colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.gradient-selector-wrapper .gradient-selector-color {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2.8rem;
}

.gradient-selector-wrapper .gradient-selector-color .sp-replacer {
  width: 100%;
  height: 2.8rem;
  border: none;
  padding: 0px;
  -webkit-transition: .2s;
  transition: .2s;
  background-color: white;
}

.gradient-selector-wrapper .gradient-selector-color .sp-replacer .sp-preview {
  height: 2.8rem;
  width: 100%;
  border: none;
  background: transparent;
  position: relative;
}

.gradient-selector-wrapper .gradient-selector-color .sp-replacer .sp-preview::after {
  content: "\e929";
  font-family: 'onemasterlink-icon';
  position: absolute;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: white;
  font-size: 1.6rem;
  pointer-events: none;
}

.gradient-selector-wrapper .gradient-selector-color .sp-replacer .sp-preview .sp-preview-inner {
  border-radius: 5px;
  border: 2px solid white;
}

.gradient-selector-wrapper .gradient-selector-color .sp-replacer .sp-dd {
  display: none;
}

.gradient-selector-wrapper .gradient-selector-color input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.gradient-selector-wrapper .gradient-selector-color input:checked + label {
  background-color: transparent;
}

.gradient-selector-wrapper .gradient-selector-color label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 2.8rem;
  border-radius: 5px;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 3px rgba(46, 48, 56, 0.25);
          box-shadow: 0px 0px 3px rgba(46, 48, 56, 0.25);
}

.gradient-selector-wrapper .gradient-selector-color label .icon {
  color: white;
}

@media screen and (max-width: 992px) {
  .gradient-selector-wrapper {
    width: 175px;
  }
}

@media screen and (min-width: 992px) {
  .gradient-selector-wrapper {
    -webkit-transform: translateX(-70%);
            transform: translateX(-70%);
  }
}

@media screen and (min-width: 1150px) {
  .gradient-selector-wrapper {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.hero-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
  padding: 3rem 0 2rem;
  width: 100%;
}

.hero-wrapper .hero-content {
  -ms-flex-preferred-size: 43%;
      flex-basis: 43%;
}

.hero-wrapper .hero-content h1 {
  font-size: 4.8rem;
  margin-bottom: 1rem;
}

.hero-wrapper .hero-content p {
  font-weight: 300;
  font-size: 2.4rem;
  color: #666666;
}

.hero-wrapper .hero-content p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.hero-wrapper .hero-content .hero-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-wrapper .hero-content .btn {
  padding: 1.2rem 3.8rem;
  text-transform: uppercase;
}

.hero-wrapper .hero-appPreview {
  position: relative;
  -ms-flex-preferred-size: 57%;
      flex-basis: 57%;
  overflow-x: hidden;
}

.hero-wrapper .hero-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.hero-wrapper .hero-app-mockup {
  position: relative;
  width: 400px;
  height: 768px;
  overflow: hidden;
  -webkit-transform: translate(0%, -16%) scale(0.6);
          transform: translate(0%, -16%) scale(0.6);
  margin-bottom: -27rem;
  margin-right: -9rem;
  margin-top: -3.5rem;
  margin-left: -9rem;
}

.hero-wrapper .hero-app-mockup .hero-app-mockup-wrapper {
  height: 100%;
  overflow: hidden;
}

.hero-wrapper .hero-app-mockup .hero-app-mockup-wrapper:before {
  content: '';
  position: absolute;
  background-image: url("/static/images/home/phone.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 111;
  pointer-events: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  overflow: hidden;
  padding: 1rem;
}

.hero-wrapper .hero-app-mockup .hero-app-mockup-wrapper .hero-frame-mockup {
  border: none;
  padding: 2.5rem;
  border-radius: 5rem;
  overflow: hidden;
}

.hero-wrapper .hero-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.hero-wrapper .hero-custom .hero-bg, .hero-wrapper .hero-custom .hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: .9rem .6rem;
  border-radius: .5rem;
  background-color: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 1rem;
}

.hero-wrapper .hero-custom .hero-bg button, .hero-wrapper .hero-custom .hero-text button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
  -webkit-box-shadow: 0px 0px 10px rgba(46, 48, 56, 0.1);
          box-shadow: 0px 0px 10px rgba(46, 48, 56, 0.1);
}

.hero-wrapper .hero-custom .hero-bg button img, .hero-wrapper .hero-custom .hero-text button img {
  pointer-events: none;
  width: 3rem;
  height: 3rem;
}

.hero-wrapper .hero-options.sm-hidden {
  display: none;
}

.hero-wrapper .hero-options.sm-hidden button {
  position: absolute;
}

.hero-wrapper .hero-options.sm-min-hidden {
  padding: 3rem 0 2rem 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: -webkit-grab;
  cursor: grab;
  scrollbar-width: thin;
  /* Handle */
}

.hero-wrapper .hero-options.sm-min-hidden button {
  padding: .4rem .8rem;
}

.hero-wrapper .hero-options.sm-min-hidden::-webkit-scrollbar {
  height: 5px;
  -webkit-appearance: none;
}

.hero-wrapper .hero-options.sm-min-hidden::-webkit-scrollbar-track {
  background-color: rgba(46, 48, 56, 0.05);
  border-radius: 50px;
}

.hero-wrapper .hero-options.sm-min-hidden::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #134276;
}

.hero-wrapper .hero-options button {
  background-color: white;
  -webkit-box-shadow: 0px 5px 10px rgba(46, 48, 56, 0.25);
          box-shadow: 0px 5px 10px rgba(46, 48, 56, 0.25);
  border-radius: 5rem;
  position: relative;
  padding: .3rem .6rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.hero-wrapper .hero-options button:nth-child(1), .hero-wrapper .hero-options button:nth-child(7), .hero-wrapper .hero-options button:nth-child(5), .hero-wrapper .hero-options button:nth-child(8) {
  -webkit-animation: waggle 1.5s .35s forwards ease-out 5;
          animation: waggle 1.5s .35s forwards ease-out 5;
}

.hero-wrapper .hero-options button:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.hero-wrapper .hero-options button span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: bold;
  pointer-events: none;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 5rem;
}

.hero-wrapper .hero-options button::before {
  content: '';
  width: calc(100% + 1.3rem);
  height: calc(100% + 1.3rem);
  border-radius: 5rem;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-wrapper .hero-options .btn-gamming span {
  font-size: 1rem;
  text-transform: uppercase;
  color: #EE1D52;
}

.hero-wrapper .hero-options .btn-gradient span {
  font-size: 0;
  line-height: 0;
  content: '';
  width: 55px;
  height: 18px;
  background-image: url("/static/images/home/gradient.svg");
  background-repeat: no-repeat;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
}

.hero-wrapper .hero-options .btn-art span {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #FCBB45;
}

.hero-wrapper .hero-options .btn-polygon span {
  font-size: .95rem;
  color: #0047FF;
}

.hero-wrapper .hero-options .btn-pastel span {
  font-size: 1.35rem;
  color: #FF8A8A;
}

.hero-wrapper .hero-options .btn-neon span {
  font-size: 0;
  line-height: 0;
  content: '';
  width: 45px;
  height: 16px;
  background-image: url("/static/images/home/neon.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.hero-wrapper .hero-options .btn-celebrate span {
  font-size: 0;
  line-height: 0;
  content: '';
  width: 50px;
  height: 18px;
  background-image: url("/static/images/home/celebrate.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.hero-wrapper .hero-options .btn-summer span {
  font-size: 1.2rem;
  color: #E47B19;
}

@-webkit-keyframes waggle {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: rotateZ(-20deg) scale(1.2);
            transform: rotateZ(-20deg) scale(1.2);
  }
  60% {
    -webkit-transform: rotateZ(25deg) scale(1.2);
            transform: rotateZ(25deg) scale(1.2);
  }
  67.5% {
    -webkit-transform: rotateZ(-15deg) scale(1.2);
            transform: rotateZ(-15deg) scale(1.2);
  }
  75% {
    -webkit-transform: rotateZ(15deg) scale(1.2);
            transform: rotateZ(15deg) scale(1.2);
  }
  82.5% {
    -webkit-transform: rotateZ(-12deg) scale(1.2);
            transform: rotateZ(-12deg) scale(1.2);
  }
  85% {
    -webkit-transform: rotateZ(0) scale(1.2);
            transform: rotateZ(0) scale(1.2);
  }
  100% {
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
}

@keyframes waggle {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: rotateZ(-20deg) scale(1.2);
            transform: rotateZ(-20deg) scale(1.2);
  }
  60% {
    -webkit-transform: rotateZ(25deg) scale(1.2);
            transform: rotateZ(25deg) scale(1.2);
  }
  67.5% {
    -webkit-transform: rotateZ(-15deg) scale(1.2);
            transform: rotateZ(-15deg) scale(1.2);
  }
  75% {
    -webkit-transform: rotateZ(15deg) scale(1.2);
            transform: rotateZ(15deg) scale(1.2);
  }
  82.5% {
    -webkit-transform: rotateZ(-12deg) scale(1.2);
            transform: rotateZ(-12deg) scale(1.2);
  }
  85% {
    -webkit-transform: rotateZ(0) scale(1.2);
            transform: rotateZ(0) scale(1.2);
  }
  100% {
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
}

@media screen and (max-width: 576px) {
  .hero-wrapper .hero-content h1 {
    font-size: 3.6rem;
  }
  .hero-wrapper .hero-content .hero-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-wrapper .hero-appPreview {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media screen and (min-width: 576px) {
  .hero-wrapper {
    padding: 7rem 0 10rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5rem;
  }
}

@media screen and (min-width: 1200px) {
  .hero-wrapper {
    padding-top: 6rem;
    gap: 14rem;
  }
  .hero-wrapper .hero-content {
    padding-top: 6rem;
  }
  .hero-wrapper .hero-appPreview {
    overflow: initial;
  }
  .hero-wrapper .hero-custom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .hero-wrapper .hero-options.sm-hidden {
    display: block;
  }
  .hero-wrapper .hero-options.sm-min-hidden {
    display: none;
  }
  .hero-wrapper .hero-options button {
    padding: .3rem .6rem;
  }
  .hero-wrapper .hero-options button span {
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: bold;
  }
  .hero-wrapper .hero-options .btn-gamming {
    top: 80px;
    left: 7%;
  }
  .hero-wrapper .hero-options .btn-gamming span {
    font-size: 1rem;
  }
  .hero-wrapper .hero-options .btn-gradient {
    top: 180px;
    left: .5%;
  }
  .hero-wrapper .hero-options .btn-gradient span {
    width: 55px;
    height: 18px;
  }
  .hero-wrapper .hero-options .btn-art {
    bottom: 150px;
    left: 8%;
    padding: .3rem .8rem;
  }
  .hero-wrapper .hero-options .btn-art span {
    font-size: 1.4rem;
  }
  .hero-wrapper .hero-options .btn-celebrate {
    bottom: 30px;
    left: 2%;
    padding: .2rem 1rem;
  }
  .hero-wrapper .hero-options .btn-celebrate span {
    font-size: 1rem;
  }
  .hero-wrapper .hero-options .btn-polygon {
    bottom: -40px;
    left: 20%;
    padding: .2rem .65rem;
  }
  .hero-wrapper .hero-options .btn-polygon span {
    font-size: .95rem;
  }
  .hero-wrapper .hero-options .btn-pastel {
    bottom: -55px;
    right: 35%;
  }
  .hero-wrapper .hero-options .btn-pastel span {
    font-size: 1.35rem;
  }
  .hero-wrapper .hero-options .btn-neon {
    bottom: 65px;
    right: 25%;
  }
  .hero-wrapper .hero-options .btn-neon span {
    width: 45px;
    height: 16px;
  }
  .hero-wrapper .hero-options .btn-summer {
    bottom: 210px;
    right: 20%;
  }
  .hero-wrapper .hero-options .btn-summer span {
    font-size: 1.2rem;
  }
}

.hero-title {
  font-size: 3rem;
  padding-bottom: 9rem;
}

.section-row .slider.section-wrapper {
  padding: 2rem 0 8rem;
}

.slider .slider-title {
  max-width: 480px;
  padding: 0 2rem 3rem;
}

@media screen and (min-width: 768px) {
  .slider .slider-title {
    max-width: 610px;
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .slider .slider-title {
    padding-bottom: 5rem;
  }
}

.slider-icons {
  overflow: hidden;
  position: relative;
}

.slider-icons .slide-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
  width: calc(250px*28);
}

@media screen and (min-width: 768px) {
  .slider-icons .slide img {
    height: 75px;
    width: 150px;
  }
}

@media screen and (min-width: 1366px) {
  .slider-icons::before, .slider-icons::after {
    background: -webkit-gradient(linear, left top, right top, color-stop(5%, #f7f8fd), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, #f7f8fd 5%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider-icons::after {
    right: -1px;
    top: 0;
    -webkit-transform: rotateZ(180deg);
            transform: rotateZ(180deg);
  }
  .slider-icons::before {
    left: -1px;
    top: 0;
  }
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 14));
            transform: translateX(calc(-250px * 14));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 14));
            transform: translateX(calc(-250px * 14));
  }
}

@media (max-width: 768px) {
  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-70px * 14));
              transform: translateX(calc(-70px * 14));
    }
  }
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-70px * 14));
              transform: translateX(calc(-70px * 14));
    }
  }
  .slider-icons::before, .slider-icons::after {
    width: 50px;
  }
  .slider-icons .slide-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: scroll 15s linear infinite;
            animation: scroll 15s linear infinite;
    width: calc(70px*28);
  }
  .slider-icons .slide img {
    height: 60px;
    width: 100px;
  }
}

.features-bg {
  position: relative;
  overflow: hidden;
}

.features-bg::before {
  content: '';
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-image: url("/static/images/home/features-bg-mobile.svg");
  min-width: 700px;
}

@media screen and (min-width: 768px) {
  .features-bg::before {
    background-image: url("/static/images/home/features-bg-tablet.svg");
    min-width: 1200px;
  }
}

@media screen and (min-width: 1200px) {
  .features-bg::before {
    background-size: cover;
    background-image: url("/static/images/home/features-bg.svg");
  }
}

.features-wrapper {
  margin-bottom: 2rem;
}

.features-wrapper .features-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  padding: 3.5rem 0 7rem;
}

.features-wrapper .features-cta h2 {
  font-size: 2.8rem;
  color: white;
}

.features-wrapper .features-title {
  padding: 7rem 0 4rem;
  font-size: 2.8rem;
}

.features-wrapper .features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.features-wrapper .features-item .icon {
  display: inline-block;
  border-radius: 1.6rem;
  background-color: #e73657;
  padding: 1rem;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  height: 44px;
  width: 44px;
}

.features-wrapper .features-item h3 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.features-wrapper .features-item p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
}

.features-wrapper figure img {
  width: 100%;
}

.features-wrapper .features-img {
  margin-top: 2rem;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  max-width: 480px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .features-wrapper .features-title {
    padding: 2rem 0 4rem;
  }
}

@media screen and (max-width: 768px) {
  .features-wrapper .features-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .features-wrapper {
    margin-bottom: 10rem;
  }
  .features-wrapper .features-cta {
    max-width: 500px;
    margin: 0 auto;
  }
  .features-wrapper .features-cta h2 {
    font-size: 3.6rem;
  }
  .features-wrapper .features-content {
    display: -ms-grid;
    display: grid;
    grid: auto / 3fr 1fr;
    gap: 3rem;
  }
  .features-wrapper .features-title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    padding: 7rem 0 4rem;
    font-size: 3rem;
  }
  .features-wrapper .features-list {
    display: -ms-grid;
    display: grid;
    grid: auto/repeat(2, 1fr);
    gap: 3rem 6rem;
  }
  .features-wrapper .features-item h3 {
    font-size: 2.4rem;
  }
  .features-wrapper .features-img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

@media screen and (min-width: 1200px) {
  .features-wrapper .features-cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: none;
  }
  .features-wrapper .features-cta h2 {
    font-size: 3rem;
  }
  .features-wrapper .features-content {
    grid: auto/repeat(2, 1fr);
    gap: 0 9.5rem;
  }
  .features-wrapper .features-list {
    gap: 3rem 9.5rem;
  }
  .features-wrapper .features-img {
    margin-top: 0;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    max-width: none;
  }
}

.section-row .section-wrapper.splide-wrapper {
  display: block;
}

.testimonials-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

.testimonials-wrapper .hero-title {
  font-size: 2.8rem;
  padding-bottom: 0;
}

.testimonials-wrapper .splide__track {
  overflow: visible;
}

.testimonials-wrapper .splide__slide .testimonial {
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
}

.testimonials-wrapper .testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 300px;
  height: 350px;
  padding: 5rem 4rem 4rem;
  background: white;
  border-radius: 20px;
  position: relative;
}

.testimonials-wrapper .testimonial::before {
  content: '';
  display: block;
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 30px;
}

.testimonials-wrapper .testimonial p {
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.5;
}

.testimonials-wrapper .testimonial-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.testimonials-wrapper .user-info {
  display: inline;
}

.testimonials-wrapper .user-info span {
  display: block;
  color: #134276;
}

.testimonials-wrapper .user-info span.testimonial-username {
  font-family: "Fredoka One", sans-serif;
  font-size: 1.8rem;
}

.testimonials-wrapper .user-info span.testimonial-location {
  font-size: 1.6rem;
  font-weight: 500;
}

.testimonials-wrapper .splide__arrows {
  display: none;
}

.testimonials-wrapper .splide__pagination {
  position: static;
  padding-top: 5rem;
  gap: 1rem;
}

.testimonials-wrapper .splide__pagination li {
  display: block;
}

.testimonials-wrapper .splide__pagination__page {
  margin: 0;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: rgba(31, 65, 112, 0.5);
}

.testimonials-wrapper .splide__pagination__page.is-active {
  width: 20px;
  height: 8px;
  background-color: #e73657;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (min-width: 768px) {
  .testimonials-wrapper {
    margin-bottom: 10rem;
  }
  .testimonials-wrapper .hero-title {
    font-size: 3.6rem;
  }
  .testimonials-wrapper .testimonial {
    max-width: 465px;
    height: 266px;
  }
  .testimonials-wrapper .splide__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 2px solid #134276;
    border-radius: 5rem;
    padding: 1rem 1.7rem;
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    gap: 1rem;
  }
  .testimonials-wrapper .splide {
    position: static;
  }
  .testimonials-wrapper .splide__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 1.5rem;
    width: 2.5rem;
    background-color: transparent;
    opacity: 1;
  }
  .testimonials-wrapper .splide__arrow[disabled] {
    cursor: default;
  }
  .testimonials-wrapper .splide__arrow svg {
    fill: #134276;
    height: auto;
    width: auto;
  }
  .testimonials-wrapper .splide__arrow.splide__arrow--prev svg {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@media screen and (min-width: 1200px) {
  .testimonials-wrapper .hero-title {
    font-size: 3rem;
    padding-bottom: 5rem;
  }
  .testimonials-wrapper .splideTestimonials {
    overflow: visible;
  }
}

.faq-bg::before, .faq-bg::after {
  content: '';
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  width: 100px;
  height: 490px;
  position: absolute;
  z-index: -1;
}

.faq-bg::before {
  top: 280px;
  left: 0;
  background-image: url("/static/images/home/polygon-left-faq.svg");
}

.faq-bg::after {
  background-image: url("/static/images/home/polygon-right-faq.svg");
  top: 460px;
  right: 0;
}

@media screen and (min-width: 768px) {
  .faq-bg::before {
    top: -100px;
  }
  .faq-bg::after {
    top: 670px;
  }
}

@media screen and (min-width: 1200px) {
  .faq-bg::before, .faq-bg::after {
    width: 132px;
    height: 600px;
  }
  .faq-bg::before {
    top: -200px;
  }
  .faq-bg::after {
    top: 360px;
  }
}

.faq-title {
  padding-bottom: 2rem;
  max-width: 350px;
  margin: 0 auto;
  font-size: 2.8rem;
}

@media screen and (min-width: 768px) {
  .faq-title {
    padding-bottom: 7rem;
    font-size: 3.6rem;
  }
}

@media screen and (min-width: 1200px) {
  .faq-title {
    max-width: none;
    font-size: 3rem;
  }
}

.faq-wrapper {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 5rem;
  position: relative;
}

.faq-wrapper::before, .faq-wrapper::after {
  content: '';
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  width: 40px;
  height: 64px;
  position: absolute;
  z-index: -1;
}

.faq-wrapper::before {
  top: -70px;
  left: -15px;
  background-image: url("/static/images/home/question-1.svg");
}

.faq-wrapper::after {
  top: -120px;
  right: -15px;
  background-image: url("/static/images/home/question-2.svg");
}

.faq-wrapper .faq-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.faq-wrapper .faq {
  background-color: white;
  border-radius: 20px;
  padding: 3.4rem 2rem;
  -webkit-box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 50px 50px rgba(31, 66, 114, 0.1);
  cursor: pointer;
}

.faq-wrapper .faq[open] .faq-header::after {
  content: "\e916";
  color: #134276;
}

.faq-wrapper .faq-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Fredoka One", sans-serif;
  font-size: 1.8rem;
  color: #134276;
  position: relative;
  padding-right: 2.5rem;
  pointer-events: none;
}

.faq-wrapper .faq-header::after {
  font-family: 'onemasterlink-icon';
  content: '\e917';
  color: #e73657;
  font-size: 2rem;
  position: absolute;
  top: 0px;
  right: 0px;
}

.faq-wrapper .faq-answer {
  padding-top: 1rem;
  color: #4d4d4d;
}

@media screen and (max-width: 992px) {
  .faq-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-wrapper .faq-column {
    gap: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .faq-wrapper {
    position: static;
  }
  .faq-wrapper::before, .faq-wrapper::after {
    width: 190px;
    height: 302px;
  }
  .faq-wrapper::before {
    top: auto;
    left: 12px;
    bottom: -50px;
  }
  .faq-wrapper::after {
    top: -80px;
    right: 8px;
  }
}

@media screen and (min-width: 1200px) {
  .faq-wrapper::before, .faq-wrapper::after {
    width: 313px;
    height: 500px;
  }
  .faq-wrapper::before {
    left: 26px;
    bottom: -120px;
  }
  .faq-wrapper::after {
    top: -15px;
    right: 35px;
  }
}

.createAccount-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 3rem;
  gap: 2rem;
}

.createAccount-wrapper h2 {
  text-align: center;
  font-size: 2.8rem;
}

@media screen and (min-width: 768px) {
  .createAccount-wrapper {
    padding-top: 10rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .createAccount-wrapper h2 {
    font-size: 3.6rem;
    text-align: start;
  }
}

@media screen and (min-width: 1200px) {
  .createAccount-wrapper h2 {
    font-size: 3rem;
  }
}

.alternative-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  padding-top: 3rem;
}

.alternative-wrapper .alternative-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.alternative-wrapper .alternative-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  width: 54px;
  height: 54px;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  -webkit-box-shadow: 0px 25px 50px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 25px 50px rgba(31, 66, 114, 0.1);
}

.alternative-wrapper h3 {
  font-size: 2rem;
  margin-bottom: 1.8rem;
}

.alternative-wrapper p {
  line-height: 1.5;
  color: #4d4d4d;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .alternative-wrapper {
    padding-top: 10rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .alternative-wrapper .alternative-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
  .alternative-wrapper h3 {
    font-size: 2.4rem;
    margin-bottom: .8rem;
  }
}

.profileLinks-container {
  min-height: calc(100vh);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

.profileLinks-container::before {
  content: '';
  width: 100%;
  height: calc(100%);
  position: absolute;
  background-color: rgba(46, 48, 56, 0.05);
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.profileLinks-wrapper {
  max-width: 768px;
  width: 100%;
  height: calc(100vh);
  background-color: white;
  overflow-y: auto;
  padding-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 4rem 2rem 2rem 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.profileLinks-wrapper.preview-mockup {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version,*/
}

.profileLinks-wrapper.preview-mockup * {
  pointer-events: none;
}

.profileLinks-wrapper::-webkit-scrollbar {
  width: 5px;
}

.profileLinks-wrapper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(46, 48, 56, 0.25);
          box-shadow: inset 0 0 5px rgba(46, 48, 56, 0.25);
  border-radius: 500px;
}

.profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #134276;
  border-radius: 500px;
}

.profileLinks-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(46, 48, 56, 0.05);
}

.profileLinks-wrapper .profileLinks-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.profileLinks-wrapper .profileLinks-header_image a img {
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.profileLinks-wrapper .profileLinks-header_username p, .profileLinks-wrapper .profileLinks-header_username h1 {
  font-family: "Fredoka One", sans-serif;
  color: #134276;
}

.profileLinks-wrapper .profileLinks-header_location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profileLinks-wrapper .profileLinks-header_location .icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: .5rem;
}

.profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
}

.profileLinks-wrapper .profileLinks-header_biography p {
  max-width: 40rem;
  color: #333333;
  text-align: center;
}

.profileLinks-wrapper .profileLinks-socialMedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0rem;
}

.profileLinks-wrapper .profileLinks-socialMedia .social-link {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .2s;
  transition: .2s;
}

.profileLinks-wrapper .profileLinks-socialMedia .social-link:hover {
  -webkit-box-shadow: 0px 1px 3px -0.5px rgba(46, 48, 56, 0.5);
          box-shadow: 0px 1px 3px -0.5px rgba(46, 48, 56, 0.5);
}

.profileLinks-wrapper .profileLinks-socialMedia .social-link:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.profileLinks-wrapper .profileLinks-socialMedia .social-link img {
  width: 4.4rem;
  height: 4.4rem;
  -webkit-transition: .2s;
  transition: .2s;
}

.profileLinks-wrapper .profileLinks-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.profileLinks-wrapper .profileLinks-content_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.profileLinks-wrapper .links-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.profileLinks-wrapper .profileLink-item {
  width: 100%;
  background-color: rgba(46, 48, 56, 0.05);
  height: 7.5rem;
  padding: 1rem 7rem 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .profileLinks-wrapper .profileLink-item {
    padding: 1rem 6.5rem 1rem 1rem;
  }
}

.profileLinks-wrapper .profileLink-item.isLive .profileLink-item_image {
  position: relative;
}

.profileLinks-wrapper .profileLink-item.isLive .profileLink-item_image::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  bottom: -.3rem;
  right: -.3rem;
  background-color: #48CC5D;
  border-radius: 5rem;
}

.profileLinks-wrapper .profileLink-item_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 5rem;
  width: 5rem;
  min-width: 5rem;
  padding: .5rem;
  -webkit-box-shadow: 0px 5px 10px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 10px rgba(31, 66, 114, 0.1);
}

.profileLinks-wrapper .profileLink-item_image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.profileLinks-wrapper .profileLink-item_body .item-body-text {
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-right: 2rem;
}

.profileLinks-wrapper .profileLink-item_body span {
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: "Barlow", sans-serif !important;
  font-weight: normal !important;
}

.profileLinks-wrapper .profileLink-item_options {
  position: absolute;
  right: 2rem;
  top: 1rem;
  height: calc(100% - 2rem);
  width: 5.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .2rem;
}

.profileLinks-wrapper .profileLink-item_options .link-price {
  white-space: nowrap;
  -webkit-box-shadow: 0px 5px 10px rgba(31, 66, 114, 0.1);
          box-shadow: 0px 5px 10px rgba(31, 66, 114, 0.1);
  padding: 0rem .8rem;
  height: 2.4rem;
}

.profileLinks-wrapper .profileLink-item_options .link-copy {
  padding: 1rem;
}

.profileLinks-wrapper .profileLink-item_options .link-copy .icon {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .profileLinks-wrapper .profileLink-item_options {
    right: 1rem;
  }
}

.profileLinks-wrapper .profileLinks-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 5rem;
  margin-top: 3rem;
  -webkit-box-ordinal-group: 1000 !important;
      -ms-flex-order: 999 !important;
          order: 999 !important;
}

.profileLinks-wrapper .profileLinks-footer .logo-icon .icon {
  font-size: 3.6rem;
  color: #e73657;
}

.profileLinks-wrapper .profileLinks-footer .logo-default {
  font-family: "Fredoka One", sans-serif;
  color: black;
  font-size: 1.8rem;
}

.profileLinks-wrapper .profileLinks-footer .logo-custom {
  display: none;
  min-width: 14rem;
  height: 7rem;
}

.styleChanger-wrapper {
  position: fixed;
  top: 8rem;
  left: 2rem;
}

.styleChanger-wrapper .styleChanger-theme {
  margin-bottom: 1rem;
  position: relative;
}

.styleChanger-wrapper .styleChanger-theme select {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  padding: 10px 20px;
  width: 100%;
  height: 44px;
  border: 1px solid rgba(46, 48, 56, 0.25);
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
          box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  position: relative;
  outline: none;
  cursor: pointer;
}

.styleChanger-wrapper .styleChanger-theme::before {
  content: "\e904";
  font-family: "onemasterlink-icon";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 14px;
  -webkit-transition: .3s;
  transition: .3s;
  color: #134276;
  pointer-events: none;
  z-index: 1;
}

.styleChanger-wrapper .styleChanger-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.styleChanger-wrapper .styleChanger-option {
  width: 3rem;
  height: 3rem;
  border-radius: .5rem;
}

.style-card-wrapper label.style-card-preview .style-background .background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.style-card-wrapper label.style-card-preview .style-background .style-linksPreview {
  position: relative;
  z-index: 1;
}

.art-1-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/art/1/art-1-mobile.jpg");
}

.art-1-1-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #ffffff;
}

[class*="art-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: #ffffff;
}

.art-1-1-profile {
  background: url("/static/images/themes/art/1/art-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-1-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/art/1/art-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #ffffff;
}

.art-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.8rem/20px "Dancing Script";
  color: #333333;
}

.art-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: white;
}

.art-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 2rem/20px "Dancing Script";
}

.art-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Dancing Script";
}

.art-1-1-profile .profileLinks-wrapper .profileLink-item {
  background: #ffffff;
  border-radius: 10px;
}

.art-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.art-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.6rem/20px "Dancing Script";
}

.art-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow";
  border-radius: 10px;
  color: black;
  border: 2px solid black;
}

.art-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.art-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #B03B5C;
}

.art-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  border-color: #B03B5C;
  color: #B03B5C;
}

.art-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: #B03B5C;
}

.art-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: #ffffff;
}

.art-1-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/art/1/art-1-mobile.jpg");
}

.art-1-2-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #CBFCFF;
}

[class*="art-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: #CBFCFF;
}

.art-1-2-profile {
  background: url("/static/images/themes/art/1/art-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-1-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/art/1/art-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #CBFCFF;
}

.art-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.8rem/20px "Dancing Script";
  color: #333333;
}

.art-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: white;
}

.art-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 2rem/20px "Dancing Script";
}

.art-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Dancing Script";
}

.art-1-2-profile .profileLinks-wrapper .profileLink-item {
  background: #CBFCFF;
  border-radius: 10px;
}

.art-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.art-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.6rem/20px "Dancing Script";
}

.art-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow";
  border-radius: 10px;
  color: black;
  border: 2px solid black;
}

.art-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.art-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #000000;
  background-color: #CBFCFF;
}

.art-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: #CBFCFF;
}

.art-1-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/art/1/art-1-mobile.jpg");
}

.art-1-3-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #FF799A;
}

[class*="art-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: #FF799A;
}

.art-1-3-profile {
  background: url("/static/images/themes/art/1/art-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-1-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/art/1/art-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #FF799A;
}

.art-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.8rem/20px "Dancing Script";
  color: #333333;
}

.art-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: white;
}

.art-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 2rem/20px "Dancing Script";
}

.art-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Dancing Script";
}

.art-1-3-profile .profileLinks-wrapper .profileLink-item {
  background: #FF799A;
  border-radius: 10px;
}

.art-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.art-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.6rem/20px "Dancing Script";
}

.art-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow";
  border-radius: 10px;
  color: black;
  border: 2px solid black;
}

.art-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.art-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFFFFF;
  background-color: #FF799A;
}

.art-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  color: #FFFFFF;
}

.art-1-3-profile .profileLinks-wrapper .profileLink-item_body span {
  color: #FFFFFF;
}

.art-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.art-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: #FFFFFF;
}

.art-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: #FF799A;
}

.art-1-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/art/1/art-1-mobile.jpg");
}

.art-1-4-preview label.style-card-preview .style-background .style-linksPreview span {
  background: rgba(155, 0, 30, 0.4);
}

[class*="art-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: rgba(155, 0, 30, 0.4);
}

.art-1-4-profile {
  background: url("/static/images/themes/art/1/art-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-1-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/art/1/art-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: rgba(155, 0, 30, 0.4);
}

.art-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.8rem/20px "Dancing Script";
  color: #333333;
}

.art-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: white;
}

.art-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 2rem/20px "Dancing Script";
}

.art-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Dancing Script";
}

.art-1-4-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(155, 0, 30, 0.4);
  border-radius: 10px;
}

.art-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.art-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.6rem/20px "Dancing Script";
}

.art-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow";
  border-radius: 10px;
  color: black;
  border: 2px solid black;
}

.art-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.art-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #B03B5C;
}

.art-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  color: #FFFFFF;
}

.art-1-4-profile .profileLinks-wrapper .profileLink-item_body span {
  color: #FFFFFF;
}

.art-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.art-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: #FFFFFF;
}

.art-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: rgba(155, 0, 30, 0.4);
}

@media screen and (max-width: 576px) {
  .art-1-1-profile {
    background: url("/static/images/themes/art/1/art-1-mobile.jpg");
  }
  .art-1-1-profile .profileLinks-wrapper {
    background: url("/static/images/themes/art/1/art-1-mobile.jpg");
  }
  .art-1-2-profile {
    background: url("/static/images/themes/art/1/art-1-mobile.jpg");
  }
  .art-1-2-profile .profileLinks-wrapper {
    background: url("/static/images/themes/art/1/art-1-mobile.jpg");
  }
  .art-1-3-profile {
    background: url("/static/images/themes/art/1/art-1-mobile.jpg");
  }
  .art-1-3-profile .profileLinks-wrapper {
    background: url("/static/images/themes/art/1/art-1-mobile.jpg");
  }
  .art-1-4-profile {
    background: url("/static/images/themes/art/1/art-1-mobile.jpg");
  }
  .art-1-4-profile .profileLinks-wrapper {
    background: url("/static/images/themes/art/1/art-1-mobile.jpg");
  }
}

.art-2-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/art/2/art-2-mobile.jpg");
}

.art-2-1-preview label.style-card-preview .style-background .style-linksPreview span {
  border-radius: 7.5px;
  background: rgba(255, 168, 87, 0.6);
}

[class*="art-2"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: rgba(255, 168, 87, 0.6);
}

.art-2-1-profile {
  background: url("/static/images/themes/art/2/art-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-2-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/art/2/art-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-2-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 168, 87, 0.6);
}

.art-2-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Gupter";
  color: #333333;
}

.art-2-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: white;
}

.art-2-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 2rem/20px "Gupter";
}

.art-2-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Gupter";
}

.art-2-1-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(255, 168, 87, 0.6);
  border-radius: 10px;
}

.art-2-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.art-2-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.2rem/20px "Gupter";
}

.art-2-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow";
  border-radius: 10px;
  background-color: white;
  color: black;
}

.art-2-1-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: black;
}

.art-2-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.art-2-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
}

.art-2-styleChanger .styleChanger-option:nth-of-type(1) {
  background: rgba(255, 168, 87, 0.6);
}

.art-2-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/art/2/art-2-mobile.jpg");
}

.art-2-2-preview label.style-card-preview .style-background .style-linksPreview span {
  border-radius: 7.5px;
  background: rgba(255, 255, 255, 0.7);
}

[class*="art-2"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: rgba(255, 255, 255, 0.7);
}

.art-2-2-profile {
  background: url("/static/images/themes/art/2/art-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-2-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/art/2/art-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-2-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.7);
}

.art-2-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Gupter";
  color: #333333;
}

.art-2-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: white;
}

.art-2-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 2rem/20px "Gupter";
}

.art-2-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Gupter";
}

.art-2-2-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

.art-2-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.art-2-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.2rem/20px "Gupter";
}

.art-2-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow";
  border-radius: 10px;
  background-color: white;
  color: black;
}

.art-2-2-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: black;
}

.art-2-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.art-2-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #F86F69;
}

.art-2-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  color: #F86F69;
}

.art-2-2-profile .profileLinks-wrapper .profileLink-item_body span {
  color: #F86F69;
}

.art-2-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  color: #F86F69;
}

.art-2-2-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: #F86F69;
}

.art-2-styleChanger .styleChanger-option:nth-of-type(2) {
  background: rgba(255, 255, 255, 0.7);
}

.art-2-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/art/2/art-2-mobile.jpg");
}

.art-2-3-preview label.style-card-preview .style-background .style-linksPreview span {
  border-radius: 7.5px;
  background: rgba(242, 106, 102, 0.7);
}

[class*="art-2"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: rgba(242, 106, 102, 0.7);
}

.art-2-3-profile {
  background: url("/static/images/themes/art/2/art-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-2-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/art/2/art-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-2-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: rgba(242, 106, 102, 0.7);
}

.art-2-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Gupter";
  color: #333333;
}

.art-2-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: white;
}

.art-2-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 2rem/20px "Gupter";
}

.art-2-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Gupter";
}

.art-2-3-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(242, 106, 102, 0.7);
  border-radius: 10px;
}

.art-2-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.art-2-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.2rem/20px "Gupter";
}

.art-2-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow";
  border-radius: 10px;
  background-color: white;
  color: black;
}

.art-2-3-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: black;
}

.art-2-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.art-2-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #F86F69;
}

.art-2-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  color: white;
}

.art-2-3-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.art-2-3-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.art-2-styleChanger .styleChanger-option:nth-of-type(3) {
  background: rgba(242, 106, 102, 0.7);
}

.art-2-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/art/2/art-2-mobile.jpg");
}

.art-2-4-preview label.style-card-preview .style-background .style-linksPreview span {
  border-radius: 7.5px;
  background: rgba(196, 190, 155, 0.7);
}

[class*="art-2"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: rgba(196, 190, 155, 0.7);
}

.art-2-4-profile {
  background: url("/static/images/themes/art/2/art-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-2-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/art/2/art-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.art-2-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: rgba(196, 190, 155, 0.7);
}

.art-2-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Gupter";
  color: #333333;
}

.art-2-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: white;
}

.art-2-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 2rem/20px "Gupter";
}

.art-2-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Gupter";
}

.art-2-4-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(196, 190, 155, 0.7);
  border-radius: 10px;
}

.art-2-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.art-2-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.2rem/20px "Gupter";
}

.art-2-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow";
  border-radius: 10px;
  background-color: white;
  color: black;
}

.art-2-4-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: black;
}

.art-2-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.art-2-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #000000;
}

.art-2-styleChanger .styleChanger-option:nth-of-type(4) {
  background: rgba(196, 190, 155, 0.7);
}

@media screen and (max-width: 576px) {
  .art-2-1-profile {
    background: url("/static/images/themes/art/2/art-2-mobile.jpg");
  }
  .art-2-1-profile .profileLinks-wrapper {
    background: url("/static/images/themes/art/2/art-2-mobile.jpg");
  }
  .art-2-2-profile {
    background: url("/static/images/themes/art/2/art-2-mobile.jpg");
  }
  .art-2-2-profile .profileLinks-wrapper {
    background: url("/static/images/themes/art/2/art-2-mobile.jpg");
  }
  .art-2-3-profile {
    background: url("/static/images/themes/art/2/art-2-mobile.jpg");
  }
  .art-2-3-profile .profileLinks-wrapper {
    background: url("/static/images/themes/art/2/art-2-mobile.jpg");
  }
  .art-2-4-profile {
    background: url("/static/images/themes/art/2/art-2-mobile.jpg");
  }
  .art-2-4-profile .profileLinks-wrapper {
    background: url("/static/images/themes/art/2/art-2-mobile.jpg");
  }
}

.celebrate-1-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png");
  background-color: #FFFFFF;
}

.celebrate-1-1-preview label.style-card-preview .style-background .style-linksPreview span {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid #FFFFFF;
}

[class*="celebrate-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: #FFFFFF;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: #FFFFFF;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-1-profile {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #FFFFFF;
}

.celebrate-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
  background-color: white;
}

.celebrate-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-1-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 2px solid #FFFFFF;
}

.celebrate-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.celebrate-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.celebrate-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.celebrate-1-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png");
  background-color: #FFDCF7;
}

.celebrate-1-2-preview label.style-card-preview .style-background .style-linksPreview span {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid #FFFFFF;
}

[class*="celebrate-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: #FFDCF7;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: #FFDCF7;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-2-profile {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #FFDCF7;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #FFDCF7;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #FFDCF7;
}

.celebrate-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
  background-color: white;
}

.celebrate-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-2-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 2px solid #FFFFFF;
}

.celebrate-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.celebrate-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.celebrate-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.celebrate-1-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png");
  background-color: #DCF4FF;
}

.celebrate-1-3-preview label.style-card-preview .style-background .style-linksPreview span {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid #FFFFFF;
}

[class*="celebrate-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: #DCF4FF;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: #DCF4FF;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-3-profile {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #DCF4FF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #DCF4FF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #DCF4FF;
}

.celebrate-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
  background-color: white;
}

.celebrate-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-3-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 2px solid #FFFFFF;
}

.celebrate-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.celebrate-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.celebrate-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.celebrate-1-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png");
  background-color: #FFFBDC;
}

.celebrate-1-4-preview label.style-card-preview .style-background .style-linksPreview span {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid #FFFFFF;
}

[class*="celebrate-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: #FFFBDC;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: #FFFBDC;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-4-profile {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #FFFBDC;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #FFFBDC;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #FFFBDC;
}

.celebrate-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
  background-color: white;
}

.celebrate-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-4-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 2px solid #FFFFFF;
}

.celebrate-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.celebrate-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.celebrate-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.celebrate-1-5-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png");
  background-color: #F2F2F2;
}

.celebrate-1-5-preview label.style-card-preview .style-background .style-linksPreview span {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid #FFFFFF;
}

[class*="celebrate-1"] .style-card-options .style-card-option:nth-of-type(5) label {
  background: #F2F2F2;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-styleChanger .styleChanger-option:nth-of-type(5) {
  background: #F2F2F2;
  background-size: 100%;
  background-repeat: no-repeat;
}

.celebrate-1-5-profile {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #F2F2F2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-5-profile .profileLinks-wrapper {
  background: url("/static/images/themes/celebrate/1/celebrate-1-mobile.png") #F2F2F2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.celebrate-1-5-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #F2F2F2;
}

.celebrate-1-5-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-5-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
  background-color: white;
}

.celebrate-1-5-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-5-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.celebrate-1-5-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 2px solid #FFFFFF;
}

.celebrate-1-5-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.celebrate-1-5-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.celebrate-1-5-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.celebrate-1-5-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.crypto-1-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/crypto/1/crypto-1-mobile.jpg");
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-crypto-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-crypto-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-crypto-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-crypto-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.crypto-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: url("/static/images/themes/crypto/1/crypto-1-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.crypto-1-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/crypto/1/crypto-2-mobile.jpg");
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-crypto-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-crypto-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-crypto-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-crypto-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.crypto-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: url("/static/images/themes/crypto/1/crypto-2-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.crypto-1-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/crypto/1/crypto-3-mobile.jpg");
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-crypto-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-crypto-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-crypto-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-crypto-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.crypto-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: url("/static/images/themes/crypto/1/crypto-3-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.crypto-1-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/crypto/1/crypto-4-mobile.jpg");
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-crypto-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-crypto-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-crypto-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="crypto-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-crypto-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.crypto-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: url("/static/images/themes/crypto/1/crypto-4-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.crypto-1-1-profile {
  background: url("/static/images/themes/crypto/1/crypto-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.crypto-1-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/crypto/1/crypto-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.crypto-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: white;
  background-color: white;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 700 1.8rem/20px "Barlow", sans-serif;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 600 1.8rem/20px "Barlow", sans-serif;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
  background: rgba(0, 175, 240, 0.25);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.crypto-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: transparent;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: white;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  color: white;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.crypto-1-1-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(255, 255, 255, 0.15);
}

.crypto-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: rgba(255, 255, 255, 0.15);
}

.crypto-1-2-profile {
  background: url("/static/images/themes/crypto/1/crypto-2-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.crypto-1-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/crypto/1/crypto-2-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.crypto-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: white;
  background-color: white;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 700 1.8rem/20px "Barlow", sans-serif;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 600 1.8rem/20px "Barlow", sans-serif;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
  background: rgba(0, 175, 240, 0.25);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.crypto-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: transparent;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: white;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  color: white;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.crypto-1-2-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(0, 0, 0, 0.35);
}

.crypto-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: rgba(0, 0, 0, 0.35);
}

.crypto-1-2-profile .profileLinks-wrapper .link-copy {
  color: white;
}

.crypto-1-3-profile {
  background: url("/static/images/themes/crypto/1/crypto-3-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.crypto-1-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/crypto/1/crypto-3-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.crypto-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: white;
  background-color: white;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 700 1.8rem/20px "Barlow", sans-serif;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 600 1.8rem/20px "Barlow", sans-serif;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
  background: rgba(0, 175, 240, 0.25);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.crypto-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: transparent;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: white;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  color: white;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.crypto-1-3-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(0, 175, 240, 0.25);
}

.crypto-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: rgba(0, 175, 240, 0.25);
}

.crypto-1-4-profile {
  background: url("/static/images/themes/crypto/1/crypto-4-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.crypto-1-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/crypto/1/crypto-4-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.crypto-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: white;
  background-color: white;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 700 1.8rem/20px "Barlow", sans-serif;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 600 1.8rem/20px "Barlow", sans-serif;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
  background: rgba(0, 175, 240, 0.25);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.crypto-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: transparent;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: white;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  color: white;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.crypto-1-4-profile .profileLinks-wrapper .profileLink-item {
  background: rgba(0, 175, 240, 0.25);
}

.crypto-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: rgba(0, 175, 240, 0.25);
}

.gaming-1-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/gaming/1/gaming-1.jpg");
}

.gaming-1-1-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #fff;
  border-radius: 0px;
}

.gaming-1-1-preview label.style-card-preview .style-background .style-linksPreview span {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.63%, #CE18C5), to(#51086B));
  background: linear-gradient(90deg, #CE18C5 0.63%, #51086B 100%);
  border: 1px solid #FF58F7;
  border-radius: .2rem;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-gaming-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-gaming-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-gaming-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-gaming-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gaming-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: url("/static/images/themes/gaming/1/gaming-1.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gaming-1-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/gaming/1/gaming-1.jpg");
}

.gaming-1-2-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #fff;
  border-radius: 0px;
}

.gaming-1-2-preview label.style-card-preview .style-background .style-linksPreview span {
  -webkit-clip-path: polygon(0.5rem 0%, 100% 0, 100% calc(50% + .5rem), calc(100% - .5rem) 100%, 0 100%, 0% 0.5rem);
          clip-path: polygon(0.5rem 0%, 100% 0, 100% calc(50% + .5rem), calc(100% - .5rem) 100%, 0 100%, 0% 0.5rem);
  background: radial-gradient(70.75% 115% at 50.32% 50%, #0085FF 0%, rgba(0, 51, 77, 0) 100%);
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-gaming-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-gaming-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-gaming-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-gaming-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gaming-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: url("/static/images/themes/gaming/1/gaming-1.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gaming-1-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/gaming/1/gaming-2.jpg");
}

.gaming-1-3-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #fff;
  border-radius: 0px;
}

.gaming-1-3-preview label.style-card-preview .style-background .style-linksPreview span {
  position: relative;
  background: rgba(111, 203, 255, 0.2);
}

.gaming-1-3-preview label.style-card-preview .style-background .style-linksPreview span::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: .2rem;
  height: 100%;
  background-color: #FF8008;
  -webkit-box-shadow: 0px 0px 10px #FF8008;
          box-shadow: 0px 0px 10px #FF8008;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-gaming-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-gaming-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-gaming-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-gaming-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gaming-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: url("/static/images/themes/gaming/1/gaming-2.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gaming-1-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/gaming/1/gaming-3.jpg");
}

.gaming-1-4-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #fff;
  border-radius: 0px;
}

.gaming-1-4-preview label.style-card-preview .style-background .style-linksPreview span {
  position: relative;
  border-radius: .2rem;
  background: rgba(255, 143, 172, 0.2);
  border: 1px solid #EE1D52;
  z-index: 1;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-gaming-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-gaming-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-gaming-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="gaming-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-gaming-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gaming-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: url("/static/images/themes/gaming/1/gaming-3.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gaming-1-1-profile {
  background: url("/static/images/themes/gaming/1/gaming-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gaming-1-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/gaming/1/gaming-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gaming-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.gaming-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Tomorrow";
  color: white;
}

.gaming-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: "transparent";
}

.gaming-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Tomorrow";
}

.gaming-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Tomorrow";
}

.gaming-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gaming-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 500 1.8rem/20px "Tomorrow";
  color: white;
}

.gaming-1-1-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.gaming-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Tomorrow";
  border-radius: 1rem;
  color: white;
  border: 2px solid white;
}

.gaming-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.gaming-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.gaming-1-1-profile .profileLinks-wrapper .profileLink-item {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.63%, #CE18C5), to(#51086B));
  background: linear-gradient(90deg, #CE18C5 0.63%, #51086B 100%);
  border: 2px solid #FF58F7;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.gaming-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FF58F7;
}

.gaming-1-2-profile {
  background: url("/static/images/themes/gaming/1/gaming-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gaming-1-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/gaming/1/gaming-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gaming-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.gaming-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Tomorrow";
  color: white;
}

.gaming-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: "transparent";
}

.gaming-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Tomorrow";
}

.gaming-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Tomorrow";
}

.gaming-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gaming-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 500 1.8rem/20px "Tomorrow";
  color: white;
}

.gaming-1-2-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.gaming-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Tomorrow";
  border-radius: 1rem;
  color: white;
  border: 2px solid white;
}

.gaming-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.gaming-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.gaming-1-2-profile .profileLinks-wrapper .profileLink-item {
  position: relative;
  z-index: 1;
  -webkit-clip-path: polygon(2rem 0%, 100% 0, 100% calc(50% + 2rem), calc(100% - 2rem) 100%, 0 100%, 0% 2rem);
          clip-path: polygon(2rem 0%, 100% 0, 100% calc(50% + 2rem), calc(100% - 2rem) 100%, 0 100%, 0% 2rem);
  background: radial-gradient(70.75% 115% at 50.32% 50%, #0085FF 0%, rgba(0, 51, 77, 0) 100%);
}

.gaming-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #52C5FD;
}

.gaming-1-3-profile {
  background: url("/static/images/themes/gaming/1/gaming-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gaming-1-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/gaming/1/gaming-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gaming-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.gaming-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Tomorrow";
  color: white;
}

.gaming-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: "transparent";
}

.gaming-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Tomorrow";
}

.gaming-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Tomorrow";
}

.gaming-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gaming-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 500 1.8rem/20px "Tomorrow";
  color: white;
}

.gaming-1-3-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.gaming-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Tomorrow";
  border-radius: 1rem;
  color: white;
  border: 2px solid white;
}

.gaming-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.gaming-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.gaming-1-3-profile .profileLinks-wrapper .profileLink-item {
  position: relative;
  background: rgba(111, 203, 255, 0.2);
}

.gaming-1-3-profile .profileLinks-wrapper .profileLink-item::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: .5rem;
  height: 100%;
  background-color: #FF8008;
  -webkit-box-shadow: 0px 0px 20px #FF8008;
          box-shadow: 0px 0px 20px #FF8008;
}

.gaming-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FF8008;
}

.gaming-1-4-profile {
  background: url("/static/images/themes/gaming/1/gaming-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gaming-1-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/gaming/1/gaming-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gaming-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.gaming-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Tomorrow";
  color: white;
}

.gaming-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: "transparent";
}

.gaming-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Tomorrow";
}

.gaming-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Tomorrow";
}

.gaming-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gaming-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 500 1.8rem/20px "Tomorrow";
  color: white;
}

.gaming-1-4-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.gaming-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Tomorrow";
  border-radius: 1rem;
  color: white;
  border: 2px solid white;
}

.gaming-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.gaming-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.gaming-1-4-profile .profileLinks-wrapper .profileLink-item {
  position: relative;
  background: rgba(255, 143, 172, 0.2);
  border: 2px solid #EE1D52;
  border-radius: 1rem;
  z-index: 1;
}

.gaming-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #E83C3C;
}

.gradient-3-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/gradient/3/gradient-1-mobile.jpg");
}

.gradient-3-1-preview label.style-card-preview .style-background .style-linksPreview span {
  border-radius: 10px 0px;
}

[class*="gradient-3"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/themes/gradient/3/gradient-1-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-styleChanger .styleChanger-option:nth-of-type(1) {
  background: url("/static/images/themes/gradient/3/gradient-1-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/gradient/3/gradient-2-mobile.jpg");
}

.gradient-3-2-preview label.style-card-preview .style-background .style-linksPreview span {
  border-radius: 10px 0px;
}

[class*="gradient-3"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/themes/gradient/3/gradient-2-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-styleChanger .styleChanger-option:nth-of-type(2) {
  background: url("/static/images/themes/gradient/3/gradient-2-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/gradient/3/gradient-3-mobile.jpg");
}

.gradient-3-3-preview label.style-card-preview .style-background .style-linksPreview span {
  border-radius: 10px 0px;
}

[class*="gradient-3"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/themes/gradient/3/gradient-3-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-styleChanger .styleChanger-option:nth-of-type(3) {
  background: url("/static/images/themes/gradient/3/gradient-3-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/gradient/3/gradient-4-mobile.jpg");
}

.gradient-3-4-preview label.style-card-preview .style-background .style-linksPreview span {
  border-radius: 10px 0px;
}

[class*="gradient-3"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/themes/gradient/3/gradient-4-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-styleChanger .styleChanger-option:nth-of-type(4) {
  background: url("/static/images/themes/gradient/3/gradient-4-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-5-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/gradient/3/gradient-5-mobile.jpg");
}

.gradient-3-5-preview label.style-card-preview .style-background .style-linksPreview span {
  border-radius: 10px 0px;
}

[class*="gradient-3"] .style-card-options .style-card-option:nth-of-type(5) label {
  background: url("/static/images/themes/gradient/3/gradient-5-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-styleChanger .styleChanger-option:nth-of-type(5) {
  background: url("/static/images/themes/gradient/3/gradient-5-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.gradient-3-1-profile {
  background: url("/static/images/themes/gradient/3/gradient-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/gradient/3/gradient-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #B03B5C;
  background-color: white;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 30px 0px;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 15px 15px 15px 0px;
  background-color: white;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: black;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 15px 15px 15px 0px;
  color: black;
  border: 2px solid black;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  color: #B03B5C;
}

.gradient-3-1-profile .profileLinks-wrapper .profileLinks-header_location p, .gradient-3-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
}

.gradient-3-2-profile {
  background: url("/static/images/themes/gradient/3/gradient-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/gradient/3/gradient-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #B03B5C;
  background-color: white;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 30px 0px;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 15px 15px 15px 0px;
  background-color: white;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: black;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 15px 15px 15px 0px;
  color: black;
  border: 2px solid black;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  color: black;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLink-item {
  background: #B03B5C;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLinks-header_location p, .gradient-3-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  color: white;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  color: white;
  border-color: white;
}

.gradient-3-2-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.gradient-3-3-profile {
  background: url("/static/images/themes/gradient/3/gradient-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/gradient/3/gradient-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.gradient-3-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.gradient-3-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #B03B5C;
  background-color: white;
}

.gradient-3-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-3-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 30px 0px;
}

.gradient-3-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 15px 15px 15px 0px;
  background-color: white;
}

.gradient-3-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: black;
}

.gradient-3-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 15px 15px 15px 0px;
  color: black;
  border: 2px solid black;
}

.gradient-3-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.gradient-3-4-profile {
  background: url("/static/images/themes/gradient/3/gradient-4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/gradient/3/gradient-4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.gradient-3-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.gradient-3-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #B03B5C;
  background-color: white;
}

.gradient-3-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-4-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 30px 0px;
}

.gradient-3-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 15px 15px 15px 0px;
  background-color: white;
}

.gradient-3-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: black;
}

.gradient-3-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 15px 15px 15px 0px;
  color: black;
  border: 2px solid black;
}

.gradient-3-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.gradient-3-5-profile {
  background: url("/static/images/themes/gradient/3/gradient-5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-5-profile .profileLinks-wrapper {
  background: url("/static/images/themes/gradient/3/gradient-5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-3-5-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.gradient-3-5-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.gradient-3-5-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #B03B5C;
  background-color: white;
}

.gradient-3-5-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-5-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.gradient-3-5-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 30px 0px;
}

.gradient-3-5-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 15px 15px 15px 0px;
  background-color: white;
}

.gradient-3-5-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: black;
}

.gradient-3-5-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 15px 15px 15px 0px;
  color: black;
  border: 2px solid black;
}

.gradient-3-5-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

@media screen and (max-width: 576px) {
  .gradient-3-1-profile {
    background: url("/static/images/themes/gradient/3/gradient-1-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gradient-3-1-profile .profileLinks-wrapper {
    background: url("/static/images/themes/gradient/3/gradient-1-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gradient-3-2-profile {
    background: url("/static/images/themes/gradient/3/gradient-2-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gradient-3-2-profile .profileLinks-wrapper {
    background: url("/static/images/themes/gradient/3/gradient-2-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gradient-3-3-profile {
    background: url("/static/images/themes/gradient/3/gradient-3-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gradient-3-3-profile .profileLinks-wrapper {
    background: url("/static/images/themes/gradient/3/gradient-3-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gradient-3-4-profile {
    background: url("/static/images/themes/gradient/3/gradient-4-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gradient-3-4-profile .profileLinks-wrapper {
    background: url("/static/images/themes/gradient/3/gradient-4-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gradient-3-5-profile {
    background: url("/static/images/themes/gradient/3/gradient-5-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .gradient-3-5-profile .profileLinks-wrapper {
    background: url("/static/images/themes/gradient/3/gradient-5-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.neon-1-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
}

.neon-1-1-preview label.style-card-preview .style-background .style-linksPreview span {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: #161616;
}

.neon-1-1-preview label.style-card-preview .style-background .style-linksPreview span:first-child {
  -webkit-box-shadow: 0px 0px 10px rgba(255, 0, 170, 0.25), 0px 0px 20px rgba(255, 0, 170, 0.8), inset 0px 0px 5px rgba(255, 0, 170, 0.5), inset 0px 0px 10px 5px rgba(255, 0, 170, 0.5);
          box-shadow: 0px 0px 10px rgba(255, 0, 170, 0.25), 0px 0px 20px rgba(255, 0, 170, 0.8), inset 0px 0px 5px rgba(255, 0, 170, 0.5), inset 0px 0px 10px 5px rgba(255, 0, 170, 0.5);
}

[class*="neon-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: #161616 !important;
  -webkit-box-shadow: 0px 0px 10px rgba(255, 0, 170, 0.25), 0px 0px 20px rgba(255, 0, 170, 0.8), inset 0px 0px 5px rgba(255, 0, 170, 0.5), inset 0px 0px 10px 5px rgba(255, 0, 170, 0.5) !important;
          box-shadow: 0px 0px 10px rgba(255, 0, 170, 0.25), 0px 0px 20px rgba(255, 0, 170, 0.8), inset 0px 0px 5px rgba(255, 0, 170, 0.5), inset 0px 0px 10px 5px rgba(255, 0, 170, 0.5) !important;
}

.neon-1-1-profile {
  background: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.neon-1-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.neon-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.neon-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.neon-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: 0px 0px 10px rgba(255, 0, 170, 0.25), 0px 0px 20px rgba(255, 0, 170, 0.8), inset 0px 0px 5px rgba(255, 0, 170, 0.5), inset 0px 0px 10px 5px rgba(255, 0, 170, 0.5);
}

.neon-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.neon-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.neon-1-1-profile .profileLinks-wrapper .profileLink-item {
  background: black;
  border-radius: 10px;
  border: 2px solid white;
}

.neon-1-1-profile .profileLinks-wrapper .profileLink-item:first-child {
  -webkit-box-shadow: 0px 0px 10px rgba(255, 0, 170, 0.25), 0px 0px 20px rgba(255, 0, 170, 0.8), inset 0px 0px 5px rgba(255, 0, 170, 0.5), inset 0px 0px 10px 5px rgba(255, 0, 170, 0.5);
          box-shadow: 0px 0px 10px rgba(255, 0, 170, 0.25), 0px 0px 20px rgba(255, 0, 170, 0.8), inset 0px 0px 5px rgba(255, 0, 170, 0.5), inset 0px 0px 10px 5px rgba(255, 0, 170, 0.5);
}

.neon-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.neon-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: white;
}

.neon-1-1-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.neon-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: white;
  border: 2px solid white;
}

.neon-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.neon-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.neon-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FF00AA;
}

.neon-1-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
}

.neon-1-2-preview label.style-card-preview .style-background .style-linksPreview span {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: #161616;
}

.neon-1-2-preview label.style-card-preview .style-background .style-linksPreview span:first-child {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 170, 255, 0.25), 0px 0px 20px rgba(0, 170, 255, 0.8), inset 0px 0px 5px rgba(0, 170, 255, 0.5), inset 0px 0px 10px 5px rgba(0, 170, 255, 0.5);
          box-shadow: 0px 0px 10px rgba(0, 170, 255, 0.25), 0px 0px 20px rgba(0, 170, 255, 0.8), inset 0px 0px 5px rgba(0, 170, 255, 0.5), inset 0px 0px 10px 5px rgba(0, 170, 255, 0.5);
}

[class*="neon-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: #161616 !important;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 170, 255, 0.25), 0px 0px 20px rgba(0, 170, 255, 0.8), inset 0px 0px 5px rgba(0, 170, 255, 0.5), inset 0px 0px 10px 5px rgba(0, 170, 255, 0.5) !important;
          box-shadow: 0px 0px 10px rgba(0, 170, 255, 0.25), 0px 0px 20px rgba(0, 170, 255, 0.8), inset 0px 0px 5px rgba(0, 170, 255, 0.5), inset 0px 0px 10px 5px rgba(0, 170, 255, 0.5) !important;
}

.neon-1-2-profile {
  background: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.neon-1-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.neon-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.neon-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.neon-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: 0px 0px 10px rgba(0, 170, 255, 0.25), 0px 0px 20px rgba(0, 170, 255, 0.8), inset 0px 0px 5px rgba(0, 170, 255, 0.5), inset 0px 0px 10px 5px rgba(0, 170, 255, 0.5);
}

.neon-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.neon-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.neon-1-2-profile .profileLinks-wrapper .profileLink-item {
  background: black;
  border-radius: 10px;
  border: 2px solid white;
}

.neon-1-2-profile .profileLinks-wrapper .profileLink-item:first-child {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 170, 255, 0.25), 0px 0px 20px rgba(0, 170, 255, 0.8), inset 0px 0px 5px rgba(0, 170, 255, 0.5), inset 0px 0px 10px 5px rgba(0, 170, 255, 0.5);
          box-shadow: 0px 0px 10px rgba(0, 170, 255, 0.25), 0px 0px 20px rgba(0, 170, 255, 0.8), inset 0px 0px 5px rgba(0, 170, 255, 0.5), inset 0px 0px 10px 5px rgba(0, 170, 255, 0.5);
}

.neon-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.neon-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: white;
}

.neon-1-2-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.neon-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: white;
  border: 2px solid white;
}

.neon-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.neon-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.neon-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #00AAFF;
}

.neon-1-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
}

.neon-1-3-preview label.style-card-preview .style-background .style-linksPreview span {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: #161616;
}

.neon-1-3-preview label.style-card-preview .style-background .style-linksPreview span:first-child {
  -webkit-box-shadow: 0px 0px 10px rgba(170, 0, 255, 0.25), 0px 0px 20px rgba(170, 0, 255, 0.8), inset 0px 0px 5px rgba(170, 0, 255, 0.5), inset 0px 0px 10px 5px rgba(170, 0, 255, 0.5);
          box-shadow: 0px 0px 10px rgba(170, 0, 255, 0.25), 0px 0px 20px rgba(170, 0, 255, 0.8), inset 0px 0px 5px rgba(170, 0, 255, 0.5), inset 0px 0px 10px 5px rgba(170, 0, 255, 0.5);
}

[class*="neon-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: #161616 !important;
  -webkit-box-shadow: 0px 0px 10px rgba(170, 0, 255, 0.25), 0px 0px 20px rgba(170, 0, 255, 0.8), inset 0px 0px 5px rgba(170, 0, 255, 0.5), inset 0px 0px 10px 5px rgba(170, 0, 255, 0.5) !important;
          box-shadow: 0px 0px 10px rgba(170, 0, 255, 0.25), 0px 0px 20px rgba(170, 0, 255, 0.8), inset 0px 0px 5px rgba(170, 0, 255, 0.5), inset 0px 0px 10px 5px rgba(170, 0, 255, 0.5) !important;
}

.neon-1-3-profile {
  background: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.neon-1-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.neon-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.neon-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.neon-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: 0px 0px 10px rgba(170, 0, 255, 0.25), 0px 0px 20px rgba(170, 0, 255, 0.8), inset 0px 0px 5px rgba(170, 0, 255, 0.5), inset 0px 0px 10px 5px rgba(170, 0, 255, 0.5);
}

.neon-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.neon-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.neon-1-3-profile .profileLinks-wrapper .profileLink-item {
  background: black;
  border-radius: 10px;
  border: 2px solid white;
}

.neon-1-3-profile .profileLinks-wrapper .profileLink-item:first-child {
  -webkit-box-shadow: 0px 0px 10px rgba(170, 0, 255, 0.25), 0px 0px 20px rgba(170, 0, 255, 0.8), inset 0px 0px 5px rgba(170, 0, 255, 0.5), inset 0px 0px 10px 5px rgba(170, 0, 255, 0.5);
          box-shadow: 0px 0px 10px rgba(170, 0, 255, 0.25), 0px 0px 20px rgba(170, 0, 255, 0.8), inset 0px 0px 5px rgba(170, 0, 255, 0.5), inset 0px 0px 10px 5px rgba(170, 0, 255, 0.5);
}

.neon-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.neon-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: white;
}

.neon-1-3-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.neon-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: white;
  border: 2px solid white;
}

.neon-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.neon-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.neon-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #AA00FF;
}

.neon-1-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
}

.neon-1-4-preview label.style-card-preview .style-background .style-linksPreview span {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: #161616;
}

.neon-1-4-preview label.style-card-preview .style-background .style-linksPreview span:first-child {
  -webkit-box-shadow: 0px 0px 10px rgba(38, 255, 0, 0.25), 0px 0px 20px rgba(38, 255, 0, 0.8), inset 0px 0px 5px rgba(38, 255, 0, 0.5), inset 0px 0px 10px 5px rgba(38, 255, 0, 0.5);
          box-shadow: 0px 0px 10px rgba(38, 255, 0, 0.25), 0px 0px 20px rgba(38, 255, 0, 0.8), inset 0px 0px 5px rgba(38, 255, 0, 0.5), inset 0px 0px 10px 5px rgba(38, 255, 0, 0.5);
}

[class*="neon-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: #161616 !important;
  -webkit-box-shadow: 0px 0px 10px rgba(38, 255, 0, 0.25), 0px 0px 20px rgba(38, 255, 0, 0.8), inset 0px 0px 5px rgba(38, 255, 0, 0.5), inset 0px 0px 10px 5px rgba(38, 255, 0, 0.5) !important;
          box-shadow: 0px 0px 10px rgba(38, 255, 0, 0.25), 0px 0px 20px rgba(38, 255, 0, 0.8), inset 0px 0px 5px rgba(38, 255, 0, 0.5), inset 0px 0px 10px 5px rgba(38, 255, 0, 0.5) !important;
}

.neon-1-4-profile {
  background: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.neon-1-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/neon/1/neon-1-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.neon-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.neon-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: white;
}

.neon-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: 0px 0px 10px rgba(38, 255, 0, 0.25), 0px 0px 20px rgba(38, 255, 0, 0.8), inset 0px 0px 5px rgba(38, 255, 0, 0.5), inset 0px 0px 10px 5px rgba(38, 255, 0, 0.5);
}

.neon-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.neon-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.neon-1-4-profile .profileLinks-wrapper .profileLink-item {
  background: black;
  border-radius: 10px;
  border: 2px solid white;
}

.neon-1-4-profile .profileLinks-wrapper .profileLink-item:first-child {
  -webkit-box-shadow: 0px 0px 10px rgba(38, 255, 0, 0.25), 0px 0px 20px rgba(38, 255, 0, 0.8), inset 0px 0px 5px rgba(38, 255, 0, 0.5), inset 0px 0px 10px 5px rgba(38, 255, 0, 0.5);
          box-shadow: 0px 0px 10px rgba(38, 255, 0, 0.25), 0px 0px 20px rgba(38, 255, 0, 0.8), inset 0px 0px 5px rgba(38, 255, 0, 0.5), inset 0px 0px 10px 5px rgba(38, 255, 0, 0.5);
}

.neon-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.neon-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: white;
}

.neon-1-4-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.neon-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: white;
  border: 2px solid white;
}

.neon-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.neon-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.neon-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #26FF00;
}

.neon-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: #FF00AA;
}

.neon-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: #00AAFF;
}

.neon-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: #AA00FF;
}

.neon-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: #26FF00;
}

.pastel-1-1-preview label.style-card-preview .style-background .background-image {
  background: #D9FEDF;
}

.pastel-1-1-preview label.style-card-preview .style-background .style-linksPreview span {
  background-color: white;
}

[class*="pastel-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: #D9FEDF;
  background-size: 100%;
  background-repeat: no-repeat;
}

.pastel-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: #D9FEDF;
}

.pastel-1-1-profile {
  background: #D9FEDF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-1-profile .profileLinks-wrapper {
  background: #D9FEDF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.pastel-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: black;
  background-color: white;
}

.pastel-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-1-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 20px;
}

.pastel-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.pastel-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.pastel-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.pastel-1-2-preview label.style-card-preview .style-background .background-image {
  background: #D9EEFD;
}

.pastel-1-2-preview label.style-card-preview .style-background .style-linksPreview span {
  background-color: white;
}

[class*="pastel-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: #D9EEFD;
  background-size: 100%;
  background-repeat: no-repeat;
}

.pastel-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: #D9EEFD;
}

.pastel-1-2-profile {
  background: #D9EEFD;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-2-profile .profileLinks-wrapper {
  background: #D9EEFD;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.pastel-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: black;
  background-color: white;
}

.pastel-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-2-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 20px;
}

.pastel-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.pastel-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.pastel-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.pastel-1-3-preview label.style-card-preview .style-background .background-image {
  background: #E8DCFF;
}

.pastel-1-3-preview label.style-card-preview .style-background .style-linksPreview span {
  background-color: white;
}

[class*="pastel-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: #E8DCFF;
  background-size: 100%;
  background-repeat: no-repeat;
}

.pastel-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: #E8DCFF;
}

.pastel-1-3-profile {
  background: #E8DCFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-3-profile .profileLinks-wrapper {
  background: #E8DCFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.pastel-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: black;
  background-color: white;
}

.pastel-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-3-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 20px;
}

.pastel-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.pastel-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.pastel-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.pastel-1-4-preview label.style-card-preview .style-background .background-image {
  background: #F8DEDF;
}

.pastel-1-4-preview label.style-card-preview .style-background .style-linksPreview span {
  background-color: white;
}

[class*="pastel-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: #F8DEDF;
  background-size: 100%;
  background-repeat: no-repeat;
}

.pastel-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: #F8DEDF;
}

.pastel-1-4-profile {
  background: #F8DEDF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-4-profile .profileLinks-wrapper {
  background: #F8DEDF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.pastel-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: black;
  background-color: white;
}

.pastel-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-4-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 20px;
}

.pastel-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.pastel-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.pastel-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.pastel-1-5-preview label.style-card-preview .style-background .background-image {
  background: #FEF1DC;
}

.pastel-1-5-preview label.style-card-preview .style-background .style-linksPreview span {
  background-color: white;
}

[class*="pastel-1"] .style-card-options .style-card-option:nth-of-type(5) label {
  background: #FEF1DC;
  background-size: 100%;
  background-repeat: no-repeat;
}

.pastel-1-styleChanger .styleChanger-option:nth-of-type(5) {
  background: #FEF1DC;
}

.pastel-1-5-profile {
  background: #FEF1DC;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-5-profile .profileLinks-wrapper {
  background: #FEF1DC;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pastel-1-5-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.pastel-1-5-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-5-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: black;
  background-color: white;
}

.pastel-1-5-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-5-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pastel-1-5-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 20px;
}

.pastel-1-5-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.pastel-1-5-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pastel-1-5-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.pastel-1-5-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.pattern-1-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/pattern/1/pattern-1-mobile.jpg");
}

.pattern-1-1-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(1) {
  background-color: #A9D6D1;
}

.pattern-1-1-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(2) {
  background-color: #FFE275;
}

.pattern-1-1-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(3) {
  background-color: #FFA4B7;
}

.pattern-1-1-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(4) {
  background-color: #B8D5EA;
}

.pattern-1-1-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(5) {
  background-color: #F9A77A;
}

.pattern-1-1-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(6) {
  background-color: #FF7D9A;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-pattern-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-pattern-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-pattern-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-pattern-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.pattern-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: url("/static/images/themes/pattern/1/pattern-1-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.pattern-1-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/pattern/1/pattern-2-mobile.jpg");
}

.pattern-1-2-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(1) {
  background-color: #A9D6D1;
}

.pattern-1-2-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(2) {
  background-color: #FFE275;
}

.pattern-1-2-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(3) {
  background-color: #FFA4B7;
}

.pattern-1-2-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(4) {
  background-color: #B8D5EA;
}

.pattern-1-2-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(5) {
  background-color: #F9A77A;
}

.pattern-1-2-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(6) {
  background-color: #FF7D9A;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-pattern-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-pattern-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-pattern-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-pattern-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.pattern-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: url("/static/images/themes/pattern/1/pattern-2-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.pattern-1-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/pattern/1/pattern-3-mobile.jpg");
}

.pattern-1-3-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(1) {
  background-color: #A9D6D1;
}

.pattern-1-3-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(2) {
  background-color: #FFE275;
}

.pattern-1-3-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(3) {
  background-color: #FFA4B7;
}

.pattern-1-3-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(4) {
  background-color: #B8D5EA;
}

.pattern-1-3-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(5) {
  background-color: #F9A77A;
}

.pattern-1-3-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(6) {
  background-color: #FF7D9A;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-pattern-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-pattern-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-pattern-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-pattern-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.pattern-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: url("/static/images/themes/pattern/1/pattern-3-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.pattern-1-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/pattern/1/pattern-4-mobile.jpg");
}

.pattern-1-4-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(1) {
  background-color: #A9D6D1;
}

.pattern-1-4-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(2) {
  background-color: #FFE275;
}

.pattern-1-4-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(3) {
  background-color: #FFA4B7;
}

.pattern-1-4-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(4) {
  background-color: #B8D5EA;
}

.pattern-1-4-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(5) {
  background-color: #F9A77A;
}

.pattern-1-4-preview label.style-card-preview .style-background .style-linksPreview span:nth-child(6) {
  background-color: #FF7D9A;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-pattern-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-pattern-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-pattern-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="pattern-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-pattern-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.pattern-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: url("/static/images/themes/pattern/1/pattern-4-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.pattern-1-1-profile {
  background: url("/static/images/themes/pattern/1/pattern-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pattern-1-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/pattern/1/pattern-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pattern-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
  background-color: transparent;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+1) {
  background: #A9D6D1;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+2) {
  background: #FFE275;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+3) {
  background: #FFA4B7;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+4) {
  background: #B8D5EA;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+5) {
  background: #F9A77A;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+6) {
  background: #FF7D9A;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.pattern-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.pattern-1-2-profile {
  background: url("/static/images/themes/pattern/1/pattern-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pattern-1-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/pattern/1/pattern-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pattern-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
  background-color: transparent;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+1) {
  background: #A9D6D1;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+2) {
  background: #FFE275;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+3) {
  background: #FFA4B7;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+4) {
  background: #B8D5EA;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+5) {
  background: #F9A77A;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+6) {
  background: #FF7D9A;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.pattern-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.pattern-1-3-profile {
  background: url("/static/images/themes/pattern/1/pattern-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pattern-1-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/pattern/1/pattern-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pattern-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
  background-color: transparent;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+1) {
  background: #A9D6D1;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+2) {
  background: #FFE275;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+3) {
  background: #FFA4B7;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+4) {
  background: #B8D5EA;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+5) {
  background: #F9A77A;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+6) {
  background: #FF7D9A;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.pattern-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.pattern-1-4-profile {
  background: url("/static/images/themes/pattern/1/pattern-4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pattern-1-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/pattern/1/pattern-4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pattern-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FFA857;
  background-color: transparent;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 500 1.8rem/20px "Barlow", sans-serif;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+1) {
  background: #A9D6D1;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+2) {
  background: #FFE275;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+3) {
  background: #FFA4B7;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+4) {
  background: #B8D5EA;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+5) {
  background: #F9A77A;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item:nth-child(6n+6) {
  background: #FF7D9A;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.pattern-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

@media screen and (max-width: 576px) {
  .pattern-1-1-profile {
    background: url("/static/images/themes/pattern/1/pattern-1-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .pattern-1-1-profile .profileLinks-wrapper {
    background: url("/static/images/themes/pattern/1/pattern-1-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .pattern-1-2-profile {
    background: url("/static/images/themes/pattern/1/pattern-2-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .pattern-1-2-profile .profileLinks-wrapper {
    background: url("/static/images/themes/pattern/1/pattern-2-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .pattern-1-3-profile {
    background: url("/static/images/themes/pattern/1/pattern-3-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .pattern-1-3-profile .profileLinks-wrapper {
    background: url("/static/images/themes/pattern/1/pattern-3-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .pattern-1-4-profile {
    background: url("/static/images/themes/pattern/1/pattern-4-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .pattern-1-4-profile .profileLinks-wrapper {
    background: url("/static/images/themes/pattern/1/pattern-4-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.polygon-1-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/polygon/1/polygon-1-mobile.jpg");
}

.polygon-1-1-preview label.style-card-preview .style-background .style-linksPreview span {
  background: white;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-polygon-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-polygon-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-polygon-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-polygon-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.polygon-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: url("/static/images/themes/polygon/1/polygon-1-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.polygon-1-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/polygon/1/polygon-2-mobile.jpg");
}

.polygon-1-2-preview label.style-card-preview .style-background .style-linksPreview span {
  background: white;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-polygon-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-polygon-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-polygon-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-polygon-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.polygon-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: url("/static/images/themes/polygon/1/polygon-2-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.polygon-1-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/polygon/1/polygon-3-mobile.jpg");
}

.polygon-1-3-preview label.style-card-preview .style-background .style-linksPreview span {
  background: white;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-polygon-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-polygon-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-polygon-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-polygon-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.polygon-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: url("/static/images/themes/polygon/1/polygon-3-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.polygon-1-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/polygon/1/polygon-4-mobile.jpg");
}

.polygon-1-4-preview label.style-card-preview .style-background .style-linksPreview span {
  background: white;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-polygon-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-polygon-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-polygon-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="polygon-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-polygon-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.polygon-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: url("/static/images/themes/polygon/1/polygon-4-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.polygon-1-1-profile {
  background: url("/static/images/themes/polygon/1/polygon-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.polygon-1-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/polygon/1/polygon-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.polygon-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.polygon-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.8rem/20px "Handlee";
  color: white;
}

.polygon-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #4A0669;
  background-color: white;
}

.polygon-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 400 1.8rem/20px "Handlee";
}

.polygon-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 400 1.8rem/20px "Handlee";
}

.polygon-1-1-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 10px;
}

.polygon-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 5rem;
  background-color: white;
}

.polygon-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.4rem/20px "Handlee";
  color: #333333;
}

.polygon-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 5rem;
  color: #333333;
  border: 2px solid #333333;
}

.polygon-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.polygon-1-2-profile {
  background: url("/static/images/themes/polygon/1/polygon-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.polygon-1-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/polygon/1/polygon-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.polygon-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.polygon-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.8rem/20px "Handlee";
  color: white;
}

.polygon-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #4A0669;
  background-color: white;
}

.polygon-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 400 1.8rem/20px "Handlee";
}

.polygon-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 400 1.8rem/20px "Handlee";
}

.polygon-1-2-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 10px;
}

.polygon-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 5rem;
  background-color: white;
}

.polygon-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.4rem/20px "Handlee";
  color: #333333;
}

.polygon-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 5rem;
  color: #333333;
  border: 2px solid #333333;
}

.polygon-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.polygon-1-3-profile {
  background: url("/static/images/themes/polygon/1/polygon-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.polygon-1-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/polygon/1/polygon-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.polygon-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.polygon-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.8rem/20px "Handlee";
  color: white;
}

.polygon-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #4A0669;
  background-color: white;
}

.polygon-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 400 1.8rem/20px "Handlee";
}

.polygon-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 400 1.8rem/20px "Handlee";
}

.polygon-1-3-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 10px;
}

.polygon-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 5rem;
  background-color: white;
}

.polygon-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.4rem/20px "Handlee";
  color: #333333;
}

.polygon-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 5rem;
  color: #333333;
  border: 2px solid #333333;
}

.polygon-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.polygon-1-4-profile {
  background: url("/static/images/themes/polygon/1/polygon-4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.polygon-1-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/polygon/1/polygon-4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.polygon-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.polygon-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.8rem/20px "Handlee";
  color: white;
}

.polygon-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #4A0669;
  background-color: white;
}

.polygon-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: white;
  font: normal normal 400 1.8rem/20px "Handlee";
}

.polygon-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
  font: normal normal 400 1.8rem/20px "Handlee";
}

.polygon-1-4-profile .profileLinks-wrapper .profileLink-item {
  background: white;
  border-radius: 10px;
}

.polygon-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 5rem;
  background-color: white;
}

.polygon-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 2.4rem/20px "Handlee";
  color: #333333;
}

.polygon-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 5rem;
  color: #333333;
  border: 2px solid #333333;
}

.polygon-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

@media screen and (max-width: 576px) {
  .polygon-1-1-profile {
    background: url("/static/images/themes/polygon/1/polygon-1-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .polygon-1-1-profile .profileLinks-wrapper {
    background: url("/static/images/themes/polygon/1/polygon-1-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .polygon-1-2-profile {
    background: url("/static/images/themes/polygon/1/polygon-2-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .polygon-1-2-profile .profileLinks-wrapper {
    background: url("/static/images/themes/polygon/1/polygon-2-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .polygon-1-3-profile {
    background: url("/static/images/themes/polygon/1/polygon-3-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .polygon-1-3-profile .profileLinks-wrapper {
    background: url("/static/images/themes/polygon/1/polygon-3-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .polygon-1-4-profile {
    background: url("/static/images/themes/polygon/1/polygon-4-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .polygon-1-4-profile .profileLinks-wrapper {
    background: url("/static/images/themes/polygon/1/polygon-4-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.summer-1-1-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/summer/1/summer-1-mobile.jpg");
}

.summer-1-1-preview label.style-card-preview .style-background .style-linksPreview span {
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-summer-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-summer-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-summer-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-summer-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.summer-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: url("/static/images/themes/summer/1/summer-1-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.summer-1-2-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/summer/1/summer-2-mobile.jpg");
}

.summer-1-2-preview label.style-card-preview .style-background .style-linksPreview span {
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-summer-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-summer-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-summer-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-summer-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.summer-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: url("/static/images/themes/summer/1/summer-2-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.summer-1-3-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/summer/1/summer-3-mobile.jpg");
}

.summer-1-3-preview label.style-card-preview .style-background .style-linksPreview span {
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-summer-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-summer-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-summer-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-summer-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.summer-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: url("/static/images/themes/summer/1/summer-3-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.summer-1-4-preview label.style-card-preview .style-background .background-image {
  background-image: url("/static/images/themes/summer/1/summer-4-mobile.jpg");
}

.summer-1-4-preview label.style-card-preview .style-background .style-linksPreview span {
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: url("/static/images/home/preview/o-summer-1-1.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: url("/static/images/home/preview/o-summer-1-2.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: url("/static/images/home/preview/o-summer-1-3.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

[class*="summer-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: url("/static/images/home/preview/o-summer-1-4.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.summer-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: url("/static/images/themes/summer/1/summer-4-mobile.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.summer-1-1-profile {
  background: url("/static/images/themes/summer/1/summer-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.summer-1-1-profile .profileLinks-wrapper {
  background: url("/static/images/themes/summer/1/summer-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.summer-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.summer-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: black;
}

.summer-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FF9900;
  background-color: white;
}

.summer-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: black;
  font: normal normal 700 1.8rem/20px "Barlow", sans-serif;
}

.summer-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: black;
  font: normal normal 600 1.8rem/20px "Barlow", sans-serif;
}

.summer-1-1-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
  border: 2px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.summer-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.summer-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.summer-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.summer-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.summer-1-2-profile {
  background: url("/static/images/themes/summer/1/summer-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.summer-1-2-profile .profileLinks-wrapper {
  background: url("/static/images/themes/summer/1/summer-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.summer-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.summer-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: black;
}

.summer-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FF9900;
  background-color: white;
}

.summer-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: black;
  font: normal normal 700 1.8rem/20px "Barlow", sans-serif;
}

.summer-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: black;
  font: normal normal 600 1.8rem/20px "Barlow", sans-serif;
}

.summer-1-2-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
  border: 2px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.summer-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.summer-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.summer-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.summer-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.summer-1-3-profile {
  background: url("/static/images/themes/summer/1/summer-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.summer-1-3-profile .profileLinks-wrapper {
  background: url("/static/images/themes/summer/1/summer-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.summer-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.summer-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: black;
}

.summer-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FF9900;
  background-color: white;
}

.summer-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: black;
  font: normal normal 700 1.8rem/20px "Barlow", sans-serif;
}

.summer-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: black;
  font: normal normal 600 1.8rem/20px "Barlow", sans-serif;
}

.summer-1-3-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
  border: 2px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.summer-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.summer-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.summer-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.summer-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.summer-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username, .summer-1-3-profile .profileLinks-wrapper .profileLinks-header_location p, .summer-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
}

.summer-1-4-profile {
  background: url("/static/images/themes/summer/1/summer-4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.summer-1-4-profile .profileLinks-wrapper {
  background: url("/static/images/themes/summer/1/summer-4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.summer-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: white;
}

.summer-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: black;
}

.summer-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  color: #FF9900;
  background-color: white;
}

.summer-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: black;
  font: normal normal 700 1.8rem/20px "Barlow", sans-serif;
}

.summer-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: black;
  font: normal normal 600 1.8rem/20px "Barlow", sans-serif;
}

.summer-1-4-profile .profileLinks-wrapper .profileLink-item {
  border-radius: 10px;
  border: 2px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
          box-shadow: 0px 4px 30px rgba(31, 66, 114, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.summer-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 10px;
  background-color: white;
}

.summer-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.summer-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 400 1.6rem/20px "Barlow", sans-serif;
  border-radius: 10px;
  color: #333333;
  border: 2px solid #333333;
}

.summer-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: white;
}

.summer-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username, .summer-1-4-profile .profileLinks-wrapper .profileLinks-header_location p, .summer-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: white;
}

@media screen and (max-width: 576px) {
  .summer-1-1-profile {
    background: url("/static/images/themes/summer/1/summer-1-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .summer-1-1-profile .profileLinks-wrapper {
    background: url("/static/images/themes/summer/1/summer-1-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .summer-1-2-profile {
    background: url("/static/images/themes/summer/1/summer-2-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .summer-1-2-profile .profileLinks-wrapper {
    background: url("/static/images/themes/summer/1/summer-2-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .summer-1-3-profile {
    background: url("/static/images/themes/summer/1/summer-3-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .summer-1-3-profile .profileLinks-wrapper {
    background: url("/static/images/themes/summer/1/summer-3-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .summer-1-4-profile {
    background: url("/static/images/themes/summer/1/summer-4-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .summer-1-4-profile .profileLinks-wrapper {
    background: url("/static/images/themes/summer/1/summer-4-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.white-1-1-preview label.style-card-preview .style-background .background-image {
  background-image: #ffffff;
}

.white-1-1-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #7EDCFF;
}

[class*="white-1"] .style-card-options .style-card-option:nth-of-type(1) label {
  background: #7EDCFF;
}

.white-1-1-profile {
  background: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.white-1-1-profile .profileLinks-wrapper {
  background: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.white-1-1-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #7EDCFF;
}

.white-1-1-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.white-1-1-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: #7EDCFF;
}

.white-1-1-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Barlow", sans-serif;
}

.white-1-1-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Barlow", sans-serif;
}

.white-1-1-profile .profileLinks-wrapper .profileLink-item {
  background: #7EDCFF;
  border-radius: 0px;
}

.white-1-1-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 0px;
  background-color: rgba(255, 255, 255, 0.5);
}

.white-1-1-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.white-1-1-profile .profileLinks-wrapper .profileLink-item_body span {
  color: #333333;
}

.white-1-1-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow", sans-serif;
  border-radius: 0px;
  color: black;
  border: 2px solid black;
}

.white-1-1-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.white-1-styleChanger .styleChanger-option:nth-of-type(1) {
  background: #7EDCFF;
}

.white-1-2-preview label.style-card-preview .style-background .background-image {
  background-image: #ffffff;
}

.white-1-2-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #FFB8B8;
}

[class*="white-1"] .style-card-options .style-card-option:nth-of-type(2) label {
  background: #FFB8B8;
}

.white-1-2-profile {
  background: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.white-1-2-profile .profileLinks-wrapper {
  background: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.white-1-2-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #FFB8B8;
}

.white-1-2-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.white-1-2-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: #FFB8B8;
}

.white-1-2-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Barlow", sans-serif;
}

.white-1-2-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Barlow", sans-serif;
}

.white-1-2-profile .profileLinks-wrapper .profileLink-item {
  background: #FFB8B8;
  border-radius: 0px;
}

.white-1-2-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 0px;
  background-color: rgba(255, 255, 255, 0.5);
}

.white-1-2-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.white-1-2-profile .profileLinks-wrapper .profileLink-item_body span {
  color: #333333;
}

.white-1-2-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow", sans-serif;
  border-radius: 0px;
  color: black;
  border: 2px solid black;
}

.white-1-2-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.white-1-styleChanger .styleChanger-option:nth-of-type(2) {
  background: #FFB8B8;
}

.white-1-3-preview label.style-card-preview .style-background .background-image {
  background-image: #ffffff;
}

.white-1-3-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #7190FF;
}

[class*="white-1"] .style-card-options .style-card-option:nth-of-type(3) label {
  background: #7190FF;
}

.white-1-3-profile {
  background: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.white-1-3-profile .profileLinks-wrapper {
  background: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.white-1-3-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #7190FF;
}

.white-1-3-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.white-1-3-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: #7190FF;
}

.white-1-3-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Barlow", sans-serif;
}

.white-1-3-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Barlow", sans-serif;
}

.white-1-3-profile .profileLinks-wrapper .profileLink-item {
  background: #7190FF;
  border-radius: 0px;
}

.white-1-3-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 0px;
  background-color: rgba(255, 255, 255, 0.5);
}

.white-1-3-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.white-1-3-profile .profileLinks-wrapper .profileLink-item_body span {
  color: #333333;
}

.white-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow", sans-serif;
  border-radius: 0px;
  color: black;
  border: 2px solid black;
}

.white-1-3-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.white-1-3-profile .profileLinks-wrapper .profileLink-item_body p {
  color: white;
}

.white-1-3-profile .profileLinks-wrapper .profileLink-item_body span {
  color: white;
}

.white-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  border-color: white;
  color: white;
}

.white-1-3-profile .profileLinks-wrapper .profileLink-item_options .link-copy {
  color: white;
}

.white-1-styleChanger .styleChanger-option:nth-of-type(3) {
  background: #7190FF;
}

.white-1-4-preview label.style-card-preview .style-background .background-image {
  background-image: #ffffff;
}

.white-1-4-preview label.style-card-preview .style-background .style-linksPreview span {
  background: #CFB8FF;
}

[class*="white-1"] .style-card-options .style-card-option:nth-of-type(4) label {
  background: #CFB8FF;
}

.white-1-4-profile {
  background: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.white-1-4-profile .profileLinks-wrapper {
  background: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.white-1-4-profile .profileLinks-wrapper::-webkit-scrollbar-thumb {
  background: #CFB8FF;
}

.white-1-4-profile .profileLinks-wrapper .profileLinks-header_username .header-username {
  font: normal normal 400 2.4rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.white-1-4-profile .profileLinks-wrapper .profileLinks-header_location .icon {
  background-color: #CFB8FF;
}

.white-1-4-profile .profileLinks-wrapper .profileLinks-header_location p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Barlow", sans-serif;
}

.white-1-4-profile .profileLinks-wrapper .profileLinks-header_biography p {
  color: #333333;
  font: normal normal 400 1.8rem/20px "Barlow", sans-serif;
}

.white-1-4-profile .profileLinks-wrapper .profileLink-item {
  background: #CFB8FF;
  border-radius: 0px;
}

.white-1-4-profile .profileLinks-wrapper .profileLink-item_image {
  border-radius: 0px;
  background-color: rgba(255, 255, 255, 0.5);
}

.white-1-4-profile .profileLinks-wrapper .profileLink-item_body .item-body-text {
  font: normal normal 400 1.8rem/20px "Fredoka One", sans-serif;
  color: #333333;
}

.white-1-4-profile .profileLinks-wrapper .profileLink-item_body span {
  color: #333333;
}

.white-1-4-profile .profileLinks-wrapper .profileLink-item_options .link-price {
  font: normal normal 600 1.6rem/20px "Barlow", sans-serif;
  border-radius: 0px;
  color: black;
  border: 2px solid black;
}

.white-1-4-profile .profileLinks-wrapper .profileLinks-footer .logo-default {
  color: black;
}

.white-1-styleChanger .styleChanger-option:nth-of-type(4) {
  background: #CFB8FF;
}
/* NSO */
.hide-item {
  display: none !important;
}