@charset"UTF-8";
@-webkit-keyframes scale {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
45% {
-webkit-transform: scale(0.1);
transform: scale(0.1);
opacity: 0.7;
}
80% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
@keyframes scale {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
45% {
-webkit-transform: scale(0.1);
transform: scale(0.1);
opacity: 0.7;
}
80% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
.ball-pulse>div:nth-child(1) {
-webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse>div:nth-child(2) {
-webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse>div:nth-child(3) {
-webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
}
@-webkit-keyframes ball-pulse-sync {
33% {
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
66% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes ball-pulse-sync {
33% {
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
66% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.ball-pulse-sync>div:nth-child(1) {
-webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}
.ball-pulse-sync>div:nth-child(2) {
-webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
}
.ball-pulse-sync>div:nth-child(3) {
-webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}
.ball-pulse-sync>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
}
@-webkit-keyframes ball-scale {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
@keyframes ball-scale {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
.ball-scale>div {
background-color: #fff;
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
height: 60px;
width: 60px;
-webkit-animation: ball-scale 1s 0s ease-in-out infinite;
animation: ball-scale 1s 0s ease-in-out infinite;
}
@keyframes ball-scale {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
.ball-scale>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
height: 60px;
width: 60px;
-webkit-animation: ball-scale 1s 0s ease-in-out infinite;
animation: ball-scale 1s 0s ease-in-out infinite;
}
.ball-scale-random {
width: 37px;
height: 40px;
}
.ball-scale-random>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
display: inline-block;
height: 30px;
width: 30px;
-webkit-animation: ball-scale 1s 0s ease-in-out infinite;
animation: ball-scale 1s 0s ease-in-out infinite;
}
.ball-scale-random>div:nth-child(1) {
margin-left: -7px;
-webkit-animation: ball-scale 1s 0.2s ease-in-out infinite;
animation: ball-scale 1s 0.2s ease-in-out infinite;
}
.ball-scale-random>div:nth-child(3) {
margin-left: -2px;
margin-top: 9px;
-webkit-animation: ball-scale 1s 0.5s ease-in-out infinite;
animation: ball-scale 1s 0.5s ease-in-out infinite;
}
@-webkit-keyframes rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
50% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
50% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.ball-rotate {
position: relative;
}
.ball-rotate>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: relative;
}
.ball-rotate>div:first-child {
-webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
}
.ball-rotate>div:before,
.ball-rotate>div:after {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
content: "";
position: absolute;
opacity: 0.8;
}
.ball-rotate>div:before {
top: 0px;
left: -28px;
}
.ball-rotate>div:after {
top: 0px;
left: 25px;
}
@keyframes rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
50% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.ball-clip-rotate>div {
background-color: #fff;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
border: 2px solid var(--total-preloader-color, #000);
border-bottom-color: transparent !important;
height: 50px;
width: 50px;
background: transparent;
display: inline-block;
-webkit-animation: rotate 0.75s 0s linear infinite;
animation: rotate 0.75s 0s linear infinite;
}
@keyframes rotate {
0% {
-webkit-transform: rotate(0deg) scale(1);
transform: rotate(0deg) scale(1);
}
50% {
-webkit-transform: rotate(180deg) scale(0.6);
transform: rotate(180deg) scale(0.6);
}
100% {
-webkit-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}
@keyframes scale {
30% {
-webkit-transform: scale(0.3);
transform: scale(0.3);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
.ball-clip-rotate-pulse {
position: relative;
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
.ball-clip-rotate-pulse>div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
top: 0px;
left: 0px;
border-radius: 100%;
}
.ball-clip-rotate-pulse>div:first-child {
background: #fff;
height: 16px;
width: 16px;
top: 7px;
left: -7px;
-webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
.ball-clip-rotate-pulse>div:last-child {
position: absolute;
border: 2px solid #fff;
width: 30px;
height: 30px;
left: -16px;
top: -2px;
background: transparent;
border: 2px solid;
border-color: #fff transparent #fff transparent;
-webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
@keyframes rotate {
0% {
-webkit-transform: rotate(0deg) scale(1);
transform: rotate(0deg) scale(1);
}
50% {
-webkit-transform: rotate(180deg) scale(0.6);
transform: rotate(180deg) scale(0.6);
}
100% {
-webkit-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}
.ball-clip-rotate-multiple {
position: relative;
}
.ball-clip-rotate-multiple>div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
left: -25px;
top: -25px;
border: 2px solid var(--total-preloader-color, #000);
border-bottom-color: transparent !important;
border-top-color: transparent !important;
border-radius: 100%;
height: 50px;
width: 50px;
-webkit-animation: rotate 1s 0s ease-in-out infinite;
animation: rotate 1s 0s ease-in-out infinite;
}
.ball-clip-rotate-multiple>div:last-child {
display: inline-block;
top: -10px;
left: -10px;
width: 20px;
height: 20px;
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
border-color: #fff transparent #fff transparent;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
@-webkit-keyframes ball-scale-ripple {
0% {
-webkit-transform: scale(0.1);
transform: scale(0.1);
opacity: 1;
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0.7;
}
100% {
opacity: 0.0;
}
}
@keyframes ball-scale-ripple {
0% {
-webkit-transform: scale(0.1);
transform: scale(0.1);
opacity: 1;
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0.7;
}
100% {
opacity: 0.0;
}
}
.ball-scale-ripple>div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
height: 50px;
width: 50px;
border-radius: 100%;
border: 2px solid #fff;
-webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
@-webkit-keyframes ball-scale-ripple-multiple {
0% {
-webkit-transform: scale(0.1);
transform: scale(0.1);
opacity: 1;
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0.7;
}
100% {
opacity: 0.0;
}
}
@keyframes ball-scale-ripple-multiple {
0% {
-webkit-transform: scale(0.1);
transform: scale(0.1);
opacity: 1;
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0.7;
}
100% {
opacity: 0.0;
}
}
.ball-scale-ripple-multiple {
position: relative;
-webkit-transform: translateY(-25px);
transform: translateY(-25px);
}
.ball-scale-ripple-multiple>div:nth-child(0) {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
.ball-scale-ripple-multiple>div:nth-child(1) {
-webkit-animation-delay: -0.6s;
animation-delay: -0.6s;
}
.ball-scale-ripple-multiple>div:nth-child(2) {
-webkit-animation-delay: -0.4s;
animation-delay: -0.4s;
}
.ball-scale-ripple-multiple>div:nth-child(3) {
-webkit-animation-delay: -0.2s;
animation-delay: -0.2s;
}
.ball-scale-ripple-multiple>div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
top: -2px;
left: -26px;
width: 50px;
height: 50px;
border-radius: 100%;
border: 2px solid var(--total-preloader-color, #000);
-webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
@-webkit-keyframes ball-beat {
50% {
opacity: 0.2;
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes ball-beat {
50% {
opacity: 0.2;
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
.ball-beat>div {
background-color: #fff;
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
-webkit-animation: ball-beat 0.7s 0s infinite linear;
animation: ball-beat 0.7s 0s infinite linear;
}
.ball-beat>div:nth-child(2n-1) {
-webkit-animation-delay: -0.35s !important;
animation-delay: -0.35s !important;
}
@-webkit-keyframes ball-scale-multiple {
0% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 0;
}
5% {
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
@keyframes ball-scale-multiple {
0% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 0;
}
5% {
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
.ball-scale-multiple {
position: relative;
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
.ball-scale-multiple>div:nth-child(2) {
-webkit-animation-delay: -0.4s;
animation-delay: -0.4s;
}
.ball-scale-multiple>div:nth-child(3) {
-webkit-animation-delay: -0.2s;
animation-delay: -0.2s;
}
.ball-scale-multiple>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
left: -30px;
top: 0px;
opacity: 0;
margin: 0;
width: 60px;
height: 60px;
-webkit-animation: ball-scale-multiple 1s 0s linear infinite;
animation: ball-scale-multiple 1s 0s linear infinite;
}
@-webkit-keyframes ball-triangle-path-1 {
33% {
-webkit-transform: translate(25px, -50px);
transform: translate(25px, -50px);
}
66% {
-webkit-transform: translate(50px, 0px);
transform: translate(50px, 0px);
}
100% {
-webkit-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
}
@keyframes ball-triangle-path-1 {
33% {
-webkit-transform: translate(25px, -50px);
transform: translate(25px, -50px);
}
66% {
-webkit-transform: translate(50px, 0px);
transform: translate(50px, 0px);
}
100% {
-webkit-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
}
@-webkit-keyframes ball-triangle-path-2 {
33% {
-webkit-transform: translate(25px, 50px);
transform: translate(25px, 50px);
}
66% {
-webkit-transform: translate(-25px, 50px);
transform: translate(-25px, 50px);
}
100% {
-webkit-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
}
@keyframes ball-triangle-path-2 {
33% {
-webkit-transform: translate(25px, 50px);
transform: translate(25px, 50px);
}
66% {
-webkit-transform: translate(-25px, 50px);
transform: translate(-25px, 50px);
}
100% {
-webkit-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
}
@-webkit-keyframes ball-triangle-path-3 {
33% {
-webkit-transform: translate(-50px, 0px);
transform: translate(-50px, 0px);
}
66% {
-webkit-transform: translate(-25px, -50px);
transform: translate(-25px, -50px);
}
100% {
-webkit-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
}
@keyframes ball-triangle-path-3 {
33% {
-webkit-transform: translate(-50px, 0px);
transform: translate(-50px, 0px);
}
66% {
-webkit-transform: translate(-25px, -50px);
transform: translate(-25px, -50px);
}
100% {
-webkit-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
}
.ball-triangle-path {
position: relative;
-webkit-transform: translate(-29.994px, -37.50938px);
transform: translate(-29.994px, -37.50938px);
}
.ball-triangle-path>div:nth-child(1) {
-webkit-animation-name: ball-triangle-path-1;
animation-name: ball-triangle-path-1;
-webkit-animation-delay: 0;
animation-delay: 0;
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.ball-triangle-path>div:nth-child(2) {
-webkit-animation-name: ball-triangle-path-2;
animation-name: ball-triangle-path-2;
-webkit-animation-delay: 0;
animation-delay: 0;
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.ball-triangle-path>div:nth-child(3) {
-webkit-animation-name: ball-triangle-path-3;
animation-name: ball-triangle-path-3;
-webkit-animation-delay: 0;
animation-delay: 0;
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.ball-triangle-path>div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
width: 10px;
height: 10px;
border-radius: 100%;
border: 1px solid #fff;
}
.ball-triangle-path>div:nth-of-type(1) {
top: 50px;
}
.ball-triangle-path>div:nth-of-type(2) {
left: 25px;
}
.ball-triangle-path>div:nth-of-type(3) {
top: 50px;
left: 50px;
}
@-webkit-keyframes ball-pulse-rise-even {
0% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
25% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
50% {
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
75% {
-webkit-transform: translateY(30px);
transform: translateY(30px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes ball-pulse-rise-even {
0% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
25% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
50% {
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
75% {
-webkit-transform: translateY(30px);
transform: translateY(30px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes ball-pulse-rise-odd {
0% {
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
25% {
-webkit-transform: translateY(30px);
transform: translateY(30px);
}
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
75% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
}
@keyframes ball-pulse-rise-odd {
0% {
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
25% {
-webkit-transform: translateY(30px);
transform: translateY(30px);
}
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
75% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
}
.ball-pulse-rise>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-delay: 0;
animation-delay: 0;
}
.ball-pulse-rise>div:nth-child(2n) {
-webkit-animation-name: ball-pulse-rise-even;
animation-name: ball-pulse-rise-even;
}
.ball-pulse-rise>div:nth-child(2n-1) {
-webkit-animation-name: ball-pulse-rise-odd;
animation-name: ball-pulse-rise-odd;
}
@-webkit-keyframes ball-grid-beat {
50% {
opacity: 0.7;
}
100% {
opacity: 1;
}
}
@keyframes ball-grid-beat {
50% {
opacity: 0.7;
}
100% {
opacity: 1;
}
}
.ball-grid-beat {
width: 57px;
}
.ball-grid-beat>div:nth-child(1) {
-webkit-animation-delay: 0.15s;
animation-delay: 0.15s;
-webkit-animation-duration: 1.45s;
animation-duration: 1.45s;
}
.ball-grid-beat>div:nth-child(2) {
-webkit-animation-delay: -0.02s;
animation-delay: -0.02s;
-webkit-animation-duration: 0.97s;
animation-duration: 0.97s;
}
.ball-grid-beat>div:nth-child(3) {
-webkit-animation-delay: 0.66s;
animation-delay: 0.66s;
-webkit-animation-duration: 1.23s;
animation-duration: 1.23s;
}
.ball-grid-beat>div:nth-child(4) {
-webkit-animation-delay: 0.64s;
animation-delay: 0.64s;
-webkit-animation-duration: 1.24s;
animation-duration: 1.24s;
}
.ball-grid-beat>div:nth-child(5) {
-webkit-animation-delay: -0.19s;
animation-delay: -0.19s;
-webkit-animation-duration: 1.13s;
animation-duration: 1.13s;
}
.ball-grid-beat>div:nth-child(6) {
-webkit-animation-delay: 0.69s;
animation-delay: 0.69s;
-webkit-animation-duration: 1.42s;
animation-duration: 1.42s;
}
.ball-grid-beat>div:nth-child(7) {
-webkit-animation-delay: 0.58s;
animation-delay: 0.58s;
-webkit-animation-duration: 1.14s;
animation-duration: 1.14s;
}
.ball-grid-beat>div:nth-child(8) {
-webkit-animation-delay: 0.21s;
animation-delay: 0.21s;
-webkit-animation-duration: 1.17s;
animation-duration: 1.17s;
}
.ball-grid-beat>div:nth-child(9) {
-webkit-animation-delay: -0.18s;
animation-delay: -0.18s;
-webkit-animation-duration: 0.65s;
animation-duration: 0.65s;
}
.ball-grid-beat>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
float: left;
-webkit-animation-name: ball-grid-beat;
animation-name: ball-grid-beat;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-delay: 0;
animation-delay: 0;
}
@-webkit-keyframes ball-grid-pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
opacity: 0.7;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
@keyframes ball-grid-pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
opacity: 0.7;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
.ball-grid-pulse {
width: 57px;
}
.ball-grid-pulse>div:nth-child(1) {
-webkit-animation-delay: 0.22s;
animation-delay: 0.22s;
-webkit-animation-duration: 0.9s;
animation-duration: 0.9s;
}
.ball-grid-pulse>div:nth-child(2) {
-webkit-animation-delay: 0.64s;
animation-delay: 0.64s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
.ball-grid-pulse>div:nth-child(3) {
-webkit-animation-delay: -0.15s;
animation-delay: -0.15s;
-webkit-animation-duration: 0.63s;
animation-duration: 0.63s;
}
.ball-grid-pulse>div:nth-child(4) {
-webkit-animation-delay: -0.03s;
animation-delay: -0.03s;
-webkit-animation-duration: 1.24s;
animation-duration: 1.24s;
}
.ball-grid-pulse>div:nth-child(5) {
-webkit-animation-delay: 0.08s;
animation-delay: 0.08s;
-webkit-animation-duration: 1.37s;
animation-duration: 1.37s;
}
.ball-grid-pulse>div:nth-child(6) {
-webkit-animation-delay: 0.43s;
animation-delay: 0.43s;
-webkit-animation-duration: 1.55s;
animation-duration: 1.55s;
}
.ball-grid-pulse>div:nth-child(7) {
-webkit-animation-delay: 0.05s;
animation-delay: 0.05s;
-webkit-animation-duration: 0.7s;
animation-duration: 0.7s;
}
.ball-grid-pulse>div:nth-child(8) {
-webkit-animation-delay: 0.05s;
animation-delay: 0.05s;
-webkit-animation-duration: 0.97s;
animation-duration: 0.97s;
}
.ball-grid-pulse>div:nth-child(9) {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
-webkit-animation-duration: 0.63s;
animation-duration: 0.63s;
}
.ball-grid-pulse>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
float: left;
-webkit-animation-name: ball-grid-pulse;
animation-name: ball-grid-pulse;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-delay: 0;
animation-delay: 0;
}
@-webkit-keyframes ball-spin-fade-loader {
50% {
opacity: 0.3;
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes ball-spin-fade-loader {
50% {
opacity: 0.3;
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
.ball-spin-fade-loader {
position: relative;
top: -10px;
left: -10px;
}
.ball-spin-fade-loader>div:nth-child(1) {
top: 25px;
left: 0;
-webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
animation: ball-spin-fade-loader 1s -0.96s infinite linear;
}
.ball-spin-fade-loader>div:nth-child(2) {
top: 17.04545px;
left: 17.04545px;
-webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
animation: ball-spin-fade-loader 1s -0.84s infinite linear;
}
.ball-spin-fade-loader>div:nth-child(3) {
top: 0;
left: 25px;
-webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
animation: ball-spin-fade-loader 1s -0.72s infinite linear;
}
.ball-spin-fade-loader>div:nth-child(4) {
top: -17.04545px;
left: 17.04545px;
-webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
animation: ball-spin-fade-loader 1s -0.6s infinite linear;
}
.ball-spin-fade-loader>div:nth-child(5) {
top: -25px;
left: 0;
-webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
animation: ball-spin-fade-loader 1s -0.48s infinite linear;
}
.ball-spin-fade-loader>div:nth-child(6) {
top: -17.04545px;
left: -17.04545px;
-webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
animation: ball-spin-fade-loader 1s -0.36s infinite linear;
}
.ball-spin-fade-loader>div:nth-child(7) {
top: 0;
left: -25px;
-webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
animation: ball-spin-fade-loader 1s -0.24s infinite linear;
}
.ball-spin-fade-loader>div:nth-child(8) {
top: 17.04545px;
left: -17.04545px;
-webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
animation: ball-spin-fade-loader 1s -0.12s infinite linear;
}
.ball-spin-fade-loader>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
}
@-webkit-keyframes ball-spin-loader {
75% {
opacity: 0.2;
}
100% {
opacity: 1;
}
}
@keyframes ball-spin-loader {
75% {
opacity: 0.2;
}
100% {
opacity: 1;
}
}
.ball-spin-loader {
position: relative;
}
.ball-spin-loader>span:nth-child(1) {
top: 45px;
left: 0;
-webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
animation: ball-spin-loader 2s 0.9s infinite linear;
}
.ball-spin-loader>span:nth-child(2) {
top: 30.68182px;
left: 30.68182px;
-webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
animation: ball-spin-loader 2s 1.8s infinite linear;
}
.ball-spin-loader>span:nth-child(3) {
top: 0;
left: 45px;
-webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
animation: ball-spin-loader 2s 2.7s infinite linear;
}
.ball-spin-loader>span:nth-child(4) {
top: -30.68182px;
left: 30.68182px;
-webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
animation: ball-spin-loader 2s 3.6s infinite linear;
}
.ball-spin-loader>span:nth-child(5) {
top: -45px;
left: 0;
-webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
animation: ball-spin-loader 2s 4.5s infinite linear;
}
.ball-spin-loader>span:nth-child(6) {
top: -30.68182px;
left: -30.68182px;
-webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
animation: ball-spin-loader 2s 5.4s infinite linear;
}
.ball-spin-loader>span:nth-child(7) {
top: 0;
left: -45px;
-webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
animation: ball-spin-loader 2s 6.3s infinite linear;
}
.ball-spin-loader>span:nth-child(8) {
top: 30.68182px;
left: -30.68182px;
-webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
animation: ball-spin-loader 2s 7.2s infinite linear;
}
.ball-spin-loader>div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
width: 15px;
height: 15px;
border-radius: 100%;
background: green;
}
@-webkit-keyframes ball-zig {
33% {
-webkit-transform: translate(-15px, -30px);
transform: translate(-15px, -30px);
}
66% {
-webkit-transform: translate(15px, -30px);
transform: translate(15px, -30px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes ball-zig {
33% {
-webkit-transform: translate(-15px, -30px);
transform: translate(-15px, -30px);
}
66% {
-webkit-transform: translate(15px, -30px);
transform: translate(15px, -30px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-webkit-keyframes ball-zag {
33% {
-webkit-transform: translate(15px, 30px);
transform: translate(15px, 30px);
}
66% {
-webkit-transform: translate(-15px, 30px);
transform: translate(-15px, 30px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes ball-zag {
33% {
-webkit-transform: translate(15px, 30px);
transform: translate(15px, 30px);
}
66% {
-webkit-transform: translate(-15px, 30px);
transform: translate(-15px, 30px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
.ball-zig-zag {
position: relative;
-webkit-transform: translate(-15px, -15px);
transform: translate(-15px, -15px);
}
.ball-zig-zag>div {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
margin-left: 15px;
top: 4px;
left: -7px;
}
.ball-zig-zag>div:first-child {
-webkit-animation: ball-zig 0.7s 0s infinite linear;
animation: ball-zig 0.7s 0s infinite linear;
}
.ball-zig-zag>div:last-child {
-webkit-animation: ball-zag 0.7s 0s infinite linear;
animation: ball-zag 0.7s 0s infinite linear;
}
@-webkit-keyframes ball-zig-deflect {
17% {
-webkit-transform: translate(-15px, -30px);
transform: translate(-15px, -30px);
}
34% {
-webkit-transform: translate(15px, -30px);
transform: translate(15px, -30px);
}
50% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
67% {
-webkit-transform: translate(15px, -30px);
transform: translate(15px, -30px);
}
84% {
-webkit-transform: translate(-15px, -30px);
transform: translate(-15px, -30px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes ball-zig-deflect {
17% {
-webkit-transform: translate(-15px, -30px);
transform: translate(-15px, -30px);
}
34% {
-webkit-transform: translate(15px, -30px);
transform: translate(15px, -30px);
}
50% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
67% {
-webkit-transform: translate(15px, -30px);
transform: translate(15px, -30px);
}
84% {
-webkit-transform: translate(-15px, -30px);
transform: translate(-15px, -30px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-webkit-keyframes ball-zag-deflect {
17% {
-webkit-transform: translate(15px, 30px);
transform: translate(15px, 30px);
}
34% {
-webkit-transform: translate(-15px, 30px);
transform: translate(-15px, 30px);
}
50% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
67% {
-webkit-transform: translate(-15px, 30px);
transform: translate(-15px, 30px);
}
84% {
-webkit-transform: translate(15px, 30px);
transform: translate(15px, 30px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes ball-zag-deflect {
17% {
-webkit-transform: translate(15px, 30px);
transform: translate(15px, 30px);
}
34% {
-webkit-transform: translate(-15px, 30px);
transform: translate(-15px, 30px);
}
50% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
67% {
-webkit-transform: translate(-15px, 30px);
transform: translate(-15px, 30px);
}
84% {
-webkit-transform: translate(15px, 30px);
transform: translate(15px, 30px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
.ball-zig-zag-deflect {
position: relative;
-webkit-transform: translate(-15px, -15px);
transform: translate(-15px, -15px);
}
.ball-zig-zag-deflect>div {
background-color: #fff;
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
margin-left: 15px;
top: 4px;
left: -7px;
}
.ball-zig-zag-deflect>div:first-child {
-webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
animation: ball-zig-deflect 1.5s 0s infinite linear;
}
.ball-zig-zag-deflect>div:last-child {
-webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
animation: ball-zag-deflect 1.5s 0s infinite linear;
} @-webkit-keyframes line-scale {
0% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
50% {
-webkit-transform: scaley(0.4);
transform: scaley(0.4);
}
100% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
}
@keyframes line-scale {
0% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
50% {
-webkit-transform: scaley(0.4);
transform: scaley(0.4);
}
100% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
}
.line-scale>div:nth-child(1) {
-webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale>div:nth-child(2) {
-webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale>div:nth-child(3) {
-webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale>div:nth-child(4) {
-webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale>div:nth-child(5) {
-webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale>div {
background-color: var(--total-preloader-color, #000);
width: 4px;
height: 35px;
border-radius: 2px;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
}
@-webkit-keyframes line-scale-party {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes line-scale-party {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
.line-scale-party>div:nth-child(1) {
-webkit-animation-delay: 0.48s;
animation-delay: 0.48s;
-webkit-animation-duration: 0.54s;
animation-duration: 0.54s;
}
.line-scale-party>div:nth-child(2) {
-webkit-animation-delay: -0.15s;
animation-delay: -0.15s;
-webkit-animation-duration: 1.15s;
animation-duration: 1.15s;
}
.line-scale-party>div:nth-child(3) {
-webkit-animation-delay: 0.04s;
animation-delay: 0.04s;
-webkit-animation-duration: 0.77s;
animation-duration: 0.77s;
}
.line-scale-party>div:nth-child(4) {
-webkit-animation-delay: -0.12s;
animation-delay: -0.12s;
-webkit-animation-duration: 0.61s;
animation-duration: 0.61s;
}
.line-scale-party>div {
background-color: #fff;
width: 4px;
height: 35px;
border-radius: 2px;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
-webkit-animation-name: line-scale-party;
animation-name: line-scale-party;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-delay: 0;
animation-delay: 0;
}
@-webkit-keyframes line-scale-pulse-out {
0% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
50% {
-webkit-transform: scaley(0.4);
transform: scaley(0.4);
}
100% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
}
@keyframes line-scale-pulse-out {
0% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
50% {
-webkit-transform: scaley(0.4);
transform: scaley(0.4);
}
100% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
}
.line-scale-pulse-out>div {
background-color: var(--total-preloader-color, #000);
width: 4px;
height: 35px;
border-radius: 2px;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
-webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}
.line-scale-pulse-out>div:nth-child(2),
.line-scale-pulse-out>div:nth-child(4) {
-webkit-animation-delay: -0.4s !important;
animation-delay: -0.4s !important;
}
.line-scale-pulse-out>div:nth-child(1),
.line-scale-pulse-out>div:nth-child(5) {
-webkit-animation-delay: -0.2s !important;
animation-delay: -0.2s !important;
}
@-webkit-keyframes line-scale-pulse-out-rapid {
0% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
80% {
-webkit-transform: scaley(0.3);
transform: scaley(0.3);
}
90% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
}
@keyframes line-scale-pulse-out-rapid {
0% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
80% {
-webkit-transform: scaley(0.3);
transform: scaley(0.3);
}
90% {
-webkit-transform: scaley(1);
transform: scaley(1);
}
}
.line-scale-pulse-out-rapid>div {
background-color: #fff;
width: 4px;
height: 35px;
border-radius: 2px;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: inline-block;
vertical-align: middle;
-webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}
.line-scale-pulse-out-rapid>div:nth-child(2),
.line-scale-pulse-out-rapid>div:nth-child(4) {
-webkit-animation-delay: -0.25s !important;
animation-delay: -0.25s !important;
}
.line-scale-pulse-out-rapid>div:nth-child(1),
.line-scale-pulse-out-rapid>div:nth-child(5) {
-webkit-animation-delay: 0s !important;
animation-delay: 0s !important;
}
@-webkit-keyframes line-spin-fade-loader {
50% {
opacity: 0.3;
}
100% {
opacity: 1;
}
}
@keyframes line-spin-fade-loader {
50% {
opacity: 0.3;
}
100% {
opacity: 1;
}
}
.line-spin-fade-loader {
position: relative;
top: -10px;
left: -4px;
}
.line-spin-fade-loader>div:nth-child(1) {
top: 20px;
left: 0;
-webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
}
.line-spin-fade-loader>div:nth-child(2) {
top: 13.63636px;
left: 13.63636px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
}
.line-spin-fade-loader>div:nth-child(3) {
top: 0;
left: 20px;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
-webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
}
.line-spin-fade-loader>div:nth-child(4) {
top: -13.63636px;
left: 13.63636px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
}
.line-spin-fade-loader>div:nth-child(5) {
top: -20px;
left: 0;
-webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
}
.line-spin-fade-loader>div:nth-child(6) {
top: -13.63636px;
left: -13.63636px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
}
.line-spin-fade-loader>div:nth-child(7) {
top: 0;
left: -20px;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
-webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
}
.line-spin-fade-loader>div:nth-child(8) {
top: 13.63636px;
left: -13.63636px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
}
.line-spin-fade-loader>div {
background-color: #fff;
width: 4px;
height: 35px;
border-radius: 2px;
margin: 2px;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
position: absolute;
width: 5px;
height: 15px;
} @-webkit-keyframes triangle-skew-spin {
25% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
transform: perspective(100px) rotateX(180deg) rotateY(0);
}
50% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
transform: perspective(100px) rotateX(180deg) rotateY(180deg);
}
75% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
transform: perspective(100px) rotateX(0) rotateY(180deg);
}
100% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
transform: perspective(100px) rotateX(0) rotateY(0);
}
}
@keyframes triangle-skew-spin {
25% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
transform: perspective(100px) rotateX(180deg) rotateY(0);
}
50% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
transform: perspective(100px) rotateX(180deg) rotateY(180deg);
}
75% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
transform: perspective(100px) rotateX(0) rotateY(180deg);
}
100% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
transform: perspective(100px) rotateX(0) rotateY(0);
}
}
.triangle-skew-spin>div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 20px solid #fff;
-webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
@-webkit-keyframes square-spin {
25% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
transform: perspective(100px) rotateX(180deg) rotateY(0);
}
50% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
transform: perspective(100px) rotateX(180deg) rotateY(180deg);
}
75% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
transform: perspective(100px) rotateX(0) rotateY(180deg);
}
100% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
transform: perspective(100px) rotateX(0) rotateY(0);
}
}
@keyframes square-spin {
25% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
transform: perspective(100px) rotateX(180deg) rotateY(0);
}
50% {
-webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
transform: perspective(100px) rotateX(180deg) rotateY(180deg);
}
75% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
transform: perspective(100px) rotateX(0) rotateY(180deg);
}
100% {
-webkit-transform: perspective(100px) rotateX(0) rotateY(0);
transform: perspective(100px) rotateX(0) rotateY(0);
}
}
.square-spin>div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
width: 50px;
height: 50px;
background-color: var(--total-preloader-color, #000);
-webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
@-webkit-keyframes rotate_pacman_half_up {
0% {
-webkit-transform: rotate(270deg);
transform: rotate(270deg);
}
50% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
100% {
-webkit-transform: rotate(270deg);
transform: rotate(270deg);
}
}
@keyframes rotate_pacman_half_up {
0% {
-webkit-transform: rotate(270deg);
transform: rotate(270deg);
}
50% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
100% {
-webkit-transform: rotate(270deg);
transform: rotate(270deg);
}
}
@-webkit-keyframes rotate_pacman_half_down {
0% {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
50% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
}
@keyframes rotate_pacman_half_down {
0% {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
50% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
}
@-webkit-keyframes pacman-balls {
75% {
opacity: 0.7;
}
100% {
-webkit-transform: translate(-100px, -6.25px);
transform: translate(-100px, -6.25px);
}
}
@keyframes pacman-balls {
75% {
opacity: 0.7;
}
100% {
-webkit-transform: translate(-100px, -6.25px);
transform: translate(-100px, -6.25px);
}
}
.pacman {
position: relative;
}
.pacman>div:nth-child(2) {
-webkit-animation: pacman-balls 1s -0.99s infinite linear;
animation: pacman-balls 1s -0.99s infinite linear;
}
.pacman>div:nth-child(3) {
-webkit-animation: pacman-balls 1s -0.66s infinite linear;
animation: pacman-balls 1s -0.66s infinite linear;
}
.pacman>div:nth-child(4) {
-webkit-animation: pacman-balls 1s -0.33s infinite linear;
animation: pacman-balls 1s -0.33s infinite linear;
}
.pacman>div:nth-child(5) {
-webkit-animation: pacman-balls 1s 0s infinite linear;
animation: pacman-balls 1s 0s infinite linear;
}
.pacman>div:first-of-type {
width: 0px;
height: 0px;
border-right: 25px solid transparent !important;
border-top: 25px solid var(--total-preloader-color, #000);
border-left: 25px solid var(--total-preloader-color, #000);
border-bottom: 25px solid var(--total-preloader-color, #000);
border-radius: 25px;
-webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
animation: rotate_pacman_half_up 0.5s 0s infinite;
position: relative;
left: -30px;
}
.pacman>div:nth-child(2) {
width: 0px;
height: 0px;
border-right: 25px solid transparent !important;
border-top: 25px solid var(--total-preloader-color, #000);
border-left: 25px solid var(--total-preloader-color, #000);
border-bottom: 25px solid var(--total-preloader-color, #000);
border-radius: 25px;
-webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
animation: rotate_pacman_half_down 0.5s 0s infinite;
margin-top: -50px;
position: relative;
left: -30px;
}
.pacman>div:nth-child(3),
.pacman>div:nth-child(4),
.pacman>div:nth-child(5),
.pacman>div:nth-child(6) {
background-color: var(--total-preloader-color, #000);
width: 15px;
height: 15px;
border-radius: 100%;
margin: 2px;
width: 10px;
height: 10px;
position: absolute;
-webkit-transform: translate(0, -6.25px);
transform: translate(0, -6.25px);
top: 25px;
left: 70px;
}
@-webkit-keyframes cube-transition {
25% {
-webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
transform: translateX(50px) scale(0.5) rotate(-90deg);
}
50% {
-webkit-transform: translate(50px, 50px) rotate(-180deg);
transform: translate(50px, 50px) rotate(-180deg);
}
75% {
-webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
transform: translateY(50px) scale(0.5) rotate(-270deg);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
@keyframes cube-transition {
25% {
-webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
transform: translateX(50px) scale(0.5) rotate(-90deg);
}
50% {
-webkit-transform: translate(50px, 50px) rotate(-180deg);
transform: translate(50px, 50px) rotate(-180deg);
}
75% {
-webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
transform: translateY(50px) scale(0.5) rotate(-270deg);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
.cube-transition {
position: relative;
-webkit-transform: translate(-25px, -25px);
transform: translate(-25px, -25px);
}
.cube-transition>div {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
width: 10px;
height: 10px;
position: absolute;
top: -5px;
left: -5px;
background-color: var(--total-preloader-color, #000);
-webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
animation: cube-transition 1.6s 0s infinite ease-in-out;
}
.cube-transition>div:last-child {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
@-webkit-keyframes spin-rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
50% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin-rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
50% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.semi-circle-spin {
position: relative;
width: 35px;
height: 35px;
overflow: hidden;
}
.semi-circle-spin>div {
position: absolute;
border-width: 0px;
border-radius: 100%;
-webkit-animation: spin-rotate 0.6s 0s infinite linear;
animation: spin-rotate 0.6s 0s infinite linear;
background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), color-stop(30%, #fff), to(#fff));
background-image: linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
width: 100%;
height: 100%;
}@font-face {
font-family: 'lg';
src: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/fonts/lightgallery/lg.woff) format("woff"), 
url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/fonts/lightgallery/lg.ttf) format("truetype");
font-weight: normal;
font-style: normal;
}
.lg-icon {
font-family: 'lg';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.lg-actions .lg-next,
.lg-actions .lg-prev {
background-color: rgba(0, 0, 0, 0.45);
border-radius: 2px;
color: #999;
cursor: pointer;
display: block;
font-size: 22px;
margin-top: -10px;
padding: 8px 10px 9px;
position: absolute;
top: 50%;
z-index: 1080;
border: none;
outline: none;
}
.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
pointer-events: none;
opacity: 0.5;
}
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
color: #FFF;
}
.lg-actions .lg-next {
right: 20px;
}
.lg-actions .lg-next:before {
content: "\e095";
}
.lg-actions .lg-prev {
left: 20px;
}
.lg-actions .lg-prev:after {
content: "\e094";
}
@-webkit-keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@keyframes lg-right-end {
0% {
left: 0;
}
50% {
left: -30px;
}
100% {
left: 0;
}
}
@-webkit-keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
@keyframes lg-left-end {
0% {
left: 0;
}
50% {
left: 30px;
}
100% {
left: 0;
}
}
.lg-outer.lg-right-end .lg-object {
-webkit-animation: lg-right-end 0.3s;
animation: lg-right-end 0.3s;
position: relative;
}
.lg-outer.lg-left-end .lg-object {
-webkit-animation: lg-left-end 0.3s;
animation: lg-left-end 0.3s;
position: relative;
}
.lg-toolbar {
z-index: 1082;
left: 0;
position: absolute;
top: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.45);
}
.lg-toolbar .lg-icon {
color: #999;
cursor: pointer;
float: right;
font-size: 24px;
height: 47px;
line-height: 27px;
padding: 10px 0;
text-align: center;
width: 50px;
text-decoration: none !important;
outline: medium none;
-webkit-transition: color 0.2s linear;
transition: color 0.2s linear;
}
.lg-toolbar .lg-icon:hover {
color: #FFF;
}
.lg-toolbar .lg-close:after {
content: "\e070";
}
.lg-toolbar .lg-download:after {
content: "\e0f2";
}
.lg-sub-html {
background-color: rgba(0, 0, 0, 0.45);
bottom: 0;
color: #EEE;
font-size: 16px;
left: 0;
padding: 10px 40px;
position: fixed;
right: 0;
text-align: center;
z-index: 1080;
}
.lg-sub-html h4 {
margin: 0;
font-size: 13px;
font-weight: bold;
}
.lg-sub-html p {
font-size: 12px;
margin: 5px 0 0;
}
#lg-counter {
color: #999;
display: inline-block;
font-size: 16px;
padding-left: 20px;
padding-top: 12px;
vertical-align: middle;
}
.lg-toolbar,
.lg-prev,
.lg-next {
opacity: 1;
-webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
-webkit-transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-hide-items .lg-prev {
opacity: 0;
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
.lg-hide-items .lg-next {
opacity: 0;
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
.lg-hide-items .lg-toolbar {
opacity: 0;
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
-webkit-transform: scale3d(0.5, 0.5, 0.5);
transform: scale3d(0.5, 0.5, 0.5);
opacity: 0;
-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
-webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
opacity: 1;
}
.lg-outer .lg-thumb-outer {
background-color: #0D0A0A;
bottom: 0;
position: absolute;
width: 100%;
z-index: 1080;
max-height: 350px;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
cursor: -webkit-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
cursor: move;
cursor: -webkit-grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
-webkit-transition-duration: 0s !important;
transition-duration: 0s !important;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
-webkit-transform: translate3d(0, 0%, 0);
transform: translate3d(0, 0%, 0);
}
.lg-outer .lg-thumb {
padding: 10px 0;
height: 100%;
margin-bottom: -5px;
}
.lg-outer .lg-thumb-item {
border-radius: 5px;
cursor: pointer;
float: left;
overflow: hidden;
height: 100%;
border: 2px solid #FFF;
border-radius: 4px;
margin-bottom: 5px;
}
@media (min-width: 1025px) {
.lg-outer .lg-thumb-item {
-webkit-transition: border-color 0.25s ease;
transition: border-color 0.25s ease;
}
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
border-color: #a90707;
}
.lg-outer .lg-thumb-item img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.lg-outer.lg-has-thumb .lg-item {
padding-bottom: 120px;
}
.lg-outer.lg-can-toggle .lg-item {
padding-bottom: 0;
}
.lg-outer.lg-pull-caption-up .lg-sub-html {
-webkit-transition: bottom 0.25s ease;
transition: bottom 0.25s ease;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
bottom: 100px;
}
.lg-outer .lg-toogle-thumb {
background-color: #0D0A0A;
border-radius: 2px 2px 0 0;
color: #999;
cursor: pointer;
font-size: 24px;
height: 39px;
line-height: 27px;
padding: 5px 0;
position: absolute;
right: 20px;
text-align: center;
top: -39px;
width: 50px;
}
.lg-outer .lg-toogle-thumb:after {
content: "\e1ff";
}
.lg-outer .lg-toogle-thumb:hover {
color: #FFF;
}
.lg-outer .lg-video-cont {
display: inline-block;
vertical-align: middle;
max-width: 1140px;
max-height: 100%;
width: 100%;
padding: 0 5px;
}
.lg-outer .lg-video {
width: 100%;
height: 0;
padding-bottom: 56.25%;
overflow: hidden;
position: relative;
}
.lg-outer .lg-video .lg-object {
display: inline-block;
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
.lg-outer .lg-video .lg-video-play {
width: 84px;
height: 59px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -42px;
margin-top: -30px;
z-index: 1080;
cursor: pointer;
}
.lg-outer .lg-has-iframe .lg-video {
-webkit-overflow-scrolling: touch;
overflow: auto;
}
.lg-outer .lg-has-vimeo .lg-video-play {
background: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/img/vimeo-play.png) no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
background: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/img/vimeo-play.png) no-repeat scroll 0 -58px transparent;
}
.lg-outer .lg-has-html5 .lg-video-play {
background: transparent url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/img/video-play.png) no-repeat scroll 0 0;
height: 64px;
margin-left: -32px;
margin-top: -32px;
width: 64px;
opacity: 0.8;
}
.lg-outer .lg-has-html5:hover .lg-video-play {
opacity: 1;
}
.lg-outer .lg-has-youtube .lg-video-play {
background: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/img/youtube-play.png) no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
background: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/img/youtube-play.png) no-repeat scroll 0 -60px transparent;
}
.lg-outer .lg-video-object {
width: 100% !important;
height: 100% !important;
position: absolute;
top: 0;
left: 0;
}
.lg-outer .lg-has-video .lg-video-object {
visibility: hidden;
}
.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
display: none;
}
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
visibility: visible;
}
.lg-progress-bar {
background-color: #333;
height: 5px;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1083;
opacity: 0;
-webkit-transition: opacity 0.08s ease 0s;
transition: opacity 0.08s ease 0s;
}
.lg-progress-bar .lg-progress {
background-color: #a90707;
height: 5px;
width: 0;
}
.lg-progress-bar.lg-start .lg-progress {
width: 100%;
}
.lg-show-autoplay .lg-progress-bar {
opacity: 1;
}
.lg-autoplay-button:after {
content: "\e01d";
}
.lg-show-autoplay .lg-autoplay-button:after {
content: "\e01a";
}
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
-webkit-transition-duration: 0s;
transition-duration: 0s;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
-webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
-webkit-transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
#lg-zoom-in:after {
content: "\e311";
}
#lg-actual-size {
font-size: 20px;
}
#lg-actual-size:after {
content: "\e033";
}
#lg-zoom-out {
opacity: 0.5;
pointer-events: none;
}
#lg-zoom-out:after {
content: "\e312";
}
.lg-zoomed #lg-zoom-out {
opacity: 1;
pointer-events: auto;
}
.lg-outer .lg-pager-outer {
bottom: 60px;
left: 0;
position: absolute;
right: 0;
text-align: center;
z-index: 1080;
height: 10px;
}
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
overflow: visible;
}
.lg-outer .lg-pager-cont {
cursor: pointer;
display: inline-block;
overflow: hidden;
position: relative;
vertical-align: top;
margin: 0 5px;
}
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
-webkit-box-shadow: 0 0 0 2px white inset;
box-shadow: 0 0 0 2px white inset;
}
.lg-outer .lg-pager-thumb-cont {
background-color: #fff;
color: #FFF;
bottom: 100%;
height: 83px;
left: 0;
margin-bottom: 20px;
margin-left: -60px;
opacity: 0;
padding: 5px;
position: absolute;
width: 120px;
border-radius: 3px;
-webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
.lg-outer .lg-pager-thumb-cont img {
width: 100%;
height: 100%;
}
.lg-outer .lg-pager {
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%;
-webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
display: block;
height: 12px;
-webkit-transition: box-shadow 0.3s ease 0s;
-webkit-transition: -webkit-box-shadow 0.3s ease 0s;
transition: -webkit-box-shadow 0.3s ease 0s;
transition: box-shadow 0.3s ease 0s;
transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
width: 12px;
}
.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
-webkit-box-shadow: 0 0 0 8px white inset;
box-shadow: 0 0 0 8px white inset;
}
.lg-outer .lg-caret {
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px dashed;
bottom: -10px;
display: inline-block;
height: 0;
left: 50%;
margin-left: -5px;
position: absolute;
vertical-align: middle;
width: 0;
}
.lg-fullscreen:after {
content: "\e20c";
}
.lg-fullscreen-on .lg-fullscreen:after {
content: "\e20d";
}
.lg-outer #lg-dropdown-overlay {
background-color: rgba(0, 0, 0, 0.25);
bottom: 0;
cursor: default;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1081;
opacity: 0;
visibility: hidden;
-webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}
.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translate3d(0, 0px, 0);
transform: translate3d(0, 0px, 0);
opacity: 1;
visibility: visible;
}
.lg-outer.lg-dropdown-active #lg-share {
color: #FFF;
}
.lg-outer .lg-dropdown {
background-color: #fff;
border-radius: 2px;
font-size: 14px;
list-style-type: none;
margin: 0;
padding: 10px 0;
position: absolute;
right: 0;
text-align: left;
top: 50px;
opacity: 0;
visibility: hidden;
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
-webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
-webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
}
.lg-outer .lg-dropdown:after {
content: "";
display: block;
height: 0;
width: 0;
position: absolute;
border: 8px solid transparent;
border-bottom-color: #FFF;
right: 16px;
top: -16px;
}
.lg-outer .lg-dropdown>li:last-child {
margin-bottom: 0px;
}
.lg-outer .lg-dropdown>li:hover a,
.lg-outer .lg-dropdown>li:hover .lg-icon {
color: #333;
}
.lg-outer .lg-dropdown a {
color: #333;
display: block;
white-space: pre;
padding: 4px 12px;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
}
.lg-outer .lg-dropdown a:hover {
background-color: rgba(0, 0, 0, 0.07);
}
.lg-outer .lg-dropdown .lg-dropdown-text {
display: inline-block;
line-height: 1;
margin-top: -3px;
vertical-align: middle;
}
.lg-outer .lg-dropdown .lg-icon {
color: #333;
display: inline-block;
float: none;
font-size: 20px;
height: auto;
line-height: 1;
margin-right: 8px;
padding: 0;
vertical-align: middle;
width: auto;
}
.lg-outer #lg-share {
position: relative;
}
.lg-outer #lg-share:after {
content: "\e80d";
}
.lg-outer #lg-share-facebook .lg-icon {
color: #3b5998;
}
.lg-outer #lg-share-facebook .lg-icon:after {
content: "\e901";
}
.lg-outer #lg-share-twitter .lg-icon {
color: #00aced;
}
.lg-outer #lg-share-twitter .lg-icon:after {
content: "\e904";
}
.lg-outer #lg-share-googleplus .lg-icon {
color: #dd4b39;
}
.lg-outer #lg-share-googleplus .lg-icon:after {
content: "\e902";
}
.lg-outer #lg-share-pinterest .lg-icon {
color: #cb2027;
}
.lg-outer #lg-share-pinterest .lg-icon:after {
content: "\e903";
}
.lg-group:after {
content: "";
display: table;
clear: both;
}
.lg-outer {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1050;
text-align: left;
opacity: 0;
-webkit-transition: opacity 0.15s ease 0s;
transition: opacity 0.15s ease 0s;
}
.lg-outer * {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.lg-outer.lg-visible {
opacity: 1;
}
.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
-webkit-transition-duration: inherit !important;
transition-duration: inherit !important;
-webkit-transition-timing-function: inherit !important;
transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
-webkit-transition-duration: 0s !important;
transition-duration: 0s !important;
opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
cursor: -webkit-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
cursor: move;
cursor: -webkit-grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: grabbing;
}
.lg-outer .lg {
height: 100%;
width: 100%;
position: relative;
overflow: hidden;
margin-left: auto;
margin-right: auto;
max-width: 100%;
max-height: 100%;
}
.lg-outer .lg-inner {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
white-space: nowrap;
}
.lg-outer .lg-item {
background: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/img/loading.gif) no-repeat scroll center center transparent;
display: none !important;
}
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
display: inline-block !important;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
display: inline-block;
text-align: center;
position: absolute;
width: 100%;
height: 100%;
}
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
content: "";
display: inline-block;
height: 50%;
width: 1px;
margin-right: -1px;
}
.lg-outer .lg-img-wrap {
position: absolute;
padding: 0 5px;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.lg-outer .lg-item.lg-complete {
background-image: none;
}
.lg-outer .lg-item.lg-current {
z-index: 1060;
}
.lg-outer .lg-image {
display: inline-block;
vertical-align: middle;
max-width: 100%;
max-height: 100%;
width: auto !important;
height: auto !important;
}
.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
opacity: 0;
-webkit-transition: opacity 0.15s ease 0s;
transition: opacity 0.15s ease 0s;
}
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
opacity: 1;
}
.lg-outer .lg-empty-html {
display: none;
}
.lg-outer.lg-hide-download #lg-download {
display: none;
}
.lg-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1040;
background-color: #000;
opacity: 0;
-webkit-transition: opacity 0.15s ease 0s;
transition: opacity 0.15s ease 0s;
}
.lg-backdrop.in {
opacity: 1;
}
.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
-webkit-transition: none 0s ease 0s !important;
transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.lg-css3.lg-use-left .lg-item {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
-webkit-transition: opacity 0.1s ease 0s;
transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
-webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-css3.lg-slide.lg-use-left .lg-item {
opacity: 0;
position: absolute;
left: 0;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
left: -100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
left: 100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
left: 0;
opacity: 1;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
-webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}.slick-slider {
position: relative;
display: block;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
top: 0;
left: 0;
display: block;
}
.slick-track:before,
.slick-track:after {
display: table;
content: '';
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide {
float: right;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}

.mb_YTPlayer:focus {
outline: 0
}
.YTPWrapper {
display: block;
-webkit-transform: translateZ(0)translate3d(0, 0, 0);
transform: translateZ(0)translate3d(0, 0, 0);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-perspective: 1000;
perspective: 1000;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
.mb_YTPlayer .loading {
position: absolute;
top: 10px;
right: 10px;
font-size: 12px;
color: #fff;
background: rgba(0, 0, 0, .51);
text-align: center;
padding: 2px 4px;
border-radius: 5px;
font-family: "Droid Sans", sans-serif;
-webkit-animation: fade .1s infinite alternate;
animation: fade .1s infinite alternate
}
@-webkit-keyframes fade {
0% {
opacity: .5
}
100% {
opacity: 1
}
}
@keyframes fade {
0% {
opacity: .5
}
100% {
opacity: 1
}
}
.YTPFullscreen {
display: block!important;
position: fixed!important;
width: 100%!important;
height: 100%!important;
top: 0!important;
left: 0!important;
margin: 0!important;
border: none!important;
opacity: 1!important;
background-color: #000
}
.mbYTP_wrapper iframe {
max-width: 4000px!important
}
.inline_YTPlayer {
margin-bottom: 20px;
vertical-align: top;
position: relative;
left: 0;
overflow: hidden;
border-radius: 4px;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .7);
box-shadow: 0 0 5px rgba(0, 0, 0, .7);
background: rgba(0, 0, 0, .5)
}
.inline_YTPlayer img {
border: none!important;
margin: 0!important;
padding: 0!important;
-webkit-transform: none!important;
transform: none!important
}
.mb_YTPBar,
.mb_YTPBar .buttonBar {
-webkit-box-sizing: border-box;
box-sizing: border-box;
left: 0;
padding: 5px;
width: 100%
}
.mb_YTPBar .ytpicon {
font-size: 20px;
font-family: ytpregular
}
.mb_YTPBar .mb_YTPUrl.ytpicon {
font-size: 30px
}
.mb_YTPBar {
-webkit-transition: opacity .5s;
transition: opacity .5s;
display: block;
height: 10px;
background: #333;
position: fixed;
bottom: 0;
text-align: left;
z-index: 1000;
font: 14px/16px sans-serif;
opacity: .1
}
.mb_YTPBar.visible,
.mb_YTPBar:hover {
opacity: 1
}
.mb_YTPBar .buttonBar {
-webkit-transition: all .5s;
transition: all .5s;
background: 0 0;
font: 12px/14px Calibri;
position: absolute;
top: -30px;
height: 40px
}
.mb_YTPBar:hover .buttonBar {
background: rgba(0, 0, 0, .4)
}
.mb_YTPBar span {
display: inline-block;
font: 16px/20px Calibri, sans-serif;
position: relative;
width: 30px;
height: 25px;
vertical-align: middle
}
.mb_YTPBar span.mb_YTPTime {
width: 130px
}
.mb_YTPBar span.mb_OnlyYT,
.mb_YTPBar span.mb_YTPUrl {
position: absolute;
width: auto;
display: block;
top: 6px;
right: 10px;
cursor: pointer
}
.mb_YTPBar span.mb_YTPUrl img {
width: 60px
}
.mb_YTPBar span.mb_OnlyYT {
left: 300px;
right: auto
}
.mb_YTPBar span.mb_OnlyYT img {
width: 25px
}
.mb_YTPBar .mb_YTPMuteUnmute,
.mb_YTPBar .mb_YTPPlaypause,
.mb_YTPlayer .mb_YTPBar .mb_YTPPlaypause img {
cursor: pointer
}
.mb_YTPBar .mb_YTPProgress {
height: 10px;
width: 100%;
background: #222;
bottom: 0;
left: 0
}
.mb_YTPBar .mb_YTPLoaded {
height: 10px;
width: 0;
background: #444;
left: 0
}
.mb_YTPBar .mb_YTPseekbar {
height: 10px;
width: 0;
background: #bb110e;
bottom: 0;
left: 0;
-webkit-box-shadow: rgba(82, 82, 82, .47)1px 1px 3px;
box-shadow: rgba(82, 82, 82, .47)1px 1px 3px
}
.mb_YTPBar .YTPOverlay {
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-webkit-transform-style: "flat";
-webkit-box-sizing: border-box;
box-sizing: border-box
}
.YTPOverlay.raster {
background: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/images/raster.png)
}
.YTPOverlay.raster.retina {
background: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/images/raster@2x.png)
}
.YTPOverlay.raster-dot {
background: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/images/raster_dot.png)
}
.YTPOverlay.raster-dot.retina {
background: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/images/raster_dot@2x.png)
}
.mb_YTPBar .simpleSlider {
position: relative;
width: 100px;
height: 10px;
border: 1px solid #fff;
overflow: hidden;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin-right: 10px;
cursor: pointer!important;
border-radius: 3px
}
.mb_YTPBar.compact .simpleSlider {
width: 40px
}
.mb_YTPBar .simpleSlider.muted {
opacity: .3
}
.mb_YTPBar .level {
position: absolute;
left: 0;
bottom: 0;
background-color: #fff;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
.mb_YTPBar .level.horizontal {
height: 100%;
width: 0
}
.mb_YTPBar .level.vertical {
height: auto;
width: 100%
}.flipster {
display: block;
margin: 0 auto;
width: 100%;
position: relative;
overflow-x: hidden;
overflow-y: visible;
}
.flip-items,
.flip-item {
display: block;
margin: 0 auto;
padding: 0;
list-style-type: none;
}
.flip-items {
width: 100%;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.flip-item {
position: absolute;
opacity: 0.99; }
.flip-past,
.flip-future,
.flip-next,
.flip-prev {
cursor: pointer;
}
.flip-item img {
display: block;
width: 100%;
}  .flipster-coverflow .flip-items {
-webkit-transition: all 350ms ease-in-out;
transition: all 350ms ease-in-out;
position: relative;
padding-top: 2%;
padding-bottom: 5%;
}
.flipster-coverflow .flip-item {
display: block;
-webkit-transition: all 175ms ease-in-out;
transition: all 175ms ease-in-out;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-perspective: 800px;
perspective: 800px;
position: absolute;
width: 30%;
}
.flipster-coverflow .flip-content {
-webkit-transition: all 350ms ease-in-out;
transition: all 350ms ease-in-out;
-webkit-box-reflect: below 0 -webkit-gradient(linear, left bottom, left top, color-stop(0.05, rgba(255, 255, 255, 0.12)), color-stop(0.2, transparent));
}
.flipster-coverflow .flip-past .flip-content {
-webkit-transform: rotateY(55deg) scale(0.75);
transform: rotateY(55deg) scale(0.75);
}
.flipster-coverflow .flip-future .flip-content {
-webkit-transform: rotateY(-55deg) scale(0.75);
transform: rotateY(-55deg) scale(0.75);
}
.flipster-coverflow.no-rotate .flip-past .flip-content {
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
.flipster-coverflow.no-rotate .flip-future .flip-content {
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
.flipster-coverflow .flip-current .flip-content {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
.flipster-coverflow .flip-hidden {
visibility: hidden;
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
}  .flipster-carousel .flip-items {
-webkit-perspective: 2000px;
perspective: 2000px;
}
.flipster-carousel .flip-item {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: all 350ms ease-out;
transition: all 350ms ease-out;
}
.no-csstransforms .flipster-carousel .flip-item {
-webkit-transition: none;
transition: none;
}
.flipster-carousel .flip-items .flip-content {
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.flipster-carousel .flip-past {
-webkit-transform: translateX(-80%) translateZ(0) rotateY(80deg) scale(0.65);
transform: translateX(-80%) translateZ(0) rotateY(80deg) scale(0.65);
}
.flipster-carousel.no-rotate .flip-past {
-webkit-transform: translateX(-80%) translateZ(0) scale(0.65);
transform: translateX(-80%) translateZ(0) scale(0.65);
}
.no-csstransforms3d .flipster-carousel .flip-past {
-webkit-transform: translateX(-56%) scale(0.5);
transform: translateX(-56%) scale(0.5);
}
.no-csstransforms .flipster-carousel .flip-past {
left: -20%;
top: 40%;
width: 50%;
height: 50%;
}
.flipster-carousel .flip-future {
-webkit-transform: translateX(80%) translateZ(0) rotateY(-80deg) scale(0.65);
transform: translateX(80%) translateZ(0) rotateY(-80deg) scale(0.65);
}
.flipster-carousel.no-rotate .flip-future {
-webkit-transform: translateX(80%) translateZ(0) scale(0.65);
transform: translateX(80%) translateZ(0) scale(0.65);
}
.no-csstransforms3d .flipster-carousel .flip-future {
-webkit-transform: translateX(56%) scale(0.5);
transform: translateX(56%) scale(0.5);
}
.no-csstransforms .flipster-carousel .flip-future {
left: 88%;
top: 40%;
width: 50%;
height: 50%;
}
.flipster-carousel .flip-prev {
-webkit-transform: translateX(-60%) translateZ(0) rotateY(80deg) scale(0.8);
transform: translateX(-60%) translateZ(0) rotateY(80deg) scale(0.8);
}
.flipster-carousel.no-rotate .flip-prev {
-webkit-transform: translateX(-60%) translateZ(0) scale(0.8);
transform: translateX(-60%) translateZ(0) scale(0.8);
}
.no-csstransforms3d .flipster-carousel .flip-prev {
-webkit-transform: translateX(-24%) scale(0.75);
transform: translateX(-24%) scale(0.75);
}
.no-csstransforms .flipster-carousel .flip-prev {
left: -9%;
top: 20%;
width: 75%;
height: 75%;
}
.flipster-carousel .flip-next {
-webkit-transform: translateX(60%) translateZ(0) rotateY(-80deg) scale(0.8);
transform: translateX(60%) translateZ(0) rotateY(-80deg) scale(0.8);
}
.flipster-carousel.no-rotate .flip-next {
-webkit-transform: translateX(60%) translateZ(0) scale(0.8);
transform: translateX(60%) translateZ(0) scale(0.8);
}
.no-csstransforms3d .flipster-carousel .flip-next {
-webkit-transform: translateX(24%) scale(0.75);
transform: translateX(24%) scale(0.75);
}
.no-csstransforms .flipster-carousel .flip-next {
left: 39%;
top: 20%;
width: 75%;
height: 75%;
}
.flipster-carousel .flip-past,
.flipster-carousel .flip-future {
-webkit-opacity: 0.6;
-moz-opacity: 0.6;
opacity: 0.6;
z-index: 1;
-webkit-transition-delay: 87.5ms;
transition-delay: 87.5ms;
}
.flipster-carousel .flip-prev,
.flipster-carousel .flip-next {
-webkit-opacity: 0.8;
-moz-opacity: 0.8;
opacity: 0.8;
z-index: 2;
-webkit-transition-delay: 58.333333333333336ms;
transition-delay: 58.333333333333336ms;
}
.flipster-carousel .flip-current {
z-index: 999;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
-webkit-transition-delay: 58.333333333333336ms;
transition-delay: 58.333333333333336ms;
}
.flipster-carousel .flip-hidden {
visibility: hidden;
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
-webkit-transform: rotateY(0deg) translateX(0) scale(0.5);
transform: rotateY(0deg) translateX(0) scale(0.5);
-webkit-transition-delay: 116.66666666666667ms;
transition-delay: 116.66666666666667ms;
} .no-transition {
-webkit-transition-duration: 0ms !important;
transition-duration: 0ms !important;
} .flipster-carousel .flip-prev {
-webkit-transform: translateX(-60%) translateZ(0) rotateY(0deg) scale(0.75);
transform: translateX(-60%) translateZ(0) rotateY(0deg) scale(0.75);
opacity: 1;
}
.flipster-carousel .flip-next {
-webkit-transform: translateX(60%) translateZ(0) rotateY(-0deg) scale(0.75);
transform: translateX(60%) translateZ(0) rotateY(-0deg) scale(0.75);
opacity: 1;
}
.flipster-carousel .flip-past {
-webkit-transform: translateX(-100%) translateZ(0) rotateY(0deg) scale(0.65);
transform: translateX(-100%) translateZ(0) rotateY(0deg) scale(0.65);
}
.flipster-carousel .flip-future {
-webkit-transform: translateX(100%) translateZ(0) rotateY(0deg) scale(0.65);
transform: translateX(100%) translateZ(0) rotateY(0deg) scale(0.65);
}.mCustomScrollbar {
-ms-touch-action: pinch-zoom;
touch-action: pinch-zoom; }
.mCustomScrollbar.mCS_no_scrollbar,
.mCustomScrollbar.mCS_touch_action {
-ms-touch-action: auto;
touch-action: auto;
}
.mCustomScrollBox { position: relative;
overflow: hidden;
height: 100%;
max-width: 100%;
outline: none;
direction: ltr;
}
.mCSB_container { overflow: hidden;
width: auto;
height: auto;
} .mCSB_inside>.mCSB_container {
margin-right: 30px;
}
.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
margin-right: 0;
} .mCS-dir-rtl>.mCSB_inside>.mCSB_container { margin-right: 0;
margin-left: 30px;
}
.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
margin-left: 0;
} .mCSB_scrollTools { position: absolute;
width: 16px;
height: auto;
left: auto;
top: 0;
right: 0;
bottom: 0;
}
.mCSB_outside+.mCSB_scrollTools {
right: -26px;
} .mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,
.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools { right: auto;
left: 0;
}
.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
left: -26px;
} .mCSB_scrollTools .mCSB_draggerContainer { position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: auto;
}
.mCSB_scrollTools a+.mCSB_draggerContainer {
margin: 20px 0;
}
.mCSB_scrollTools .mCSB_draggerRail {
width: 2px;
height: 100%;
margin: 0 auto;
border-radius: 16px;
}
.mCSB_scrollTools .mCSB_dragger { cursor: pointer;
width: 100%;
height: 30px; z-index: 1;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { position: relative;
width: 4px;
height: 100%;
margin: 0 auto;
border-radius: 16px;
text-align: center;
}
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
width: 12px; }
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
width: 8px; }
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
display: block;
position: absolute;
height: 20px;
width: 100%;
overflow: hidden;
margin: 0 auto;
cursor: pointer;
}
.mCSB_scrollTools .mCSB_buttonDown {
bottom: 0;
} .mCSB_horizontal.mCSB_inside>.mCSB_container {
margin-right: 0;
margin-bottom: 30px;
}
.mCSB_horizontal.mCSB_outside>.mCSB_container {
min-height: 100%;
}
.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
margin-bottom: 0;
} .mCSB_scrollTools.mCSB_scrollTools_horizontal {
width: auto;
height: 16px;
top: auto;
right: 0;
bottom: 0;
left: 0;
}
.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
bottom: -26px;
} .mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer {
margin: 0 20px;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 2px;
margin: 7px 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
width: 30px; height: 100%;
left: 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
width: 100%;
height: 4px;
margin: 6px auto;
}
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
height: 12px; margin: 2px auto;
}
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
height: 8px; margin: 4px 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
display: block;
position: absolute;
width: 20px;
height: 100%;
overflow: hidden;
margin: 0 auto;
cursor: pointer;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
left: 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
right: 0;
} .mCSB_container_wrapper {
position: absolute;
height: auto;
width: auto;
overflow: hidden;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin-right: 30px;
margin-bottom: 30px;
}
.mCSB_container_wrapper>.mCSB_container {
padding-right: 30px;
padding-bottom: 30px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical {
bottom: 20px;
}
.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
right: 20px;
} .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical {
bottom: 0;
} .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
right: 0;
} .mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
left: 20px;
} .mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
left: 0;
}
.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper { margin-right: 0;
margin-left: 30px;
}
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container {
padding-right: 0;
}
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container {
padding-bottom: 0;
}
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
margin-right: 0; margin-left: 0;
} .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
margin-bottom: 0;
} .mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
}   .mCSB_scrollTools {
opacity: 0.75;
filter: "alpha(opacity=75)";
-ms-filter: "alpha(opacity=75)";
}
.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools {
opacity: 0;
filter: "alpha(opacity=0)";
-ms-filter: "alpha(opacity=0)";
}
.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover>.mCSB_scrollTools,
.mCustomScrollBox:hover~.mCSB_scrollTools,
.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools {
opacity: 1;
filter: "alpha(opacity=100)";
-ms-filter: "alpha(opacity=100)";
}
.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.4);
filter: "alpha(opacity=40)";
-ms-filter: "alpha(opacity=40)";
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.75);
filter: "alpha(opacity=75)";
-ms-filter: "alpha(opacity=75)";
}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85);
filter: "alpha(opacity=85)";
-ms-filter: "alpha(opacity=85)";
}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.9);
filter: "alpha(opacity=90)";
-ms-filter: "alpha(opacity=90)";
}
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
background-image: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/mCSB_buttons.png); background-repeat: no-repeat;
opacity: 0.4;
filter: "alpha(opacity=40)";
-ms-filter: "alpha(opacity=40)";
}
.mCSB_scrollTools .mCSB_buttonUp {
background-position: 0 0; }
.mCSB_scrollTools .mCSB_buttonDown {
background-position: 0 -20px; }
.mCSB_scrollTools .mCSB_buttonLeft {
background-position: 0 -40px; }
.mCSB_scrollTools .mCSB_buttonRight {
background-position: 0 -56px; }
.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
opacity: 0.75;
filter: "alpha(opacity=75)";
-ms-filter: "alpha(opacity=75)";
}
.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
opacity: 0.9;
filter: "alpha(opacity=90)";
-ms-filter: "alpha(opacity=90)";
} .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.15);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -80px 0;
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -80px -20px;
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -80px -40px;
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -80px -56px;
}  .mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
width: 4px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 1px;
}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 4px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.75);
border-radius: 1px;
}
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
width: 100%;
height: 4px;
margin: 6px auto;
}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85);
}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.9);
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px 0;
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -20px;
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -40px;
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -56px;
} .mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1);
border-radius: 1px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
border-radius: 1px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px 0;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -20px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -40px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -56px;
}  .mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
width: 4px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 2px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 6px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.75);
border-radius: 2px;
}
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 4px;
margin: 6px 0;
}
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
width: 100%;
height: 6px;
margin: 5px auto;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85);
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.9);
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
background-position: -16px 0;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
background-position: -16px -20px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -20px -40px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
background-position: -20px -56px;
} .mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1);
border-radius: 2px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
border-radius: 2px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
background-position: -96px 0;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
background-position: -96px -20px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -100px -40px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
background-position: -100px -56px;
}  .mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.1);
}
.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 2px;
}
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
}
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
width: 100%;
height: 2px;
margin: 7px auto;
} .mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.15);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
background-position: -80px 0;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
background-position: -80px -20px;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -80px -40px;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
background-position: -80px -56px;
}  .mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.15);
}
.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
height: 14px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 14px;
margin: 0 1px;
}
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
width: 14px;
}
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
height: 14px;
margin: 1px 0;
}
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
width: 16px; height: 16px;
margin: -1px 0;
}
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
width: 4px; }
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
height: 16px; width: 16px;
margin: 0 -1px;
}
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
height: 4px; margin: 6px 0;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
background-position: 0 -72px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
background-position: 0 -92px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
background-position: 0 -112px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
background-position: 0 -128px;
} .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.15);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -80px -72px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -80px -92px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -80px -112px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -80px -128px;
} .mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
width: 4px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
background-color: transparent;
background-position: center;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==);
background-repeat: repeat-y;
opacity: 0.3;
filter: "alpha(opacity=30)";
-ms-filter: "alpha(opacity=30)";
}
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
height: 4px;
margin: 6px 0;
background-repeat: repeat-x;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
background-position: -16px -72px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
background-position: -16px -92px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -20px -112px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
background-position: -20px -128px;
} .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=);
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -96px -72px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -96px -92px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -100px -112px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -100px -128px;
}  .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-repeat: repeat-y;
background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
background-repeat: repeat-x;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
} .mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
height: 70px;
}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
width: 70px;
}
.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
opacity: 1;
filter: "alpha(opacity=30)";
-ms-filter: "alpha(opacity=30)";
}
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
border-radius: 16px;
}
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
width: 8px;
background-color: #000;
background-color: rgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #555;
}
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 8px;
}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 8px;
margin: 4px 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
width: 100%;
height: 8px;
margin: 4px auto;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px -72px;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -92px;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -112px;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -128px;
} .mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1);
-webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px -72px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -92px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -112px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -128px;
}  .mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
opacity: 1;
filter: "alpha(opacity=30)";
-ms-filter: "alpha(opacity=30)";
}
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
border-radius: 7px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
border-radius: 5px;
}
.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
right: 1px;
}
.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
-webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}
.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
bottom: 1px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
-webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
width: 12px;
margin: 2px;
position: absolute;
height: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #555;
}
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
height: 12px;
width: auto;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
background-color: #000;
background-color: rgba(0, 0, 0, 0.05);
-webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
background-color: transparent;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px -72px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -92px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -112px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -128px;
} .mCS-3d-thick-dark.mCSB_scrollTools {
-webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
-webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #777;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
background-color: #fff;
background-color: rgba(0, 0, 0, 0.05);
-webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: transparent;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px -72px;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -92px;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -112px;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -128px;
}  .mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical {
right: 0;
margin: 12px 0;
}
.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
bottom: 0;
margin: 0 12px;
} .mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical {
left: 0;
right: auto;
}
.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: transparent;
}
.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
height: 50px;
}
.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
width: 50px;
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.2);
filter: "alpha(opacity=20)";
-ms-filter: "alpha(opacity=20)";
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.5);
filter: "alpha(opacity=50)";
-ms-filter: "alpha(opacity=50)";
} .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.2);
filter: "alpha(opacity=20)";
-ms-filter: "alpha(opacity=20)";
}
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.5);
filter: "alpha(opacity=50)";
-ms-filter: "alpha(opacity=50)";
}  .mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
width: 6px;
background-color: #000;
background-color: rgba(0, 0, 0, 0.2);
}
.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 6px;
}
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 6px;
margin: 5px 0;
}
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
width: 12px;
}
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
height: 12px;
margin: 2px 0;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px -72px;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -92px;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -112px;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -128px;
} .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px -72px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -92px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -112px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -128px;
}  .mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
width: 12px;
background-color: #000;
background-color: rgba(0, 0, 0, 0.2);
}
.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 6px;
margin: 3px 5px;
position: absolute;
height: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
height: 6px;
margin: 5px 3px;
position: absolute;
width: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 12px;
margin: 2px 0;
}
.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px -72px;
}
.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -92px;
}
.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -112px;
}
.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -128px;
} .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85);
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9);
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1);
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px -72px;
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -92px;
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -112px;
}
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -128px;
} .mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: transparent;
border-width: 1px;
border-style: solid;
border-color: #fff;
border-color: rgba(255, 255, 255, 0.2);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
border-color: #000;
border-color: rgba(0, 0, 0, 0.2);
} .mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.6);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.6);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.75);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.9);
}.justified-gallery{width:100%;position:relative;overflow:hidden}.justified-gallery>a,.justified-gallery>div{position:absolute;display:inline-block;overflow:hidden;filter:"alpha(opacity=10)";opacity:.1}.justified-gallery>a>img,.justified-gallery>div>img,.justified-gallery>a>a>img,.justified-gallery>div>a>img{position:absolute;top:50%;left:50%;margin:0;padding:0;border:0;filter:"alpha(opacity=0)";opacity:0}.justified-gallery>a>.caption,.justified-gallery>div>.caption{display:none;position:absolute;bottom:0;padding:5px;background-color:#000;left:0;right:0;margin:0;color:#fff;font-size:12px;font-weight:300;font-family:sans-serif}.justified-gallery>a>.caption.caption-visible,.justified-gallery>div>.caption.caption-visible{display:initial;filter:"alpha(opacity=70)";opacity:.7;-webkit-transition:opacity 500ms ease-in;-moz-transition:opacity 500ms ease-in;-o-transition:opacity 500ms ease-in;transition:opacity 500ms ease-in}.justified-gallery>.entry-visible{filter:"alpha(opacity=100)";opacity:1;background:0 0}.justified-gallery>.entry-visible>img,.justified-gallery>.entry-visible>a>img{filter:"alpha(opacity=100)";opacity:1;-webkit-transition:opacity 500ms ease-in;-moz-transition:opacity 500ms ease-in;-o-transition:opacity 500ms ease-in;transition:opacity 500ms ease-in}.justified-gallery>.jg-filtered{display:none}.justified-gallery>.spinner{position:absolute;bottom:0;margin-left:-24px;padding:10px 0;left:50%;filter:"alpha(opacity=100)";opacity:1;overflow:initial}.justified-gallery>.spinner>span{display:inline-block;filter:"alpha(opacity=0)";opacity:0;width:8px;height:8px;margin:0 4px;background-color:#000;border-radius:6px}@font-face {
font-family: "IcoFont";
src: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/fonts/icofont/icofont.woff2) format("woff2"), 
url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/fonts/icofont/icofont.woff) format("woff");
font-weight: normal;
font-style: normal;
}
[class^="icofont-"],
[class*=" icofont-"] {
font-family: 'IcoFont' !important;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
font-size: inherit;
text-rendering: auto;
line-height: inherit;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icofont-addons:before {
content: "\eea0";
}
.icofont-address-book:before {
content: "\eea1";
}
.icofont-adjust:before {
content: "\eea2";
}
.icofont-alarm:before {
content: "\eea3";
}
.icofont-anchor:before {
content: "\eea4";
}
.icofont-archive:before {
content: "\eea5";
}
.icofont-at:before {
content: "\eea6";
}
.icofont-attachment:before {
content: "\eea7";
}
.icofont-audio:before {
content: "\eea8";
}
.icofont-automation:before {
content: "\eea9";
}
.icofont-badge:before {
content: "\eeaa";
}
.icofont-bag-alt:before {
content: "\eeab";
}
.icofont-bag:before {
content: "\eeac";
}
.icofont-ban:before {
content: "\eead";
}
.icofont-bar-code:before {
content: "\eeae";
}
.icofont-bars:before {
content: "\eeaf";
}
.icofont-basket:before {
content: "\eeb0";
}
.icofont-battery-empty:before {
content: "\eeb1";
}
.icofont-battery-full:before {
content: "\eeb2";
}
.icofont-battery-half:before {
content: "\eeb3";
}
.icofont-battery-low:before {
content: "\eeb4";
}
.icofont-beaker:before {
content: "\eeb5";
}
.icofont-beard:before {
content: "\eeb6";
}
.icofont-bed:before {
content: "\eeb7";
}
.icofont-bell:before {
content: "\eeb8";
}
.icofont-beverage:before {
content: "\eeb9";
}
.icofont-bill:before {
content: "\eeba";
}
.icofont-bin:before {
content: "\eebb";
}
.icofont-binary:before {
content: "\eebc";
}
.icofont-binoculars:before {
content: "\eebd";
}
.icofont-bluetooth:before {
content: "\eebe";
}
.icofont-bomb:before {
content: "\eebf";
}
.icofont-book-mark:before {
content: "\eec0";
}
.icofont-box:before {
content: "\eec1";
}
.icofont-briefcase:before {
content: "\eec2";
}
.icofont-broken:before {
content: "\eec3";
}
.icofont-bucket:before {
content: "\eec4";
}
.icofont-bucket1:before {
content: "\eec5";
}
.icofont-bucket2:before {
content: "\eec6";
}
.icofont-bug:before {
content: "\eec7";
}
.icofont-building:before {
content: "\eec8";
}
.icofont-bulb-alt:before {
content: "\eec9";
}
.icofont-bullet:before {
content: "\eeca";
}
.icofont-bullhorn:before {
content: "\eecb";
}
.icofont-bullseye:before {
content: "\eecc";
}
.icofont-calendar:before {
content: "\eecd";
}
.icofont-camera-alt:before {
content: "\eece";
}
.icofont-camera:before {
content: "\eecf";
}
.icofont-card:before {
content: "\eed0";
}
.icofont-cart-alt:before {
content: "\eed1";
}
.icofont-cart:before {
content: "\eed2";
}
.icofont-cc:before {
content: "\eed3";
}
.icofont-charging:before {
content: "\eed4";
}
.icofont-chat:before {
content: "\eed5";
}
.icofont-check-alt:before {
content: "\eed6";
}
.icofont-check-circled:before {
content: "\eed7";
}
.icofont-check:before {
content: "\eed8";
}
.icofont-checked:before {
content: "\eed9";
}
.icofont-children-care:before {
content: "\eeda";
}
.icofont-clip:before {
content: "\eedb";
}
.icofont-clock-time:before {
content: "\eedc";
}
.icofont-close-circled:before {
content: "\eedd";
}
.icofont-close-line-circled:before {
content: "\eede";
}
.icofont-close-line-squared-alt:before {
content: "\eedf";
}
.icofont-close-line-squared:before {
content: "\eee0";
}
.icofont-close-line:before {
content: "\eee1";
}
.icofont-close-squared-alt:before {
content: "\eee2";
}
.icofont-close-squared:before {
content: "\eee3";
}
.icofont-close:before {
content: "\eee4";
}
.icofont-cloud-download:before {
content: "\eee5";
}
.icofont-cloud-refresh:before {
content: "\eee6";
}
.icofont-cloud-upload:before {
content: "\eee7";
}
.icofont-cloud:before {
content: "\eee8";
}
.icofont-code-not-allowed:before {
content: "\eee9";
}
.icofont-code:before {
content: "\eeea";
}
.icofont-comment:before {
content: "\eeeb";
}
.icofont-compass-alt:before {
content: "\eeec";
}
.icofont-compass:before {
content: "\eeed";
}
.icofont-computer:before {
content: "\eeee";
}
.icofont-connection:before {
content: "\eeef";
}
.icofont-console:before {
content: "\eef0";
}
.icofont-contacts:before {
content: "\eef1";
}
.icofont-contrast:before {
content: "\eef2";
}
.icofont-copyright:before {
content: "\eef3";
}
.icofont-credit-card:before {
content: "\eef4";
}
.icofont-crop:before {
content: "\eef5";
}
.icofont-crown:before {
content: "\eef6";
}
.icofont-cube:before {
content: "\eef7";
}
.icofont-cubes:before {
content: "\eef8";
}
.icofont-dashboard-web:before {
content: "\eef9";
}
.icofont-dashboard:before {
content: "\eefa";
}
.icofont-data:before {
content: "\eefb";
}
.icofont-database-add:before {
content: "\eefc";
}
.icofont-database-locked:before {
content: "\eefd";
}
.icofont-database-remove:before {
content: "\eefe";
}
.icofont-database:before {
content: "\eeff";
}
.icofont-delete:before {
content: "\ef00";
}
.icofont-diamond:before {
content: "\ef01";
}
.icofont-dice-multiple:before {
content: "\ef02";
}
.icofont-dice:before {
content: "\ef03";
}
.icofont-disc:before {
content: "\ef04";
}
.icofont-diskette:before {
content: "\ef05";
}
.icofont-document-folder:before {
content: "\ef06";
}
.icofont-download-alt:before {
content: "\ef07";
}
.icofont-download:before {
content: "\ef08";
}
.icofont-downloaded:before {
content: "\ef09";
}
.icofont-drag:before {
content: "\ef0a";
}
.icofont-drag1:before {
content: "\ef0b";
}
.icofont-drag2:before {
content: "\ef0c";
}
.icofont-drag3:before {
content: "\ef0d";
}
.icofont-earth:before {
content: "\ef0e";
}
.icofont-ebook:before {
content: "\ef0f";
}
.icofont-edit:before {
content: "\ef10";
}
.icofont-eject:before {
content: "\ef11";
}
.icofont-email:before {
content: "\ef12";
}
.icofont-envelope-open:before {
content: "\ef13";
}
.icofont-envelope:before {
content: "\ef14";
}
.icofont-eraser:before {
content: "\ef15";
}
.icofont-error:before {
content: "\ef16";
}
.icofont-excavator:before {
content: "\ef17";
}
.icofont-exchange:before {
content: "\ef18";
}
.icofont-exclamation-circle:before {
content: "\ef19";
}
.icofont-exclamation-square:before {
content: "\ef1a";
}
.icofont-exclamation-tringle:before {
content: "\ef1b";
}
.icofont-exclamation:before {
content: "\ef1c";
}
.icofont-exit:before {
content: "\ef1d";
}
.icofont-expand:before {
content: "\ef1e";
}
.icofont-external-link:before {
content: "\ef1f";
}
.icofont-external:before {
content: "\ef20";
}
.icofont-eye-alt:before {
content: "\ef21";
}
.icofont-eye-blocked:before {
content: "\ef22";
}
.icofont-eye-dropper:before {
content: "\ef23";
}
.icofont-eye:before {
content: "\ef24";
}
.icofont-favourite:before {
content: "\ef25";
}
.icofont-fax:before {
content: "\ef26";
}
.icofont-file-fill:before {
content: "\ef27";
}
.icofont-film:before {
content: "\ef28";
}
.icofont-filter:before {
content: "\ef29";
}
.icofont-fire-alt:before {
content: "\ef2a";
}
.icofont-fire-burn:before {
content: "\ef2b";
}
.icofont-fire:before {
content: "\ef2c";
}
.icofont-flag-alt-1:before {
content: "\ef2d";
}
.icofont-flag-alt-2:before {
content: "\ef2e";
}
.icofont-flag:before {
content: "\ef2f";
}
.icofont-flame-torch:before {
content: "\ef30";
}
.icofont-flash-light:before {
content: "\ef31";
}
.icofont-flash:before {
content: "\ef32";
}
.icofont-flask:before {
content: "\ef33";
}
.icofont-focus:before {
content: "\ef34";
}
.icofont-folder-open:before {
content: "\ef35";
}
.icofont-folder:before {
content: "\ef36";
}
.icofont-foot-print:before {
content: "\ef37";
}
.icofont-garbage:before {
content: "\ef38";
}
.icofont-gear-alt:before {
content: "\ef39";
}
.icofont-gear:before {
content: "\ef3a";
}
.icofont-gears:before {
content: "\ef3b";
}
.icofont-gift:before {
content: "\ef3c";
}
.icofont-glass:before {
content: "\ef3d";
}
.icofont-globe:before {
content: "\ef3e";
}
.icofont-graffiti:before {
content: "\ef3f";
}
.icofont-grocery:before {
content: "\ef40";
}
.icofont-hand:before {
content: "\ef41";
}
.icofont-hanger:before {
content: "\ef42";
}
.icofont-hard-disk:before {
content: "\ef43";
}
.icofont-heart-alt:before {
content: "\ef44";
}
.icofont-heart:before {
content: "\ef45";
}
.icofont-history:before {
content: "\ef46";
}
.icofont-home:before {
content: "\ef47";
}
.icofont-horn:before {
content: "\ef48";
}
.icofont-hour-glass:before {
content: "\ef49";
}
.icofont-id:before {
content: "\ef4a";
}
.icofont-image:before {
content: "\ef4b";
}
.icofont-inbox:before {
content: "\ef4c";
}
.icofont-infinite:before {
content: "\ef4d";
}
.icofont-info-circle:before {
content: "\ef4e";
}
.icofont-info-square:before {
content: "\ef4f";
}
.icofont-info:before {
content: "\ef50";
}
.icofont-institution:before {
content: "\ef51";
}
.icofont-interface:before {
content: "\ef52";
}
.icofont-invisible:before {
content: "\ef53";
}
.icofont-jacket:before {
content: "\ef54";
}
.icofont-jar:before {
content: "\ef55";
}
.icofont-jewlery:before {
content: "\ef56";
}
.icofont-karate:before {
content: "\ef57";
}
.icofont-key-hole:before {
content: "\ef58";
}
.icofont-key:before {
content: "\ef59";
}
.icofont-label:before {
content: "\ef5a";
}
.icofont-lamp:before {
content: "\ef5b";
}
.icofont-layers:before {
content: "\ef5c";
}
.icofont-layout:before {
content: "\ef5d";
}
.icofont-leaf:before {
content: "\ef5e";
}
.icofont-leaflet:before {
content: "\ef5f";
}
.icofont-learn:before {
content: "\ef60";
}
.icofont-lego:before {
content: "\ef61";
}
.icofont-lens:before {
content: "\ef62";
}
.icofont-letter:before {
content: "\ef63";
}
.icofont-letterbox:before {
content: "\ef64";
}
.icofont-library:before {
content: "\ef65";
}
.icofont-license:before {
content: "\ef66";
}
.icofont-life-bouy:before {
content: "\ef67";
}
.icofont-life-buoy:before {
content: "\ef68";
}
.icofont-life-jacket:before {
content: "\ef69";
}
.icofont-life-ring:before {
content: "\ef6a";
}
.icofont-light-bulb:before {
content: "\ef6b";
}
.icofont-lighter:before {
content: "\ef6c";
}
.icofont-lightning-ray:before {
content: "\ef6d";
}
.icofont-like:before {
content: "\ef6e";
}
.icofont-line-height:before {
content: "\ef6f";
}
.icofont-link-alt:before {
content: "\ef70";
}
.icofont-link:before {
content: "\ef71";
}
.icofont-list:before {
content: "\ef72";
}
.icofont-listening:before {
content: "\ef73";
}
.icofont-listine-dots:before {
content: "\ef74";
}
.icofont-listing-box:before {
content: "\ef75";
}
.icofont-listing-number:before {
content: "\ef76";
}
.icofont-live-support:before {
content: "\ef77";
}
.icofont-location-arrow:before {
content: "\ef78";
}
.icofont-location-pin:before {
content: "\ef79";
}
.icofont-lock:before {
content: "\ef7a";
}
.icofont-login:before {
content: "\ef7b";
}
.icofont-logout:before {
content: "\ef7c";
}
.icofont-lollipop:before {
content: "\ef7d";
}
.icofont-long-drive:before {
content: "\ef7e";
}
.icofont-look:before {
content: "\ef7f";
}
.icofont-loop:before {
content: "\ef80";
}
.icofont-luggage:before {
content: "\ef81";
}
.icofont-lunch:before {
content: "\ef82";
}
.icofont-lungs:before {
content: "\ef83";
}
.icofont-magic-alt:before {
content: "\ef84";
}
.icofont-magic:before {
content: "\ef85";
}
.icofont-magnet:before {
content: "\ef86";
}
.icofont-mail-box:before {
content: "\ef87";
}
.icofont-mail:before {
content: "\ef88";
}
.icofont-male:before {
content: "\ef89";
}
.icofont-map-pins:before {
content: "\ef8a";
}
.icofont-map:before {
content: "\ef8b";
}
.icofont-maximize:before {
content: "\ef8c";
}
.icofont-measure:before {
content: "\ef8d";
}
.icofont-medicine:before {
content: "\ef8e";
}
.icofont-mega-phone:before {
content: "\ef8f";
}
.icofont-megaphone-alt:before {
content: "\ef90";
}
.icofont-megaphone:before {
content: "\ef91";
}
.icofont-memorial:before {
content: "\ef92";
}
.icofont-memory-card:before {
content: "\ef93";
}
.icofont-mic-mute:before {
content: "\ef94";
}
.icofont-mic:before {
content: "\ef95";
}
.icofont-military:before {
content: "\ef96";
}
.icofont-mill:before {
content: "\ef97";
}
.icofont-minus-circle:before {
content: "\ef98";
}
.icofont-minus-square:before {
content: "\ef99";
}
.icofont-minus:before {
content: "\ef9a";
}
.icofont-mobile-phone:before {
content: "\ef9b";
}
.icofont-molecule:before {
content: "\ef9c";
}
.icofont-money:before {
content: "\ef9d";
}
.icofont-moon:before {
content: "\ef9e";
}
.icofont-mop:before {
content: "\ef9f";
}
.icofont-muffin:before {
content: "\efa0";
}
.icofont-mustache:before {
content: "\efa1";
}
.icofont-navigation-menu:before {
content: "\efa2";
}
.icofont-navigation:before {
content: "\efa3";
}
.icofont-network-tower:before {
content: "\efa4";
}
.icofont-network:before {
content: "\efa5";
}
.icofont-news:before {
content: "\efa6";
}
.icofont-newspaper:before {
content: "\efa7";
}
.icofont-no-smoking:before {
content: "\efa8";
}
.icofont-not-allowed:before {
content: "\efa9";
}
.icofont-notebook:before {
content: "\efaa";
}
.icofont-notepad:before {
content: "\efab";
}
.icofont-notification:before {
content: "\efac";
}
.icofont-numbered:before {
content: "\efad";
}
.icofont-opposite:before {
content: "\efae";
}
.icofont-optic:before {
content: "\efaf";
}
.icofont-options:before {
content: "\efb0";
}
.icofont-package:before {
content: "\efb1";
}
.icofont-page:before {
content: "\efb2";
}
.icofont-paint:before {
content: "\efb3";
}
.icofont-paper-plane:before {
content: "\efb4";
}
.icofont-paperclip:before {
content: "\efb5";
}
.icofont-papers:before {
content: "\efb6";
}
.icofont-pay:before {
content: "\efb7";
}
.icofont-penguin-linux:before {
content: "\efb8";
}
.icofont-pestle:before {
content: "\efb9";
}
.icofont-phone-circle:before {
content: "\efba";
}
.icofont-phone:before {
content: "\efbb";
}
.icofont-picture:before {
content: "\efbc";
}
.icofont-pine:before {
content: "\efbd";
}
.icofont-pixels:before {
content: "\efbe";
}
.icofont-plugin:before {
content: "\efbf";
}
.icofont-plus-circle:before {
content: "\efc0";
}
.icofont-plus-square:before {
content: "\efc1";
}
.icofont-plus:before {
content: "\efc2";
}
.icofont-polygonal:before {
content: "\efc3";
}
.icofont-power:before {
content: "\efc4";
}
.icofont-price:before {
content: "\efc5";
}
.icofont-print:before {
content: "\efc6";
}
.icofont-puzzle:before {
content: "\efc7";
}
.icofont-qr-code:before {
content: "\efc8";
}
.icofont-queen:before {
content: "\efc9";
}
.icofont-question-circle:before {
content: "\efca";
}
.icofont-question-square:before {
content: "\efcb";
}
.icofont-question:before {
content: "\efcc";
}
.icofont-quote-left:before {
content: "\efcd";
}
.icofont-quote-right:before {
content: "\efce";
}
.icofont-random:before {
content: "\efcf";
}
.icofont-recycle:before {
content: "\efd0";
}
.icofont-refresh:before {
content: "\efd1";
}
.icofont-repair:before {
content: "\efd2";
}
.icofont-reply-all:before {
content: "\efd3";
}
.icofont-reply:before {
content: "\efd4";
}
.icofont-resize:before {
content: "\efd5";
}
.icofont-responsive:before {
content: "\efd6";
}
.icofont-retweet:before {
content: "\efd7";
}
.icofont-road:before {
content: "\efd8";
}
.icofont-robot:before {
content: "\efd9";
}
.icofont-royal:before {
content: "\efda";
}
.icofont-rss-feed:before {
content: "\efdb";
}
.icofont-safety:before {
content: "\efdc";
}
.icofont-sale-discount:before {
content: "\efdd";
}
.icofont-sass:before {
content: "\f034";
}
.icofont-satellite:before {
content: "\efde";
}
.icofont-send-mail:before {
content: "\efdf";
}
.icofont-server:before {
content: "\efe0";
}
.icofont-settings-alt:before {
content: "\efe1";
}
.icofont-settings:before {
content: "\efe2";
}
.icofont-share-alt:before {
content: "\efe3";
}
.icofont-share-boxed:before {
content: "\efe4";
}
.icofont-share:before {
content: "\efe5";
}
.icofont-shield:before {
content: "\efe6";
}
.icofont-shopping-cart:before {
content: "\efe7";
}
.icofont-sign-in:before {
content: "\efe8";
}
.icofont-sign-out:before {
content: "\efe9";
}
.icofont-signal:before {
content: "\efea";
}
.icofont-site-map:before {
content: "\efeb";
}
.icofont-smart-phone:before {
content: "\efec";
}
.icofont-soccer:before {
content: "\efed";
}
.icofont-sort-alt:before {
content: "\efee";
}
.icofont-sort:before {
content: "\efef";
}
.icofont-space:before {
content: "\eff0";
}
.icofont-spanner:before {
content: "\eff1";
}
.icofont-speech-comments:before {
content: "\eff2";
}
.icofont-speed-meter:before {
content: "\eff3";
}
.icofont-spinner-alt-1:before {
content: "\eff4";
}
.icofont-spinner-alt-2:before {
content: "\eff5";
}
.icofont-spinner-alt-3:before {
content: "\eff6";
}
.icofont-spinner-alt-4:before {
content: "\eff7";
}
.icofont-spinner-alt-5:before {
content: "\eff8";
}
.icofont-spinner-alt-6:before {
content: "\eff9";
}
.icofont-spinner:before {
content: "\effa";
}
.icofont-spreadsheet:before {
content: "\effb";
}
.icofont-square:before {
content: "\effc";
}
.icofont-ssl-security:before {
content: "\effd";
}
.icofont-star-alt-1:before {
content: "\effe";
}
.icofont-star-alt-2:before {
content: "\efff";
}
.icofont-star:before {
content: "\f000";
}
.icofont-street-view:before {
content: "\f001";
}
.icofont-support-faq:before {
content: "\f002";
}
.icofont-tack-pin:before {
content: "\f003";
}
.icofont-tag:before {
content: "\f004";
}
.icofont-tags:before {
content: "\f005";
}
.icofont-tasks-alt:before {
content: "\f006";
}
.icofont-tasks:before {
content: "\f007";
}
.icofont-telephone:before {
content: "\f008";
}
.icofont-telescope:before {
content: "\f009";
}
.icofont-terminal:before {
content: "\f00a";
}
.icofont-thumbs-down:before {
content: "\f00b";
}
.icofont-thumbs-up:before {
content: "\f00c";
}
.icofont-tick-boxed:before {
content: "\f00d";
}
.icofont-tick-mark:before {
content: "\f00e";
}
.icofont-ticket:before {
content: "\f00f";
}
.icofont-tie:before {
content: "\f010";
}
.icofont-toggle-off:before {
content: "\f011";
}
.icofont-toggle-on:before {
content: "\f012";
}
.icofont-tools-alt-2:before {
content: "\f013";
}
.icofont-tools:before {
content: "\f014";
}
.icofont-touch:before {
content: "\f015";
}
.icofont-traffic-light:before {
content: "\f016";
}
.icofont-transparent:before {
content: "\f017";
}
.icofont-tree:before {
content: "\f018";
}
.icofont-unique-idea:before {
content: "\f019";
}
.icofont-unlock:before {
content: "\f01a";
}
.icofont-unlocked:before {
content: "\f01b";
}
.icofont-upload-alt:before {
content: "\f01c";
}
.icofont-upload:before {
content: "\f01d";
}
.icofont-usb-drive:before {
content: "\f01e";
}
.icofont-usb:before {
content: "\f01f";
}
.icofont-vector-path:before {
content: "\f020";
}
.icofont-verification-check:before {
content: "\f021";
}
.icofont-visual-studio:before {
content: "\f03c";
}
.icofont-vscode:before {
content: "\f03b";
}
.icofont-vuejs:before {
content: "\f037";
}
.icofont-wall-clock:before {
content: "\f022";
}
.icofont-wall:before {
content: "\f023";
}
.icofont-wallet:before {
content: "\f024";
}
.icofont-warning-alt:before {
content: "\f025";
}
.icofont-warning:before {
content: "\f026";
}
.icofont-water-drop:before {
content: "\f027";
}
.icofont-web:before {
content: "\f028";
}
.icofont-wheelchair:before {
content: "\f029";
}
.icofont-wifi-alt:before {
content: "\f02a";
}
.icofont-wifi:before {
content: "\f02b";
}
.icofont-world:before {
content: "\f02c";
}
.icofont-zigzag:before {
content: "\f02d";
}
.icofont-zipped:before {
content: "\f02e";
}
.icofont-apple:before {
content: "\eb3b";
}
.icofont-arabian-coffee:before {
content: "\eb3c";
}
.icofont-artichoke:before {
content: "\eb3d";
}
.icofont-asparagus:before {
content: "\eb3e";
}
.icofont-avocado:before {
content: "\eb3f";
}
.icofont-baby-food:before {
content: "\eb40";
}
.icofont-banana:before {
content: "\eb41";
}
.icofont-bbq:before {
content: "\eb42";
}
.icofont-beans:before {
content: "\eb43";
}
.icofont-beer:before {
content: "\eb44";
}
.icofont-bell-pepper-capsicum:before {
content: "\eb45";
}
.icofont-birthday-cake:before {
content: "\eb46";
}
.icofont-bread:before {
content: "\eb47";
}
.icofont-broccoli:before {
content: "\eb48";
}
.icofont-burger:before {
content: "\eb49";
}
.icofont-cabbage:before {
content: "\eb4a";
}
.icofont-carrot:before {
content: "\eb4b";
}
.icofont-cauli-flower:before {
content: "\eb4c";
}
.icofont-cheese:before {
content: "\eb4d";
}
.icofont-chef:before {
content: "\eb4e";
}
.icofont-cherry:before {
content: "\eb4f";
}
.icofont-chicken-fry:before {
content: "\eb50";
}
.icofont-chicken:before {
content: "\eb51";
}
.icofont-cocktail:before {
content: "\eb52";
}
.icofont-coconut-water:before {
content: "\eb53";
}
.icofont-coconut:before {
content: "\eb54";
}
.icofont-coffee-alt:before {
content: "\eb55";
}
.icofont-coffee-cup:before {
content: "\eb56";
}
.icofont-coffee-mug:before {
content: "\eb57";
}
.icofont-coffee-pot:before {
content: "\eb58";
}
.icofont-cola:before {
content: "\eb59";
}
.icofont-corn:before {
content: "\eb5a";
}
.icofont-croissant:before {
content: "\eb5b";
}
.icofont-crop-plant:before {
content: "\eb5c";
}
.icofont-cucumber:before {
content: "\eb5d";
}
.icofont-culinary:before {
content: "\eb5e";
}
.icofont-cup-cake:before {
content: "\eb5f";
}
.icofont-dining-table:before {
content: "\eb60";
}
.icofont-donut:before {
content: "\eb61";
}
.icofont-egg-plant:before {
content: "\eb62";
}
.icofont-egg-poached:before {
content: "\eb63";
}
.icofont-farmer-alt:before {
content: "\eb64";
}
.icofont-farmer:before {
content: "\eb65";
}
.icofont-fast-food:before {
content: "\eb66";
}
.icofont-food-basket:before {
content: "\eb67";
}
.icofont-food-cart:before {
content: "\eb68";
}
.icofont-fork-and-knife:before {
content: "\eb69";
}
.icofont-french-fries:before {
content: "\eb6a";
}
.icofont-fruits:before {
content: "\eb6b";
}
.icofont-grapes:before {
content: "\eb6c";
}
.icofont-honey:before {
content: "\eb6d";
}
.icofont-hot-dog:before {
content: "\eb6e";
}
.icofont-ice-cream-alt:before {
content: "\eb6f";
}
.icofont-ice-cream:before {
content: "\eb70";
}
.icofont-juice:before {
content: "\eb71";
}
.icofont-ketchup:before {
content: "\eb72";
}
.icofont-kiwi:before {
content: "\eb73";
}
.icofont-layered-cake:before {
content: "\eb74";
}
.icofont-lemon-alt:before {
content: "\eb75";
}
.icofont-lemon:before {
content: "\eb76";
}
.icofont-lobster:before {
content: "\eb77";
}
.icofont-mango:before {
content: "\eb78";
}
.icofont-milk:before {
content: "\eb79";
}
.icofont-mushroom:before {
content: "\eb7a";
}
.icofont-noodles:before {
content: "\eb7b";
}
.icofont-onion:before {
content: "\eb7c";
}
.icofont-orange:before {
content: "\eb7d";
}
.icofont-pear:before {
content: "\eb7e";
}
.icofont-peas:before {
content: "\eb7f";
}
.icofont-pepper:before {
content: "\eb80";
}
.icofont-pie-alt:before {
content: "\eb81";
}
.icofont-pie:before {
content: "\eb82";
}
.icofont-pineapple:before {
content: "\eb83";
}
.icofont-pizza-slice:before {
content: "\eb84";
}
.icofont-pizza:before {
content: "\eb85";
}
.icofont-plant:before {
content: "\eb86";
}
.icofont-popcorn:before {
content: "\eb87";
}
.icofont-potato:before {
content: "\eb88";
}
.icofont-pumpkin:before {
content: "\eb89";
}
.icofont-raddish:before {
content: "\eb8a";
}
.icofont-restaurant-menu:before {
content: "\eb8b";
}
.icofont-restaurant:before {
content: "\eb8c";
}
.icofont-salt-and-pepper:before {
content: "\eb8d";
}
.icofont-sandwich:before {
content: "\eb8e";
}
.icofont-sausage:before {
content: "\eb8f";
}
.icofont-soft-drinks:before {
content: "\eb90";
}
.icofont-soup-bowl:before {
content: "\eb91";
}
.icofont-spoon-and-fork:before {
content: "\eb92";
}
.icofont-steak:before {
content: "\eb93";
}
.icofont-strawberry:before {
content: "\eb94";
}
.icofont-sub-sandwich:before {
content: "\eb95";
}
.icofont-sushi:before {
content: "\eb96";
}
.icofont-taco:before {
content: "\eb97";
}
.icofont-tea-pot:before {
content: "\eb98";
}
.icofont-tea:before {
content: "\eb99";
}
.icofont-tomato:before {
content: "\eb9a";
}
.icofont-watermelon:before {
content: "\eb9b";
}
.icofont-wheat:before {
content: "\eb9c";
}
.icofont-baby-backpack:before {
content: "\eb9d";
}
.icofont-baby-cloth:before {
content: "\eb9e";
}
.icofont-baby-milk-bottle:before {
content: "\eb9f";
}
.icofont-baby-trolley:before {
content: "\eba0";
}
.icofont-baby:before {
content: "\eba1";
}
.icofont-candy:before {
content: "\eba2";
}
.icofont-holding-hands:before {
content: "\eba3";
}
.icofont-infant-nipple:before {
content: "\eba4";
}
.icofont-kids-scooter:before {
content: "\eba5";
}
.icofont-safety-pin:before {
content: "\eba6";
}
.icofont-teddy-bear:before {
content: "\eba7";
}
.icofont-toy-ball:before {
content: "\eba8";
}
.icofont-toy-cat:before {
content: "\eba9";
}
.icofont-toy-duck:before {
content: "\ebaa";
}
.icofont-toy-elephant:before {
content: "\ebab";
}
.icofont-toy-hand:before {
content: "\ebac";
}
.icofont-toy-horse:before {
content: "\ebad";
}
.icofont-toy-lattu:before {
content: "\ebae";
}
.icofont-toy-train:before {
content: "\ebaf";
}
.icofont-abacus-alt:before {
content: "\ebd7";
}
.icofont-abacus:before {
content: "\ebd8";
}
.icofont-angle-180:before {
content: "\ebd9";
}
.icofont-angle-45:before {
content: "\ebda";
}
.icofont-angle-90:before {
content: "\ebdb";
}
.icofont-angle:before {
content: "\ebdc";
}
.icofont-calculator-alt-1:before {
content: "\ebdd";
}
.icofont-calculator-alt-2:before {
content: "\ebde";
}
.icofont-calculator:before {
content: "\ebdf";
}
.icofont-circle-ruler-alt:before {
content: "\ebe0";
}
.icofont-circle-ruler:before {
content: "\ebe1";
}
.icofont-compass-alt-1:before {
content: "\ebe2";
}
.icofont-compass-alt-2:before {
content: "\ebe3";
}
.icofont-compass-alt-3:before {
content: "\ebe4";
}
.icofont-compass-alt-4:before {
content: "\ebe5";
}
.icofont-golden-ratio:before {
content: "\ebe6";
}
.icofont-marker-alt-1:before {
content: "\ebe7";
}
.icofont-marker-alt-2:before {
content: "\ebe8";
}
.icofont-marker-alt-3:before {
content: "\ebe9";
}
.icofont-marker:before {
content: "\ebea";
}
.icofont-math:before {
content: "\ebeb";
}
.icofont-mathematical-alt-1:before {
content: "\ebec";
}
.icofont-mathematical-alt-2:before {
content: "\ebed";
}
.icofont-mathematical:before {
content: "\ebee";
}
.icofont-pen-alt-1:before {
content: "\ebef";
}
.icofont-pen-alt-2:before {
content: "\ebf0";
}
.icofont-pen-alt-3:before {
content: "\ebf1";
}
.icofont-pen-holder-alt-1:before {
content: "\ebf2";
}
.icofont-pen-holder:before {
content: "\ebf3";
}
.icofont-pen:before {
content: "\ebf4";
}
.icofont-pencil-alt-1:before {
content: "\ebf5";
}
.icofont-pencil-alt-2:before {
content: "\ebf6";
}
.icofont-pencil-alt-3:before {
content: "\ebf7";
}
.icofont-pencil-alt-4:before {
content: "\ebf8";
}
.icofont-pencil:before {
content: "\ebf9";
}
.icofont-ruler-alt-1:before {
content: "\ebfa";
}
.icofont-ruler-alt-2:before {
content: "\ebfb";
}
.icofont-ruler-compass-alt:before {
content: "\ebfc";
}
.icofont-ruler-compass:before {
content: "\ebfd";
}
.icofont-ruler-pencil-alt-1:before {
content: "\ebfe";
}
.icofont-ruler-pencil-alt-2:before {
content: "\ebff";
}
.icofont-ruler-pencil:before {
content: "\ec00";
}
.icofont-ruler:before {
content: "\ec01";
}
.icofont-rulers-alt:before {
content: "\ec02";
}
.icofont-rulers:before {
content: "\ec03";
}
.icofont-square-root:before {
content: "\ec04";
}
.icofont-ui-calculator:before {
content: "\ec05";
}
.icofont-aids:before {
content: "\ec06";
}
.icofont-ambulance-crescent:before {
content: "\ec07";
}
.icofont-ambulance-cross:before {
content: "\ec08";
}
.icofont-ambulance:before {
content: "\ec09";
}
.icofont-autism:before {
content: "\ec0a";
}
.icofont-bandage:before {
content: "\ec0b";
}
.icofont-blind:before {
content: "\ec0c";
}
.icofont-blood-drop:before {
content: "\ec0d";
}
.icofont-blood-test:before {
content: "\ec0e";
}
.icofont-blood:before {
content: "\ec0f";
}
.icofont-brain-alt:before {
content: "\ec10";
}
.icofont-brain:before {
content: "\ec11";
}
.icofont-capsule:before {
content: "\ec12";
}
.icofont-crutch:before {
content: "\ec13";
}
.icofont-disabled:before {
content: "\ec14";
}
.icofont-dna-alt-1:before {
content: "\ec15";
}
.icofont-dna-alt-2:before {
content: "\ec16";
}
.icofont-dna:before {
content: "\ec17";
}
.icofont-doctor-alt:before {
content: "\ec18";
}
.icofont-doctor:before {
content: "\ec19";
}
.icofont-drug-pack:before {
content: "\ec1a";
}
.icofont-drug:before {
content: "\ec1b";
}
.icofont-first-aid-alt:before {
content: "\ec1c";
}
.icofont-first-aid:before {
content: "\ec1d";
}
.icofont-heart-beat-alt:before {
content: "\ec1e";
}
.icofont-heart-beat:before {
content: "\ec1f";
}
.icofont-heartbeat:before {
content: "\ec20";
}
.icofont-herbal:before {
content: "\ec21";
}
.icofont-hospital:before {
content: "\ec22";
}
.icofont-icu:before {
content: "\ec23";
}
.icofont-injection-syringe:before {
content: "\ec24";
}
.icofont-laboratory:before {
content: "\ec25";
}
.icofont-medical-sign-alt:before {
content: "\ec26";
}
.icofont-medical-sign:before {
content: "\ec27";
}
.icofont-nurse-alt:before {
content: "\ec28";
}
.icofont-nurse:before {
content: "\ec29";
}
.icofont-nursing-home:before {
content: "\ec2a";
}
.icofont-operation-theater:before {
content: "\ec2b";
}
.icofont-paralysis-disability:before {
content: "\ec2c";
}
.icofont-patient-bed:before {
content: "\ec2d";
}
.icofont-patient-file:before {
content: "\ec2e";
}
.icofont-pills:before {
content: "\ec2f";
}
.icofont-prescription:before {
content: "\ec30";
}
.icofont-pulse:before {
content: "\ec31";
}
.icofont-stethoscope-alt:before {
content: "\ec32";
}
.icofont-stethoscope:before {
content: "\ec33";
}
.icofont-stretcher:before {
content: "\ec34";
}
.icofont-surgeon-alt:before {
content: "\ec35";
}
.icofont-surgeon:before {
content: "\ec36";
}
.icofont-tablets:before {
content: "\ec37";
}
.icofont-test-bottle:before {
content: "\ec38";
}
.icofont-test-tube:before {
content: "\ec39";
}
.icofont-thermometer-alt:before {
content: "\ec3a";
}
.icofont-thermometer:before {
content: "\ec3b";
}
.icofont-tooth:before {
content: "\ec3c";
}
.icofont-xray:before {
content: "\ec3d";
}
.icofont-ui-add:before {
content: "\ec3e";
}
.icofont-ui-alarm:before {
content: "\ec3f";
}
.icofont-ui-battery:before {
content: "\ec40";
}
.icofont-ui-block:before {
content: "\ec41";
}
.icofont-ui-bluetooth:before {
content: "\ec42";
}
.icofont-ui-brightness:before {
content: "\ec43";
}
.icofont-ui-browser:before {
content: "\ec44";
}
.icofont-ui-calendar:before {
content: "\ec45";
}
.icofont-ui-call:before {
content: "\ec46";
}
.icofont-ui-camera:before {
content: "\ec47";
}
.icofont-ui-cart:before {
content: "\ec48";
}
.icofont-ui-cell-phone:before {
content: "\ec49";
}
.icofont-ui-chat:before {
content: "\ec4a";
}
.icofont-ui-check:before {
content: "\ec4b";
}
.icofont-ui-clip-board:before {
content: "\ec4c";
}
.icofont-ui-clip:before {
content: "\ec4d";
}
.icofont-ui-clock:before {
content: "\ec4e";
}
.icofont-ui-close:before {
content: "\ec4f";
}
.icofont-ui-contact-list:before {
content: "\ec50";
}
.icofont-ui-copy:before {
content: "\ec51";
}
.icofont-ui-cut:before {
content: "\ec52";
}
.icofont-ui-delete:before {
content: "\ec53";
}
.icofont-ui-dial-phone:before {
content: "\ec54";
}
.icofont-ui-edit:before {
content: "\ec55";
}
.icofont-ui-email:before {
content: "\ec56";
}
.icofont-ui-file:before {
content: "\ec57";
}
.icofont-ui-fire-wall:before {
content: "\ec58";
}
.icofont-ui-flash-light:before {
content: "\ec59";
}
.icofont-ui-flight:before {
content: "\ec5a";
}
.icofont-ui-folder:before {
content: "\ec5b";
}
.icofont-ui-game:before {
content: "\ec5c";
}
.icofont-ui-handicapped:before {
content: "\ec5d";
}
.icofont-ui-home:before {
content: "\ec5e";
}
.icofont-ui-image:before {
content: "\ec5f";
}
.icofont-ui-laoding:before {
content: "\ec60";
}
.icofont-ui-lock:before {
content: "\ec61";
}
.icofont-ui-love-add:before {
content: "\ec62";
}
.icofont-ui-love-broken:before {
content: "\ec63";
}
.icofont-ui-love-remove:before {
content: "\ec64";
}
.icofont-ui-love:before {
content: "\ec65";
}
.icofont-ui-map:before {
content: "\ec66";
}
.icofont-ui-message:before {
content: "\ec67";
}
.icofont-ui-messaging:before {
content: "\ec68";
}
.icofont-ui-movie:before {
content: "\ec69";
}
.icofont-ui-music-player:before {
content: "\ec6a";
}
.icofont-ui-music:before {
content: "\ec6b";
}
.icofont-ui-mute:before {
content: "\ec6c";
}
.icofont-ui-network:before {
content: "\ec6d";
}
.icofont-ui-next:before {
content: "\ec6e";
}
.icofont-ui-note:before {
content: "\ec6f";
}
.icofont-ui-office:before {
content: "\ec70";
}
.icofont-ui-password:before {
content: "\ec71";
}
.icofont-ui-pause:before {
content: "\ec72";
}
.icofont-ui-play-stop:before {
content: "\ec73";
}
.icofont-ui-play:before {
content: "\ec74";
}
.icofont-ui-pointer:before {
content: "\ec75";
}
.icofont-ui-power:before {
content: "\ec76";
}
.icofont-ui-press:before {
content: "\ec77";
}
.icofont-ui-previous:before {
content: "\ec78";
}
.icofont-ui-rate-add:before {
content: "\ec79";
}
.icofont-ui-rate-blank:before {
content: "\ec7a";
}
.icofont-ui-rate-remove:before {
content: "\ec7b";
}
.icofont-ui-rating:before {
content: "\ec7c";
}
.icofont-ui-record:before {
content: "\ec7d";
}
.icofont-ui-remove:before {
content: "\ec7e";
}
.icofont-ui-reply:before {
content: "\ec7f";
}
.icofont-ui-rotation:before {
content: "\ec80";
}
.icofont-ui-rss:before {
content: "\ec81";
}
.icofont-ui-search:before {
content: "\ec82";
}
.icofont-ui-settings:before {
content: "\ec83";
}
.icofont-ui-social-link:before {
content: "\ec84";
}
.icofont-ui-tag:before {
content: "\ec85";
}
.icofont-ui-text-chat:before {
content: "\ec86";
}
.icofont-ui-text-loading:before {
content: "\ec87";
}
.icofont-ui-theme:before {
content: "\ec88";
}
.icofont-ui-timer:before {
content: "\ec89";
}
.icofont-ui-touch-phone:before {
content: "\ec8a";
}
.icofont-ui-travel:before {
content: "\ec8b";
}
.icofont-ui-unlock:before {
content: "\ec8c";
}
.icofont-ui-user-group:before {
content: "\ec8d";
}
.icofont-ui-user:before {
content: "\ec8e";
}
.icofont-ui-v-card:before {
content: "\ec8f";
}
.icofont-ui-video-chat:before {
content: "\ec90";
}
.icofont-ui-video-message:before {
content: "\ec91";
}
.icofont-ui-video-play:before {
content: "\ec92";
}
.icofont-ui-video:before {
content: "\ec93";
}
.icofont-ui-volume:before {
content: "\ec94";
}
.icofont-ui-weather:before {
content: "\ec95";
}
.icofont-ui-wifi:before {
content: "\ec96";
}
.icofont-ui-zoom-in:before {
content: "\ec97";
}
.icofont-ui-zoom-out:before {
content: "\ec98";
}
.icofont-cassette-player:before {
content: "\ec99";
}
.icofont-cassette:before {
content: "\ec9a";
}
.icofont-forward:before {
content: "\ec9b";
}
.icofont-guiter:before {
content: "\ec9c";
}
.icofont-movie:before {
content: "\ec9d";
}
.icofont-multimedia:before {
content: "\ec9e";
}
.icofont-music-alt:before {
content: "\ec9f";
}
.icofont-music-disk:before {
content: "\eca0";
}
.icofont-music-note:before {
content: "\eca1";
}
.icofont-music-notes:before {
content: "\eca2";
}
.icofont-music:before {
content: "\eca3";
}
.icofont-mute-volume:before {
content: "\eca4";
}
.icofont-pause:before {
content: "\eca5";
}
.icofont-play-alt-1:before {
content: "\eca6";
}
.icofont-play-alt-2:before {
content: "\eca7";
}
.icofont-play-alt-3:before {
content: "\eca8";
}
.icofont-play-pause:before {
content: "\eca9";
}
.icofont-play:before {
content: "\ecaa";
}
.icofont-record:before {
content: "\ecab";
}
.icofont-retro-music-disk:before {
content: "\ecac";
}
.icofont-rewind:before {
content: "\ecad";
}
.icofont-song-notes:before {
content: "\ecae";
}
.icofont-sound-wave-alt:before {
content: "\ecaf";
}
.icofont-sound-wave:before {
content: "\ecb0";
}
.icofont-stop:before {
content: "\ecb1";
}
.icofont-video-alt:before {
content: "\ecb2";
}
.icofont-video-cam:before {
content: "\ecb3";
}
.icofont-video-clapper:before {
content: "\ecb4";
}
.icofont-video:before {
content: "\ecb5";
}
.icofont-volume-bar:before {
content: "\ecb6";
}
.icofont-volume-down:before {
content: "\ecb7";
}
.icofont-volume-mute:before {
content: "\ecb8";
}
.icofont-volume-off:before {
content: "\ecb9";
}
.icofont-volume-up:before {
content: "\ecba";
}
.icofont-youtube-play:before {
content: "\ecbb";
}
.icofont-2checkout-alt:before {
content: "\ecbc";
}
.icofont-2checkout:before {
content: "\ecbd";
}
.icofont-amazon-alt:before {
content: "\ecbe";
}
.icofont-amazon:before {
content: "\ecbf";
}
.icofont-american-express-alt:before {
content: "\ecc0";
}
.icofont-american-express:before {
content: "\ecc1";
}
.icofont-apple-pay-alt:before {
content: "\ecc2";
}
.icofont-apple-pay:before {
content: "\ecc3";
}
.icofont-bank-transfer-alt:before {
content: "\ecc4";
}
.icofont-bank-transfer:before {
content: "\ecc5";
}
.icofont-braintree-alt:before {
content: "\ecc6";
}
.icofont-braintree:before {
content: "\ecc7";
}
.icofont-cash-on-delivery-alt:before {
content: "\ecc8";
}
.icofont-cash-on-delivery:before {
content: "\ecc9";
}
.icofont-diners-club-alt-1:before {
content: "\ecca";
}
.icofont-diners-club-alt-2:before {
content: "\eccb";
}
.icofont-diners-club-alt-3:before {
content: "\eccc";
}
.icofont-diners-club:before {
content: "\eccd";
}
.icofont-discover-alt:before {
content: "\ecce";
}
.icofont-discover:before {
content: "\eccf";
}
.icofont-eway-alt:before {
content: "\ecd0";
}
.icofont-eway:before {
content: "\ecd1";
}
.icofont-google-wallet-alt-1:before {
content: "\ecd2";
}
.icofont-google-wallet-alt-2:before {
content: "\ecd3";
}
.icofont-google-wallet-alt-3:before {
content: "\ecd4";
}
.icofont-google-wallet:before {
content: "\ecd5";
}
.icofont-jcb-alt:before {
content: "\ecd6";
}
.icofont-jcb:before {
content: "\ecd7";
}
.icofont-maestro-alt:before {
content: "\ecd8";
}
.icofont-maestro:before {
content: "\ecd9";
}
.icofont-mastercard-alt:before {
content: "\ecda";
}
.icofont-mastercard:before {
content: "\ecdb";
}
.icofont-payoneer-alt:before {
content: "\ecdc";
}
.icofont-payoneer:before {
content: "\ecdd";
}
.icofont-paypal-alt:before {
content: "\ecde";
}
.icofont-paypal:before {
content: "\ecdf";
}
.icofont-sage-alt:before {
content: "\ece0";
}
.icofont-sage:before {
content: "\ece1";
}
.icofont-skrill-alt:before {
content: "\ece2";
}
.icofont-skrill:before {
content: "\ece3";
}
.icofont-stripe-alt:before {
content: "\ece4";
}
.icofont-stripe:before {
content: "\ece5";
}
.icofont-visa-alt:before {
content: "\ece6";
}
.icofont-visa-electron:before {
content: "\ece7";
}
.icofont-visa:before {
content: "\ece8";
}
.icofont-western-union-alt:before {
content: "\ece9";
}
.icofont-western-union:before {
content: "\ecea";
}
.icofont-boy:before {
content: "\eceb";
}
.icofont-business-man-alt-1:before {
content: "\ecec";
}
.icofont-business-man-alt-2:before {
content: "\eced";
}
.icofont-business-man-alt-3:before {
content: "\ecee";
}
.icofont-business-man:before {
content: "\ecef";
}
.icofont-female:before {
content: "\ecf0";
}
.icofont-funky-man:before {
content: "\ecf1";
}
.icofont-girl-alt:before {
content: "\ecf2";
}
.icofont-girl:before {
content: "\ecf3";
}
.icofont-group:before {
content: "\ecf4";
}
.icofont-hotel-boy-alt:before {
content: "\ecf5";
}
.icofont-hotel-boy:before {
content: "\ecf6";
}
.icofont-kid:before {
content: "\ecf7";
}
.icofont-man-in-glasses:before {
content: "\ecf8";
}
.icofont-people:before {
content: "\ecf9";
}
.icofont-support:before {
content: "\ecfa";
}
.icofont-user-alt-1:before {
content: "\ecfb";
}
.icofont-user-alt-2:before {
content: "\ecfc";
}
.icofont-user-alt-3:before {
content: "\ecfd";
}
.icofont-user-alt-4:before {
content: "\ecfe";
}
.icofont-user-alt-5:before {
content: "\ecff";
}
.icofont-user-alt-6:before {
content: "\ed00";
}
.icofont-user-alt-7:before {
content: "\ed01";
}
.icofont-user-female:before {
content: "\ed02";
}
.icofont-user-male:before {
content: "\ed03";
}
.icofont-user-suited:before {
content: "\ed04";
}
.icofont-user:before {
content: "\ed05";
}
.icofont-users-alt-1:before {
content: "\ed06";
}
.icofont-users-alt-2:before {
content: "\ed07";
}
.icofont-users-alt-3:before {
content: "\ed08";
}
.icofont-users-alt-4:before {
content: "\ed09";
}
.icofont-users-alt-5:before {
content: "\ed0a";
}
.icofont-users-alt-6:before {
content: "\ed0b";
}
.icofont-users-social:before {
content: "\ed0c";
}
.icofont-users:before {
content: "\ed0d";
}
.icofont-waiter-alt:before {
content: "\ed0e";
}
.icofont-waiter:before {
content: "\ed0f";
}
.icofont-woman-in-glasses:before {
content: "\ed10";
}
.icofont-search-1:before {
content: "\ed11";
}
.icofont-search-2:before {
content: "\ed12";
}
.icofont-search-document:before {
content: "\ed13";
}
.icofont-search-folder:before {
content: "\ed14";
}
.icofont-search-job:before {
content: "\ed15";
}
.icofont-search-map:before {
content: "\ed16";
}
.icofont-search-property:before {
content: "\ed17";
}
.icofont-search-restaurant:before {
content: "\ed18";
}
.icofont-search-stock:before {
content: "\ed19";
}
.icofont-search-user:before {
content: "\ed1a";
}
.icofont-search:before {
content: "\ed1b";
}
.icofont-500px:before {
content: "\ed1c";
}
.icofont-aim:before {
content: "\ed1d";
}
.icofont-badoo:before {
content: "\ed1e";
}
.icofont-baidu-tieba:before {
content: "\ed1f";
}
.icofont-bbm-messenger:before {
content: "\ed20";
}
.icofont-bebo:before {
content: "\ed21";
}
.icofont-behance:before {
content: "\ed22";
}
.icofont-blogger:before {
content: "\ed23";
}
.icofont-bootstrap:before {
content: "\ed24";
}
.icofont-brightkite:before {
content: "\ed25";
}
.icofont-cloudapp:before {
content: "\ed26";
}
.icofont-concrete5:before {
content: "\ed27";
}
.icofont-delicious:before {
content: "\ed28";
}
.icofont-designbump:before {
content: "\ed29";
}
.icofont-designfloat:before {
content: "\ed2a";
}
.icofont-deviantart:before {
content: "\ed2b";
}
.icofont-digg:before {
content: "\ed2c";
}
.icofont-discord:before {
content: "\f032";
}
.icofont-dotcms:before {
content: "\ed2d";
}
.icofont-dribbble:before {
content: "\ed2e";
}
.icofont-dribble:before {
content: "\ed2f";
}
.icofont-dropbox:before {
content: "\ed30";
}
.icofont-ebuddy:before {
content: "\ed31";
}
.icofont-ello:before {
content: "\ed32";
}
.icofont-ember:before {
content: "\ed33";
}
.icofont-envato:before {
content: "\ed34";
}
.icofont-evernote:before {
content: "\ed35";
}
.icofont-facebook-messenger:before {
content: "\ed36";
}
.icofont-facebook:before {
content: "\ed37";
}
.icofont-feedburner:before {
content: "\ed38";
}
.icofont-flikr:before {
content: "\ed39";
}
.icofont-folkd:before {
content: "\ed3a";
}
.icofont-foursquare:before {
content: "\ed3b";
}
.icofont-friendfeed:before {
content: "\ed3c";
}
.icofont-ghost:before {
content: "\ed3d";
}
.icofont-github:before {
content: "\ed3e";
}
.icofont-gnome:before {
content: "\ed3f";
}
.icofont-google-buzz:before {
content: "\ed40";
}
.icofont-google-hangouts:before {
content: "\ed41";
}
.icofont-google-map:before {
content: "\ed42";
}
.icofont-google-plus:before {
content: "\ed43";
}
.icofont-google-talk:before {
content: "\ed44";
}
.icofont-hype-machine:before {
content: "\ed45";
}
.icofont-instagram:before {
content: "\ed46";
}
.icofont-kakaotalk:before {
content: "\ed47";
}
.icofont-kickstarter:before {
content: "\ed48";
}
.icofont-kik:before {
content: "\ed49";
}
.icofont-kiwibox:before {
content: "\ed4a";
}
.icofont-line-messenger:before {
content: "\ed4b";
}
.icofont-line:before {
content: "\ed4c";
}
.icofont-linkedin:before {
content: "\ed4d";
}
.icofont-linux-mint:before {
content: "\ed4e";
}
.icofont-live-messenger:before {
content: "\ed4f";
}
.icofont-x-twitter:before {
content: "\e900";
}
.icofont-livejournal:before {
content: "\ed50";
}
.icofont-magento:before {
content: "\ed51";
}
.icofont-meetme:before {
content: "\ed52";
}
.icofont-meetup:before {
content: "\ed53";
}
.icofont-mixx:before {
content: "\ed54";
}
.icofont-newsvine:before {
content: "\ed55";
}
.icofont-nimbuss:before {
content: "\ed56";
}
.icofont-odnoklassniki:before {
content: "\ed57";
}
.icofont-opencart:before {
content: "\ed58";
}
.icofont-oscommerce:before {
content: "\ed59";
}
.icofont-pandora:before {
content: "\ed5a";
}
.icofont-photobucket:before {
content: "\ed5b";
}
.icofont-picasa:before {
content: "\ed5c";
}
.icofont-pinterest:before {
content: "\ed5d";
}
.icofont-prestashop:before {
content: "\ed5e";
}
.icofont-qik:before {
content: "\ed5f";
}
.icofont-qq:before {
content: "\ed60";
}
.icofont-readernaut:before {
content: "\ed61";
}
.icofont-reddit:before {
content: "\ed62";
}
.icofont-renren:before {
content: "\ed63";
}
.icofont-rss:before {
content: "\ed64";
}
.icofont-shopify:before {
content: "\ed65";
}
.icofont-silverstripe:before {
content: "\ed66";
}
.icofont-skype:before {
content: "\ed67";
}
.icofont-slack:before {
content: "\ed68";
}
.icofont-slashdot:before {
content: "\ed69";
}
.icofont-slidshare:before {
content: "\ed6a";
}
.icofont-smugmug:before {
content: "\ed6b";
}
.icofont-snapchat:before {
content: "\ed6c";
}
.icofont-soundcloud:before {
content: "\ed6d";
}
.icofont-spotify:before {
content: "\ed6e";
}
.icofont-stack-exchange:before {
content: "\ed6f";
}
.icofont-stack-overflow:before {
content: "\ed70";
}
.icofont-steam:before {
content: "\ed71";
}
.icofont-stumbleupon:before {
content: "\ed72";
}
.icofont-tagged:before {
content: "\ed73";
}
.icofont-technorati:before {
content: "\ed74";
}
.icofont-telegram:before {
content: "\ed75";
}
.icofont-tiktok:before {
content: "\f033";
}
.icofont-tinder:before {
content: "\ed76";
}
.icofont-trello:before {
content: "\ed77";
}
.icofont-tumblr:before {
content: "\ed78";
}
.icofont-twitch:before {
content: "\ed79";
}
.icofont-twitter:before {
content: "\ed7a";
}
.icofont-typo3:before {
content: "\ed7b";
}
.icofont-ubercart:before {
content: "\ed7c";
}
.icofont-viber:before {
content: "\ed7d";
}
.icofont-viddler:before {
content: "\ed7e";
}
.icofont-vimeo:before {
content: "\ed7f";
}
.icofont-vine:before {
content: "\ed80";
}
.icofont-virb:before {
content: "\ed81";
}
.icofont-virtuemart:before {
content: "\ed82";
}
.icofont-vk:before {
content: "\ed83";
}
.icofont-wechat:before {
content: "\ed84";
}
.icofont-weibo:before {
content: "\ed85";
}
.icofont-whatsapp:before {
content: "\ed86";
}
.icofont-xing:before {
content: "\ed87";
}
.icofont-yahoo:before {
content: "\ed88";
}
.icofont-yelp:before {
content: "\ed89";
}
.icofont-youku:before {
content: "\ed8a";
}
.icofont-youtube:before {
content: "\ed8b";
}
.icofont-zencart:before {
content: "\ed8c";
}
.icofont-badminton-birdie:before {
content: "\ed8d";
}
.icofont-baseball:before {
content: "\ed8e";
}
.icofont-baseballer:before {
content: "\ed8f";
}
.icofont-basketball-hoop:before {
content: "\ed90";
}
.icofont-basketball:before {
content: "\ed91";
}
.icofont-billiard-ball:before {
content: "\ed92";
}
.icofont-boot-alt-1:before {
content: "\ed93";
}
.icofont-boot-alt-2:before {
content: "\ed94";
}
.icofont-boot:before {
content: "\ed95";
}
.icofont-bowling-alt:before {
content: "\ed96";
}
.icofont-bowling:before {
content: "\ed97";
}
.icofont-canoe:before {
content: "\ed98";
}
.icofont-cheer-leader:before {
content: "\ed99";
}
.icofont-climbing:before {
content: "\ed9a";
}
.icofont-corner:before {
content: "\ed9b";
}
.icofont-field-alt:before {
content: "\ed9c";
}
.icofont-field:before {
content: "\ed9d";
}
.icofont-football-alt:before {
content: "\ed9e";
}
.icofont-football-american:before {
content: "\ed9f";
}
.icofont-football:before {
content: "\eda0";
}
.icofont-foul:before {
content: "\eda1";
}
.icofont-goal-keeper:before {
content: "\eda2";
}
.icofont-goal:before {
content: "\eda3";
}
.icofont-golf-alt:before {
content: "\eda4";
}
.icofont-golf-bag:before {
content: "\eda5";
}
.icofont-golf-cart:before {
content: "\eda6";
}
.icofont-golf-field:before {
content: "\eda7";
}
.icofont-golf:before {
content: "\eda8";
}
.icofont-golfer:before {
content: "\eda9";
}
.icofont-helmet:before {
content: "\edaa";
}
.icofont-hockey-alt:before {
content: "\edab";
}
.icofont-hockey:before {
content: "\edac";
}
.icofont-ice-skate:before {
content: "\edad";
}
.icofont-jersey-alt:before {
content: "\edae";
}
.icofont-jersey:before {
content: "\edaf";
}
.icofont-jumping:before {
content: "\edb0";
}
.icofont-kick:before {
content: "\edb1";
}
.icofont-leg:before {
content: "\edb2";
}
.icofont-match-review:before {
content: "\edb3";
}
.icofont-medal-sport:before {
content: "\edb4";
}
.icofont-offside:before {
content: "\edb5";
}
.icofont-olympic-logo:before {
content: "\edb6";
}
.icofont-olympic:before {
content: "\edb7";
}
.icofont-padding:before {
content: "\edb8";
}
.icofont-penalty-card:before {
content: "\edb9";
}
.icofont-racer:before {
content: "\edba";
}
.icofont-racing-car:before {
content: "\edbb";
}
.icofont-racing-flag-alt:before {
content: "\edbc";
}
.icofont-racing-flag:before {
content: "\edbd";
}
.icofont-racings-wheel:before {
content: "\edbe";
}
.icofont-referee:before {
content: "\edbf";
}
.icofont-refree-jersey:before {
content: "\edc0";
}
.icofont-result-sport:before {
content: "\edc1";
}
.icofont-rugby-ball:before {
content: "\edc2";
}
.icofont-rugby-player:before {
content: "\edc3";
}
.icofont-rugby:before {
content: "\edc4";
}
.icofont-runner-alt-1:before {
content: "\edc5";
}
.icofont-runner-alt-2:before {
content: "\edc6";
}
.icofont-runner:before {
content: "\edc7";
}
.icofont-score-board:before {
content: "\edc8";
}
.icofont-skiing-man:before {
content: "\edc9";
}
.icofont-skydiving-goggles:before {
content: "\edca";
}
.icofont-snow-mobile:before {
content: "\edcb";
}
.icofont-steering:before {
content: "\edcc";
}
.icofont-stopwatch:before {
content: "\edcd";
}
.icofont-substitute:before {
content: "\edce";
}
.icofont-swimmer:before {
content: "\edcf";
}
.icofont-table-tennis:before {
content: "\edd0";
}
.icofont-team-alt:before {
content: "\edd1";
}
.icofont-team:before {
content: "\edd2";
}
.icofont-tennis-player:before {
content: "\edd3";
}
.icofont-tennis:before {
content: "\edd4";
}
.icofont-tracking:before {
content: "\edd5";
}
.icofont-trophy-alt:before {
content: "\edd6";
}
.icofont-trophy:before {
content: "\edd7";
}
.icofont-volleyball-alt:before {
content: "\edd8";
}
.icofont-volleyball-fire:before {
content: "\edd9";
}
.icofont-volleyball:before {
content: "\edda";
}
.icofont-water-bottle:before {
content: "\eddb";
}
.icofont-whistle-alt:before {
content: "\eddc";
}
.icofont-whistle:before {
content: "\eddd";
}
.icofont-win-trophy:before {
content: "\edde";
}
.icofont-align-center:before {
content: "\eddf";
}
.icofont-align-left:before {
content: "\ede0";
}
.icofont-align-right:before {
content: "\ede1";
}
.icofont-all-caps:before {
content: "\ede2";
}
.icofont-bold:before {
content: "\ede3";
}
.icofont-brush:before {
content: "\ede4";
}
.icofont-clip-board:before {
content: "\ede5";
}
.icofont-code-alt:before {
content: "\ede6";
}
.icofont-color-bucket:before {
content: "\ede7";
}
.icofont-color-picker:before {
content: "\ede8";
}
.icofont-copy-invert:before {
content: "\ede9";
}
.icofont-copy:before {
content: "\edea";
}
.icofont-cut:before {
content: "\edeb";
}
.icofont-delete-alt:before {
content: "\edec";
}
.icofont-edit-alt:before {
content: "\eded";
}
.icofont-eraser-alt:before {
content: "\edee";
}
.icofont-font:before {
content: "\edef";
}
.icofont-heading:before {
content: "\edf0";
}
.icofont-indent:before {
content: "\edf1";
}
.icofont-italic-alt:before {
content: "\edf2";
}
.icofont-italic:before {
content: "\edf3";
}
.icofont-justify-all:before {
content: "\edf4";
}
.icofont-justify-center:before {
content: "\edf5";
}
.icofont-justify-left:before {
content: "\edf6";
}
.icofont-justify-right:before {
content: "\edf7";
}
.icofont-link-broken:before {
content: "\edf8";
}
.icofont-outdent:before {
content: "\edf9";
}
.icofont-paper-clip:before {
content: "\edfa";
}
.icofont-paragraph:before {
content: "\edfb";
}
.icofont-pin:before {
content: "\edfc";
}
.icofont-printer:before {
content: "\edfd";
}
.icofont-redo:before {
content: "\edfe";
}
.icofont-rotation:before {
content: "\edff";
}
.icofont-save:before {
content: "\ee00";
}
.icofont-small-cap:before {
content: "\ee01";
}
.icofont-strike-through:before {
content: "\ee02";
}
.icofont-sub-listing:before {
content: "\ee03";
}
.icofont-subscript:before {
content: "\ee04";
}
.icofont-superscript:before {
content: "\ee05";
}
.icofont-table:before {
content: "\ee06";
}
.icofont-text-height:before {
content: "\ee07";
}
.icofont-text-width:before {
content: "\ee08";
}
.icofont-trash:before {
content: "\ee09";
}
.icofont-underline:before {
content: "\ee0a";
}
.icofont-undo:before {
content: "\ee0b";
}
.icofont-air-balloon:before {
content: "\ee0c";
}
.icofont-airplane-alt:before {
content: "\ee0d";
}
.icofont-airplane:before {
content: "\ee0e";
}
.icofont-articulated-truck:before {
content: "\ee0f";
}
.icofont-auto-mobile:before {
content: "\ee10";
}
.icofont-auto-rickshaw:before {
content: "\ee11";
}
.icofont-bicycle-alt-1:before {
content: "\ee12";
}
.icofont-bicycle-alt-2:before {
content: "\ee13";
}
.icofont-bicycle:before {
content: "\ee14";
}
.icofont-bus-alt-1:before {
content: "\ee15";
}
.icofont-bus-alt-2:before {
content: "\ee16";
}
.icofont-bus-alt-3:before {
content: "\ee17";
}
.icofont-bus:before {
content: "\ee18";
}
.icofont-cab:before {
content: "\ee19";
}
.icofont-cable-car:before {
content: "\ee1a";
}
.icofont-car-alt-1:before {
content: "\ee1b";
}
.icofont-car-alt-2:before {
content: "\ee1c";
}
.icofont-car-alt-3:before {
content: "\ee1d";
}
.icofont-car-alt-4:before {
content: "\ee1e";
}
.icofont-car:before {
content: "\ee1f";
}
.icofont-delivery-time:before {
content: "\ee20";
}
.icofont-fast-delivery:before {
content: "\ee21";
}
.icofont-fire-truck-alt:before {
content: "\ee22";
}
.icofont-fire-truck:before {
content: "\ee23";
}
.icofont-free-delivery:before {
content: "\ee24";
}
.icofont-helicopter:before {
content: "\ee25";
}
.icofont-motor-bike-alt:before {
content: "\ee26";
}
.icofont-motor-bike:before {
content: "\ee27";
}
.icofont-motor-biker:before {
content: "\ee28";
}
.icofont-oil-truck:before {
content: "\ee29";
}
.icofont-rickshaw:before {
content: "\ee2a";
}
.icofont-rocket-alt-1:before {
content: "\ee2b";
}
.icofont-rocket-alt-2:before {
content: "\ee2c";
}
.icofont-rocket:before {
content: "\ee2d";
}
.icofont-sail-boat-alt-1:before {
content: "\ee2e";
}
.icofont-sail-boat-alt-2:before {
content: "\ee2f";
}
.icofont-sail-boat:before {
content: "\ee30";
}
.icofont-scooter:before {
content: "\ee31";
}
.icofont-sea-plane:before {
content: "\ee32";
}
.icofont-ship-alt:before {
content: "\ee33";
}
.icofont-ship:before {
content: "\ee34";
}
.icofont-speed-boat:before {
content: "\ee35";
}
.icofont-taxi:before {
content: "\ee36";
}
.icofont-tractor:before {
content: "\ee37";
}
.icofont-train-line:before {
content: "\ee38";
}
.icofont-train-steam:before {
content: "\ee39";
}
.icofont-tram:before {
content: "\ee3a";
}
.icofont-truck-alt:before {
content: "\ee3b";
}
.icofont-truck-loaded:before {
content: "\ee3c";
}
.icofont-truck:before {
content: "\ee3d";
}
.icofont-van-alt:before {
content: "\ee3e";
}
.icofont-van:before {
content: "\ee3f";
}
.icofont-yacht:before {
content: "\ee40";
}
.icofont-5-star-hotel:before {
content: "\ee41";
}
.icofont-air-ticket:before {
content: "\ee42";
}
.icofont-beach-bed:before {
content: "\ee43";
}
.icofont-beach:before {
content: "\ee44";
}
.icofont-camping-vest:before {
content: "\ee45";
}
.icofont-direction-sign:before {
content: "\ee46";
}
.icofont-hill-side:before {
content: "\ee47";
}
.icofont-hill:before {
content: "\ee48";
}
.icofont-hotel:before {
content: "\ee49";
}
.icofont-island-alt:before {
content: "\ee4a";
}
.icofont-island:before {
content: "\ee4b";
}
.icofont-sandals-female:before {
content: "\ee4c";
}
.icofont-sandals-male:before {
content: "\ee4d";
}
.icofont-travelling:before {
content: "\ee4e";
}
.icofont-breakdown:before {
content: "\ee4f";
}
.icofont-celsius:before {
content: "\ee50";
}
.icofont-clouds:before {
content: "\ee51";
}
.icofont-cloudy:before {
content: "\ee52";
}
.icofont-dust:before {
content: "\ee53";
}
.icofont-eclipse:before {
content: "\ee54";
}
.icofont-fahrenheit:before {
content: "\ee55";
}
.icofont-forest-fire:before {
content: "\ee56";
}
.icofont-full-night:before {
content: "\ee57";
}
.icofont-full-sunny:before {
content: "\ee58";
}
.icofont-hail-night:before {
content: "\ee59";
}
.icofont-hail-rainy-night:before {
content: "\ee5a";
}
.icofont-hail-rainy-sunny:before {
content: "\ee5b";
}
.icofont-hail-rainy:before {
content: "\ee5c";
}
.icofont-hail-sunny:before {
content: "\ee5d";
}
.icofont-hail-thunder-night:before {
content: "\ee5e";
}
.icofont-hail-thunder-sunny:before {
content: "\ee5f";
}
.icofont-hail-thunder:before {
content: "\ee60";
}
.icofont-hail:before {
content: "\ee61";
}
.icofont-hill-night:before {
content: "\ee62";
}
.icofont-hill-sunny:before {
content: "\ee63";
}
.icofont-hurricane:before {
content: "\ee64";
}
.icofont-meteor:before {
content: "\ee65";
}
.icofont-night:before {
content: "\ee66";
}
.icofont-rainy-night:before {
content: "\ee67";
}
.icofont-rainy-sunny:before {
content: "\ee68";
}
.icofont-rainy-thunder:before {
content: "\ee69";
}
.icofont-rainy:before {
content: "\ee6a";
}
.icofont-snow-alt:before {
content: "\ee6b";
}
.icofont-snow-flake:before {
content: "\ee6c";
}
.icofont-snow-temp:before {
content: "\ee6d";
}
.icofont-snow:before {
content: "\ee6e";
}
.icofont-snowy-hail:before {
content: "\ee6f";
}
.icofont-snowy-night-hail:before {
content: "\ee70";
}
.icofont-snowy-night-rainy:before {
content: "\ee71";
}
.icofont-snowy-night:before {
content: "\ee72";
}
.icofont-snowy-rainy:before {
content: "\ee73";
}
.icofont-snowy-sunny-hail:before {
content: "\ee74";
}
.icofont-snowy-sunny-rainy:before {
content: "\ee75";
}
.icofont-snowy-sunny:before {
content: "\ee76";
}
.icofont-snowy-thunder-night:before {
content: "\ee77";
}
.icofont-snowy-thunder-sunny:before {
content: "\ee78";
}
.icofont-snowy-thunder:before {
content: "\ee79";
}
.icofont-snowy-windy-night:before {
content: "\ee7a";
}
.icofont-snowy-windy-sunny:before {
content: "\ee7b";
}
.icofont-snowy-windy:before {
content: "\ee7c";
}
.icofont-snowy:before {
content: "\ee7d";
}
.icofont-sun-alt:before {
content: "\ee7e";
}
.icofont-sun-rise:before {
content: "\ee7f";
}
.icofont-sun-set:before {
content: "\ee80";
}
.icofont-sun:before {
content: "\ee81";
}
.icofont-sunny-day-temp:before {
content: "\ee82";
}
.icofont-sunny:before {
content: "\ee83";
}
.icofont-thunder-light:before {
content: "\ee84";
}
.icofont-tornado:before {
content: "\ee85";
}
.icofont-umbrella-alt:before {
content: "\ee86";
}
.icofont-umbrella:before {
content: "\ee87";
}
.icofont-volcano:before {
content: "\ee88";
}
.icofont-wave:before {
content: "\ee89";
}
.icofont-wind-scale-0:before {
content: "\ee8a";
}
.icofont-wind-scale-1:before {
content: "\ee8b";
}
.icofont-wind-scale-10:before {
content: "\ee8c";
}
.icofont-wind-scale-11:before {
content: "\ee8d";
}
.icofont-wind-scale-12:before {
content: "\ee8e";
}
.icofont-wind-scale-2:before {
content: "\ee8f";
}
.icofont-wind-scale-3:before {
content: "\ee90";
}
.icofont-wind-scale-4:before {
content: "\ee91";
}
.icofont-wind-scale-5:before {
content: "\ee92";
}
.icofont-wind-scale-6:before {
content: "\ee93";
}
.icofont-wind-scale-7:before {
content: "\ee94";
}
.icofont-wind-scale-8:before {
content: "\ee95";
}
.icofont-wind-scale-9:before {
content: "\ee96";
}
.icofont-wind-waves:before {
content: "\ee97";
}
.icofont-wind:before {
content: "\ee98";
}
.icofont-windy-hail:before {
content: "\ee99";
}
.icofont-windy-night:before {
content: "\ee9a";
}
.icofont-windy-raining:before {
content: "\ee9b";
}
.icofont-windy-sunny:before {
content: "\ee9c";
}
.icofont-windy-thunder-raining:before {
content: "\ee9d";
}
.icofont-windy-thunder:before {
content: "\ee9e";
}
.icofont-windy:before {
content: "\ee9f";
}
.icofont-cycling-alt:before {
content: "\eb31";
}
.icofont-cycling:before {
content: "\eb32";
}
.icofont-dumbbell:before {
content: "\eb33";
}
.icofont-dumbbells:before {
content: "\eb34";
}
.icofont-gym-alt-1:before {
content: "\eb35";
}
.icofont-gym-alt-2:before {
content: "\eb36";
}
.icofont-gym-alt-3:before {
content: "\eb37";
}
.icofont-gym:before {
content: "\eb38";
}
.icofont-muscle-weight:before {
content: "\eb39";
}
.icofont-muscle:before {
content: "\eb3a";
}
.icofont-file-alt:before {
content: "\eb08";
}
.icofont-file-audio:before {
content: "\eb09";
}
.icofont-file-avi-mp4:before {
content: "\eb0a";
}
.icofont-file-bmp:before {
content: "\eb0b";
}
.icofont-file-code:before {
content: "\eb0c";
}
.icofont-file-css:before {
content: "\eb0d";
}
.icofont-file-document:before {
content: "\eb0e";
}
.icofont-file-eps:before {
content: "\eb0f";
}
.icofont-file-excel:before {
content: "\eb10";
}
.icofont-file-exe:before {
content: "\eb11";
}
.icofont-file-file:before {
content: "\eb12";
}
.icofont-file-flv:before {
content: "\eb13";
}
.icofont-file-gif:before {
content: "\eb14";
}
.icofont-file-html5:before {
content: "\eb15";
}
.icofont-file-image:before {
content: "\eb16";
}
.icofont-file-iso:before {
content: "\eb17";
}
.icofont-file-java:before {
content: "\eb18";
}
.icofont-file-javascript:before {
content: "\eb19";
}
.icofont-file-jpg:before {
content: "\eb1a";
}
.icofont-file-midi:before {
content: "\eb1b";
}
.icofont-file-mov:before {
content: "\eb1c";
}
.icofont-file-mp3:before {
content: "\eb1d";
}
.icofont-file-pdf:before {
content: "\eb1e";
}
.icofont-file-php:before {
content: "\eb1f";
}
.icofont-file-png:before {
content: "\eb20";
}
.icofont-file-powerpoint:before {
content: "\eb21";
}
.icofont-file-presentation:before {
content: "\eb22";
}
.icofont-file-psb:before {
content: "\eb23";
}
.icofont-file-psd:before {
content: "\eb24";
}
.icofont-file-python:before {
content: "\eb25";
}
.icofont-file-ruby:before {
content: "\eb26";
}
.icofont-file-spreadsheet:before {
content: "\eb27";
}
.icofont-file-sql:before {
content: "\eb28";
}
.icofont-file-svg:before {
content: "\eb29";
}
.icofont-file-text:before {
content: "\eb2a";
}
.icofont-file-tiff:before {
content: "\eb2b";
}
.icofont-file-video:before {
content: "\eb2c";
}
.icofont-file-wave:before {
content: "\eb2d";
}
.icofont-file-wmv:before {
content: "\eb2e";
}
.icofont-file-word:before {
content: "\eb2f";
}
.icofont-file-zip:before {
content: "\eb30";
}
.icofont-angry:before {
content: "\eaf4";
}
.icofont-astonished:before {
content: "\eaf5";
}
.icofont-confounded:before {
content: "\eaf6";
}
.icofont-confused:before {
content: "\eaf7";
}
.icofont-crying:before {
content: "\eaf8";
}
.icofont-dizzy:before {
content: "\eaf9";
}
.icofont-expressionless:before {
content: "\eafa";
}
.icofont-heart-eyes:before {
content: "\eafb";
}
.icofont-laughing:before {
content: "\eafc";
}
.icofont-nerd-smile:before {
content: "\eafd";
}
.icofont-open-mouth:before {
content: "\eafe";
}
.icofont-rage:before {
content: "\eaff";
}
.icofont-rolling-eyes:before {
content: "\eb00";
}
.icofont-sad:before {
content: "\eb01";
}
.icofont-simple-smile:before {
content: "\eb02";
}
.icofont-slightly-smile:before {
content: "\eb03";
}
.icofont-smirk:before {
content: "\eb04";
}
.icofont-stuck-out-tongue:before {
content: "\eb05";
}
.icofont-wink-smile:before {
content: "\eb06";
}
.icofont-worried:before {
content: "\eb07";
}
.icofont-abc:before {
content: "\eacc";
}
.icofont-atom:before {
content: "\eacd";
}
.icofont-award:before {
content: "\eace";
}
.icofont-bell-alt:before {
content: "\eacf";
}
.icofont-black-board:before {
content: "\ead0";
}
.icofont-book-alt:before {
content: "\ead1";
}
.icofont-book:before {
content: "\ead2";
}
.icofont-brainstorming:before {
content: "\ead3";
}
.icofont-certificate-alt-1:before {
content: "\ead4";
}
.icofont-certificate-alt-2:before {
content: "\ead5";
}
.icofont-certificate:before {
content: "\ead6";
}
.icofont-education:before {
content: "\ead7";
}
.icofont-electron:before {
content: "\ead8";
}
.icofont-fountain-pen:before {
content: "\ead9";
}
.icofont-globe-alt:before {
content: "\eada";
}
.icofont-graduate-alt:before {
content: "\eadb";
}
.icofont-graduate:before {
content: "\eadc";
}
.icofont-group-students:before {
content: "\eadd";
}
.icofont-hat-alt:before {
content: "\eade";
}
.icofont-hat:before {
content: "\eadf";
}
.icofont-instrument:before {
content: "\eae0";
}
.icofont-lamp-light:before {
content: "\eae1";
}
.icofont-medal:before {
content: "\eae2";
}
.icofont-microscope-alt:before {
content: "\eae3";
}
.icofont-microscope:before {
content: "\eae4";
}
.icofont-paper:before {
content: "\eae5";
}
.icofont-pen-alt-4:before {
content: "\eae6";
}
.icofont-pen-nib:before {
content: "\eae7";
}
.icofont-pencil-alt-5:before {
content: "\eae8";
}
.icofont-quill-pen:before {
content: "\eae9";
}
.icofont-read-book-alt:before {
content: "\eaea";
}
.icofont-read-book:before {
content: "\eaeb";
}
.icofont-school-bag:before {
content: "\eaec";
}
.icofont-school-bus:before {
content: "\eaed";
}
.icofont-student-alt:before {
content: "\eaee";
}
.icofont-student:before {
content: "\eaef";
}
.icofont-teacher:before {
content: "\eaf0";
}
.icofont-test-bulb:before {
content: "\eaf1";
}
.icofont-test-tube-alt:before {
content: "\eaf2";
}
.icofont-university:before {
content: "\eaf3";
}
.icofont-arrow-down:before {
content: "\ea5b";
}
.icofont-arrow-left:before {
content: "\ea5c";
}
.icofont-arrow-right:before {
content: "\ea5d";
}
.icofont-arrow-up:before {
content: "\ea5e";
}
.icofont-block-down:before {
content: "\ea5f";
}
.icofont-block-left:before {
content: "\ea60";
}
.icofont-block-right:before {
content: "\ea61";
}
.icofont-block-up:before {
content: "\ea62";
}
.icofont-bubble-down:before {
content: "\ea63";
}
.icofont-bubble-left:before {
content: "\ea64";
}
.icofont-bubble-right:before {
content: "\ea65";
}
.icofont-bubble-up:before {
content: "\ea66";
}
.icofont-caret-down:before {
content: "\ea67";
}
.icofont-caret-left:before {
content: "\ea68";
}
.icofont-caret-right:before {
content: "\ea69";
}
.icofont-caret-up:before {
content: "\ea6a";
}
.icofont-circled-down:before {
content: "\ea6b";
}
.icofont-circled-left:before {
content: "\ea6c";
}
.icofont-circled-right:before {
content: "\ea6d";
}
.icofont-circled-up:before {
content: "\ea6e";
}
.icofont-collapse:before {
content: "\ea6f";
}
.icofont-cursor-drag:before {
content: "\ea70";
}
.icofont-curved-double-left:before {
content: "\ea71";
}
.icofont-curved-double-right:before {
content: "\ea72";
}
.icofont-curved-down:before {
content: "\ea73";
}
.icofont-curved-left:before {
content: "\ea74";
}
.icofont-curved-right:before {
content: "\ea75";
}
.icofont-curved-up:before {
content: "\ea76";
}
.icofont-dotted-down:before {
content: "\ea77";
}
.icofont-dotted-left:before {
content: "\ea78";
}
.icofont-dotted-right:before {
content: "\ea79";
}
.icofont-dotted-up:before {
content: "\ea7a";
}
.icofont-double-left:before {
content: "\ea7b";
}
.icofont-double-right:before {
content: "\ea7c";
}
.icofont-expand-alt:before {
content: "\ea7d";
}
.icofont-hand-down:before {
content: "\ea7e";
}
.icofont-hand-drag:before {
content: "\ea7f";
}
.icofont-hand-drag1:before {
content: "\ea80";
}
.icofont-hand-drag2:before {
content: "\ea81";
}
.icofont-hand-drawn-alt-down:before {
content: "\ea82";
}
.icofont-hand-drawn-alt-left:before {
content: "\ea83";
}
.icofont-hand-drawn-alt-right:before {
content: "\ea84";
}
.icofont-hand-drawn-alt-up:before {
content: "\ea85";
}
.icofont-hand-drawn-down:before {
content: "\ea86";
}
.icofont-hand-drawn-left:before {
content: "\ea87";
}
.icofont-hand-drawn-right:before {
content: "\ea88";
}
.icofont-hand-drawn-up:before {
content: "\ea89";
}
.icofont-hand-grippers:before {
content: "\ea8a";
}
.icofont-hand-left:before {
content: "\ea8b";
}
.icofont-hand-right:before {
content: "\ea8c";
}
.icofont-hand-up:before {
content: "\ea8d";
}
.icofont-line-block-down:before {
content: "\ea8e";
}
.icofont-line-block-left:before {
content: "\ea8f";
}
.icofont-line-block-right:before {
content: "\ea90";
}
.icofont-line-block-up:before {
content: "\ea91";
}
.icofont-long-arrow-down:before {
content: "\ea92";
}
.icofont-long-arrow-left:before {
content: "\ea93";
}
.icofont-long-arrow-right:before {
content: "\ea94";
}
.icofont-long-arrow-up:before {
content: "\ea95";
}
.icofont-rounded-collapse:before {
content: "\ea96";
}
.icofont-rounded-double-left:before {
content: "\ea97";
}
.icofont-rounded-double-right:before {
content: "\ea98";
}
.icofont-rounded-down:before {
content: "\ea99";
}
.icofont-rounded-expand:before {
content: "\ea9a";
}
.icofont-rounded-left-down:before {
content: "\ea9b";
}
.icofont-rounded-left-up:before {
content: "\ea9c";
}
.icofont-rounded-left:before {
content: "\ea9d";
}
.icofont-rounded-right-down:before {
content: "\ea9e";
}
.icofont-rounded-right-up:before {
content: "\ea9f";
}
.icofont-rounded-right:before {
content: "\eaa0";
}
.icofont-rounded-up:before {
content: "\eaa1";
}
.icofont-scroll-bubble-down:before {
content: "\eaa2";
}
.icofont-scroll-bubble-left:before {
content: "\eaa3";
}
.icofont-scroll-bubble-right:before {
content: "\eaa4";
}
.icofont-scroll-bubble-up:before {
content: "\eaa5";
}
.icofont-scroll-double-down:before {
content: "\eaa6";
}
.icofont-scroll-double-left:before {
content: "\eaa7";
}
.icofont-scroll-double-right:before {
content: "\eaa8";
}
.icofont-scroll-double-up:before {
content: "\eaa9";
}
.icofont-scroll-down:before {
content: "\eaaa";
}
.icofont-scroll-left:before {
content: "\eaab";
}
.icofont-scroll-long-down:before {
content: "\eaac";
}
.icofont-scroll-long-left:before {
content: "\eaad";
}
.icofont-scroll-long-right:before {
content: "\eaae";
}
.icofont-scroll-long-up:before {
content: "\eaaf";
}
.icofont-scroll-right:before {
content: "\eab0";
}
.icofont-scroll-up:before {
content: "\eab1";
}
.icofont-simple-down:before {
content: "\eab2";
}
.icofont-simple-left-down:before {
content: "\eab3";
}
.icofont-simple-left-up:before {
content: "\eab4";
}
.icofont-simple-left:before {
content: "\eab5";
}
.icofont-simple-right-down:before {
content: "\eab6";
}
.icofont-simple-right-up:before {
content: "\eab7";
}
.icofont-simple-right:before {
content: "\eab8";
}
.icofont-simple-up:before {
content: "\eab9";
}
.icofont-square-down:before {
content: "\eaba";
}
.icofont-square-left:before {
content: "\eabb";
}
.icofont-square-right:before {
content: "\eabc";
}
.icofont-square-up:before {
content: "\eabd";
}
.icofont-stylish-down:before {
content: "\eabe";
}
.icofont-stylish-left:before {
content: "\eabf";
}
.icofont-stylish-right:before {
content: "\eac0";
}
.icofont-stylish-up:before {
content: "\eac1";
}
.icofont-swoosh-down:before {
content: "\eac2";
}
.icofont-swoosh-left:before {
content: "\eac3";
}
.icofont-swoosh-right:before {
content: "\eac4";
}
.icofont-swoosh-up:before {
content: "\eac5";
}
.icofont-thin-double-left:before {
content: "\eac6";
}
.icofont-thin-double-right:before {
content: "\eac7";
}
.icofont-thin-down:before {
content: "\eac8";
}
.icofont-thin-left:before {
content: "\eac9";
}
.icofont-thin-right:before {
content: "\eaca";
}
.icofont-thin-up:before {
content: "\eacb";
}
.icofont-android-nexus:before {
content: "\ea29";
}
.icofont-android-tablet:before {
content: "\ea2a";
}
.icofont-apple-watch:before {
content: "\ea2b";
}
.icofont-drawing-tablet:before {
content: "\ea2c";
}
.icofont-earphone:before {
content: "\ea2d";
}
.icofont-flash-drive:before {
content: "\ea2e";
}
.icofont-game-console:before {
content: "\ea2f";
}
.icofont-game-controller:before {
content: "\ea30";
}
.icofont-game-pad:before {
content: "\ea31";
}
.icofont-game:before {
content: "\ea32";
}
.icofont-headphone-alt-1:before {
content: "\ea33";
}
.icofont-headphone-alt-2:before {
content: "\ea34";
}
.icofont-headphone-alt-3:before {
content: "\ea35";
}
.icofont-headphone-alt:before {
content: "\ea36";
}
.icofont-headphone:before {
content: "\ea37";
}
.icofont-htc-one:before {
content: "\ea38";
}
.icofont-imac:before {
content: "\ea39";
}
.icofont-ipad:before {
content: "\ea3a";
}
.icofont-iphone:before {
content: "\ea3b";
}
.icofont-ipod-nano:before {
content: "\ea3c";
}
.icofont-ipod-touch:before {
content: "\ea3d";
}
.icofont-keyboard-alt:before {
content: "\ea3e";
}
.icofont-keyboard-wireless:before {
content: "\ea3f";
}
.icofont-keyboard:before {
content: "\ea40";
}
.icofont-laptop-alt:before {
content: "\ea41";
}
.icofont-laptop:before {
content: "\ea42";
}
.icofont-macbook:before {
content: "\ea43";
}
.icofont-magic-mouse:before {
content: "\ea44";
}
.icofont-micro-chip:before {
content: "\ea45";
}
.icofont-microphone-alt:before {
content: "\ea46";
}
.icofont-microphone:before {
content: "\ea47";
}
.icofont-monitor:before {
content: "\ea48";
}
.icofont-mouse:before {
content: "\ea49";
}
.icofont-mp3-player:before {
content: "\ea4a";
}
.icofont-nintendo:before {
content: "\ea4b";
}
.icofont-playstation-alt:before {
content: "\ea4c";
}
.icofont-psvita:before {
content: "\ea4d";
}
.icofont-radio-mic:before {
content: "\ea4e";
}
.icofont-radio:before {
content: "\ea4f";
}
.icofont-refrigerator:before {
content: "\ea50";
}
.icofont-samsung-galaxy:before {
content: "\ea51";
}
.icofont-surface-tablet:before {
content: "\ea52";
}
.icofont-ui-head-phone:before {
content: "\ea53";
}
.icofont-ui-keyboard:before {
content: "\ea54";
}
.icofont-washing-machine:before {
content: "\ea55";
}
.icofont-wifi-router:before {
content: "\ea56";
}
.icofont-wii-u:before {
content: "\ea57";
}
.icofont-windows-lumia:before {
content: "\ea58";
}
.icofont-wireless-mouse:before {
content: "\ea59";
}
.icofont-xbox-360:before {
content: "\ea5a";
}
.icofont-afghani-false:before {
content: "\e9c5";
}
.icofont-afghani-minus:before {
content: "\e9c6";
}
.icofont-afghani-plus:before {
content: "\e9c7";
}
.icofont-afghani-true:before {
content: "\e9c8";
}
.icofont-afghani:before {
content: "\e9c9";
}
.icofont-baht-false:before {
content: "\e9ca";
}
.icofont-baht-minus:before {
content: "\e9cb";
}
.icofont-baht-plus:before {
content: "\e9cc";
}
.icofont-baht-true:before {
content: "\e9cd";
}
.icofont-baht:before {
content: "\e9ce";
}
.icofont-bitcoin-false:before {
content: "\e9cf";
}
.icofont-bitcoin-minus:before {
content: "\e9d0";
}
.icofont-bitcoin-plus:before {
content: "\e9d1";
}
.icofont-bitcoin-true:before {
content: "\e9d2";
}
.icofont-bitcoin:before {
content: "\e9d3";
}
.icofont-dollar-flase:before {
content: "\e9d4";
}
.icofont-dollar-minus:before {
content: "\e9d5";
}
.icofont-dollar-plus:before {
content: "\e9d6";
}
.icofont-dollar-true:before {
content: "\e9d7";
}
.icofont-dollar:before {
content: "\e9d8";
}
.icofont-dong-false:before {
content: "\e9d9";
}
.icofont-dong-minus:before {
content: "\e9da";
}
.icofont-dong-plus:before {
content: "\e9db";
}
.icofont-dong-true:before {
content: "\e9dc";
}
.icofont-dong:before {
content: "\e9dd";
}
.icofont-euro-false:before {
content: "\e9de";
}
.icofont-euro-minus:before {
content: "\e9df";
}
.icofont-euro-plus:before {
content: "\e9e0";
}
.icofont-euro-true:before {
content: "\e9e1";
}
.icofont-euro:before {
content: "\e9e2";
}
.icofont-frank-false:before {
content: "\e9e3";
}
.icofont-frank-minus:before {
content: "\e9e4";
}
.icofont-frank-plus:before {
content: "\e9e5";
}
.icofont-frank-true:before {
content: "\e9e6";
}
.icofont-frank:before {
content: "\e9e7";
}
.icofont-hryvnia-false:before {
content: "\e9e8";
}
.icofont-hryvnia-minus:before {
content: "\e9e9";
}
.icofont-hryvnia-plus:before {
content: "\e9ea";
}
.icofont-hryvnia-true:before {
content: "\e9eb";
}
.icofont-hryvnia:before {
content: "\e9ec";
}
.icofont-lira-false:before {
content: "\e9ed";
}
.icofont-lira-minus:before {
content: "\e9ee";
}
.icofont-lira-plus:before {
content: "\e9ef";
}
.icofont-lira-true:before {
content: "\e9f0";
}
.icofont-lira:before {
content: "\e9f1";
}
.icofont-peseta-false:before {
content: "\e9f2";
}
.icofont-peseta-minus:before {
content: "\e9f3";
}
.icofont-peseta-plus:before {
content: "\e9f4";
}
.icofont-peseta-true:before {
content: "\e9f5";
}
.icofont-peseta:before {
content: "\e9f6";
}
.icofont-peso-false:before {
content: "\e9f7";
}
.icofont-peso-minus:before {
content: "\e9f8";
}
.icofont-peso-plus:before {
content: "\e9f9";
}
.icofont-peso-true:before {
content: "\e9fa";
}
.icofont-peso:before {
content: "\e9fb";
}
.icofont-pound-false:before {
content: "\e9fc";
}
.icofont-pound-minus:before {
content: "\e9fd";
}
.icofont-pound-plus:before {
content: "\e9fe";
}
.icofont-pound-true:before {
content: "\e9ff";
}
.icofont-pound:before {
content: "\ea00";
}
.icofont-renminbi-false:before {
content: "\ea01";
}
.icofont-renminbi-minus:before {
content: "\ea02";
}
.icofont-renminbi-plus:before {
content: "\ea03";
}
.icofont-renminbi-true:before {
content: "\ea04";
}
.icofont-renminbi:before {
content: "\ea05";
}
.icofont-riyal-false:before {
content: "\ea06";
}
.icofont-riyal-minus:before {
content: "\ea07";
}
.icofont-riyal-plus:before {
content: "\ea08";
}
.icofont-riyal-true:before {
content: "\ea09";
}
.icofont-riyal:before {
content: "\ea0a";
}
.icofont-rouble-false:before {
content: "\ea0b";
}
.icofont-rouble-minus:before {
content: "\ea0c";
}
.icofont-rouble-plus:before {
content: "\ea0d";
}
.icofont-rouble-true:before {
content: "\ea0e";
}
.icofont-rouble:before {
content: "\ea0f";
}
.icofont-rupee-false:before {
content: "\ea10";
}
.icofont-rupee-minus:before {
content: "\ea11";
}
.icofont-rupee-plus:before {
content: "\ea12";
}
.icofont-rupee-true:before {
content: "\ea13";
}
.icofont-rupee:before {
content: "\ea14";
}
.icofont-taka-false:before {
content: "\ea15";
}
.icofont-taka-minus:before {
content: "\ea16";
}
.icofont-taka-plus:before {
content: "\ea17";
}
.icofont-taka-true:before {
content: "\ea18";
}
.icofont-taka:before {
content: "\ea19";
}
.icofont-turkish-lira-false:before {
content: "\ea1a";
}
.icofont-turkish-lira-minus:before {
content: "\ea1b";
}
.icofont-turkish-lira-plus:before {
content: "\ea1c";
}
.icofont-turkish-lira-true:before {
content: "\ea1d";
}
.icofont-turkish-lira:before {
content: "\ea1e";
}
.icofont-won-false:before {
content: "\ea1f";
}
.icofont-won-minus:before {
content: "\ea20";
}
.icofont-won-plus:before {
content: "\ea21";
}
.icofont-won-true:before {
content: "\ea22";
}
.icofont-won:before {
content: "\ea23";
}
.icofont-yen-false:before {
content: "\ea24";
}
.icofont-yen-minus:before {
content: "\ea25";
}
.icofont-yen-plus:before {
content: "\ea26";
}
.icofont-yen-true:before {
content: "\ea27";
}
.icofont-yen:before {
content: "\ea28";
}
.icofont-architecture-alt:before {
content: "\e985";
}
.icofont-architecture:before {
content: "\e986";
}
.icofont-barricade:before {
content: "\e987";
}
.icofont-bolt:before {
content: "\e988";
}
.icofont-bricks:before {
content: "\e989";
}
.icofont-building-alt:before {
content: "\e98a";
}
.icofont-bull-dozer:before {
content: "\e98b";
}
.icofont-calculations:before {
content: "\e98c";
}
.icofont-cement-mix:before {
content: "\e98d";
}
.icofont-cement-mixer:before {
content: "\e98e";
}
.icofont-concrete-mixer:before {
content: "\e98f";
}
.icofont-danger-zone:before {
content: "\e990";
}
.icofont-drill:before {
content: "\e991";
}
.icofont-eco-energy:before {
content: "\e992";
}
.icofont-eco-environmen:before {
content: "\e993";
}
.icofont-energy-air:before {
content: "\e994";
}
.icofont-energy-oil:before {
content: "\e995";
}
.icofont-energy-savings:before {
content: "\e996";
}
.icofont-energy-solar:before {
content: "\e997";
}
.icofont-energy-water:before {
content: "\e998";
}
.icofont-engineer:before {
content: "\e999";
}
.icofont-fire-extinguisher-alt:before {
content: "\e99a";
}
.icofont-fire-extinguisher:before {
content: "\e99b";
}
.icofont-fix-tools:before {
content: "\e99c";
}
.icofont-fork-lift:before {
content: "\e99d";
}
.icofont-glue-oil:before {
content: "\e99e";
}
.icofont-hammer-alt:before {
content: "\e99f";
}
.icofont-hammer:before {
content: "\e9a0";
}
.icofont-help-robot:before {
content: "\e9a1";
}
.icofont-industries-1:before {
content: "\e9a2";
}
.icofont-industries-2:before {
content: "\e9a3";
}
.icofont-industries-3:before {
content: "\e9a4";
}
.icofont-industries-4:before {
content: "\e9a5";
}
.icofont-industries-5:before {
content: "\e9a6";
}
.icofont-industries:before {
content: "\e9a7";
}
.icofont-labour:before {
content: "\e9a8";
}
.icofont-mining:before {
content: "\e9a9";
}
.icofont-paint-brush:before {
content: "\e9aa";
}
.icofont-pollution:before {
content: "\e9ab";
}
.icofont-power-zone:before {
content: "\e9ac";
}
.icofont-radio-active:before {
content: "\e9ad";
}
.icofont-recycle-alt:before {
content: "\e9ae";
}
.icofont-recycling-man:before {
content: "\e9af";
}
.icofont-safety-hat-light:before {
content: "\e9b0";
}
.icofont-safety-hat:before {
content: "\e9b1";
}
.icofont-saw:before {
content: "\e9b2";
}
.icofont-screw-driver:before {
content: "\e9b3";
}
.icofont-tools-1:before {
content: "\e9b4";
}
.icofont-tools-bag:before {
content: "\e9b5";
}
.icofont-tow-truck:before {
content: "\e9b6";
}
.icofont-trolley:before {
content: "\e9b7";
}
.icofont-trowel:before {
content: "\e9b8";
}
.icofont-under-construction-alt:before {
content: "\e9b9";
}
.icofont-under-construction:before {
content: "\e9ba";
}
.icofont-vehicle-cement:before {
content: "\e9bb";
}
.icofont-vehicle-crane:before {
content: "\e9bc";
}
.icofont-vehicle-delivery-van:before {
content: "\e9bd";
}
.icofont-vehicle-dozer:before {
content: "\e9be";
}
.icofont-vehicle-excavator:before {
content: "\e9bf";
}
.icofont-vehicle-trucktor:before {
content: "\e9c0";
}
.icofont-vehicle-wrecking:before {
content: "\e9c1";
}
.icofont-worker:before {
content: "\e9c2";
}
.icofont-workers-group:before {
content: "\e9c3";
}
.icofont-wrench:before {
content: "\e9c4";
}
.icofont-chart-arrows-axis:before {
content: "\e978";
}
.icofont-chart-bar-graph:before {
content: "\e979";
}
.icofont-chart-flow-1:before {
content: "\e97a";
}
.icofont-chart-flow-2:before {
content: "\e97b";
}
.icofont-chart-flow:before {
content: "\e97c";
}
.icofont-chart-growth:before {
content: "\e97d";
}
.icofont-chart-histogram-alt:before {
content: "\e97e";
}
.icofont-chart-histogram:before {
content: "\e97f";
}
.icofont-chart-line-alt:before {
content: "\e980";
}
.icofont-chart-line:before {
content: "\e981";
}
.icofont-chart-pie-alt:before {
content: "\e982";
}
.icofont-chart-pie:before {
content: "\e983";
}
.icofont-chart-radar-graph:before {
content: "\e984";
}
.icofont-bank-alt:before {
content: "\e961";
}
.icofont-bank:before {
content: "\e962";
}
.icofont-barcode:before {
content: "\e963";
}
.icofont-bill-alt:before {
content: "\e964";
}
.icofont-billboard:before {
content: "\e965";
}
.icofont-briefcase-1:before {
content: "\e966";
}
.icofont-briefcase-2:before {
content: "\e967";
}
.icofont-businessman:before {
content: "\e968";
}
.icofont-businesswoman:before {
content: "\e969";
}
.icofont-chair:before {
content: "\e96a";
}
.icofont-coins:before {
content: "\e96b";
}
.icofont-company:before {
content: "\e96c";
}
.icofont-contact-add:before {
content: "\e96d";
}
.icofont-files-stack:before {
content: "\e96e";
}
.icofont-handshake-deal:before {
content: "\e96f";
}
.icofont-id-card:before {
content: "\e970";
}
.icofont-meeting-add:before {
content: "\e971";
}
.icofont-money-bag:before {
content: "\e972";
}
.icofont-pie-chart:before {
content: "\e973";
}
.icofont-presentation-alt:before {
content: "\e974";
}
.icofont-presentation:before {
content: "\e975";
}
.icofont-stamp:before {
content: "\e976";
}
.icofont-stock-mobile:before {
content: "\e977";
}
.icofont-brand-acer:before {
content: "\e896";
}
.icofont-brand-adidas:before {
content: "\e897";
}
.icofont-brand-adobe:before {
content: "\e898";
}
.icofont-brand-air-new-zealand:before {
content: "\e899";
}
.icofont-brand-airbnb:before {
content: "\e89a";
}
.icofont-brand-aircell:before {
content: "\e89b";
}
.icofont-brand-airtel:before {
content: "\e89c";
}
.icofont-brand-alcatel:before {
content: "\e89d";
}
.icofont-brand-alibaba:before {
content: "\e89e";
}
.icofont-brand-aliexpress:before {
content: "\e89f";
}
.icofont-brand-alipay:before {
content: "\e8a0";
}
.icofont-brand-amazon:before {
content: "\e8a1";
}
.icofont-brand-amd:before {
content: "\e8a2";
}
.icofont-brand-american-airlines:before {
content: "\e8a3";
}
.icofont-brand-android-robot:before {
content: "\e8a4";
}
.icofont-brand-android:before {
content: "\e8a5";
}
.icofont-brand-aol:before {
content: "\e8a6";
}
.icofont-brand-apple:before {
content: "\e8a7";
}
.icofont-brand-appstore:before {
content: "\e8a8";
}
.icofont-brand-asus:before {
content: "\e8a9";
}
.icofont-brand-ati:before {
content: "\e8aa";
}
.icofont-brand-att:before {
content: "\e8ab";
}
.icofont-brand-audi:before {
content: "\e8ac";
}
.icofont-brand-axiata:before {
content: "\e8ad";
}
.icofont-brand-bada:before {
content: "\e8ae";
}
.icofont-brand-bbc:before {
content: "\e8af";
}
.icofont-brand-bing:before {
content: "\e8b0";
}
.icofont-brand-blackberry:before {
content: "\e8b1";
}
.icofont-brand-bmw:before {
content: "\e8b2";
}
.icofont-brand-box:before {
content: "\e8b3";
}
.icofont-brand-burger-king:before {
content: "\e8b4";
}
.icofont-brand-business-insider:before {
content: "\e8b5";
}
.icofont-brand-buzzfeed:before {
content: "\e8b6";
}
.icofont-brand-cannon:before {
content: "\e8b7";
}
.icofont-brand-casio:before {
content: "\e8b8";
}
.icofont-brand-china-mobile:before {
content: "\e8b9";
}
.icofont-brand-china-telecom:before {
content: "\e8ba";
}
.icofont-brand-china-unicom:before {
content: "\e8bb";
}
.icofont-brand-cisco:before {
content: "\e8bc";
}
.icofont-brand-citibank:before {
content: "\e8bd";
}
.icofont-brand-cnet:before {
content: "\e8be";
}
.icofont-brand-cnn:before {
content: "\e8bf";
}
.icofont-brand-cocal-cola:before {
content: "\e8c0";
}
.icofont-brand-compaq:before {
content: "\e8c1";
}
.icofont-brand-debian:before {
content: "\e8c2";
}
.icofont-brand-delicious:before {
content: "\e8c3";
}
.icofont-brand-dell:before {
content: "\e8c4";
}
.icofont-brand-designbump:before {
content: "\e8c5";
}
.icofont-brand-designfloat:before {
content: "\e8c6";
}
.icofont-brand-disney:before {
content: "\e8c7";
}
.icofont-brand-dodge:before {
content: "\e8c8";
}
.icofont-brand-dove:before {
content: "\e8c9";
}
.icofont-brand-drupal:before {
content: "\e8ca";
}
.icofont-brand-ebay:before {
content: "\e8cb";
}
.icofont-brand-eleven:before {
content: "\e8cc";
}
.icofont-brand-emirates:before {
content: "\e8cd";
}
.icofont-brand-espn:before {
content: "\e8ce";
}
.icofont-brand-etihad-airways:before {
content: "\e8cf";
}
.icofont-brand-etisalat:before {
content: "\e8d0";
}
.icofont-brand-etsy:before {
content: "\e8d1";
}
.icofont-brand-fastrack:before {
content: "\e8d2";
}
.icofont-brand-fedex:before {
content: "\e8d3";
}
.icofont-brand-ferrari:before {
content: "\e8d4";
}
.icofont-brand-fitbit:before {
content: "\e8d5";
}
.icofont-brand-flikr:before {
content: "\e8d6";
}
.icofont-brand-forbes:before {
content: "\e8d7";
}
.icofont-brand-foursquare:before {
content: "\e8d8";
}
.icofont-brand-foxconn:before {
content: "\e8d9";
}
.icofont-brand-fujitsu:before {
content: "\e8da";
}
.icofont-brand-general-electric:before {
content: "\e8db";
}
.icofont-brand-gillette:before {
content: "\e8dc";
}
.icofont-brand-gizmodo:before {
content: "\e8dd";
}
.icofont-brand-gnome:before {
content: "\e8de";
}
.icofont-brand-google:before {
content: "\e8df";
}
.icofont-brand-gopro:before {
content: "\e8e0";
}
.icofont-brand-gucci:before {
content: "\e8e1";
}
.icofont-brand-hallmark:before {
content: "\e8e2";
}
.icofont-brand-hi5:before {
content: "\e8e3";
}
.icofont-brand-honda:before {
content: "\e8e4";
}
.icofont-brand-hp:before {
content: "\e8e5";
}
.icofont-brand-hsbc:before {
content: "\e8e6";
}
.icofont-brand-htc:before {
content: "\e8e7";
}
.icofont-brand-huawei:before {
content: "\e8e8";
}
.icofont-brand-hulu:before {
content: "\e8e9";
}
.icofont-brand-hyundai:before {
content: "\e8ea";
}
.icofont-brand-ibm:before {
content: "\e8eb";
}
.icofont-brand-icofont:before {
content: "\e8ec";
}
.icofont-brand-icq:before {
content: "\e8ed";
}
.icofont-brand-ikea:before {
content: "\e8ee";
}
.icofont-brand-imdb:before {
content: "\e8ef";
}
.icofont-brand-indiegogo:before {
content: "\e8f0";
}
.icofont-brand-intel:before {
content: "\e8f1";
}
.icofont-brand-ipair:before {
content: "\e8f2";
}
.icofont-brand-jaguar:before {
content: "\e8f3";
}
.icofont-brand-java:before {
content: "\e8f4";
}
.icofont-brand-joomla:before {
content: "\e8f5";
}
.icofont-brand-kickstarter:before {
content: "\e8f6";
}
.icofont-brand-kik:before {
content: "\e8f7";
}
.icofont-brand-lastfm:before {
content: "\e8f8";
}
.icofont-brand-lego:before {
content: "\e8f9";
}
.icofont-brand-lenovo:before {
content: "\e8fa";
}
.icofont-brand-levis:before {
content: "\e8fb";
}
.icofont-brand-lexus:before {
content: "\e8fc";
}
.icofont-brand-lg:before {
content: "\e8fd";
}
.icofont-brand-life-hacker:before {
content: "\e8fe";
}
.icofont-brand-linux-mint:before {
content: "\e8ff";
}
.icofont-brand-linux:before {
content: "\e901";
}
.icofont-brand-lionix:before {
content: "\e902";
}
.icofont-brand-loreal:before {
content: "\e903";
}
.icofont-brand-louis-vuitton:before {
content: "\e904";
}
.icofont-brand-mac-os:before {
content: "\e905";
}
.icofont-brand-marvel-app:before {
content: "\e906";
}
.icofont-brand-mashable:before {
content: "\e907";
}
.icofont-brand-mazda:before {
content: "\e908";
}
.icofont-brand-mcdonals:before {
content: "\e909";
}
.icofont-brand-mercedes:before {
content: "\e90a";
}
.icofont-brand-micromax:before {
content: "\e90b";
}
.icofont-brand-microsoft:before {
content: "\e90c";
}
.icofont-brand-mobileme:before {
content: "\e90d";
}
.icofont-brand-mobily:before {
content: "\e90e";
}
.icofont-brand-motorola:before {
content: "\e90f";
}
.icofont-brand-msi:before {
content: "\e910";
}
.icofont-brand-mts:before {
content: "\e911";
}
.icofont-brand-myspace:before {
content: "\e912";
}
.icofont-brand-mytv:before {
content: "\e913";
}
.icofont-brand-nasa:before {
content: "\e914";
}
.icofont-brand-natgeo:before {
content: "\e915";
}
.icofont-brand-nbc:before {
content: "\e916";
}
.icofont-brand-nescafe:before {
content: "\e917";
}
.icofont-brand-nestle:before {
content: "\e918";
}
.icofont-brand-netflix:before {
content: "\e919";
}
.icofont-brand-nexus:before {
content: "\e91a";
}
.icofont-brand-nike:before {
content: "\e91b";
}
.icofont-brand-nokia:before {
content: "\e91c";
}
.icofont-brand-nvidia:before {
content: "\e91d";
}
.icofont-brand-omega:before {
content: "\e91e";
}
.icofont-brand-opensuse:before {
content: "\e91f";
}
.icofont-brand-oracle:before {
content: "\e920";
}
.icofont-brand-panasonic:before {
content: "\e921";
}
.icofont-brand-paypal:before {
content: "\e922";
}
.icofont-brand-pepsi:before {
content: "\e923";
}
.icofont-brand-philips:before {
content: "\e924";
}
.icofont-brand-pizza-hut:before {
content: "\e925";
}
.icofont-brand-playstation:before {
content: "\e926";
}
.icofont-brand-puma:before {
content: "\e927";
}
.icofont-brand-qatar-air:before {
content: "\e928";
}
.icofont-brand-qvc:before {
content: "\e929";
}
.icofont-brand-readernaut:before {
content: "\e92a";
}
.icofont-brand-redbull:before {
content: "\e92b";
}
.icofont-brand-reebok:before {
content: "\e92c";
}
.icofont-brand-reuters:before {
content: "\e92d";
}
.icofont-brand-samsung:before {
content: "\e92e";
}
.icofont-brand-sap:before {
content: "\e92f";
}
.icofont-brand-saudia-airlines:before {
content: "\e930";
}
.icofont-brand-scribd:before {
content: "\e931";
}
.icofont-brand-shell:before {
content: "\e932";
}
.icofont-brand-siemens:before {
content: "\e933";
}
.icofont-brand-sk-telecom:before {
content: "\e934";
}
.icofont-brand-slideshare:before {
content: "\e935";
}
.icofont-brand-smashing-magazine:before {
content: "\e936";
}
.icofont-brand-snapchat:before {
content: "\e937";
}
.icofont-brand-sony-ericsson:before {
content: "\e938";
}
.icofont-brand-sony:before {
content: "\e939";
}
.icofont-brand-soundcloud:before {
content: "\e93a";
}
.icofont-brand-sprint:before {
content: "\e93b";
}
.icofont-brand-squidoo:before {
content: "\e93c";
}
.icofont-brand-starbucks:before {
content: "\e93d";
}
.icofont-brand-stc:before {
content: "\e93e";
}
.icofont-brand-steam:before {
content: "\e93f";
}
.icofont-brand-suzuki:before {
content: "\e940";
}
.icofont-brand-symbian:before {
content: "\e941";
}
.icofont-brand-t-mobile:before {
content: "\e942";
}
.icofont-brand-tango:before {
content: "\e943";
}
.icofont-brand-target:before {
content: "\e944";
}
.icofont-brand-tata-indicom:before {
content: "\e945";
}
.icofont-brand-techcrunch:before {
content: "\e946";
}
.icofont-brand-telenor:before {
content: "\e947";
}
.icofont-brand-teliasonera:before {
content: "\e948";
}
.icofont-brand-tesla:before {
content: "\e949";
}
.icofont-brand-the-verge:before {
content: "\e94a";
}
.icofont-brand-thenextweb:before {
content: "\e94b";
}
.icofont-brand-toshiba:before {
content: "\e94c";
}
.icofont-brand-toyota:before {
content: "\e94d";
}
.icofont-brand-tribenet:before {
content: "\e94e";
}
.icofont-brand-ubuntu:before {
content: "\e94f";
}
.icofont-brand-unilever:before {
content: "\e950";
}
.icofont-brand-vaio:before {
content: "\e951";
}
.icofont-brand-verizon:before {
content: "\e952";
}
.icofont-brand-viber:before {
content: "\e953";
}
.icofont-brand-vodafone:before {
content: "\e954";
}
.icofont-brand-volkswagen:before {
content: "\e955";
}
.icofont-brand-walmart:before {
content: "\e956";
}
.icofont-brand-warnerbros:before {
content: "\e957";
}
.icofont-brand-whatsapp:before {
content: "\e958";
}
.icofont-brand-wikipedia:before {
content: "\e959";
}
.icofont-brand-windows:before {
content: "\e95a";
}
.icofont-brand-wire:before {
content: "\e95b";
}
.icofont-brand-wordpress:before {
content: "\e95c";
}
.icofont-brand-xiaomi:before {
content: "\e95d";
}
.icofont-brand-yahoobuzz:before {
content: "\e95e";
}
.icofont-brand-yamaha:before {
content: "\e95f";
}
.icofont-brand-youtube:before {
content: "\e960";
}
.icofont-brand-zain:before {
content: "\ebb0";
}
.icofont-figma:before {
content: "\f02f";
}
.icofont-illustrator:before {
content: "\f030";
}
.icofont-photoshop:before {
content: "\f031";
}
.icofont-bat:before {
content: "\e829";
}
.icofont-bear-face:before {
content: "\e82a";
}
.icofont-bear-tracks:before {
content: "\e82b";
}
.icofont-bear:before {
content: "\e82c";
}
.icofont-bird-alt:before {
content: "\e82d";
}
.icofont-bird-flying:before {
content: "\e82e";
}
.icofont-bird:before {
content: "\e82f";
}
.icofont-birds:before {
content: "\e830";
}
.icofont-bone:before {
content: "\e831";
}
.icofont-bull:before {
content: "\e832";
}
.icofont-butterfly-alt:before {
content: "\e833";
}
.icofont-butterfly:before {
content: "\e834";
}
.icofont-camel-alt:before {
content: "\e835";
}
.icofont-camel-head:before {
content: "\e836";
}
.icofont-camel:before {
content: "\e837";
}
.icofont-cat-alt-1:before {
content: "\e838";
}
.icofont-cat-alt-2:before {
content: "\e839";
}
.icofont-cat-alt-3:before {
content: "\e83a";
}
.icofont-cat-dog:before {
content: "\e83b";
}
.icofont-cat-face:before {
content: "\e83c";
}
.icofont-cat:before {
content: "\e83d";
}
.icofont-cow-head:before {
content: "\e83e";
}
.icofont-cow:before {
content: "\e83f";
}
.icofont-crab:before {
content: "\e840";
}
.icofont-crocodile:before {
content: "\e841";
}
.icofont-deer-head:before {
content: "\e842";
}
.icofont-dog-alt:before {
content: "\e843";
}
.icofont-dog-barking:before {
content: "\e844";
}
.icofont-dog:before {
content: "\e845";
}
.icofont-dolphin:before {
content: "\e846";
}
.icofont-duck-tracks:before {
content: "\e847";
}
.icofont-eagle-head:before {
content: "\e848";
}
.icofont-eaten-fish:before {
content: "\e849";
}
.icofont-elephant-alt:before {
content: "\e84a";
}
.icofont-elephant-head-alt:before {
content: "\e84b";
}
.icofont-elephant-head:before {
content: "\e84c";
}
.icofont-elephant:before {
content: "\e84d";
}
.icofont-elk:before {
content: "\e84e";
}
.icofont-fish-1:before {
content: "\e84f";
}
.icofont-fish-2:before {
content: "\e850";
}
.icofont-fish-3:before {
content: "\e851";
}
.icofont-fish-4:before {
content: "\e852";
}
.icofont-fish-5:before {
content: "\e853";
}
.icofont-fish:before {
content: "\e854";
}
.icofont-fox-alt:before {
content: "\e855";
}
.icofont-fox:before {
content: "\e856";
}
.icofont-frog-tracks:before {
content: "\e857";
}
.icofont-frog:before {
content: "\e858";
}
.icofont-froggy:before {
content: "\e859";
}
.icofont-giraffe-head-1:before {
content: "\e85a";
}
.icofont-giraffe-head-2:before {
content: "\e85b";
}
.icofont-giraffe-head:before {
content: "\e85c";
}
.icofont-giraffe:before {
content: "\e85d";
}
.icofont-goat-head:before {
content: "\e85e";
}
.icofont-gorilla:before {
content: "\e85f";
}
.icofont-hen-tracks:before {
content: "\e860";
}
.icofont-horse-head-1:before {
content: "\e861";
}
.icofont-horse-head-2:before {
content: "\e862";
}
.icofont-horse-head:before {
content: "\e863";
}
.icofont-horse-tracks:before {
content: "\e864";
}
.icofont-jellyfish:before {
content: "\e865";
}
.icofont-kangaroo:before {
content: "\e866";
}
.icofont-lemur:before {
content: "\e867";
}
.icofont-lion-head-1:before {
content: "\e868";
}
.icofont-lion-head-2:before {
content: "\e869";
}
.icofont-lion-head:before {
content: "\e86a";
}
.icofont-lion:before {
content: "\e86b";
}
.icofont-monkey-2:before {
content: "\e86c";
}
.icofont-monkey-3:before {
content: "\e86d";
}
.icofont-monkey-face:before {
content: "\e86e";
}
.icofont-monkey:before {
content: "\e86f";
}
.icofont-octopus-alt:before {
content: "\e870";
}
.icofont-octopus:before {
content: "\e871";
}
.icofont-owl:before {
content: "\e872";
}
.icofont-panda-face:before {
content: "\e873";
}
.icofont-panda:before {
content: "\e874";
}
.icofont-panther:before {
content: "\e875";
}
.icofont-parrot-lip:before {
content: "\e876";
}
.icofont-parrot:before {
content: "\e877";
}
.icofont-paw:before {
content: "\e878";
}
.icofont-pelican:before {
content: "\e879";
}
.icofont-penguin:before {
content: "\e87a";
}
.icofont-pig-face:before {
content: "\e87b";
}
.icofont-pig:before {
content: "\e87c";
}
.icofont-pigeon-1:before {
content: "\e87d";
}
.icofont-pigeon-2:before {
content: "\e87e";
}
.icofont-pigeon:before {
content: "\e87f";
}
.icofont-rabbit:before {
content: "\e880";
}
.icofont-rat:before {
content: "\e881";
}
.icofont-rhino-head:before {
content: "\e882";
}
.icofont-rhino:before {
content: "\e883";
}
.icofont-rooster:before {
content: "\e884";
}
.icofont-seahorse:before {
content: "\e885";
}
.icofont-seal:before {
content: "\e886";
}
.icofont-shrimp-alt:before {
content: "\e887";
}
.icofont-shrimp:before {
content: "\e888";
}
.icofont-snail-1:before {
content: "\e889";
}
.icofont-snail-2:before {
content: "\e88a";
}
.icofont-snail-3:before {
content: "\e88b";
}
.icofont-snail:before {
content: "\e88c";
}
.icofont-snake:before {
content: "\e88d";
}
.icofont-squid:before {
content: "\e88e";
}
.icofont-squirrel:before {
content: "\e88f";
}
.icofont-tiger-face:before {
content: "\e890";
}
.icofont-tiger:before {
content: "\e891";
}
.icofont-turtle:before {
content: "\e892";
}
.icofont-whale:before {
content: "\e893";
}
.icofont-woodpecker:before {
content: "\e894";
}
.icofont-zebra:before {
content: "\e895";
}
.icofont-angry-monster:before {
content: "\e800";
}
.icofont-bathtub:before {
content: "\e801";
}
.icofont-bird-wings:before {
content: "\e802";
}
.icofont-bow:before {
content: "\e803";
}
.icofont-castle:before {
content: "\e804";
}
.icofont-circuit:before {
content: "\e805";
}
.icofont-crown-king:before {
content: "\e806";
}
.icofont-crown-queen:before {
content: "\e807";
}
.icofont-dart:before {
content: "\e808";
}
.icofont-disability-race:before {
content: "\e809";
}
.icofont-diving-goggle:before {
content: "\e80a";
}
.icofont-eye-open:before {
content: "\e80b";
}
.icofont-flora-flower:before {
content: "\e80c";
}
.icofont-flora:before {
content: "\e80d";
}
.icofont-gift-box:before {
content: "\e80e";
}
.icofont-halloween-pumpkin:before {
content: "\e80f";
}
.icofont-hand-power:before {
content: "\e810";
}
.icofont-hand-thunder:before {
content: "\e811";
}
.icofont-king-monster:before {
content: "\e812";
}
.icofont-love:before {
content: "\e813";
}
.icofont-magician-hat:before {
content: "\e814";
}
.icofont-native-american:before {
content: "\e815";
}
.icofont-owl-look:before {
content: "\e816";
}
.icofont-phoenix:before {
content: "\e817";
}
.icofont-robot-face:before {
content: "\e818";
}
.icofont-sand-clock:before {
content: "\e819";
}
.icofont-shield-alt:before {
content: "\e81a";
}
.icofont-ship-wheel:before {
content: "\e81b";
}
.icofont-skull-danger:before {
content: "\e81c";
}
.icofont-skull-face:before {
content: "\e81d";
}
.icofont-snowmobile:before {
content: "\e81e";
}
.icofont-space-shuttle:before {
content: "\e81f";
}
.icofont-star-shape:before {
content: "\e820";
}
.icofont-swirl:before {
content: "\e821";
}
.icofont-tattoo-wing:before {
content: "\e822";
}
.icofont-throne:before {
content: "\e823";
}
.icofont-tree-alt:before {
content: "\e824";
}
.icofont-triangle:before {
content: "\e825";
}
.icofont-unity-hand:before {
content: "\e826";
}
.icofont-weed:before {
content: "\e827";
}
.icofont-woman-bird:before {
content: "\e828";
}
.icofont-burglar:before {
content: "\ebb1";
}
.icofont-cannon-firing:before {
content: "\ebb2";
}
.icofont-cc-camera:before {
content: "\ebb3";
}
.icofont-cop-badge:before {
content: "\ebb4";
}
.icofont-cop:before {
content: "\ebb5";
}
.icofont-court-hammer:before {
content: "\ebb6";
}
.icofont-court:before {
content: "\ebb7";
}
.icofont-finger-print:before {
content: "\ebb8";
}
.icofont-gavel:before {
content: "\ebb9";
}
.icofont-handcuff-alt:before {
content: "\ebba";
}
.icofont-handcuff:before {
content: "\ebbb";
}
.icofont-investigation:before {
content: "\ebbc";
}
.icofont-investigator:before {
content: "\ebbd";
}
.icofont-jail:before {
content: "\ebbe";
}
.icofont-judge:before {
content: "\ebbf";
}
.icofont-law-alt-1:before {
content: "\ebc0";
}
.icofont-law-alt-2:before {
content: "\ebc1";
}
.icofont-law-alt-3:before {
content: "\ebc2";
}
.icofont-law-book:before {
content: "\ebc3";
}
.icofont-law-document:before {
content: "\ebc4";
}
.icofont-law-order:before {
content: "\ebc5";
}
.icofont-law-protect:before {
content: "\ebc6";
}
.icofont-law-scales:before {
content: "\ebc7";
}
.icofont-law:before {
content: "\ebc8";
}
.icofont-lawyer-alt-1:before {
content: "\ebc9";
}
.icofont-lawyer-alt-2:before {
content: "\ebca";
}
.icofont-lawyer:before {
content: "\ebcb";
}
.icofont-legal:before {
content: "\ebcc";
}
.icofont-pistol:before {
content: "\ebcd";
}
.icofont-police-badge:before {
content: "\ebce";
}
.icofont-police-cap:before {
content: "\ebcf";
}
.icofont-police-car-alt-1:before {
content: "\ebd0";
}
.icofont-police-car-alt-2:before {
content: "\ebd1";
}
.icofont-police-car:before {
content: "\ebd2";
}
.icofont-police-hat:before {
content: "\ebd3";
}
.icofont-police-van:before {
content: "\ebd4";
}
.icofont-police:before {
content: "\ebd5";
}
.icofont-thief-alt:before {
content: "\ebd6";
}
.icofont-thief:before {
content: "\f035";
}body {
background-image: var(--total-body-bg-url);
background-size: var(--total-body-bg-size, auto);
background-position: var(--total-body-bg-position, center center);
background-repeat: var(--total-body-bg-repeat, repeat);
background-attachment: var(--total-body-bg-attachment, scroll);
background-color: var(--total-body-bg-color, transparent);
} .tp-clearfix:before,
.tp-clearfix:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after {
content: "";
display: table;
}
.tp-clearfix:after,
.entry-content:after,
.comment-content:after {
clear: both;
} .tp-container {
width: 1170px;
margin: 0 auto;
}
.tp-wide .tp-container {
width: var(--total-wide-container-width, 1170px);
}
.tp-boxed #tp-page {
width: var(--total-wide-container-width, 1170px);
margin: 0 auto;
position: relative;
background: #FFF;
}
.tp-boxed .tp-container {
width: calc(var(--total-wide-container-width, 1170px) - var(--total-container-padding, 80px) - var(--total-container-padding, 80px));
}
.tp-fluid .tp-container {
width: var(--total-fluid-container-width, 80%);
}
.tp-main-content h1,
.tp-main-content h2,
.tp-main-content h3,
.tp-main-content h4,
.tp-main-content h5,
.tp-main-content h6 {
color: var(--total-content-header-color, #000000);
}
h1 {
font-size: var(--total-hh1-size, var(--total-h1-size, 38px));
letter-spacing: var(--total-h-letter-spacing, var(--total-h1-letter-spacing, 0));
line-height: var(--total-h-line-height, var(--total-h1-line-height, 1.3));
font-family: var(--total-h-family, var(--total-h1-family, Oswald));
font-weight: var(--total-h-weight, var(--total-h1-weight, 400));
font-style: var(--total-h-style, var(--total-h1-style, normal));
text-decoration: var(--total-h-text-decoration, var(--total-h1-text-decoration, none));
text-transform: var(--total-h-text-transform, var(--total-h1-text-transform, none));
}
h2 {
font-size: var(--total-hh2-size, var(--total-h2-size, 34px));
letter-spacing: var(--total-h-letter-spacing, var(--total-h2-letter-spacing, 0));
line-height: var(--total-h-line-height, var(--total-h2-line-height, 1.3));
font-family: var(--total-h-family, var(--total-h2-family, Oswald));
font-weight: var(--total-h-weight, var(--total-h2-weight, 400));
font-style: var(--total-h-style, var(--total-h2-style, normal));
text-decoration: var(--total-h-text-decoration, var(--total-h2-text-decoration, none));
text-transform: var(--total-h-text-transform, var(--total-h2-text-transform, none));
}
h3 {
font-size: var(--total-hh3-size, var(--total-h3-size, 30px));
letter-spacing: var(--total-h-letter-spacing, var(--total-h3-letter-spacing, 0));
line-height: var(--total-h-line-height, var(--total-h3-line-height, 1.3));
font-family: var(--total-h-family, var(--total-h3-family, Oswald));
font-weight: var(--total-h-weight, var(--total-h3-weight, 400));
font-style: var(--total-h-style, var(--total-h3-style, normal));
text-decoration: var(--total-h-text-decoration, var(--total-h3-text-decoration, none));
text-transform: var(--total-h-text-transform, var(--total-h3-text-transform, none));
}
h4 {
font-size: var(--total-hh4-size, var(--total-h4-size, 26px));
letter-spacing: var(--total-h-letter-spacing, var(--total-h4-letter-spacing, 0));
line-height: var(--total-h-line-height, var(--total-h4-line-height, 1.3));
font-family: var(--total-h-family, var(--total-h4-family, Oswald));
font-weight: var(--total-h-weight, var(--total-h4-weight, 400));
font-style: var(--total-h-style, var(--total-h4-style, normal));
text-decoration: var(--total-h-text-decoration, var(--total-h4-text-decoration, none));
text-transform: var(--total-h-text-transform, var(--total-h4-text-transform, none));
}
h5 {
font-size: var(--total-hh5-size, var(--total-h5-size, 22px));
letter-spacing: var(--total-h-letter-spacing, var(--total-h5-letter-spacing, 0));
line-height: var(--total-h-line-height, var(--total-h5-line-height, 1.3));
font-family: var(--total-h-family, var(--total-h5-family, Oswald));
font-weight: var(--total-h-weight, var(--total-h5-weight, 400));
font-style: var(--total-h-style, var(--total-h5-style, normal));
text-decoration: var(--total-h-text-decoration, var(--total-h5-text-decoration, none));
text-transform: var(--total-h-text-transform, var(--total-h5-text-transform, none));
}
h6 {
font-size: var(--total-hh6-size, var(--total-h6-size, 20px));
letter-spacing: var(--total-h-letter-spacing, var(--total-h6-letter-spacing, 0));
line-height: var(--total-h-line-height, var(--total-h6-line-height, 1.3));
font-family: var(--total-h-family, var(--total-h6-family, Oswald));
font-weight: var(--total-h-weight, var(--total-h6-weight, 400));
font-style: var(--total-h-style, var(--total-h6-style, normal));
text-decoration: var(--total-h-text-decoration, var(--total-h6-text-decoration, none));
text-transform: var(--total-h-text-transform, var(--total-h6-text-transform, none));
}
.tp-main-content {
color: var(--total-content-text-color, #333);
}
.tp-site-title a,
.tp-site-title a:hover {
color: var(--total-title-color, #333);
}
.tp-site-description a,
.tp-site-description a:hover {
color: var(--total-tagline-color, #333);
}
#tp-site-branding img {
height: auto;
width: var(--total-logo-width);
}
#tp-site-branding .tp-site-title {
margin-top: var(--total-title-spacing-top-desktop, 0);
margin-right: var(--total-title-spacing-right-desktop, 0);
margin-bottom: var(--total-title-spacing-bottom-desktop, 0);
margin-left: var(--total-title-spacing-left-desktop, 0);
font-size: var(--total-title-size, 38px);
letter-spacing: var(--total-title-letter-spacing, 0);
line-height: var(--total-title-line-height, 1);
font-family: var(--total-title-family, var(--total-h-family, var(--total-h1-family, Oswald)));
font-weight: var(--total-title-weight, 700);
font-style: var(--total-title-style, normal);
text-decoration: var(--total-title-text-decoration, none);
text-transform: var(--total-title-text-transform, uppercase);
}
#tp-site-branding .tp-site-description {
margin-top: var(--total-tagline-spacing-top-desktop, 0);
margin-right: var(--total-tagline-spacing-right-desktop, 0);
margin-bottom: var(--total-tagline-spacing-bottom-desktop, 0);
margin-left: var(--total-tagline-spacing-left-desktop, 0);
font-family: var(--total-tagline-family, var(--total-body-family, Poppins));
font-style: var(--total-tagline-style, normal);
font-weight: var(--total-tagline-weight, 400);
font-size: var(--total-tagline-size, 18px);
letter-spacing: var(--total-tagline-letter-spacing, 0);
line-height: var(--total-tagline-line-height, 1);
text-decoration: var(--total-tagline-text-decoration, none);
text-transform: var(--total-tagline-text-transform, none);
} .widget {
margin: 0 0 15px;
}
.tp-content-area .tp-entry-content blockquote,
blockquote:not(.wp-block-quote) {
border-color: var(--total-template-color);
} .widget select {
max-width: 100%;
} .widget_calendar table th,
.widget_calendar table td {
padding: 5px;
text-align: center;
} .widget_search .search-submit {
display: none;
}
.tp-header-widget .wp-block-search .wp-block-search__inside-wrapper {
min-width: 400px;
}
.tp-header-widget .wp-block-search .wp-block-search__button {
background-color: #000;
border-color: #000;
color: #FFF;
}
.tp-header-widget .wp-block-search .wp-block-search__button svg {
fill: #FFF;
} .widget_nav_menu .menu li>a {
display: flex;
align-items: center;
}
.tp-widget-area .widget_nav_menu li {
margin-bottom: 10px;
}
.tp-widget-area .widget_nav_menu li a {
background: #EEE;
padding: 18px 20px 18px 30px;
}
.tp-widget-area .widget_nav_menu li a:after {
content: "\F0054";
font-family: "Material Design Icons";
margin-left: auto;
font-size: inherit;
color: inherit;
}
.tp-widget-area .widget_nav_menu li:last-child a {
margin-bottom: 0;
}
.tp-widget-area .widget_nav_menu li.current_page_item a,
.tp-widget-area .widget_nav_menu li a:hover {
background: var(--total-template-color);
color: #FFF;
}
.tp-widget-area .widget_nav_menu li a {
text-transform: uppercase
}
.tp-widget-area .widget_nav_menu ul ul {
margin-left: 15px;
margin-top: 10px;
} .tp-contact-box {
color: inherit;
}
.tp-contact-field {
position: relative;
}
.tp-contact-field i {
font-size: 30px;
width: 30px;
}
.tp-contact-text h6 {
font-size: 1.2em;
margin-bottom: 10px;
white-space: nowrap;
}
.tp-site-header .tp-contact-text h6 {
margin-bottom: 5px;
}
.tp-contact-text p {
margin-bottom: 0 !important;
line-height: 1.2;
}
.tp-site-header .tp-contact-text p {
line-height: 1.2;
}
.tp-contact-box .tp-contact-text a,
.tp-contact-box .tp-contact-text a:hover {
color: inherit;
}
.tp-contact-text a:hover {
text-decoration: underline;
}
.tp-site-header .tp-contact-text>div {
font-size: 0.9em;
}
.tp-contact-box.style1,
.tp-contact-box.style2 {
display: flex;
padding: 20px 0;
flex-wrap: wrap;
}
.tp-site-header .tp-contact-box.style1,
.tp-site-header .tp-contact-box.style2 {
padding: 0;
}
.tp-top-footer .tp-contact-box.style1 {
padding: 0;
}
.tp-contact-box.style1 .tp-contact-field,
.tp-contact-box.style3 .tp-contact-field {
padding: 15px 30px;
margin-bottom: 0;
display: flex;
align-items: center;
flex-grow: 1;
flex-basis: 0;
min-width: 200px;
}
.tp-header-widget .tp-contact-box.style1 .tp-contact-field,
.tp-header-widget .tp-contact-box.style3 .tp-contact-field {
padding: 0 30px;
}
.tp-contact-box.style1 .tp-contact-field:after {
content: "";
width: 1px;
height: 100%;
background: -webkit-gradient(linear, left bottom, left top, from(#f7f7f7), color-stop(10%, #f2f2f2), color-stop(20%, #ededed), color-stop(30%, #e9e9e9), color-stop(70%, #e1e1e1), color-stop(70%, #e9e9e9), color-stop(80%, #ededed), color-stop(90%, #f2f2f2), to(#f7f7f7));
background: linear-gradient(to top, #f7f7f7 0%, #f2f2f2 10%, #ededed 20%, #e9e9e9 30%, #e1e1e1 70%, #e9e9e9 70%, #ededed 80%, #f2f2f2 90%, #f7f7f7 100%);
position: absolute;
top: 0;
right: 0;
}
.tp-contact-box.style1 .tp-contact-field:last-child {
padding-right: 0;
margin-bottom: 0;
}
.tp-contact-box.style1 .tp-contact-field:last-child:after {
display: none;
}
.tp-contact-box.style1 .tp-contact-field i,
.tp-contact-box.style3 .tp-contact-field i {
margin-right: 20px;
}
.tp-contact-box.style1 .tp-contact-text {
text-align: left;
}
.tp-contact-box.style2 .tp-contact-field {
flex-grow: 1;
text-align: center;
padding: 0 15px;
flex-basis: 0;
}
.tp-contact-box.style2 .tp-contact-field i {
margin-bottom: 15px;
}
.tp-contact-box.style3 .tp-contact-field {
padding: 0;
margin-bottom: 20px;
text-align: left;
}
.tp-contact-box.style3 .tp-contact-field:last-child {
margin-bottom: 0;
} .tp-personal-info .widget-title {
color: inherit;
}
.tp-personal-info.tp-pi-center .tp-pi-image,
.tp-personal-info.tp-pi-center .tp-pi-name,
.tp-personal-info.tp-pi-center .tp-pi-intro {
text-align: center;
}
.tp-personal-info.tp-pi-right .tp-pi-image,
.tp-personal-info.tp-pi-right .tp-pi-name,
.tp-personal-info.tp-pi-right .tp-pi-intro {
text-align: right;
}
.tp-pi-image {
margin-bottom: 30px;
}
.tp-pi-image.tp-round-image img {
border-radius: 50%;
}
.tp-pi-name {
margin-bottom: 15px;
}
.tp-pi-readmore {
margin-top: 30px;
}
.tp-pi-readmore a{
display: inline-flex;
}
.tp-pi-readmore i {
margin-left: 5px;
}
.tp-personal-info.tp-pi-center .tp-pi-readmore {
text-align: center;
}
.tp-personal-info.tp-pi-right .tp-pi-readmore {
text-align: right;
} .tp-contact-info ul {
list-style: none;
padding: 0;
margin: 0 !important;
}
.tp-contact-info ul li {
padding: 8px 0 8px 40px !important;
border: none;
margin: 0 !important;
}
.tp-contact-info ul li p:last-child {
margin: 0;
}
.tp-contact-info ul li i {
float: left;
margin-left: -40px;
width: 30px;
text-align: center;
line-height: inherit;
} .tp-accordion .tp-accordion-content-wrap ul {
list-style: disc outside;
margin-left: 20px;
}
.tp-style1-accordion .tp-accordion-box {
border: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 0;
}
.tp-style1-accordion .tp-accordion-box:last-child {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tp-style1-accordion .tp-accordion-header {
padding: 15px 40px 15px 15px;
cursor: pointer;
border-bottom: none;
position: relative;
}
.tp-style1-accordion .tp-accordion-header:after {
content: "\f102";
font-family: "essentialicon";
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
opacity: 0.6;
}
.tp-style1-accordion .tp-accordion-box.open .tp-accordion-header:after {
content: "\f244";
}
.tp-style1-accordion .tp-accordion-content-wrap {
padding: 25px;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tp-style2-accordion .tp-accordion-box {
margin-bottom: 15px;
cursor: pointer;
}
.tp-style2-accordion .tp-accordion-content-wrap {
padding: 25px;
border: 1px solid var(--total-template-color);
}
.tp-style2-accordion .tp-accordion-header {
position: relative;
overflow: hidden;
padding: 15px 20px 15px 60px;
text-transform: uppercase;
color: #fff;
background: var(--total-template-color);
}
.tp-style2-accordion .tp-accordion-header:after {
content: "";
position: absolute;
height: 40px;
width: 50px;
left: -10px;
top: 50%;
line-height: 35px;
text-align: center;
background: #fff;
transform: translateY(-50%) skewX(-15deg);
}
.tp-style2-accordion .tp-accordion-header:before {
content: "\eab2";
font-family: "IcoFont";
position: absolute;
height: 40px;
width: 35px;
left: 0;
top: 50%;
line-height: 40px;
text-align: center;
color: var(--total-template-color);
transform: translateY(-50%);
z-index: 9;
}
.tp-style2-accordion .tp-accordion-box.open .tp-accordion-header:before {
content: "\eab9";
} .tp-icon-text .tp-it-title {
margin-bottom: 20px;
}
.tp-it-pos-top {
text-align: center;
}
.tp-it-pos-top.tp-icon-text>i {
margin-bottom: 20px;
}
.tp-it-pos-left.tp-icon-text>i {
font-size: 30px;
float: left;
margin-top: 10px;
}
.tp-it-pos-left .tp-it-content {
margin-left: 60px;
}
.tp-it-pos-right.tp-icon-text>i {
float: right;
margin-top: 10px;
}
.tp-it-pos-right .tp-it-content {
text-align: right;
margin-right: 60px;
}
.tp-it-excerpt {
margin-bottom: 20px;
}
.tp-it-readmore a i {
margin-left: 5px;
}
.tp-it-style-default.tp-icon-text>i {
font-size: 38px;
}
.tp-it-style-circle.tp-icon-text>i,
.tp-it-style-square.tp-icon-text>i,
.tp-it-style-circle-bg.tp-icon-text>i,
.tp-it-style-square-bg.tp-icon-text>i {
height: 70px;
width: 70px;
text-align: center;
line-height: 70px;
font-size: 22px;
}
.tp-it-style-circle-bg.tp-icon-text>i,
.tp-it-style-square-bg.tp-icon-text>i {
background: var(--total-template-color);
color: #fff;
}
.tp-it-style-circle.tp-icon-text>i,
.tp-it-style-square.tp-icon-text>i {
border: 1px solid #666;
}
.tp-it-style-circle.tp-icon-text>i,
.tp-it-style-circle-bg.tp-icon-text>i {
border-radius: 50%;
}
.tp-it-pos-right.tp-it-style-circle .tp-it-content,
.tp-it-pos-right.tp-it-style-square .tp-it-content,
.tp-it-pos-right.tp-it-style-circle-bg .tp-it-content,
.tp-it-pos-right.tp-it-style-square-bg .tp-it-content {
margin-right: 100px;
}
.tp-it-pos-left.tp-it-style-circle .tp-it-content,
.tp-it-pos-left.tp-it-style-square .tp-it-content,
.tp-it-pos-left.tp-it-style-circle-bg .tp-it-content,
.tp-it-pos-left.tp-it-style-square-bg .tp-it-content {
margin-left: 100px;
} .tp-cta {
display: flex;
align-items: center;
background-position: center;
background-size: cover;
}
.tp-cta-content-wrap {
flex-grow: 1;
line-height: 1.8;
font-size: 1.2em;
}
.tp-cta-title:last-child {
margin-bottom: 0;
}
.tp-cta.tp-button-left .tp-cta-buttons {
order: -1;
padding-right: 50px;
}
.tp-cta.tp-button-right .tp-cta-buttons {
padding-left: 50px;
}
.tp-cta.tp-button-center {
display: block;
text-align: center;
}
.tp-cta.tp-button-center .tp-cta-buttons,
.tp-cta.tp-button-left-bottom .tp-cta-buttons,
.tp-cta.tp-button-right-bottom .tp-cta-buttons {
margin-top: 40px;
}
.tp-cta.tp-button-left-bottom {
display: block;
text-align: left;
}
.tp-cta.tp-button-right-bottom {
display: block;
text-align: right;
}
.tp-round-button.tp-cta-buttons a {
border-radius: 100px;
} .tp-countdown {
text-align: center;
}
.tp-countdown>div {
display: inline-block;
text-align: center;
margin: 0.2em;
padding: 0.4em 0.2em;
line-height: 1;
border: 2px solid #fff;
min-width: 2em;
font-weight: bold;
}
.tp-countdown.tp-enable-shadow>div {
box-shadow: 0px 14px 10px -6px rgba(0, 0, 0, 0.3);
}
.tp-countdown.circular>div {
border-radius: 50%;
min-width: 3em;
min-height: 3em;
vertical-align: middle;
position: relative;
}
.tp-countdown.circular>div>div {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.tp-countdown label {
display: block;
margin-top: 0.2em;
}
.tp-countdown.circular label {
position: relative;
top: 50%;
}
.tp-countdown.border-block>div {
border-left: none;
border-right: none;
border-bottom: none;
border-width: 5px;
}
.tp-countdown.diamond>div {
min-width: 2.4em;
min-height: 2.4em;
vertical-align: middle;
position: relative;
transform: rotate(45deg);
margin: 0.6em;
border-radius: 12px;
}
.tp-countdown.diamond>div>div {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-45deg);
} .tp-counter-widget .tp-counter-count:before {
content: attr(data-prefix);
margin-right: 5px;
}
.tp-counter-widget .tp-counter-count:after {
content: attr(data-suffix);
margin-left: 5px;
}
.tp-counter-widget .odometer-inside {
display: inline;
}
.tp-counter-widget .tp-counter {
float: none;
width: auto;
margin-left: 0;
text-align: center;
margin-bottom: 0;
position: relative;
}
.tp-counter-widget .tp-counter-count {
letter-spacing: 3px;
}
.tp-counter-widget.style1 .tp-counter {
text-align: center;
border: 2px solid var(--total-template-color);
border-top: 0;
padding: 0 20px 25px;
position: relative;
}
.tp-counter-widget.style1 .tp-counter .tp-counter-left {
position: absolute;
width: 30%;
left: 0;
top: 0;
height: 2px;
background: var(--total-template-color);
}
.tp-counter-widget.style1 .tp-counter .tp-counter-right {
position: absolute;
width: 30%;
right: 0;
top: 0;
height: 2px;
background: var(--total-template-color);
}
.tp-counter-widget.style1 .tp-counter-count {
font-size: 2.8em;
line-height: 1;
margin-bottom: 10px;
letter-spacing: 3px;
}
.tp-counter-widget.style1 .tp-counter-icon {
display: inline-block;
font-size: 36px;
color: var(--total-template-color);
position: relative;
transform: translate(0, -17px);
line-height: 36px;
}
.tp-counter-widget.style1 .tp-counter-title {
margin-top: 15px;
margin: 0;
}
.tp-counter-widget.style2 .tp-counter-icon {
font-size: 2em;
line-height: 1;
padding-top: 20px;
margin-bottom: 40px;
position: relative;
}
.tp-counter-widget.style2 .tp-counter-icon span {
position: absolute;
top: 100%;
left: 50%;
width: 30px;
height: 2px;
background: #fff;
margin-left: -15px;
margin-top: 20px;
}
.tp-counter-widget.style2 .tp-counter-count {
font-size: 3em;
line-height: 1;
}
.tp-counter-widget.style2 .tp-counter-title {
margin: 0;
padding: 14px 10px;
}
.tp-counter-widget.style2 .tp-counter .tp-counter-left {
position: absolute;
left: 0;
top: 0;
width: 30px;
height: 2px;
background: #fff;
transition: all 0.3s ease;
}
.tp-counter-widget.style2 .tp-counter .tp-counter-left span {
position: absolute;
left: 0;
top: 0;
height: 30px;
width: 2px;
background: #fff;
transition: all 0.3s ease;
}
.tp-counter-widget.style2 .tp-counter .tp-counter-right {
position: absolute;
right: 0;
bottom: 0;
width: 30px;
height: 2px;
background: #fff;
transition: all 0.3s ease;
}
.tp-counter-widget.style2 .tp-counter .tp-counter-right span {
position: absolute;
right: 0;
bottom: 0;
height: 30px;
width: 2px;
background: #fff;
transition: all 0.3s ease;
}
.tp-counter-widget.style2 .tp-counter:hover .tp-counter-left,
.tp-counter-widget.style2 .tp-counter:hover .tp-counter-right {
width: 100%;
}
.tp-counter-widget.style3 .tp-counter {
background: #fff;
padding: 40px 20px;
box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.3);
position: relative;
}
.tp-counter-widget.style3 .tp-counter>span {
position: absolute;
left: 10px;
right: 10px;
top: 10px;
bottom: 10px;
border: 1px solid #666;
}
.tp-counter-widget.style3 .tp-counter-icon {
font-size: 2em;
line-height: 1;
margin-bottom: 25px;
}
.tp-counter-widget.style3 .tp-counter-count {
font-size: 3em;
line-height: 1;
margin-bottom: 10px;
}
.tp-counter-widget.style4 .tp-counter {
text-align: left;
padding-left: 80px;
margin-bottom: 0;
}
.tp-counter-widget.style4 .tp-counter-icon {
font-size: 42px;
width: 70px;
float: left;
text-align: center;
opacity: 0.8;
margin-left: -80px;
line-height: 1;
margin-top: 10px;
}
.tp-counter-widget.style4 .tp-counter-count {
font-size: 2em;
line-height: 1;
margin-bottom: 10px;
} .tp-image-box.image-top .tp-ib-image {
margin: 0 auto 15px;
}
.tp-ib-title {
margin-bottom: 15px;
}
.tp-ib-readmore {
margin-top: 20px;
font-size: 0.9em;
}
.tp-ib-readmore a>i {
margin-left: 5px;
color: inherit !important;
}
.tp-image-box.tp-left {
text-align: left;
}
.tp-image-box.tp-right {
text-align: right;
}
.tp-image-box.tp-center {
text-align: center;
}
.tp-image-box.image-left .tp-image-box-wrap,
.tp-image-box.image-right .tp-image-box-wrap {
display: flex;
}
.tp-image-box.image-left .tp-ib-image {
margin-right: 3%;
}
.tp-image-box.image-right .tp-ib-image {
margin-left: 3%;
order: 1;
} .tp-iw-likes {
position: absolute;
left: 0;
right: 0;
bottom: 0;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
padding: 60px 10px 15px;
z-index: 99;
text-align: right;
color: #fff;
font-size: 0.9em;
line-height: 1;
} .owl-carousel .tp-portfolio-carousel-item {
transition: transform 0.3s ease;
transform: scale(1);
}
.owl-carousel .tp-portfolio-carousel-item.tp-loading {
transform: scale(0.4);
}
.tp-portfolio-filter-wrap {
border: 2px solid #eee;
border-radius: 30px;
float: left;
margin-bottom: 40px;
display: flex;
overflow: hidden;
}
.tp-portfolio-filter-btn {
display: inline-block;
padding: 10px 20px;
cursor: pointer;
border-right: 2px solid #eee;
}
.tp-portfolio-filter-btn.btn-active {
background: #eee;
}
.tp-portfolio-filter-btn:last-child {
border-right: 0;
}
.tp-owl-nav {
float: right;
border: 2px solid #eee;
border-radius: 30px;
margin-bottom: 40px;
display: flex;
}
.tp-owl-nav .owl-prev,
.tp-owl-nav .owl-next {
display: inline-flex;
padding: 10px 20px;
cursor: pointer;
color: #ccc;
}
.tp-owl-nav .owl-prev {
border-right: 2px solid #eee;
}
.tp-portfolio-carousel-image-wrap {
margin-bottom: 20px;
position: relative;
overflow: hidden;
}
.tp-portfolio-carousel-image-wrap img {
transform: scale(1);
transition: all 0.3s ease;
}
.tp-portfolio-carousel-image-wrap:hover img {
transform: scale(1.3);
}
.tp-portfolio-carousel-image {
position: absolute;
right: 10px;
bottom: 10px;
height: 40px;
width: 40px;
text-align: center;
line-height: 40px;
background: rgba(0, 0, 0, 0.3);
color: #fff !important;
}
.tp-portfolio-carousel-wrap h5 {
margin: 0;
font-size: 1em;
border-bottom: 5px solid #eee;
text-align: center;
padding-bottom: 20px;
}
.tp-portfolio-carousel .tp-portfolio-carousel-slides.owl-carousel .owl-stage-outer {
margin-bottom: 40px;
}
.tp-portfolio-carousel .owl-dots {
text-align: center;
margin: 0 0 40px;
}
.tp-portfolio-carousel .owl-carousel .owl-dot {
display: inline-block;
height: 15px;
width: 15px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.2);
margin: 0 5px;
}
.tp-portfolio-carousel .owl-carousel .owl-dot.active {
background: rgba(0, 0, 0, 0.4);
} .tp-progress.tp-pb-style2 .tp-progress-bar-length {
position: relative;
}
.tp-progress.tp-pb-style2 .tp-progress-bar-length span {
background: #222;
color: #fff;
padding: 0 6px;
border-radius: 3px;
opacity: 0;
transform: translateX(50%);
margin-bottom: 10px;
font-size: 12px;
}
.tp-progress.tp-pb-style2 .tp-progress-bar-length span:before {
content: "";
border-width: 6px;
border-style: solid;
border-color: #222 transparent transparent transparent;
position: absolute;
top: 100%;
transform: translateX(-50%);
left: 50%;
}
.tp-progress.tp-pb-style3 .tp-progress-bar {
height: 14px;
padding: 3px;
background: #f0f0f0;
border-radius: 20px;
}
.tp-progress.tp-pb-style3 .tp-progress-bar-length {
position: relative;
border-radius: 20px;
}
.tp-progress.tp-pb-style3 .tp-progress-bar-length span {
color: #fff;
border-radius: 3px;
opacity: 0;
transform: translateX(50%);
margin-bottom: 15px;
font-size: 10px;
width: 32px;
height: 32px;
line-height: 36px;
text-align: center;
}
.tp-progress.tp-pb-style3 .tp-progress-bar-length span:before {
content: "";
position: absolute;
background: #444;
border-radius: 0px 30px 30px 30px;
width: 32px;
height: 32px;
left: 0;
top: 0;
z-index: -1;
transform: rotate(225deg);
}
.tp-progress.tp-pb-style4 .tp-progress-bar-length {
position: relative;
border-radius: 20px;
}
.tp-progress.tp-pb-style4 .tp-progress-bar {
height: 10px;
border-radius: 20px;
}
.tp-progress.tp-pb-style4 .tp-progress-bar-length span {
background: var(--total-template-color);
color: #fff;
height: 40px;
width: 40px;
opacity: 0;
transform: translate(50%, 50%);
margin-bottom: -4px;
font-size: 12px;
border-radius: 50%;
line-height: 40px;
text-align: center;
} .tp-testimonial-widget h5 {
font-size: 1em;
line-height: 1.2;
margin-bottom: 5px;
}
.tp-testimonial-widget .designation {
font-size: 0.85em;
opacity: 0.9;
}
.tp-testimonial-widget.style1 {
background: #fff;
padding: 25px;
margin-bottom: 40px;
color: #333;
box-shadow: 2px 2px 18px -6px rgba(0, 0, 0, 0.2);
transition: all 0.5s ease;
border: 1px solid #f6f6f6;
}
.tp-testimonial-widget.style1 .tp-testimonial-excerpt {
margin: 0 0 20px;
font-size: 0.9em;
}
.tp-testimonial-widget.style1 .tp-testimonial-footer {
display: flex;
align-items: center;
}
.tp-testimonial-widget.style1 img {
width: 80px;
height: 80px;
object-fit: cover;
margin-right: 20px;
border-radius: 50%;
}
.tp-testimonial-widget.style1 h5,
.tp-testimonial-widget.style2 h5 {
color: #333;
}
.tp-testimonial-widget.style2 {
text-align: center;
background: #fff;
padding: 90px 30px 40px;
border-radius: 3px;
box-shadow: 2px 2px 18px -6px rgba(0, 0, 0, 0.2);
position: relative;
margin-top: 50px !important;
color: #333;
border: 1px solid #f6f6f6;
}
.tp-testimonial-widget.style2 img {
position: absolute;
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
border: 10px solid #fff;
transform: translate(-50%, 0);
left: 50%;
top: -50px;
}
.tp-testimonial-widget.style2 .tp-testimonial-footer {
margin-top: 30px;
}
.tp-testimonial-widget.style3 .tp-testimonial-excerpt {
padding: 35px;
background: #fff;
margin-bottom: 25px;
position: relative;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
color: #333;
}
.tp-testimonial-widget.style3 .tp-testimonial-excerpt:after {
content: "";
border: 12px solid transparent;
position: absolute;
border-top-color: #fff;
height: 20px;
bottom: -24px;
left: 34px;
}
.tp-testimonial-widget.style3 .tp-testimonial-footer {
display: flex;
align-items: center;
}
.tp-testimonial-widget.style3 img {
width: 80px;
height: 80px;
object-fit: cover;
margin-right: 20px;
margin-left: 10px;
border-radius: 50%;
}
.tp-testimonial-widget.style4 {
text-align: center;
}
.tp-testimonial-widget.style4 img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 50%;
margin: 0 auto 30px;
border: 5px solid rgba(0, 0, 0, 0.1);
}
.tp-testimonial-widget.style4 .tp-testimonial-footer {
position: relative;
margin-top: 30px;
}
.tp-testimonial-widget.style4 .tp-testimonial-footer:after {
content: "\f243";
font-family: "essentialicon";
position: absolute;
left: 50%;
top: 0;
height: 2px;
line-height: 2px;
margin-top: -16px;
transform: scale(1.5) translateX(-50%);
opacity: 0.8;
}
.tp-testimonial-slides .tp-testimonial-widget {
margin: 10px;
}
.tp-testimonial-slides .owl-nav {
text-align: center;
margin-top: 50px;
}
.tp-testimonial-slides.owl-carousel .owl-nav .owl-prev,
.tp-testimonial-slides.owl-carousel .owl-nav .owl-next {
display: inline-block;
height: 44px;
width: 44px;
border: 1px solid #fff;
line-height: 44px;
margin: 0 5px;
background: #fff;
color: #333;
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.tp-testimonial-slides .owl-nav .owl-prev i,
.tp-testimonial-slides .owl-nav .owl-next i {
color: #333;
} .tp-social-icons .tp-social-button {
display: inline-block;
background-color: #fff;
color: #333;
text-align: center;
position: relative;
padding: 0;
transition: all 0.3s ease-in-out;
}
.tp-social-icons.si-fade-in .tp-social-button i {
transition: all 0.3s ease-in-out;
}
.tp-social-icons.icon-small .tp-social-button {
font-size: 18px;
width: 40px;
height: 40px;
line-height: 40px;
margin: 3px;
}
.tp-social-icons.icon-normal .tp-social-button {
font-size: 28px;
width: 60px;
height: 60px;
line-height: 60px;
margin: 6px;
}
.tp-social-icons.icon-big .tp-social-button {
font-size: 42px;
width: 90px;
height: 90px;
line-height: 90px;
margin: 12px;
}
.tp-social-icons.icon-large .tp-social-button {
font-size: 70px;
width: 160px;
height: 160px;
line-height: 160px;
margin: 20px;
}
.tp-social-icons.icon-left {
text-align: left;
}
.tp-social-icons.icon-center {
text-align: center;
}
.tp-social-icons.icon-right {
text-align: right;
}
.tp-social-icons.si-fade-in .tp-social-button i {
opacity: 0.8;
}
.tp-social-icons.si-fade-in .tp-social-button:hover i {
opacity: 1;
}
.tp-social-icons.si-zoom .tp-social-button {
transform: scale(1);
}
.tp-social-icons.si-zoom .tp-social-button:hover {
transform: scale(1.05);
}
.tp-social-icons.si-rotate .tp-social-button {
transform: rotate(0deg);
}
.tp-social-icons.si-rotate .tp-social-button:hover {
transform: rotate(360deg);
}
.tp-social-icons.si-slide-up .tp-social-button {
transform: translateY(0);
}
.tp-social-icons.si-slide-up .tp-social-button:hover {
transform: translateY(-5%);
}
.tp-social-icons.style1 .tp-social-button {
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}
.tp-social-icons.style2 .tp-social-button {
border-radius: 50%;
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}
.tp-social-icons.style3 .tp-social-button {
background: none;
border: 2px solid #333;
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}
.tp-social-icons.style4 .tp-social-button {
background: none;
border: 2px solid #333;
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
border-radius: 50%;
}
.tp-social-icons.rounded-corner.icon-small .tp-social-button {
border-radius: 4px;
}
.tp-social-icons.rounded-corner.icon-normal .tp-social-button {
border-radius: 6px;
}
.tp-social-icons.rounded-corner.icon-big .tp-social-button {
border-radius: 8px;
}
.tp-social-icons.rounded-corner.icon-large .tp-social-button {
border-radius: 18px;
}
.tp-social-icons.style6 .tp-social-button:after {
content: "";
position: absolute;
left: 5px;
right: 5px;
top: 5px;
bottom: 5px;
background: #fff;
border-radius: 50%;
z-index: 8;
}
.tp-social-icons.style6 .tp-social-button i {
transform: scale(0.8);
z-index: 9;
position: relative;
}
.tp-social-icons.style6.icon-normal .tp-social-button:after {
margin: 2px;
}
.tp-social-icons.style6.icon-big .tp-social-button:after {
margin: 6px;
}
.tp-social-icons.style6.icon-large .tp-social-button:after {
margin: 10px;
}
.tp-social-icons.style7.icon-small .tp-social-button {
box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.1) inset;
}
.tp-social-icons.style7.icon-normal .tp-social-button {
box-shadow: 0 -6px 0 rgba(0, 0, 0, 0.08) inset;
}
.tp-social-icons.style7.icon-big .tp-social-button {
box-shadow: 0 -8px 0 rgba(0, 0, 0, 0.08) inset;
}
.tp-social-icons.style7.icon-large .tp-social-button {
box-shadow: 0 -12px 0 rgba(0, 0, 0, 0.08) inset;
}
.tp-social-icons a i {
color: inherit !important;
} ul.tp-latest-posts {
margin: 0;
padding: 0;
list-style: none;
}
ul.tp-latest-posts div.tp-lp-title,
ul.tp-latest-posts span.tp-lp-title {
font-weight: bold;
}
ul.tp-latest-posts li {
margin: 0 0 20px !important;
padding: 0;
border: 0;
}
.tp-lp-image {
float: left;
width: 30%;
}
.tp-lp-image+.tp-lp-content {
width: 70%;
float: right;
padding-left: 20px;
font-size: 0.9rem;
}
.tp-lp-date {
font-size: 0.8rem;
opacity: 0.8;
margin-top: 10px;
}
.tp-lp-title a {
color: inherit;
}
.tp-lp-excerpt {
margin-top: 10px;
} #total-preloader-wrap {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: var(--total-preloader-bg-color, #FFF);
z-index: 99999;
overflow: hidden;
}
body.elementor-editor-active #total-preloader-wrap {
display: none;
}
#total-preloader-wrap>div {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
#total-preloader-wrap img {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
} body.tp-boxed #tp-page {
max-width: 1250px;
margin: 0 auto;
position: relative;
background: #fff;
}
.hentry,
.tp-hentry {
margin: 0 0 60px;
}
.byline,
.updated:not(.published) {
display: none;
}
.tp-entry-content p,
.tp-entry-content ul,
.tp-entry-content ol {
margin-bottom: 30px;
}
.tp-entry-content ul ul,
.tp-entry-content ol ol {
margin-bottom: 0;
}
.tp-entry-content li {}
.page-links {
clear: both;
margin: 0 0 15px;
}
#tp-primary {
width: calc(97% - var(--total-sidebar-width, 27%));
float: left;
}
#tp-secondary {
width: var(--total-sidebar-width, 27%);
float: right;
}
.tp-no-sidebar #tp-primary {
width: auto;
float: none;
}
.tp-no-sidebar-condensed #tp-primary {
width: 76%;
float: none;
margin: 0 auto;
}
.tp-left-sidebar #tp-primary {
float: right;
}
.tp-left-sidebar #tp-secondary {
float: left;
} .tp-entry-header .tp-entry-title {
margin-bottom: 30px;
}
.tp-entry-header .tp-entry-title a {
text-decoration: none;
color: inherit;
}
.tp-entry-meta {
margin-bottom: 20px;
font-size: 0.9em;
opacity: 0.9;
}
.tp-entry-meta>span {
display: inline-block;
margin-right: 30px;
}
.tp-entry-meta>span i {
display: inline-block;
margin-right: 5px;
}
.tp-entry-meta a {
color: inherit;
}
.tp-entry-readmore {
margin-top: 40px;
}
.tp-entry-readmore a {
background: var(--total-template-color);
padding: 12px 20px;
line-height: 1.2;
color: #fff;
border: 0;
transition: all 0.3s ease;
display: inline-block;
}
.tp-entry-readmore a:hover {
background: #333;
color: #fff;
}
.tp-entry-comment i {
margin-right: 5px;
}
.tp-post-wrapper {
padding-left: 0;
}
.tp-blog-layout1 .tp-post-info {
float: left;
width: 80px;
text-align: right;
}
.single .tp-blog-layout1 .tp-post-info {
margin-right: 30px;
margin-bottom: 20px;
}
.tp-blog-layout1 .tp-post-info .tp-entry-date {
display: block;
font-size: 0.9em;
margin-bottom: 20px;
}
.tp-blog-layout1 .tp-post-info .tp-entry-date span {
display: block;
text-transform: uppercase;
}
.tp-blog-layout1 .tp-post-info .tp-entry-date span.tp-day {
font-size: 60px;
line-height: 1.3;
color: var(--total-template-color);
}
.tp-blog-layout1 .tp-post-info .tp-entry-author-comment {
font-size: 0.9em;
line-height: 1.4;
}
.tp-blog-layout1 .tp-post-info .tp-entry-author-comment a {
color: inherit;
}
.tp-blog-layout1 .tp-post-info .tp-entry-author {
text-decoration: none;
padding: 20px 0 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
margin-bottom: 10px;
}
.tp-blog-layout1 .tp-post-info .comment-link {
text-transform: lowercase;
}
.tp-blog-layout1 .tp-post-info .comment-link i {
margin-right: 5px;
}
.tp-blog-layout1 .tp-post-info+.tp-post-wrapper {
padding-left: 105px;
}
.tp-blog-layout1 .tp-entry-figure {
text-align: center;
margin-bottom: 25px;
}
.tp-blog-layout1 .tp-entry-header h1.tp-entry-title,
.tp-blog-layout1 .tp-entry-header div.tp-entry-title {
margin-bottom: 40px;
}
.tp-blog-layout1 .tp-post-content {
padding: 0 30px 30px;
background: #fff;
}
.tp-blog-layout1 .tp-post-content .tp-entry-header {
padding-top: 20px;
}
.tp-blog-layout1 .tp-entry-figure+.tp-post-content .tp-entry-header {
background: #fff;
position: relative;
margin-top: -65px;
width: 90%;
padding: 15px 15px 0 30px;
margin-left: -30px;
} .tp-blog-layout2 .entry-section-title {
padding: 40px;
background: rgba(0, 0, 0, 0.02);
}
.tp-blog-layout2 .tp-post-info {
float: left;
width: 20%;
text-align: center;
z-index: 99;
padding-right: 40px;
}
.tp-blog-layout2 .tp-post-info+.tp-post-content {
float: left;
width: 80%;
}
.tp-blog-layout2 .tp-post-date {
text-align: center;
}
.tp-blog-layout2 .tp-entry-date {
display: inline-block;
background: var(--total-template-color);
width: 70px;
color: #fff;
text-align: center;
padding: 10px 15px;
font-size: 0.9em;
line-height: 1.3;
transform: translateY(-50%);
}
.tp-blog-layout2 .tp-day {
display: block;
font-size: 30px;
color: #fff;
}
.tp-blog-layout2 .tp-entry-author-comment {
font-size: 0.9em;
}
.tp-blog-layout2 .tp-entry-author-comment img {
border-radius: 50%;
}
.tp-blog-layout2 .tp-entry-author-comment a {
color: inherit;
}
.tp-blog-layout2 .tp-entry-author {
margin-top: 15px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding-bottom: 10px;
margin-bottom: 10px;
}
.tp-blog-layout2 .comment-link {
text-transform: lowercase;
}
.tp-blog-layout2 .tp-entry-header .tp-entry-title {
margin-bottom: 20px;
}
.tp-blog-layout2 .tp-entry-readmore {
text-align: right;
}
.tp-blog-layout2 .tp-entry-meta{
margin-top: 20px;
} .tp-blog-layout3 .tp-post-content {
background: #fff;
padding: 40px 40px 0;
margin-right: 5%;
margin-left: 5%;
position: relative;
}
.tp-blog-layout3 .tp-entry-figure+.tp-post-content {
margin-top: -100px;
}
.tp-blog-layout3 .tp-entry-header .tp-entry-title {
margin-bottom: 20px;
}
.tp-blog-layout3 .tp-post-info>span {
margin-right: 20px;
}
.tp-blog-layout3 .tp-post-info a {
color: inherit;
} .tp-blog-layout4-first {
position: relative;
}
.tp-blog-layout4-first .tp-entry-figure {
position: relative;
}
.tp-blog-layout4-first .tp-entry-figure a:after {
display: block;
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
transition: all 0.3s ease;
}
.tp-blog-layout4-first:hover .tp-entry-figure a:after {
background: rgba(0, 0, 0, 0.6);
}
.tp-blog-layout4-first .tp-post-content {
position: absolute;
left: 0;
right: 0;
top: 50%;
transform: translateY(-50%);
text-align: center;
color: #fff;
padding: 40px 100px;
}
.tp-blog-layout4-first .tp-post-content a {
color: #fff;
}
.tp-blog-layout4-first .tp-post-wrapper {
min-height: 400px;
background: #333;
}
.tp-blog-layout4-first .tp-post-wrapper img {
min-height: 400px;
object-fit: cover;
}
.tp-hentry-wrap {
margin-left: -5%;
}
.tp-hentry-wrap .tp-blog-layout4.tp-hentry {
width: 45%;
float: left;
margin-left: 5%;
}
.tp-hentry-wrap .tp-blog-layout4.tp-hentry:nth-child(2n + 1) {
clear: both;
}
.tp-blog-layout4 .tp-entry-figure {
margin-bottom: 20px;
}
.tp-blog-layout4 .tp-entry-header .tp-entry-title {
font-size: 1.3em;
}
.tp-blog-layout4 .tp-entry-meta,
.tp-blog-layout4-first .tp-entry-meta {
text-transform: uppercase;
margin-bottom: 10px;
font-size: 0.85em;
}
.tp-blog-layout4-first .tp-entry-header+.tp-entry-meta {
margin-bottom: 0;
} .single .tp-entry-header,
.single .tp-entry-figure {
margin-bottom: 30px;
}
.single .tp-entry-header .tp-entry-title {
margin-bottom: 0;
}
.single .tp-entry-header .tp-sub-title {
margin-top: 20px;
}
.tp-single-entry-content,
.tp-single-entry-figure {
margin-bottom: 40px;
}
.tp-single-entry-content p,
.tp-single-entry-content ul,
.tp-single-entry-content ol {
margin-bottom: 30px;
}
.tp-single-entry-meta {
margin-bottom: 40px;
font-size: 0.9em;
}
.tp-single-entry-meta a {
color: inherit;
}
.tp-single-entry-meta img {
border-radius: 50%;
margin-right: 10px;
}
.tp-single-entry-meta>span {
display: inline-block;
margin-right: 30px;
opacity: 0.8;
}
.tp-single-entry-meta .tp-entry-comment i {
margin-right: 5px;
}
.tp-single-entry-content,
.tp-single-entry-figure {
margin-bottom: 40px;
}
blockquote:not(.wp-block-quote) {
background: #f6f6f6;
padding: 40px;
clear: both;
margin: 0 0 30px;
border-left: 3px solid var(--total-template-color);
font-style: italic;
font-size: 1.1em;
}
blockquote:not(.wp-block-quote) p:last-child {
margin-bottom: 0;
}
blockquote:not(.wp-block-quote) cite {
font-size: 0.9em;
display: block;
margin-top: 20px;
}
.tp-single-entry-footer {
margin-bottom: 40px;
font-size: 0.7em;
line-height: 1;
}
.tp-single-entry-footer span {
margin-right: 20px;
display: inline-block;
text-transform: uppercase;
font-size: 1.2em;
}
.tp-single-entry-footer span i {
margin-right: 5px;
}
.tp-single-entry-footer a {
background: rgba(0, 0, 0, 0.1);
padding: 6px 10px;
display: inline-block;
margin-right: 10px;
color: #333 !important;
border-radius: 20px;
}
.tp-single-entry-footer a:hover {
background: #333;
color: #eee !important;
}
.tp-social-share {
margin-bottom: 40px;
text-transform: uppercase;
font-size: 0.9em;
display: flex;
justify-content: space-between;
align-items: center;
}
.tp-social-share>span i {
margin-right: 10px;
display: inline-block;
}
.totalplus-share-buttons {
float: right;
margin-left: 40px;
}
.totalplus-share-buttons a {
display: inline-block;
line-height: 38px;
width: 38px;
height: 38px;
margin-left: 10px;
margin-bottom: 10px;
text-align: center;
color: #fff;
background: #333;
font-size: 16px;
border-radius: 30px;
}
.totalplus-share-buttons a i {
color: inherit;
}
.totalplus-share-buttons .twitter-share {
background: #000;
}
.totalplus-share-buttons .facebook-share {
background: #204385;
}
.totalplus-share-buttons .pinterest-share {
background: #ca2128;
}
.totalplus-share-buttons .linkedin-share {
background: #02669a;
}
.totalplus-share-buttons .whatsapp-share {
background: #25D366;
}
.tp-post-navigation {
margin-bottom: 40px;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
padding: 20px 0;
font-size: 1.1em;
line-height: 1.4;
}
.tp-post-navigation .tp-nav-links {
display: flex;
}
.tp-post-navigation .tp-nav-previous,
.tp-post-navigation .tp-nav-next {
width: 50%;
padding: 0 20px;
}
.tp-post-navigation .tp-nav-next {
text-align: right;
border-left: 1px solid #eee;
}
.tp-post-navigation a {
color: inherit;
}
.tp-post-navigation a span {
display: block;
text-transform: uppercase;
font-size: 0.7em;
margin-bottom: 10px;
}
.tp-post-navigation .tp-nav-previous a span i {
margin-right: 10px;
}
.tp-post-navigation .tp-nav-next a span i {
margin-left: 10px;
}
.totalplus-author-info {
margin-bottom: 60px;
border: 6px solid rgba(0, 0, 0, 0.05);
padding: 30px;
}
.totalplus-author-avatar {
float: left;
}
.totalplus-author-description {
padding-left: 130px;
}
.totalplus-author-icons a {
color: #666;
padding: 10px;
}
.tp-related-post {
margin-bottom: 40px;
}
ul.tp-related-post-wrap {
margin: 0 0 0 -3%;
padding: 0;
list-style: none;
}
ul.tp-related-post-wrap li {
float: left;
width: 30.33%;
margin-left: 3%;
}
ul.tp-related-post-wrap .relatedthumb {
margin-bottom: 15px;
}
ul.tp-related-post-wrap h4 {
font-size: 1.1em;
}
ul.tp-related-post-wrap h4 a {
color: inherit;
} .tp-content-area .widget-title {
margin-bottom: 30px;
}
.tp-widget-area .widget {
margin-bottom: var(--total-sidebar-widget-spacing, 50px);
}
.tp-widget-area .widget .widget-title,
.tp-widget-area .widget h1,
.tp-widget-area .widget h2,
.tp-widget-area .widget h3,
.tp-widget-area .widget h4,
.tp-widget-area .widget h5,
.tp-widget-area .widget h6 {
color: var(--total-sidebar-title-color, var(--total-content-header-color, #000));
font-family: var(--total-sidebar-heading-family, var(--total-h-family, var(--total-h5-family, Oswald)));
font-style: var(--total-sidebar-heading-style, normal);
font-weight: var(--total-sidebar-heading-weight, 400);
letter-spacing: var(--total-sidebar-heading-letter-spacing, 0);
line-height: var(--total-sidebar-heading-line-height, 1.3);
text-decoration: var(--total-sidebar-heading-text-decoration, none);
text-transform: var(--total-sidebar-heading-text-transform, none);
}
.tp-widget-area .widget .widget-title,
.comment-reply-title,
.comments-area .comments-title,
.tp-related-post .tp-related-post-title {
font-family: var(--total-sidebar-heading-family, var(--total-h-family, var(--total-h5-family, Oswald)));
font-style: var(--total-sidebar-heading-style, normal);
font-weight: var(--total-sidebar-heading-weight, 400);
font-size: var(--total-sidebar-heading-size, 22px);
letter-spacing: var(--total-sidebar-heading-letter-spacing, 0);
line-height: var(--total-sidebar-heading-line-height, 1.3);
text-decoration: var(--total-sidebar-heading-text-decoration, none);
text-transform: var(--total-sidebar-heading-text-transform, none);
}
.tp-widget-area .widget {
color: var(--total-sidebar-content-color, var(--total-content-text-color, #333));
font-family: var(--total-sidebar-family, var(--total-body-family, Poppins));
font-style: var(--total-sidebar-style, normal);
font-weight: var(--total-sidebar-weight, 400);
font-size: var(--total-sidebar-size, 16px);
letter-spacing: var(--total-sidebar-letter-spacing, 0);
line-height: var(--total-sidebar-line-height, 1.3);
text-decoration: var(--total-sidebar-text-decoration, none);
text-transform: var(--total-sidebar-text-transform, none);
}
.tp-widget-area .widget a {
color: var(--total-sidebar-link-color);
}
.tp-widget-area .widget a:hover {
color: var(--total-sidebar-link-hover-color, var(--total-sidebar-link-color));
}
.tp-sidebar-style1 .tp-widget-area .widget-title {
position: relative;
padding-bottom: 15px;
margin-bottom: 25px;
}
.tp-sidebar-style1 .tp-widget-area .widget-title:after {
content: "";
position: absolute;
left: 0;
top: 100%;
width: 40px;
background: var(--total-sidebar-title-color, var(--total-template-color));
height: 2px;
}
.tp-sidebar-style2 .tp-widget-area .widget-title {
margin-bottom: 25px;
}
.tp-sidebar-style2 .tp-widget-area .widget {
position: relative;
border: 1px solid var(--total-sidebar-border-color, rgba(0, 0, 0, 0.05));
padding: 25px;
}
.tp-sidebar-style2 .tp-widget-area .widget:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: -1px;
height: 4px;
background: var(--total-sidebar-title-color, var(--total-template-color));
}
.tp-sidebar-style3 .tp-widget-area .widget-title {
border-left: 6px solid var(--total-sidebar-title-color, var(--total-template-color));
padding: 0 15px;
line-height: var(--total-sidebar-heading-line-height, 1.2);
text-transform: var(--total-sidebar-heading-text-transform, uppercase);
margin-bottom: 25px;
}
.comment-reply-title:after,
.comments-title:after {
content: inherit;
}
.tp-sidebar-style1 .comment-reply-title,
.tp-sidebar-style1 .comments-area .comments-title,
.tp-sidebar-style1 .tp-related-post .tp-related-post-title {
position: relative;
padding-bottom: 15px;
margin-bottom: 30px;
display: block;
}
.tp-sidebar-style1 .comment-reply-title:after,
.tp-sidebar-style1 .comments-area .comments-title:after,
.tp-sidebar-style1 .tp-related-post .tp-related-post-title:after {
content: "";
position: absolute;
left: 0;
top: 100%;
width: 40px;
height: 2px;
background: var(--total-sidebar-title-color, var(--total-template-color));
}
.tp-sidebar-style2 .comment-reply-title,
.tp-sidebar-style2 .comments-area .comments-title,
.tp-sidebar-style2 .tp-related-post .tp-related-post-title {
margin-bottom: 20px;
}
.tp-sidebar-style2 .comments-area,
.tp-sidebar-style2 .tp-related-post {
position: relative;
border: 1px solid var(--total-sidebar-border-color, rgba(0, 0, 0, 0.05));
padding: 25px;
}
.tp-sidebar-style2 .comments-area:before,
.tp-sidebar-style2 .tp-related-post:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: -1px;
height: 4px;
background: var(--total-sidebar-title-color, var(--total-template-color));
}
.tp-sidebar-style3 .comment-reply-title,
.tp-sidebar-style3 .comments-area .comments-title,
.tp-sidebar-style3 .tp-related-post .tp-related-post-title {
border-left: 6px solid var(--total-sidebar-title-color, var(--total-template-color));
padding: 0 15px;
line-height: 1.2;
margin-bottom: 30px;
}
.tp-widget-area ul {
list-style: none;
padding: 0;
margin: 0;
}
.tp-widget-area li {
margin-bottom: 15px;
}
.tp-widget-area ul ul {
margin-top: 15px;
margin-left: 15px;
}
.tp-widget-area li:last-child {
margin-bottom: 0;
}
.tp-widget-area a {
text-decoration: none;
} .comment-content a {
word-wrap: break-word;
}
.bypostauthor {
display: block;
}
.author-email-url {
margin-left: -2%;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
float: left;
margin-left: 2%;
width: 31.33333%;
}
.author-email-url input {
width: 100%;
}
.comment-form .form-submit {
margin-bottom: 0;
}
.comments-area {
margin-bottom: 40px;
}
.logged-in-as,
.comment-notes {
font-size: 0.9em;
}
.logged-in-as a {
color: inherit;
}
.comments-area ul {
list-style: none;
margin: 0;
padding: 0;
}
.comments-area li.comment .children {
display: block;
margin: 0 0 0 30px;
padding: 0px;
list-style: none;
}
article.comment-section-title {
background: #fff;
margin: 0 0 30px;
position: relative;
border: 1px solid #eee;
padding: 30px;
}
.comment-list a {
color: #404040;
}
.comment-list a:hover {
color: var(--total-template-color);
}
.comment-list .comment-respond {
margin-bottom: 30px;
background: #fff;
padding: 20px;
}
.comment-list .vcard img {
border-radius: 50%;
margin-right: 10px;
}
.comment-list .vcard .fn {
font-weight: normal;
font-size: 16px;
}
.comment-list .edit-link {
position: absolute;
right: 0;
top: 0;
}
.comment-list .edit-link a {
font-size: 14px;
display: inline-block;
padding: 10px;
}
.comment-list .comment-meta {
margin-bottom: 15px;
}
.comment-list .comment-metadata {
border-top: 1px solid #eee;
padding-top: 10px;
font-size: 14px;
}
.comment-list .comment-metadata a {
float: left;
}
.comment-list .comment-metadata .reply {
float: right;
}
#cancel-comment-reply-link {
float: right;
}
.comment-navigation .tp-nav-previous a,
.comment-navigation .tp-nav-next a {
background: var(--total-template-color);
color: #fff;
display: inline-block;
padding: 0 10px;
font-size: 12px;
line-height: 22px;
position: relative;
}
.comment-navigation .tp-nav-next a {
margin-right: 13px;
}
.comment-navigation .tp-nav-next a:after {
content: "";
position: absolute;
border-left: 11px solid var(--total-template-color);
border-top: 11px solid transparent;
border-bottom: 11px solid transparent;
top: 0;
right: -11px;
}
.comment-navigation .tp-nav-previous a {
margin-left: 11px;
}
.comment-navigation .tp-nav-previous a:after {
content: "";
position: absolute;
border-right: 11px solid var(--total-template-color);
border-top: 11px solid transparent;
border-bottom: 11px solid transparent;
top: 0;
left: -11px;
}
.no-comments {
color: var(--total-template-color);
}
.pagination {
clear: both;
text-align: center;
margin-bottom: 60px;
}
.pagination .page-numbers {
display: inline-block;
margin: 0 2px;
background: var(--total-template-color);
color: #fff;
padding: 16px 22px;
line-height: 1;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
background: #333;
color: #fff;
} .tp-entry-content .wp-smiley,
.comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
} embed,
iframe,
object {
max-width: 100%;
vertical-align: middle;
} .wp-caption {
margin-bottom: 15px;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin: 0 auto;
}
.wp-caption-text {
text-align: center;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
} .gallery {
margin-bottom: 15px;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-caption {
display: block;
} #tp-masthead {
z-index: 999;
background: none;
padding: 0;
}
.tp-header-above #tp-masthead {
position: relative;
}
.tp-header-over #tp-masthead {
position: absolute;
left: 0;
right: 0;
} .tp-main-header {
padding: var(--total-page-banner-padding-top-desktop, 45px) var(--total-page-banner-padding-right-desktop, 0) var(--total-page-banner-padding-bottom-desktop, 45px) var(--total-page-banner-padding-left-desktop, 0);
margin-bottom: 60px;
position: relative;
background-image: var(--total-page-banner-bg-url);
background-size: var(--total-page-banner-bg-size, cover);
background-position: var(--total-page-banner-bg-position, center center);
background-repeat: var(--total-page-banner-bg-repeat, no-repeat);
background-attachment: var(--total-page-banner-bg-attachment, scroll);
background-color: var(--total-page-banner-bg-color, #F7F9FD);
color: var(--total-page-banner-title-color, #000);
}
.tp-no-header-space .tp-main-header {
margin-bottom: 0;
}
.tp-no-header-space.tp-hide-titlebar .tp-site-header {
padding-bottom: 0;
}
.tp-header-over.tp-hide-titlebar #tp-masthead {
position: relative;
}
.tp-main-header.tp-bg-has-image:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: var(--total-page-banner-bg-overlay, transparent);
opacity: 0.9;
}
.tp-main-header>.tp-container {
position: relative;
}
.tp-header-title {
margin-bottom: 20px;
}
.tp-main-title {
margin: 0 0 15px;
color: var(--total-page-banner-title-color, #000);
font-family: var(--total-page-banner-family, var(--total-h-family, var(--total-h1-family, Oswald)));
font-style: var(--total-page-banner-style, normal);
font-weight: var(--total-page-banner-weight, 400);
font-size: var(--total-page-banner-size, 38px);
letter-spacing: var(--total-page-banner-letter-spacing, 0);
line-height: var(--total-page-banner-line-height, 1.3);
text-decoration: var(--total-page-banner-text-decoration, none);
text-transform: var(--total-page-banner-text-transform, none);
}
.tp-main-title:last-child,
.tp-sub-title:last-child {
margin-bottom: 0;
}
.tp-sub-title {
margin-bottom: 15px;
font-size: 1.2em;
color: var(--total-page-banner-title-color, #000);
} .tp-main-header.tp-banner-style2 {
text-align: center;
} .tp-main-header.tp-banner-style3 .tp-container {
display: flex;
align-items: center;
justify-content: space-between;
}
.tp-main-header.tp-banner-style3 .tp-header-title {
margin-bottom: 0;
}
.tp-container.tp-fullwidth-container {
width: 100%;
padding-left: 20px;
padding-right: 20px;
} .tp-top-header {
position: relative;
background: var(--total-th-bg-color, var(--total-template-color));
padding: var(--total-th-padding, 15px) 0;
color: var(--total-th-text-color, #fff);
font-family: var(--total-th-family, var(--total-body-family, Poppins));
font-style: var(--total-th-style, normal);
font-weight: var(--total-th-weight, 400);
font-size: var(--total-th-size, 14px);
letter-spacing: var(--total-th-letter-spacing, 0);
line-height: var(--total-th-line-height, 1.6);
text-decoration: var(--total-th-text-decoration, none);
text-transform: var(--total-th-text-transform, none);
z-index: 9;
}
.tp-mobile-top-header {
display: none;
}
.tp-top-header .tp-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.tp-top-header a {
text-decoration: none;
color: var(--total-th-anchor-color, #fff);
}
.tp-top-header a:hover {
color: var(--total-th-anchor-hover-color, #FFF);
}
.tp-top-header a i {
color: inherit;
font-size: inherit;
}
.tp-top-header p {
margin-bottom: 0;
}
.tp-top-header ul {
list-style: none;
padding: 0;
margin: 0;
}
.th-social a {
padding: 5px 10px;
}
.th-menu>ul>li {
display: inline-block;
margin: 0 8px;
}
.tp-th-right .widget {
margin: 0;
}
.tp-top-header .widget_polylang ul li {
display: inline-block;
margin: 0 5px;
} #tp-site-branding {
display: flex;
flex-shrink: 0;
}
#tp-site-branding.tp-below-logo {
flex-direction: column;
justify-content: center;
}
#tp-site-branding.tp-inline-logo {
align-items: center;
}
.tp-header-widget .widget:last-child {
margin-bottom: 0;
}
.tp-site-title-tagline .tp-site-description {
margin: 0;
} .tp-site-header .tp-header {
position: relative;
background: none;
z-index: 99;
padding: 0;
border: 0;
transition: none;
box-shadow: none;
}
.tp-header .tp-container {
padding: 0;
transition: none;
display: flex;
align-items: center;
justify-content: space-between;
} .tp-main-navigation {
display: flex;
align-items: center;
}
.tp-main-navigation ul {
list-style: none;
margin: 0;
}
.tp-menu li.menu-item {
position: relative;
}
.tp-menu>ul {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.tp-menu>ul>li.menu-item { float: none;
}
.tp-menu li.menu-item>a {
position: relative;
display: block;
}
.tp-menu>ul>li.menu-item>a {
display: flex;
align-items: center;
padding: 0 15px;
color: var(--total-pm-menu-link-color, #333);
font-size: var(--total-menu-size, 14px);
letter-spacing: var(--total-menu-letter-spacing, 0);
line-height: var(--total-menu-line-height, 2.6);
font-family: var(--total-menu-family, Oswald);
font-weight: var(--total-menu-weight, 400);
font-style: var(--total-menu-style, normal);
text-decoration: var(--total-menu-text-decoration, none);
text-transform: var(--total-menu-text-transform, uppercase);
}
.tp-menu li.menu-item>a>i {
line-height: inherit;
font-size: 1em;
}
.tp-menu ul ul {
display: none;
position: absolute;
left: 0;
top: 100%;
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
margin-top: 0;
z-index: 999;
background: var(--total-pm-submenu-bg-color, #fff);
width: var(--total-ms-submenu-width, 240px);
padding: var(--total-ms-submenu-spacing-top-desktop, 8px) var(--total-ms-submenu-spacing-right-desktop, 8px) var(--total-ms-submenu-spacing-bottom-desktop, 8px) var(--total-ms-submenu-spacing-left-desktop, 8px);
font-family: var(--total-menu-family, Oswald);
font-size: var(--total-submenu-size, 0.9em);
letter-spacing: var(--total-submenu-letter-spacing, 0);
line-height: var(--total-submenu-line-height, inherit);
font-family: var(--total-submenu-family, var(--total-menu-family, Oswald));
font-weight: var(--total-submenu-weight, 400);
font-style: var(--total-submenu-style, normal);
text-decoration: var(--total-submenu-text-decoration, none);
text-transform: var(--total-submenu-text-transform, inherit);
}
.tp-menu ul ul ul {
left: 100%;
top: 0;
margin: 0;
border-top: 0;
}
.tp-menu ul ul li.menu-item {
float: none;
padding: 0;
}
.tp-menu>ul>li.menu-item {
margin-left: var(--total-ms-menu-link-spacing-left-desktop, 10px);
margin-right: var(--total-ms-menu-link-spacing-right-desktop, 0);
}
.tp-menu>ul>li.menu-item>ul {
margin-top: var(--total-ms-submenu-top-spacing, 0);
}
.tp-menu ul ul li.menu-item>a {
color: var(--total-pm-submenu-link-color, #444);
padding: var(--total-ms-submenu-link-spacing-top-desktop, 10px) var(--total-ms-submenu-link-spacing-right-desktop, 15px) var(--total-ms-submenu-link-spacing-bottom-desktop, 10px) var(--total-ms-submenu-link-spacing-left-desktop, 15px);
display: flex;
align-items: center;
}
.tp-menu ul ul a .dropdown-nav {
margin-left: auto;
}
.tp-menu ul li.menu-item:hover>ul {
display: block;
}
.tp-menu>ul>li.menu-item:hover>a,
.tp-menu>ul>li.menu-item.current_page_item>a,
.tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-menu>ul>li.menu-item.current>a,
#tp-masthead:not(.tp-hover-style1):not(.tp-hover-style3) .tp-menu-extra-items a.tp-menu-extra-item-link:hover {
background: none;
color: var(--total-pm-menu-link-hover-color, inherit);
}
.tp-menu-extra-items {
display: flex;
align-items: center;
}
.tp-menu-extra-items a.tp-menu-extra-item-link {
color: var(--total-pm-menu-link-color, #333);
font-size: var(--total-menu-size, 14px);
letter-spacing: var(--total-menu-letter-spacing, 0);
line-height: var(--total-menu-line-height, 2.6);
font-family: var(--total-menu-family, Oswald);
font-weight: var(--total-menu-weight, 400);
font-style: var(--total-menu-style, normal);
text-decoration: var(--total-menu-text-decoration, none);
text-transform: var(--total-menu-text-transform, uppercase);
} .tp-menu-item-cta>a {
display: inline-block;
padding: 0 20px;
white-space: nowrap;
color: var(--total-hb-text-color, #FFF);
background: var(--total-hb-bg-color, #000);
border-radius: var(--total-hb-borderradius, 0);
font-size: var(--total-menu-size, 14px);
letter-spacing: var(--total-menu-letter-spacing, 0);
line-height: var(--total-menu-line-height, 2.6);
font-family: var(--total-menu-family, Oswald);
font-weight: var(--total-menu-weight, 400);
font-style: var(--total-menu-style, normal);
text-decoration: var(--total-menu-text-decoration, none);
text-transform: var(--total-menu-text-transform, uppercase);
}
.tp-menu-item-cta>a:hover {
color: var(--total-hb-text-hov-color, var(--total-hb-text-color, #FFF));
background: var(--total-hb-bg-hov-color, var(--total-hb-bg-color, #000));
}
.tp-menu-extra-items .tp-menu-extra-item {
margin-left: 20px;
position: relative;
display: flex;
align-items: center;
}
.tp-menu-item-cta.tp-menu-extra-item {
margin-left: 25px;
}
.tp-menu-item-social>a,
.tp-menu-item-search>a,
.tp-menu-item-cart>li>a {
padding: 0 5px;
display: block;
font-size: var(--total-menu-size, 14px);
letter-spacing: var(--total-menu-letter-spacing, 0);
line-height: var(--total-menu-line-height, 2.6);
font-family: var(--total-menu-family, Oswald);
font-weight: var(--total-menu-weight, 400);
font-style: var(--total-menu-style, normal);
text-decoration: var(--total-menu-text-decoration, none);
text-transform: var(--total-menu-text-transform, uppercase);
} ul.tp-menu [class*="mm-font-icon-"] {
line-height: inherit;
}
.mm-font-icon-before {
margin-right: 0.4em;
}
.mm-font-icon-after {
margin-left: 0.4em;
}
.mm-no-title {
margin: 0;
} .tp-menu>ul>li:not(.megamenu-category) ul.megamenu ul,
ul.tp-product-menu>li:not(.megamenu-category) ul.megamenu ul {
opacity: 1 !important;
display: block !important;
position: static;
background: none;
box-shadow: none;
min-width: 0;
padding: 0;
width: 100%;
height: auto !important;
}
.tp-menu>ul>li>ul:not(.megamenu) li.menu-item:hover>a {
color: var(--total-pm-submenu-link-hover-color, var(--total-pm-submenu-link-color, #444));
background: var(--total-pm-submenu-link-bg-color, transparent);
}
.tp-menu ul ul.megamenu,
ul.tp-product-menu ul.megamenu {
padding: 20px 0;
color: var(--total-pm-submenu-link-color, #444);
}
.tp-menu ul ul.megamenu a,
ul.tp-product-menu ul.megamenu a {
color: inherit;
}
.tp-menu ul ul.megamenu>li.menu-item,
ul.tp-product-menu ul.megamenu>li.menu-item {
float: left;
padding: 0 20px;
}
.tp-menu>ul>li.megamenu-auto-width .megamenu.col-1,
ul.tp-product-menu>li.megamenu-auto-width .megamenu.col-1 {
width: 220px;
}
.tp-menu>ul>li.megamenu-auto-width .megamenu.col-2,
ul.tp-product-menu>li.megamenu-auto-width .megamenu.col-2 {
width: 440px;
}
.tp-menu>ul>li.megamenu-auto-width .megamenu.col-3,
ul.tp-product-menu>li.megamenu-auto-width .megamenu.col-3 {
width: 660px;
}
.tp-menu>ul>li.megamenu-auto-width .megamenu.col-4,
ul.tp-product-menu>li.megamenu-auto-width .megamenu.col-4 {
width: 880px;
}
.tp-menu>ul>li.megamenu-auto-width .megamenu.col-5,
ul.tp-product-menu>li.megamenu-auto-width .megamenu.col-5 {
width: 1000px;
}
.tp-menu>ul>li.megamenu-auto-width .megamenu.col-6,
ul.tp-product-menu>li.megamenu-auto-width .megamenu.col-6 {
width: 1220px;
}
.tp-menu ul ul.megamenu.col-1>li.menu-item,
ul.tp-product-menu ul.megamenu.col-1>li.menu-item {
width: 100%;
}
.tp-menu ul ul.megamenu.col-2>li.menu-item,
ul.tp-product-menu ul.megamenu.col-2>li.menu-item {
width: 50%;
}
.tp-menu ul ul.megamenu.col-3>li.menu-item,
ul.tp-product-menu ul.megamenu.col-3>li.menu-item {
width: 33.33%;
}
.tp-menu ul ul.megamenu.col-4>li.menu-item,
ul.tp-product-menu ul.megamenu.col-4>li.menu-item {
width: 25%;
}
.tp-menu ul ul.megamenu.col-5>li.menu-item,
ul.tp-product-menu ul.megamenu.col-5>li.menu-item {
width: 20%;
}
.tp-menu ul ul.megamenu.col-6>li.menu-item,
ul.tp-product-menu ul.megamenu.col-6>li.menu-item {
width: 16.66%;
}
.tp-menu ul ul.megamenu.col-2>li.menu-item:nth-child(2n+1),
ul.tp-product-menu ul.megamenu.col-2>li.menu-item:nth-child(2n+1) {
clear: both;
}
.tp-menu ul ul.megamenu.col-3>li.menu-item:nth-child(3n+1),
ul.tp-product-menu ul.megamenu.col-3>li.menu-item:nth-child(3n+1) {
clear: both;
}
.tp-menu ul ul.megamenu.col-4>li.menu-item:nth-child(4n+1),
ul.tp-product-menu ul.megamenu.col-4>li.menu-item:nth-child(4n+1) {
clear: both;
}
.tp-menu ul ul.megamenu.col-5>li.menu-item:nth-child(5n+1),
ul.tp-product-menu ul.megamenu.col-5>li.menu-item:nth-child(5n+1) {
clear: both;
}
.tp-menu ul ul.megamenu.col-6>li.menu-item:nth-child(6n+1),
ul.tp-product-menu ul.megamenu.col-6>li.menu-item:nth-child(6n+1) {
clear: both;
}
ul.megamenu li.menu-item.heading-yes .heading-yes {
margin-top: 20px;
}
ul.megamenu li.menu-item.heading-yes>a {
font-size: 1rem;
text-transform: uppercase;
font-weight: bold;
margin-top: 10px;
margin-bottom: 10px;
pointer-events: none;
}
ul.megamenu li.menu-item.heading-hide>a {
display: none !important;
}
ul.megamenu>li.menu-item a .dropdown-nav {
display: none;
}
.tp-menu-template,
.tp-menu-widget {
margin: -20px;
}
ul.megamenu li.menu-item>a {
display: flex;
margin-bottom: 10px;
padding: 0 !important;
} .megamenu-full-width.megamenu-category .cat-megamenu-tab {
width: 220px;
padding: 40px 0 40px 20px;
float: left;
}
.megamenu-full-width.megamenu-category .cat-megamenu-tab>div {
position: relative;
padding: 10px 10px 10px 0;
cursor: pointer;
}
.tp-menu .megamenu-full-width.megamenu-category .cat-megamenu-tab>div.active-tab {
color: var(--total-pm-submenu-link-hover-color, #333);
background: var(--total-pm-submenu-link-bg-color, transparent);
}
.megamenu-full-width.megamenu-category .cat-megamenu-tab>div:after {
content: "\F142";
font-family: "Material Design Icons";
font-size: 18px;
position: absolute;
right: 10px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.megamenu-full-width.megamenu-category .cat-megamenu-content {
padding-left: 220px;
padding-right: 20px;
background: none;
}
.megamenu-full-width.megamenu-category .cat-megamenu-content ul {
display: none;
position: static;
-webkit-box-shadow: none;
box-shadow: none;
background: none;
}
.megamenu-full-width.megamenu-category .cat-megamenu-content-full ul {
display: block;
position: static;
-webkit-box-shadow: none;
box-shadow: none;
background: none;
margin-left: -2%;
}
.megamenu-full-width.megamenu-category .cat-megamenu-content ul:first-child {
display: block;
}
.megamenu-full-width.megamenu-category .cat-megamenu-content ul li {
width: 31.33%;
float: left;
margin-left: 2%;
}
.megamenu-full-width.megamenu-category .cat-megamenu-content-full {
padding: 0 20px;
}
.megamenu-full-width.megamenu-category .cat-megamenu-content-full ul li {
width: 23%;
float: left;
margin-left: 2%;
}
.megamenu-full-width.megamenu-category .mega-post-title {
margin-bottom: 8px;
}
.megamenu-full-width.megamenu-category .mega-post-link {
display: block;
margin-bottom: 10px;
} .tp-hover-style1 .tp-menu>ul>li.menu-item:hover>a,
.tp-hover-style1 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-hover-style1 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-hover-style1 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-hover-style1 .tp-menu>ul>li.menu-item.current>a {
background: var(--total-pm-menu-hover-bg-color, var(--total-template-color));
}
.tp-hover-style2 .tp-menu>ul>li.menu-item>a,
.tp-hover-style4 .tp-menu>ul>li.menu-item>a {
border: 1px solid transparent;
}
.tp-hover-style2 .tp-menu>ul>li.menu-item:hover>a,
.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-hover-style2 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-hover-style2 .tp-menu>ul>li.menu-item.current>a,
.tp-hover-style4 .tp-menu>ul>li.menu-item:hover>a,
.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-hover-style4 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-hover-style4 .tp-menu>ul>li.menu-item.current>a {
border: 1px solid var(--total-template-color);
}
.tp-hover-style3 .tp-menu>ul>li.menu-item>a,
.tp-hover-style4 .tp-menu>ul>li.menu-item>a {
border-radius: 30px;
}
.tp-hover-style3 .tp-menu>ul>li.menu-item>a,
.tp-hover-style4 .tp-menu>ul>li.menu-item>a {
padding-left: 20px;
padding-right: 20px;
}
.tp-hover-style5 .tp-menu>ul>li.menu-item>a:after,
.tp-hover-style5 .tp-menu>ul>li.menu-item>a:before {
content: "";
position: absolute;
height: 1px;
width: 10px;
background: var(--total-template-color);
top: 50%;
transform: translateY(-50%);
opacity: 0;
}
.tp-hover-style5 .tp-menu>ul>li.menu-item>a:before {
right: 100%;
margin-right: -15px;
transition: opacity 0.3s ease, margin-right 0.3s ease;
}
.tp-hover-style5 .tp-menu>ul>li.menu-item>a:after {
left: 100%;
margin-left: -15px;
transition: opacity 0.3s ease, margin-left 0.3s ease;
}
.tp-hover-style3 .tp-menu>ul>li.menu-item:hover>a,
.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-hover-style3 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-hover-style3 .tp-menu>ul>li.menu-item.current>a {
background: var(--total-pm-menu-hover-bg-color, var(--total-template-color));
}
.tp-hover-style6 .tp-menu>ul>li.menu-item>a,
.tp-hover-style7 .tp-menu>ul>li.menu-item>a {
padding: 0;
}
.tp-hover-style5 .tp-menu>ul>li.menu-item:hover>a:before,
.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_item>a:before,
.tp-hover-style5 .tp-menu>ul>li.menu-item.current-menu-item>a:before,
.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_ancestor>a:before,
.tp-hover-style5 .tp-menu>ul>li.menu-item.current>a:before {
opacity: 1;
margin-right: -10px;
background: var(--total-pm-menu-link-hover-color);
}
.tp-hover-style5 .tp-menu>ul>li.menu-item:hover>a:after,
.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_item>a:after,
.tp-hover-style5 .tp-menu>ul>li.menu-item.current-menu-item>a:after,
.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_ancestor>a:after,
.tp-hover-style5 .tp-menu>ul>li.menu-item.current>a:after {
opacity: 1;
margin-left: -10px;
background: var(--total-pm-menu-link-hover-color);
}
.tp-hover-style6 .tp-menu>ul>li.menu-item,
.tp-hover-style7 .tp-menu>ul>li.menu-item {
margin-left: var(--total-ms-menu-link-spacing-left-desktop, 30px);
}
.tp-hover-style6 .tp-menu>ul>li.menu-item:hover>a:before,
.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_item>a:before,
.tp-hover-style6 .tp-menu>ul>li.menu-item.current-menu-item>a:before,
.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_ancestor>a:before,
.tp-hover-style6 .tp-menu>ul>li.menu-item.current>a:before {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 2px;
background: var(--total-pm-menu-link-hover-color, var(--total-template-color));
} .tp-header-one .tp-header {
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
background: var(--total-mh-bg-color, #FFF);
}
.tp-header-one .tp-header .tp-container {
padding-top: var(--total-mh-spacing-top-desktop, 15px);
padding-bottom: var(--total-mh-spacing-bottom-desktop, 15px);
padding-left: var(--total-mh-spacing-left-desktop, 0);
padding-right: var(--total-mh-spacing-right-desktop, 0);
}
.tp-sticky-header .tp-header-one .tp-header.headroom.headroom-not-top {
background: var(--total-mh-bg-color, #FFF);
}
.tp-sticky-header .tp-header-one .tp-header.headroom.headroom-not-top .tp-container {
background: none;
} #tp-masthead.tp-header-two {
margin-top: 40px;
position: absolute;
left: 0;
right: 0;
}
.tp-sticky-header .tp-header-two .tp-header.headroom.headroom-not-top {
background: var(--total-mh-bg-color, #FFF);
}
.tp-sticky-header .tp-header-two .tp-header.headroom.headroom-not-top .tp-container {
background: none;
}
.tp-header-two .tp-header .tp-container {
align-items: stretch;
background: var(--total-mh-bg-color, #FFF);
}
.tp-header-two .tp-header-nav-wrap {
flex: 1 0 auto;
display: flex;
justify-content: center;
flex-direction: column;
}
.tp-header-two .tp-header-nav-wrap .tp-top-header {
padding-left: 20px;
padding-right: 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.tp-header-two .tp-main-navigation {
justify-content: flex-end;
padding-top: var(--total-mh-spacing-top-desktop, 20px);
padding-bottom: var(--total-mh-spacing-bottom-desktop, 20px);
padding-left: var(--total-mh-spacing-left-desktop, 20px);
padding-right: var(--total-mh-spacing-right-desktop, 20px);
}
.tp-header-two #tp-site-branding {
border-right: 1px solid rgba(0, 0, 0, 0.05);
padding: 15px 30px;
} #tp-masthead.tp-header-three {
position: absolute;
left: 0;
right: 0;
}
.tp-header-three .tp-top-header {
margin-bottom: 20px;
}
.tp-header-three .tp-header .tp-container {
padding-top: var(--total-mh-spacing-top-desktop, 20px);
padding-bottom: var(--total-mh-spacing-bottom-desktop, 20px);
padding-left: var(--total-mh-spacing-left-desktop, 20px);
padding-right: var(--total-mh-spacing-right-desktop, 20px);
background: var(--total-mh-bg-color, #FFF);
border-bottom: 4px solid var(--total-th-bg-color, var(--total-template-color));
}
.tp-sticky-header .tp-header-three .tp-header.headroom.headroom-not-top .tp-container {
border-bottom: 0;
}
.tp-sticky-header .tp-header-three .tp-header.headroom.headroom-not-top {
background: var(--total-mh-bg-color, #FFF);
border-bottom: 4px solid var(--total-th-bg-color, var(--total-template-color));
}
.tp-sticky-header .tp-header-three .tp-header.headroom.headroom-not-top .tp-container {
background: none;
} .tp-header-four .tp-middle-header {
border-top: 4px solid var(--total-pm-bg-color, var(--total-template-color, #FFF));
background: var(--total-mh-bg-color, #FFF);
}
.tp-header-four .tp-top-header+.tp-middle-header {
border-top: 0;
}
.tp-header-four .tp-middle-header .tp-container {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: var(--total-mh-spacing-top-desktop, 40px);
padding-bottom: var(--total-mh-spacing-bottom-desktop, 80px);
padding-left: var(--total-mh-spacing-left-desktop, 0);
padding-right: var(--total-mh-spacing-right-desktop, 0);
}
.tp-header-four .tp-header {
transform: translateY(-50%);
}
.tp-sticky-header .tp-header-four .tp-header.headroom-not-top {
transform: translateY(0);
}
.tp-header-four .tp-header-wrap {
position: absolute;
width: 100%;
z-index: 99;
}
.tp-header-four .tp-header .tp-container {
padding-top: var(--total-pm-spacing-top-desktop, 10px);
padding-bottom: var(--total-pm-spacing-bottom-desktop, 10px);
padding-left: var(--total-pm-spacing-left-desktop, 20px);
padding-right: var(--total-pm-spacing-right-desktop, 20px);
box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
background: var(--total-pm-bg-color, var(--total-template-color, #FFF));
}
.tp-sticky-header .tp-header-four .tp-header.headroom-not-top .tp-container {
box-shadow: none;
}
.tp-header-four .tp-main-navigation {
width: 100%;
justify-content: space-between;
}
.tp-sticky-header .tp-header-four .tp-header.headroom.headroom-not-top {
background: var(--total-pm-bg-color, var(--total-template-color, #FFF));
} .tp-header-five#tp-masthead {
position: relative;
}
.tp-header-five .tp-middle-header {
background: var(--total-mh-bg-color, #FFF);
}
.tp-header-five .tp-middle-header .tp-container {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: var(--total-mh-spacing-top-desktop, 40px);
padding-bottom: var(--total-mh-spacing-bottom-desktop, 40px);
padding-left: var(--total-mh-spacing-left-desktop, 0);
padding-right: var(--total-mh-spacing-right-desktop, 0);
}
.tp-header-five .tp-main-navigation .tp-container {
justify-content: space-between;
padding-top: var(--total-pm-spacing-top-desktop, 10px);
padding-bottom: var(--total-pm-spacing-bottom-desktop, 10px);
padding-left: var(--total-pm-spacing-left-desktop, 0);
padding-right: var(--total-pm-spacing-right-desktop, 0);
}
.tp-header-five .tp-header {
background: var(--total-pm-bg-color, var(--total-template-color, #FFF));
} .tp-header-six .tp-middle-header {
background: var(--total-mh-bg-color, #FFF);
}
.tp-header-six .tp-middle-header .tp-container {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: var(--total-mh-spacing-top-desktop, 40px);
padding-bottom: var(--total-mh-spacing-bottom-desktop, 40px);
padding-left: var(--total-mh-spacing-left-desktop, 0);
padding-right: var(--total-mh-spacing-right-desktop, 0);
}
.tp-header-six .tp-main-navigation {
background: var(--total-pm-bg-color, var(--total-template-color, #FFF));
position: relative;
}
.tp-header-six .tp-main-navigation .tp-container {
padding-top: var(--total-pm-spacing-top-desktop, 10px);
padding-bottom: var(--total-pm-spacing-bottom-desktop, 10px);
padding-left: var(--total-pm-spacing-left-desktop, 0);
padding-right: var(--total-pm-spacing-right-desktop, 0);
}
.tp-header-six .tp-main-navigation:before {
content: "";
position: absolute;
left: 0;
top: -1px;
bottom: 35%;
background: var(--total-mh-bg-color, #FFF);
clip-path: polygon(0 0, 100% 0%, 94% 100%, 0% 100%);
}
.tp-wide .tp-header-six .tp-main-navigation:before {
right: calc(50% + calc(var(--total-wide-container-width, 1170px)/2) - 300px);
}
.tp-boxed .tp-header-six .tp-main-navigation:before {
right: calc(50% + calc(var(--total-wide-container-width, 1170px)/2) - var(--total-container-padding, 80px) - 300px);
}
.tp-fluid .tp-header-six .tp-main-navigation:before {
right: calc(50% + calc(var(--total-fluid-container-width, 80%)/2) - 300px);
}
body.rtl.tp-wide .tp-header-six .tp-main-navigation:before {
left: calc(50% + calc(var(--total-wide-container-width, 1170px)/2) - 300px);
right: 0;
}
body.rtl.tp-boxed .tp-header-six .tp-main-navigation:before {
left: calc(50% + calc(var(--total-wide-container-width, 1170px)/2) - var(--total-container-padding, 80px) - 300px);
right: 0;
}
body.rtl.tp-fluid .tp-header-six .tp-main-navigation:before {
left: calc(50% + calc(var(--total-fluid-container-width, 80%)/2) - 300px);
right: 0;
}
.tp-sticky-header .tp-header-six .tp-header.headroom-not-top .tp-main-navigation:before {
display: none;
}
.tp-header-six .tp-menu {
margin-left: 300px;
} body.tp-transparent-header .tp-header-one .tp-header,
body.tp-transparent-header .tp-header-two .tp-header .tp-container,
body.tp-transparent-header .tp-header-three .tp-header .tp-container {
background: none;
}
body.tp-transparent-header .tp-header-three .tp-header .tp-container {
border-bottom: none;
}
body.tp-transparent-header .tp-header-one .tp-header {
box-shadow: none;
}  .tp-header-4-5-6 .tp-menu>ul>li.menu-item {
margin-left: var(--total-ms-menu-link-spacing-left-desktop, 0);
margin-right: var(--total-ms-menu-link-spacing-right-desktop, 10px);
}
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item,
.tp-header-4-5-6.tp-hover-style7 .tp-menu>ul>li.menu-item {
margin-left: var(--total-ms-menu-link-spacing-left-desktop, 0);
margin-right: var(--total-ms-menu-link-spacing-right-desktop, 30px);
}
.tp-header-1-2-3 .tp-menu>ul>li.menu-item>a,
.tp-header-1-2-3 .tp-menu-extra-item>a.tp-menu-extra-item-link {
color: var(--total-pm-menu-link-color, #333);
}
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item.current>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item.current>a {
background: var(--total-pm-menu-hover-bg-color, var(--total-template-color, #000));
}
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item:hover>a:before,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_item>a:before,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current-menu-item>a:before,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_ancestor>a:before,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current>a:before,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item:hover>a:after,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_item>a:after,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current-menu-item>a:after,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_ancestor>a:after,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current>a:after,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item:hover>a:before,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_item>a:before,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item.current-menu-item>a:before,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_ancestor>a:before,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item.current>a:before {
background: var(--total-pm-menu-link-hover-color, #000);
}
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style1 .tp-menu>ul>li.menu-item.current>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style3 .tp-menu>ul>li.menu-item.current>a {
color: var(--total-pm-menu-link-hover-color, #FFF);
}
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item.current>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item.current>a {
border-color: var(--total-pm-menu-link-hover-color, #000);
}
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style2 .tp-menu>ul>li.menu-item.current>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style4 .tp-menu>ul>li.menu-item.current>a,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style5 .tp-menu>ul>li.menu-item.current>a,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style6 .tp-menu>ul>li.menu-item.current>a,
.tp-header-1-2-3.tp-hover-style7 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-1-2-3.tp-hover-style7 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-1-2-3.tp-hover-style7 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-1-2-3.tp-hover-style7 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-1-2-3.tp-hover-style7 .tp-menu>ul>li.menu-item.current>a {
color: var(--total-pm-menu-link-hover-color, #000);
} .tp-header-4-5-6 .tp-menu>ul>li.menu-item>a,
.tp-header-4-5-6 .tp-menu-extra-item>a.tp-menu-extra-item-link {
color: var(--total-pm-menu-link-color, #FFF);
}
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item.current>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item.current>a {
background: var(--total-pm-menu-hover-bg-color, #FFF);
}
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item:hover>a:before,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_item>a:before,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current-menu-item>a:before,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_ancestor>a:before,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current>a:before,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item:hover>a:after,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_item>a:after,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current-menu-item>a:after,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_ancestor>a:after,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current>a:after,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item:hover>a:before,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_item>a:before,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item.current-menu-item>a:before,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_ancestor>a:before,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item.current>a:before {
background: var(--total-pm-menu-link-hover-color, #000);
}
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item.curre_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style1 .tp-menu>ul>li.menu-item.current>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style3 .tp-menu>ul>li.menu-item.current>a {
color: var(--total-pm-menu-link-hover-color, #000);
}
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item.current>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item.current>a {
border-color: var(--total-pm-menu-link-hover-color, #FFF);
}
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style2 .tp-menu>ul>li.menu-item.current>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style4 .tp-menu>ul>li.menu-item.current>a,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style5 .tp-menu>ul>li.menu-item.current>a,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style6 .tp-menu>ul>li.menu-item.current>a,
.tp-header-4-5-6.tp-hover-style7 .tp-menu>ul>li.menu-item:hover>a,
.tp-header-4-5-6.tp-hover-style7 .tp-menu>ul>li.menu-item.current_page_item>a,
.tp-header-4-5-6.tp-hover-style7 .tp-menu>ul>li.menu-item.current-menu-item>a,
.tp-header-4-5-6.tp-hover-style7 .tp-menu>ul>li.menu-item.current_page_ancestor>a,
.tp-header-4-5-6.tp-hover-style7 .tp-menu>ul>li.menu-item.current>a {
color: var(--total-pm-menu-link-hover-color, #FFF);
} @-webkit-keyframes headerSlideDown {
0% {
margin-top: -200px;
}
to {
margin-top: 0;
}
}
@keyframes headerSlideDown {
0% {
margin-top: -200px;
}
to {
margin-top: 0;
}
}
.tp-sticky-header .headroom.headroom-not-top {
position: fixed;
top: 0;
left: 0;
z-index: 9999;
width: 100%;
box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
animation: headerSlideDown 0.95s ease forwards;
}
body.admin-bar.tp-sticky-header .headroom.headroom-not-top {
top: 32px;
}
.tp-sticky-header .tp-header-two.tp-site-header .headroom.headroom-not-top .tp-top-header {
display: none;
} .breadcrumb-trail,
.woocommerce .woocommerce-breadcrumb {
font-size: 15px;
margin: 0;
color: var(--total-breadcrumb-text-color, inherit);
}
.breadcrumb-trail ul {
list-style: none;
margin: 0;
padding: 0;
}
.breadcrumb-trail ul li {
display: inline-block;
font-family: var(--total-breadcrumb-family, var(--total-body-family, Poppins));
font-style: var(--total-breadcrumb-style, normal);
font-weight: var(--total-breadcrumb-weight, 400);
font-size: var(--total-breadcrumb-size, 14px);
letter-spacing: var(--total-breadcrumb-letter-spacing, 0);
line-height: var(--total-breadcrumb-line-height, 1.3);
text-decoration: var(--total-breadcrumb-text-decoration, none);
text-transform: var(--total-breadcrumb-text-transform, none);
}
.breadcrumb-trail ul li:after {
content: "/";
margin: 0 6px;
}
.breadcrumb-trail ul li:last-child:after {
display: none;
}
.woocommerce .woocommerce-breadcrumb a,
.breadcrumb-trail a {
color: var(--total-breadcrumb-link-color, #000);
}
.taxonomy-description,
.term-description {
margin-bottom: 15px;
}
.taxonomy-description p:last-child,
.term-description p:last-child {
margin-bottom: 0;
}
.tp-site-main .comment-navigation {
margin: 0 0 15px;
overflow: hidden;
}
.comment-navigation .tp-nav-previous {
float: left;
width: 50%;
}
.comment-navigation .tp-nav-next {
float: right;
text-align: right;
width: 50%;
} .tp-section {
position: relative;
color: var(--total-section-text-color, var(--total-body-color, #444));
}
.tp-section.tp-section-normal-bg {
background-image: var(--total-section-bg-image-url);
background-size: var(--total-section-bg-image-size, cover);
background-position: var(--total-section-bg-image-position, center center);
background-repeat: var(--total-section-bg-image-repeat, no-repeat);
background-attachment: var(--total-section-bg-image-attachment, scroll);
background-color: var(--total-section-bg-image-color, #fff);
}
.tp-section.tp-section-normal-bg.tp-section-has-bg:before {
content: "";
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: var(--total-section-bg-image-overlay, transparent);
opacity: 0.9;
}
.tp-section-gradient-bg,
#tp-colophon.tp-footer-bg-gradient {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0051FF), color-stop(100%, #00C4FF));
background: -moz-linear-gradient(vertical, #0051FF 0%, #00C4FF 100%);
background: -webkit-linear-gradient(vertical, #0051FF 0%, #00C4FF 100%);
background: -o-linear-gradient(vertical, #0051FF 0%, #00C4FF 100%);
background: -ms-linear-gradient(vertical, #0051FF 0%, #00C4FF 100%);
background: linear-gradient(vertical, #0051FF 0%, #00C4FF 100%);
}
.tp-section a {
color: var(--total-section-link-color, var(--total-section-text-color, var(--total-body-color, #444)));
}
.tp-section a:hover {
color: var(--total-section-link-hov-color, var(--total-section-link-color, var(--total-section-text-color, var(--total-body-color, #444))));
}
[data-stellar-background-ratio] {
background-attachment: fixed !important;
}
.tp-section.tp-section-video-bg .tp-section-wrap {
background-color: var(--total-section-overlay-color, transparent);
}
.tp-section-wrap {
position: relative;
padding-top: var(--total-section-padding-top, 80px);
padding-bottom: var(--total-section-padding-bottom, 80px);
}
.tp-section.tp-full-window-section .tp-section-wrap {
min-height: 100vh;
display: flex;
overflow: hidden;
flex-wrap: wrap;
}
.tp-section.tp-full-window-section.tp-align-content-top .tp-section-wrap {
align-items: flex-start;
}
.tp-section.tp-full-window-section.tp-align-content-middle .tp-section-wrap {
align-items: center;
}
.tp-section.tp-full-window-section.tp-align-content-bottom .tp-section-wrap {
align-items: flex-end;
}
.tp-section-tagline-text {
font-size: 1.2rem;
}
.tp-section-title-tagline {
margin-bottom: 60px;
}
.tp-section-super-title {
display: block;
margin-bottom: 15px;
font-size: 1.1rem;
opacity: 0.9;
color: var(--total-section-super-title-color, #333);
}
.tp-section-title {
margin: 0;
font-family: var(--total-section-title-family, var(--total-h-family, var(--total-h2-family, Oswald)));
font-style: var(--total-section-title-style, normal);
font-weight: var(--total-section-title-weight, 400);
font-size: var(--total-section-title-size, 36px);
letter-spacing: var(--total-section-title-letter-spacing, 0);
line-height: var(--total-section-title-line-height, 1.3);
text-decoration: var(--total-section-title-text-decoration, none);
text-transform: var(--total-section-title-text-transform, uppercase);
color: var(--total-section-title-color, #333);
}
.tp-section-title-wrap {
margin-bottom: 15px;
}
.tp-section-title-wrap:last-child {
margin-bottom: 0;
}
.tp-section-title-top-center {
text-align: center;
width: 80%;
margin: 0 auto 60px;
}
.tp-section-title-top-cs {
text-align: center;
width: 80%;
margin: 0 auto 60px;
}
.tp-section-title-top-cs .tp-section-title {
position: relative;
padding-bottom: 15px;
}
.tp-section-title-top-cs .tp-section-title:after {
content: "";
position: absolute;
left: 50%;
top: 100%;
width: 60px;
margin-left: -30px;
margin-top: -3px;
height: 3px;
background: var(--total-section-title-color, #333);
}
.tp-section-title-top-ls .tp-section-title {
position: relative;
padding-bottom: 15px;
}
.tp-section-title-top-ls .tp-section-title:after {
content: "";
position: absolute;
left: 0;
top: 100%;
width: 60px;
margin-top: -3px;
height: 3px;
background: var(--total-section-title-color, #333);
}
.tp-section-title-side {
width: 30%;
float: left;
text-align: left;
margin-bottom: 0;
padding-right: 40px;
}
.tp-section-title-side+.tp-section-content {
width: 70%;
float: left;
}
.tp-section-title-single-row {
display: flex;
align-items: stretch;
}
.tp-section-title-single-row .tp-section-title-wrap {
width: 30%;
padding-right: 40px;
border-right: 3px solid var(--total-section-text-color, #333);
margin-bottom: 0;
}
.tp-section-title-single-row .tp-section-title {
margin-bottom: 0;
letter-spacing: 0;
line-height: 1.2;
}
.tp-section-title-single-row .tp-section-tagline {
width: 70%;
padding-left: 40px;
}
.tp-section-title-single-row .tp-section-tagline p:last-child {
margin-bottom: 0;
}
.tp-section-title-big {
text-align: center;
}
.tp-section-title-big .tp-section-title-wrap {
position: relative;
}
.tp-section-title-big .tp-section-super-title {
position: absolute;
font-size: 6rem;
font-weight: bold;
color: var(--total-section-super-title-color, #000);
left: 0;
top: 50%;
transform: translateY(-50%);
width: 100%;
margin: 0;
line-height: 1.1;
opacity: 0.05;
overflow: hidden;
}
.tp-section-title-big .tp-section-title {
padding: 40px 0;
margin: 0;
position: relative;
}
.tp-section-title-big .tp-section-title:after {
content: "";
position: absolute;
top: 100%;
left: 50%;
width: 70px;
height: 2px;
background: var(--total-section-title-color, #333);
box-shadow: -35px -8px 0px 0px var(--total-section-title-color, #333);
margin-left: -35px;
margin-top: -20px;
}
.tp-section-button {
position: relative;
margin-top: 30px;
}
.tp-section-button .tp-button {
display: inline-block;
padding: 10px 30px;
color: var(--total-section-mb-text-color, #fff);
border-radius: 1px;
background: var(--total-section-mb-bg-color, var(--total-template-color));
}
.tp-section-button .tp-button:hover {
color: var(--total-section-mb-hov-text-color, var(--total-section-mb-text-color, #fff));
background: var(--total-section-mb-hov-bg-color, var(--total-section-mb-bg-color, var(--total-template-color)));
}
.tp-section-content .tp-section-button {
text-align: center;
}
.tp-news-section .tp-section-button{
margin-top: 60px;
}
.tp-section-seperator {
position: absolute;
left: 0;
right: 0;
z-index: 9;
}
.top-section-seperator {
top: -1px;
}
.bottom-section-seperator {
bottom: -1px;
}
.tp-section-seperator svg {
height: 100%;
width: 100%;
}
.svg-water-waves-wrap svg,
.svg-water-waves-wrap {
min-height: 80px;
}
.svg-clouds-wrap svg,
.svg-clouds-wrap,
.svg-droplets-wrap svg,
.svg-droplets-wrap {
min-height: 150px;
}
.svg-paper-cut-wrap svg,
.svg-paper-cut-wrap {
max-height: 120px;
}
.top-section-seperator.svg-big-triangle-left-wrap svg,
.top-section-seperator.svg-tilt-left-wrap svg {
transform: rotate(180deg) scaleX(-1);
}
.top-section-seperator.svg-big-triangle-right-wrap svg,
.top-section-seperator.svg-curve-center-wrap svg,
.top-section-seperator.svg-clouds-wrap svg,
.top-section-seperator.svg-tilt-right-wrap svg,
.top-section-seperator.svg-uniform-waves-wrap svg,
.top-section-seperator.svg-water-waves-wrap svg,
.top-section-seperator.svg-slanted-waves-wrap svg,
.top-section-seperator.svg-zigzag-wrap svg,
.bottom-section-seperator.svg-big-triangle-center-wrap svg,
.bottom-section-seperator.svg-curve-repeater-wrap svg,
.bottom-section-seperator.svg-droplets-wrap svg,
.bottom-section-seperator.svg-small-triangle-center-wrap svg,
.bottom-section-seperator.svg-big-waves-wrap svg,
.bottom-section-seperator.svg-paper-cut-wrap svg {
transform: rotate(180deg);
}
.bottom-section-seperator.svg-big-triangle-right-wrap svg,
.bottom-section-seperator.svg-tilt-right-wrap svg {
transform: scaleX(-1);
}
.tp-section-seperator.top-section-seperator {
height: var(--total-section-ts-height, 60px)
}
.tp-section-seperator.bottom-section-seperator {
height: var(--total-section-bs-height, 60px)
}
.top-section-seperator svg {
fill: var(--total-section-ts-color, #FF0000);
}
.bottom-section-seperator svg {
fill: var(--total-section-bs-color, #FF0000);
} #tp-home-slider-section {
position: relative;
}
.tp-slide {
position: relative;
}
.tp-slide:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: var(--total-slider-overlay-color, rgba(0,0,0,0.2));
opacity: 0.9;
}
.tp-full-window-slider .tp-slide {
height: 100vh;
}
.tp-full-window-slider .tp-slide img,
.tp-custom-height-slider .tp-slide img {
height: 100%;
width: 100%;
object-fit: cover;
object-position: center;
}
.tp-slide img {
width: 100%;
}
.tp-custom-height-slider .tp-slide img {
height: var(--total-slider-height, 800px);
}
.tp-slide-overlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.2);
}
.tp-slide-caption {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.tp-wide .tp-slide-caption {
width: var(--total-wide-container-width, 1170px);
}
.tp-boxed .tp-slide-caption {
width: calc(var(--total-wide-container-width, 1170px) - var(--total-container-padding, 80px) - var(--total-container-padding, 80px));
}
.tp-fluid .tp-slide-caption {
width: var(--total-fluid-container-width, 80%);
}
.tp-slide-caption.tp-slide-center {
text-align: center;
}
.tp-slide-caption.tp-slide-left {
text-align: left;
}
.tp-slide-caption.tp-slide-right {
text-align: right;
}
.tp-slide-caption.tp-slide-center .tp-slide-cap-title,
.tp-slide-caption.tp-slide-center .tp-slide-cap-desc {
padding: 0 10%;
}
.tp-slide-caption.tp-slide-left .tp-slide-cap-title,
.tp-slide-caption.tp-slide-left .tp-slide-cap-desc {
text-align: left;
padding-right: 40%;
}
.tp-slide-caption.tp-slide-right .tp-slide-cap-title,
.tp-slide-caption.tp-slide-right .tp-slide-cap-desc {
padding-left: 40%;
}
.tp-slide-cap-title {
margin-bottom: 40px;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
font-family: var(--total-slider-title-family, var(--total-h-family, var(--total-h2-family, Oswald)));
font-style: var(--total-slider-title-style, normal);
font-weight: var(--total-slider-title-weight, 400);
font-size: var(--total-slider-title-size, var(--total-h-size, 46px));
letter-spacing: var(--total-slider-title-letter-spacing, 2px);
line-height: var(--total-slider-title-line-height, 1.2);
text-decoration: var(--total-slider-title-text-decoration, none);
text-transform: var(--total-slider-title-text-transform, uppercase);
color: var(--total-caption-title-color, #FFF);
}
.tp-slide-cap-title span {
display: inline-block;
padding: 8px 15px;
color: inherit;
background: var(--total-caption-title-background-color, var(--total-template-color));
}
.tp-slide-cap-desc {
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
font-family: var(--total-slider-subtitle-family, var(--total-body-family, Poppins));
font-style: var(--total-slider-subtitle-style, normal);
font-weight: var(--total-slider-subtitle-weight, 400);
font-size: var(--total-slider-subtitle-size, 24px);
letter-spacing: var(--total-slider-subtitle-letter-spacing, 0);
line-height: var(--total-slider-subtitle-line-height, 1.4);
text-decoration: var(--total-slider-subtitle-text-decoration, none);
text-transform: var(--total-slider-subtitle-text-transform, none);
color: var(--total-caption-subtitle-color, #FFF);
}
.tp-slide-button {
margin-top: 30px;
}
.tp-slide-button a,
.tp-banner-button a.tp-button {
display: inline-block;
padding: 0.6em 1.4em;
border: 2px solid var(--total-caption-button-border-color, #fff);
color: var(--total-caption-button-text-color, #fff);
background: var(--total-caption-button-bg-color, transparent);
height: auto;
}
.tp-slide-button a:hover,
.tp-banner-button a.tp-button:hover {
border: 2px solid var(--total-caption-button-border-hov-color, var(--total-caption-button-border-color, #fff));
color: var(--total-caption-button-text-hov-color, var(--total-caption-button-text-color, #fff));
background: var(--total-caption-button-bg-hov-color, var(--total-caption-button-bg-color, transparent));
}
#tp-home-slider-section .owl-nav [class*="owl-"] {
position: absolute;
height: 70px;
width: 50px;
top: 50%;
margin-top: -35px;
background: var(--total-slider-arrow-bg-color, #222);
font-size: 0px;
}
#tp-home-slider-section .owl-nav [class*="owl-"]:before {
content: "";
height: 1px;
width: 30px;
background: var(--total-slider-arrow-color, #fff);
position: absolute;
left: 15px;
top: 13px;
transform: rotate(45deg);
transform-origin: 0 0;
}
#tp-home-slider-section .owl-nav [class*="owl-"]:after {
content: "";
height: 1px;
width: 30px;
background: var(--total-slider-arrow-color, #fff);
position: absolute;
left: 15px;
bottom: 13px;
transform: rotate(-45deg);
transform-origin: 0 0;
}
#tp-home-slider-section .owl-nav [class*="owl-"]:hover {
background: var(--total-slider-arrow-bg-color-hover, var(--total-slider-arrow-bg-color, #222));
}
#tp-home-slider-section .owl-nav [class*="owl-"]:hover:before,
#tp-home-slider-section .owl-nav [class*="owl-"]:hover:after {
background: var(--total-slider-arrow-color-hover, var(--total-slider-arrow-color, #fff));
}
#tp-home-slider-section .owl-carousel .owl-nav .owl-prev {
left: 0;
transform: rotate(180deg);
}
#tp-home-slider-section .owl-carousel .owl-nav .owl-next {
right: 0;
}
#tp-home-slider-section .owl-dots {
position: absolute;
bottom: 20px;
right: 0;
left: 0;
text-align: center;
}
#tp-home-slider-section .owl-dots .owl-dot {
display: inline-block;
height: 8px;
width: 10px;
background: var(--total-slider-arrow-bg-color, #333);
margin: 0 5px;
transition: all 0.3s ease;
border-radius: 20px;
}
#tp-home-slider-section .owl-dots .owl-dot.active {
width: 30px;
}
#tp-home-slider-section .bottom-section-seperator {
height: var(--total-slider-bs-height, 60px);
}
#tp-home-slider-section .bottom-section-seperator svg {
fill: var(--total-slider-bs-color, #FF0000);
}
.tp-slide-cap-title {
opacity: 0;
transform: translateY(-50px);
transition: transform 0.3s ease 0.6s, opacity 0.3s ease 0.6s;
}
.active .tp-slide-cap-title {
transform: translateY(0);
opacity: 1;
}
.tp-slide-cap-desc {
opacity: 0;
transform: translateY(-50px);
transition: transform 0.3s ease 1s, opacity 0.3s ease 1s;
}
.active .tp-slide-cap-desc {
transform: translateY(0);
opacity: 1;
}
.tp-slide-button {
opacity: 0;
transform: translateY(-50px);
transition: all 0.3s ease 1.5s;
}
.active .tp-slide-button {
transform: translateY(0);
opacity: 1;
}
.tp-main-banner {
position: relative;
background-image: var(--total-banner-image-url);
background-size: var(--total-banner-image-size, cover);
background-position: var(--total-banner-image-position, center center);
background-repeat: var(--total-banner-image-repeat, no-repeat);
background-attachment: var(--total-banner-image-attachment, scroll);
background-color: var(--total-banner-image-color, #FFFFFF);
}
.tp-main-banner:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
opacity: 0.9;
background-color: var(--total-banner-overlay-color);
}
.tp-main-banner .tp-container {
min-height: 100vh;
position: relative;
display: flex;
align-items: center;
}
.tp-banner-caption {
color: #fff;
padding: 80px 0;
}
.tp-banner-left .tp-banner-caption {
width: 60%;
}
.tp-banner-right {
justify-content: flex-end;
}
.tp-banner-right .tp-banner-caption {
width: 60%;
text-align: right;
}
.tp-banner-center .tp-banner-caption {
width: 70%;
text-align: center;
margin: 0 auto;
}
.tp-banner-title {
margin-bottom: 20px;
font-family: var(--total-slider-title-family, var(--total-h-family, var(--total-h2-family, Oswald)));
font-style: var(--total-slider-title-style, normal);
font-weight: var(--total-slider-title-weight, 400);
font-size: var(--total-slider-title-size, 46px);
letter-spacing: var(--total-slider-title-letter-spacing, 2px);
line-height: var(--total-slider-title-line-height, 1.2);
text-decoration: var(--total-slider-title-text-decoration, none);
text-transform: var(--total-slider-title-text-transform, uppercase);
color: var(--total-caption-title-color, #FFF);
}
.tp-banner-subtitle {
margin-bottom: 30px;
font-family: var(--total-slider-subtitle-family, var(--total-body-family, Poppins));
font-style: var(--total-slider-subtitle-style, normal);
font-weight: var(--total-slider-subtitle-weight, 400);
font-size: var(--total-slider-subtitle-size, 24px);
letter-spacing: var(--total-slider-subtitle-letter-spacing, 0);
line-height: var(--total-slider-subtitle-line-height, 1.4);
text-decoration: var(--total-slider-subtitle-text-decoration, none);
text-transform: var(--total-slider-subtitle-text-transform, none);
color: var(--total-caption-subtitle-color);
}
.tp-full-height {
min-height: 100vh;
} #tp-about-section .tp-container {
display: flex;
overflow: hidden;
}
.tp-about-sec {
width: 54%;
padding-right: 30px;
}
.tp-about-sec.fullwidth {
width: 100%;
padding: 0;
}
.tp-about-sec h2 {
text-align: left;
width: auto;
margin-bottom: 15px;
}
.tp-progress {
margin-bottom: 20px;
}
.tp-progress:last-child {
margin-bottom: 0;
}
.tp-progress h6 {
margin-bottom: 8px;
color: var(--total-progressbar-text-color, #333);
}
.tp-progress-bar-sec {
margin-top: 30px;
}
.tp-about-sec.fullwidth .tp-progress-bar-sec {
width: 50%;
}
.tp-progress-bar {
height: 8px;
width: 100%;
position: relative;
background: var(--total-progressbar-bg-color, #f6f6f6);
}
.tp-progress-bar-length {
background: var(--total-progressbar-indication-bar-color, var(--total-template-color));
height: 100%;
text-align: right;
width: 0;
}
.tp-progress-bar-length span {
position: absolute;
right: 0;
bottom: 100%;
color: var(--total-progressbar-text-color, #333);
}
.tp-about-sidebar {
width: 45%;
padding-left: 30px;
} .tp-featured-post-wrap {
margin-left: -3%;
display: flex;
flex-wrap: wrap;
}
.tp-featured-post {
float: left;
margin-left: 3%;
width: 30.33%;
text-align: center;
margin-bottom: 50px;
}
.tp-featured-post h5 {
margin-bottom: 20px;
color: var(--total-featured-block-title-color, #333);
}
.tp-featured-post-wrap .tp-featured-icon {
color: var(--total-featured-block-icon-color, #333);
}
.tp-featured-icon i {
color: inherit;
}
.tp-featured-section {
--total-section-bg-image-color: var(--total-template-color);
}
.tp-featured-section .tp-featured-link a {
display: inline-flex;
font-size: 0.9em;
align-items: center;
color: var(--total-featured-block-readmore-color, #333);
}
.tp-featured-section .tp-featured-link a:hover {
color: var(--total-featured-block-readmore-color, #333);
}
.tp-featured-link {
margin-top: 30px;
}
.tp-featured-link i {
margin-left: 5px;
}
.tp-featured-post .tp-featured-excerpt {
color: var(--total-featured-block-text-color, #000);
}
.tp-col-2 .tp-featured-post {
width: 47%;
}
.tp-col-3 .tp-featured-post {
width: 30.33%;
}
.tp-col-4 .tp-featured-post {
width: 22%;
}
.tp-col-5 .tp-featured-post {
width: 17%;
}
.tp-col-6 .tp-featured-post {
width: 13.66%;
}
.tp-col-2 .tp-featured-post:nth-child(2n + 1) {
clear: both;
}
.tp-col-3 .tp-featured-post:nth-child(3n + 1) {
clear: both;
}
.tp-col-4 .tp-featured-post:nth-child(4n + 1) {
clear: both;
}
.tp-col-5 .tp-featured-post:nth-child(5n + 1) {
clear: both;
}
.tp-col-6 .tp-featured-post:nth-child(6n + 1) {
clear: both;
}
.tp-featured-post-wrap.style1 .tp-featured-post {
border: 2px solid var(--total-featured-block-border-color, #FFF);
padding: 30px 30px 60px;
position: relative;
border-top: 0;
margin-bottom: 70px;
}
.tp-featured-post-wrap.style1 .tp-featured-post:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 50%;
margin-right: 80px;
height: 2px;
background: var(--total-featured-block-border-color, #FFF);
}
.tp-featured-post-wrap.style1 .tp-featured-post:after {
content: "";
position: absolute;
top: 0;
right: 0;
left: 50%;
margin-left: 80px;
height: 2px;
background: var(--total-featured-block-border-color, #FFF);
}
.tp-featured-post-wrap.style1 .tp-featured-icon {
display: inline-block;
font-size: 46px;
line-height: 80px;
width: 160px;
margin-bottom: 10px;
}
.tp-featured-post-wrap.style1 .tp-featured-icon i{
color: var(--total-featured-block-icon-color, #FFF);
}
.tp-featured-post-wrap.style1 .tp-featured-post h5{
color: var(--total-featured-block-title-color, #FFF);
}
.tp-featured-post-wrap.style1 .tp-featured-post .tp-featured-excerpt{
color: var(--total-featured-block-text-color, #FFF);
}
.tp-featured-post-wrap.style1 .tp-featured-link {
position: absolute;
left: 50%;
bottom: 0;
transform: translate(-50%, 50%);
}
.tp-featured-post-wrap.style1 .tp-featured-link a {
padding: 10px 20px;
background: var(--total-featured-block-border-color, #FFF);
color: var(--total-featured-block-readmore-color, var(--total-template-color));
}
.tp-featured-post-wrap.style2 .tp-featured-post {
background: var(--total-featured-block-background-color, #fff);
padding: 30px;
box-shadow: 0px 1px 20px -8px rgba(158, 153, 158, 1);
border-top: 3px solid var(--total-featured-block-border-color, var(--total-template-color, #333));
}
.tp-featured-post-wrap.style2 .tp-featured-icon {
font-size: 46px;
margin-bottom: 20px;
}
.tp-featured-post-wrap.style3 .tp-featured-post {
border: 1px solid var(--total-featured-block-border-color, #333);
padding: 30px;
margin-bottom: 40px;
}
.tp-featured-post-wrap.style3 .tp-featured-icon {
font-size: 40px;
margin-bottom: 30px;
}
.tp-featured-post-wrap.style4 .tp-featured-post {
text-align: left;
}
.tp-featured-post-wrap.style4 .tp-featured-icon {
font-size: 30px;
margin-bottom: 10px;
}
.tp-featured-post-wrap.style4 .tp-featured-link {
margin-top: 15px;
}
.tp-featured-post-wrap.style4 .tp-featured-excerpt {
font-size: 0.94em;
}
.tp-featured-post-wrap.style5 .tp-featured-icon {
font-size: 30px;
margin-bottom: 10px;
}
.tp-featured-post-wrap.style6 .tp-featured-post {
padding-left: 70px;
text-align: left;
}
.tp-featured-post-wrap.style6 .tp-featured-icon {
float: left;
font-size: 40px;
margin-left: -70px;
}
.tp-featured-post-wrap.style6 .tp-featured-post h5 {
margin-bottom: 20px;
}
.tp-featured-post-wrap.style6 .tp-featured-post .tp-featured-link {
margin-top: 20px;
}
.tp-featured-post-wrap.style7 .tp-featured-post {
background: var(--total-featured-block-background-color, #f6f6f6);
padding: 30px 40px;
text-align: left;
transition: all 0.3s ease;
}
.tp-featured-post-wrap.style7 .tp-featured-post:hover {
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
transform: translateY(-10px);
}
.tp-featured-post-wrap.style7 .tp-featured-icon {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--total-featured-block-icon-bg-color, var(--total-template-color, #000));
height: 60px;
width: 60px;
top: -30px;
font-size: 30px;
}
.tp-featured-post-wrap.style7 .tp-featured-icon i {
color: var(--total-featured-block-icon-color, #FFF);
}
.tp-featured-post-wrap.style8 .tp-featured-icon {
font-size: 32px;
position: relative;
height: 92px;
width: 82px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
}
.tp-featured-post-wrap.style8 .tp-featured-icon:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: var(--total-featured-block-icon-bg-color, var(--total-template-color));
clip-path: polygon(50% 0, 100% 30%, 100% 70%, 50% 100%, 0 69%, 0 30%);
}
.tp-featured-post-wrap.style8 .tp-featured-icon i {
position: relative;
color: var(--total-featured-block-icon-color, #FFF);
} .tp-highlight-post-wrap {
margin-left: -3%;
}
.tp-highlight-post {
position: relative;
overflow: hidden;
}
.tp-highlight-section .tp-highlight-post {
float: left;
margin-left: 3%;
width: 30.33%;
margin-bottom: 50px;
}
.tp-highlight-post .tp-highlight-excerpt {
color: var(--total-highlight-block-excerpt-color, #FFF);
}
.tp-highlight-post h5 {
color: var(--total-highlight-block-title-color, #FFF);
}
.tp-highlight-post .tp-highlight-icon {
color: var(--total-highlight-block-icon-color, #FFF);
}
.tp-highlight-post .tp-highlight-link a {
color: var(--total-highlight-block-readmore-color, #FFF);
}
.tp-highlight-post .tp-highlight-heading {
display: block;
color: #FFF;
margin: 0;
}
.tp-highlight-link a {
display: inline-flex;
align-items: center;
font-size: 0.9em;
}
.tp-highlight-icon i {
vertical-align: middle;
}
.tp-highlight-link {
margin-top: 20px;
}
.tp-highlight-link i {
margin-left: 5px;
}
.tp-col-2 .tp-highlight-post {
width: 47%;
}
.tp-col-3 .tp-highlight-post {
width: 30.33%;
}
.tp-col-4 .tp-highlight-post {
width: 22%;
}
.tp-col-2 .tp-highlight-post:nth-child(2n + 1) {
clear: both;
}
.tp-col-3 .tp-highlight-post:nth-child(3n + 1) {
clear: both;
}
.tp-col-4 .tp-highlight-post:nth-child(4n + 1) {
clear: both;
}
.tp-highlight-style.style1 .tp-highlight-title {
position: absolute;
left: 15px;
right: 15px;
bottom: 15px;
background: var(--total-highlight-block-highlight-color-light, rgba(0, 0, 0, 0.6));
padding: 15px 60px 15px 15px;
min-height: 60px;
display: flex;
align-items: center;
transform: translateY(0);
transition: all 0.3s ease;
}
.tp-highlight-style.style1 .tp-highlight-title h5 {
margin-bottom: 0;
font-size: 1em;
}
.tp-highlight-style.style1 .tp-highlight-hover {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
padding: 30px;
background: var(--total-highlight-block-highlight-color-light, rgba(0, 0, 0, 0.6));
transition: all 0.3s ease;
transform: translateY(-100%);
display: flex;
align-items: center;
}
.tp-highlight-style.style1 .tp-highlight-icon {
position: absolute;
right: 5px;
top: 50%;
bottom: 5px;
width: 50px;
height: 50px;
line-height: 50px;
margin-top: -25px;
text-align: center;
background: var(--total-highlight-block-highlight-color, var(--total-template-color));
}
.tp-highlight-style.style1 .tp-highlight-icon i {
font-size: 28px;
}
.tp-highlight-style.style1 .tp-highlight-post:hover .tp-highlight-hover {
transform: translateY(0);
}
.tp-highlight-style.style1 .tp-highlight-post:hover .tp-highlight-title {
transform: translateY(200%);
}
.tp-highlight-style.style2 .tp-highlight-title {
position: absolute;
left: 0;
bottom: 0;
right: 0;
background: var(--total-highlight-block-highlight-color-light, rgba(0, 0, 0, 0.6));
padding: 10px 10px 10px 80px;
min-height: 60px;
display: flex;
align-items: center;
transition: all 0.3s ease;
transform: translateX(0);
}
.tp-highlight-style.style2 .tp-highlight-title h5 {
margin: 0;
font-size: 1em;
}
.tp-highlight-style.style2 .tp-highlight-icon {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 60px;
background: var(--total-highlight-block-highlight-color, var(--total-template-color));
color: #fff;
}
.tp-highlight-style.style2 .tp-highlight-icon i {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 28px;
}
.tp-highlight-style.style2 .tp-highlight-hover {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: var(--total-highlight-block-highlight-color-light, rgba(0, 0, 0, 0.6));
padding: 30px 30px 30px 80px;
transition: all 0.3s ease;
transform: translateX(-100%);
display: flex;
flex-direction: column;
justify-content: center;
}
.tp-highlight-style.style2 .tp-highlight-post:hover .tp-highlight-hover {
transform: translateX(0);
}
.tp-highlight-style.style2 .tp-highlight-post:hover .tp-highlight-title {
transform: translateX(500%);
}
.tp-highlight-style.style2 .tp-highlight-hover * {
line-height: 1.5;
}
.tp-highlight-post .tp-highlight-hover .tp-highlight-heading {
margin-bottom: 10px;
}
.tp-highlight-style.style3 .tp-highlight-title {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
padding: 30px;
text-align: center;
background: var(--total-highlight-block-highlight-color-light, rgba(0, 0, 0, 0.6));
backface-visibility: hidden;
transition: all 0.7s ease;
transform-style: preserve-3d;
display: flex;
align-items: center;
-webkit-perspective: 1000px;
-o-perspective: 1000px;
-ms-perspective: 1000px;
perspective: 1000px;
}
.tp-highlight-style.style3 .tp-highlight-title-inner {
width: 100%;
}
.tp-highlight-style.style3 .tp-highlight-title .tp-highlight-icon {
margin-bottom: 20px;
}
.tp-highlight-style.style3 .tp-highlight-title .tp-highlight-icon i {
font-size: 30px;
}
.tp-highlight-style.style3 .tp-highlight-hover {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: var(--total-highlight-block-highlight-color, var(--total-template-color));
padding: 30px;
text-align: center;
transform: rotateY(180deg);
backface-visibility: hidden;
transition: all 0.7s ease;
transform-style: preserve-3d;
display: flex;
align-items: center;
}
.tp-highlight-style.style3 .tp-highlight-hover-inner {
width: 100%;
}
.tp-highlight-style.style3 .tp-highlight-post {
-webkit-perspective: 1000px;
-o-perspective: 1000px;
-ms-perspective: 1000px;
perspective: 1000px;
overflow: visible;
}
.tp-highlight-style.style3 .tp-highlight-post:hover .tp-highlight-title {
transform: rotateY(-180deg);
}
.tp-highlight-style.style3 .tp-highlight-post:hover .tp-highlight-hover {
transform: rotateY(0);
}
.tp-highlight-style.style4 .tp-highlight-post {
min-height: 300px;
transform-style: preserve-3d;
perspective: 1000px;
-webkit-perspective: 1000px;
overflow: visible;
}
.tp-highlight-style.style4 .tp-highlight-title,
.tp-highlight-style.style4 .tp-highlight-hover {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
text-align: center;
background-size: cover;
background-color: var(--total-highlight-block-highlight-color-light, rgba(0, 0, 0, 0.6));
background-position: center;
transition: all 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
backface-visibility: hidden;
}
.tp-highlight-style.style4 .tp-highlight-hover {
background-color: var(--total-highlight-block-highlight-color-light, rgba(0, 0, 0, 0.6));
}
.tp-highlight-style.style4 .tp-highlight-title:after,
.tp-highlight-style.style4 .tp-highlight-hover:before {
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: "";
display: block;
opacity: 0.6;
background-color: inherit;
}
.tp-highlight-style.style4 .tp-highlight-title>div,
.tp-highlight-style.style4 .tp-highlight-hover>div {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
padding: 40px;
-webkit-perspective: inherit;
perspective: inherit;
z-index: 2;
transform: translateZ(60px) scale(0.94);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.tp-highlight-style.style4 .tp-highlight-icon {
font-size: 30px;
margin-bottom: 20px;
display: inline-block;
position: relative;
}
.tp-highlight-style.style4 .tp-highlight-icon:after {
content: "";
position: absolute;
left: 100%;
top: 50%;
margin-left: 10px;
height: 1px;
width: 30px;
background: var(--total-highlight-block-icon-color, #FFF);
border-radius: 50%;
}
.tp-highlight-style.style4 .tp-highlight-icon:before {
content: "";
position: absolute;
right: 100%;
top: 50%;
margin-right: 10px;
height: 1px;
width: 30px;
background: var(--total-highlight-block-icon-color, #FFF);
border-radius: 50%;
}
.tp-highlight-style.style4 .tp-highlight-title {
transform: rotateY(0deg);
transform-style: preserve-3d;
}
.tp-highlight-style.style4 .tp-highlight-hover {
transform: rotateY(180deg);
transform-style: preserve-3d;
}
.tp-highlight-style.style4 .tp-highlight-post:hover .tp-highlight-title {
transform: rotateY(-180deg);
transform-style: preserve-3d;
}
.tp-highlight-style.style4 .tp-highlight-post:hover .tp-highlight-hover {
transform: rotateY(0deg);
transform-style: preserve-3d;
} .tp-portfolio-container-wrap {
width: 100%;
}
.tp-portfolio-cat-name-list {
margin-bottom: 40px;
}
.tp-portfolio-cat-name {
cursor: pointer;
display: inline-block;
transition: all 0.3s ease-in-out;
text-transform: uppercase;
font-size: 0.9em;
color: #333;
}
.tp-portfolio-switch {
display: inline-block;
cursor: pointer;
color: #333;
}
.tp-portfolio-cat-name-list.style1 {
text-align: right;
}
.tp-portfolio-cat-name-list.style1 .tp-portfolio-cat-name {
padding-left: 10px;
margin-left: 10px;
border-left: 1px solid var(--total-portfolio-block-tab-text-color-light, #bbb);
line-height: 1;
color: var(--total-portfolio-block-tab-text-color);
}
.tp-portfolio-cat-name-list.style1 .tp-portfolio-cat-name:first-child {
border-left: 0;
margin-left: 0;
}
.tp-portfolio-cat-name-list.style1 .tp-portfolio-cat-name:hover,
.tp-portfolio-cat-name-list.style1 .tp-portfolio-cat-name.active {
color: var(--total-portfolio-block-active-tab-text-color, var(--total-template-color));
}
.tp-portfolio-cat-name-list.style1 .tp-portfolio-post-wrap {
margin: 0 -7.5px;
}
.tp-portfolio-cat-name-list.style1 .tp-portfolio-switch i {
color: var(--total-portfolio-block-tab-text-color);
}
.tp-portfolio-cat-name-list.style2 {
text-align: center;
}
.tp-portfolio-cat-name-list.style2 .tp-portfolio-switch {
display: none;
}
.tp-portfolio-cat-name-list.style2 .tp-portfolio-cat-name {
text-transform: uppercase;
padding: 15px 5px;
margin: 0 10px;
font-size: 0.85em;
border-top: 1px solid var(--total-portfolio-block-tab-text-color-light, rgba(0, 0, 0, 0.3));
position: relative;
color: var(--total-portfolio-block-tab-text-color);
}
.tp-portfolio-cat-name-list.style2 .tp-portfolio-cat-name.active {
color: var(--total-portfolio-block-active-tab-text-color, var(--total-template-color));
}
.tp-portfolio-cat-name-list.style2 .tp-portfolio-cat-name.active:after {
content: "";
position: absolute;
top: -3px;
left: 0;
right: 0;
height: 5px;
background: var(--total-portfolio-block-active-tab-text-color, var(--total-template-color));
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap {
padding-left: 80px;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-switch {
float: left;
background: #000;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-name {
margin-right: 20px;
line-height: 50px;
opacity: 0;
visibility: hidden;
transform: translateX(-15px);
color: var(--total-portfolio-block-tab-text-color);
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-name.active,
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-name:hover {
color: var(--total-portfolio-block-active-tab-text-color, var(--total-template-color))
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap.tp-open .tp-portfolio-cat-name {
opacity: 1;
visibility: visible;
transform: translateX(0);
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-name:before {
content: "-";
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(1) {
transition-delay: 0.1s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(2) {
transition-delay: 0.2s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(3) {
transition-delay: 0.3s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(4) {
transition-delay: 0.4s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(5) {
transition-delay: 0.5s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(6) {
transition-delay: 0.6s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(7) {
transition-delay: 0.7s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(8) {
transition-delay: 0.8s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(9) {
transition-delay: 0.9s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-cat-wrap .tp-portfolio-cat-name:nth-child(10) {
transition-delay: 1s;
}
.tp-portfolio-cat-name-list.style3 .tp-portfolio-switch i {
color: #fff;
}
.tp-portfolio-cat-name-list.style4 .tp-portfolio-switch {
background: var(--total-portfolio-block-tab-background-color, var(--total-template-color));
color: #fff;
border-radius: 40px 40px 10px 10px;
text-align: center;
line-height: 50px;
display: block;
width: 50px;
height: 50px;
margin: 0 auto;
position: relative;
z-index: 99;
transform: translateY(3px);
}
.tp-portfolio-cat-name-list.style4 .tp-portfolio-switch i {
color: var(--total-portfolio-block-tab-text-color, #FFF);
line-height: inherit;
}
.tp-portfolio-cat-name-list.style4 {
text-align: center;
}
.tp-portfolio-cat-name-list.style4 .tp-portfolio-cat-wrap {
display: inline-block;
background: var(--total-portfolio-block-tab-background-color, var(--total-template-color));
border-radius: 40px;
padding: 10px;
}
.tp-portfolio-cat-name-list.style4 .tp-portfolio-cat-name {
padding: 5px 20px;
border-radius: 40px;
color: var(--total-portfolio-block-tab-text-color, #FFF);
}
.tp-portfolio-cat-name-list.style4 .tp-portfolio-cat-name.active {
background: rgba(0, 0, 0, 0.1);
}
.tp-portfolio-posts {
position: relative;
margin-left: -10px;
margin-right: -10px;
}
.tp-fullwidth-container .tp-portfolio-posts {
margin-left: 0;
margin-right: 0;
}
.tp-portfolio {
float: left;
}
.tp-portfolio-post-wrap[data-gutter="1"] .tp-portfolio-outer-wrap {
margin: 10px;
}
.tp-portfolio-outer-wrap {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.tp-portfolio-wrap {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
background-color: #f9f9f9;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.tp-portfolio-wrap img {
position: relative;
top: 50%;
transform: translateY(-50%);
-moz-transform: translateY(-50%);
}
.tp-portfolio-caption {
position: absolute;
left: 10px;
right: 10px;
bottom: 10px;
top: 10px;
padding: 30px;
opacity: 0;
background: var(--portfolio-block-image-hov-background-color-rgba, var(--total-template-color-rgba));
transition: all 0.5s ease-in-out;
overflow: hidden;
}
.tp-portfolio-wrap:hover .tp-portfolio-caption {
opacity: 1;
}
.tp-portfolio-caption h5 {
color: var(--total-portfolio-block-title-color, #fff);
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
position: absolute;
top: 20px;
left: 20px;
right: 20px;
transform: translate(300px, 0);
transition: all 0.3s ease-in-out;
}
.tp-portfolio-masonary .tp-portfolio-caption h5 {
color: #fff;
}
.tp-portfolio-wrap:hover .tp-portfolio-caption h5 {
transform: translate(0, 0);
}
.tp-portfolio-caption a {
height: 36px;
width: 36px;
position: absolute;
right: 20px;
bottom: 20px;
text-align: center;
display: block;
line-height: 36px;
color: var(--total-portfolio-block-button-color, var(--total-template-color));
font-size: 14px;
background: var(--total-portfolio-block-button-bg-color, #fff);
margin: 10px 5px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
}
.tp-portfolio-caption a:hover{
color: var(--total-portfolio-block-button-color, var(--total-template-color));
}
.tp-portfolio-caption a.tp-portfolio-image {
transform: translate(-300px, 0);
right: 66px;
}
.tp-portfolio-caption a.tp-portfolio-link {
transform: translate(-300px, 0);
}
.tp-portfolio-wrap:hover .tp-portfolio-caption a.tp-portfolio-link,
.tp-portfolio-wrap:hover .tp-portfolio-caption a.tp-portfolio-image {
transform: translate(0, 0);
} .tp-service-bg {
position: absolute;
top: 0;
bottom: 0;
min-height: 200px;
width: 50%;
background-image: var(--total-service-left-bg-url);
background-size: var(--total-service-left-bg-size, auto);
background-position: var(--total-service-left-bg-position, center center);
background-repeat: var(--total-service-left-bg-repeat, no-repeat);
background-attachment: var(--total-service-left-bg-attachment, scroll);
background-color: var(--total-service-left-bg-color);
}
.tp-service-bg.tp-bg-has-image:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
opacity: 0.9;
background: var(--total-service-left-bg-overlay);
}
.tp-service-excerpt h5 {
color: var(--total-service-block-title-color, #333);
}
.tp-service-excerpt .tp-service-text {
color: var(--total-service-block-excerpt-color, #333);
}
.tp-bg-right .tp-service-bg {
margin-left: 50%;
right: 0;
}
.tp-bg-left .tp-service-bg {
margin-right: 50%;
left: 0;
}
.tp-service-section.style1{
--total-section-bg-image-color: #F5F5F5;
}
.tp-service-section.style1.tp-bg-right .tp-service-posts,
.tp-service-section.style4.tp-bg-right .tp-service-posts {
float: left;
width: 50%;
padding-right: 40px;
}
.tp-service-section.style1.tp-bg-left .tp-service-posts,
.tp-service-section.style4.tp-bg-left .tp-service-posts {
float: right;
width: 50%;
padding-left: 40px;
}
.tp-service-section.style1 .tp-service-post-wrap,
.tp-service-section.style4 .tp-service-post-wrap {
position: relative;
}
.tp-service-section.style1 .tp-service-post:after {
content: "";
position: absolute;
left: 24px;
top: 0;
bottom: 0;
width: 2px;
background: var(--total-service-block-icon-bg-color, var(--total-template-color));
}
.tp-service-section.style1 .tp-service-posts .tp-section-title-top-cs,
.tp-service-section.style1 .tp-service-posts .tp-section-title-top-center,
.tp-service-section.style4 .tp-service-posts .tp-section-title-top-cs,
.tp-service-section.style4 .tp-service-posts .tp-section-title-top-center {
width: auto;
}
.tp-service-section.style1 .tp-service-post {
padding-bottom: 25px;
position: relative;
}
.tp-service-section.style1 .tp-service-post:last-child {
padding-bottom: 0;
}
.tp-service-section.style1 .tp-service-post:last-child:after {
display: none;
}
.tp-service-section.style1 .tp-service-icon {
position: relative;
z-index: 99;
float: left;
font-size: 22px;
background: var(--total-service-block-icon-bg-color, var(--total-template-color));
width: 50px;
text-align: center;
color: #fff;
line-height: 50px;
cursor: pointer;
border-radius: 50%;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
}
.tp-service-section.style1 .tp-service-icon i {
color: var(--total-service-block-icon-color, #fff);
}
.tp-service-section.style1 .tp-active .tp-service-icon {
box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 4px var(--total-service-block-icon-bg-color, var(--total-template-color));
}
.tp-service-section.style1 .tp-service-excerpt {
padding-left: 65px;
}
.tp-service-section.style1 .tp-service-text {
display: none;
}
.tp-service-section.style1 .tp-service-excerpt h5 {
margin: 10px 0;
cursor: pointer;
line-height: 25px;
}
.tp-service-section.style1 .tp-service-more {
margin-top: 10px;
display: inline-flex;
align-items: center;
}
.tp-service-section.style2 .tp-container {
position: relative;
}
.tp-service-section.style2 .tp-service-posts {
display: flex;
align-items: center;
}
.tp-service-section.style2 .tp-section-title-tagline {
width: 30%;
text-align: left;
padding-right: 60px;
margin: 0;
}
.tp-service-section.style2 .tp-section-tagline {
width: auto;
}
.tp-service-section.style2 .tp-section-title-top-cs .tp-section-title:after {
left: 0;
margin-left: 0;
}
.tp-service-section.style2 .tp-section-title-big .tp-section-title:after {
left: 0;
margin-left: 35px;
}
.tp-service-section.style2.tp-bg-right .tp-section-title-big .tp-section-title:after,
.tp-service-section.style2.tp-bg-right .tp-section-title-top-cs .tp-section-title:after,
.tp-service-section.style2.tp-bg-right .tp-section-title-top-ls .tp-section-title:after {
left: auto;
right: 0;
margin-left: 0;
}
.tp-service-section.style2.tp-bg-right .tp-section-title-tagline {
text-align: right;
padding-right: 0;
padding-left: 46px;
order: 2;
}
.tp-service-section.style2 .tp-service-post-holder {
width: 70%;
}
.tp-service-section.style2 .tp-service-post-wrap {
display: flex;
flex-wrap: wrap;
background: rgba(255, 255, 255, 0.95);
padding-top: 20px;
padding-bottom: 20px;
padding-left: 40px;
padding-right: 40px;
justify-content: space-between;
}
.tp-service-section.style2 .tp-service-post {
width: 47%;
margin: 20px 0;
text-align: center;
}
.tp-service-section.style2 .tp-service-icon {
margin-bottom: 10px;
}
.tp-service-section.style2 .tp-service-icon i {
font-size: 30px;
line-height: 1;
color: var(--total-service-block-icon-color, #fff);
}
.tp-service-section.style2 .tp-service-excerpt h5 {
margin-bottom: 20px;
}
.tp-service-section.style2 .tp-service-text {
font-size: 0.95em;
}
.tp-service-section .tp-service-more {
display: inline-block;
margin-top: 10px;
color: var(--total-service-block-link-color, #333);
}
.tp-service-section .tp-service-more:hover {
color: var(--total-service-block-link-color, #333);
}
.tp-service-section.style3 .tp-section-wrap>.tp-service-bg {
display: none;
}
.tp-service-section.style3 .tp-service-post-holder {
position: relative;
}
.tp-service-section.style3 .tp-service-bg {
left: 35% !important;
right: 35% !important;
bottom: 0;
top: 0;
margin: 0 !important;
width: auto !important;
}
.tp-service-section.style3 .tp-container {
position: relative;
}
.tp-service-section.style3 .tp-service-post-wrap {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.tp-service-section.style3 .tp-service-post {
width: 35%;
margin: 0 0 50px;
}
.tp-service-section.style3 .tp-service-post:nth-child(odd) {
padding-right: 100px;
text-align: right;
}
.tp-service-section.style3 .tp-service-post:nth-child(even) {
padding-left: 100px;
}
.tp-service-section.style3 .tp-service-icon {
width: 80px;
text-align: center;
margin-top: 10px;
}
.tp-service-section.style3 .tp-service-post:nth-child(odd) .tp-service-icon {
float: right;
margin-right: -80px;
}
.tp-service-section.style3 .tp-service-post:nth-child(even) .tp-service-icon {
float: left;
margin-left: -80px;
}
.tp-service-section.style3 .tp-service-icon i {
font-size: 40px;
line-height: 1;
color: var(--total-service-block-icon-color, #fff);
}
.tp-service-section.style4.tp-bg-left .tp-service-posts {
padding-left: 80px;
}
.tp-service-section.style4.tp-bg-right .tp-service-posts {
padding-right: 80px;
}
.tp-service-section.style4 .tp-service-post-wrap {
padding-right: 50px;
}
.tp-service-section.style4 .tp-service-post {
padding-left: 80px;
margin-top: 40px;
}
.tp-service-section.style4 .tp-service-icon {
margin-left: -80px;
float: left;
font-size: 42px;
line-height: 1;
margin-top: 10px;
}
.tp-service-section .tp-service-more>i {
margin-left: 5px;
line-height: inherit;
color: var(--total-service-block-link-color, #333);
}
.tp-service-section.style4 .tp-service-icon i {
color: var(--total-service-block-icon-color, #333);
} .tp-team-grid.tp-team-member-wrap {
margin-left: -3%;
}
.tp-team-grid .tp-team-member {
width: 22%;
margin-left: 3%;
float: left;
margin-bottom: 40px;
position: relative;
}
.tp-team-col-2 .tp-team-member {
width: 47%;
}
.tp-team-col-3 .tp-team-member {
width: 30.33%;
}
.tp-team-col-4 .tp-team-member {
width: 22%;
}
.tp-team-col-2 .tp-team-member:nth-child(2n + 1) {
clear: both;
}
.tp-team-col-3 .tp-team-member:nth-child(3n + 1) {
clear: both;
}
.tp-team-col-4 .tp-team-member:nth-child(4n + 1) {
clear: both;
}
.tp-team-member .tp-team-designation {
font-size: 0.9em;
margin-bottom: 15px;
color: var(--total-team-block-designation-color, #333)
}
.tp-team-member img {
width: 100%;
}
.tp-team-member h5 {
margin-bottom: 10px;
color: var(--total-team-block-title-color, #333);
}
.tp-team-member a.tp-team-detail {
margin-top: 10px;
display: inline-block;
position: relative;
color: var(--total-team-block-detail-link-color, #333);
}
.tp-team-member .team-short-content {
font-size: 0.94em;
color: var(--total-team-block-excerpt-color, #333);
}
.widget_totalplus_team .tp-team-member.style1 * {
color: #fff;
}
.tp-team-section .tp-team-social-id a {
color: var(--total-team-block-social-icon-color, #444);
border: 1px solid var(--total-team-block-social-icon-color, #444);
}
.tp-team-member a.tp-team-detail:before,
.tp-team-member a.tp-team-detail:after {
background: var(--total-team-block-detail-link-color, #333);
}
.tp-team-member.style1 {
text-align: center;
}
.tp-team-member.style1 .tp-team-member-inner {
position: relative;
}
.tp-team-member.style1 .tp-team-social-id {
margin-top: 20px;
}
.tp-team-member.style1 .tp-team-social-id a {
display: inline-block;
margin: 0 5px;
font-size: 13px;
line-height: 32px;
height: 32px;
width: 32px;
border-radius: 50%;
border: 1px solid var(--total-team-block-social-icon-color, #FFF);
color: var(--total-team-block-social-icon-color, #FFF);
}
.tp-team-member.style1 .tp-team-member-excerpt {
display: flex;
align-items: center;
background: var(--total-team-block-overlay-color, var(--total-template-color-rgba));
padding: 20px;
position: absolute;
left: 10px;
right: 10px;
bottom: 10px;
top: 10px;
opacity: 0;
overflow: hidden;
transform: scale(0.5);
transition: all 0.4s ease;
}
.tp-team-member.style1 .team-short-content {
color: var(--total-team-block-excerpt-color, #FFF);
}
.tp-team-member.style1 .tp-team-member-span {
width: 100%;
}
.tp-team-member.style1:hover .tp-team-member-excerpt {
opacity: 1;
transform: scale(1);
}
.tp-team-member.style1 .tp-title-wrap {
background: var(--total-team-block-overlay-color, var(--total-template-color-rgba));
padding: 10px;
position: absolute;
left: 10px;
bottom: 10px;
right: 10px;
opacity: 1;
}
.tp-team-member.style1:hover .tp-title-wrap {
opacity: 0;
}
.tp-team-member.style1 h5 {
position: relative;
color: var(--total-team-block-title-color, #fff);
padding-bottom: 10px;
}
.tp-team-member.style1 .tp-title-wrap h5 {
padding: 0;
margin: 0;
color: var(--total-team-block-title-color, #fff);
}
.tp-team-member.style1 h5 a {
text-decoration: none;
color: inherit;
}
.tp-team-member.style1 .tp-team-member-excerpt h5:after {
content: "";
position: absolute;
width: 50px;
left: 50%;
margin-left: -25px;
height: 2px;
background: var(--total-team-block-title-color, #fff);
bottom: -2px;
}
.tp-team-member.style1 .tp-team-designation {
color: var(--total-team-block-designation-color, #fff);
font-size: 0.9em;
margin-bottom: 15px;
}
.tp-team-member.style1 .tp-team-detail {
display: inline-block;
color: var(--total-team-block-detail-link-color, #fff);
text-decoration: none;
font-size: 0.9em;
margin-top: 20px;
}
.tp-team-member.style1 a.tp-team-detail:before {
content: "";
position: absolute;
left: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-left: 5px;
border-radius: 50%;
background: var(--total-team-block-detail-link-color, #fff);
}
.tp-team-member.style1 a.tp-team-detail:after {
content: "";
position: absolute;
right: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-right: 5px;
border-radius: 50%;
background: var(--total-team-block-detail-link-color, #fff);
}
.widget_totalplus_team .tp-team-member.style2 * {
color: #333;
}
.tp-team-member.style2 .tp-team-member-inner {
display: flex;
align-items: center;
background: var(--total-team-block-background-color, #fff);
box-shadow: 0px 0px 20px -4px rgb(0 0 0 / 20%);
}
.tp-team-carousel .tp-team-member.style2 {
padding: 12px;
}
.tp-team-member.style2 .tp-team-member-content,
.tp-team-member.style2 .tp-team-image {
width: 50%;
}
.tp-team-member.style2 .tp-team-image {
display: flex;
align-self: stretch;
}
.tp-team-member.style2 .tp-team-image img {
object-fit: cover;
object-position: top;
}
.tp-team-member.style2 .tp-team-member-content {
padding: 20px;
color: #333;
}
.tp-team-member.style2 .tp-team-designation {
margin-bottom: 10px;
font-size: 0.9em;
}
.tp-team-member.style2 .tp-team-social-id {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
gap: 5px;
}
.tp-team-member.style2 .tp-team-social-id a {
height: 32px;
width: 32px;
text-align: center;
line-height: 31px;
font-size: 16px;
border-radius: 32px;
}
.tp-team-member.style2 a.tp-team-detail {
margin-left: 20px;
}
.tp-team-member.style2 a.tp-team-detail:before {
content: "";
position: absolute;
left: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-left: 5px;
border-radius: 50%;
}
.tp-team-member.style2 a.tp-team-detail:after {
content: "";
position: absolute;
right: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-right: 5px;
border-radius: 50%;
}
.tp-team-member.style3 {
background: var(--total-team-block-background-color, #fff);
text-align: center;
box-shadow: 0px 4px 26px -6px rgba(0, 0, 0, 0.2);
}
.tp-team-carousel .tp-team-member.style3 {
box-shadow: 0px 4px 12px -6px rgba(0, 0, 0, 0.2);
}
.widget_totalplus_team .tp-team-member.style3 * {
color: #333;
}
.tp-team-member.style3 .tp-team-image {
position: relative;
overflow: hidden;
}
.tp-team-member.style3 .tp-team-image-overlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: var(--total-template-color-rgba, rgba(255, 193, 7, 0.9));
padding: 30px;
display: flex;
align-items: center;
opacity: 0;
transition: all 0.3s ease;
}
.tp-team-member.style3 .tp-team-image-overlay-inner {
width: 100%;
}
.tp-team-member.style3 .team-short-content {
transform: translateY(-300px);
transition: all 0.5s ease 0.2s;
color: var(--total-team-block-excerpt-color, #FFF);
}
.tp-team-member.style3 .tp-team-social-id {
transform: translateY(300px);
transition: all 0.5s ease 0.2s;
}
.tp-team-member.style3:hover .tp-team-image-overlay {
opacity: 1;
background: var(--total-team-block-overlay-color, var(--total-template-color-rgba, rgba(255, 193, 7, 0.9)));
}
.tp-team-member.style3:hover .team-short-content {
transform: translateY(0);
}
.tp-team-member.style3:hover .tp-team-social-id {
transform: translateY(0);
}
.tp-team-member.style3 .tp-team-member-content {
padding: 30px 20px;
color: #333;
}
.tp-team-member.style3 .tp-team-social-id {
margin-top: 20px;
}
.tp-team-member.style3 .tp-team-social-id a {
height: 36px;
width: 36px;
line-height: 36px;
text-align: center;
border-radius: 50%;
margin: 0 4px;
display: inline-block;
font-size: 15px;
color: var(--total-team-block-social-icon-color, #FFF);
border: 1px solid var(--total-team-block-social-icon-color, #FFF);
}
.tp-team-member.style3 .tp-team-designation {
margin-bottom: 0;
}
.tp-team-member.style3 a.tp-team-detail {
position: relative;
color: var(--total-team-block-detail-link-color, #FFF);
}
.tp-team-member.style3 a.tp-team-detail:before {
content: "";
position: absolute;
left: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-left: 5px;
border-radius: 50%;
background: var(--total-team-block-detail-link-color, #FFF);
}
.tp-team-member.style3 a.tp-team-detail:after {
content: "";
position: absolute;
right: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-right: 5px;
border-radius: 50%;
background: #FFF;
background: var(--total-team-block-detail-link-color, #FFF);
}
.tp-team-member.style4 {
background: var(--total-team-block-background-color, #fff);
text-align: center;
padding-top: 40px;
box-shadow: 0px 4px 26px -6px rgba(0, 0, 0, 0.2);
}
.widget_totalplus_team .tp-team-member.style4 * {
color: #444;
}
.tp-team-member.style4 .tp-team-image {
width: 150px;
height: 150px;
margin: 0 auto;
border-radius: 50%;
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 10px;
}
.tp-team-member.style4 .tp-team-image img {
border-radius: 50%;
object-fit: cover;
height: 100%;
width: 100%;
}
.tp-team-member.style4 .tp-team-member-content {
padding: 30px;
color: #333;
}
.tp-team-member.style4 .tp-team-social-id {
margin-top: 20px;
}
.tp-team-member.style4 .tp-team-social-id a {
margin: 0 5px;
height: 38px;
width: 38px;
display: inline-block;
border-radius: 50%;
line-height: 38px;
font-size: 16px;
}
.tp-team-member.style4 a.tp-team-detail {
position: relative;
}
.tp-team-member.style4 a.tp-team-detail:before {
content: "";
position: absolute;
left: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-left: 5px;
border-radius: 50%;
}
.tp-team-member.style4 a.tp-team-detail:after {
content: "";
position: absolute;
right: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-right: 5px;
border-radius: 50%;
}
.tp-team-member.style5 {
text-align: center;
margin-bottom: 100px !important;
position: relative;
}
.widget_totalplus_team .tp-team-member.style5 * {
color: #444;
}
.tp-team-member.style5 .tp-team-member-content {
position: absolute;
left: 20px;
right: 20px;
bottom: 0;
margin-bottom: -60px;
background: var(--total-team-block-background-color, #fff);
color: #333;
padding: 15px;
box-shadow: 0px 6px 12px -3px rgba(0, 0, 0, 0.2);
}
.tp-team-member.style5 .team-short-content {
max-height: 0;
overflow: hidden;
transition: all 0.3s ease 0.1s;
margin-bottom: 0;
padding: 0 10px;
}
.tp-team-member.style5:hover .team-short-content {
margin-bottom: 20px;
max-height: 1000px;
}
.tp-team-member.style5 .tp-team-image {
overflow: hidden;
}
.tp-team-member.style5 .tp-team-image img {
transform: scale(1);
transition: all 0.6s ease;
}
.tp-team-member.style5:hover .tp-team-image img {
transform: scale(1.2);
}
.tp-team-member.style5 .tp-team-social-id a {
margin: 0 10px;
border: none;
}
.tp-team-member.style5 a.tp-team-detail {
position: relative;
}
.tp-team-member.style5 a.tp-team-detail:before {
content: "";
position: absolute;
left: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-left: 5px;
border-radius: 50%;
}
.tp-team-member.style5 a.tp-team-detail:after {
content: "";
position: absolute;
right: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-right: 5px;
border-radius: 50%;
}
.tp-team-member.style6 {
overflow: hidden;
position: relative;
}
.tp-team-member.style6 .tp-team-member-wrap {
margin-left: -3%;
}
.tp-team-member.style6 .tp-team-member-inner {
padding: 1px;
}
.tp-team-member.style6 .tp-team-image {
transform: rotateY(0deg);
position: relative;
backface-visibility: hidden;
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.1);
transition: all 0.6s ease;
overflow: hidden;
}
.tp-team-member.style6 .tp-team-member-content {
transform: rotateY(180deg);
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
backface-visibility: hidden;
padding: 30px 20px;
background: var(--total-team-block-background-color, #fff);
color: #333;
border: 1px solid rgba(0, 0, 0, 0.1);
text-align: center;
transition: all 0.6s ease;
display: flex;
align-items: center;
}
.tp-team-member.style6 .tp-team-member-excerpt {
width: 100%;
}
.widget_totalplus_team .tp-team-member.style6 .tp-team-member-content * {
color: #444;
}
.tp-team-member.style6:hover .tp-team-image {
transform: rotateY(180deg);
}
.tp-team-member.style6:hover .tp-team-member-content {
transform: rotateY(0deg);
}
.tp-team-member.style6 .tp-team-social-id {
margin-top: 15px;
}
.tp-team-member.style6 .tp-team-social-id a {
height: 30px;
width: 30px;
display: inline-block;
text-align: center;
line-height: 30px;
font-size: 18px;
border: none;
}
.tp-team-member.style6 a.tp-team-detail {
position: relative;
}
.tp-team-member.style6 a.tp-team-detail:before {
content: "";
position: absolute;
left: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-left: 5px;
border-radius: 50%;
}
.tp-team-member.style6 a.tp-team-detail:after {
content: "";
position: absolute;
right: 100%;
top: 50%;
height: 1px;
width: 15px;
margin-right: 5px;
border-radius: 50%;
}
.tp-team-carousel .tp-team-member {
margin: 10px;
}
.tp-team-carousel .owl-nav {
text-align: center;
margin-top: 50px;
}
.tp-team-carousel.owl-carousel .owl-nav .owl-prev,
.tp-team-carousel.owl-carousel .owl-nav .owl-next {
display: inline-block;
height: 44px;
width: 50px;
line-height: 44px;
margin: 0 4px;
background: var(--total-team-block-arrow-bg-color, #fff);
color: var(--total-team-block-arrow-color, #333);
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.tp-team-carousel.owl-carousel .owl-nav .owl-prev:hover,
.tp-team-carousel.owl-carousel .owl-nav .owl-next:hover {
background: var(--total-team-block-arrow-bg-color-hover, var(--total-team-block-arrow-bg-color, #fff));
color: var(--total-team-block-arrow-color-hover, var(--total-team-block-arrow-color, #333));
}
.tp-team-carousel .owl-nav .owl-prev {
border-radius: 30px 0 0 30px;
}
.tp-team-carousel .owl-nav .owl-next {
border-radius: 0 30px 30px 0;
} .tp-counter-wrap {
margin-left: -5%;
}
.tp-counter {
float: left;
width: 20%;
margin-left: 5%;
text-align: center;
margin-bottom: 60px;
position: relative;
}
.tp-counter-section .tp-counter-count {
white-space: nowrap;
letter-spacing: 1px;
color: var(--total-counter-block-number-color, #000);
font-weight: var(--total-counter-font-weight, 400);
}
.tp-counter-section .tp-counter-title {
margin: 0;
letter-spacing: 1px;
color: var(--total-counter-block-title-color, #000);
}
.tp-counter-section .tp-counter-icon {
color: #000;
}
.tp-counter-section .tp-counter-icon i {
color: var(--total-counter-block-icon-color);
}
.tp-counter-col-2 .tp-counter {
width: 45%;
}
.tp-counter-col-3 .tp-counter {
width: 28.33%;
}
.tp-counter-col-4 .tp-counter {
width: 20%;
}
.tp-counter-col-5 .tp-counter {
width: 15%;
}
.tp-counter-col-6 .tp-counter {
width: 11.66%;
}
.tp-counter-col-2 .tp-counter:nth-child(2n + 1) {
clear: both;
}
.tp-counter-col-3 .tp-counter:nth-child(3n + 1) {
clear: both;
}
.tp-counter-col-4 .tp-counter:nth-child(4n + 1) {
clear: both;
}
.tp-counter-col-5 .tp-counter:nth-child(5n + 1) {
clear: both;
}
.tp-counter-col-6 .tp-counter:nth-child(6n + 1) {
clear: both;
}
.tp-counter-section .style1 .tp-counter {
float: left;
text-align: center;
border: 2px solid var(--total-counter-block-border-color, #000);
border-top: 0;
padding: 0 20px 30px;
position: relative;
margin-top: 20px;
}
.tp-counter-section .style1 .tp-counter:after {
content: "";
position: absolute;
width: 30%;
left: 0;
top: 0;
height: 2px;
background: var(--total-counter-block-border-color, #000);
}
.tp-counter-section .style1 .tp-counter:before {
content: "";
position: absolute;
width: 30%;
right: 0;
top: 0;
height: 2px;
background: var(--total-counter-block-border-color, #000);
}
.tp-counter-section .style1 .tp-counter-count {
font-size: 48px;
line-height: 1;
margin-bottom: 15px;
letter-spacing: 3px;
}
.tp-counter-section .style1 .tp-counter-icon {
display: block;
font-size: 36px;
position: relative;
transform: translate(0, -17px);
line-height: 36px;
}
.tp-counter-section .style1 .tp-counter-title {
margin-top: 15px;
margin: 0;
}
.tp-counter-section .style2 .tp-counter-icon {
font-size: 2em;
line-height: 1;
margin-top: 20px;
margin-bottom: 40px;
position: relative;
}
.tp-counter-section .style2 .tp-counter-icon:after {
content: "";
position: absolute;
top: 100%;
left: 50%;
width: 30px;
height: 2px;
background: var(--total-counter-block-icon-color, #000);
margin-left: -15px;
margin-top: 25px;
}
.tp-counter-section .style2 .tp-counter-count {
font-size: 3em;
line-height: 1;
}
.tp-counter-section .style2 .tp-counter-title {
margin: 0;
padding: 20px;
}
.tp-counter-section .style2 .tp-counter:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 30px;
height: 2px;
background: var(--total-counter-block-border-color, #000);
transition: all 0.3s ease;
}
.tp-counter-section .style2 .tp-counter:after {
content: "";
position: absolute;
left: 0;
top: 0;
height: 30px;
width: 2px;
background: var(--total-counter-block-border-color, #000);
transition: all 0.3s ease;
}
.tp-counter-section .style2 .tp-counter>span:before {
content: "";
position: absolute;
right: 0;
bottom: 0;
width: 30px;
height: 2px;
background: var(--total-counter-block-border-color, #000);
transition: all 0.3s ease;
}
.tp-counter-section .style2 .tp-counter>span:after {
content: "";
position: absolute;
right: 0;
bottom: 0;
height: 30px;
width: 2px;
background: var(--total-counter-block-border-color, #000);
transition: all 0.3s ease;
}
.tp-counter-section .style2 .tp-counter:hover:before,
.tp-counter-section .style2 .tp-counter:hover>span:before {
width: 100%;
}
.tp-counter-section .style2 .tp-counter:hover:after,
.tp-counter-section .style2 .tp-counter:hover>span:after {
height: 100%;
}
.tp-counter-section .style3 .tp-counter {
background: var(--total-counter-block-background-color, #fff);
padding: 50px 20px;
box-shadow: 0px 14px 22px -2px rgba(0, 0, 0, 0.3);
position: relative;
}
.tp-counter-section .style3 .tp-counter:before {
content: "";
position: absolute;
left: 10px;
right: 10px;
top: 10px;
bottom: 10px;
border: 1px solid var(--total-counter-block-border-color, #000);
}
.tp-counter-section .style3 .tp-counter-icon {
font-size: 2em;
line-height: 1;
margin-bottom: 20px;
}
.tp-counter-section .style3 .tp-counter-count {
font-size: 3.4em;
line-height: 1;
margin-bottom: 20px;
}
.tp-counter-section .style4 .tp-counter {
text-align: left;
padding-left: 80px;
margin-bottom: 100px;
}
.tp-counter-section .style4 .tp-counter-icon {
font-size: 42px;
width: 70px;
float: left;
text-align: center;
opacity: 0.8;
margin-left: -80px;
line-height: 1;
margin-top: 10px;
}
.tp-counter-section .style4 .tp-counter-count {
font-size: 2em;
line-height: 1;
margin-bottom: 10px;
} .tp-logo-carousel.owl-carousel .owl-stage {
display: flex;
align-items: center;
}
.tp-logo-section ul {
list-style: none;
padding: 15px;
}
.tp-logo-section .style1 img {
padding: 2px;
}
.tp-logo-section .style1 .owl-dots {
text-align: center;
margin-top: 40px;
}
.tp-logo-section .style1 .owl-dots .owl-dot {
display: inline-block;
height: 8px;
width: 10px;
background: var(--total-logo-carousel-dot-color, var(--total-section-color, #333));
margin: 0 5px;
transition: all 0.3s ease;
border-radius: 20px;
}
.tp-logo-section .style1 .owl-dots .owl-dot.active {
width: 30px;
}
.tp-logo-section .style2 .flipster-carousel .flip-items .flip-item {
background-color: #ffffff;
opacity: 1;
}
.tp-logo-section .style2 .flipster-carousel .flip-items .flip-content {
width: 400px;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
}
.tp-logo-section .style2 .flipto-prev,
.tp-logo-section .style2 .flipto-next {
position: absolute;
top: 50%;
height: 40px;
width: 36px;
margin-top: -20px;
text-align: center;
font-size: 20px;
background: var(--total-logo-carousel-arrow-bg-color, var(--total-template-color));
}
.tp-logo-section .style2 .flipto-prev i,
.tp-logo-section .style2 .flipto-next i {
color: var(--total-logo-carousel-arrow-color, #fff);
}
.tp-logo-section .style2 .flipto-prev i,
.tp-logo-section .style2 .flipto-next i {
line-height: 40px;
}
.tp-logo-section .style2 .flipto-prev {
left: 0;
}
.tp-logo-section .style2 .flipto-next {
right: 0;
}
.tp-logo-section .style3 .tp-logo-grid {
display: flex;
flex-wrap: wrap;
margin: 0 -30px;
}
.tp-logo-section .style3 .tp-logo-grid .tp-logo-item {
width: 25%;
display: flex;
align-items: center;
padding: 30px;
justify-content: center;
}
.tp-logo-section .style4 .tp-logo-grid {
display: flex;
flex-wrap: wrap;
}
.tp-logo-section .style4 .tp-logo-grid .tp-logo-item {
width: 25%;
display: flex;
align-items: center;
padding: 30px;
border-left: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
justify-content: center;
}
.tp-logo-section .style4 .tp-logo-grid .tp-logo-item:nth-child(4n + 1),
.tp-logo-section .style4 .tp-logo-grid .tp-logo-item:nth-child(1) {
border-left: 0;
}
.tp-logo-section .style4 .tp-logo-grid .tp-logo-item.last-row {
border-bottom: 0;
} .slick-slider .slick-slide {
outline: none;
}
.tp-testimonial-wrap .tp-testimonial-image-wrap {
max-width: 500px;
width: 100%;
margin: 0 auto 40px;
}
.tp-testimonial-wrap .tp-testimonial img {
height: 100px;
width: 100px;
object-fit: cover;
margin: 0 auto 20px;
border-radius: 50%;
border: 1px solid var(--total-template-color);
padding: 5px;
transition: all 0.3s ease-in-out;
}
.tp-testimonial-wrap .tp-testimonial-excerpt {
width: 80%;
margin: 0 auto 30px;
text-align: center;
position: relative;
color: var(--total-testimonial-block-text-color, #333);
}
.tp-section-title-side+.tp-testimonial-content .tp-testimonial-wrap .tp-testimonial-excerpt {
width: 95%;
}
.tp-testimonial-wrap .tp-testimonial-excerpt .icofont-quote-left {
position: absolute;
top: 0px;
left: -15px;
font-size: 90px;
color: var(--total-testimonial-block-text-color, #333);
z-index: -1;
opacity: 0.05;
}
.tp-testimonial-wrap .tp-testimonial h5 {
text-align: center;
margin: 0 0 10px;
color: var(--total-testimonial-block-name-color, #333);
}
.tp-testimonial-wrap .tp-testimonial .designation {
text-align: center;
color: var(--total-testimonial-block-designation-color, #333);
}
.tp-testimonial-title h5 {
color: var(--total-testimonial-block-name-color, #333);
}
.tp-testimonial-title .designation {
color: var(--total-testimonial-block-designation-color, #333);
}
.tp-testimonial-wrap.style1 .owl-dots {
text-align: center;
margin-top: 40px;
}
.tp-testimonial-wrap.style1 .owl-dots .owl-dot {
display: inline-block;
height: 8px;
width: 10px;
background: var(--total-testimonial-block-dot-color, var(--total-template-color));
margin: 0 5px;
transition: all 0.3s ease;
border-radius: 20px;
}
.tp-testimonial-wrap.style1 .owl-dots .owl-dot.active {
width: 30px;
}
.tp-testimonial-wrap.style2 .tp-testimonial-image-wrap,
.tp-testimonial-wrap.style2 .tp-testimonial-content-wrap {
display: none;
}
.tp-testimonial-wrap.style2 .tp-testimonial-image-wrap.slick-initialized,
.tp-testimonial-wrap.style2 .tp-testimonial-content-wrap.slick-initialized {
display: block;
}
.tp-testimonial-wrap.style2 .tp-testimonial-image {
display: none;
}
.tp-testimonial-image-box {
position: relative;
padding-bottom: 100%
}
.tp-testimonial-image-slide img {
position: absolute;
left: 0;
bottom: 0;
width: 100% !important;
height: 100% !important;
object-fit: cover;
object-position: center;
transform: scale(.7);
transition: all .4s ease;
cursor: pointer;
box-shadow: 0 0 10px rgba(0, 0, 0, .2);
border-radius: 50%;
}
.tp-testimonial-image-slide.slick-center img {
transform: scale(0.9);
}
.tp-testimonial-wrap.style2 .slick-dots {
display: block;
width: 100%;
padding: 0;
margin: 40px 0 0;
list-style: none;
text-align: center;
}
.tp-testimonial-wrap.style2 .slick-dots li {
position: relative;
display: inline-block;
margin: 0 5px;
padding: 0;
}
.tp-testimonial-wrap.style2 .slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
padding: 0;
cursor: pointer;
border: 0;
outline: none;
height: 8px;
width: 10px;
background: var(--total-testimonial-block-dot-color, var(--total-template-color));
transition: all 0.3s ease;
border-radius: 20px;
}
.tp-testimonial-wrap.style2 .slick-dots li.slick-active button {
width: 30px;
}
.tp-testimonial-section .style3 .tp-testimonial-wrap {
margin-left: -3%;
}
.tp-testimonial-section .style3 .tp-testimonial-box {
width: 30.33%;
float: left;
background: var(--total-testimonial-block-background-color, #fff);
padding: 25px;
margin-left: 3%;
margin-bottom: 40px;
box-shadow: 2px 2px 18px -6px rgba(0, 0, 0, 0.2);
transition: all 0.5s ease;
}
.tp-testimonial-section .tp-section-title-side+.tp-testimonial-content .style3 .tp-testimonial-box {
width: 46%;
margin-left: 4%;
}
.tp-testimonial-section .style4 .tp-testimonial-box {
background: var(--total-testimonial-block-background-color, #fff);
padding: 25px;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
transition: all 0.5s ease;
transform: scale(0.9);
margin: 10px;
}
.tp-testimonial-section .style4 .owl-item.center .tp-testimonial-box {
transform: scale(1);
}
.tp-testimonial-section .tp-section-title-side+.tp-section-content .style4 .tp-testimonial-box {
opacity: 0.9;
}
.tp-testimonial-section .tp-section-title-side+.tp-section-content .owl-item.center .tp-testimonial-box {
opacity: 1;
}
.tp-testimonial-section .tp-testimonial-wrap.style3 {
margin-left: -3%;
}
.tp-testimonial-section .tp-section-title-side+.tp-testimonial-content .tp-testimonial-wrap.style3 {
margin-left: -4%;
}
.tp-testimonial-section .style3 .tp-testimonial-box:hover {
box-shadow: 2px 2px 28px 0px rgba(0, 0, 0, 0.2);
}
.tp-section-title-side+.tp-testimonial-content .style3 .tp-testimonial-box:nth-child(3n + 1) {
clear: none;
}
.tp-testimonial-section .style3 .tp-testimonial-box:nth-child(3n + 1),
.tp-section-title-side+.tp-testimonial-content .style3 .tp-testimonial-box:nth-child(2n + 1) {
clear: both;
}
.tp-testimonial-section .style3 .tp-testimonial-excerpt,
.tp-testimonial-section .style4 .tp-testimonial-excerpt {
margin: 0 0 20px;
text-align: left;
width: auto;
font-size: 0.9em;
}
.tp-testimonial-section .style3 .tp-testimonial-footer,
.tp-testimonial-section .style4 .tp-testimonial-footer {
display: flex;
align-items: center;
}
.tp-testimonial-section .style3 .tp-testimonial-box img,
.tp-testimonial-section .style4 .tp-testimonial-box img {
width: 80px;
height: auto;
margin-right: 20px;
border-radius: 50%;
}
.tp-testimonial-section .style3 .tp-testimonial-box h5,
.tp-testimonial-section .style4 .tp-testimonial-box h5 {
font-size: 1em;
line-height: 1.2;
margin-bottom: 5px;
}
.tp-testimonial-section .style3 .tp-testimonial-box .designation,
.tp-testimonial-section .style4 .tp-testimonial-box .designation {
font-size: 0.85em;
opacity: 0.9;
}
.tp-testimonial-section .style4 .owl-nav {
text-align: center;
margin-top: 40px;
color: var(--total-testimonial-block-dot-color, var(--total-template-color));
}
.tp-testimonial-section .style4 .owl-nav [class^="owl-"] {
display: inline-block;
margin: 0 10px;
font-size: 26px;
} .tp-blog-wrap {
margin-left: -3%;
}
.tp-blog-post {
float: left;
margin-left: 3%;
width: 30.333%;
margin-bottom: 40px;
color: #333;
}
.tp-blog-post .tp-blog-excerpt-text {
color: var(--total-blog-block-excerpt-color, #333);
}
.tp-blog-col-2 .tp-blog-post {
width: 47%;
}
.tp-blog-col-3 .tp-blog-post {
width: 30.33%;
}
.tp-blog-col-4 .tp-blog-post {
width: 22%;
}
.tp-blog-col-2 .tp-blog-post:nth-child(2n + 1) {
clear: both;
}
.tp-blog-col-3 .tp-blog-post:nth-child(3n + 1) {
clear: both;
}
.tp-blog-col-4 .tp-blog-post:nth-child(4n + 1) {
clear: both;
}
.tp-blog-section .style1 .tp-blog-post {
background: #fff;
border-bottom: 6px solid var(--total-blog-block-readmore-button-bg-color, var(--total-template-color));
box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.2);
}
.tp-blog-section .style1 .tp-blog-thumbnail a {
display: block;
position: relative;
}
.tp-blog-section .style1 .tp-blog-thumbnail a:after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 0;
background: rgba(255, 255, 255, 0.2);
transition: all 0.2s ease;
}
.tp-blog-section .style1 .tp-blog-thumbnail:hover a:after {
width: 100%;
}
.tp-blog-section .style1 .tp-blog-thumbnail {
position: relative;
}
.tp-blog-section .style1 .tp-blog-footer {
position: absolute;
left: 0;
right: 0;
bottom: 0;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0);
padding: 10px;
font-size: 14px;
opacity: 0.8;
display: flex;
justify-content: space-between;
color: #fff;
pointer-events: none;
}
.tp-blog-section .style1 .tp-blog-footer span{
display: inline-flex;
}
.tp-blog-section .style1 .tp-blog-footer i {
margin-right: 10px;
}
.tp-blog-section .style1 .tp-blog-footer * {
color: #fff;
}
.tp-blog-section .style1 .tp-blog-excerpt {
padding: 20px;
}
.tp-blog-section .style1 .tp-blog-excerpt .tp-blog-date{
display: flex;
}
.tp-blog-post h5 {
margin-bottom: 15px;
color: var(--total-blog-block-title-color, #333);
}
.tp-blog-post h5 a,
.tp-blog-post h5 a:hover {
color: inherit;
}
.tp-blog-date {
font-size: 14px;
opacity: 0.8;
margin-bottom: 10px;
text-transform: uppercase;
color: var(--total-blog-block-meta-color, #666);
}
.tp-blog-date i {
margin-right: 10px;
}
.tp-blog-read-more {
padding: 0 20px 20px;
text-align: right;
}
.tp-blog-section .tp-blog-read-more a {
display: inline-block;
background: var(--total-blog-block-readmore-button-bg-color, var(--total-template-color));
color: var(--total-blog-block-readmore-button-text-color, #fff);
padding: 10px 15px;
text-align: center;
border-radius: 1px;
}
.tp-blog-section .tp-blog-read-more a:hover {
background: #333;
color: #fff;
}
.tp-blog-section .style2 .tp-blog-thumbnail {
margin-bottom: 25px;
}
.tp-blog-section .style2 .tp-blog-footer {
position: relative;
margin-top: 25px;
padding-top: 10px;
font-size: 14px;
opacity: 0.8;
display: flex;
justify-content: space-between;
color: var(--total-blog-block-meta-color, #666);
}
.tp-blog-section .style2 .tp-blog-footer:after {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
height: 1px;
background: var(--total-blog-block-meta-color, rgba(0, 0, 0, 0.2));
opacity: 0.2;
}
.tp-blog-section .style2 .tp-blog-footer span{
display: inline-flex;
}
.tp-blog-section .style2 .tp-blog-footer i {
margin-right: 10px;
}
.tp-blog-section .style3 .tp-blog-thumbnail {
margin-bottom: 25px;
position: relative;
}
.tp-blog-section .style3 .tp-blog-excerpt {
padding-left: 80px;
}
.tp-blog-section .style3 .tp-blog-excerpt.tp-full-width {
padding-left: 0;
}
.tp-blog-section .style3 .tp-blog-date {
float: left;
margin-left: -80px;
width: 60px;
background: var(--total-blog-block-meta-background-color, var(--total-template-color));
color: var(--total-blog-block-meta-color, #fff);
text-align: center;
padding: 5px;
opacity: 1;
}
.tp-blog-section .style3 .tp-blog-date span {
display: block;
line-height: 1;
padding: 5px 0;
color: inherit;
}
.tp-blog-section .style3 .tp-blog-footer {
position: absolute;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
padding: 10px;
font-size: 14px;
opacity: 0.8;
display: flex;
justify-content: space-between;
color: #fff;
pointer-events: none;
}
.tp-blog-section .style3 .tp-blog-footer span{
display: inline-flex;
}
.tp-blog-section .style3 .tp-blog-footer i {
margin-right: 10px;
}
.tp-blog-section .style3 .tp-blog-footer * {
color: #fff;
}
.tp-blog-section .style4 .tp-blog-thumbnail {
position: relative;
background: #000;
overflow: hidden;
}
.tp-blog-section .style4 .tp-blog-thumbnail img {
opacity: 0.7;
}
.tp-blog-section .style4 .tp-blog-excerpt {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 30px;
pointer-events: none;
transition: all 0.3s ease;
}
.tp-blog-section .style4 .tp-blog-excerpt *,
.tp-blog-section .style4 .tp-blog-footer * {
color: #fff;
}
.tp-blog-section .style4 .tp-blog-date {
line-height: 1;
margin: 10px 0 0;
}
.tp-blog-section .style4 .tp-blog-footer {
position: absolute;
left: 0;
right: 0;
padding: 30px;
pointer-events: none;
font-size: 14px;
display: flex;
justify-content: space-between;
color: #fff;
bottom: -100px;
transition: all 0.3s ease;
}
.tp-blog-section .style4 .tp-blog-footer span{
display: inline-flex;
}
.tp-blog-section .style4 .tp-blog-footer i {
margin-right: 10px;
}
.tp-blog-section .style4 .tp-blog-post:hover .tp-blog-excerpt {
bottom: -300px;
}
.tp-blog-section .style4 .tp-blog-post:hover .tp-blog-footer {
bottom: 0;
}
.tp-blog-section .style4 h5 {
margin: 0;
} .tp-tab-wrap .tp-inner-content {
display: none;
}
.tp-tab-wrap .tp-tab-link {
color: var(--total-tab-block-tab-title-color, #333);
}
.tp-tab-wrap .tp-tab-link.tp-active {
color: var(--total-tab-block-tab-active-title-color, var(--total-template-color));
}
.tp-tab-wrap.style1 .tp-tab-link i {
color: inherit;
}
.tp-tab-section .tp-tab-content h1,
.tp-tab-section .tp-tab-content h2,
.tp-tab-section .tp-tab-content h3,
.tp-tab-section .tp-tab-content h4,
.tp-tab-section .tp-tab-content h5,
.tp-tab-section .tp-tab-content h6 {
color: var(--total-tab-content-title-color, #333);
}
.tp-tab-section .tp-tab-content {
color: var(--total-tab-content-text-color, #333);
}
.tp-tab-wrap.style1 .tp-tab-anchors {
width: 25%;
float: left;
padding: 20px 0;
position: relative;
}
.tp-tab-wrap.style1 .tp-tab-anchors:after {
content: "";
position: absolute;
right: 0;
top: 0;
bottom: 0;
background: var(--total-tab-block-tab-title-color, #333);
width: 1px;
opacity: 0.4;
}
.tp-tab-wrap.style1 .tp-tab-content {
position: relative;
width: 75%;
float: right;
padding: 15px 0 15px 80px;
}
.tp-tab-wrap.style1 .tp-tab-link {
position: relative;
cursor: pointer;
text-transform: uppercase;
padding: 25px 30px 25px 40px;
font-size: 1.1em;
line-height: 1.2;
}
.tp-tab-wrap.style1 .tp-tab-link.tp-active:after {
content: "";
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 6px;
background: var(--total-tab-block-active-bg-color, var(--total-template-color));
margin-right: -3px;
z-index: 99;
}
.tp-tab-wrap.style1 .tp-tab-link i {
float: left;
margin-left: -40px;
line-height: 1.2;
}
.tp-tab-wrap.style2 .tp-tab-anchors {
width: 25%;
float: left;
padding: 20px 0;
}
.tp-tab-wrap.style2 .tp-tab-content {
position: relative;
width: 75%;
float: right;
padding: 15px 0 15px 80px;
}
.tp-tab-wrap.style2 .tp-tab-link {
position: relative;
cursor: pointer;
text-transform: uppercase;
padding: 20px 30px 20px 60px;
font-size: 1.1em;
line-height: 1.1;
background: #333;
margin-bottom: 6px;
color: var(--total-tab-block-tab-title-color, #FFF);
}
.tp-tab-wrap.style2 .tp-tab-link i {
float: left;
margin-left: -40px;
line-height: 1.2;
}
.tp-tab-wrap.style2 .tp-tab-link.tp-active {
background: var(--total-tab-block-active-bg-color, var(--total-template-color));
color: var(--total-tab-block-tab-active-title-color, var(--total-tab-block-tab-title-color, #FFF));
}
.tp-tab-wrap.style2 .tp-tab-link.tp-active:after {
content: "";
position: absolute;
left: 100%;
top: 50%;
border-color: transparent;
border-left-color: var(--total-tab-block-active-bg-color, var(--total-template-color));
border-width: 20px;
border-style: solid;
margin-top: -20px;
}
.tp-tab-wrap.style3 .tp-tab-anchors {
text-align: center;
margin-bottom: 40px;
}
.tp-tab-wrap.style3 .tp-tab-link {
display: inline-block;
padding: 20px 30px 15px 30px;
cursor: pointer;
border-bottom: 5px solid transparent;
min-width: 150px;
max-width: 300px;
}
.tp-tab-wrap.style3 .tp-tab-link.tp-active {
background: #fff;
border-bottom: 5px solid var(--total-tab-block-active-bg-color, var(--total-template-color));
box-shadow: 0 0px 9px rgba(0, 0, 0, 0.1);
}
.tp-tab-wrap.style3 .tp-tab-link i {
font-size: 36px;
line-height: 1;
}
.tp-tab-wrap.style3 .tp-tab-link span {
display: block;
text-transform: uppercase;
margin-top: 10px;
line-height: 1.2;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.tp-tab-wrap.style4 .tp-tab-anchors {
text-align: center;
margin-bottom: 40px;
}
.tp-tab-wrap.style4 .tp-tab-link {
position: relative;
display: inline-block;
cursor: pointer;
margin: 0 30px;
min-width: 150px;
max-width: 300px;
}
.tp-tab-wrap.style4 .tp-tab-link span {
display: block;
border-top: 2px solid var(--total-tab-block-tab-title-color, #333);
margin-top: 20px;
padding: 20px 0;
text-transform: uppercase;
position: relative;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.tp-tab-wrap.style4 .tp-tab-link.tp-active span {
border-top: 2px solid var(--total-tab-block-active-bg-color, var(--total-tab-block-tab-title-color, #333));
}
.tp-tab-wrap.style4 .tp-tab-link.tp-active span:before {
content: "";
position: absolute;
left: 50%;
top: 100%;
width: 40px;
height: 2px;
background: var(--total-tab-block-active-bg-color, var(--total-template-color));
margin-left: -20px;
margin-top: -4px;
}
.tp-tab-wrap.style4 .tp-tab:after {
content: "";
position: absolute;
top: 50%;
left: 100%;
width: 15px;
height: 15px;
border: 2px solid #3333;
margin-left: 25px;
border-radius: 50%;
margin-top: -15px;
}
.tp-tab-wrap.style4 .tp-tab:last-child:after {
display: none;
}
.tp-tab-wrap.style4 .tp-tab-link i {
font-size: 30px;
line-height: 1;
}
.tp-tab-wrap.style5 {
background: #fff;
color: #333;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.tp-tab-wrap.style5 .tp-tab-content {
padding: 60px;
}
.tp-tab-wrap.style5 .tp-tab-anchors {
padding: 0 60px;
text-align: center;
}
.tp-tab-wrap.style5 .tp-tab-link {
display: inline-block;
padding: 40px 40px 0;
cursor: pointer;
min-width: 150px;
max-width: 300px;
}
.tp-tab-wrap.style5 .tp-tab-link.tp-active {
background: var(--total-tab-block-active-bg-color, var(--total-template-color));
position: relative;
color: var(--total-tab-block-tab-active-title-color, #FFF);
}
.tp-tab-wrap.style5 .tp-tab-link.tp-active:after {
content: "";
position: absolute;
left: 0;
top: 100%;
width: 100%;
background: var(--total-tab-block-active-bg-color, var(--total-template-color));
height: 40px;
clip-path: polygon(0 0, 100% 0, 50% 100%);
margin-top: -1px;
}
.tp-tab-wrap.style5 .tp-tab-link i {
font-size: 36px;
line-height: 1;
}
.tp-tab-wrap.style5 .tp-tab-link span {
display: block;
margin-top: 4px;
position: relative;
z-index: 9;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-transform: uppercase;
} .tp-cta-buttons a {
display: inline-block;
padding: 10px 30px;
border-radius: 1px;
margin: 0 4px;
}
.tp-cta-buttons a.tp-cta-button1 {
background: var(--total-cta-button1-bg-color, var(--total-template-color));
color: var(--total-cta-button1-text-color, #fff);
}
.tp-cta-buttons a.tp-cta-button2 {
background: var(--total-cta-button2-bg-color, #333);
color: var(--total-cta-button2-text-color, #fff);
}
.tp-cta-buttons a.tp-cta-button1:hover {
background: var(--total-cta-button2-bg-color, #333);
color: var(--total-cta-button2-text-color, #fff);
}
.tp-cta-buttons a.tp-cta-button2:hover {
background: var(--total-cta-button1-bg-color, var(--total-template-color));
color: var(--total-cta-button1-text-color, #fff);
}
.tp-cta-section .tp-section-title,
.tp-cta-section .tp-section-tagline {
width: auto;
}
.tp-cta-section .tp-section-title-tagline {
margin-bottom: 30px;
}
.tp-cta-section.style1 .tp-section-title-tagline,
.tp-cta-section.style1 .tp-cta-buttons {
text-align: center;
}
.tp-cta-section.style2 .tp-section-title-tagline,
.tp-cta-section.style2 .tp-cta-buttons {
text-align: left;
}
.tp-cta-section.style3 .tp-section-title-tagline,
.tp-cta-section.style3 .tp-cta-buttons {
text-align: right;
}
.tp-cta-section.style4 .tp-container {
display: flex;
align-items: center;
}
.tp-cta-section.style4 .tp-section-title-tagline,
.tp-cta-section.style4 .tp-cta-buttons {
text-align: left;
}
.tp-cta-section.style4 .tp-section-title-tagline {
padding-right: 40px;
flex-grow: 1;
margin-bottom: 0;
}
.tp-cta-section.style4 #tp-cta-video {
text-align: center;
}
.tp-cta-buttons {
white-space: nowrap;
}
#tp-cta-video {
margin: 0 0 40px;
}
#tp-cta-video a {
margin: 0;
padding: 0;
}
#tp-cta-video img{
width: 100px;
}
#tp-cta-video:last-child {
margin-bottom: 0;
}
#tp-cta-video .video-play-button {
display: inline-block;
width: 80px;
height: 80px;
border-radius: 50%;
position: relative;
margin: 20px 0;
text-align: center;
}
#tp-cta-video .video-play-button:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
background: var(--total-cta-video-icon-color, var(--total-template-color));
}
#tp-cta-video .video-play-button:after {
content: "";
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--total-cta-video-icon-color, var(--total-template-color));
}
#tp-cta-video .video-play-button i {
display: inline-block;
position: relative;
color: #fff;
z-index: 9;
line-height: 80px;
font-size: 45px;
}
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@-webkit-keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
} .tp-pricing-wrap {
margin-left: -3%;
}
.tp-pricing-wrap .tp-pricing {
float: left;
margin-left: 3%;
margin-bottom: 40px;
}
.tp-pricing * {
transition: all 0.3s ease;
}
.tp-pricing ul {
list-style: none;
padding: 0;
margin: 0;
}
.tp-pricing-col-2 .tp-pricing {
width: 47%;
}
.tp-pricing-col-3 .tp-pricing {
width: 30.33%;
}
.tp-pricing-col-4 .tp-pricing {
width: 22%;
}
.tp-pricing-col-2 .tp-pricing:nth-child(2n + 1) {
clear: both;
}
.tp-pricing-col-3 .tp-pricing:nth-child(3n + 1) {
clear: both;
}
.tp-pricing-col-4 .tp-pricing:nth-child(4n + 1) {
clear: both;
}
.tp-pricing.style1 {
background: #fff;
text-align: center;
margin-top: 20px;
box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.3);
}
.tp-pricing.style1 * {
color: #333;
}
.tp-pricing.style1 .tp-pricing-header {
padding: 40px 20px;
background: #f1f1f1;
margin: -20px 15% 40px;
position: relative;
}
.tp-pricing.style1 .tp-pricing-header:before {
content: "";
position: absolute;
left: 0;
width: 50%;
background: #f1f1f1;
top: 100%;
height: 40px;
margin-top: -20px;
transform: skewY(10deg);
transition: all 0.3s ease;
}
.tp-pricing.style1 .tp-pricing-header:after {
content: "";
position: absolute;
right: 0;
width: 51%;
background: #f1f1f1;
top: 100%;
height: 40px;
margin-top: -20px;
transform: skewY(-10deg);
transition: all 0.3s ease;
}
.tp-pricing.style1 .tp-pricing-header h5 {
margin-bottom: 25px;
}
.tp-pricing.style1 .tp-pricing-price {
font-size: 52px;
font-weight: bold;
line-height: 1;
}
.tp-pricing.style1 .tp-pricing-price span {
font-size: 14px;
}
.tp-pricing.style1 .tp-pricing-list li {
padding: 10px;
}
.tp-pricing.style1 .tp-pricing-list li:nth-child(even) {
background: #fafafa;
}
.tp-pricing.style1 .tp-pricing-button {
padding: 40px 20px;
}
.tp-pricing.style1 .tp-pricing-button a {
display: inline-block;
background: #333;
padding: 15px 30px;
color: #fff;
line-height: 1;
}
.tp-pricing.style1:hover .tp-pricing-header,
.tp-pricing.style1:hover .tp-pricing-header:before,
.tp-pricing.style1:hover .tp-pricing-header:after,
.tp-pricing.style1:hover .tp-pricing-button a,
.tp-pricing.style1.tp-featured .tp-pricing-header,
.tp-pricing.style1.tp-featured .tp-pricing-header:before,
.tp-pricing.style1.tp-featured .tp-pricing-header:after,
.tp-pricing.style1.tp-featured .tp-pricing-button a {
background: var(--total-pricing-block-highlight-color, var(--total-template-color));
}
.tp-pricing.style1:hover .tp-pricing-header *,
.tp-pricing.style1:hover .tp-pricing-button a,
.tp-pricing.style1.tp-featured .tp-pricing-header *,
.tp-pricing.style1.tp-featured .tp-pricing-button a {
color: var(--total-pricing-block-highlight-text-color, #fff);
}
.tp-pricing.style1.tp-featured {
transform: scale(1.05);
}
.tp-pricing.style2 {
background: #fff;
box-shadow: 0px 12px 25px -10px rgba(0, 0, 0, 0.4);
text-align: center;
}
.tp-pricing.style2 .tp-pricing-header {
padding: 40px;
background: #414141;
margin: 0 0 20px;
position: relative;
}
.tp-pricing.style2 .tp-pricing-header * {
color: #fff;
}
.tp-pricing.style2 .tp-pricing-header h5 {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
margin-bottom: 10px;
padding-bottom: 15px;
}
.tp-pricing.style2 .tp-pricing-price {
font-size: 52px;
line-height: 1.5;
}
.tp-pricing.style2 .tp-pricing-price .tp-price-per {
display: block;
font-size: 16px;
}
.tp-pricing.style2 .tp-pricing-list * {
color: #333;
}
.tp-pricing.style2 .tp-pricing-list li {
padding: 10px;
}
.tp-pricing.style2 .tp-pricing-list li:nth-child(even) {
background: #fafafa;
}
.tp-pricing.style2 .tp-pricing-button {
padding: 40px 0 0;
}
.tp-pricing.style2 .tp-pricing-button a {
display: block;
background: #414141;
padding: 20px 30px;
color: #FFF;
line-height: 1;
}
.tp-pricing.style2:hover .tp-pricing-header,
.tp-pricing.style2.tp-featured .tp-pricing-header,
.tp-pricing.style2:hover .tp-pricing-button a,
.tp-pricing.style2.tp-featured .tp-pricing-button a {
background: var(--total-pricing-block-highlight-color, var(--total-template-color));
}
.tp-pricing.style2:hover .tp-pricing-header *,
.tp-pricing.style2:hover .tp-pricing-button a,
.tp-pricing.style2.tp-featured .tp-pricing-header *,
.tp-pricing.style2.tp-featured .tp-pricing-button a {
color: var(--total-pricing-block-highlight-text-color, #fff);
}
.tp-pricing.style2.tp-featured {
transform: scale(1.05);
}
.tp-pricing.style3 {
border-top: 8px solid var(--total-pricing-block-highlight-color, var(--total-template-color));
color: var(--total-pricing-block-highlight-text-color, #fff);
text-align: center;
}
.tp-pricing.style3 .tp-pricing-header {
background: #fff;
}
.tp-pricing.style3 .tp-pricing-header h5 {
padding: 30px 20px;
color: var(--total-pricing-block-highlight-color, var(--total-template-color));
margin: 0;
}
.tp-pricing.style3 .tp-pricing-main {
background: var(--total-pricing-block-highlight-color, var(--total-template-color));
}
.tp-pricing.style3 .tp-pricing-price {
position: relative;
width: 150px;
height: 150px;
border-radius: 50%;
margin: 0 auto;
color: var(--total-pricing-block-highlight-text-color, #fff);
border: 6px solid #fff;
position: relative;
z-index: 99;
font-size: 32px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
background: var(--total-pricing-block-highlight-color, var(--total-template-color));
}
.tp-pricing.style3 .tp-pricing-price span {
font-size: 16px;
display: block;
padding: 6px 0;
}
.tp-pricing.style3 .tp-pricing-price * {
color: var(--total-pricing-block-highlight-text-color, #fff);
}
.tp-pricing.style3 .tp-pricing-list {
margin-top: -75px;
padding-top: 100px;
}
.tp-pricing.style3 .tp-pricing-list li {
padding: 10px;
}
.tp-pricing.style3 .tp-pricing-list * {
color: var(--total-pricing-block-highlight-text-color, #fff);
}
.tp-pricing.style3 .tp-pricing-button {
padding: 30px;
text-align: center;
}
.tp-pricing.style3 .tp-pricing-button a {
display: inline-block;
border: 2px solid var(--total-pricing-block-highlight-text-color, #fff);
padding: 15px 30px;
line-height: 1;
color: var(--total-pricing-block-highlight-text-color, #fff);
}
.tp-pricing.style3.tp-featured {
transform: scale(1.05);
}
.tp-pricing.style4 {
background: #fff;
padding: 10px 20px 0;
margin-top: 50px;
text-align: center;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.tp-pricing.style4 .tp-pricing-header {
position: relative;
background: var(--total-pricing-block-highlight-color, var(--total-template-color));
margin-top: -60px;
padding: 20px 10px;
margin-bottom: 30px;
border-radius: 20px 20px 0 0;
}
.tp-pricing.style4 .tp-pricing-header * {
color: var(--total-pricing-block-highlight-text-color, #fff);
}
.tp-pricing.style4 .tp-pricing-header:before {
background-image: linear-gradient(-45deg, transparent 14px, var(--total-pricing-block-highlight-color, var(--total-template-color)) 0), linear-gradient(45deg, transparent 14px, var(--total-pricing-block-highlight-color, var(--total-template-color)) 0);
background-position: left bottom;
background-repeat: repeat-x;
background-size: 14px 20px;
content: " ";
display: block;
height: 15px;
width: 100%;
position: absolute;
top: 100%;
left: 0;
}
.tp-pricing.style4 .tp-pricing-header h5 {
margin: 10px 0;
}
.tp-pricing.style4 .tp-pricing-price {
font-size: 60px;
line-height: 1;
}
.tp-pricing.style4 .tp-price-per {
display: block;
font-size: 0.9rem;
margin-top: 10px;
}
.tp-pricing.style4 .tp-pricing-main * {
color: #333;
}
.tp-pricing.style4 .tp-pricing-list li {
padding: 10px;
border: 1px solid #eee;
border-top: 0;
border-left: 0;
margin-bottom: 6px;
}
.tp-pricing.style4 .tp-pricing-button a {
display: block;
padding: 10px 20px;
margin: 0 20px;
background: var(--total-pricing-block-highlight-color, var(--total-template-color));
color: var(--total-pricing-block-highlight-text-color, #fff);
transform: translateY(50%);
border-radius: 10px;
}
.tp-pricing.style4.tp-featured {
transform: scale(1.05);
} .tp-news {
margin: 0 auto 60px;
width: 90%;
display: flex;
align-items: center;
justify-content: space-between;
}
.tp-news:last-child {
margin-bottom: 0;
}
.tp-news-image {
width: 60%;
float: left;
box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.5);
}
.tp-news-content {
width: 35%;
float: right;
}
.tp-news-content h5 {
font-size: 1.8em;
margin-bottom: 20px;
color: var(--total-news-block-title-color, #333);
}
.tp-news-section .tp-news-text {
margin-bottom: 30px;
color: var(--total-news-block-text-color, #333);
}
.tp-news-section .tp-news-link,
.tp-news-section .tp-news-link:hover {
color: var(--total-news-block-link-color, #333);
}
.tp-news-section .tp-news-text a {
text-decoration: underline;
}
.tp-news-section .tp-news-link{
display: inline-flex;
align-items: center;
}
.tp-news-section .tp-news-link i {
margin-left: 10px;
transition: margin 0.3s ease;
}
.tp-news-section .tp-news-link:hover i {
margin-left: 15px;
}
.tp-news:nth-child(even) .tp-news-image {
float: right;
order: 2;
}
.tp-news:nth-child(even) .tp-news-content {
float: left;
}
.tp-news-section .style2 .tp-news-content {
position: relative;
width: 40%;
background: var(--total-news-block-background-color, #fff);
padding: 30px;
left: -5%;
box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.5);
}
.tp-news-section .style2 .tp-news:nth-child(even) .tp-news-content {
left: 5%;
}
.tp-news-section .style3 .tp-news {
margin: 0;
width: auto;
align-items: stretch;
}
.tp-news-section .style3 .tp-news-image {
background-size: cover;
box-shadow: none;
min-height: 400px;
background-position: center;
}
.tp-news-section .style3 .tp-news-content {
padding: 80px;
width: 40%;
} #tp-contact-section {
position: relative;
}
.tp-contact-detail-toggle {
position: absolute;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
left: 50%;
margin-left: -25px;
top: 0;
background: #fff;
color: #333;
font-size: 26px;
cursor: pointer;
z-index: 9;
}
.tp-contact-detail-toggle i {
display: block;
transition: all 0.3s ease;
}
.tp-contact-detail-toggle.tp-open i {
transform: rotate(-45deg);
}
.tp-contact-detail-toggle.tp-closed i {
transform: rotate(0deg);
}
.tp-contact-content {
background: #fff;
display: flex;
min-height: 400px;
position: relative;
z-index: 9;
transition: all 0.3s ease;
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.tp-contact-content.tp-box-hidden {
opacity: 0;
visibility: hidden;
transform: translateY(-30px);
}
.tp-contact-form {
width: 70%;
padding: 40px;
}
.tp-contact-form textarea {
background: none;
border-top: 0;
border-left: 0;
border-right: 0;
border-bottom: 2px solid #eee;
padding-left: 0;
padding-right: 0;
resize: none;
outline: 0;
}
.tp-contact-form input[type="text"],
.tp-contact-form input[type="email"],
.tp-contact-form input[type="url"],
.tp-contact-form input[type="password"],
.tp-contact-form input[type="search"],
.tp-contact-form input[type="number"],
.tp-contact-form input[type="tel"],
.tp-contact-form input[type="range"],
.tp-contact-form input[type="date"],
.tp-contact-form input[type="month"],
.tp-contact-form input[type="week"],
.tp-contact-form input[type="time"],
.tp-contact-form input[type="datetime"],
.tp-contact-form input[type="datetime-local"],
.tp-contact-form input[type="color"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="date"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="datetime"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="datetime-local"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="email"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="month"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="number"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="password"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="range"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="search"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="tel"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="text"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="time"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="url"],
.tp-contact-form div.wpforms-container-full .wpforms-form input[type="week"],
.tp-contact-form div.wpforms-container-full .wpforms-form select,
.tp-contact-form div.wpforms-container-full .wpforms-form textarea {
border-top: 0 !important;
border-left: 0 !important;
border-right: 0 !important;
border-bottom: 2px solid #eee !important;
background: none !important;
width: 100%;
padding-left: 0 !important;
padding-right: 0 !important;
outline: 0;
}
.tp-contact-form p {
margin-bottom: 30px;
}
.tp-contact-form p:last-of-type {
margin-bottom: 0;
}
.tp-contact-section .tp-contact-detail {
color: var(--total-section-text-color, #fff);
background: var(--total-contact-detail-bg-color, var(--total-template-color));
width: 30%;
padding: 40px;
}
.tp-contact-detail h1,
.tp-contact-detail h2,
.tp-contact-detail h3,
.tp-contact-detail h4,
.tp-contact-detail h5,
.tp-contact-detail h6 {
color: var(--total-section-title-color, #333);
}
.tp-contact-social-icon {
margin-top: 20px;
}
.tp-contact-social-icon a {
height: 32px;
width: 32px;
line-height: 32px;
text-align: center;
background: var(--total-contact-social-button-bg-color, #fff);
display: inline-block;
border-radius: 50%;
margin-right: 8px;
font-size: 16px;
color: var(--total-contact-social-button-text-color, #000);
}
.tp-contact-detail-on #tp-google-map {
position: absolute;
overflow: hidden;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.tp-contact-detail-off #tp-google-map,
.tp-contact-detail-off #tp-google-map>iframe {
min-height: 600px;
}
.tp-contact-detail-off .tp-section-wrap {
padding: 0 !important;
}
.tp-window-height #tp-google-map {
height: 100vh;
}
#tp-google-map>iframe {
height: 100%;
width: 100%;
display: block;
}
.tp-animated-dot {
width: 20px;
height: 20px;
left: -9px;
top: -5px;
position: relative;
}
.tp-animated-dot .tp-middle-dot:after {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-family: IcoFont;
content: "\ef79";
font-size: 62px;
color: var(--total-template-color);
}
.tp-animated-dot .tp-signal,
.tp-animated-dot .tp-signal2 {
width: 200px;
height: 200px;
pointer-events: none;
border-radius: 50%;
position: absolute;
left: -90px;
top: -90px;
opacity: 0;
animation: animationSignal cubic-bezier(0, 0.55, 0.55, 1) 2s;
transform-origin: 50% 50%;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
animation-delay: 0.78s;
}
.tp-animated-dot .tp-signal {
border: 2px solid var(--total-template-color-light, rgba(0, 0, 0, 0.2));
box-shadow: inset 0 0 35px 10px var(--total-template-color-light, rgba(0, 0, 0, 0.18));
animation-delay: 0.78s;
}
.tp-animated-dot .tp-signal2 {
border: 2px solid var(--total-template-color);
animation-delay: 1s;
}
@-webkit-keyframes animationSignal {
0% {
opacity: 0;
transform: scale(0);
}
1% {
opacity: 0.4;
}
20% {
opacity: 0.4;
}
60% {
transform: scale(1);
opacity: 0;
}
}
@keyframes animationSignal {
0% {
opacity: 0;
transform: scale(0);
}
1% {
opacity: 0.4;
}
20% {
opacity: 0.4;
}
60% {
transform: scale(1);
opacity: 0;
}
} #tp-colophon {
margin-top: 40px;
position: relative;
}
#tp-colophon.tp-footer-bg-image {
background-image: var(--total-footer-bg-url);
background-size: var(--total-footer-bg-size, auto);
background-position: var(--total-footer-bg-position, center center);
background-repeat: var(--total-footer-bg-repeat, repeat);
background-attachment: var(--total-footer-bg-attachment, scroll);
background-color: var(--total-footer-bg-color, #222);
}
#tp-colophon.tp-footer-bg-image.tp-bg-has-image:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: var(--total-footer-bg-overlay, transparent);
opacity: 0.9;
}
#tp-colophon.tp-footer-border-on {
border-top: 4px solid var(--total-footer-top-border-color, var(--total-template-color));
}
.tp-no-footer-space #tp-colophon {
margin-top: 0 !important;
}
.elementor-template-full-width #tp-colophon,
.page-template-home-template #tp-colophon,
.home.blog #tp-colophon,
body.tp-enable-frontpage #tp-colophon {
margin-top: 0 !important;
}
#tp-main-footer {
position: relative;
color: #BBB;
padding: var(--total-top-footer-spacing-top-desktop, 50px) 0 var(--total-top-footer-spacing-bottom-desktop, 50px);
}
.tp-main-footer {
display: flex;
margin: 0 -20px;
}
.tp-main-footer a {
color: var(--total-top-footer-anchor-color, #EEE);
}
.tp-main-footer a:hover {
color: var(--total-top-footer-anchor-color-hover, var(--total-top-footer-anchor-color, #EEE));
}
.tp-footer {
width: 25%;
padding: 0 20px;
color: var(--total-top-footer-text-color, #EEE);
}
.tp-site-footer {
font-family: var(--total-footer-family, Default);
font-style: var(--total-footer-style, normal);
font-weight: var(--total-footer-weight, 400);
font-size: var(--total-footer-size, 16px);
letter-spacing: var(--total-footer-letter-spacing, 0);
line-height: var(--total-footer-line-height, 1.6);
text-decoration: var(--total-footer-text-decoration, none);
text-transform: var(--total-footer-text-transform, none);
}
.tp-site-footer .widget-title {
margin-bottom: 15px;
color: var(--total-top-footer-title-color, #EEEEEE);
font-family: var(--total-footer-heading-family, var(--total-h-family, var(--total-h5-family, Oswald)));
font-style: var(--total-footer-heading-style, normal);
font-weight: var(--total-footer-heading-weight, 400);
font-size: var(--total-footer-heading-size, 22px);
letter-spacing: var(--total-footer-heading-letter-spacing, 0);
line-height: var(--total-footer-heading-line-height, 1.3);
text-decoration: var(--total-footer-heading-text-decoration, none);
text-transform: var(--total-footer-heading-text-transform, uppercase);
}
.tp-site-footer h1,
.tp-site-footer h2,
.tp-site-footer h3,
.tp-site-footer h4,
.tp-site-footer h5,
.tp-site-footer h6 {
font-family: var(--total-footer-heading-family, var(--total-h-family, var(--total-h5-family, Oswald)));
font-style: var(--total-footer-heading-style, normal);
font-weight: var(--total-footer-heading-weight, 400);
letter-spacing: var(--total-footer-heading-letter-spacing, 0);
line-height: var(--total-footer-heading-line-height, 1.3);
text-decoration: var(--total-footer-heading-text-decoration, none);
text-transform: var(--total-footer-heading-text-transform, uppercase);
}
.tp-site-footer .widget-title {
font-size: var(--total-footer-heading-size, 22px);
}
.tp-footer .widget {
margin-bottom: 30px;
}
.tp-footer .widget_block,
.tp-footer .widget:last-child {
margin-bottom: 0;
}
.tp-footer ul {
list-style: none;
margin: 0;
padding: 0;
}
.tp-footer ul li {
margin: 0 0 10px;
}
.tp-footer ul ul {
margin-top: 10px;
margin-left: 10px;
}
.tp-top-footer,
.tp-main-footer,
.tp-bottom-footer {
position: relative;
}
.tp-top-footer {
color: var(--total-bottom-footer-text-color, #EEE);
}
.tp-top-footer .widget {
margin-bottom: 30px;
}
.tp-top-footer .widget:last-child {
margin-bottom: 0;
}
#tp-bottom-footer {
position: relative;
background: rgba(0, 0, 0, 0.3);
padding: var(--total-bottom-footer-spacing-top-desktop, 30px) 0 var(--total-bottom-footer-spacing-bottom-desktop, 30px);
color: var(--total-bottom-footer-text-color, #EEE);
line-height: 1.2;
text-align: center;
font-size: 0.9em;
}
#tp-bottom-footer a,
.tp-top-footer a {
color: var(--total-bottom-footer-anchor-color, #EEE);
}
#tp-bottom-footer a:hover,
.tp-top-footer a:hover {
color: var(--total-bottom-footer-anchor-color-hover, var(--total-bottom-footer-anchor-color, #EEE));
}
#tp-bottom-footer h1,
#tp-bottom-footer h2,
#tp-bottom-footer h3,
#tp-bottom-footer h4,
#tp-bottom-footer h5,
#tp-bottom-footer h6,
.tp-site-footer .tp-top-footer h1,
.tp-site-footer .tp-top-footer h2,
.tp-site-footer .tp-top-footer h3,
.tp-site-footer .tp-top-footer h4,
.tp-site-footer .tp-top-footer h5,
.tp-site-footer .tp-top-footer h6 {
color: var(--total-bottom-footer-title-color, #EEE);
}
.tp-top-footer .widget,
.tp-bottom-footer .widget {
margin-bottom: 0;
}
.tp-site-info a {
border-bottom: 1px dotted #AAA;
}
.footer-style1 .tp-top-footer {
background: var(--total-bottom-footer-bg-color, rgba(0, 0, 0, 0.3));
padding: 30px 0;
text-align: center;
}
.footer-style1 #tp-bottom-footer {
background: var(--total-bottom-footer-bg-color, rgba(0, 0, 0, 0.3));
}
.footer-style2 .tp-top-footer .tp-container {
border-bottom: 1px solid var(--total-top-footer-border-color, rgba(0, 0, 0, 0.1));
padding: 30px 0;
text-align: center;
}
.footer-style2 #tp-main-footer {
padding: 0;
}
.footer-style2 #tp-main-footer .tp-container {
border-bottom: 1px solid var(--total-top-footer-border-color, rgba(0, 0, 0, 0.1));
}
.footer-style2 .tp-footer {
border-right: 1px solid var(--total-top-footer-border-color, rgba(0, 0, 0, 0.1));
margin: 0;
padding: var(--total-top-footer-spacing-top-desktop, 50px) 30px var(--total-top-footer-spacing-bottom-desktop, 50px);
flex-grow: 1;
}
.footer-style2 .tp-top-footer+#tp-main-footer .tp-footer {
padding: var(--total-top-footer-spacing-top-desktop, 30px) 30px var(--total-top-footer-spacing-bottom-desktop, 30px);
}
.footer-style2 .tp-footer:last-child {
border-right: 0;
}
.footer-style2 #tp-bottom-footer {
background: none;
}
#tp-colophon.footer-style3 {
margin-top: 100px;
}
.footer-style3 .tp-top-footer {
position: relative;
top: -50px;
z-index: 99;
}
.footer-style3 .tp-top-footer .tp-container {
background: var(--total-bottom-footer-bg-color, rgba(0, 0, 0, 0.3));
padding: 30px;
text-align: center;
}
.footer-style3 #tp-main-footer {
padding-top: var(--total-top-footer-spacing-top-desktop, 50px);
}
.footer-style3 .tp-top-footer+#tp-main-footer {
padding-top: 0;
}
.footer-style3 #tp-bottom-footer {
padding: var(--total-bottom-footer-spacing-top-desktop, 0) 0 var(--total-bottom-footer-spacing-bottom-desktop, 30px);
text-align: center;
background: none;
}
.footer-style3 #tp-bottom-footer .tp-container {
background: var(--total-bottom-footer-bg-color, rgba(0, 0, 0, 0.3));
padding: 20px;
}
.footer-style4 .tp-top-footer {
padding: 40px 0;
text-align: center;
border-bottom: 1px solid var(--total-top-footer-border-color, rgba(0, 0, 0, 0.1));
}
.footer-style4 #tp-main-footer {
padding: var(--total-top-footer-spacing-top-desktop, 40px) 0 var(--total-top-footer-spacing-bottom-desktop, 40px);
border-bottom: 1px solid var(--total-top-footer-border-color, rgba(0, 0, 0, 0.1));
}
.footer-style4 #tp-bottom-footer {
padding: var(--total-bottom-footer-spacing-top-desktop, 25px) 0 var(--total-bottom-footer-spacing-bottom-desktop, 25px);
background: none;
}
.footer-style5 .tp-top-footer {
padding: 40px 0;
text-align: center;
}
.footer-style5 #tp-main-footer {
background: var(--total-bottom-footer-bg-color, rgba(0, 0, 0, 0.3));
padding: var(--total-top-footer-spacing-top-desktop, 40px) 0 var(--total-top-footer-spacing-bottom-desktop, 40px);
margin: 0 4%;
}
.footer-style5 #tp-bottom-footer {
padding: var(--total-bottom-footer-spacing-top-desktop, 20px) 0 var(--total-bottom-footer-spacing-bottom-desktop, 20px);
background: none;
}
.tp-site-info a {
border-bottom: 1px dotted #aaa;
} #tp-back-top {
position: fixed;
bottom: var(--total-scroll-top-offset-bottom, 10px);
height: var(--total-scroll-top-height, 60px);
width: var(--total-scroll-top-width, 40px);
font-size: var(--total-scroll-top-icon-size, 20px);
z-index: 99;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
border-radius: var(--total-scroll-top-border-radius, 0);
}
#tp-back-top i {
font-size: inherit;
}
#tp-back-top.tp-st-right {
left: auto;
right: var(--total-scroll-top-offset-right, 10px);
}
#tp-back-top.tp-st-left {
right: auto;
left: var(--total-scroll-top-offset-left, 10px);
}
#tp-back-top.tp-st-center {
right: auto;
left: 50%;
transform: translate(-50%, 0);
}
#tp-back-top.tp-st-framed {
background: none;
border: 2px solid var(--total-scroll-top-color, var(--total-template-color));
color: var(--total-scroll-top-icon-color, var(--total-template-color));
}
#tp-back-top.tp-st-stacked {
background: var(--total-scroll-top-color, var(--total-template-color));
color: var(--total-scroll-top-icon-color, #FFF);
}
#tp-back-top.tp-st-framed:hover {
background: none;
border: 2px solid var(--total-scroll-top-hov-color, var(--total-scroll-top-color, var(--total-template-color)));
color: var(--total-scroll-top-icon-hov-color, var(--total-scroll-top-icon-color, var(--total-template-color)));
}
#tp-back-top.tp-st-stacked:hover {
background: var(--total-scroll-top-hov-color, var(--total-scroll-top-color, var(--total-template-color)));
color: var(--total-scroll-top-icon-hov-color, var(--total-scroll-top-icon-color, #FFF));
}
#tp-back-top.tp-hide {
bottom: -100px;
} .error404 .error-404 {
display: block;
text-align: center;
font-size: 200px;
color: #f9f9f9;
line-height: 1.2;
}
.error404 .oops-text {
text-align: center;
}
.toggle-bar {
display: none;
} .tp-search-wrapper {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.9);
z-index: 99999;
transform: scale(0.4);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.tp-search-wrapper.tp-search-triggered {
transform: scale(1);
opacity: 1;
visibility: visible;
}
.tp-search-close {
position: absolute;
top: 0;
left: 50%;
cursor: pointer;
height: 60px;
width: 60px;
text-align: center;
line-height: 60px;
background: var(--total-template-color);
color: #fff;
font-size: 24px;
margin-left: -30px;
}
.tp-search-container {
position: absolute;
left: 10%;
right: 10%;
top: 50%;
transform: translateY(-50%);
text-align: center;
}
.tp-search-container .search-field {
width: 100%;
background: none;
border: none;
text-align: center;
height: 60px;
height: 7vw;
font-size: 60px;
font-size: 5vw;
color: #fff;
padding: 15px;
margin-bottom: 30px;
line-height: 1;
outline: 0;
}
.tp-search-container .search-submit {
background: none !important;
border: 3px solid #aaa;
padding: 16px 60px;
font-size: 20px;
border-radius: 40px;
color: #aaa;
height: 70px;
}
.tp-search-container .search-submit:hover {
background: none !important;
border: 3px solid #aaa;
} .odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
position: relative;
}
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
text-align: left;
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
display: block;
-webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
transition: transform 2s;
transform: translateY(0);
}
.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
text-align: center;
} .totalplus-privacy-policy {
position: fixed;
background: var(--total-gdpr-bg-color, #333);
bottom: 0;
left: 0;
right: 0;
padding: 20px 0;
z-index: 9999;
color: var(--total-gdpr-text-color, #fff);
font-size: 0.9em;
display: none;
}
.customizer-gdpr-section .totalplus-privacy-policy {
display: block;
}
.policy-text a {
color: var(--total-gdpr-text-color, #fff);
text-decoration: underline;
}
.policy-buttons a {
display: inline-block;
background: var(--total-button-bg-color, var(--total-template-color));
padding: 12px 25px;
color: var(--total-button-text-color, #fff);
margin: 0 4px;
border-radius: 1px;
line-height: 1.2;
text-transform: uppercase;
font-size: 0.88em;
}
.policy-buttons a:hover {
color: var(--total-button-text-color, #fff);
}
.totalplus-privacy-policy.top-full-width {
top: 0;
bottom: auto;
}
.totalplus-privacy-policy.top-full-width .tp-container,
.totalplus-privacy-policy.bottom-full-width .tp-container {
display: flex;
align-items: center;
justify-content: space-between;
}
body.logged-in.admin-bar .totalplus-privacy-policy.top-full-width {
top: auto;
}
.totalplus-privacy-policy.top-full-width .policy-text,
.totalplus-privacy-policy.bottom-full-width .policy-text {
margin-right: 40px;
}
.totalplus-privacy-policy.top-full-width .policy-buttons,
.totalplus-privacy-policy.bottom-full-width .policy-buttons {
white-space: nowrap;
}
.totalplus-privacy-policy.bottom-left-float .policy-buttons,
.totalplus-privacy-policy.bottom-right-float .policy-buttons {
margin-top: 10px;
}
.totalplus-privacy-policy.bottom-left-float .policy-buttons a,
.totalplus-privacy-policy.bottom-right-float .policy-buttons a {
margin-top: 10px;
}
.totalplus-privacy-policy.bottom-left-float {
width: 40%;
left: 40px;
bottom: 40px;
right: auto;
padding: 20px;
border-radius: 8px;
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
}
.totalplus-privacy-policy.bottom-right-float {
width: 40%;
left: auto;
bottom: 40px;
right: 40px;
padding: 20px;
border-radius: 8px;
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
}
.totalplus-privacy-policy.bottom-left-float .tp-container,
.totalplus-privacy-policy.bottom-right-float .tp-container {
width: 100%;
} @media screen and (min-width: 768px) {
.alignfull,
.alignwide {
width: auto;
max-width: 1000%;
}
body.tp-no-sidebar:not(.tp-boxed) .alignfull,
body.tp-no-sidebar-condensed:not(.tp-boxed) .alignfull {
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
}
body.tp-no-sidebar:not(.tp-boxed) .alignwide,
body.tp-no-sidebar-condensed:not(.tp-boxed) .alignwide {
margin-left: calc(25% - 25vw);
margin-right: calc(25% - 25vw);
}
body.tp-right-sidebar:not(.tp-boxed) .alignfull {
margin-left: calc(50% / 0.7 - 50vw);
}
body.tp-right-sidebar:not(.tp-boxed) .alignwide {
margin-left: calc(25% / 0.7 - 25vw);
}
body.tp-right-sidebar:not(.tp-boxed) .align-wrap {
width: auto;
margin-left: calc(50% / 0.7 - 50vw);
}
body.tp-left-sidebar :not(.tp-boxed).alignfull {
margin-right: calc(50% / 0.7 - 50vw);
}
body.tp-left-sidebar:not(.tp-boxed) .alignwide {
margin-right: calc(25% / 0.7 - 25vw);
}
body.tp-left-sidebar:not(.tp-boxed) .align-wrap {
width: auto;
margin-right: calc(50% / 0.7 - 50vw);
}
body.tp-no-sidebar.tp-boxed .alignfull,
body.tp-no-sidebar-condensed.tp-boxed .alignfull {
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
}
body.tp-right-sidebar.tp-boxed .alignfull {
margin-left: calc(50% / 0.7 - 50vw);
margin-right: 0;
}
body.tp-left-sidebar.tp-boxed .alignfull {
margin-right: calc(50% / 0.7 - 50vw);
margin-left: 0;
}
}
body.tp-boxed .alignwide {
margin-left: 0;
margin-right: 0;
}
.wp-block-latest-posts.is-grid {
margin-left: 0;
}
.wp-block-quote {
margin: 30px 0;
}
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
margin: 30px 0;
}
.wp-block-categories,
.wp-block-archives {
list-style: none;
}
.wp-block-pullquote {
margin-bottom: 30px;
padding: 40px 0;
}
.wp-block-pullquote blockquote {
background: none;
padding: 0;
border: none;
margin-bottom: 0;
}
.wp-block-pullquote cite {
color: inherit;
}
.wp-block-gallery {
margin-left: 0;
}
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption,
.wp-block-image figcaption {
font-size: 0.9em;
}  .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
border: 1px solid #dadada;
text-align: center;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
border-color: var(--total-template-color);
}
.woocommerce ul.products li.product a img {
margin-bottom: 0;
}
.woocommerce ul.products li.product a {
color: inherit;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
display: block;
}
.woocommerce ul.products li.product .totalplus-product-title-wrap {
padding: 15px 15px 0;
}
.woocommerce ul.products li.product .price {
font-size: 1em;
color: inherit;
margin: 0;
}
.woocommerce ul.products li.product .price del {
display: inline;
color: #999;
opacity: 1;
}
.woocommerce ul.products li.product .price ins {
display: inline;
}
.woocommerce ul.products li.product-category mark {
background: none;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title {
padding: 15px 0;
}
.woocommerce ul.products li.product .totalplus-product-image-wrap {
position: relative;
}
.woocommerce ul.products li.product .totalplus-product-actions {
position: absolute;
left: 0;
right: 0;
bottom: 0;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.woocommerce ul.products li.product .totalplus-product-actions>.clear,
.woocommerce ul.products li.product .totalplus-product-actions .feedback {
display: none;
}
.woocommerce ul.products li.product .totalplus-product-actions .yith-wcwl-add-to-wishlist,
.woocommerce ul.products li.product .totalplus-product-actions .tp-compare,
.woocommerce ul.products li.product .totalplus-product-actions .tp-quick-view {
position: relative;
display: inline-block;
font-size: 0;
margin: 0 2px;
top: auto;
left: auto;
transform: translateY(-80%);
visibility: hidden;
opacity: 0;
}
.woocommerce ul.products li.product:hover .totalplus-product-actions .yith-wcwl-add-to-wishlist,
.woocommerce ul.products li.product:hover .totalplus-product-actions .tp-compare,
.woocommerce ul.products li.product:hover .totalplus-product-actions .tp-quick-view {
transform: translateY(0);
visibility: visible;
opacity: 1;
}
.woocommerce ul.products li.product .totalplus-product-actions .yith-wcwl-add-to-wishlist {
transition: all 0.3s ease 0.1s;
}
.woocommerce ul.products li.product .totalplus-product-actions .tp-compare {
transition: all 0.3s ease 0.2s;
}
.woocommerce ul.products li.product .totalplus-product-actions .tp-quick-view {
transition: all 0.3s ease 0.3s;
}
.woocommerce ul.products li.product .totalplus-product-actions .button {
margin: 0;
padding: 0;
background: none;
border: none;
line-height: 50px;
font-size: 0;
}
.woocommerce ul.products li.product .totalplus-product-actions a {
position: relative;
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
border-radius: 0 !important;
background: #fff !important;
color: #333 !important;
transform: none !important;
}
.woocommerce ul.products li.product .totalplus-product-actions a i {
font-size: 16px;
margin: 0;
}
.woocommerce ul.products li.product .totalplus-product-actions .yith-wcwl-add-to-wishlist a span,
.woocommerce ul.products li.product .totalplus-product-actions a .woo-button-tooltip {
position: absolute;
left: 50%;
bottom: 100%;
font-size: 0.8rem;
background: #333;
color: #fff;
white-space: nowrap;
line-height: 1;
padding: 6px 8px;
margin-bottom: 10px;
transform: translateX(-50%);
visibility: hidden;
opacity: 0;
transition: all 0.3s ease;
}
.woocommerce ul.products li.product .totalplus-product-actions .yith-wcwl-add-to-wishlist a span:after,
.woocommerce ul.products li.product .totalplus-product-actions a .woo-button-tooltip:after {
content: "";
border-color: #333 transparent transparent;
border-width: 6px;
border-style: solid;
position: absolute;
left: 50%;
top: 100%;
margin-left: -6px;
}
.woocommerce ul.products li.product .totalplus-product-actions .yith-wcwl-add-to-wishlist a:hover span,
.woocommerce ul.products li.product .totalplus-product-actions a:hover .woo-button-tooltip {
visibility: visible !important;
opacity: 1 !important;
}
.woocommerce ul.products li.product .totalplus-product-title-wrap .button,
.woocommerce ul.products li.product .totalplus-product-title-wrap a.added_to_cart {
margin: 0 10px;
transform: translateY(50%);
font-size: 16px;
background-color: #fff;
border: 1px solid #dadada;
border-radius: 0;
text-decoration: none;
position: relative;
padding: 10px 20px;
line-height: 1.3;
}
.woocommerce ul.products li.product .totalplus-product-title-wrap .button.loading::after {
position: static;
display: inline-block;
margin: 0 0 0 10px;
}
.woocommerce ul.products li.product:hover .totalplus-product-title-wrap .button,
.woocommerce ul.products li.product:hover .totalplus-product-title-wrap a.added_to_cart {
border-color: var(--total-template-color);
background-color: var(--total-template-color);
color: #fff;
}
.woocommerce ul.products li.product .totalplus-product-title-wrap .button.added {
display: none;
}
.woocommerce ul.products li.product .totalplus-product-title-wrap a.added_to_cart {
display: inline-block;
}
.woocommerce ul.products li.product .totalplus-product-actions .yith-wcwl-wishlistexistsbrowse a:after {
content: "\ef45";
font-family: 'IcoFont';
font-size: 16px;
}
.woocommerce ul.products li.product .button.loading {
opacity: 1;
}
.woocommerce a.added_to_cart {
display: none;
}
.woocommerce ul.products li.product .onsale {
margin: 10px -6px 0 0;
}
.woocommerce ul.products li.product .onsale:after {
border-color: transparent transparent var(--total-template-color-dark, #e8ae00) var(--total-template-color-dark, #e8ae00);
border-width: 3px;
border-style: solid;
right: 0px;
left: auto;
} .woocommerce nav.woocommerce-pagination ul {
border: 0;
margin: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
border: 0;
margin: 0 4px;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
display: block;
margin: 0 2px;
background: var(--total-template-color);
color: #fff;
padding: 16px 22px;
line-height: 1;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
background: #333;
color: #fff;
} .woocommerce span.onsale {
min-height: 0;
min-width: 0;
padding: 0 15px;
font-weight: 400;
line-height: 26px;
border-radius: 0;
background-color: var(--total-template-color);
color: #fff;
font-size: 14px;
margin: 10px 0 0 -6px;
top: 0;
left: 0;
}
.woocommerce span.onsale:after {
border-color: transparent var(--total-template-color-dark, #e8ae00) var(--total-template-color-dark, #e8ae00) transparent;
border-width: 3px;
border-style: solid;
content: "";
position: absolute;
bottom: 100%;
left: 0px;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
color: var(--total-template-color);
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
font-weight: 400;
}
.woocommerce .product_meta {
font-size: 15px;
margin-top: 20px;
}
.woocommerce .product_meta a {
color: inherit;
}
.woocommerce .product_meta a:hover {
color: var(--total-template-color);
}
.woocommerce-variation {
margin-bottom: 10px;
}
.woocommerce div.product div.images .flex-control-thumbs {
margin: 5px -5px 0;
}
.woocommerce div.product div.images .flex-control-thumbs li {
padding: 5px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
padding: 0;
border-bottom: 2px solid var(--total-template-color);
padding-bottom: 10px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
border: 0;
background-color: #333;
border-radius: 0;
margin: 0 6px 0 0;
padding: 0;
position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
padding: 10px 20px;
font-weight: 400;
color: #fff !important;
transition: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
background: var(--total-template-color);
position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before {
content: "";
position: absolute;
left: 50%;
border-color: var(--total-template-color) transparent transparent;
border-width: 10px;
border-style: solid;
top: 100%;
margin-left: -10px;
}
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
padding: 10px;
text-align: left;
}
.woocommerce table.shop_attributes th {
font-weight: normal;
text-transform: uppercase;
}
.woocommerce #reviews .comments-area h2,
.woocommerce #reviews h3 {
font-size: 22px;
margin-bottom: 30px;
}
.woocommerce-Reviews .comment-form-author,
.woocommerce-Reviews .comment-form-email {
width: 100%;
}
.woocommerce-Reviews .comment-form-author input,
.woocommerce-Reviews .comment-form-email input {
width: 100%;
}
.related.products h2 {
margin-bottom: 30px;
} .woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
padding: 10px 20px;
font-weight: 400;
border-radius: 0;
color: #fff;
background-color: var(--total-template-color);
border: 1px solid var(--total-template-color);
line-height: 20px;
font-size: 0.9em;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
background: #333;
border: 1px solid #333;
color: #fff;
}
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
border-color: var(--total-template-color);
background-color: var(--total-template-color);
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
background: #333;
border-color: #333;
color: #fff;
}
.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
background: var(--total-template-color);
padding: 10px 20px;
color: #fff;
}
.woocommerce #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover,
.woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.woocommerce a.button:disabled[disabled]:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover {
background: #333;
color: #fff;
}
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
background: var(--total-template-color);
border-color: var(--total-template-color);
} .woocommerce table.shop_table,
#add_payment_method .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table {
border-collapse: collapse;
margin-bottom: 50px;
border: 1px solid #eee;
line-height: 1.3;
}
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
font-weight: 400;
padding: 15px;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table th {
text-transform: uppercase;
background: #f6f6f6;
}
#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail,
.woocommerce table.shop_table .product-thumbnail {
text-align: center;
}
#add_payment_method table.cart .product-thumbnail img,
.woocommerce-cart table.cart .product-thumbnail img,
.woocommerce-checkout table.cart .product-thumbnail img,
.woocommerce table.cart .product-thumbnail img {
width: 80px;
}
.woocommerce .quantity .qty {
padding-left: 5px;
padding-right: 5px;
}
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
border-color: #eee;
}
.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
width: 160px;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
width: auto;
float: none;
}
.woocommerce .cart-collaterals .cart_totals h2 {
font-size: 1.4em;
}
#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
padding: 0;
}
.woocommerce a.remove {
text-indent: -9999px;
position: relative;
background: none !important;
font-size: 1.2em;
margin: 0 auto;
}
.woocommerce a.remove:before {
content: "\f2ed";
display: inline-block;
font-family: "Font Awesome 5 Free";
font-weight: 400;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
color: #e2401c;
text-indent: 0;
text-align: center;
}
.select2-container .select2-choice,
.select2-container--default .select2-selection--single {
border: 1px solid #eee;
color: inherit;
border-radius: 0;
height: 50px;
line-height: 50px;
outline: none !important;
box-shadow: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
line-height: 30px;
padding: 10px 20px;
outline: none !important;
box-shadow: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 50px;
}
.select2-results {
font-size: 0.9em;
color: inherit;
}
.select2-drop-active,
.select2-dropdown {
border-color: #eee;
}
.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-container--default .select2-search--dropdown .select2-search__field {
border-color: #eee;
}
.select2-results__option {
outline: none !important;
box-shadow: none !important;
} .woocommerce-error,
.woocommerce-info,
.woocommerce-message {
border-top-color: var(--total-template-color);
font-size: 0.9em;
}
.woocommerce-error:before,
.woocommerce-info:before,
.woocommerce-message:before {
color: var(--total-template-color);
}
.woocommerce-error a.button,
.woocommerce-info a.button,
.woocommerce-message a.button {
padding: 5px 20px;
line-height: 1;
height: auto;
}
.woocommerce table.shop_table td.product-remove {
width: 80px;
} #customer_details {
margin-bottom: 40px;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
border: 1px solid #eee;
border-radius: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
list-style: none;
}
.woocommerce-MyAccount-navigation-link a {
background: var(--total-template-color);
color: #fff;
padding: 10px 20px;
margin-bottom: 5px;
display: block;
}
.woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-MyAccount-navigation-link a:hover {
background: #333;
color: #fff;
} .woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
padding-top: 4px;
}
.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
font-weight: 400;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
top: 8px;
}
.woocommerce .widget_layered_nav ul li {
padding: 5px 0;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
background-color: #fff;
border: 4px solid var(--total-template-color);
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
background-color: var(--total-template-color);
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
background-color: #eee;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
height: 20px;
width: 20px;
top: -6px;
margin-left: -10px;
} .tp-menu-item-cart,
.tp-menu-item-cart i {
position: relative;
}
.tp-menu-item-cart i {
display: flex;
}
.tp-menu-item-cart .cart-count {
font-size: 0.8em;
left: 100%;
position: absolute;
bottom: 50%;
line-height: 14px;
font-family: Arial;
}
.tp-menu-item-cart .widget_shopping_cart {
position: absolute;
display: none;
right: 0;
top: 100%;
width: 300px;
background: var(--total-pm-submenu-bg-color, #fff);
color: var(--total-pm-submenu-link-color, #444);
padding: 25px;
text-transform: none;
margin: 0;
margin-top: var(--total-ms-submenu-top-spacing, 0);
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}
.tp-menu-item-cart:hover .widget_shopping_cart {
display: block;
}
.tp-menu-item-cart .widget_shopping_cart ul {
display: block;
position: static;
background: none;
min-width: 0;
padding: 0;
box-shadow: none;
max-height: 300px;
}
.tp-menu-item-cart .widget_shopping_cart .woocommerce-mini-cart a {
padding: 0;
}
.tp-menu-item-cart .widget_shopping_cart a {
color: inherit;
}
.tp-menu-item-cart .woocommerce.widget_shopping_cart .total {
padding: 15px 0;
border: 0;
margin: 0;
border-top: 1px solid #fff;
}
.tp-menu-item-cart .woocommerce-mini-cart__buttons {
margin: 0;
}
.tp-menu-item-cart .woocommerce.widget_shopping_cart .buttons a {
display: block;
margin: 0 0 10px;
text-align: center;
color: #ffff;
}
.tp-menu-item-cart .woocommerce-mini-cart__total .woocommerce-Price-amount {
float: right;
}
.tp-menu-item-cart .woocommerce.widget_shopping_cart .cart_list li {
padding: 10px 20px 10px 0;
}
.tp-menu-item-cart ul.product_list_widget li img {
width: 72px;
float: left;
margin: 0 10px 0 0;
}
.tp-menu-item-cart .woocommerce.widget_shopping_cart .cart_list li a.remove {
left: auto;
right: 0;
top: 20px;
font-size: 14px;
}
.tp-menu-item-cart .woocommerce.widget_shopping_cart .cart_list li .quantity {
font-size: 0.9em;
}
.tp-menu-item-cart .woocommerce-mini-cart__empty-message {
margin-bottom: 0;
}
#tp-responsive-menu .tp-menu-item-cart .widget_shopping_cart {
display: none !important;
}
#tp-responsive-menu li.menu-item:hover>a {
color: var(--total-pm-submenu-link-hover-color, var(--total-pm-submenu-link-color, #444));
background: var(--total-pm-submenu-link-bg-color, transparent);
} .woocommerce table.wishlist_table {
font-size: 1em;
}
.woocommerce .wishlist_table td.product-add-to-cart a {
border-radius: 0;
line-height: 30px;
padding: 5px 20px !important;
white-space: nowrap;
display: inline-block !important;
}
.woocommerce table.wishlist_table thead th,
.woocommerce table.wishlist_table body td {
border-color: #eee;
padding: 15px;
}
.woocommerce .wishlist_table td.product-add-to-cart a.add_to_cart:before {
content: "\f004";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 5px;
}
.woocommerce .wishlist_table td.product-add-to-cart a.remove_from_wishlist:before {
content: "\f2ed";
font-family: "Font Awesome 5 Free";
font-weight: 400;
margin-right: 5px;
}
.woocommerce table.wishlist_table .yith-wcqv-button {
float: right;
text-indent: -9999px;
height: 1em;
width: 1em;
position: relative;
margin: 0;
padding: 0;
background-color: transparent;
border: none;
}
.woocommerce table.wishlist_table .yith-wcqv-button:after {
content: "\f002";
text-indent: 0;
font-family: "Font Awesome 5 Free";
font-weight: 900;
position: absolute;
left: 0;
top: 0;
color: #999;
}
.yith-wcwl-share h4.yith-wcwl-share-title {
font-size: 1.4em;
margin: 0 0 20px;
}
a.add_to_wishlist.button.alt {
border-radius: 0;
}
.woocommerce div.product div.summary .yith-wcwl-add-to-wishlist,
.woocommerce div.product div.summary .yith-ywraq-add-to-quote,
.woocommerce div.product div.summary .compare {
margin: 0 0 20px;
}
#yith-quick-view-close {
border: none;
background: #333;
color: #fff;
position: absolute;
top: 5px;
right: 5px;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
z-index: 2;
opacity: 0.5;
text-indent: -9999px;
}
#yith-quick-view-close:before,
#yith-quick-view-close:after {
content: "";
position: absolute;
height: 2px;
width: 20px;
top: 50%;
left: 10px;
margin-top: -1px;
background-color: #fff;
transform: translateX(-50%);
transition: all 0.3s;
}
#yith-quick-view-close:before {
transform: rotate(45deg);
}
#yith-quick-view-close:after {
transform: rotate(-45deg);
}
#yith-quick-view-content div.images {
margin-bottom: 0;
}
#yith-quick-view-content div.summary {
padding: 40px;
}
#yith-quick-view-content .onsale {
left: 0;
} .wc-block-components-price-slider__range-input {
padding: 0 !important;
border: 0 !important;
outline: none !important;
height: 0 !important;
}
.wc-block-product-search .wc-block-product-search__button svg {
fill: #FFF;
} #tp-mobile-menu {
display: none;
margin-left: 30px;
}
.tp-header-four #tp-mobile-menu,
.tp-header-six #tp-mobile-menu {
margin-left: 0;
}
.collapse-button {
padding: 6px 14px;
color: #ffffff;
text-align: center;
background-color: var(--total-tm-bg-color, #0e0e0e);
cursor: pointer;
}
.collapse-button:hover,
.collapse-button:focus {
color: #fff;
}
.collapse-button .icon-bar {
display: block;
height: 2px;
width: 30px;
margin: 8px 0;
background-color: var(--total-tm-color, #f5f5f5);
border-radius: 1px;
}
#tp-responsive-menu {
position: absolute;
left: 0;
right: 0;
top: 100%;
background: var(--total-pm-submenu-bg-color, #fff);
z-index: 99;
margin: 0;
padding: 0;
list-style: none;
display: none;
}
#tp-responsive-menu ul {
margin: 0;
list-style: none;
display: none;
}
#tp-responsive-menu li.megamenu-auto-width ul.megamenu {
padding: 0;
}
#tp-responsive-menu li.menu-item {
position: relative;
float: none;
}
#tp-responsive-menu li.menu-item>a {
position: relative;
padding: 15px 30px;
display: block;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
color: var(--total-pm-submenu-link-color, #333);
}
#tp-responsive-menu ul.megamenu li.menu-item>a {
padding: 15px 40px;
}
#tp-responsive-menu ul.megamenu .menu-template,
#tp-responsive-menu ul.megamenu .menu-widget {
padding: 40px 40px 0;
}
#tp-responsive-menu ul li.menu-item>a {
padding-left: 40px;
}
#tp-responsive-menu ul ul li.menu-item>a {
padding-left: 50px;
}
#tp-responsive-menu ul ul ul li.menu-item>a {
padding-left: 60px;
}
#tp-responsive-menu ul ul ul ul li.menu-item>a {
padding-left: 70px;
}
#tp-responsive-menu ul ul ul ul ul li.menu-item>a {
padding-left: 80px;
}
#tp-responsive-menu li .dropdown-nav {
position: absolute;
right: 30px;
top: 50%;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
cursor: pointer;
color: inherit;
font-size: 16px;
background: rgba(0, 0, 0, 0.1);
z-index: 99;
transform: translateY(-50%);
}
#tp-responsive-menu li.menu-item .nav-desc {
display: block;
font-size: 0.8em;
margin-top: 2px;
}
#tp-responsive-menu li .dropdown-nav:before {
content: "\F0140";
}
#tp-responsive-menu li .dropdown-nav.tp-opened:before {
content: "\F0143";
}
#tp-responsive-menu li.menu-item-tp-cart .dropdown-nav {
display: none;
}
#tp-responsive-menu .megamenu .dropdown-nav {
display: none;
}
#tp-responsive-menu .megamenu ul {
display: block !important;
}
#tp-responsive-menu .megamenu li.heading-yes>a {
background: rgba(0, 0, 0, 0.05);
} #tp-maintenance-page {
min-height: 100vh;
position: relative;
display: flex;
align-items: center;
text-align: center;
}
.tp-maintenance-bg {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: -1;
}
.tp-maintenance-slide {
background-position: center;
background-size: cover;
min-height: 100vh;
}
.tp-maintenance-bg:after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 9;
}
body.video .tp-maintenance-bg:after {
background-image: url(//formacion.eldu.com/wp-content/plugins/totalplus/public/css/images/dot.png);
}
.tp-maintenance-page {
max-width: 1000px;
margin: 0 auto;
padding: 60px 40px;
}
.tp-maintenance-banner {
min-height: 100%;
background-size: cover;
background-position: center;
}
.tp-maintenance-video {
min-height: 100vh;
}
.tp-maintenance-logo {
margin-bottom: 40px;
}
.tp-maintenance-page h1 {
margin-bottom: 20px;
font-size: 60px;
letter-spacing: 1px;
}
.tp-maintenance-countdown {
margin: 60px 0 30px;
}
.tp-maintenance-countdown>.tp-count-label {
display: inline-block;
margin: 0 40px 30px;
}
.tp-maintenance-countdown>.tp-count-label span {
display: block;
font-size: 60px;
line-height: 1.1;
margin-bottom: 5px;
font-weight: bold;
}
.tp-maintenance-countdown>.tp-count-label label {
text-transform: uppercase;
}
.tp-maintenance-page header {
font-size: 18px;
margin-bottom: 30px;
}
.tp-maintenance-page footer {
margin-top: 80px;
}
.tp-maintenance-social a {
font-size: 18px;
margin: 0 15px;
border: 1px solid #fff;
height: 44px;
width: 44px;
line-height: 44px;
text-align: center;
display: inline-block;
transform: rotate(45deg);
}
.tp-maintenance-social a i {
transform: rotate(-45deg);
display: block;
height: 44px;
width: 44px;
line-height: 44px;
}
.mbYT_wrapper iframe {
margin-top: 0 !important;
top: 50% !important;
transform: translateY(-50%);
} #bbpress-forums div.bbp-search-form {
margin-bottom: 20px;
}
#bbpress-forums {
line-height: 1.6;
}
#bbpress-forums,
#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-replies,
#bbpress-forums ul.bbp-search-results,
div.bbp-breadcrumb,
div.bbp-topic-tags,
.bbp-row-actions #favorite-toggle a,
.bbp-row-actions #subscription-toggle a,
#bbpress-forums .bbp-pagination-links a,
#bbpress-forums .bbp-pagination-links span.current,
#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content,
#bbpress-forums #bbp-your-profile fieldset p.description,
div.bbp-template-notice p,
div.bbp-template-notice li {
font-size: 1rem;
}
#bbpress-forums .bbp-forums-list .bbp-forum,
#bbpress-forums div.bbp-forum-author .bbp-author-role,
#bbpress-forums div.bbp-topic-author .bbp-author-role,
#bbpress-forums div.bbp-reply-author .bbp-author-role,
span.bbp-author-ip,
#bbpress-forums .bbp-forum-info .bbp-forum-content,
#bbpress-forums p.bbp-topic-meta,
#bbpress-forums .bbp-topic-pagination a,
body.page .bbp-reply-form code,
body.page .bbp-topic-form code,
body.single-topic .bbp-reply-form code,
body.single-forum .bbp-topic-form code,
body.topic-edit .bbp-topic-form code,
body.reply-edit .bbp-reply-form code,
#bbpress-forums div.bbp-the-content-wrapper input[type="button"],
#bbpress-forums div.bbp-template-notice code,
#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log {
font-size: 0.94rem;
}
#bbpress-forums .bbp-meta,
span.bbp-admin-links a {
font-size: 0.7rem;
}
#bbpress-forums div.bbp-forum-title h3,
#bbpress-forums div.bbp-topic-title h3,
#bbpress-forums div.bbp-reply-title h3 {
font-size: 1.3rem;
}
#bbpress-forums fieldset.bbp-form input[type="text"],
#bbpress-forums fieldset.bbp-form select {
padding: 10px 20px;
height: 50px;
}
#bbpress-forums li.bbp-footer,
#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-section-title ul.forum,
#bbpress-forums li.bbp-section-title ul.topic,
div.bbp-forum-header,
div.bbp-topic-header,
div.bbp-reply-header,
li.bbp-section-title div.hentry,
body.page .bbp-reply-form code,
body.page .bbp-topic-form code,
body.single-topic .bbp-reply-form code,
body.single-forum .bbp-topic-form code,
body.topic-edit .bbp-topic-form code,
body.reply-edit .bbp-reply-form code,
#bbpress-forums #password #pass-strength-result {
padding: 15px;
}
#bbpress-forums div.bbp-the-content-wrapper input[type="button"] {
height: auto;
}
#bbpress-forums li.bbp-footer,
#bbpress-forums li.bbp-header {
font-weight: normal;
}
#bbpress-forums li.bbp-footer *,
#bbpress-forums li.bbp-header * {
color: #fff;
}
#bbpress-forums button,
#bbpress-forums input[type="button"],
#bbpress-forums input[type="reset"],
#bbpress-forums input[type="submit"],
.bbp-login-form button {
color: #fff;
}
#bbpress-forums div.bbp-search-form #bbp-topic-search-form>div {
display: flex;
}
#bbpress-forums fieldset.bbp-form {
margin-bottom: 40px;
}
div.bbp-template-notice ul {
margin: 0 0 0 20px;
}
.bbp-form,
fieldset {
padding: 30px;
border-color: #eee;
} .tnp-widget-minimal form.tnp-form {
display: flex;
}
.tnp-widget-minimal .tnp-form input.tnp-submit {
width: auto;
padding: 10px 30px;
}
.lg-outer+.elementor-lightbox {
display: none !important;
}
@media screen and (max-width: 1000px) {
.tp-slide-cap-title {
font-size: 40px;
font-size: 4vw;
margin-bottom: 10px;
}
.tp-banner-title {
font-size: 40px;
font-size: 6vw;
margin-bottom: 10px;
}
.tp-slide-cap-desc,
.tp-banner-subtitle {
font-size: 14px;
font-size: 3vw;
}
.tp-team-col-4 .tp-team-member,
.tp-col-4 .tp-highlight-post,
.tp-pricing-col-4 .tp-pricing,
.tp-blog-col-4 .tp-blog-post {
width: 30.33%;
}
.tp-team-col-4 .tp-team-member:nth-child(4n + 1),
.tp-col-4 .tp-highlight-post:nth-child(4n + 1),
.tp-pricing-col-4 .tp-pricing:nth-child(4n + 1),
.tp-blog-col-4 .tp-blog-post:nth-child(4n + 1) {
clear: none;
}
.tp-team-col-4 .tp-team-member:nth-child(3n + 1),
.tp-col-4 .tp-highlight-post:nth-child(3n + 1),
.tp-pricing-col-4 .tp-pricing:nth-child(3n + 1),
.tp-blog-col-4 .tp-blog-post:nth-child(3n + 1) {
clear: both;
}
.tp-team-grid .tp-team-member.style2 {
width: 47%;
}
.tp-team-grid .tp-team-member.style2:nth-child(3n + 1) {
clear: none;
}
.tp-team-grid .tp-team-member.style2:nth-child(2n + 1) {
clear: both;
}
.tp-col-6 .tp-featured-post,
.tp-col-5 .tp-featured-post {
width: 22%;
}
.tp-col-4 .tp-featured-post {
width: 30.33%;
}
.tp-col-6 .tp-featured-post:nth-child(6n + 1),
.tp-col-5 .tp-featured-post:nth-child(5n + 1),
.tp-col-4 .tp-featured-post:nth-child(4n + 1) {
clear: none;
}
.tp-col-6 .tp-featured-post:nth-child(4n + 1),
.tp-col-5 .tp-featured-post:nth-child(4n + 1) .tp-col-4 .tp-featured-post:nth-child(3n + 1) {
clear: both;
}
.tp-counter-col-6 .tp-counter,
.tp-counter-col-5 .tp-counter {
width: 20%;
}
.tp-counter-col-4 .tp-counter {
width: 28.33%;
}
.tp-counter-col-6 .tp-counter:nth-child(6n + 1),
.tp-counter-col-5 .tp-counter:nth-child(5n + 1),
.tp-counter-col-4 .tp-counter:nth-child(4n + 1) {
clear: none;
}
.tp-counter-col-6 .tp-counter:nth-child(4n + 1),
.tp-counter-col-5 .tp-counter:nth-child(4n + 1),
.tp-counter-col-4 .tp-counter:nth-child(3n + 1) {
clear: both;
}
.tp-service-section.style2 .tp-service-posts {
display: block;
}
.tp-service-section.style2 .tp-section-title-tagline {
width: auto;
padding: 0;
margin-bottom: 60px;
}
.tp-service-section.style2 .tp-service-post-holder {
width: auto;
}
.tp-service-section.style3 .tp-service-bg {
display: none;
}
.tp-service-section.style3 .tp-service-post {
width: 50%;
}
.tp-logo-section .style2 .flipster-carousel .flip-items .flip-content {
width: 300px;
height: 300px;
}
}
@media screen and (max-width: 768px) {
body,
button,
input,
select,
textarea {
font-size: var(--total-body-size-tablet, var(--total-body-size, 17px));
letter-spacing: var(--total-body-letter-spacing-tablet, var(--total-body-letter-spacing, 0));
line-height: var(--total-body-line-height-tablet, var(--total-body-line-height, 1.6));
}
#tp-site-branding img {
width: var(--total-logo-width-tablet, var(--total-logo-width));
}
#tp-site-branding .tp-site-title {
margin-top: var(--total-title-spacing-top-tablet, var(--total-title-spacing-top-desktop, 0));
margin-right: var(--total-title-spacing-right-tablet, var(--total-title-spacing-right-desktop, 0));
margin-bottom: var(--total-title-spacing-bottom-tablet, var(--total-title-spacing-bottom-desktop, 0));
margin-left: var(--total-title-spacing-left-tablet, var(--total-title-spacing-left-desktop, 0));
font-size: var(--total-title-size-tablet, var(--total-title-size, 38px));
letter-spacing: var(--total-title-letter-spacing-tablet, var(--total-title-letter-spacing, 0));
line-height: var(--total-title-line-height-tablet, var(--total-title-line-height, 1));
}
#tp-site-branding .tp-site-description {
margin-top: var(--total-tagline-spacing-top-tablet, var(--total-tagline-spacing-top-desktop, 0));
margin-right: var(--total-tagline-spacing-right-tablet, var(--total-tagline-spacing-right-desktop, 0));
margin-bottom: var(--total-tagline-spacing-bottom-tablet, var(--total-tagline-spacing-bottom-desktop, 0));
margin-left: var(--total-tagline-spacing-left-tablet, var(--total-tagline-spacing-left-desktop, 0));
font-size: var(--total-tagline-size-tablet, var(--total-tagline-size, 18px));
letter-spacing: var(--total-tagline-letter-spacing-tablet, var(--total-tagline-letter-spacing, 0));
line-height: var(--total-tagline-line-height-tablet, var(--total-tagline-line-height, 1));
}
.tp-top-header {
font-size: var(--total-th-size-tablet, var(--total-th-size, 14px));
letter-spacing: var(--total-th-letter-spacing-tablet, var(--total-th-letter-spacing, 0));
line-height: var(--total-th-line-height-tablet, var(--total-th-line-height, 1.6));
}
.tp-section-title {
font-size: var(--total-section-title-size-tablet, var(--total-section-title-size, 36px));
letter-spacing: var(--total-section-title-letter-spacing-tablet, var(--total-section-title-letter-spacing, 0));
line-height: var(--total-section-title-line-height-tablet, var(--total-section-title-line-height, 1.3));
}
.tp-widget-area .widget {
font-size: var(--total-sidebar-size-tablet, var(--total-sidebar-size, 16px));
letter-spacing: var(--total-sidebar-letter-spacing-tablet, var(--total-sidebar-letter-spacing, 0));
line-height: var(--total-sidebar-line-height-tablet, var(--total-sidebar-line-height, 1.3));
}
.tp-widget-area .widget .widget-title,
.comment-reply-title,
.comments-area .comments-title,
.tp-related-post .tp-related-post-title {
font-size: var(--total-body-size-tablet, var(--total-body-size, 22px));
letter-spacing: var(--total-body-letter-spacing-tablet, var(--total-body-letter-spacing, 0));
line-height: var(--total-body-line-height-tablet, var(--total-body-line-height, 1.3));
}
.tp-main-title {
font-size: var(--total-page-banner-size-tablet, var(--total-page-banner-size, 38px));
letter-spacing: var(--total-page-banner-letter-spacing-tablet, var(--total-page-banner-letter-spacing, 0));
line-height: var(--total-page-banner-line-height-tablet, var(--total-page-banner-line-height, 1.3));
}
.breadcrumb-trail ul li {
font-size: var(--total-breadcrumb-size-tablet, var(--total-breadcrumb-size, 14px));
letter-spacing: var(--total-breadcrumb-letter-spacing-tablet, var(--total-breadcrumb-letter-spacing, 0));
line-height: var(--total-breadcrumb-line-height-tablet, var(--total-breadcrumb-line-height, 1.3));
}
.tp-site-footer {
font-size: var(--total-footer-size-tablet, var(--total-footer-size, 16px));
letter-spacing: var(--total-footer-letter-spacing-tablet, var(--total-footer-letter-spacing, 0));
line-height: var(--total-footer-line-height-tablet, var(--total-footer-line-height, 1.3));
}
.tp-site-footer .widget-title {
font-size: var(--total-footer-heading-size-tablet, var(--total-footer-heading-size, 22px));
letter-spacing: var(--total-footer-heading-letter-spacing-tablet, var(--total-footer-heading-letter-spacing, 0));
line-height: var(--total-footer-heading-line-height-tablet, var(--total-footer-heading-line-height, 1.3));
}
#tp-home-slider-section .bottom-section-seperator {
height: var(--total-slider-bs-height-tablet, var(--total-slider-bs-height, 60px));
}
.tp-section .tp-section-wrap {
padding-top: var(--total-section-tablet-padding-top, var(--total-section-padding-top, 100px));
padding-bottom: var(--total-section-tablet-padding-bottom, var(--total-section-padding-bottom, 100px));
}
.tp-section-seperator.top-section-seperator {
height: var(--total-section-ts-height-tablet, var(--total-section-ts-height, 60px));
}
.tp-section-seperator.bottom-section-seperator {
height: var(--total-section-bs-height-tablet, var(--total-section-bs-height, 60px));
}
h1 {
font-size: var(--total-hh1-size-tablet, var(--total-hh1-size, var(--total-h1-size-tablet, var(--total-h1-size, 38px))));
letter-spacing: var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h1-letter-spacing-tablet, var(--total-h1-letter-spacing, 0))));
line-height: var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h1-line-height-tablet, var(--total-h1-line-height, 1.3))));
}
h2 {
font-size: var(--total-hh2-size-tablet, var(--total-hh2-size, var(--total-h2-size-tablet, var(--total-h2-size, 34px))));
letter-spacing: var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h2-letter-spacing-tablet, var(--total-h2-letter-spacing, 0))));
line-height: var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h2-line-height-tablet, var(--total-h2-line-height, 1.3))));
}
h3 {
font-size: var(--total-hh3-size-tablet, var(--total-hh3-size, var(--total-h3-size-tablet, var(--total-h3-size, 30px))));
letter-spacing: var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h3-letter-spacing-tablet, var(--total-h3-letter-spacing, 0))));
line-height: var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h3-line-height-tablet, var(--total-h3-line-height, 1.3))));
}
h4 {
font-size: var(--total-hh4-size-tablet, var(--total-hh4-size, var(--total-h4-size-tablet, var(--total-h4-size, 26px))));
letter-spacing: var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h4-letter-spacing-tablet, var(--total-h4-letter-spacing, 0))));
line-height: var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h4-line-height-tablet, var(--total-h4-line-height, 1.3))));
}
h5 {
font-size: var(--total-hh5-size-tablet, var(--total-hh5-size, var(--total-h5-size-tablet, var(--total-h5-size, 24px))));
letter-spacing: var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h5-letter-spacing-tablet, var(--total-h5-letter-spacing, 0))));
line-height: var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h5-line-height-tablet, var(--total-h5-line-height, 1.3))));
}
h6 {
font-size: var(--total-hh6-size-tablet, var(--total-hh6-size, var(--total-h6-size-tablet, var(--total-h6-size, 20px))));
letter-spacing: var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h6-letter-spacing-tablet, var(--total-h6-letter-spacing, 0))));
line-height: var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h6-line-height-tablet, var(--total-h6-line-height, 1.3))));
}
.tp-slide-cap-title,
.tp-banner-title {
font-size: var(--total-slider-title-size-tablet, 4vw);
letter-spacing: var(--total-slider-title-letter-spacing-tablet, var(--total-slider-title-letter-spacing, 2px));
line-height: var(--total-slider-title-line-height-tablet, var(--total-slider-title-line-height, 1.2));
}
.tp-slide-cap-desc,
.tp-banner-subtitle {
font-size: var(--total-slider-subtitle-size-tablet, 3vw);
letter-spacing: var(--total-slider-subtitle-letter-spacing-tablet, var(--total-slider-subtitle-letter-spacing, 0));
line-height: var(--total-slider-subtitle-line-height-tablet, var(--total-slider-subtitle-line-height, 1.4));
}
.tp-custom-height-slider .tp-slide img {
height: var(--total-slider-height-tablet, 600px);
}
.tp-main-header.tp-banner-style3 .tp-container {
display: block;
}
.tp-main-header.tp-banner-style3 .tp-header-title {
margin-bottom: 10px;
}
.tp-top-header .tp-container {
display: block;
}
.tp-th-left,
.tp-th-right {
float: none;
width: auto;
max-width: none;
text-align: center;
}
.tp-th-left {
margin-bottom: 10px;
}
.tp-banner-caption {
width: 100% !important;
}
.tp-slide-caption .tp-slide-cap-title,
.tp-slide-caption .tp-slide-cap-desc {
padding: 0 !important;
}
.tp-button {
height: auto;
}
.tp-section-title-top-center,
.tp-section-title-top-cs {
width: auto;
}
.tp-section-title-single-row {
display: block;
}
.tp-section-title-single-row .tp-section-title-wrap,
.tp-section-title-single-row .tp-section-tagline {
width: auto;
padding: 0;
border: 0;
}
.tp-section-title-side,
.tp-section-title-side+.tp-section-content {
float: none;
width: auto;
padding: 0;
}
.tp-section-title-tagline.tp-section-title-side {
margin-bottom: 60px;
}
.tp-section-title-single-row .tp-section-title-wrap {
margin-bottom: 15px;
}
.tp-section-title-big .tp-section-super-title {
font-size: 4rem;
}
.tp-team-grid .tp-team-member {
width: 47%;
}
.tp-team-grid .tp-team-member:nth-child(3n + 1) {
clear: none;
}
.tp-team-grid .tp-team-member:nth-child(2n + 1) {
clear: both;
}
.tp-team-grid .tp-team-member.style2 {
width: 97%;
}
.tp-tab-wrap.style1 .tp-tab-anchors,
.tp-tab-wrap.style2 .tp-tab-anchors,
.tp-tab-wrap.style1 .tp-tab-content,
.tp-tab-wrap.style2 .tp-tab-content {
width: auto;
float: none;
padding: 20px 0;
}
.tp-tab-wrap.style2 .tp-tab-link.tp-active:after,
.tp-tab-wrap.style4 .tp-tab:after,
.tp-tab-wrap.style5 .tp-tab-link.tp-active:before,
.tp-tab-wrap.style5 .tp-tab-link.tp-active:after {
display: none;
}
.tp-tab-wrap.style3 .tp-tab,
.tp-tab-wrap.style4 .tp-tab,
.tp-tab-wrap.style5 .tp-tab-link {
display: block;
max-width: none;
margin-bottom: 10px;
}
.tp-tab-wrap.style5 .tp-tab-link {
padding-bottom: 20px;
}
.tp-tab-wrap.style5 .tp-tab-anchors {
padding: 0 30px;
}
.tp-tab-wrap.style5 .tp-tab-content {
padding: 30px;
}
.tp-testimonial-section .style3 .tp-testimonial-box {
width: 47%;
}
.tp-testimonial-section .style3 .tp-testimonial-box:nth-child(3n + 1) {
clear: none;
}
.tp-testimonial-section .style3 .tp-testimonial-box:nth-child(2n + 1) {
clear: both;
}
.tp-testimonial-section .style4 .tp-testimonial-box {
transform: scale(1);
}
#tp-about-section .tp-container {
display: block;
}
.tp-about-sec {
width: auto;
float: none;
padding: 0;
margin-bottom: 30px;
}
.tp-about-sidebar {
width: auto;
float: none;
padding: 0;
text-align: center;
}
.tp-about-sec.fullwidth .tp-progress-bar-sec {
width: auto;
}
.tp-news {
width: auto;
display: block;
}
.tp-news-image,
.tp-news-content {
width: auto !important;
float: none !important;
}
.tp-news-image {
margin-bottom: 30px;
}
.tp-news-section .style2 .tp-news-content {
left: 0 !important;
}
.tp-news-section .style3 .tp-news-image {
margin-bottom: 0;
min-height: 0;
padding-top: 56%;
}
.tp-news-section .style3 .tp-news-content {
padding: 40px;
}
.tp-highlight-post-wrap .tp-highlight-post {
width: 47%;
}
.tp-highlight-post-wrap .tp-highlight-post:nth-child(3n + 1) {
clear: none;
}
.tp-highlight-post-wrap .tp-highlight-post:nth-child(2n + 1) {
clear: both;
}
.tp-pricing-wrap .tp-pricing {
width: 47%;
}
.tp-pricing-wrap .tp-pricing:nth-child(3n + 1) {
clear: none;
}
.tp-pricing-wrap .tp-pricing:nth-child(2n + 1) {
clear: both;
}
.tp-featured-post-wrap .tp-featured-post {
width: 47%;
}
.tp-featured-post-wrap .tp-featured-post:nth-child(6n + 1),
.tp-featured-post-wrap .tp-featured-post:nth-child(5n + 1),
.tp-featured-post-wrap .tp-featured-post:nth-child(4n + 1),
.tp-featured-post-wrap .tp-featured-post:nth-child(3n + 1) {
clear: none;
}
.tp-featured-post-wrap .tp-featured-post:nth-child(2n + 1) {
clear: both;
}
.tp-counter-wrap .tp-counter {
width: 45%;
}
.tp-counter-wrap .tp-counter:nth-child(6n + 1),
.tp-counter-wrap .tp-counter:nth-child(5n + 1),
.tp-counter-wrap .tp-counter:nth-child(4n + 1),
.tp-counter-wrap .tp-counter:nth-child(3n + 1) {
clear: none;
}
.tp-counter-wrap .tp-counter:nth-child(2n + 1) {
clear: both;
}
.tp-service-bg {
display: none;
}
.tp-service-section.style1.tp-bg-left .tp-service-posts,
.tp-service-section.style4.tp-bg-left .tp-service-posts,
.tp-service-section.style1.tp-bg-right .tp-service-posts,
.tp-service-section.style4.tp-bg-right .tp-service-posts {
float: none;
width: auto;
padding: 0;
}
.tp-service-section.style3 .tp-service-post-wrap {
display: block;
}
.tp-service-section.style3 .tp-service-post {
width: auto;
}
.tp-service-section.style3 .tp-service-post:nth-child(odd) {
padding-right: 0;
padding-left: 100px;
text-align: left;
}
.tp-service-section.style3 .tp-service-post:nth-child(odd) .tp-service-icon {
float: left;
margin-left: -80px;
}
.tp-blog-wrap .tp-blog-post {
width: 47%;
}
.tp-blog-wrap .tp-blog-post:nth-child(3n + 1) {
clear: none;
}
.tp-blog-wrap .tp-blog-post:nth-child(2n + 1) {
clear: both;
}
.tp-contact-content {
display: block;
}
.tp-contact-form,
.tp-contact-detail {
width: auto;
}
.tp-cta-section.style4 .tp-container {
display: block;
}
.tp-cta-section.style4 .tp-section-title-tagline {
width: auto;
padding-right: 0;
margin-bottom: 30px;
}
.tp-cta-section.style4 .tp-cta-buttons {
width: auto;
}
.tp-logo-section .style2 .flipster-carousel .flip-items .flip-content {
width: 200px;
height: 200px;
}
.tp-logo-section .style3 .tp-logo-grid .tp-logo-item,
.tp-logo-section .style4 .tp-logo-grid .tp-logo-item {
width: 33.33%;
}
.tp-logo-section .style4 .tp-logo-grid .tp-logo-item {
border: 0 !important;
}
.tp-cta {
display: block;
}
.tp-cta-content-wrap {
width: 100%;
margin-bottom: 40px;
}
.tp-cta.tp-button-right .tp-cta-buttons {
padding: 0;
text-align: center;
}
.footer-style2 .tp-main-footer {
display: block;
}
.footer-style2 .tp-footer {
border-right: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-style2 .tp-footer:last-child {
border-bottom: 0;
}
.tp-main-footer {
display: block;
}
.tp-footer {
width: auto !important;
margin: 0 0 30px !important;
float: none !important;
}
.tp-footer:last-child {
margin-bottom: 0 !important;
}
#tp-primary {
width: auto !important;
float: none !important;
margin-bottom: 30px;
}
#tp-secondary {
width: auto !important;
float: none !important;
margin-bottom: 30px;
}
body.tp-no-sidebar #tp-primary {
margin-bottom: 0;
}
.totalplus-privacy-policy.bottom-left-float,
.totalplus-privacy-policy.bottom-right-float {
width: auto;
left: 40px;
right: 40px;
text-align: center;
}
.totalplus-privacy-policy.top-full-width .tp-container,
.totalplus-privacy-policy.bottom-full-width .tp-container {
display: block;
text-align: center;
}
.totalplus-privacy-policy.top-full-width .policy-text,
.totalplus-privacy-policy.bottom-full-width .policy-text {
margin-right: 0;
margin-bottom: 10px;
}
.totalplus-privacy-policy.top-full-width .policy-buttons,
.totalplus-privacy-policy.bottom-full-width .policy-buttons {
white-space: normal;
}
.totalplus-privacy-policy.top-full-width .policy-buttons a,
.totalplus-privacy-policy.bottom-full-width .policy-buttons a {
margin-top: 10px;
}
}
@media screen and (max-width: 580px) {
.tp-menu-extra-items {
display: none;
}
.tp-slide-cap-title,
.tp-slide-cap-desc {
font-size: 30px;
font-size: 4vw;
}
.tp-banner-title {
font-size: 30px;
font-size: 8vw;
}
.tp-banner-subtitle {
font-size: 14px;
font-size: 5vw;
}
.tp-topheader-mobile-disable .tp-top-header {
display: none !important;
}
ul.tp-related-post-wrap {
margin-left: 0;
}
ul.tp-related-post-wrap li {
float: none;
width: auto;
margin: 0 0 30px;
}
.tp-image-box.image-left .tp-image-box-wrap,
.tp-image-box.image-right .tp-image-box-wrap {
display: block;
}
.tp-image-box.image-left .tp-ib-image,
.tp-image-box.image-right .tp-ib-image {
margin: 0 0 30px;
width: auto !important;
}
.tp-ib-content {
width: auto !important;
}
.tp-team-grid .tp-team-member {
width: 97%;
}
.tp-testimonial-section .style3 .tp-testimonial-box {
width: 97%;
}
.tp-news-section .style3 .tp-news-content {
padding: 30px;
}
.tp-highlight-post-wrap .tp-highlight-post {
width: 97%;
}
.tp-pricing-wrap .tp-pricing {
width: 97%;
}
.tp-featured-post-wrap .tp-featured-post {
width: 97%;
}
.tp-service-section.style2 .tp-service-post-wrap {
display: block;
}
.tp-service-section.style2 .tp-service-post {
width: auto;
margin: 30px 0;
}
.tp-blog-wrap .tp-blog-post img {
width: 100%;
}
.tp-blog-wrap .tp-blog-post {
width: 97%;
}
#tp-home-slider-section .owl-nav,
#tp-home-slider-section .owl-dots {
display: none;
}
.tp-blog-layout2 .tp-post-info {
width: 30%;
}
.tp-blog-layout2 .tp-post-info+.tp-post-content {
width: 70%;
}
.policy-hide-mobile,
.customizer-gdpr-section .totalplus-privacy-policy.policy-hide-mobile {
display: none !important;
}
.tp-blog-layout4-first .tp-post-wrapper {
background: none;
min-height: 0;
}
.tp-blog-layout4-first .tp-post-wrapper img {
min-height: 0;
}
.tp-hentry-wrap {
margin-left: 0;
}
.tp-hentry-wrap .tp-blog-layout4.tp-hentry {
width: 100%;
float: none;
margin-left: 0;
}
.tp-blog-layout4-first .tp-post-content {
padding: 20px 0 0;
position: static;
transform: translateY(0);
color: inherit;
}
.tp-blog-layout4-first .tp-post-content a {
color: inherit;
}
}
@media screen and (max-width: 480px) {
body,
button,
input,
select,
textarea {
font-size: var(--total-body-size-mobile, var(--total-body-size-tablet, var(--total-body-size, 17px)));
letter-spacing: var(--total-body-letter-spacing-mobile, var(--total-body-letter-spacing-tablet, var(--total-body-letter-spacing, 0)));
line-height: var(--total-body-line-height-mobile, var(--total-body-line-height-tablet, var(--total-body-line-height, 1.6)));
}
h1,
h2,
h3,
h4,
h5,
h6,
.tp-site-title {
letter-spacing: var(--total-h-letter-spacing-mobile, var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, 0)));
line-height: var(--total-h-line-height-mobile, var(--total-h-line-height-tablet, var(--total-h-line-height, 1.6)));
}
#tp-site-branding img {
width: var(--total-logo-width-mobile, var(--total-logo-width-tablet, var(--total-logo-width)));
}
#tp-site-branding .tp-site-title {
margin-top: var(--total-title-spacing-top-mobile, var(--total-title-spacing-top-tablet, var(--total-title-spacing-top-desktop, 0)));
margin-right: var(--total-title-spacing-right-mobile, var(--total-title-spacing-right-tablet, var(--total-title-spacing-right-desktop, 0)));
margin-bottom: var(--total-title-spacing-bottom-mobile, var(--total-title-spacing-bottom-tablet, var(--total-title-spacing-bottom-desktop, 0)));
margin-left: var(--total-title-spacing-left-mobile, var(--total-title-spacing-left-tablet, var(--total-title-spacing-left-desktop, 0)));
font-size: var(--total-title-size-mobile, var(--total-title-size-tablet, var(--total-title-size, 38px)));
letter-spacing: var(--total-title-letter-spacing-mobile, var(--total-title-letter-spacing-tablet, var(--total-title-letter-spacing, 0)));
line-height: var(--total-title-line-height-mobile, var(--total-title-line-height-tablet, var(--total-title-line-height, 1)));
}
#tp-site-branding .tp-site-description {
margin-top: var(--total-tagline-spacing-top-mobile, var(--total-tagline-spacing-top-tablet, var(--total-tagline-spacing-top-desktop, 0)));
margin-right: var(--total-tagline-spacing-right-mobile, var(--total-tagline-spacing-right-tablet, var(--total-tagline-spacing-right-desktop, 0)));
margin-bottom: var(--total-tagline-spacing-bottom-mobile, var(--total-tagline-spacing-bottom-tablet, var(--total-tagline-spacing-bottom-desktop, 0)));
margin-left: var(--total-tagline-spacing-left-mobile, var(--total-tagline-spacing-left-tablet, var(--total-tagline-spacing-left-desktop, 0)));
font-size: var(--total-tagline-size-mobile, var(--total-tagline-size-tablet, var(--total-tagline-size, 18px)));
letter-spacing: var(--total-tagline-letter-spacing-mobile, var(--total-tagline-letter-spacing-tablet, var(--total-tagline-letter-spacing, 0)));
line-height: var(--total-tagline-line-height-mobile, var(--total-tagline-line-height-tablet, var(--total-tagline-line-height, 1)));
}
.tp-top-header {
font-size: var(--total-th-size-mobile, var(--total-th-size-tablet, var(--total-th-size, 14px)));
letter-spacing: var(--total-th-letter-spacing-mobile, var(--total-th-letter-spacing-tablet, var(--total-th-letter-spacing, 0)));
line-height: var(--total-th-line-height-mobile, var(--total-th-line-height-tablet, var(--total-th-line-height, 1.6)));
}
.tp-section-title {
font-size: var(--total-section-title-size-mobile, var(--total-section-title-size-tablet, var(--total-section-title-size, 36px)));
letter-spacing: var(--total-section-title-letter-spacing-mobile, var(--total-section-title-letter-spacing-tablet, var(--total-section-title-letter-spacing, 0)));
line-height: var(--total-section-title-line-height-mobile, var(--total-section-title-line-height-tablet, var(--total-section-title-line-height, 1.3)));
}
.tp-widget-area .widget {
font-size: var(--total-sidebar-size-mobile, var(--total-sidebar-size-tablet, var(--total-sidebar-size, 16px)));
letter-spacing: var(--total-sidebar-letter-spacing-mobile, var(--total-sidebar-letter-spacing-tablet, var(--total-sidebar-letter-spacing, 0)));
line-height: var(--total-sidebar-line-height-mobile, var(--total-sidebar-line-height-tablet, var(--total-sidebar-line-height, 1.3)));
}
.tp-widget-area .widget .widget-title,
.comment-reply-title,
.comments-area .comments-title,
.tp-related-post .tp-related-post-title {
font-size: var(--total-sidebar-heading-size-mobile, var(--total-sidebar-heading-size-tablet, var(--total-sidebar-heading-size, 22px)));
letter-spacing: var(--total-sidebar-heading-letter-spacing-mobile, var(--total-sidebar-heading-letter-spacing-tablet, var(--total-sidebar-heading-letter-spacing, 0)));
line-height: var(--total-sidebar-heading-line-height-mobile, var(--total-sidebar-heading-line-height-tablet, var(--total-sidebar-heading-line-height, 1.3)));
}
.tp-main-title {
font-size: var(--total-page-banner-size-mobile, var(--total-page-banner-size-tablet, var(--total-page-banner-size, 38px)));
letter-spacing: var(--total-page-banner-letter-spacing-mobile, var(--total-page-banner-letter-spacing-tablet, var(--total-page-banner-letter-spacing, 0)));
line-height: var(--total-page-banner-line-height-mobile, var(--total-page-banner-line-height-tablet, var(--total-page-banner-line-height, 1.3)));
}
.breadcrumb-trail ul li {
font-size: var(--total-breadcrumb-size-mobile, var(--total-breadcrumb-size-tablet, var(--total-breadcrumb-size, 14px)));
letter-spacing: var(--total-breadcrumb-letter-spacing-mobile, var(--total-breadcrumb-letter-spacing-tablet, var(--total-breadcrumb-letter-spacing, 0)));
line-height: var(--total-breadcrumb-line-height-mobile, var(--total-breadcrumb-line-height-tablet, var(--total-breadcrumb-line-height, 1.3)));
}
.tp-site-footer {
font-size: var(--total-footer-size-mobile, var(--total-footer-size-tablet, var(--total-footer-size, 16px)));
letter-spacing: var(--total-footer-letter-spacing-mobile, var(--total-footer-letter-spacing-tablet, var(--total-footer-letter-spacing, 0)));
line-height: var(--total-footer-line-height-mobile, var(--total-footer-line-height-tablet, var(--total-footer-line-height, 1.3)));
}
.tp-site-footer .widget-title {
font-size: var(--total-footer-heading-size-mobile, var(--total-footer-heading-size-tablet, var(--total-footer-heading-size, 22px)));
letter-spacing: var(--total-footer-heading-letter-spacing-mobile, var(--total-footer-heading-letter-spacing-tablet, var(--total-footer-heading-letter-spacing, 0)));
line-height: var(--total-footer-heading-line-height-mobile, var(--total-footer-heading-line-height-tablet, var(--total-footer-heading-line-height, 1.3)));
}
#tp-home-slider-section .bottom-section-seperator {
height: var(--total-slider-bs-height-mobile, var(--total-slider-bs-height-tablet, var(--total-slider-bs-height, 60px)));
}
.tp-section .tp-section-wrap {
padding-top: var(--total-section-mobile-padding-top, var(--total-section-tablet-padding-top, var(--total-section-padding-top, 100px)));
padding-bottom: var(--total-section-mobile-padding-bottom, var(--total-section-tablet-padding-bottom, var(--total-section-padding-bottom, 100px)));
}
.tp-section-seperator.top-section-seperator {
height: var(--total-section-ts-height-mobile, var(--total-section-ts-height-tablet, var(--total-section-ts-height, 60px)));
}
.tp-section-seperator.bottom-section-seperator {
height: var(--total-section-bs-height-mobile, var(--total-section-bs-height-tablet, var(--total-section-bs-height, 60px)));
}
h1 {
font-size: var(--total-hh1-size-mobile, var(--total-hh1-size-tablet, var(--total-hh1-size, var(--total-h1-size-mobile, var(--total-h1-size-tablet, var(--total-h1-size, 38px))))));
letter-spacing: var(--total-h-letter-spacing-mobile, var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h1-letter-spacing-mobile, var(--total-h1-letter-spacing-tablet, var(--total-h1-letter-spacing, 0))))));
line-height: var(--total-h-line-height-mobile, var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h1-line-height-mobile, var(--total-h1-line-height-tablet, var(--total-h1-line-height, 1.3))))));
}
h2 {
font-size: var(--total-hh2-size-mobile, var(--total-hh2-size-tablet, var(--total-hh2-size, var(--total-h2-size-mobile, var(--total-h2-size-tablet, var(--total-h2-size, 34px))))));
letter-spacing: var(--total-h-letter-spacing-mobile, var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h2-letter-spacing-mobile, var(--total-h2-letter-spacing-tablet, var(--total-h2-letter-spacing, 0))))));
line-height: var(--total-h-line-height-mobile, var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h2-line-height-mobile, var(--total-h2-line-height-tablet, var(--total-h2-line-height, 1.3))))));
}
h3 {
font-size: var(--total-hh3-size-mobile, var(--total-hh3-size-tablet, var(--total-hh3-size, var(--total-h3-size-mobile, var(--total-h3-size-tablet, var(--total-h3-size, 30px))))));
letter-spacing: var(--total-h-letter-spacing-mobile, var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h3-letter-spacing-mobile, var(--total-h3-letter-spacing-tablet, var(--total-h3-letter-spacing, 0))))));
line-height: var(--total-h-line-height-mobile, var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h3-line-height-mobile, var(--total-h3-line-height-tablet, var(--total-h3-line-height, 1.3))))));
}
h4 {
font-size: var(--total-hh4-size-mobile, var(--total-hh4-size-tablet, var(--total-hh4-size, var(--total-h4-size-mobile, var(--total-h4-size-tablet, var(--total-h4-size, 26px))))));
letter-spacing: var(--total-h-letter-spacing-mobile, var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h4-letter-spacing-mobile, var(--total-h4-letter-spacing-tablet, var(--total-h4-letter-spacing, 0))))));
line-height: var(--total-h-line-height-mobile, var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h4-line-height-mobile, var(--total-h4-line-height-tablet, var(--total-h4-line-height, 1.3))))));
}
h5 {
font-size: var(--total-hh5-size-mobile, var(--total-hh5-size-tablet, var(--total-hh5-size, var(--total-h5-size-mobile, var(--total-h5-size-tablet, var(--total-h5-size, 22px))))));
letter-spacing: var(--total-h-letter-spacing-mobile, var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h5-letter-spacing-mobile, var(--total-h5-letter-spacing-tablet, var(--total-h5-letter-spacing, 0))))));
line-height: var(--total-h-line-height-mobile, var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h5-line-height-mobile, var(--total-h5-line-height-tablet, var(--total-h5-line-height, 1.3))))));
}
h6 {
font-size: var(--total-hh6-size-mobile, var(--total-hh6-size-tablet, var(--total-hh6-size, var(--total-h6-size-mobile, var(--total-h6-size-tablet, var(--total-h6-size, 20px))))));
letter-spacing: var(--total-h-letter-spacing-mobile, var(--total-h-letter-spacing-tablet, var(--total-h-letter-spacing, var(--total-h6-letter-spacing-mobile, var(--total-h6-letter-spacing-tablet, var(--total-h6-letter-spacing, 0))))));
line-height: var(--total-h-line-height-mobile, var(--total-h-line-height-tablet, var(--total-h-line-height, var(--total-h6-line-height-mobile, var(--total-h6-line-height-tablet, var(--total-h6-line-height, 1.3))))));
}
.tp-slide-cap-title,
.tp-banner-title {
font-size: var(--total-slider-title-size-mobile, var(--total-slider-title-size-tablet, 4vw));
letter-spacing: var(--total-slider-title-letter-spacing-mobile, var(--total-slider-title-letter-spacing-tablet, var(--total-slider-title-letter-spacing, 2px)));
line-height: var(--total-slider-title-line-height-mobile, var(--total-slider-title-line-height-tablet, var(--total-slider-title-line-height, 1.2)));
}
.tp-slide-cap-desc,
.tp-banner-subtitle {
font-size: var(--total-slider-subtitle-size-mobile, var(--total-slider-subtitle-size-tablet, 3vw));
letter-spacing: var(--total-slider-subtitle-letter-spacing-mobile, var(--total-slider-subtitle-letter-spacing-tablet, var(--total-slider-subtitle-letter-spacing, 0)));
line-height: var(--total-slider-subtitle-line-height-mobile, var(--total-slider-subtitle-line-height-tablet, var(--total-slider-subtitle-line-height, 1.4)));
}
.tp-custom-height-slider .tp-slide img {
height: var(--total-slider-height-mobile, 400px);
}
.tp-banner-title {
font-size: 30px;
font-size: 9vw;
}
.tp-banner-subtitle {
font-size: 14px;
font-size: 5vw;
}
.tp-slide-button a {
font-size: 14px;
font-size: 3vw;
padding: 8px 12px;
}
.tp-slide-button {
margin-top: 10px;
}
.tp-team-member.style2 .tp-team-member-inner {
display: block;
}
.tp-team-member.style2 .tp-team-member-content,
.tp-team-member.style2 .tp-team-image {
width: auto;
}
.tp-testimonial-wrap .tp-testimonial-excerpt {
width: auto;
}
.tp-testimonial-wrap .tp-testimonial-excerpt .icofont-quote-left {
left: 0;
}
.tp-counter-wrap .tp-counter {
width: 95%;
}
.tp-cta-buttons a {
display: block;
margin: 0 0 15px;
text-align: center;
}
.tp-logo-section .style3 .tp-logo-grid .tp-logo-item,
.tp-logo-section .style4 .tp-logo-grid .tp-logo-item {
width: 50%;
}
.tp-blog-layout1 .tp-post-info {
float: none;
width: auto;
margin-bottom: 20px;
}
.tp-blog-layout1 .tp-post-info+.tp-post-wrapper {
padding-left: 0;
}
.tp-blog-layout1 .tp-entry-figure+.tp-post-content {
padding: 0 20px 20px;
}
.tp-blog-layout1 .tp-entry-figure+.tp-post-content .tp-entry-header {
width: 100%;
margin-left: -20px;
}
.tp-blog-layout2 .entry-body {
padding: 20px;
}
.tp-blog-layout2 .tp-post-info,
.tp-blog-layout2 .tp-post-info+.tp-post-content {
width: auto;
float: none;
padding: 0;
}
.tp-blog-layout2 .tp-post-info {
margin-bottom: 30px;
}
.tp-blog-layout2 .tp-entry-date {
margin-top: -20px;
margin-bottom: 0;
}
.tp-blog-layout3 .tp-post-content {
padding: 20px 20px 0;
}
.tp-contact-box.style1 .tp-contact-field,
.tp-contact-box.style3 .tp-contact-field {
min-width: 100%;
}
.tp-contact-box.style1 .tp-contact-field:after {
display: none;
}
.tp-mobile-hide,
.tp-hide-mobile {
display: none !important;
}
}
@supports (-webkit-touch-callout: none) {
.tp-service-bg,
.tp-section .tp-section-wrap,
[data-stellar-background-ratio] {
background-attachment: scroll !important;
background-position: center !important;
}
}