.info {
  display: inline-flex;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.info__text {
  color: #666666;
  font-size: 13px;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #dddddd;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #b4b4b4ad;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #b4b4b4ad;
}

.copy {
  position: absolute;
  bottom: 0;
  left: 100%;
  margin-left: -40px;
  background: red;
  line-height: 0;
  width: 78px;
  height: 18px;
}
.copy__container {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.copy__container .wrapper {
  position: relative;
}
.copy img {
  height: 100%;
}
@media screen and (max-width: 1150px) {
  .copy {
    margin-left: 0;
    left: auto;
    right: 50px;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #dddddd;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #b4b4b4ad;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #b4b4b4ad;
}

.popup-holder .popup-close {
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
}

.locked {
  overflow: hidden;
  touch-action: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.locked::-webkit-scrollbar {
  display: none;
}

.popup__text-title {
  padding-right: 20px;
}

.popup__text {
  height: 58vh;
  padding-right: 20px;
  overflow-y: auto;
}

.popup__text ul {
  font-size: 16px;
  line-height: 24px;
  margin: 0.5em 0 0;
}

footer {
  margin-top: auto;
  background: #fff;
  padding: 1.5em 0;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 20px;
  font-size: 1em;
  line-height: 1.2;
}

.footer__company {
  min-width: 300px;
}

.footer__links div {
  margin-bottom: 6px;
  text-align: right;
}

.footer__links div > span {
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 1px solid #000;
  transition: border 0.1s ease-in;
}

.footer__links div > span:hover {
  border-bottom: 1px solid transparent;
}

@media (max-width: 768px) {
  .footer__wrapper {
    flex-direction: column;
  }

  .footer__links div {
    text-align: left;
  }
}

.custom-checkbox__text span,
.cookies__text span {
  cursor: pointer;
  border-bottom: 1px solid #000;
  transition: border 0.1s ease-in;
}

.custom-checkbox__text span:hover,
.cookies__text span:hover {
  border-bottom: none;
}

/* cookies */
.cookies {
  position: fixed;
  z-index: 1000;
  width: fit-content;
  z-index: 4444;
  border-bottom: 0;
  bottom: 20px;
  right: 20px;
  transform: translateY(120%);
  transition: transform 300ms ease-in-out;
}

.cookies.--show {
  transform: translateY(0);
}

.cookies__container {
  width: 100%;
  max-width: 350px;
  padding: 16px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
  background: #ffffff;
  border-radius: 6px;
  transition: box-shadow 400ms ease-in-out;
}

.cookies__container:hover {
  box-shadow: 0 4px 24px rgba(60,60,60,.4)
}

.cookies__wrapper {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  text-wrap: balance;
  font-size: 14px;
  line-height: 1.4;
}

.cookies__button--accept {
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 4px;
  background: #000000;
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
  cursor: pointer;
  border: none;;
  transition: background 300ms ease-in-out, box-shadow 300ms ease-in-out;
}

.cookies__button--accept:hover {
  background: #333333;
  box-shadow: none;
}

@media (max-width: 500px) {
  .cookies {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
  }

  .cookies__container {
    max-width: 100%;
  }
}
/* /cookies */