body {
    background-image: linear-gradient(#824cb1, #dd285863);
    background-repeat: no-repeat;
    background-size: cover;
    font-weight: 400;
    color: #333333;

}

.NixieOne {
    font-family: 'Nixie One', cursive;
}
.SpecialElite {
    font-family: 'Special Elite', cursive;
}

.container-sm {
    max-width: 600px;
}

.title {
    font-weight: 700;
    font-size: 20px;
}

.card .main {
    box-shadow: 0 4px 8px 0 #00000033, 0 6px 30px 0 #00000030;
}

.yellow_card {
    text-align: center;
    padding: 5px;
    background-color: #fffad0;
    border: dashed 1px #ffc107;
}

.logo_payment {
    width: 40px;
    margin-left: 5px;
    border: solid 2px;
    border-radius: 6px;
}

.email_logo {
    background-color: #ffffff;
    border-color: #d6d6d6;
    padding: 8px 15px;
}

.email_logo img {
    width: 30px;
}

.email {
    border-color: #d6d6d6;
    height: 50px;
}

#by_pymnt_dana img {
    height: 36px;
    border: solid 2px #158ee6;
    border-radius: 6px;
}

#by_pymnt_gopay img {
    height: 36px;
    border: solid 2px #05add5;
    border-radius: 6px;
}

#by_pymnt_ovo img {
    height: 36px;
    border: solid 2px #6f5aa1;
    border-radius: 6px;
}

.pymnt_name {
    font-size: 20px;
    margin-left: 10px;
    font-weight: 700;
}

.payment_option {
    box-shadow: 0 5px 10px 0 #0000004d;
    border-radius: 0.375em;
}

.shadow_button {
    box-shadow: 0 5px 10px 0 #0000004d;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + label {
    background-color: #fffad0;
    border: solid 1px #ffc107;
}


input#by_eml {
    font-size: 20px;
}

label {
    width: 100%;
    padding: 8px;
    border: solid 1px #33333333;
    border-radius: .25rem;
    margin-bottom: 0;
}

.btn {
    font-weight: 700;
    font-size: 22px;
}

.copy_button {
    font-size: 12px;
    border: solid 1px #333333;
    border-radius: 5px;
    padding: 0 3px;
    margin-left: 5px;
}

.copy_button img {
    width: 12px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #ffd0d0;
    border: #ff0707 solid 1px;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 40px;
    font-size: 20px;
}
    
#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 1s;
    animation: fadein 0.5s, fadeout 0.5s 1s;
}
    
@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 40px; opacity: 1;}
}
    
@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 40px; opacity: 1;}
}
    
@-webkit-keyframes fadeout {
    from {top: 40px; opacity: 1;} 
    to {top: 0; opacity: 0;}
}
    
@keyframes fadeout {
    from {top: 40px; opacity: 1;}
    to {top: 0; opacity: 0;}
}

.time_container {
    text-align: center;
    padding: 5px;
    background-color: #d0eaff;
    border: dashed 1px #2196f3;
}

/* UPLOAD FORM */
.upload_card {
    border-radius: 10px;
    box-shadow: 0 5px 10px 0 #0000004d;
    background-color: #ffffff;
    padding: 20px; /* Adjust padding as needed */
    border: 1px solid #dee2e6
}

.upload_card h3 {
    font-size: 22px;
    font-weight: 600;
}

.drop_box {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px dotted #a3a3a3;
    border-radius: 5px;
}

.drop_box h4 {
    font-size: 16px;
    font-weight: 400;
    color: #2e2e2e;
}

.drop_box p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #a3a3a3;
}
.drop_box .btn {
    text-decoration: none;
    background-color: #0d6efd;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    outline: none;
    transition: 0.3s;
    font-size: 16px;
}

.drop_box .btn:hover {
    text-decoration: none;
    background-color: #dfebff;
    color: #0d6efd;
    padding: 10px 20px;
    border: none;
    outline: 1px solid #0d6efd;
}


#imagePreview,
#fileName {
    max-width: 280px;
    width: 100%;
    margin-top: 10px;
    display: none;
}