.wish-container{
    width: 100%;
    height: 100%;
    background-image: url('../image/background2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.container.wish{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5vh;
    padding-bottom: 1.5vh;
}
.wish-selector{
    width: 100%;
    max-height: 50dvh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.wish-selector h1{
    font-size: 4.5dvh;
    margin: 0;
}
.nickname-text{
    width: 80%;
    text-align: center;
    color: var(--magenta);
    font-size: 1.4rem;
    background-color: white;
    border: 2px solid var(--magenta);
    border-radius: 10px;
    margin-bottom: 1vh;
}
.nickname-text::placeholder {
    color: var(--magenta-light);
    opacity: 1; /* Firefox */
}
.nickname-text::-ms-input-placeholder { /* Edge 12-18 */
    color: var(--magenta-light);
}
.wish-group-wrapper{
    width: 70%;
    height: 100%;
    overflow-y: auto;
    border-radius: 10px;
}
.wish-select{
    width: 100%;
    text-align: center;
}
#selWish .btn-check, #selWish .btn{
    border: none;
}
#selWish .btn{
    margin-top:0;
}
.wish-btn{
    --bs-btn-bg: rgba(255, 255, 255, 0.5);
    --bs-btn-color: var(--wish-purple);
    --bs-btn-hover-color: var(--magenta);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.7);
    --bs-btn-active-color: var(--magenta);
    --bs-btn-active-bg: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
}
/* .wish-btn{
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--magenta);
}
.wish-select option { 
    background-color: transparent !important;
    transition: background-color 0.1s, color 0.1s;
}
.wish-select option:checked, .wish-select option:checked:hover,
.wish-select option:focus, .wish-select option:hover, .wish-select option:active{
    background-color: rgba(255, 255, 255, 0.7) !important;
    color: var(--magenta) !important;
    -webkit-tap-highlight-color: transparent !important;
} */
.w-krathong-preview{
    display: grid;
    grid-template-columns: 1fr;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    width: 95%;
    height: 100%;
    max-height: 45dvh;
    margin-top: auto;
    margin-bottom: auto;
    transition: all 0.3s;
    text-align: center;
}
.w-preview-img{
    grid-row-start: 1;
    grid-column-start: 1;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 45dvh;
    place-self: center;
}
.w-preview-img svg{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 45dvh;
    font-weight: 700;
    color: var(--flag-purple);
}
.w-footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.7rem;
    position: fixed;
    left: 0;
    bottom: 1.5dvh;
    z-index: 99;
}

@media (min-height: 768.02px) { 
    .wish-selector{
        max-height: initial;
    }
}


@media (min-width: 576px) {  }

@media (min-width: 768px) {  }

@media (min-width: 992px) {  }

@media (min-width: 1200px) {  }

@media (min-width: 1400px) {  }

#upLoader{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}
.send-loader {
    width: 20px;
    height: 12px;
    display: block;
    margin: auto;
    position: relative;
    border-radius: 4px;
    color: #FFF;
    background: currentColor;
    box-sizing: border-box;
    animation: animloader 0.6s 0.3s ease infinite alternate;
}
.send-loader::after,
.send-loader::before {
    content: '';  
    box-sizing: border-box;
    width: 20px;
    height: 12px;
    background: currentColor;
    position: absolute;
    border-radius: 4px;
    top: 0;
    right: 110%;
    animation: animloader  0.6s ease infinite alternate;
}
.send-loader::after {
    left: 110%;
    right: auto;
    animation-delay: 0.6s;
}
@keyframes animloader {
    0% {
        width: 20px;
    }
    100% {
        width: 48px;
    }
}
      