.mkt-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--btn_gap_vertical, 16px) var(--btn_gap_horizontal, 24px);
}

.mkt-btn {
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    outline: 0;
    white-space: nowrap;
    font-size: 0;
    background-color: unset;
    padding: 0;
    z-index: 2;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    text-align: center
}

.mkt-btn.btn-frosted-white,
.mkt-btn.btn-frosted-black,
.mkt-btn.btn-frosted-grey {
    padding: 12px 20px;
    overflow: hidden;
    border-radius: 8px;
    backdrop-filter: blur(30px);
    transition: background-color ease .3s;
    --gradient-reg: 0deg;
    --colorful-bg-opacity: 0.3;
    --grey-bg-opacity: 0.2;
    --black-bg-opacity: 0.5;
}

.mkt-btn.btn-frosted-white .btn-border,
.mkt-btn.btn-frosted-black .btn-border,
.mkt-btn.btn-frosted-grey .btn-border {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
    mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: .5px;
    border-radius: 8px;
    overflow: hidden;
}

.mkt-btn.btn-frosted-white .btn-border::before,
.mkt-btn.btn-frosted-black .btn-border::before,
.mkt-btn.btn-frosted-grey .btn-border::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 100%;
    box-sizing: border-box;
    transition: transform cubic-bezier(0.8, 0.1, 0.2, 0.9) .5s, background-color ease .3s;
    transform: translate(-50%, -50%) rotate(var(--gradient-reg));
    background-image: linear-gradient(to right top, rgba(255, 255, 255, 0) 20%, rgb(255, 255, 255), rgba(255, 255, 255, 0) 80%);
    border-radius: inherit;
    will-change: transform, background-color;
}

@media(any-hover: hover)and (pointer: fine) {

    .mkt-btn.btn-frosted-white.hover-border:hover,
    .mkt-btn.btn-frosted-black.hover-border:hover,
    .mkt-btn.btn-frosted-grey.hover-border:hover {
        --gradient-reg: 180deg;
    }

    .mkt-btn.btn-frosted-white:hover,
    .mkt-btn.btn-frosted-black:hover,
    .mkt-btn.btn-frosted-grey:hover {
        --colorful-bg-opacity: 0.8;
        --grey-bg-opacity: 0.4;
        --black-bg-opacity: 0.7
    }
}

.mkt-btn.btn-frosted-white {
    background-color: hsla(0, 0%, 100%, .6);
    color: #000;
}

.mkt-btn.btn-frosted-white::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(10px);
    background: linear-gradient(118.19deg, rgb(248, 255, 165), rgb(189, 228, 255) 51%, rgb(205, 176, 255) 100%);
    opacity: var(--colorful-bg-opacity);
    z-index: -2;
    border-radius: 100%;
    transition: opacity ease .3s;
}

.mkt-btn.btn-frosted-black {
    backdrop-filter: unset;
    background-color: #000;
    color: #fff
}

.mkt-btn.btn-frosted-black::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(10px);
    background: linear-gradient(118.19deg, rgb(140, 149, 67), rgb(55, 96, 126) 51%, rgb(98, 66, 145) 98%);
    opacity: var(--black-bg-opacity);
    z-index: -2;
    border-radius: 100%;
    transition: opacity ease .3s;
}

.mkt-btn.btn-frosted-black .btn-border {
    opacity: .5
}

.mkt-btn.btn-frosted-grey {
    background-color: rgba(138, 138, 138, var(--grey-bg-opacity, 0.2));
    color: #fff
}

.mkt-btn.btn-text-white {
    color: #fff
}

.mkt-btn.btn-text-block {
    color: #000
}

@media screen and (max-width: 767.98px) {
    .mkt-btn {
        font-size: 12px;
        line-height: 14px
    }

    .mkt-btn.btn-frosted-white,
    .mkt-btn.btn-frosted-black,
    .mkt-btn.btn-frosted-grey {
        padding: 9px 16px
    }

    .mkt-btn.btn-arrow::after {
        width: 5px;
        height: 14px
    }
}

.main-container .retail-text-link {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  font-weight: 500;
    pointer-events: all;
}

.main-container .retail-text-link > img {
  width: 4.7px;
  height: 8px;
  margin-left: 4px;
  transform: translateX(0);
  transition: .6s ease,border-color .3s ease;
}

@media (any-hover: hover) and (pointer: fine) {
  .main-container .retail-text-link:hover img {
    transform: translateX(4px);
  }
}


@media screen and (max-width: 767.98px) {
    .main-container .retail-text-link {
        font-size: 12px;
    }
}

.main-container .activity-item{
    transition: transform .3s cubic-bezier(0, 0, 0.5, 1) !important;
    transition-delay: 0 !important;
    position: relative;
    pointer-events: none;
}
.main-container .activity-item .card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all;
}
@media(any-hover: hover)and (pointer: fine) {
    .main-container .activity-item:hover {
        cursor: pointer;
        transform:scale(1.02) !important;
    }
}