.successButtonWrap {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.successButtonInner {
    display: flex;
    align-items: center;
}
.commonWrapperStyle:not(:first-child) {
    margin-left: 2rem;
}
.commonButtonStyle {
    padding: 0.875rem 3rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
}
.myDashboardButton {
    background-color: #FF7A00;
    color: #fff;
}
.continueShoppingButton {
    background-color: #E1E7EA;
    color: #000;
}
.claimRewardsWrap {
    cursor: pointer;
}
.customModalBody {
    margin-top: 3rem;
}
.customClose {
    cursor: pointer;
    opacity: 1 !important;
    width: 1.75rem;
    background-color: #DDE7EB !important;
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 2px;
    z-index: 999;
}
.customClose:focus {
    outline: none;
}
.singleProductWrap,
.multiProductWrap {
    text-align: center;
}
.rewardChooseHead {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}
.offerWrap {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.offerHeading h3 {
    font-size: 1.25rem;
    font-weight: 600;
}
.offerBox {
    cursor: pointer;
    padding: 1.25rem 1rem;
    border: 1px solid #D7E0E4;
    text-align: center;
    max-width: 24rem;
}
.offerDescription p {
    color: #E86F00;
}
.customModalDialog {
    max-width: 60rem !important;
}
.claimRewardButton {
    margin-top: 1.5rem;
}
.claimRewardButton button {
    padding: 0.5rem 2rem;
    color: #fff;
    border: none;
    background-image: linear-gradient(270.3deg, #FF7A00 1.02%, #FF9800 96.22%);
    border-radius: 3px;
}
/* Multi Product */
.mulOfferWrap {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 1rem;
    height: 12rem;
    overflow: hidden;
    overflow-y: scroll;
    padding: 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: #FFB850 rgba(113, 113, 113, 0.12);
}
.mulOfferWrap::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.mulOfferWrap::-webkit-scrollbar-track {
    background-color: #DAE0E2;
    box-shadow: inset 0 0 6px rgb(231 229 229 / 12%);
    border-radius: 10px;
}
.mulOfferWrap::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFB850;
    outline: 1px solid #FFB850;
}
.mulOfferWrap img:not(:first-child) {
    margin-left: 1rem;
}
.mulOfferBox {
    cursor: pointer;
    padding: 1.25rem 1rem;
    border: 1px solid #D7E0E4;
    text-align: center;
}
.offerBoxSelect {
    border: 1px solid #FFB850;
}
.congratsDesktopImg {
    display: block;
}
.congratsMobileImg {
    display: none;
}
.congratsContentWrap img {
    position: absolute;
    width: 100%;
    left: 0;
    top: -3rem;
}
.congratsText {
    margin-top: 12rem;
    text-align: center;
}
.congratsText .congratsHeading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.congratsText .congratsSubHeading {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.congratsGotIt {
    padding: 0.625rem 4rem;
    font-weight: 600;
    background-color: #E1E7EA;
    border: none;
}
/* Loader */
.claimRewardButton .claimRewardLoaderStyle {
    padding: 0.5rem 4rem;
    pointer-events: none;
}
.claimRewardLoader .loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
} 
@keyframes spin {
    to { 
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    to { 
        -webkit-transform: rotate(360deg); 
        transform: rotate(360deg);
    }
}
.freeRewardText {
    font-weight: 600;
    color: #ff7a00;
}
@media screen and (max-width: 640px) {
    .successButtonInner {
        display: grid;
        grid-template-columns: 10rem;
        grid-auto-columns: 1fr;
    }
    .claimRewardsWrap {
        grid-column: 1 / 3;
    }
    .claimRewardsWrap img {
        max-width: 12rem;
    }
    .commonWrapperStyle:not(:first-child) {
        margin-left: 0;
        margin-top: 1rem;
    }
    .commonButtonStyle {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }
    .mulOfferWrap {
        grid-template-columns: 1fr; 
        height: 30rem;
        padding: 0 0.5rem;
    }
    .congratsDesktopImg {
        display: none;
    }
    .congratsMobileImg {
        display: block;
    }
    .congratsText {
        margin-top: 8rem;
    }
    .congratsText .congratsHeading {
        font-size: 1rem;
    }
    .congratsText .congratsSubHeading {
        font-size: 0.875rem;
    }
    .congratsBody {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media screen and (max-width: 320px) {
    .congratsText {
        margin-top: 5rem;
    }
}