						#cookieConsentBlock #cookieModal {
							position: fixed;
							bottom: 20px;
							right: 50%;
							transform: translate(50%, -0);
							background: #fff;
							border-radius: 5px;
							padding: 20px 45px;
							box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
							z-index: 99;
							width: 950px;
							opacity: 0;
							transition: opacity 0.5s ease;
							display: flex;
							gap: 20px;
							align-items: center;
						}

						#cookieConsentBlock #cookieModal.show {
							opacity: 1;
							z-index: 9999999 !important;
						}

						#cookieConsentBlock #cookieModal p {
							font-size: 12px;
							line-height: 18px;
						}

						#cookieConsentBlock #cookieModal p a {
							text-decoration: none;
							color: #009cd6;
							border-bottom: 1px solid #009cd6;
							transition: all 0.5s ease;
						}

						#cookieConsentBlock #cookieModal p a:hover {
							border-bottom: 1px solid transparent;
							transition: all 0.5s ease;
						}

						.cookieModal-wrapper {
							display: flex;
							justify-content: flex-end;
						}

						@media screen and (max-width: 991px) {
							#cookieConsentBlock #cookieModal {
								flex-wrap: wrap;
								right: 10px;
								left: 10px;
								transform: translate(0);
								width: auto;
								bottom: 10px;
								padding: 15px;
							}

							#cookieConsentBlock #cookieModal button {
								font-size: 9px;
							}
						}
