/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 24 2026 | 07:08:54 */
/* MAIN POPUP FORM CONTAINER */
#productpopupform {
    background: #D4D66D; /* teal right panel */
    padding:20px;
    border-radius: 0;
}

/* PLACEHOLDER STYLE */
#productpopupform .elementor-field::placeholder {
    color: #ffffff !important;
    opacity: 1;
    font-family: inherit !important;
}

/* FOR ALL BROWSERS */
#productpopupform .elementor-field::-webkit-input-placeholder {
    color: #ffffff;
    font-family: inherit;
}

#productpopupform .elementor-field:-ms-input-placeholder {
    color: #ffffff;
    font-family: inherit;
}

#productpopupform .elementor-field::-ms-input-placeholder {
    color: #ffffff;
    font-family: inherit;
}

/* TEXTAREA PLACEHOLDER */
#productpopupform textarea::placeholder {
    color: #ffffff !important;
    font-family: inherit !important;
}

/* INPUT FIELDS STYLE */
#productpopupform .elementor-field {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 12px 5px;
    font-size: 14px;
}

/* PLACEHOLDER COLOR */
#productpopupform .elementor-field::placeholder {
    color: rgba(255,255,255,0.8);
}

/* REMOVE FOCUS OUTLINE */
#productpopupform .elementor-field:focus {
    outline: none;
    border-bottom: 2px solid #fff;
}

/* TEXTAREA */
#productpopupform textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

/* UPLOAD FIELD WRAPPER */
#productpopupform .elementor-field-type-upload {
    position: relative;
}

/* HIDE DEFAULT INPUT LOOK */
#productpopupform input[type="file"] {
    opacity: 0;
    width: 100%;
    height: 150px;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

/* CUSTOM BOX */
#productpopupform .elementor-field-type-upload::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e9e9e9;
    border-radius: 20px;
    z-index: 1;
}

/* ICON */
#productpopupform .elementor-field-type-upload::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: url('https://cdn-icons-png.flaticon.com/512/724/724933.png') no-repeat center;
    background-size: contain;
    z-index: 2;
}

/* MAIN TEXT */
#productpopupform .upload-text {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 16px;
    color: #333;
    z-index: 2;
}

/* SUB TEXT */
#productpopupform .upload-subtext {
    position: absolute;
    top: 95px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #666;
    z-index: 2;
	    text-align: center;
}

/* FILE NAME AFTER SELECT */
#productpopupform .file-name {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #000;
    z-index: 2;
}

@media (max-width: 767px) {

    #productpopupform input[type="file"] {
        height: 160px;
    }

    #productpopupform .upload-text {
        font-size: 14px;
    }

    #productpopupform .upload-subtext {
        font-size: 11px;
    }

    #productpopupform .elementor-field-type-upload::after {
        width: 24px;
        height: 24px;
    }
}