#tcn-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.tcn-popup-content {
    display: flex;
    background: #fff;
    width: 684px;
    max-width: 90%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.tcn-left img {
    width: 100%;
    height: auto;
    display: block;
}
.tcn-right {
    padding: 20px 20px 20px 35px;
    flex-grow: 1;
    position: relative;
    padding-top: 69px;
    width: 50%;
}
.tcn-left {
    width: 50%;
}
h2.bc-home {
    font-size: 25px;
}
.tcn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}
.tcn-coupons {
    margin-top: 10px;
}
.tcn-coupon {
    background: #ff4757;
    color: #fff;
    padding: 4px 10px;
    margin-right: 5px;
    border-radius: 4px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .tcn-left {
        display: none;
    }
    .tcn-right {
        padding: 20px 20px 61px 35px;
        width: 100%;
    }
}
