
:root {
  --font-syne: "Syne", sans-serif;
  --font-archivo: "Archivo", sans-serif;
  --color-primary-100: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)), linear-gradient(270deg, #7B46D1 -36.92%, #FD5390 100%);
  --color-primary-100-over: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)), linear-gradient(270deg, #6939b6 -36.92%, #e0417c 100%);
  --color-primary-80: linear-gradient(-90deg, #BD67E1 0%, #FD5390 75%), -webkit-linear-gradient(-90deg, #BD67E1 0%, #FD5390 75%);
  --color-primary-40: linear-gradient(270deg, rgba(87, 170, 247, 0.2) -48.53%, rgba(213, 0, 77, 0.2) 100%);
  --color-primary-40-over: linear-gradient(270deg, rgba(87, 170, 247, 0.3) -48.53%, rgba(213, 0, 77, 0.3) 100%);
  --color-secondary-pink: #FD5390;
  --color-secondary-blue: #7289DA;
  --color-secondary-blue-over: #556bbd;
  --color-base-dark: #15161A;
  --color-base-radial: radial-gradient(circle at right, rgba(39,33,77,1) 0%, rgba(21,22,26,1) 100%);
  --color-base-dark-grey: #303030;
  --color-base-grey: #8D8D8D;
  --color-base-white: #FFFFFF;
  --color-base-white-30: rgba(255, 255, 255, 0.3);
  --color-base-white-30: rgba(255, 255, 255, 0.3);
  --color-base-white-10: rgba(255, 255, 255, 0.1);
  --color-base-white-05: rgba(255, 255, 255, 0.05);
  --border-radius: 10px;
  --spacing-4: 0.25rem;
  --spacing-8: 0.5rem;
  --spacing-16: 1rem;
  --spacing-24: 1.5rem;
  --spacing-32: 2rem;
  --spacing-40: 2.5rem;
  --spacing-48: 3rem;
  --spacing-56: 3.5rem;
  --spacing-64: 4rem;
  --spacing-72: 4.5rem;
  --spacing-80: 5rem;
  --spacing-96: 6rem;
}

*, :after, :before {
  box-sizing: border-box;
  font-family: var(--font-syne);
}

html {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  font: 100% var(--font-syne);
  color: var(--color-base-white);
  min-height: 100%;
  background: #27214D;
  background: radial-gradient(circle at right, rgb(39, 33, 77) -70%, rgb(21, 22, 26) 50%);
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column;
}
@media only screen and (min-width: 992px) {
  body {
    background: radial-gradient(circle at right, rgb(39, 33, 77) -70%, rgb(21, 22, 26) 50%);
  }
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

::-webkit-datetime-edit {
  padding: 1em;
}

::-webkit-datetime-edit-text {
  padding: 0 0.3em;
}

::-webkit-inner-spin-button {
  display: none;
}

button {
  background: transparent;
  border: none;
}

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

.text-grey {
  color: var(--color-base-grey) !important;
}

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

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

.font-heading {
  font-family: var(--font-syne);
}
.font-heading-1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
}
.font-heading-2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
}
.font-heading-3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.5px;
}
.font-heading-4 {
  font-size: 28px;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -1px;
}
.font-heading-5 {
  font-size: 22px;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -1px;
  text-align: left;
}

.font-body {
  font-family: Syne;
}
.font-body-xxl {
  font-size: 20px;
  line-height: 26px;
}
.font-body-xxl-medium {
  font-weight: 600;
}
.font-body-xxl-regular {
  font-weight: 400;
}
.font-body-xl {
  font-size: 18px;
  line-height: 26px;
}
.font-body-xl-medium {
  font-weight: 600;
}
.font-body-xl-regular {
  font-weight: 400;
}
.font-body-lg {
  font-size: 16px;
  line-height: 26px;
}
.font-body-lg-medium {
  font-weight: 600;
}
.font-body-lg-regular {
  font-weight: 400;
}

.font-display-1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 61.6px;
  letter-spacing: -1px;
}
.font-display-2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 37.8px;
}
.font-display-3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 33.6px;
}

.btn {
  padding: var(--spacing-8) var(--spacing-16);
  /* @include MQ(md) {
    padding: 8px 32px;
  } */
  line-height: 24px;
  text-align: center;
  border-radius: var(--border-radius);
  transition: all 450ms;
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  cursor: pointer;
  text-decoration: none;
}

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

.btn-primary {
  color: var(--color-base-white);
  background: var(--color-primary-100);
  border: 2px solid var(--color-primary-100);
  border-color: var(--color-primary-100);
  transition: all 450ms;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary:focus {
  background: var(--color-primary-100-over);
  border-color: var(--color-primary-100-over);
}

.btn-pink {
  color: var(--color-base-white);
  background: var(--color-primary-40);
  border: 2px solid var(--color-primary-40);
  border-color: var(--color-primary-40);
  transition: all 450ms;
}
.btn-pink:hover, .btn-pink:active, .btn-pink.active, .btn-pink:focus {
  background: var(--color-primary-40-over);
  border-color: var(--color-primary-40-over);
}

.btn-secondary {
  color: var(--color-base-white);
  background: var(--color-secondary-blue);
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary.active, .btn-secondary:focus {
  background: var(--color-secondary-blue-over);
}

.btn-primary-outlined {
  padding: 6px var(--spacing-16);
  color: var(--color-base-white);
  background: linear-gradient(var(--color-base-dark), var(--color-base-dark)) padding-box, linear-gradient(to right, #7B46D1, #FD5390) border-box;
  border: 2px solid transparent;
}
.btn-primary-outlined:hover {
  background-color: var(--color-primary-100);
}

.btn-grey {
  color: var(--color-base-white);
  background: var(--color-base-white-05);
  border-color: var(--color-base-white-05);
  transition: all 450ms;
}
.btn-grey:hover, .btn-grey:active, .btn-grey.active, .btn-grey:focus {
  background: var(--color-base-white-30);
  border-color: var(--color-base-white-30);
}

.btn-grey-05 {
  color: var(--color-base-grey);
  background: var(--color-base-white-05);
  border-color: var(--color-base-white-05);
  transition: all 450ms;
}
.btn-grey-05:hover, .btn-grey-05:active, .btn-grey-05.active, .btn-grey-05:focus {
  background: var(--color-base-white-30);
  border-color: var(--color-base-white-30);
}

.btn-grey-30 {
  color: var(--color-base-white);
  background: var(--color-base-white-30);
  border-color: var(--color-base-white-30);
  transition: all 450ms;
}
.btn-grey-30:hover, .btn-grey-30:active, .btn-grey-30.active, .btn-grey-30:focus {
  background: var(--color-base-grey);
  border-color: var(--color-base-grey);
}

.btn-white-outlined {
  border: 1px solid var(--color-base-white);
  color: var(--color-base-white);
}
.btn-white-outlined:hover {
  background: #f5f5f5;
  color: #000;
}

.btn-white {
  background-color: var(--color-base-white);
  color: #000;
}
.btn-white:hover {
  background: #f5f5f5;
  color: #000;
}

.btn-w-icon {
  display: flex;
  flex-flow: row;
  justify-content: center;
  padding: 7px 14px;
  text-decoration: none;
}
.btn-w-icon img {
  margin-right: 7px;
}
.btn-w-icon:hover {
  text-decoration: none;
}

.btn-link {
  background-color: transparent;
  border: transparent;
  color: var(--color-base-white);
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.btn-link .icon-arrow {
  transform: rotate(90deg);
}

.color-primary {
  background: var(--color-primary-80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hide {
  display: none !important;
}

a {
  color: var(--color-primary-100);
  text-decoration: none;
  transition: all 500ms;
}
a:hover {
  text-decoration: underline;
}

.link-white {
  color: #fff;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (min-width: 992px) {
  .container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

@keyframes dot-animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sound {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
/* GENERAL STYLES */
header {
  padding: var(--spacing-16);
  background: var(--color-base-dark);
  border-bottom: solid 1px var(--color-base-dark-grey);
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media only screen and (min-width: 768px) {
  header {
    padding: var(--spacing-16) var(--spacing-24);
  }
}
header .header-menu-mobiªle {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  header .header-menu-mobiªle {
    display: none;
  }
}
header .header-menu-mobiªle::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../image/icon-menu1.svg") no-repeat center center;
  background-size: contain;
}
header .header-menu-mobiªle.show-sidebar-mobile::after {
  background-image: url("../image/icon-cross.svg");
}
header .logo {
  text-decoration: none;
  align-items: center;
  display: flex;
}
header .logo img {
  width: 100px;
}
@media only screen and (min-width: 768px) {
  header .logo img {
    width: 125px;
  }
}
header .access-section-desktop {
  display: none;
  align-items: center;
  padding: 0 var(--spacing-16);
  gap: var(--spacing-16);
}
@media only screen and (min-width: 992px) {
  header .access-section-desktop {
    display: flex;
    gap: var(--spacing-32);
  }
}
header .access-section-mobile {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
}
@media only screen and (min-width: 992px) {
  header .access-section-mobile {
    display: none;
  }
}
header .access-section .subscribe-button {
  font-size: 14px;
  font-weight: 500;
  padding: var(--spacing-4) var(--spacing-16);
}
header .access-section .subscribe-button.premium-header-button {
  cursor: default;
}
header .access-section .my-profile-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
}
header .access-section .my-profile-section:hover {
  cursor: pointer;
}
header .access-section .my-profile-section .avatar {
  display: none;
}
@media only screen and (min-width: 768px) {
  header .access-section .my-profile-section .avatar {
    display: inline-block;
  }
}
header .access-section .my-profile-section .profile-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  transition: all 450ms;
}
header .access-section .my-profile-section .my-profile-menu {
  position: absolute;
  top: 60px;
  right: var(--spacing-16);
  padding: var(--spacing-16);
  padding-bottom: var(--spacing-24);
  padding-left: var(--spacing-24);
  background: var(--color-base-dark);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  display: flex;
  flex-flow: column;
  gap: var(--spacing-24);
  display: none;
  cursor: default;
}
header .access-section .my-profile-section .my-profile-menu li {
  padding: 0 var(--spacing-8);
}
header .access-section .my-profile-section .my-profile-menu li a {
  display: flex;
  gap: var(--spacing-8);
}
header .access-section .my-profile-section.open .profile-text img {
  transform: rotate(180deg);
}
header .access-section .my-profile-section.open .my-profile-menu {
  display: flex;
  z-index: 1;
}
header .access-section .login-link {
  font-size: 14px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.5px;
}
header .access-section .login-link:hover {
  cursor: pointer;
}

.navigation-menu {
  flex-flow: column;
  justify-content: space-between;
  width: 178px;
  padding: var(--spacing-24) var(--spacing-16);
  background: var(--color-base-dark);
  border-right: solid 1px var(--color-base-dark-grey);
  flex-shrink: 1;
  position: absolute;
  left: -300px;
  transition: all 450ms;
  z-index: 101;
  height: calc(100% - 73px);
}
@media only screen and (min-width: 992px) {
  .navigation-menu {
    position: inherit;
    left: 0;
    display: flex;
    height: inherit;
  }
}
.navigation-menu .menu .top-menu {
  display: none;
  align-items: center;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-16);
}
@media only screen and (min-width: 992px) {
  .navigation-menu .menu .top-menu {
    display: flex;
  }
}
.navigation-menu .menu .top-menu:hover {
  cursor: pointer;
}
.navigation-menu .menu .top-menu .menu-label {
  flex: 1;
}
.navigation-menu .menu .top-menu .collapse-arrow {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}
.navigation-menu .menu .menu-main {
  display: flex;
  flex-flow: column;
  gap: var(--spacing-8);
}
.navigation-menu .menu .menu-main li a {
  display: flex;
  gap: var(--spacing-8);
  padding: var(--spacing-8) var(--spacing-16);
  border-radius: var(--border-radius);
  background: var(--color-base-white-05);
  transition: all 450ms;
}
.navigation-menu .menu .menu-main li a:hover {
  text-decoration: none;
  background: var(--color-base-white-30);
}
.navigation-menu .menu .menu-main li a img {
  /* width: 20px;
  height: 20px; */
}
.navigation-menu .menu .menu-main li a.premium {
  color: var(--color-primary-100);
}
.navigation-menu .menu .menu-main li.selected a {
  background: var(--color-primary-100);
  transition: all 450ms;
  cursor: default;
}
.navigation-menu .menu-bottom {
  display: flex;
  flex-flow: column;
  gap: var(--spacing-8);
}
.navigation-menu .menu-bottom li a {
  display: flex;
  gap: var(--spacing-8);
  padding: var(--spacing-8) var(--spacing-16);
  border-radius: var(--border-radius);
  background: var(--color-base-white-05);
  transition: all 450ms;
}
.navigation-menu .menu-bottom li a:hover {
  text-decoration: none;
  background: var(--color-base-white-30);
}
.navigation-menu .menu-bottom li a img {
  /* width: 20px;
  height: 20px; */
}
.navigation-menu .menu-bottom li.selected a {
  background: var(--color-primary-100);
  transition: all 450ms;
  cursor: default;
}
.navigation-menu.collapsed {
  width: auto;
}
.navigation-menu.collapsed .collapse-arrow {
  transform: rotate(-90deg) !important;
}
.navigation-menu.collapsed .menu-label {
  display: none !important;
}
.navigation-menu.collapsed .top-menu {
  gap: var(--spacing-4);
}
.navigation-menu.collapsed .menu li a, .navigation-menu.collapsed .menu-bottom li a {
  padding: var(--spacing-8);
  justify-content: center;
}
.navigation-menu.show-sidebar-mobile {
  display: flex;
  width: 100%;
  height: calc(100% - 73px);
  position: absolute;
  left: 0;
  top: 73px;
  z-index: 101;
}

.header-menu-mobile > img {
  width: 26px;
}

.navigation-menu-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-top: solid 1px var(--color-base-white-05);
  background: var(--color-base-dark);
  padding: var(--spacing-16) var(--spacing-24);
  padding-top: var(--spacing-4);
}
@media only screen and (min-width: 992px) {
  .navigation-menu-mobile {
    display: none;
  }
}
.navigation-menu-mobile .menu .menu-main {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.navigation-menu-mobile .menu .menu-main li a {
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
}

main {
  flex: 1;
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: stretch;
  display: grid;
  grid-template-columns: fit-content(178px) 1fr;
  grid-template-areas: "left content";
  margin-bottom: var(--spacing-96);
}
@media only screen and (min-width: 768px) {
  main {
    margin-bottom: 0;
  }
}
main .navigation-menu {
  grid-area: left;
}
main .page-content-wrap {
  grid-area: content;
  height: 0;
  min-height: 100%;
  overflow: auto;
}
main .page-content-wrap .page-content-wrapper {
  flex: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

/* POP-UP STYLES */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: all 5s ease-in-out;
}
.popup .popup-content-wrap {
  background: radial-gradient(134.66% 81.48% at 108.47% 71.02%, #27214D 0%, #1E1C35 0%, #15161A 92.8%);
  padding: var(--spacing-32);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: calc(100% - var(--spacing-32));
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-16);
  position: relative;
}
@media only screen and (min-width: 768px) {
  .popup .popup-content-wrap {
    width: 100%;
  }
}
.popup .popup-content-wrap .close-popup {
  position: absolute;
  top: var(--spacing-16);
  right: var(--spacing-16);
  cursor: pointer;
}
.popup .popup-content-wrap .popup-content-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
}
.popup .popup-content-wrap .popup-content-header h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.popup .popup-content-wrap .popup-content-header span {
  font-size: 12px;
  font-weight: 500;
}
.popup .popup-content-wrap .popup-content, .popup .popup-content-wrap .popup-content-form {
  display: flex;
  flex-flow: column;
  gap: var(--spacing-8);
}
.popup .popup-content-wrap .popup-content .popup-label, .popup .popup-content-wrap .popup-content-form .popup-label {
  color: var(--color-base-grey);
  padding: 0 var(--spacing-8);
}
.popup .popup-content-wrap .popup-content input, .popup .popup-content-wrap .popup-content-form input {
  background: var(--color-base-dark);
  padding: var(--spacing-16) var(--spacing-24);
  border: 2px solid var(--color-primary-100);
  border-radius: var(--border-radius);
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-base-white);
}
.popup .popup-content-wrap .popup-content input::placeholder, .popup .popup-content-wrap .popup-content-form input::placeholder {
  color: var(--color-base-grey);
}
.popup .popup-content-wrap .popup-content .custom-select-wrap, .popup .popup-content-wrap .popup-content-form .custom-select-wrap {
  display: flex;
  flex-flow: column;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-16);
}
.popup .popup-content-wrap .popup-content .custom-select-wrap .custom-select, .popup .popup-content-wrap .popup-content-form .custom-select-wrap .custom-select {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: var(--spacing-16) var(--spacing-24);
  background: linear-gradient(var(--color-base-dark), var(--color-base-dark)) padding-box, linear-gradient(to right, #7B46D1, #FD5390) border-box;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.popup .popup-content-wrap .popup-content .custom-select-wrap .custom-select-options, .popup .popup-content-wrap .popup-content-form .custom-select-wrap .custom-select-options {
  display: flex;
  overflow: hidden;
  flex-flow: column;
  gap: var(--spacing-8);
  -webkit-transition: max-height 450ms;
  -moz-transition: max-height 450ms;
  -ms-transition: max-height 450ms;
  -o-transition: max-height 450ms;
  transition: max-height 450ms;
  overflow: hidden;
  max-height: 0;
}
.popup .popup-content-wrap .popup-content .custom-select-wrap .custom-select-options.show-options, .popup .popup-content-wrap .popup-content-form .custom-select-wrap .custom-select-options.show-options {
  max-height: 300px;
}
.popup .popup-content-wrap .popup-content .custom-select-wrap .custom-select-options .custom-select-option, .popup .popup-content-wrap .popup-content-form .custom-select-wrap .custom-select-options .custom-select-option {
  background: var(--color-base-dark);
  color: var(--color-base-white);
  padding: var(--spacing-16) var(--spacing-24);
  border-radius: var(--border-radius);
  cursor: pointer;
}
.popup .popup-content-wrap .popup-content .custom-select-wrap .custom-select-options .custom-select-option:hover, .popup .popup-content-wrap .popup-content-form .custom-select-wrap .custom-select-options .custom-select-option:hover {
  background: var(--color-base-dark-grey);
}
.popup .popup-content-wrap .popup-content .popup-continue, .popup .popup-content-wrap .popup-content-form .popup-continue {
  font-size: 14px;
  font-weight: 600;
}
.popup.popup-blurred {
  animation: popup-disolve 0.5s;
}
.popup.popup-blurred .popup-content-wrap {
  background: var(--color-base-white-30);
  backdrop-filter: blur(20px);
}
.popup.popup-from-top .popup-content-wrap {
  animation: popup-move-from-top 0.5s;
}

footer {
  margin-top: 30px;
  padding: var(--spacing-16);
  width: 100%;
  background: var(--color-primary-40);
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  footer {
    padding: var(--spacing-64);
    margin-top: 80px;
  }
}
footer .footer-content {
  display: flex;
  flex-flow: column-reverse;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 1094px;
  gap: var(--spacing-48);
}
@media only screen and (min-width: 992px) {
  footer .footer-content {
    flex-flow: column;
    flex-flow: row;
  }
}
@media only screen and (min-width: 768px) {
  footer .footer-content {
    gap: var(--spacing-96);
  }
}
footer .footer-content .col-left {
  font-size: 12px;
  font-weight: 400;
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  footer .footer-content .col-left {
    max-width: 40%;
    flex-flow: column;
  }
}
footer .footer-content .col-left .footer-info {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  footer .footer-content .col-left .footer-info {
    text-align: left;
  }
}
footer .footer-content .col-right {
  display: flex;
  flex-flow: row;
  gap: var(--spacing-32);
}
@media only screen and (min-width: 768px) {
  footer .footer-content .col-right {
    gap: var(--spacing-64);
  }
}
footer .footer-content .col-right .footer-links-wrap {
  display: flex;
  flex-flow: row;
  gap: var(--spacing-24);
}
@media only screen and (min-width: 768px) {
  footer .footer-content .col-right .footer-links-wrap {
    gap: var(--spacing-48);
  }
}
footer .footer-content .col-right .footer-links-wrap .footer-links {
  display: flex;
  flex-flow: column;
  gap: var(--spacing-8);
}
footer .footer-content .col-right .footer-links-wrap .footer-links .page-heading {
  font-weight: 400;
  font-size: 14px;
}
footer .footer-content .col-right .footer-links-wrap .footer-links .social-links-wrap {
  margin-top: var(--spacing-16);
}
footer .footer-content .col-right .footer-links-wrap .footer-links .social-links-wrap .social-links {
  margin-top: var(--spacing-8);
  display: flex;
  flex-flow: row;
  gap: var(--spacing-8);
}
footer .footer-content .col-right .payment-methods {
  display: flex;
  flex-flow: column;
  gap: var(--spacing-16);
}
footer .footer-content .col-right .payment-methods img {
  width: 57px;
}
@media only screen and (min-width: 992px) {
  footer .footer-content .col-right .payment-methods img {
    width: 90px;
  }
}
footer body, footer .page-content-wrap {
  /* background of the scrollbar except button or resizer */
  /* scrollbar itself */
  /* set button(top and bottom of the scrollbar) */
}
footer body::-webkit-scrollbar, footer .page-content-wrap::-webkit-scrollbar {
  background-color: transparent;
  width: 4px;
}
footer body::-webkit-scrollbar-track, footer .page-content-wrap::-webkit-scrollbar-track {
  background-color: transparent;
}
footer body::-webkit-scrollbar-track:hover, footer .page-content-wrap::-webkit-scrollbar-track:hover {
  background-color: transparent;
}
footer body::-webkit-scrollbar-thumb, footer .page-content-wrap::-webkit-scrollbar-thumb {
  background-color: var(--color-base-white-30);
  border-radius: 16px;
  border: 5px solid transparent;
}
footer body::-webkit-scrollbar-thumb:hover, footer .page-content-wrap::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-base-white);
  border: 4px solid #f4f4f4;
}
footer body::-webkit-scrollbar-button, footer .page-content-wrap::-webkit-scrollbar-button {
  display: none;
}

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