/* start gift-card */
@media (max-width: 1023px) {
    .barcode {
        height: 140px;
    }
}
@media (max-width: 767px) {
    .barcode {
        max-width: 100%;
    }
}

.gift-card-container {
    @media (max-width: 767px) {
        padding: 0 10px;
    }
}

.gift-card {
    width: 100%;
    max-width: 1100px;
    min-height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 0 auto 40px;
}


@media (max-width: 767px) {
    .gift-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 575px) {
    .gift-card {
        min-height: 450px;
        margin: 0 0 30px 0;
    }
}
.gift-card__logo {
    width: 30%;
    min-width: 200px;
    height: auto;
}
.gift-card__content {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background: url("../../img/gift-card-bg.png"), linear-gradient(251.8deg, rgba(157, 83, 255, 0.2) 0.02%, rgba(157, 83, 255, 0) 99.99%);
    background-color: rgb(36, 21, 48);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}
@media (max-width: 767px) {
    .gift-card__content {
        padding: 30px;
    }
}
@media (max-width: 575px) {
    .gift-card__content {
        padding: 20px;
    }
}
.gift-card__title {
    font-size: 40px;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .gift-card__title {
        font-size: 32px;
    }
}
@media (max-width: 575px) {
    .gift-card__title {
        font-size: 20px;
    }
}
.gift-card__count {
    font-size: 100px;
    line-height: 1;
}
@media (max-width: 1023px) {
    .gift-card__count {
        font-size: 50px;
    }
}
.gift-card__count-wrapper {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 15px;
}
.gift-card__currency {
    font-size: 40px;
}
@media (max-width: 767px) {
    .gift-card__currency {
        font-size: 22px;
    }
}
.gift-card__code-wrapper {
    position: relative;
    padding: 80px 100px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
@media (max-width: 767px) {
    .gift-card__code-wrapper {
        padding: 40px 30px;
    }
}
@media (max-width: 575px) {
    .gift-card__code-wrapper {
        padding: 15px 5px;
    }
}
.gift-card__code {
     width: 100%;
    position: absolute;
    bottom: 70px;
    left: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
@media (max-width: 767px) {
    .gift-card__code {
        text-align: center;
        position: static;
        -webkit-transform: none;
        transform: none;
    }
}
.gift-card__code-text {
    font-size: 22px;
}

.gift-card-container .gift-card__button {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    text-align: center;
    border: 1px solid #7826AD;
    background-color: #7826AD;
    color: #fff;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Jost", sans-serif;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

@media (max-width: 767px) {
    .gift-card-container .gift-card__button {
        max-width: none;
    }
}

.gift-card-container .gift-card__button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.gift-card-container .gift-card__button:not([disabled]):hover,
.gift-card-container .gift-card__button:not([disabled]):focus,
.gift-card-container .gift-card__button:not([disabled]):active {
    background: #a269d4;
    color: #fff;
}

/* end gift-card */