/* ==============================================
   POPUP FORM ĐẶT HÀNG - ANIME STYLE
   ============================================== */

/* Custom Scrollbar cho popup (thanh cuộn dọc đẹp) */
.popup-order-container::-webkit-scrollbar {
    width: 8px;
}

.popup-order-container::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f0f0ff 0%, #fff5f8 100%);
    border-radius: 10px;
    margin: 10px 0;
}

.popup-order-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.popup-order-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8fb3 0%, #ff6b9d 100%);
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.5);
}

/* Firefox scrollbar */
.popup-order-container {
    scrollbar-width: thin;
    scrollbar-color: #ff6b9d #f0f0ff;
}

/* Style cho menu Tra cứu */
.lookup-menu-link {
    color: #ff6b9d !important;
    font-weight: 600;
}

.lookup-menu-link:hover {
    color: #c44569 !important;
}

.lookup-menu-link i {
    margin-right: 5px;
}

/* Overlay cho popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.9) 0%, rgba(255, 105, 180, 0.1) 100%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.6s ease forwards;
}

/* Container chính của popup */
.popup-order-container {
    position: relative;
    width: 95%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #fff5f8 0%, #fff 50%, #f0f4ff 100%);
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(255, 105, 180, 0.4),
        0 10px 30px rgba(106, 90, 205, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(80px) scale(0.9);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.popup-overlay.active .popup-order-container {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition-delay: 0.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Header với icon anime */
.popup-order-header {
    position: relative;
    padding: 30px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 20px 7px 0 0;
    overflow: hidden;
}

.popup-order-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.popup-order-header h3 {
    position: relative;
    color: #fff;
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 26px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.popup-order-header p {
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    margin: 8px 0 0;
    z-index: 1;
}

/* Icon anime decorations */
.anime-decor {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: bounce 2s ease-in-out infinite;
}

.anime-decor.left {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.anime-decor.right {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-60%) scale(1.1); }
}

/* Nút đóng */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg) scale(1.1);
}

.popup-close i {
    color: #fff;
    font-size: 18px;
}

/* Body của form */
.popup-order-body {
    padding: 25px 30px 30px;
}

/* Form groups */
.popup-form-group {
    margin-bottom: 18px;
}

.popup-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 14px;
    color: #4a4a6a;
    margin-bottom: 8px;
}

.popup-form-group label i {
    color: #ff6b9d;
    font-size: 16px;
}

.popup-form-group label .required {
    color: #ff4757;
}

.popup-input-wrapper {
    position: relative;
}

.popup-input-wrapper i.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #c44569;
    font-size: 16px;
    transition: color 0.3s ease;
}

.popup-input-wrapper input:focus ~ i.input-icon,
.popup-input-wrapper textarea:focus ~ i.input-icon {
    color: #ff6b9d;
}

.popup-input-wrapper input,
.popup-input-wrapper textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #e8e8f0;
    border-radius: 14px;
    font-family: 'Quicksand-Regular', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.popup-input-wrapper input:focus,
.popup-input-wrapper textarea:focus {
    border-color: #ff6b9d;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.2);
    outline: none;
}

.popup-input-wrapper input::placeholder,
.popup-input-wrapper textarea::placeholder {
    color: #aaa;
}

/* Checkbox styling */
.popup-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.popup-checkbox-item {
    position: relative;
}

.popup-checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.popup-checkbox-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Quicksand-Medium', sans-serif;
    font-size: 13px;
    color: #555;
    transition: all 0.3s ease;
    margin: 0;
}

.popup-checkbox-item label i {
    font-size: 14px;
    color: #888;
    transition: all 0.3s ease;
}

.popup-checkbox-item:hover label {
    border-color: #ff6b9d;
    background: #fff5f8;
}

.popup-checkbox-item input[type="checkbox"]:checked ~ label {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-color: #ff6b9d;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
    transform: translateY(-2px);
}

.popup-checkbox-item input[type="checkbox"]:checked ~ label i {
    color: #fff;
}

/* Box section */
.popup-box-section {
    margin-top: 10px;
}

.popup-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 14px;
    color: #4a4a6a;
    margin-bottom: 12px;
}

.popup-box-title i {
    color: #6c5ce7;
    font-size: 16px;
}

.popup-box-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.popup-box-item {
    text-align: center;
}

.popup-box-item label {
    display: block;
    padding: 12px 8px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 13px;
    color: #555;
    transition: all 0.3s ease;
    margin: 0;
}

.popup-box-item label:hover {
    border-color: #6c5ce7;
    background: #f0f4ff;
}

.popup-box-item input[type="checkbox"]:checked ~ label {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-color: #6c5ce7;
    color: #fff;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

.popup-box-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Size section */
.popup-size-section {
    margin-top: 10px;
}

.popup-size-grid {
    display: flex;
    gap: 10px;
}

.popup-size-item {
    flex: 1;
    text-align: center;
}

.popup-size-item label {
    display: block;
    padding: 14px 10px;
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
    border: 2px solid #ffdde8;
    border-radius: 14px;
    cursor: pointer;
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 14px;
    color: #c44569;
    transition: all 0.3s ease;
    margin: 0;
}

.popup-size-item label:hover {
    border-color: #ff6b9d;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #fff;
}

.popup-size-item input[type="checkbox"]:checked ~ label {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-color: #ff6b9d;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
    transform: translateY(-3px);
}

.popup-size-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Color section */
.popup-color-section {
    margin-top: 10px;
}

.popup-color-grid {
    display: flex;
    gap: 10px;
}

.popup-color-item {
    flex: 1;
    text-align: center;
}

.popup-color-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 10px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 2px solid #e8e8f0;
    border-radius: 14px;
    cursor: pointer;
    font-family: 'Quicksand-Medium', sans-serif;
    font-size: 13px;
    color: #555;
    transition: all 0.3s ease;
    margin: 0;
}

.popup-color-item label .color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.popup-color-item label .color-dot.white { background: #fff; }
.popup-color-item label .color-dot.black { background: #333; }
.popup-color-item label .color-dot.colorful { background: linear-gradient(135deg, #ff6b9d, #c44569, #6c5ce7, #a29bfe); }

.popup-color-item:hover label {
    border-color: #6c5ce7;
}

.popup-color-item input[type="checkbox"]:checked ~ label {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-color: #6c5ce7;
    color: #fff;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.popup-color-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Nút gửi */
.popup-submit-btn {
    width: 100%;
    padding: 16px 30px;
    margin-top: 25px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.popup-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.popup-submit-btn:hover::before {
    left: 100%;
}

.popup-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

.popup-submit-btn:active {
    transform: translateY(-1px);
}

.popup-submit-btn i {
    font-size: 18px;
}

/* Loading state */
.popup-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.popup-submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success message */
.popup-success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.popup-success-message.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.popup-success-message i {
    font-size: 70px;
    color: #2ecc71;
    margin-bottom: 20px;
    animation: successBounce 0.6s ease;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.popup-success-message h4 {
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 24px;
    color: #2ecc71;
    margin: 0 0 10px;
}

.popup-success-message p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================
   POPUP TRA CỨU ĐƠN HÀNG
   ============================================== */

/* Overlay cho popup tra cứu */
.popup-lookup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.9) 0%, rgba(162, 155, 254, 0.1) 100%);
    z-index: 99998 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.popup-lookup-overlay.active {
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.6s ease forwards;
}

/* Popup Tra cứu đơn hàng */

/* Container popup tra cứu */
.popup-lookup-container {
    position: relative;
    width: 95%;
    max-width: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 
        0 25px 80px rgba(108, 92, 231, 0.4),
        0 10px 30px rgba(108, 92, 231, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-lookup-overlay.active .popup-lookup-container {
    transform: scale(1);
}

/* Header tra cứu */
.popup-lookup-header {
    position: relative;
    padding: 25px 25px 20px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.popup-lookup-header h3 {
    color: #fff;
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 22px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.popup-lookup-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin: 5px 0 0;
}

/* Nút đóng */
.popup-lookup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-lookup-close:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.popup-lookup-close i {
    color: #fff;
    font-size: 16px;
}

/* Body tra cứu */
.popup-lookup-body {
    padding: 25px;
}

/* Form tra cứu */
.lookup-form-group {
    margin-bottom: 15px;
}

.lookup-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 14px;
    color: #4a4a6a;
    margin-bottom: 8px;
}

.lookup-form-group label i {
    color: #6c5ce7;
}

.lookup-input-wrapper {
    position: relative;
}

.lookup-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c5ce7;
    font-size: 18px;
}

.lookup-input-wrapper input {
    width: 100%;
    padding: 14px 15px 14px 48px;
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    font-family: 'Quicksand-Regular', sans-serif;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.lookup-input-wrapper input:focus {
    border-color: #6c5ce7;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
    outline: none;
}

.lookup-input-wrapper input::placeholder {
    color: #aaa;
}

/* Nút tra cứu */
.lookup-submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lookup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
}

/* Kết quả tra cứu */
.lookup-result {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 15px;
    border: 2px solid #e8e8f0;
}

.lookup-result.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.lookup-result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8f0;
}

.lookup-result-header i {
    font-size: 28px;
    color: #2ecc71;
}

.lookup-result-header h4 {
    font-family: 'Quicksand-Bold', sans-serif;
    font-size: 18px;
    color: #2ecc71;
    margin: 0;
}

.lookup-result-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.lookup-result-item strong {
    color: #4a4a6a;
    min-width: 100px;
}

.lookup-result-item span {
    color: #333;
    flex: 1;
}

/* Loading state */
.lookup-loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.lookup-loading.active {
    display: block;
}

.lookup-loading i {
    font-size: 30px;
    color: #6c5ce7;
    animation: spin 1s linear infinite;
}

/* Error message */
.lookup-error {
    display: none;
    text-align: center;
    padding: 20px;
    background: #fff0f0;
    border-radius: 12px;
    margin-top: 15px;
}

.lookup-error.active {
    display: block;
    animation: shake 0.5s ease;
}

.lookup-error i {
    font-size: 30px;
    color: #ff4757;
    margin-bottom: 10px;
}

.lookup-error p {
    color: #ff4757;
    margin: 0;
    font-size: 14px;
}

/* CSS mới cho tra cứu nâng cao */
.lookup-code-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    color: #fff;
}

.lookup-code-display strong {
    color: #fff !important;
    font-size: 14px;
}

.lookup-code-value {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.lookup-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #6c5ce7;
    margin: 20px 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #6c5ce7;
}

.lookup-content-display {
    background: #f8f9ff;
    border: 1px solid #e8e8f0;
    border-left: 4px solid #6c5ce7;
    border-radius: 0 8px 8px 0;
    padding: 15px;
    font-size: 14px;
    line-height: 1.8;
    white-space: pre-line;
    margin-bottom: 15px;
}

.lookup-notes-display {
    background: #fffbf0;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #fdcb6e;
    border-radius: 0 8px 8px 0;
    padding: 12px;
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-line;
    font-style: italic;
}

.lookup-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.lookup-status.status-new {
    background: #74b9ff;
    color: #fff;
}

.lookup-status.status-processing {
    background: #fdcb6e;
    color: #2d3436;
}

.lookup-status.status-completed {
    background: #00b894;
    color: #fff;
}

.lookup-status.status-cancelled {
    background: #ff7675;
    color: #fff;
}

.lookup-result-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #e8e8f0;
    color: #888;
    font-size: 13px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media screen and (max-width: 768px) {
    .popup-order-container {
        max-width: 100%;
        border-radius: 20px;
        margin: 10px;
    }

    .popup-order-header {
        padding: 25px 20px 15px;
    }

    .popup-order-header h3 {
        font-size: 22px;
    }

    .popup-order-body {
        padding: 20px;
    }

    .popup-box-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .popup-size-grid,
    .popup-color-grid {
        flex-wrap: wrap;
    }

    .popup-size-item,
    .popup-color-item {
        flex: 0 0 calc(50% - 5px);
    }

    .anime-decor {
        display: none;
    }

    .popup-lookup-container {
        max-width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .popup-order-header h3 {
        font-size: 18px;
    }

    .popup-checkbox-item label {
        padding: 8px 14px;
        font-size: 12px;
    }

    .popup-box-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .popup-box-item label {
        padding: 10px 5px;
        font-size: 12px;
    }

    .popup-size-item label,
    .popup-color-item label {
        padding: 12px 8px;
        font-size: 12px;
    }

    .popup-submit-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}
