/* Scroll lock */

html {
  --window-inner-height: 100vh;
  --scrollbar-width: 0px;
}

html.-scroll-lock,
html.-scroll-lock body {
  height: calc(var(--window-inner-height) - 1px);
  overflow: hidden;
}

html.-scroll-lock body {
  position: relative;
}

body.-scroll-lock {
  padding-right: var(--scrollbar-width);
}

/* Global (Global css and params) */

:root {
  --white: #ffffff;
  --pink: #ea1f4a;
  --dark: #363648;
  --gray: #f0f0f0;
  --blue: #35354e;

  --10-border: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0V10C1.10376 3.46397 3.58648 0.819473 10 0H0Z' fill='%23D9D9D9'/%3E%3C/svg%3E%0A");
  --20-border: url("data:image/svg+xml,%0A%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0V20C2.35479 6.66169 6.56628 2.09076 20 0H0Z' fill='%23D9D9D9'/%3E%3C/svg%3E%0A");
}

body {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;

  font-family: "Basis Grotesque Pro", sans-serif;
  color: var(--blue);
}

body.-pink-body {
  background-color: #f0e7e9;
}

body.-gray-body {
  background-color: #ececec;
}

@media screen and (max-width: 768px) {
  body.-gray-body {
    background-color: #e2e2e2;
  }
}

main {
  position: relative;
  margin-top: 73px;
}

.--pc-display {
  display: block;
}

.--tablet-display,
.--mobile-display {
  display: none;
}

.container {
  width: 100vw;
  max-width: 1460px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Scrollbar */

.os-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-vertical {
  right: 16px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  padding: 0;

  background: rgba(53, 53, 78, 0.2);
}

.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-horizontal {
  bottom: 0;
  right: 20px;
  left: 20px;
  height: 2px;
  padding: 0;
  background: rgba(53, 53, 78, 0.2);
}

.os-theme-dark.os-host-transition > .os-scrollbar.os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle {
  width: 2px;
  background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1260px) {
}

@media screen and (max-width: 1024px) {
  body {
    grid-template-rows: 1fr auto;
  }

  main {
    margin-top: 98px;
  }

  .--pc-display {
    display: none;
  }

  .--tablet-display {
    display: block;
  }

  .container {
    width: 100vw;
    margin: 0;
    padding: 0 20px;
  }

  .os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-vertical {
    top: 16px;
    right: 13px;
    bottom: 16px;
  }
}

@media screen and (max-width: 759px) {
  .--tablet-display {
    display: none;
  }

  .--mobile-display {
    display: block;
  }

  .container {
    padding: 0 10px;
  }
}

.homepage-second__social__wrapper {
  position: relative;
}
.homepage-second__social-img {
  max-width: 114px;
  position: absolute;
  opacity: 0;
  top: 0px;
  left: -30%;
  z-index: 9;
  border-radius: 20px;
  transition: opacity 0.3s, top 0s 0.3s;
}
.homepage-second__social__wrapper:hover .homepage-second__social-img {
  opacity: 1;
  top: -120px;
  transition: opacity 0.3s, top 0s 0s;
}

.cookies-popup {
  z-index: 999;
  position: fixed;
  width: 533px;
  background: #ffffff;
  border-radius: 13.9136px;
  right: -100vw;
  bottom: 29px;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookies-popup.is-active {
  opacity: 1;
  right: 24px;
}
.cookies-popup__close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
.cookies-popup__body {
  padding: 42px 45px;
}

.cookies-popup__title {
  font-weight: 700;
  font-size: 27px;
  line-height: 35px;
  color: #0c1741;
  margin-bottom: 17px;
}
.cookies-popup__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #35354e;
  margin-bottom: 33px;
}
.cookies-popup__text a {
  color: #ed1847;
}
.filter-clear-all {
  width: auto !important;
}
.filter-clear-all:after {
  content: none;
  display: none !important;
}

.float-left {
  width: auto;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.post-section table {
  border-collapse: collapse;
  margin-top: 25px;
}
.post-section table td {
  border: 1px solid;
  padding: 5px;
  font-size: 0.8em;
}