@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

input.my-custom-error, textarea.my-custom-error, div.my-custom-error {
  border: 1px solid red;
  background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red);
  animation: shake 0.3s;
}

a#pfx-scroll-top.pfx-scroll-top
{left: initial; right:30px; z-index: 90; bottom: 60px;}
a#pfx-scroll-top.pfx-scroll-top:hover {text-decoration: none;}
@media (max-width: 480px){
	a#pfx-scroll-top.pfx-scroll-top
	{
		right: 10px;
	}
}

@media (max-width: 480px) {
    .cookieadmin_modal_footer .cookieadmin_btn {
        width: 100%;
        margin: 5px 0;
    }
}

.post-password-form {
    max-width: 420px;
    margin: 100px auto;
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    font-family: inherit;
}

.post-password-form p {
    margin-bottom: 18px;
    color: #444;
    line-height: 1.5;
}

.post-password-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #222;
}

.post-password-form input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: all .2s ease;
}

.post-password-form input[type="password"]:focus {
    border-color: #c9a66b;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.2);
    outline: none;
}

.post-password-form input[type="submit"] {
    margin-top: 10px;
    width: 100%;
    padding: 12px 14px;
    background: #c9a66b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
}

.post-password-form input[type="submit"]:hover {
    background: #b69863;
}
