@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;
}

form div.pagelayer-contact_item.validation-label > label {
    opacity: 0;
    color: red;
    transition: opacity .3s linear;
    cursor: default;
}

form div.pagelayer-contact_item.validation-label > label.my-custom-error {
    opacity: 1;
    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;
    }
}