    .popup {
        position: fixed;
        left: 20px;
        bottom: 20px;
        width: 380px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 18px;
        padding: 20px 25px 25px;
        box-sizing: border-box;
        z-index: 9999;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .popup.hide {
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
    }

    .popup p {
		color: var(--black);
        text-align: left;
        font-size: 16px;
		margin:0px;
    }

	.popup a.btn-arrow-b, .popup a.btn-arrow-b:hover {	
        font-size: 1.2rem;
	}	
	
	
	.policy {
		color: var(--white);
		text-align:center;
	}
	.policy a, .policy a:hover  {
		color: var(--white);
		text-decoration:underline;
	}
	.policy_check input {
		width:20px;
	}
	.policy_check a, .policy_check a:hover, .policy_black, .policy_black:hover {
		color: var(--black);
		text-decoration: underline !important;
	}

