.srwc-apply-coupon {
    display: none;
}

.srwc-apply-coupon-btn {
    margin-top: 20px;
    border: none;
    padding: 12px 24px;
    cursor: pointer;        
}

/*----------------------------- Firework Effects -----------------------------*/

:root {
    --srwc-firework-colors: #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff;
}

.srwc-firework {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100000;
    overflow: hidden;
}

.srwc-firework-particle {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    animation: srwc-firework-particle 1.2s ease-out forwards;
}

@keyframes srwc-firework-particle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0);
        opacity: 0;
    }
}

/*----------------------------- End Firework Effects -----------------------------*/

/*--------------------------- Background Effects ---------------------------*/

.srwc-bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 100000;
}

.srwc-effect-element {
    position: absolute;
    pointer-events: none;
    z-index: 100001;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.srwc-effect-element[data-balloons-type="balloon-1"] {
    animation: risingBalloons1JS 15s linear infinite;
    animation-fill-mode: both;
}

.srwc-effect-element[data-balloons-type="balloon-2"] {
    animation: risingBalloons2JS 12s linear infinite;
    animation-fill-mode: both;
}

.srwc-effect-element[data-balloons-type="balloon-3"] {
    animation: risingBalloons3JS 18s linear infinite;
    animation-fill-mode: both;
}

.srwc-effect-element[data-balloons-type="balloon-4"] {
    animation: risingBalloons4JS 20s linear infinite;
    animation-fill-mode: both;
}

.srwc-effect-element[data-balloons-type="balloon-5"] {
    animation: risingBalloons5JS 25s linear infinite;
    animation-fill-mode: both;
}

.srwc-effect-element[data-effect="batman"] {
    animation: risingBatJS 12s linear infinite;
    animation-fill-mode: both;
}

.srwc-effect-element[data-halloween-type="ghost"] {
    animation: fallingHalloweenGhostJS 6s linear infinite;
}

.srwc-effect-element[data-halloween-type="halloween-ghost"] {
    animation: fallingHalloweenGhost2JS 10s linear infinite;
}

.srwc-effect-element[data-halloween-type="creepy-ghost"] {
    animation: fallingHalloweenGhost3JS 7s linear infinite;
}

.srwc-effect-element[data-effect="hearts"] {
    animation: fallingHeartsJS 10s linear infinite;
}

.srwc-effect-element[data-effect="heart"] {
    animation: fallingHeartJS 10s linear infinite;
}

.srwc-effect-element[data-effect="smile"] {
    animation: fallingSmileJS 8s linear infinite;
}

.srwc-effect-element[data-effect="leaf"] {
    animation: fallingLeafJS 8s linear infinite;
}

.srwc-effect-element[data-effect="star"] {
    animation: fallingStarJS 15s linear infinite;
    animation-fill-mode: both;
}

.srwc-effect-element[data-effect="snowflake"] {
    animation: fallingSnowflakeJS 8s linear infinite;
}

.srwc-effect-element[data-effect="pumpkins"] {
    animation: fallingPumpkinsJS 10s linear infinite;
}

@keyframes risingBalloons1JS {
    0% { transform: translateY(100vh) }
    100% { transform: translateY(-150vh) }
}

@keyframes risingBalloons2JS {
    0% { transform: translateY(100vh) }
    100% { transform: translateY(-150vh) }
}

@keyframes risingBalloons3JS {
    0% { transform: translateY(100vh) }
    100% { transform: translateY(-150vh) }
}

@keyframes risingBalloons4JS {
    0% { transform: translateY(100vh) }
    100% { transform: translateY(-150vh) }
}

@keyframes risingBalloons5JS {
    0% { transform: translateY(100vh) }
    100% { transform: translateY(-150vh) }
}

@keyframes risingBatJS {
    0% { transform: translateY(100vh) }
    100% { transform: translateY(-150vh) }
}

@keyframes fallingHalloweenGhostJS {
    0% { transform: translateY(-150vh) }
    100% { transform: translateY(100vh) }
}

@keyframes fallingHalloweenGhost2JS {
    0% { transform: translateY(-150vh) }
    100% { transform: translateY(100vh) }
}

@keyframes fallingHalloweenGhost3JS {
    0% { transform: translateY(-150vh) }
    100% { transform: translateY(100vh) }
}

@keyframes fallingHeartsJS {
    0% { transform: translateY(-150vh) }
    100% { transform: translateY(100vh) }
}

@keyframes fallingHeartJS {
    0% { transform: translateY(-150vh) }
    100% { transform: translateY(100vh) }
}

@keyframes fallingSmileJS {
    0% { transform: translateY(-150vh) }
    100% { transform: translateY(100vh) }
}

@keyframes fallingLeafJS {
    0% { transform: translateY(-150vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

@keyframes fallingStarJS {
    0% { transform: translateY(-150vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

@keyframes fallingSnowflakeJS {
    0% { transform: translateY(-150vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

@keyframes fallingPumpkinsJS {
    0% { transform: translateY(-150vh) }
    100% { transform: translateY(100vh) }
}

/*--------------------------- End Background Effects ---------------------------*/

/*--------------------------- Floating Icon ---------------------------*/

.srwc-mini-icon {
    width: 60px;
    height: 60px;
    background: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20%;
    overflow: hidden;
}

.srwc-mini-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.srwc-mini-icon--svg {
    position: relative;
}

.srwc-mini-icon--svg .srwc-mini-icon-mask {
    width: 100%;
    height: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 60% 60%;
    mask-size: 60% 60%;
}

/*--------------------------- End Floating Icon ---------------------------*/

/*--------------------------- Phone Number Field ---------------------------*/

.srwc-phone-field-wrapper {
    display: flex;
    width: 100% !important;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
}

.srwc-country-code {
    border: none !important;
    background: #f5f5f5 !important;
    appearance: auto !important;
    cursor: pointer;
    border-right: 1px solid #e0e0e0 !important;
    width: 200px;
    padding: 10px;
}

.srwc-country-code:focus {
    background-color: #f0f0f0 !important;
    border: none !important;
}

/*--------------------------- End Phone Number Field ---------------------------*/
