* {
    box-sizing: border-box;
}

html,
body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
}

body {
    overflow-y: scroll;
}

.app {
    min-height: 100%;
    min-width: 375px;
    max-width: 500px;
    margin: 0px auto;
    padding: 40px 20px;
    background-image: url('../img/bg.png');
    background-color: #22208D;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

h3 {
    width: 335px;
    font-size: 20px;
    margin: 0px auto;
    text-align: center;
    color: #FFF;
    line-height: 24px;
    position: relative;
}

h3>img {
    height: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -3px;
}

h3>span {
    position: relative;
    z-index: 1;
}

.gift-card {
    width: 335px;
    margin: 25px auto 0px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: space-between;
    height: 80px;
    padding: 0px 10px;
    border-radius: 10px;
    border: 1px solid #5F5FEA;
    background: rgba(77, 86, 234, 0.40);
    backdrop-filter: blur(1.5px);
}

.gift-card>div {
    height: 60px;
    width: 98px;
    border-radius: 5px;
    background: #2F33A1;
    box-shadow: 2px 2px 3px 0px #3035AE inset, -2px -2px 3px 0px #3035AE inset;
    padding-left: 35px;
    padding-right: 8px;
    background-image: url('../img/ribbon.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    font-size: 12px;
    color: #FFF;
    display: flex;
    justify-content: end;
    align-items: center;
    text-align: center;
}

.gift-card>div img {
    height: 8px;
}

.lucky-wheel {
    width: 304px;
    height: 331px;
    margin: 20px auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/base.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.lucky-wheel-spin {
    width: 269px;
    height: 269px;
    background-image: url('../img/spin.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lucky-wheel-spin>div {
    position: absolute;
    width: 100%;
    height: 120px;
    padding-right: 24px;
    padding-left: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lucky-wheel-award-item {
    width: 120px;
    font-size: 12px;
    font-weight: bold;
    color: #221F1F;
    transform: rotate(90deg);
    white-space: nowrap;
    text-align: center;
}

.lucky-wheel-award-item img {
    height: 13px;
}

.lucky-wheel-award-item div {
    font-size: 16px;
    color: #FC4F33;
}

.lucky-wheel-pointer {
    width: 85px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 119px;
    margin: 0px auto;
    font-size: 0;
}

.lucky-wheel-pointer img {
    width: 100%;
}

.pointer-box {
    position: relative;
}

.girar {
    width: 85px;
    height: 92px;
    color: #001055;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lottie-finger {
    width: 70px;
    height: 70px;
    position: absolute;
    right: -25px;
    bottom: -5px;
    pointer-events: none;
}

.rhomb {
    width: 188px;
    height: 63px;
    padding: 8px 15px;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0px auto;
    background-image: url('../img/rhomb.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.rule {
    padding: 20px 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #5F5FEA;
    background: rgba(77, 86, 234, 0.40);
    backdrop-filter: blur(1.5px);
    margin-top: -10px;
}

.rule>div {
    color: #FFF;
    font-size: 12px;
    text-transform: capitalize;
    padding: 10px 20px;
    border-radius: 10px;
    background: #2F33A1;
    box-shadow: 2px 2px 3px 0px #3035AE inset, -2px -2px 3px 0px #3035AE inset;
}

.rule h4 {
    font-size: 14px;
    margin: 0;
    margin-bottom: 5px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pop-up-award {
    width: 270px;
    height: 320px;
    padding: 20px 19px;
    border-radius: 10px;
    background-image: url('../img/popup.png');
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #FFF;
    text-transform: capitalize;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.pop-up-award.show {
    transform: scale(1);
    opacity: 1;
}

.pop-up-award>b {
    font-size: 24px;
}

.pop-up-award>p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.pop-up-award>button {
    height: 46px;
    width: 218px;
    font-size: 20px;
    color: #FFF;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 52px;
    border-width: 0px;
    margin-top: 20px;
    background: linear-gradient(90deg, #62A0FD 0%, #3887FD 100%);
}

.award-box>img {
    width: 100%;
    margin-top: 9px;
}

.award-box {
    position: relative;
}

.award-box>b {
    color: #0085FF;
    font-size: 22px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0px auto;
}

.whatsapp-entry {
    width: 355px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    bottom: 8px;
    margin: 0px auto;
    padding: 8px 10px;
    border-radius: 10px;
    background: #EDF2FA;
    box-shadow: 0px 0px 6px 0px #242297;
}

.whatsapp-entry>div {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.whatsapp-entry img {
    height: 38px;
}

.whatsapp-entry button {
    height: 36px;
    width: 80px;
    font-size: 12px;
    color: #FFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 0px;
    border-radius: 5px;
    background: #13B45D;
}