body {
    font-family: 'Gogh', Arial, sans-serif;
    background-color: #F9F1E4;
}
.promocode-container {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}
.promocode-logo {
    margin-top: 24px;
}
.promocode-banner {
    margin-top: 24px;
    max-width: 360px;
}
.promocode-banner > img {
    width: 100%;
    height: auto;
}
.promocode-code {
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
}
.promocode-links {
    margin-top: 40px;
}
.promocode-links__text {
    text-align: center;
    color: black;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.04px;
    font-weight: 700;
}
.promocode-code__block {
    padding: 8px 8px 8px 20px;
    background-color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.promocode-code__success {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 28px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease-in-out;
}
.promocode-code__success.promocode-code__success-show {
    opacity: 1;
    pointer-events: auto;
}
.promocode-code__text {
    text-transform: uppercase;
    font-size: 22px;
    line-height: 16px;
    letter-spacing: 0.04px;
    font-weight: 700;
    color: #CE0E2D;
}
.promocode-code__text-success {
    color: #13A538;
    font-size: 16px;
    text-transform: none;
    line-height: 140%;
}
.promocode-code__icon {
    background-color: #CE0E2D;
    display: flex;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
    /* width: 60px;
    height: 60px; */
}
.promocode-code__icon-success {
    background-color: #13A538;
}
.promocode-code__icon > img {
    width: 24px;
    height: 24px;
    padding: 18px;
}
.promocode-links__list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.promocode-links__item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.promocode-links__icon {
    width: 32px;
    height: 32px;
}
.promocode-links__icon > img {
    width: 100%;
    height: 100%;
}
.promocode-links__inner {
    text-decoration: underline;
    text-transform: uppercase;
    color: #CE0E2D;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.03px;
    font-weight: 700;
}
