:root {
--gdpr-bg-primary: #ffffff;
--gdpr-bg-secondary: #f8f9fa;
--gdpr-text-primary: #212529;
--gdpr-text-secondary: #6c757d;
--gdpr-bg-primary-hover: #f3f3f3;
--gdpr-border: #dee2e6;
--gdpr-shadow: rgba(0, 0, 0, 0.1);
--gdpr-accept-bg: #007cba;
--gdpr-accept-hover: #005a87;
--gdpr-deny-bg: #6c757d;
--gdpr-deny-hover: #545b62;
--gdpr-success-bg: #28a745;
--gdpr-success-hover: #218838;
--gdpr-danger-bg: #dc3545;
--gdpr-danger-hover: #c82333;
--gdpr-info-bg: #17a2b8;
--gdpr-info-hover: #138496;
--gdpr-border-radius: 8px;
--gdpr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--gdpr-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
} @media (prefers-color-scheme: dark) {
:root:not(.gdpr-light-mode):not(.gdpr-dark-mode).gdpr-auto-mode {
--gdpr-bg-primary: #1a1a1a;
--gdpr-bg-secondary: #2d2d2d;
--gdpr-text-primary: #ffffff;
--gdpr-text-secondary: #b0b0b0;
--gdpr-bg-primary-hover: #3c3c3c;
--gdpr-border: #404040;
--gdpr-shadow: rgba(0, 0, 0, 0.3);
--gdpr-accept-bg: #0d6efd;
--gdpr-accept-hover: #0b5ed7;
--gdpr-deny-bg: #6c757d;
--gdpr-deny-hover: #5a6268;
--gdpr-success-bg: #198754;
--gdpr-success-hover: #157347;
--gdpr-danger-bg: #dc3545;
--gdpr-danger-hover: #bb2d3b;
--gdpr-info-bg: #0dcaf0;
--gdpr-info-hover: #0aa2c0;
}
} .gdpr-light-mode {
--gdpr-bg-primary: #ffffff;
--gdpr-bg-secondary: #f8f9fa;
--gdpr-text-primary: #212529;
--gdpr-text-secondary: #6c757d;
--gdpr-bg-primary-hover: #f3f3f3;
--gdpr-border: #dee2e6;
--gdpr-shadow: rgba(0, 0, 0, 0.1);
--gdpr-accept-bg: #007cba;
--gdpr-accept-hover: #005a87;
--gdpr-deny-bg: #6c757d;
--gdpr-deny-hover: #545b62;
--gdpr-success-bg: #28a745;
--gdpr-success-hover: #218838;
--gdpr-danger-bg: #dc3545;
--gdpr-danger-hover: #c82333;
--gdpr-info-bg: #17a2b8;
--gdpr-info-hover: #138496;
} .gdpr-dark-mode {
--gdpr-bg-primary: #1a1a1a;
--gdpr-bg-secondary: #2d2d2d;
--gdpr-text-primary: #ffffff;
--gdpr-text-secondary: #b0b0b0;
--gdpr-bg-primary-hover: #3c3c3c;
--gdpr-border: #404040;
--gdpr-shadow: rgba(0, 0, 0, 0.3);
--gdpr-accept-bg: #0d6efd;
--gdpr-accept-hover: #0b5ed7;
--gdpr-deny-bg: #6c757d;
--gdpr-deny-hover: #5a6268;
--gdpr-success-bg: #198754;
--gdpr-success-hover: #157347;
--gdpr-danger-bg: #dc3545;
--gdpr-danger-hover: #bb2d3b;
--gdpr-info-bg: #0dcaf0;
--gdpr-info-hover: #0aa2c0;
} #slimstat-gdpr-banner {
position: fixed;
left: 1rem;
bottom: 0rem;
margin: 0;
padding: 1.5rem 2rem;
background: var(--gdpr-bg-primary);
border: 1px solid var(--gdpr-border);
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
z-index: 99999;
font-family: var(--gdpr-font-family);
font-size: 0.9rem;
line-height: 1.6;
color: var(--gdpr-text-primary);
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
transform: translateY(100%);
opacity: 0;
transition: transform 0.3s ease-out, opacity 0.3s ease-out;
max-width: 720px;
width: calc(100% - 2rem);
max-width: calc(100% - 2rem);
box-sizing: border-box;
} #slimstat-gdpr-banner.show {
transform: translateY(0);
opacity: 1;
animation: slideUp 0.45s ease-out;
} #slimstat-gdpr-banner.hiding {
transform: translateY(100%);
opacity: 0;
transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
@keyframes slideUp {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
#slimstat-gdpr-banner .slimstat-gdpr-content {
max-width: 100%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1.5rem;
}
#slimstat-gdpr-banner .slimstat-gdpr-message {
flex: 1;
min-width: 280px;
font-weight: 400;
}
#slimstat-gdpr-banner .slimstat-gdpr-buttons {
display: flex;
gap: 0.75rem;
flex-shrink: 0;
} .slimstat-gdpr-accept,
.slimstat-gdpr-deny {
padding: 0.75rem 1.5rem;
border: none;
border-radius: var(--gdpr-border-radius);
cursor: pointer;
font-size: 0.875rem;
font-weight: 500;
font-family: var(--gdpr-font-family);
transition: var(--gdpr-transition);
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
position: relative;
overflow: hidden;
}
.slimstat-gdpr-accept::before,
.slimstat-gdpr-deny::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.slimstat-gdpr-accept:hover::before,
.slimstat-gdpr-deny:hover::before {
left: 100%;
}
.slimstat-gdpr-accept {
background: var(--gdpr-accept-bg);
color: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.slimstat-gdpr-accept:hover {
background: var(--gdpr-accept-hover);
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.slimstat-gdpr-accept:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.slimstat-gdpr-deny {
background: var(--gdpr-deny-bg);
color: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.slimstat-gdpr-deny:hover {
background: var(--gdpr-deny-hover);
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.slimstat-gdpr-deny:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} .slimstat-gdpr-management {
max-width: 700px;
margin: 2rem auto;
padding: 2rem;
background: var(--gdpr-bg-primary);
border: 1px solid var(--gdpr-border);
border-radius: var(--gdpr-border-radius);
font-family: var(--gdpr-font-family);
transition: var(--gdpr-transition);
}
.slimstat-gdpr-management h2,
.slimstat-gdpr-management h3 {
margin-top: 0;
margin-bottom: 1rem;
color: var(--gdpr-text-primary);
font-weight: 600;
line-height: 1.3;
}
.slimstat-gdpr-management h2 {
font-size: 1.75rem;
}
.slimstat-gdpr-management h3 {
font-size: 1.5rem;
}
.slimstat-gdpr-management p {
margin-bottom: 1rem;
color: var(--gdpr-text-secondary);
line-height: 1.6;
}
.slimstat-gdpr-management .slimstat-gdpr-info {
background: var(--gdpr-bg-secondary);
padding: 1.25rem 1.5rem;
border-radius: var(--gdpr-border-radius);
margin-bottom: 1.5rem;
border: 1px solid var(--gdpr-info-bg);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
display: flex;
align-items: flex-start;
gap: 0.75rem;
transition: background 0.2s ease, box-shadow 0.2s ease;
}
.slimstat-gdpr-management strong {
color: var(--gdpr-text-primary);
font-weight: 600;
margin-bottom: 0.5rem;
text-transform: uppercase;
}
.slimstat-gdpr-management .slimstat-gdpr-info:hover {
background: var(--gdpr-bg-primary-hover, #f9f9f9);
}
.slimstat-gdpr-management .slimstat-gdpr-buttons {
display: flex;
gap: 1rem;
margin: 1.5rem 0;
flex-wrap: wrap;
}
.slimstat-gdpr-management .slimstat-gdpr-accept {
background: var(--gdpr-success-bg);
color: white;
}
.slimstat-gdpr-management .slimstat-gdpr-accept:hover {
background: var(--gdpr-success-hover);
}
.slimstat-gdpr-management .slimstat-gdpr-deny {
background: var(--gdpr-danger-bg);
color: white;
}
.slimstat-gdpr-management .slimstat-gdpr-deny:hover {
background: var(--gdpr-danger-hover);
}
.slimstat-gdpr-management small {
color: var(--gdpr-text-secondary);
font-size: 0.8rem;
display: block;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--gdpr-border);
} .slimstat-consent-status {
display: inline-flex;
align-items: center;
padding: 0.75rem 1rem;
border-radius: var(--gdpr-border-radius);
font-size: 0.875rem;
font-weight: 500;
font-family: var(--gdpr-font-family);
background: var(--gdpr-bg-secondary);
color: var(--gdpr-text-primary);
border: 1px solid var(--gdpr-border);
box-shadow: 0 2px 4px var(--gdpr-shadow);
transition: var(--gdpr-transition);
}
.slimstat-consent-status:hover {
box-shadow: 0 4px 8px var(--gdpr-shadow);
transform: translateY(-1px);
}
.slimstat-consent-status::before {
content: "";
background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iOCIgY3k9IjgiIHI9IjciIGZpbGw9IiMwMDc0RkYiLz4KPHRleHQgeD0iOCIgeT0iMTEiIGZvbnQtZmFtaWx5PSJBcmlhbCwgc2Fucy1zZXJpZiIgZm9udC1zaXplPSIxMCIgZm9udC13ZWlnaHQ9ImJvbGQiIGZpbGw9IndoaXRlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIj5pPC90ZXh0Pgo8L3N2Zz4K");
background-size: 1rem 1rem;
background-repeat: no-repeat;
background-position: center;
display: inline-block;
width: 1rem;
height: 1rem;
margin-right: 0.5rem;
} @media (max-width: 1024px) {
#slimstat-gdpr-banner {
padding: 1.25rem 1.5rem;
}
#slimstat-gdpr-banner .slimstat-gdpr-content {
gap: 1rem;
}
}
@media (max-width: 768px) {
#slimstat-gdpr-banner {
padding: 1rem;
font-size: 0.8rem;
}
#slimstat-gdpr-banner .slimstat-gdpr-content {
flex-direction: column;
text-align: center;
gap: 1rem;
}
#slimstat-gdpr-banner .slimstat-gdpr-message {
min-width: auto;
margin-bottom: 0.5rem;
}
#slimstat-gdpr-banner .slimstat-gdpr-buttons {
justify-content: center;
width: 100%;
}
.slimstat-gdpr-accept,
.slimstat-gdpr-deny {
flex: 1;
min-width: 120px;
padding: 0.875rem 1rem;
}
.slimstat-gdpr-management {
margin: 1rem;
padding: 1.5rem;
}
.slimstat-gdpr-management h2 {
font-size: 1.5rem;
}
.slimstat-gdpr-management h3 {
font-size: 1.25rem;
}
.slimstat-gdpr-management .slimstat-gdpr-buttons {
flex-direction: column;
gap: 0.75rem;
}
.slimstat-gdpr-management .slimstat-gdpr-accept,
.slimstat-gdpr-management .slimstat-gdpr-deny {
width: 100%;
}
}
@media (max-width: 480px) {
#slimstat-gdpr-banner {
padding: 0.875rem;
font-size: 0.75rem;
}
.slimstat-gdpr-accept,
.slimstat-gdpr-deny {
padding: 0.75rem 0.875rem;
font-size: 0.8rem;
min-height: 40px;
}
.slimstat-gdpr-management {
margin: 0.5rem;
padding: 1rem;
}
.slimstat-gdpr-management h2 {
font-size: 1.25rem;
}
.slimstat-gdpr-management h3 {
font-size: 1.125rem;
}
} @media (prefers-contrast: high) {
:root {
--gdpr-border: #000000;
--gdpr-shadow: rgba(0, 0, 0, 0.5);
}
.slimstat-gdpr-accept,
.slimstat-gdpr-deny {
border: 2px solid currentColor;
}
} @media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
#slimstat-gdpr-banner {
animation: none;
}
} [dir="rtl"] #slimstat-gdpr-banner {
left: auto;
right: 1rem;
}
[dir="rtl"] #slimstat-gdpr-banner .slimstat-gdpr-content {
direction: rtl;
}
[dir="rtl"] #slimstat-gdpr-banner .slimstat-gdpr-buttons {
flex-direction: row-reverse;
}
[dir="rtl"] .slimstat-gdpr-accept::before,
[dir="rtl"] .slimstat-gdpr-deny::before {
left: 100%;
right: -100%;
background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: right 0.5s;
}
[dir="rtl"] .slimstat-gdpr-accept:hover::before,
[dir="rtl"] .slimstat-gdpr-deny:hover::before {
right: 100%;
left: -100%;
}
[dir="rtl"] .slimstat-consent-status::before {
margin-right: 0;
margin-left: 0.5rem;
}
[dir="rtl"] .slimstat-gdpr-management .slimstat-gdpr-info {
text-align: right;
}
[dir="rtl"] .slimstat-gdpr-management .slimstat-gdpr-buttons {
flex-direction: row-reverse;
}
[dir="rtl"] .slimstat-gdpr-management .slimstat-gdpr-buttons .slimstat-gdpr-accept,
[dir="rtl"] .slimstat-gdpr-management .slimstat-gdpr-buttons .slimstat-gdpr-deny {
text-align: center;
} @media (max-width: 768px) {
[dir="rtl"] #slimstat-gdpr-banner .slimstat-gdpr-content {
text-align: center;
}
[dir="rtl"] #slimstat-gdpr-banner .slimstat-gdpr-buttons {
flex-direction: column;
}
[dir="rtl"] .slimstat-gdpr-management .slimstat-gdpr-buttons {
flex-direction: column;
}
}
@media (max-width: 480px) {
[dir="rtl"] #slimstat-gdpr-banner {
right: 0.5rem;
left: auto;
}
} @media print {
#slimstat-gdpr-banner {
display: none !important;
}
} .slimstat-gdpr-accept:focus,
.slimstat-gdpr-deny:focus {
outline: 2px solid var(--gdpr-accept-bg);
outline-offset: 2px;
} .slimstat-gdpr-accept.loading,
.slimstat-gdpr-deny.loading {
position: relative;
cursor: wait;
opacity: 0.8;
}
.slimstat-gdpr-accept.loading::after,
.slimstat-gdpr-deny.loading::after {
content: "";
top: 50%;
left: 50%;
width: 16px;
height: 16px;
margin: 0 0 0 10px;
border: 2px solid transparent;
border-top: 2px solid currentColor;
border-radius: 50%;
animation: spin 1s linear infinite;
}
.slimstat-gdpr-accept.loading::after {
background-color: #197148;
}
.slimstat-gdpr-deny.loading::after {
background-color: #b52f3c;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}@font-face{font-family:aiovg-icons;src:url(//goldrecordoutlet.com/wp-content/plugins/all-in-one-video-gallery/public/assets/fonts/aiovg-icons.eot?2afx3z);src:url(//goldrecordoutlet.com/wp-content/plugins/all-in-one-video-gallery/public/assets/fonts/aiovg-icons.eot?2afx3z#iefix) format('embedded-opentype'),url(//goldrecordoutlet.com/wp-content/plugins/all-in-one-video-gallery/public/assets/fonts/aiovg-icons.ttf?2afx3z) format('truetype'),url(//goldrecordoutlet.com/wp-content/plugins/all-in-one-video-gallery/public/assets/fonts/aiovg-icons.woff?2afx3z) format('woff'),url(//goldrecordoutlet.com/wp-content/plugins/all-in-one-video-gallery/public/assets/fonts/aiovg-icons.svg?2afx3z#aiovg-icons) format('svg');font-weight:400;font-style:normal;font-display:swap}[class*=" aiovg-icon-"],[class^=aiovg-icon-]{text-transform:none;line-height:1;color:#fff;font-family:aiovg-icons!important;speak:none;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-variant:normal;font-style:normal}.aiovg-icon-download:before{content:"\e9c7"}.aiovg-icon-share:before{content:"\ea82"}.aiovg-icon-facebook:before{content:"\ea90"}.aiovg-icon-twitter:before{content:"\e900"}.aiovg-icon-linkedin:before{content:"\eaca"}.aiovg-icon-pinterest:before{content:"\ead1"}.aiovg-icon-tumblr:before{content:"\eab9"}.aiovg-icon-whatsapp:before{content:"\ea93"}.aiovg-icon-close:before{content:"\ea0f"}.aiovg .aiovg-animate-pulse,aiovg-like-button:not([loaded]){animation:1s cubic-bezier(.4,0,.6,1) infinite aiovg-pulse}.aiovg{box-sizing:border-box;margin-bottom:1em;line-height:1.5}.aiovg *,.aiovg :after,.aiovg :before{box-sizing:inherit}.aiovg img{display:block;border-radius:0;box-shadow:none;max-width:100%}.aiovg h2,.aiovg h3{margin:0 0 1em}.aiovg .aiovg-player-title{font-size:1.25em}.aiovg a.aiovg-link-title{text-decoration:none}.aiovg .aiovg-relative,.aiovg-autocomplete,.aiovg-dropdown-terms,.aiovg-search-form .aiovg-field-keyword,.aiovg-search-form-template-compact{position:relative}.aiovg .aiovg-d-flex,.aiovg .aiovg-flex{display:flex}.aiovg .aiovg-flex-col,.aiovg-search-form-template-vertical form{flex-direction:column}.aiovg .aiovg-flex-grow-1,.aiovg-search-form .aiovg-form-group{flex-grow:1}.aiovg .aiovg-flex-shrink-0{flex-shrink:0}.aiovg .aiovg-flex-wrap{flex-wrap:wrap}.aiovg .aiovg-gap-1{gap:.25em}.aiovg .aiovg-gap-2{gap:.5em}.aiovg .aiovg-gap-3{gap:.75em}.aiovg .aiovg-gap-4{gap:1em}.aiovg .aiovg-gap-6{gap:1.5em}.aiovg .aiovg-items-center{align-items:center}.aiovg .aiovg-justify-center{justify-content:center}.aiovg .aiovg-pull-left{float:left}.aiovg .aiovg-pull-right{float:right}.aiovg .aiovg-clearfix{display:block;clear:both;content:""}.aiovg .aiovg-no-margin{margin:0}.aiovg .aiovg-margin{margin:1em}.aiovg .aiovg-margin-top{margin-top:1em}.aiovg .aiovg-margin-right{margin-right:1em}.aiovg .aiovg-margin-bottom,.aiovg-videos .aiovg-count{margin-bottom:1em}.aiovg .aiovg-margin-left{margin-left:1em}.aiovg .aiovg-no-padding{padding:0}.aiovg .aiovg-padding{padding:1em}.aiovg .aiovg-padding-top{padding-top:1em}.aiovg .aiovg-padding-right{padding-right:1em}.aiovg .aiovg-padding-bottom{padding-bottom:1em}.aiovg .aiovg-padding-left{padding-left:1em}.aiovg .aiovg-text-left{text-align:left}.aiovg .aiovg-text-right{text-align:right}.aiovg .aiovg-text-center{text-align:center}.aiovg .aiovg-leading-none{line-height:1}.aiovg .aiovg-text-muted,.aiovg-autocomplete-items div.aiovg-autocomplete-selected{color:#999}.aiovg .aiovg-text-success{color:green}.aiovg .aiovg-text-error{color:#e80000}.aiovg .aiovg-text-small,.aiovg-tag-item{font-size:90%}.aiovg .aiovg-text-separator{margin:0 .125em;color:#ccc;font-size:90%}.aiovg .aiovg-disable-mouse-events{pointer-events:none}.aiovg .aiovg-hide-if-empty:empty,.aiovg [hidden]{display:none!important}@media only screen and (max-width:480px){.aiovg-hidden-mobile{display:none!important}}.aiovg-svg-icon{display:inline-block;stroke:none;stroke-width:0;fill:#666;width:1em;vertical-align:middle}.aiovg-svg-icon-videos{margin-top:-2px}.aiovg-svg-icon-locked,.aiovg-svg-icon-play{pointer-events:none;position:absolute;inset:0;z-index:3;margin:auto;width:33%;height:33%;min-width:32px;min-height:32px;max-width:64px;max-height:64px;fill:#fff;filter:drop-shadow( 1px 2px 4px rgba( 0, 0, 0, .2 ))}.aiovg-svg-icon-locked{min-width:24px;min-height:24px;max-width:48px;max-height:48px}@keyframes aiovg-dots{0%,20%{content:"."}40%{content:".."}60%{content:"..."}100%,90%{content:""}}.aiovg .aiovg-animate-dots:before{display:inline-block;animation:2s linear infinite aiovg-dots;width:1.2em;content:""}@keyframes aiovg-pulse{0%,100%{opacity:1}50%{opacity:.5}}@keyframes aiovg-pulse-bar{0%,100%{opacity:1}50%{opacity:.8}}@keyframes aiovg-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.aiovg .aiovg-animate-rotate{animation:1s linear infinite aiovg-rotate}@keyframes aiovg-wait{12.5%{background-position-x:-4px,-4px,-4px,-4px,-4px,-4px,-4px,-4px,-4px,-4px,0,0}25%{background-position-x:-4px,-4px,-4px,-4px,-4px,-4px,-4px,-4px,0,0,6px,6px}37.5%{background-position-x:-4px,-4px,-4px,-4px,-4px,-4px,0,0,6px,6px,12px,12px}50%{background-position-x:-4px,-4px,-4px,-4px,0,0,6px,6px,12px,12px,-4px,-4px}62.5%{background-position-x:-4px,-4px,0,0,6px,6px,12px,12px,-4px,-4px,-4px,-4px}75%{background-position-x:0,0,6px,6px,12px,12px,-4px,-4px,-4px,-4px,-4px,-4px}87.5%{background-position-x:6px,6px,12px,12px,-4px,-4px,-4px,-4px,-4px,-4px,-4px,-4px}100%{background-position-x:12px,12px,-4px,-4px,-4px,-4px,-4px,-4px,-4px,-4px,-4px,-4px}}.aiovg .aiovg-spinner{background:linear-gradient(0deg,#f4f5fa 1px,transparent 0,transparent 8px,#f4f5fa 8px),linear-gradient(90deg,#f4f5fa 1px,#f6f9fb 0,#f6f9fb 3px,#f4f5fa 3px),linear-gradient(0deg,#ececf5 1px,transparent 0,transparent 8px,#ececf5 8px),linear-gradient(90deg,#ececf5 1px,#f2f3f9 0,#f2f3f9 3px,#ececf5 3px),linear-gradient(0deg,#e7eaf4 1px,transparent 0,transparent 8px,#e7eaf4 8px),linear-gradient(90deg,#e7eaf4 1px,#eef1f8 0,#eef1f8 3px,#e7eaf4 3px),linear-gradient(0deg,#b9bedd 1px,transparent 0,transparent 10px,#b9bedd 10px),linear-gradient(90deg,#b9bedd 1px,#d0d5e8 0,#d0d5e8 3px,#b9bedd 3px),linear-gradient(0deg,#9fa6d2 1px,transparent 0,transparent 15px,#9fa6d2 15px),linear-gradient(90deg,#9fa6d2 1px,#c0c5e1 0,#c0c5e1 3px,#9fa6d2 3px),linear-gradient(0deg,#8490c6 1px,transparent 0,transparent 15px,#8490c6 15px),linear-gradient(90deg,#8490c6 1px,#aeb5da 0,#aeb5da 3px,#8490c6 3px);background-repeat:no-repeat;background-size:4px 9px,4px 9px,4px 9px,4px 9px,4px 9px,4px 9px,4px 11px,4px 11px,4px 16px,4px 16px,4px 16px,4px 16px;background-position-x:-4px;background-position-y:3px,3px,3px,3px,3px,3px,2px,2px,0,0,0,0;zoom:1;width:16px;min-width:16px;height:16px;min-height:16px;animation:.8s steps(1,start) infinite aiovg-wait}.aiovg-dropdown-terms .aiovg-dropdown-input,.aiovg-search-form select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5em center;background-repeat:no-repeat;background-size:1.5em 1.5em}.aiovg-grid{margin:-.75em}.aiovg-row{display:flex;flex-wrap:wrap}.aiovg .aiovg-responsive-button,.aiovg-col,.aiovg-search-form .aiovg-form-control{width:100%}@media only screen and (min-width:420px){.aiovg-col-xs-2{width:50%}}@media only screen and (min-width:600px){.aiovg-col-sm-3{width:33.33%}}.aiovg-thumbnail{display:flex;flex-direction:column;gap:.75em;margin:.75em}.aiovg-thumbnail-image-left{display:grid;grid-template-columns:40% 1fr;align-items:start}.aiovg-responsive-container{display:block;position:relative;padding-bottom:56.25%;width:100%;height:0}.aiovg-responsive-container img:not(.aiovg-play),img.aiovg-responsive-element{position:absolute;inset:0;z-index:1;margin:0;border-radius:3px;background-color:#f0f0f0;width:100%;height:100%;object-fit:cover}.aiovg-duration,.aiovg-now-playing{pointer-events:none;position:absolute;right:5px;bottom:5px;z-index:2;border-radius:2px;background-color:rgba(0,0,0,.5);padding:.25em .5em;line-height:1;color:#fff;font-size:.85em}.aiovg-now-playing{padding:.25em .5em .35em}.aiovg-caption{display:flex;flex-direction:column;gap:.5em}.aiovg-caption .aiovg-title{margin:0;font-size:1.1em}.aiovg-caption .aiovg-restricted-label{display:inline-flex;border-radius:2px;background-color:#999;padding:.25em .5em;color:#fff;font-size:90%;line-height:1}.aiovg-caption .aiovg-content-after-thumbnail,.aiovg-caption .aiovg-description,.aiovg-caption .aiovg-excerpt{margin-top:.5em}.aiovg-active .aiovg-thumbnail .aiovg-svg-icon-play,.aiovg-more.aiovg-spinner *,.aiovg-pagination.aiovg-spinner *,aiovg-comment-button:empty,aiovg-like-button:empty{display:none}.aiovg-more,.aiovg-pagination{display:block;margin-top:2em}.aiovg-pagination .aiovg-pagination-links{display:flex;gap:.25em;align-items:center;justify-content:center}.aiovg-pagination-links .page-numbers{border:1px solid #ddd;border-radius:2px;padding:.5em .75em;text-decoration:none;line-height:1}.aiovg-pagination-links .current{border:1px solid #1e90ff;background-color:#1e90ff;color:#fff}.aiovg-pagination-links a:hover{background-color:#f0f0f0;color:#1e90ff}.aiovg-pagination .aiovg-pagination-info{margin:.5em 0 0}.aiovg-more.aiovg-spinner,.aiovg-pagination.aiovg-spinner{margin-left:auto;margin-right:auto}.aiovg-social{display:flex;flex-wrap:wrap;gap:.25em;align-items:center;margin-top:1em}.aiovg-autocomplete-items,.aiovg-dropdown-terms .aiovg-dropdown{top:100%;margin-top:1px;box-shadow:0 0 #0000,0 0 #0000,0 1px 3px 0 rgb(0 0 0 / .1),0 1px 2px -1px rgb(0 0 0 / .1);overflow-x:hidden;overflow-y:auto;left:0;z-index:99999}.aiovg-link-social,.aiovg-link-social:active,.aiovg-link-social:hover{border-radius:2px;cursor:pointer;padding:.5em;text-decoration:none;line-height:1;color:#fff;font-size:1.4em}.aiovg-link-social:active,.aiovg-link-social:hover{opacity:.8}.aiovg-social-facebook,.aiovg-social-facebook:active,.aiovg-social-facebook:hover{background-color:#3b5996}.aiovg-social-twitter,.aiovg-social-twitter:active,.aiovg-social-twitter:hover{background-color:#55acee}.aiovg-social-linkedin,.aiovg-social-linkedin:active,.aiovg-social-linkedin:hover{background-color:#069}.aiovg-social-pinterest,.aiovg-social-pinterest:active,.aiovg-social-pinterest:hover{background-color:#c00117}.aiovg-social-tumblr,.aiovg-social-tumblr:active,.aiovg-social-tumblr:hover{background-color:#28364b}.aiovg-social-whatsapp,.aiovg-social-whatsapp:active,.aiovg-social-whatsapp:hover{background-color:#25d366}.aiovg-dropdown-terms .aiovg-dropdown-input{cursor:default;padding-right:2.5em!important;width:100%;text-overflow:ellipsis}.aiovg-dropdown-terms .aiovg-dropdown{position:absolute;right:0;border:1px solid #9ca3af;border-radius:3px;background-color:#fff;max-height:200px}.aiovg-dropdown-terms .aiovg-dropdown-search{position:relative;border-bottom:1px solid #eee;padding:.75em 1em}.aiovg-dropdown-terms .aiovg-dropdown-search input[type=text]{all:unset;box-sizing:border-box;width:100%;font-size:.95em}.aiovg-dropdown-terms .aiovg-dropdown-search button{position:absolute;top:0;right:1em;bottom:0}.aiovg-dropdown-terms .aiovg-dropdown-search button,.aiovg-dropdown-terms .aiovg-dropdown-search button:focus,.aiovg-dropdown-terms .aiovg-dropdown-search button:hover{margin:0;border:0;box-shadow:none;background:0 0;padding:0;width:16px;height:100%;line-height:1}.aiovg-dropdown-list .aiovg-dropdown-item{display:flex;flex-wrap:nowrap;gap:1em;align-items:center;border-bottom:1px solid #eee;background-color:#fff;padding:.65em 1em;line-height:1.25em;color:#000;font-size:.95em}.aiovg-autocomplete-items div:last-child,.aiovg-dropdown-list .aiovg-dropdown-item:last-child{border-bottom:none}.aiovg-autocomplete-items div.aiovg-autocomplete-active,.aiovg-autocomplete-items div:hover,.aiovg-dropdown-list .aiovg-dropdown-item.aiovg-item-active,.aiovg-dropdown-list .aiovg-dropdown-item.aiovg-item-selected{background-color:#1e90ff;color:#fff}.aiovg-dropdown-list .aiovg-dropdown-item:hover{background-color:#1c86ee;color:#fff}.aiovg-dropdown-list .aiovg-dropdown-item .aiovg-item-name{pointer-events:none;margin-right:auto}.aiovg-dropdown-list .aiovg-dropdown-item input[type=checkbox]{-webkit-appearance:none;appearance:none;display:inline-block;clear:none;transition:border-color .05s ease-in-out;margin:0;outline:0;border:1px solid #8c8f94;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:#fff;cursor:default;padding:0!important;width:1em;min-width:1em;height:1em;vertical-align:middle;text-align:center;line-height:0;color:#50575e}.aiovg-dropdown-list .aiovg-dropdown-item.aiovg-item-selected input[type=checkbox],.aiovg-dropdown-list .aiovg-dropdown-item:hover input[type=checkbox]{border:1px solid #50575e}.aiovg-dropdown-list .aiovg-dropdown-item input[type=checkbox]:checked::before{display:inline-block;margin:-.1875em 0 0 -.25em;width:1.3125em;height:1.3125em;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E");speak:never}.aiovg-dropdown-list .aiovg-dropdown-item input[type=checkbox]:focus{outline:transparent solid 2px;border-color:#50575e;box-shadow:0 0 0 1px #50575e}.aiovg-dropdown-terms.aiovg-is-searching .aiovg-dropdown-list .aiovg-dropdown-item{padding-left:1em!important}.aiovg-dropdown-terms .aiovg-dropdown .aiovg-dropdown-no-items{padding:.65em 1em}.aiovg-autocomplete-items{position:absolute;right:0;border:1px solid #9ca3af;border-radius:3px;max-height:180px}.aiovg-autocomplete-items div{border-bottom:1px solid #eee;background-color:#fff;cursor:pointer;padding:.5em .75em;line-height:1;color:#000;font-size:90%}.aiovg-autocomplete-tags{display:flex;flex-wrap:wrap;row-gap:.5em;column-gap:.75em;margin-top:.5em}.aiovg-tag-item a{display:flex;gap:.25em;align-items:center}.aiovg-search-form form,aiovg-like-button{display:flex;gap:.5em}.aiovg-categories-template-list li,.aiovg-categories-template-list ul{margin:0;padding:0;list-style:none}.aiovg-categories-template-list .children{margin-left:1.25em}.aiovg-content-after-player{display:flex;flex-wrap:wrap;gap:.5em;align-items:center}aiovg-like-button{align-items:center}aiovg-like-button button{display:flex;gap:.35em;align-items:center;justify-content:center;margin:0}aiovg-like-button:not([loaded]){pointer-events:none}aiovg-comment-button button{display:flex;gap:.35em;align-items:center;justify-content:center;margin:0;white-space:nowrap}.aiovg-search-form select{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-right:2.5em!important}.aiovg-search-form .aiovg-field-keyword button,.aiovg-search-form-template-compact .aiovg-field-submit{position:absolute;top:0;right:0;bottom:0}.aiovg-search-form .aiovg-field-keyword button,.aiovg-search-form .aiovg-field-keyword button:focus,.aiovg-search-form .aiovg-field-keyword button:hover,.aiovg-search-form-template-compact .aiovg-field-submit button,.aiovg-search-form-template-compact .aiovg-field-submit button:focus,.aiovg-search-form-template-compact .aiovg-field-submit button:hover{margin:0;border:0;box-shadow:none;background:0 0;padding:0;width:2em;height:100%;line-height:1}.aiovg-search-form .aiovg-field-reset,.aiovg-search-form .aiovg-field-submit{flex-grow:0}.aiovg-search-form-template-horizontal form{flex-wrap:wrap;align-items:center}.aiovg-search-form-template-horizontal .aiovg-field-keyword{flex-grow:4}.aiovg-search-form-template-horizontal .aiovg-field-category,.aiovg-search-form-template-horizontal .aiovg-field-tag{flex-grow:2}.aiovg-search-form-template-horizontal .aiovg-autocomplete-tags{margin-top:0;width:100%}.aiovg-videos-filters-wrapper{display:grid;gap:1.5em;grid-template-columns:1fr}.aiovg-videos-filters-wrapper .aiovg-videos-template-slider{display:block;width:100%;overflow:hidden}@media only screen and (min-width:768px){.aiovg-col-2{width:50%}.aiovg-col-3{width:33.33%}.aiovg-col-4,.aiovg-col-p-25{width:25%}.aiovg-col-5{width:20%}.aiovg-col-6{width:16.66%}.aiovg-col-7{width:14.28%}.aiovg-col-8{width:12.5%}.aiovg-col-9{width:11.11%}.aiovg-col-10{width:10%}.aiovg-col-11{width:9.09%}.aiovg-col-12{width:8.33%}.aiovg-col-p-40{width:40%}.aiovg-col-p-60{width:60%}.aiovg-col-p-75{width:75%}.aiovg-filters-position-left{grid-template-columns:minmax(180px,30%) 1fr}.aiovg-filters-position-right{grid-template-columns:1fr minmax(180px,30%)}.aiovg-filters-position-right .aiovg-search-form{order:2}}@media (min-width:1600px){.aiovg-filters-position-left{grid-template-columns:minmax(180px,400px) 1fr}.aiovg-filters-position-right{grid-template-columns:1fr minmax(180px,400px)}}.aiovg-filters-progress-bar{display:none;position:fixed;top:0;left:0;z-index:99999;height:4px;width:100%;overflow:hidden}.aiovg-filters-progress-bar-inner{background-color:#1e90ff;width:0;height:100%;transition:width .2s,background-color .2s;animation:1.5s infinite aiovg-pulse-bar;will-change:width,background-color}.aiovg .wp-audio-shortcode .mejs-controls .mejs-time,.aiovg .wp-video-shortcode .mejs-controls .mejs-time{padding:0 6px;height:40px;line-height:40px}@media only screen and (min-width:481px){.aiovg-hidden-desktop{display:none!important}.aiovg .aiovg-responsive-button{width:auto}}.aiovg-thumbnail-style-image-left .aiovg-caption{margin:.75em 0 0}@media only screen and (min-width:768px){.aiovg-thumbnail-style-image-left .aiovg-caption{margin:0 0 0 .75em}.aiovg-thumbnail-style-image-left .aiovg-caption .aiovg-title{margin-top:-.2em}}