@charset "UTF-8";
.cl-btn {
display: inline-block;
vertical-align: top;
line-height: 1.5;
padding: 8px 20px;
margin: 4px 0;
border-radius: 3px;
background-color: rgba(0, 0, 0, 0.1);
}
[class^="cl-"][class*=" ratio_"]:before {
content: '';
display: block;
}
[class^="cl-"].ratio_2x1:before {
padding-top: 50%;
}
[class^="cl-"].ratio_3x2:before {
padding-top: 66.6666%;
}
[class^="cl-"].ratio_4x3:before {
padding-top: 75%;
}
[class^="cl-"].ratio_1x1:before {
padding-top: 100%;
}
[class^="cl-"].ratio_3x4:before {
padding-top: 125%;
}
[class^="cl-"].ratio_2x3:before {
padding-top: 150%;
}
[class^="cl-"].ratio_1x2:before {
padding-top: 200%;
}
[class^="cl-"] [class^="cl-"][class*=" ratio_"] > [class$="-h"],
[class^="cl-"] [class^="cl-"][class*=" ratio_"] > [class*="-h "] {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.easing_easeInOutExpo .cl-flipbox-hh,
.easing_easeInOutExpo .cl-flipbox-hhh,
.easing_easeInOutExpo .cl-flipbox-front,
.easing_easeInOutExpo .cl-flipbox-back,
.easing_easeInOutExpo .cl-flipbox-xflank,
.easing_easeInOutExpo .cl-flipbox-yflank,
.easing_easeInOutExpo .cl-ib-image,
.easing_easeInOutExpo .cl-ib-content,
.easing_easeInOutExpo .cl-ib-content:before,
.easing_easeInOutExpo .cl-ib-content-h,
.easing_easeInOutExpo .cl-ib-title,
.easing_easeInOutExpo .cl-ib-desc {
-webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.easing_easeInOutCirc .cl-flipbox-hh,
.easing_easeInOutCirc .cl-flipbox-hhh,
.easing_easeInOutCirc .cl-flipbox-front,
.easing_easeInOutCirc .cl-flipbox-back,
.easing_easeInOutCirc .cl-flipbox-xflank,
.easing_easeInOutCirc .cl-flipbox-yflank,
.easing_easeInOutCirc .cl-ib-image,
.easing_easeInOutCirc .cl-ib-content,
.easing_easeInOutCirc .cl-ib-content:before,
.easing_easeInOutCirc .cl-ib-content-h,
.easing_easeInOutCirc .cl-ib-title,
.easing_easeInOutCirc .cl-ib-desc {
-webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.easing_easeOutBack .cl-flipbox-hh,
.easing_easeOutBack .cl-flipbox-hhh,
.easing_easeOutBack .cl-flipbox-front,
.easing_easeOutBack .cl-flipbox-back,
.easing_easeOutBack .cl-flipbox-xflank,
.easing_easeOutBack .cl-flipbox-yflank,
.easing_easeOutBack .cl-ib-image,
.easing_easeOutBack .cl-ib-content,
.easing_easeOutBack .cl-ib-content:before,
.easing_easeOutBack .cl-ib-content-h,
.easing_easeOutBack .cl-ib-title,
.easing_easeOutBack .cl-ib-desc {
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animated_bounceIn,
.animated_fadeIn,
.animated_fadeOut,
.animated_flipInX,
.animated_flipOutX,
.animated_zoomIn {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated_bounceIn,
.animated_flipInX,
.animated_flipOutX {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.animated_bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.animated_fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.animated_fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
}
}
@keyframes flipInX {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.animated_flipInX {
transform-origin: 50% 0%;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
opacity: 0;
}
}
.animated_flipOutX {
transform-origin: 50% 100%;
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.animated_zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}.cl-ib {
display: inline-block;
vertical-align: top;
position: relative;
word-wrap: normal;
width: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.cl-ib-h {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
overflow: hidden;
background-color: inherit;
-webkit-transition-property: none;
transition-property: none;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.cl-ib-image,
.cl-ib-content {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.cl-ib-image {
-webkit-background-size: cover;
background-size: cover;
background-position: 50% 50%;
}
.cl-ib-image img {
display: none;
}
.cl-ib-content {
z-index: 2;
text-align: center;
padding: 10%;
}
.cl-ib.align_left .cl-ib-content {
text-align: left;
}
.cl-ib.align_right .cl-ib-content {
text-align: right;
}
.cl-ib-title {
line-height: 1.4;
padding: 0 !important;
margin: 0 !important;
color: inherit !important;
}
.cl-ib-title.size_tiny {
font-size: 14px;
}
.cl-ib-title.size_small {
font-size: 16px;
}
.cl-ib-title.size_medium {
font-size: 20px;
}
.cl-ib-title.size_large {
font-size: 24px;
}
.cl-ib-title.size_huge {
font-size: 28px;
}
.cl-ib-desc {
font-size: 13px;
line-height: 1.5;
margin-top: 15px;
}
.cl-ib.animation_melete .cl-ib-image {
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_melete .cl-ib-content {
top: 50%;
bottom: auto;
opacity: 0;
-webkit-transform: translateY(-50%) scale(0.2);
transform: translateY(-50%) scale(0.2);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_melete.hover .cl-ib-image {
opacity: 0.1;
-webkit-transform: scale(4);
transform: scale(4);
}
.cl-ib.animation_melete.hover .cl-ib-content {
opacity: 1;
-webkit-transform: translateY(-50%) scale(1);
transform: translateY(-50%) scale(1);
}
.cl-ib.animation_soter .cl-ib-image {
z-index: 1;
border-radius: 50%;
-webkit-transform: scale(0.3);
transform: scale(0.3);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, border-radius;
transition-property: transform, border-radius;
}
.cl-ib.animation_soter.ratio_2x1 .cl-ib-image {
top: -50%;
bottom: -50%;
-webkit-transform-origin: 90% 50%;
transform-origin: 90% 50%;
}
.cl-ib.animation_soter.ratio_3x2 .cl-ib-image {
top: -25%;
bottom: -25%;
-webkit-transform-origin: 90% 66%;
transform-origin: 90% 66%;
}
.cl-ib.animation_soter.ratio_4x3 .cl-ib-image {
top: -16.67%;
bottom: -16.67%;
-webkit-transform-origin: 90% 72%;
transform-origin: 90% 72%;
}
.cl-ib.animation_soter.ratio_1x1 .cl-ib-image {
-webkit-transform-origin: 90% 90%;
transform-origin: 90% 90%;
}
.cl-ib.animation_soter.ratio_3x4 .cl-ib-image {
left: -12.5%;
right: -12.5%;
-webkit-transform: scale(0.24);
transform: scale(0.24);
-webkit-transform-origin: 79.5% 92.5%;
transform-origin: 79.5% 92.5%;
}
.cl-ib.animation_soter.ratio_2x3 .cl-ib-image {
left: -25%;
right: -25%;
-webkit-transform: scale(0.2);
transform: scale(0.2);
-webkit-transform-origin: 73.5% 94%;
transform-origin: 73.5% 94%;
}
.cl-ib.animation_soter.ratio_1x2 .cl-ib-image {
left: -50%;
right: -50%;
-webkit-transform: scale(0.15);
transform: scale(0.15);
-webkit-transform-origin: 66.5% 95.7%;
transform-origin: 66.5% 95.7%;
}
.cl-ib.animation_soter .cl-ib-content {
z-index: 0;
right: 33%;
opacity: 1;
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_soter.hover .cl-ib-image {
border-radius: 0;
-webkit-transform: scale(1.01);
transform: scale(1.01);
}
.cl-ib.animation_soter.hover .cl-ib-content {
opacity: 0;
-webkit-transform: translate3d(-40%, -40%, 0) scale(2);
transform: translate3d(-40%, -40%, 0) scale(2);
}
.cl-ib.animation_phorcys .cl-ib-image {
bottom: -10%;
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_phorcys .cl-ib-content {
top: auto;
padding-top: 20% !important;
}
.cl-ib.animation_phorcys .cl-ib-content:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(transparent 0%, rgba(30, 30, 30, 0.8) 100%) repeat-x rgba(30, 30, 30, 0);
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
}
.cl-ib.animation_phorcys .cl-ib-content-h {
position: relative;
}
.cl-ib.animation_phorcys .cl-ib-title {
color: #fff !important;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
}
.cl-ib.animation_phorcys .cl-ib-desc {
position: relative;
opacity: 0;
line-height: 0;
margin-top: 0;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
-webkit-transition-property: opacity, line-height, margin;
transition-property: opacity, line-height, margin;
}
.cl-ib.animation_phorcys.hover .cl-ib-image {
opacity: 0.15;
-webkit-transform: translateY(-8%);
transform: translateY(-8%);
}
.cl-ib.animation_phorcys.hover .cl-ib-content:before {
opacity: 0;
}
.cl-ib.animation_phorcys.hover .cl-ib-title {
color: inherit !important;
}
.cl-ib.animation_phorcys.hover .cl-ib-desc {
opacity: 0.75;
line-height: 1.5;
margin-top: 15px;
}
.cl-ib.animation_aidos .cl-ib-h {
background-color: inherit;
}
.cl-ib.animation_aidos .cl-ib-image {
background-color: inherit;
-webkit-transform: translateX(0) scale(1.01);
transform: translateX(0) scale(1.01);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_aidos .cl-ib-content {
right: auto;
width: 50%;
background-color: inherit;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_aidos .cl-ib-content:before {
content: '';
display: block;
position: absolute;
top: 50%;
right: 0;
height: 40px;
width: 40px;
margin: -20px 0 0 -20px;
background-color: inherit;
-webkit-transform: translateX(-10px) rotate(45deg);
transform: translateX(-10px) rotate(45deg);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_aidos .cl-ib-content-h {
position: relative;
}
.cl-ib.animation_aidos .cl-ib-title {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-delay: 100ms;
transition-delay: 100ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_aidos .cl-ib-desc {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-delay: 200ms;
transition-delay: 200ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_aidos.hover .cl-ib-image {
-webkit-transform: translateX(25%) scale(1.01);
transform: translateX(25%) scale(1.01);
}
.cl-ib.animation_aidos.hover .cl-ib-content {
-webkit-transform: translateX(0);
transform: translateX(0);
}
.cl-ib.animation_aidos.hover .cl-ib-content:before {
-webkit-transform: translateX(15px) rotate(45deg);
transform: translateX(15px) rotate(45deg);
}
.cl-ib.animation_aidos.hover .cl-ib-title {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
.cl-ib.animation_aidos.hover .cl-ib-desc {
opacity: 0.75;
-webkit-transform: translateX(0);
transform: translateX(0);
}
.cl-ib.animation_caeros .cl-ib-image {
background-color: inherit;
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
-webkit-transition-timing-function: linear;
transition-timing-function: linear;
}
.cl-ib.animation_caeros .cl-ib-image:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: inherit;
opacity: 0.25;
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
}
.cl-ib.animation_caeros .cl-ib-title {
text-align: center;
-webkit-transform: translateY(30px);
transform: translateY(30px);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_caeros .cl-ib-desc {
opacity: 0;
text-align: center;
-webkit-transform: scale(0.7);
transform: scale(0.7);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_caeros.hover .cl-ib-image {
-webkit-transform: scale(1.3);
transform: scale(1.3);
-webkit-transition-duration: 7s;
transition-duration: 7s;
}
.cl-ib.animation_caeros.hover .cl-ib-image:after {
opacity: 0.75;
}
.cl-ib.animation_caeros.hover .cl-ib-title {
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_caeros.hover .cl-ib-desc {
opacity: 0.75;
-webkit-transform: scale(1);
transform: scale(1);
}
.cl-ib.animation_hebe .cl-ib-image {
background-color: inherit;
-webkit-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
}
.cl-ib.animation_hebe .cl-ib-image:before,
.cl-ib.animation_hebe .cl-ib-image:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: inherit;
opacity: 0.3;
-webkit-transform: translateY(100%);
transform: translateY(100%);
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_hebe .cl-ib-image:after {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.cl-ib.animation_hebe .cl-ib-content {
top: 50%;
bottom: auto;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.cl-ib.animation_hebe .cl-ib-title {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
-webkit-transition-duration: 600ms;
transition-duration: 600ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_hebe .cl-ib-desc {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition-duration: 600ms;
transition-duration: 600ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_hebe.hover .cl-ib-image {
-webkit-transform: scale(1);
transform: scale(1);
}
.cl-ib.animation_hebe.hover .cl-ib-image:before,
.cl-ib.animation_hebe.hover .cl-ib-image:after {
opacity: 0.6;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_hebe.hover .cl-ib-title {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_hebe.hover .cl-ib-desc {
opacity: 0.75;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_aphelia .cl-ib-image {
opacity: 0.25;
-webkit-filter: grayscale(1);
filter: grayscale(1);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-filter, opacity;
transition-property: filter, opacity;
}
.cl-ib.animation_aphelia .cl-ib-content {
top: 50%;
bottom: auto;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.cl-ib.animation_aphelia .cl-ib-title {
opacity: 1;
-webkit-transform: translateY(0) scale(1);
transform: translateY(0) scale(1);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_aphelia .cl-ib-desc {
opacity: 0.75;
-webkit-transform: translateY(0) scale(1);
transform: translateY(0) scale(1);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_aphelia.hover .cl-ib-image {
opacity: 1;
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
.cl-ib.animation_aphelia.hover .cl-ib-title {
opacity: 0;
-webkit-transform: translateY(-40px) scale(0.8);
transform: translateY(-40px) scale(0.8);
}
.cl-ib.animation_aphelia.hover .cl-ib-desc {
opacity: 0;
-webkit-transform: translateY(40px) scale(0.8);
transform: translateY(40px) scale(0.8);
}
.cl-ib.animation_nike .cl-ib-image {
-webkit-filter: grayscale(1);
filter: grayscale(1);
-webkit-transform: translateY(25%);
transform: translateY(25%);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform, -webkit-filter;
transition-property: transform, filter;
}
.cl-ib.animation_nike .cl-ib-h:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 50%;
background-color: inherit;
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cl-ib.animation_nike .cl-ib-content {
opacity: 1;
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.cl-ib.animation_nike.hover .cl-ib-image {
-webkit-filter: grayscale(0);
filter: grayscale(0);
-webkit-transform: translateY(0);
transform: translateY(0);
}
.cl-ib.animation_nike.hover .cl-ib-h:after {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.cl-ib.animation_nike.hover .cl-ib-content {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px);
}
.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-text-container.wptb-has-link-color a{color:var(--wptb-link-color)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-text-container *{font-size:inherit!important}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-text-container p{color:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button-wrapper{display:flex;align-items:center;justify-content:center}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button{padding:16px;background:var(--wptb-btn-bg);color:var(--wptb-btn-color);cursor:pointer;border:0;box-shadow:none;transition:all .2s ease-out;display:flex;justify-content:center;align-items:center}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button:hover{background:var(--wptb-btn-hover-bg, var(--wptb-btn-bg));color:var(--wptb-btn-hover-color, var(--wptb-btn-color));transform:scale(var(--wptb-btn-hover-scale, 1))}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button *{color:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button-icon{margin:0 5px;order:-1;width:25px;height:25px;display:flex;justify-content:center;align-items:center}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button-icon[data-wptb-button-icon-src=""]{display:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button-icon svg{width:100%;height:100%;fill:currentColor}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button-label{align-items:center;background:#fff;color:green;border:1px solid green;line-height:1.5;font-size:15px;padding:.475rem .85rem;padding-left:0;border-radius:.3rem;margin-left:20px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button-label .wptb-button-label-decorator{display:inline-block;position:absolute;width:0;height:0;border-style:solid;--width: 13px;--height: 19px;--background: #fff;margin-left:calc(var(--width) * -1);border-width:var(--height) var(--width) var(--height) 0;border-color:transparent #fff transparent transparent}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button-label .wptb-button-label-text{display:inline-block;padding-left:5px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-size-s .wptb-button{border-radius:.2rem;padding:.35rem .6rem;max-width:100%}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-size-s .wptb-button p{font-size:.875rem}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-size-s .wptb-button-label{padding:.35rem .6rem;padding-left:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-size-m .wptb-button{border-radius:.3rem;padding:.475rem .85rem;max-width:100%}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-size-m .wptb-button-label{padding:.475rem .85rem;padding-left:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-size-l .wptb-button{padding:.6rem 1.2rem}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-size-l .wptb-button-label{padding:.6rem 1.2rem;padding-left:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-size-xl .wptb-button{border-radius:.4rem;padding:.8rem 1.35rem;max-width:100%}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-size-xl .wptb-button-label{padding:.8rem 1.35rem;padding-left:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-button-has-label .wptb-button{padding-block:0;padding-right:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-plugin-button-order-right .wptb-button-icon{order:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-image-wrapper{overflow:hidden}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-image-wrapper a,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-image-wrapper span,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-image-wrapper .wptb-link-target{display:flex;max-width:100%;position:relative;margin:auto;text-decoration:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-image-wrapper img{width:100%;display:block;padding:0;max-width:100%;height:auto;transition:all .2s ease-out}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul{width:100%;margin:0;padding:1em .2em .4em;list-style-type:disc}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li{position:relative;list-style:none;margin:0;line-height:1.2}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li *{color:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li .wptb-list-item-text{display:flex;align-items:flex-start;gap:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li .wptb-list-item-text-content{font-size:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div{line-height:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>p:before,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>div:before{display:inline;margin-right:.1em;min-width:1em;font-family:inherit;font-size:inherit;line-height:inherit;vertical-align:baseline;color:inherit;cursor:text;content:attr(data-list-style-type-index)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>p.wptb-list-style-type-none:before,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>div.wptb-list-style-type-none:before{content:"";display:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>p.wptb-list-style-type-disc:before,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>div.wptb-list-style-type-disc:before{content:"●"}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>p.wptb-list-style-type-square:before,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>div.wptb-list-style-type-square:before{content:"■"}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>p.wptb-list-style-type-circle:before,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li>div>div.wptb-list-style-type-circle:before{content:"○"}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li.wptb-tooltip-top .wptb-m-tooltip{bottom:100%;left:50%;transform:translate(-50%)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li.wptb-tooltip-bottom .wptb-m-tooltip{top:100%;left:50%;transform:translate(-50%)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li.wptb-tooltip-left .wptb-m-tooltip{right:100%;top:50%;transform:translateY(-50%)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-list-container ul li.wptb-tooltip-right .wptb-m-tooltip{left:100%;top:50%;transform:translateY(-50%)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-star_rating-container .wptb-rating-stars-box{text-align:center;display:inline-block;padding:7px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-star_rating-container .wptb-rating-stars-box ul{list-style-type:none;-webkit-user-select:none;user-select:none;padding:0;margin:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-star_rating-container .wptb-rating-stars-box ul li{color:#ccc;cursor:pointer;margin:0;position:relative;display:inline-block}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-star_rating-container .wptb-number-rating-box{text-align:center;font-size:20px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-badge-block{display:flex}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-badge-block-text{padding:.5em 1em}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-badge-block *{color:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-circle-rating-block svg{display:block;margin:auto}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-icon-block{display:flex;align-items:center;justify-content:center;gap:5px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-icon-block-item{cursor:pointer}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-icon-block-item svg{height:var(--wptb-icon-block-size);width:var(--wptb-icon-block-size)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-progress-bar-block-value{font-size:20px;text-align:center;margin-top:5px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-progress-bar-block *{color:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block{position:absolute;z-index:15}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block *{color:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-bookmark{filter:drop-shadow(4px 3px 11px rgba(0,0,0,.2))}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-bookmark-text{padding:10px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-bookmark svg{height:20px;width:100%}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-corner{height:100px;width:100px;top:-5px;overflow:hidden}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-corner-left,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-corner-right{height:100%;position:relative;width:100%}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-corner-left{transform:rotate(-45deg)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-corner-right{transform:rotate(45deg)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-corner-text{bottom:50%;box-sizing:border-box;left:-25%;overflow:hidden;padding:2px calc(25% + 2px);position:absolute;width:150%;box-shadow:4px 1px 2px #0000001a;text-align:center}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon{display:flex;gap:5px;filter:drop-shadow(4px 3px 11px rgba(0,0,0,.2))}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-right{flex-direction:row-reverse;right:-5px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-left{left:-5px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-text-container{display:flex}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-triangle{width:20px;min-width:20px;clip-path:polygon(0 0,0% 100%,100% 100%);margin-left:-1px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-right .wptb-ribbon-block-icon-text-container{flex-direction:row-reverse}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-right .wptb-ribbon-block-icon-triangle{clip-path:polygon(100% 0,100% 100%,0 100%)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-text{border-radius:5px 0 0 5px;padding:10px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-right .wptb-ribbon-block-icon-text{border-radius:0 5px 5px 0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-icon{width:40px;min-width:40px;display:flex;align-items:center;justify-content:center;border-radius:5px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-icon svg{height:25px;width:25px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-icon[data-wptb-animation=beat] svg{animation:wptbBeat .5s ease-out infinite alternate}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-icon[data-wptb-animation=jump] svg{animation:wptbJump .5s ease-out infinite alternate}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-icon[data-wptb-animation=rotate] svg{animation:wptbRotate .5s ease-out infinite alternate}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-icon[data-wptb-animation=slideIn] svg{animation:wptbSlideIn 1.2s linear infinite forwards}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-icon[data-wptb-animation=dropIn] svg{animation:wptbDropIn 1.2s linear infinite forwards}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-icon[data-wptb-animation=riseUp] svg{animation:wptbDropIn 1s linear infinite reverse}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-icon-icon[data-wptb-animation=rainbow] svg{animation:wptbRainbow 1s linear infinite alternate}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-rectangle{padding:5px;border-radius:5px;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f;border-width:1px;border-style:solid}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-side-text{border:3px solid;padding:5px 20px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-side-shadow{height:20px;width:20px;position:relative}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-side-shadow:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:#0006}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-side-left .wptb-ribbon-block-side-text{border-radius:10px 0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-side-left .wptb-ribbon-block-side-shadow{clip-path:polygon(0 0,100% 100%,100% 0)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-side-right .wptb-ribbon-block-side-text{border-radius:0 10px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block-side-right .wptb-ribbon-block-side-shadow{clip-path:polygon(0 0,0 100%,100% 0);margin-left:auto}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block .ql-editor p{text-align:center}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-ribbon-block .ql-toolbar.ql-snow{min-width:max-content}@keyframes wptbBeat{0%{transform:scale(1)}to{transform:scale(1.3)}}@keyframes wptbJump{0%{transform:translateY(40%)}to{transform:translateY(-25%)}}@keyframes wptbRotate{0%{transform:rotateY(0)}to{transform:rotateY(360deg)}}@keyframes wptbSlideIn{0%{transform:translate(-100%)}to{transform:translate(100%)}}@keyframes wptbDropIn{0%{transform:translateY(-150%)}to{transform:translateY(150%)}}@keyframes wptbRainbow{0%{fill:#fff;transform:scale(1)}20%{fill:green}40%{fill:red}60%{fill:#00f}80%{fill:#ff0}to{fill:purple;transform:scale(1.3)}}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block{margin:0;padding:1em 3px 3px;position:relative}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block{display:flex;position:relative;align-items:flex-start}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block:last-child{margin-bottom:0!important}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block *{color:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-styled-list-item-text{align-self:center}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip{min-width:120px;max-width:100%;padding:10px;position:absolute;word-wrap:no-wrap;box-shadow:1px 1px 20px #aaa;border-radius:5px;background:#333;color:#fff;transform-style:preserve-3d;z-index:200;font-size:.9em;display:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip:after{content:"";position:absolute;border:8px solid transparent}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip-top{bottom:100%;left:50%;transform:translate(-50%);margin-bottom:10px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip-top:after{top:calc(100% - 1px);left:50%;transform:translate(-50%);border-top-color:#333}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip-bottom{top:100%;left:50%;transform:translate(-50%);margin-top:10px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip-bottom:after{bottom:calc(100% - 1px);left:50%;transform:translate(-50%);border-bottom-color:#333}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip-left{top:50%;right:100%;transform:translateY(-50%);margin-right:10px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip-left:after{top:50%;left:calc(100% - 1px);transform:translateY(-50%);border-left-color:#333}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip-right{top:50%;left:100%;transform:translateY(-50%);margin-left:10px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block .wptb-list-tooltip-right:after{top:50%;right:calc(100% - 1px);transform:translateY(-50%);border-right-color:#333}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-block li.wptb-styled-list-item-block:hover .wptb-list-tooltip{display:block}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-align-center li{justify-content:center}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) ul.wptb-styled-list-align-right li{justify-content:flex-end}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-text-icon-block{display:flex;align-items:center}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-text-icon-block *{color:inherit}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-text-icon-block-icon svg{height:var(--wptb-icon-size);width:var(--wptb-icon-size)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-text-icon-block-text{min-width:30px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-text-icon-block-empty .wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-text-icon-block-text{flex-grow:1}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-sticky-top-row tr:first-child{position:sticky;top:0;z-index:10}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-sticky-first-column th:first-child,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-sticky-first-column td:first-child{position:sticky;left:0;z-index:10}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-scroll-x-manual-sticky.wptb-sticky-top-row tbody tr:first-child{position:relative;z-index:11}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-scroll-x-manual-sticky.wptb-sticky-top-row tbody tr:first-child>th,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-scroll-x-manual-sticky.wptb-sticky-top-row tbody tr:first-child>td{position:relative;top:auto}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-scroll-x-manual-sticky.wptb-sticky-first-column tbody tr>th:first-child,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-scroll-x-manual-sticky.wptb-sticky-first-column tbody tr>td:first-child{position:relative;left:auto;z-index:10}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-scroll-x-manual-sticky.wptb-sticky-top-row.wptb-sticky-first-column tr:first-child>th:first-child,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-scroll-x-manual-sticky.wptb-sticky-top-row.wptb-sticky-first-column tr:first-child>td:first-child{z-index:12}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-no-results{padding:2rem;text-align:center;color:#6b7280;font-size:.875rem;background:#f9fafb;border:1px dashed #d0d5dd;border-radius:8px;margin-top:1rem;display:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-hidden{display:none!important}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-container{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:.5rem;border-radius:8px;flex-wrap:wrap}@media (max-width: 640px){.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-container{flex-direction:column;align-items:stretch}}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-size{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:#374151}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-size label{display:flex;align-items:center;gap:.5rem;margin:0;font-weight:400}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-size .wptb-pagination-size-select{padding:.375rem .75rem;border:1px solid #d0d5dd;border-radius:6px;font-size:.875rem;background:#fff;cursor:pointer;transition:border-color .2s ease}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-size .wptb-pagination-size-select:focus{outline:none;border-color:#2563eb;box-shadow:0 0 0 3px #2563eb1a}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-controls{margin-left:auto;display:flex;align-items:center;gap:.5rem}@media (max-width: 640px){.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-controls{justify-content:center}}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-btn{display:inline-flex;align-items:center;justify-content:center;min-width:36px;height:36px;padding:.5rem;border:1px solid #d0d5dd;border-radius:6px;background:#fff;color:#374151;font-size:.875rem;font-weight:500;cursor:pointer;transition:all .2s ease}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-btn:hover:not(:disabled){background:#f3f4f6;border-color:#9ca3af}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-btn:focus{outline:none;border-color:#2563eb;box-shadow:0 0 0 3px #2563eb1a}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-btn:disabled{opacity:.4;cursor:not-allowed;background:#f9fafb}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-btn:active:not(:disabled){transform:scale(.95)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-info{font-size:.875rem;color:#374151;white-space:nowrap}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-info .wptb-pagination-current,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-info .wptb-pagination-total{font-weight:600;color:#1f2937}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-hidden{display:none!important}@media (max-width: 768px){.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-container{max-width:100%}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-container{padding:.75rem}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-controls{gap:.375rem}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-btn{min-width:32px;height:32px;padding:.375rem;font-size:.75rem}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-info{font-size:.8125rem}}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-input:focus-visible,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-btn:focus-visible{outline:2px solid #2563eb;outline-offset:2px}@media (prefers-reduced-motion: reduce){.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-input,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-pagination-btn{transition:none}}@media (max-width: 600px){.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-hide-on-mobile{display:none!important}}@keyframes wptb-spin{to{transform:rotate(360deg)}}.wptb-skeleton-sidebar.wptb-skeleton-sidebar:not(#wptb-style-isolation):not(#wptb-style-isolation){width:100%;height:100%;min-height:400px;background:#e0e0e0;border-radius:5px;border:1px solid #d0d0d0}.wptb-skeleton-toolbar.wptb-skeleton-toolbar:not(#wptb-style-isolation):not(#wptb-style-isolation){width:100%;height:60px;background:#e0e0e0;border-radius:5px;border:1px solid #d0d0d0}.wptb-skeleton-table.wptb-skeleton-table:not(#wptb-style-isolation):not(#wptb-style-isolation){padding:40px;display:flex;align-items:center;justify-content:center}.wptb-skeleton-table.wptb-skeleton-table:not(#wptb-style-isolation):not(#wptb-style-isolation) table{border-collapse:collapse;width:80%;max-width:600px}.wptb-skeleton-table.wptb-skeleton-table:not(#wptb-style-isolation):not(#wptb-style-isolation) th.wptb-skeleton-cell,.wptb-skeleton-table.wptb-skeleton-table:not(#wptb-style-isolation):not(#wptb-style-isolation) td.wptb-skeleton-cell{padding:12px!important;border:1px solid #e0e0e0!important;background:#f5f5f5!important;text-align:left!important;vertical-align:middle!important}.wptb-skeleton-table.wptb-skeleton-table:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-skeleton-cell .wptb-skeleton-line{height:20px;background:#e0e0e0!important;border-radius:4px;position:relative;overflow:hidden;border:0!important;padding:0!important;margin:0!important;width:100%!important}.wptb-skeleton-table.wptb-skeleton-table:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-skeleton-cell .wptb-skeleton-line:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,#fff0,#ffffff4d,#fff0);animation:wptb-v2-shimmer 1.5s infinite}@keyframes wptb-v2-shimmer{0%{left:-100%}to{left:100%}}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table{table-layout:fixed;font-size:15px;display:table;margin:auto;width:100%}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table a{text-decoration:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-has-link-color a{color:var(--wptb-link-color)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table *{box-sizing:border-box}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr{display:table-row}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr.wptb-row-has-hover:hover{background:var(--hover-bg-color)!important}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr.wptb-row-responsive{background:transparent}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr.wptb-row-edge{border-bottom:5px solid black}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr.wptb-row-edge:last-child{border-bottom:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr th,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr td{padding:15px;position:relative;box-sizing:content-box;border-radius:var(--wptb-inner-radius);border:var(--wptb-inner-border);background:var(--wptb-row-bg)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr th.wptb-tmp-cell,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr td.wptb-tmp-cell{pointer-events:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr th.wptb-tmp-cell:before,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr th.wptb-tmp-cell:after,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr td.wptb-tmp-cell:before,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr td.wptb-tmp-cell:after{display:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-row-borders-only td:not(.wptb-tmp-cell):not(:first-child){border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-row-borders-only td:not(.wptb-tmp-cell):not(:last-child){border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-row-borders-only td.wptb-tmp-cell:not([data-col="0"]){border-top:none;border-top-left-radius:0;border-top-right-radius:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-row-borders-only td.wptb-tmp-cell:not(.wptb-row-ending-cell){border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-column-borders-only tr:not(:first-child) td:not(.wptb-tmp-cell){border-top:none;border-top-left-radius:0;border-top-right-radius:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-column-borders-only tr:not(:last-child) td:not(.wptb-tmp-cell){border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-column-borders-only td.wptb-tmp-cell:not(:first-child){border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-column-borders-only td.wptb-tmp-cell:not(:last-child){border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table.wptb-no-header-border tr:first-of-type td{border:none}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table tr:nth-of-type(odd){background:#eee}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table p{margin:0;font-size:15px;word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button+.wptb-cell-content{margin-left:.5rem}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-cell-content:has(+.wptb-sort-button){margin-right:.5rem}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button{position:absolute;top:50%;transform:translateY(-50%);cursor:pointer;background:none;border:none;padding:0;overflow:visible!important;--clr: #808080;--clr-active: #000}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button:after,.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button:before{content:"";position:absolute;top:50%;transform:translateY(-50%);border:5px solid transparent}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-vertical{right:15px;margin-top:-5px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-vertical:after{border-top-color:var(--clr);margin-top:11px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-vertical:before{border-bottom-color:var(--clr)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-vertical.wptb-sort-button-asc:before{border-bottom-color:var(--clr-active)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-vertical.wptb-sort-button-desc:after{border-top-color:var(--clr-active)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-horizontal{left:0}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-horizontal:after{border-right-color:var(--clr);margin-right:10px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-horizontal:before{border-left-color:var(--clr);margin-left:11px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-horizontal.wptb-sort-button-asc:after{border-right-color:var(--clr-active)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) table.wptb-table .wptb-sort-button-horizontal.wptb-sort-button-desc:before{border-left-color:var(--clr-active)}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-container{margin-bottom:1rem;position:relative;max-width:400px}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-container.wptb-search-right{margin-left:auto}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-container .wptb-search-input{width:100%;padding:.5rem 2.5rem .5rem 1rem;border:1px solid #d0d5dd;border-radius:8px;font-size:.875rem;line-height:1.5;transition:all .2s ease;outline:none;box-sizing:border-box}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-container .wptb-search-input:focus{border-color:#2563eb;box-shadow:0 0 0 3px #2563eb1a}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-container .wptb-search-input::placeholder{color:#9ca3af}.wptb-style-isolation:not(#wptb-style-isolation):not(#wptb-style-isolation) .wptb-search-container .wptb-search-icon{position:absolute;right:.75rem;top:50%;transform:translateY(-50%);font-size:1rem;pointer-events:none;opacity:.5}