@charset"UTF-8";
@charset "UTF-8";
.fa {
font-family: var(--fa-style-family, "Font Awesome 6 Free");
font-weight: var(--fa-style, 900);
}
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands,
.fa {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: var(--fa-display, inline-block);
font-style: normal;
font-variant: normal;
line-height: 1;
text-rendering: auto;
}
.fas::before,
.far::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-brands::before,
.fa::before {
content: var(--fa) !important;
}
.fa-classic,
.fas,
.fa-solid,
.far,
.fa-regular {
font-family: 'Font Awesome 6 Free';
}
.fa-brands,
.fab {
font-family: 'Font Awesome 6 Brands';
}
.fa-1x {
font-size: 1em;
}
.fa-2x {
font-size: 2em;
}
.fa-3x {
font-size: 3em;
}
.fa-4x {
font-size: 4em;
}
.fa-5x {
font-size: 5em;
}
.fa-6x {
font-size: 6em;
}
.fa-7x {
font-size: 7em;
}
.fa-8x {
font-size: 8em;
}
.fa-9x {
font-size: 9em;
}
.fa-10x {
font-size: 10em;
}
.fa-2xs {
font-size: 0.625em;
line-height: 0.1em;
vertical-align: 0.225em;
}
.fa-xs {
font-size: 0.75em;
line-height: 0.08333em;
vertical-align: 0.125em;
}
.fa-sm {
font-size: 0.875em;
line-height: 0.07143em;
vertical-align: 0.05357em;
}
.fa-lg {
font-size: 1.25em;
line-height: 0.05em;
vertical-align: -0.075em;
}
.fa-xl {
font-size: 1.5em;
line-height: 0.04167em;
vertical-align: -0.125em;
}
.fa-2xl {
font-size: 2em;
line-height: 0.03125em;
vertical-align: -0.1875em;
}
.fa-fw {
text-align: center;
width: 1.25em;
}
.fa-ul {
list-style-type: none;
margin-left: var(--fa-li-margin, 2.5em);
padding-left: 0;
}
.fa-ul > li {
position: relative;
}
.fa-li {
left: calc(-1 * var(--fa-li-width, 2em));
position: absolute;
text-align: center;
width: var(--fa-li-width, 2em);
line-height: inherit;
}
.fa-border {
border-color: var(--fa-border-color, #eee);
border-radius: var(--fa-border-radius, 0.1em);
border-style: var(--fa-border-style, solid);
border-width: var(--fa-border-width, 0.08em);
padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}
.fa-pull-left {
float: left;
margin-right: var(--fa-pull-margin, 0.3em);
}
.fa-pull-right {
float: right;
margin-left: var(--fa-pull-margin, 0.3em);
}
.fa-beat {
animation-name: fa-beat;
animation-delay: var(--fa-animation-delay, 0s);
animation-direction: var(--fa-animation-direction, normal);
animation-duration: var(--fa-animation-duration, 1s);
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-bounce {
animation-name: fa-bounce;
animation-delay: var(--fa-animation-delay, 0s);
animation-direction: var(--fa-animation-direction, normal);
animation-duration: var(--fa-animation-duration, 1s);
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}
.fa-fade {
animation-name: fa-fade;
animation-delay: var(--fa-animation-delay, 0s);
animation-direction: var(--fa-animation-direction, normal);
animation-duration: var(--fa-animation-duration, 1s);
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-beat-fade {
animation-name: fa-beat-fade;
animation-delay: var(--fa-animation-delay, 0s);
animation-direction: var(--fa-animation-direction, normal);
animation-duration: var(--fa-animation-duration, 1s);
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-flip {
animation-name: fa-flip;
animation-delay: var(--fa-animation-delay, 0s);
animation-direction: var(--fa-animation-direction, normal);
animation-duration: var(--fa-animation-duration, 1s);
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-shake {
animation-name: fa-shake;
animation-delay: var(--fa-animation-delay, 0s);
animation-direction: var(--fa-animation-direction, normal);
animation-duration: var(--fa-animation-duration, 1s);
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin {
animation-name: fa-spin;
animation-delay: var(--fa-animation-delay, 0s);
animation-direction: var(--fa-animation-direction, normal);
animation-duration: var(--fa-animation-duration, 2s);
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin-reverse {
--fa-animation-direction: reverse;
}
.fa-pulse,
.fa-spin-pulse {
animation-name: fa-spin;
animation-direction: var(--fa-animation-direction, normal);
animation-duration: var(--fa-animation-duration, 1s);
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
animation-timing-function: var(--fa-animation-timing, steps(8));
}
@media (prefers-reduced-motion: reduce) {
.fa-beat,
.fa-bounce,
.fa-fade,
.fa-beat-fade,
.fa-flip,
.fa-pulse,
.fa-shake,
.fa-spin,
.fa-spin-pulse {
animation-delay: -1ms;
animation-duration: 1ms;
animation-iteration-count: 1;
transition-delay: 0s;
transition-duration: 0s;
}
}
@keyframes fa-beat {
0%,
90% {
transform: scale(1);
}
45% {
transform: scale(var(--fa-beat-scale, 1.25));
}
}
@keyframes fa-bounce {
0% {
transform: scale(1, 1) translateY(0);
}
10% {
transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
}
30% {
transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
}
50% {
transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
}
57% {
transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
}
64% {
transform: scale(1, 1) translateY(0);
}
100% {
transform: scale(1, 1) translateY(0);
}
}
@keyframes fa-fade {
50% {
opacity: var(--fa-fade-opacity, 0.4);
}
}
@keyframes fa-beat-fade {
0%,
100% {
opacity: var(--fa-beat-fade-opacity, 0.4);
transform: scale(1);
}
50% {
opacity: 1;
transform: scale(var(--fa-beat-fade-scale, 1.125));
}
}
@keyframes fa-flip {
50% {
transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
}
}
@keyframes fa-shake {
0% {
transform: rotate(-15deg);
}
4% {
transform: rotate(15deg);
}
8%,
24% {
transform: rotate(-18deg);
}
12%,
28% {
transform: rotate(18deg);
}
16% {
transform: rotate(-22deg);
}
20% {
transform: rotate(22deg);
}
32% {
transform: rotate(-12deg);
}
36% {
transform: rotate(12deg);
}
40%,
100% {
transform: rotate(0deg);
}
}
@keyframes fa-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.fa-rotate-90 {
transform: rotate(90deg);
}
.fa-rotate-180 {
transform: rotate(180deg);
}
.fa-rotate-270 {
transform: rotate(270deg);
}
.fa-flip-horizontal {
transform: scale(-1, 1);
}
.fa-flip-vertical {
transform: scale(1, -1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
transform: scale(-1, -1);
}
.fa-rotate-by {
transform: rotate(var(--fa-rotate-angle, 0));
}
.fa-stack {
display: inline-block;
height: 2em;
line-height: 2em;
position: relative;
vertical-align: middle;
width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
left: 0;
position: absolute;
text-align: center;
width: 100%;
z-index: var(--fa-stack-z-index, auto);
}
.fa-stack-1x {
line-height: inherit;
}
.fa-stack-2x {
font-size: 2em;
}
.fa-inverse {
color: var(--fa-inverse, #fff);
} .fa-0 {
--fa: "\30";
}
.fa-1 {
--fa: "\31";
}
.fa-2 {
--fa: "\32";
}
.fa-3 {
--fa: "\33";
}
.fa-4 {
--fa: "\34";
}
.fa-5 {
--fa: "\35";
}
.fa-6 {
--fa: "\36";
}
.fa-7 {
--fa: "\37";
}
.fa-8 {
--fa: "\38";
}
.fa-9 {
--fa: "\39";
}
.fa-fill-drip {
--fa: "\f576";
}
.fa-arrows-to-circle {
--fa: "\e4bd";
}
.fa-circle-chevron-right {
--fa: "\f138";
}
.fa-chevron-circle-right {
--fa: "\f138";
}
.fa-at {
--fa: "\40";
}
.fa-trash-can {
--fa: "\f2ed";
}
.fa-trash-alt {
--fa: "\f2ed";
}
.fa-text-height {
--fa: "\f034";
}
.fa-user-xmark {
--fa: "\f235";
}
.fa-user-times {
--fa: "\f235";
}
.fa-stethoscope {
--fa: "\f0f1";
}
.fa-message {
--fa: "\f27a";
}
.fa-comment-alt {
--fa: "\f27a";
}
.fa-info {
--fa: "\f129";
}
.fa-down-left-and-up-right-to-center {
--fa: "\f422";
}
.fa-compress-alt {
--fa: "\f422";
}
.fa-explosion {
--fa: "\e4e9";
}
.fa-file-lines {
--fa: "\f15c";
}
.fa-file-alt {
--fa: "\f15c";
}
.fa-file-text {
--fa: "\f15c";
}
.fa-wave-square {
--fa: "\f83e";
}
.fa-ring {
--fa: "\f70b";
}
.fa-building-un {
--fa: "\e4d9";
}
.fa-dice-three {
--fa: "\f527";
}
.fa-calendar-days {
--fa: "\f073";
}
.fa-calendar-alt {
--fa: "\f073";
}
.fa-anchor-circle-check {
--fa: "\e4aa";
}
.fa-building-circle-arrow-right {
--fa: "\e4d1";
}
.fa-volleyball {
--fa: "\f45f";
}
.fa-volleyball-ball {
--fa: "\f45f";
}
.fa-arrows-up-to-line {
--fa: "\e4c2";
}
.fa-sort-down {
--fa: "\f0dd";
}
.fa-sort-desc {
--fa: "\f0dd";
}
.fa-circle-minus {
--fa: "\f056";
}
.fa-minus-circle {
--fa: "\f056";
}
.fa-door-open {
--fa: "\f52b";
}
.fa-right-from-bracket {
--fa: "\f2f5";
}
.fa-sign-out-alt {
--fa: "\f2f5";
}
.fa-atom {
--fa: "\f5d2";
}
.fa-soap {
--fa: "\e06e";
}
.fa-icons {
--fa: "\f86d";
}
.fa-heart-music-camera-bolt {
--fa: "\f86d";
}
.fa-microphone-lines-slash {
--fa: "\f539";
}
.fa-microphone-alt-slash {
--fa: "\f539";
}
.fa-bridge-circle-check {
--fa: "\e4c9";
}
.fa-pump-medical {
--fa: "\e06a";
}
.fa-fingerprint {
--fa: "\f577";
}
.fa-hand-point-right {
--fa: "\f0a4";
}
.fa-magnifying-glass-location {
--fa: "\f689";
}
.fa-search-location {
--fa: "\f689";
}
.fa-forward-step {
--fa: "\f051";
}
.fa-step-forward {
--fa: "\f051";
}
.fa-face-smile-beam {
--fa: "\f5b8";
}
.fa-smile-beam {
--fa: "\f5b8";
}
.fa-flag-checkered {
--fa: "\f11e";
}
.fa-football {
--fa: "\f44e";
}
.fa-football-ball {
--fa: "\f44e";
}
.fa-school-circle-exclamation {
--fa: "\e56c";
}
.fa-crop {
--fa: "\f125";
}
.fa-angles-down {
--fa: "\f103";
}
.fa-angle-double-down {
--fa: "\f103";
}
.fa-users-rectangle {
--fa: "\e594";
}
.fa-people-roof {
--fa: "\e537";
}
.fa-people-line {
--fa: "\e534";
}
.fa-beer-mug-empty {
--fa: "\f0fc";
}
.fa-beer {
--fa: "\f0fc";
}
.fa-diagram-predecessor {
--fa: "\e477";
}
.fa-arrow-up-long {
--fa: "\f176";
}
.fa-long-arrow-up {
--fa: "\f176";
}
.fa-fire-flame-simple {
--fa: "\f46a";
}
.fa-burn {
--fa: "\f46a";
}
.fa-person {
--fa: "\f183";
}
.fa-male {
--fa: "\f183";
}
.fa-laptop {
--fa: "\f109";
}
.fa-file-csv {
--fa: "\f6dd";
}
.fa-menorah {
--fa: "\f676";
}
.fa-truck-plane {
--fa: "\e58f";
}
.fa-record-vinyl {
--fa: "\f8d9";
}
.fa-face-grin-stars {
--fa: "\f587";
}
.fa-grin-stars {
--fa: "\f587";
}
.fa-bong {
--fa: "\f55c";
}
.fa-spaghetti-monster-flying {
--fa: "\f67b";
}
.fa-pastafarianism {
--fa: "\f67b";
}
.fa-arrow-down-up-across-line {
--fa: "\e4af";
}
.fa-spoon {
--fa: "\f2e5";
}
.fa-utensil-spoon {
--fa: "\f2e5";
}
.fa-jar-wheat {
--fa: "\e517";
}
.fa-envelopes-bulk {
--fa: "\f674";
}
.fa-mail-bulk {
--fa: "\f674";
}
.fa-file-circle-exclamation {
--fa: "\e4eb";
}
.fa-circle-h {
--fa: "\f47e";
}
.fa-hospital-symbol {
--fa: "\f47e";
}
.fa-pager {
--fa: "\f815";
}
.fa-address-book {
--fa: "\f2b9";
}
.fa-contact-book {
--fa: "\f2b9";
}
.fa-strikethrough {
--fa: "\f0cc";
}
.fa-k {
--fa: "\4b";
}
.fa-landmark-flag {
--fa: "\e51c";
}
.fa-pencil {
--fa: "\f303";
}
.fa-pencil-alt {
--fa: "\f303";
}
.fa-backward {
--fa: "\f04a";
}
.fa-caret-right {
--fa: "\f0da";
}
.fa-comments {
--fa: "\f086";
}
.fa-paste {
--fa: "\f0ea";
}
.fa-file-clipboard {
--fa: "\f0ea";
}
.fa-code-pull-request {
--fa: "\e13c";
}
.fa-clipboard-list {
--fa: "\f46d";
}
.fa-truck-ramp-box {
--fa: "\f4de";
}
.fa-truck-loading {
--fa: "\f4de";
}
.fa-user-check {
--fa: "\f4fc";
}
.fa-vial-virus {
--fa: "\e597";
}
.fa-sheet-plastic {
--fa: "\e571";
}
.fa-blog {
--fa: "\f781";
}
.fa-user-ninja {
--fa: "\f504";
}
.fa-person-arrow-up-from-line {
--fa: "\e539";
}
.fa-scroll-torah {
--fa: "\f6a0";
}
.fa-torah {
--fa: "\f6a0";
}
.fa-broom-ball {
--fa: "\f458";
}
.fa-quidditch {
--fa: "\f458";
}
.fa-quidditch-broom-ball {
--fa: "\f458";
}
.fa-toggle-off {
--fa: "\f204";
}
.fa-box-archive {
--fa: "\f187";
}
.fa-archive {
--fa: "\f187";
}
.fa-person-drowning {
--fa: "\e545";
}
.fa-arrow-down-9-1 {
--fa: "\f886";
}
.fa-sort-numeric-desc {
--fa: "\f886";
}
.fa-sort-numeric-down-alt {
--fa: "\f886";
}
.fa-face-grin-tongue-squint {
--fa: "\f58a";
}
.fa-grin-tongue-squint {
--fa: "\f58a";
}
.fa-spray-can {
--fa: "\f5bd";
}
.fa-truck-monster {
--fa: "\f63b";
}
.fa-w {
--fa: "\57";
}
.fa-earth-africa {
--fa: "\f57c";
}
.fa-globe-africa {
--fa: "\f57c";
}
.fa-rainbow {
--fa: "\f75b";
}
.fa-circle-notch {
--fa: "\f1ce";
}
.fa-tablet-screen-button {
--fa: "\f3fa";
}
.fa-tablet-alt {
--fa: "\f3fa";
}
.fa-paw {
--fa: "\f1b0";
}
.fa-cloud {
--fa: "\f0c2";
}
.fa-trowel-bricks {
--fa: "\e58a";
}
.fa-face-flushed {
--fa: "\f579";
}
.fa-flushed {
--fa: "\f579";
}
.fa-hospital-user {
--fa: "\f80d";
}
.fa-tent-arrow-left-right {
--fa: "\e57f";
}
.fa-gavel {
--fa: "\f0e3";
}
.fa-legal {
--fa: "\f0e3";
}
.fa-binoculars {
--fa: "\f1e5";
}
.fa-microphone-slash {
--fa: "\f131";
}
.fa-box-tissue {
--fa: "\e05b";
}
.fa-motorcycle {
--fa: "\f21c";
}
.fa-bell-concierge {
--fa: "\f562";
}
.fa-concierge-bell {
--fa: "\f562";
}
.fa-pen-ruler {
--fa: "\f5ae";
}
.fa-pencil-ruler {
--fa: "\f5ae";
}
.fa-people-arrows {
--fa: "\e068";
}
.fa-people-arrows-left-right {
--fa: "\e068";
}
.fa-mars-and-venus-burst {
--fa: "\e523";
}
.fa-square-caret-right {
--fa: "\f152";
}
.fa-caret-square-right {
--fa: "\f152";
}
.fa-scissors {
--fa: "\f0c4";
}
.fa-cut {
--fa: "\f0c4";
}
.fa-sun-plant-wilt {
--fa: "\e57a";
}
.fa-toilets-portable {
--fa: "\e584";
}
.fa-hockey-puck {
--fa: "\f453";
}
.fa-table {
--fa: "\f0ce";
}
.fa-magnifying-glass-arrow-right {
--fa: "\e521";
}
.fa-tachograph-digital {
--fa: "\f566";
}
.fa-digital-tachograph {
--fa: "\f566";
}
.fa-users-slash {
--fa: "\e073";
}
.fa-clover {
--fa: "\e139";
}
.fa-reply {
--fa: "\f3e5";
}
.fa-mail-reply {
--fa: "\f3e5";
}
.fa-star-and-crescent {
--fa: "\f699";
}
.fa-house-fire {
--fa: "\e50c";
}
.fa-square-minus {
--fa: "\f146";
}
.fa-minus-square {
--fa: "\f146";
}
.fa-helicopter {
--fa: "\f533";
}
.fa-compass {
--fa: "\f14e";
}
.fa-square-caret-down {
--fa: "\f150";
}
.fa-caret-square-down {
--fa: "\f150";
}
.fa-file-circle-question {
--fa: "\e4ef";
}
.fa-laptop-code {
--fa: "\f5fc";
}
.fa-swatchbook {
--fa: "\f5c3";
}
.fa-prescription-bottle {
--fa: "\f485";
}
.fa-bars {
--fa: "\f0c9";
}
.fa-navicon {
--fa: "\f0c9";
}
.fa-people-group {
--fa: "\e533";
}
.fa-hourglass-end {
--fa: "\f253";
}
.fa-hourglass-3 {
--fa: "\f253";
}
.fa-heart-crack {
--fa: "\f7a9";
}
.fa-heart-broken {
--fa: "\f7a9";
}
.fa-square-up-right {
--fa: "\f360";
}
.fa-external-link-square-alt {
--fa: "\f360";
}
.fa-face-kiss-beam {
--fa: "\f597";
}
.fa-kiss-beam {
--fa: "\f597";
}
.fa-film {
--fa: "\f008";
}
.fa-ruler-horizontal {
--fa: "\f547";
}
.fa-people-robbery {
--fa: "\e536";
}
.fa-lightbulb {
--fa: "\f0eb";
}
.fa-caret-left {
--fa: "\f0d9";
}
.fa-circle-exclamation {
--fa: "\f06a";
}
.fa-exclamation-circle {
--fa: "\f06a";
}
.fa-school-circle-xmark {
--fa: "\e56d";
}
.fa-arrow-right-from-bracket {
--fa: "\f08b";
}
.fa-sign-out {
--fa: "\f08b";
}
.fa-circle-chevron-down {
--fa: "\f13a";
}
.fa-chevron-circle-down {
--fa: "\f13a";
}
.fa-unlock-keyhole {
--fa: "\f13e";
}
.fa-unlock-alt {
--fa: "\f13e";
}
.fa-cloud-showers-heavy {
--fa: "\f740";
}
.fa-headphones-simple {
--fa: "\f58f";
}
.fa-headphones-alt {
--fa: "\f58f";
}
.fa-sitemap {
--fa: "\f0e8";
}
.fa-circle-dollar-to-slot {
--fa: "\f4b9";
}
.fa-donate {
--fa: "\f4b9";
}
.fa-memory {
--fa: "\f538";
}
.fa-road-spikes {
--fa: "\e568";
}
.fa-fire-burner {
--fa: "\e4f1";
}
.fa-flag {
--fa: "\f024";
}
.fa-hanukiah {
--fa: "\f6e6";
}
.fa-feather {
--fa: "\f52d";
}
.fa-volume-low {
--fa: "\f027";
}
.fa-volume-down {
--fa: "\f027";
}
.fa-comment-slash {
--fa: "\f4b3";
}
.fa-cloud-sun-rain {
--fa: "\f743";
}
.fa-compress {
--fa: "\f066";
}
.fa-wheat-awn {
--fa: "\e2cd";
}
.fa-wheat-alt {
--fa: "\e2cd";
}
.fa-ankh {
--fa: "\f644";
}
.fa-hands-holding-child {
--fa: "\e4fa";
}
.fa-asterisk {
--fa: "\2a";
}
.fa-square-check {
--fa: "\f14a";
}
.fa-check-square {
--fa: "\f14a";
}
.fa-peseta-sign {
--fa: "\e221";
}
.fa-heading {
--fa: "\f1dc";
}
.fa-header {
--fa: "\f1dc";
}
.fa-ghost {
--fa: "\f6e2";
}
.fa-list {
--fa: "\f03a";
}
.fa-list-squares {
--fa: "\f03a";
}
.fa-square-phone-flip {
--fa: "\f87b";
}
.fa-phone-square-alt {
--fa: "\f87b";
}
.fa-cart-plus {
--fa: "\f217";
}
.fa-gamepad {
--fa: "\f11b";
}
.fa-circle-dot {
--fa: "\f192";
}
.fa-dot-circle {
--fa: "\f192";
}
.fa-face-dizzy {
--fa: "\f567";
}
.fa-dizzy {
--fa: "\f567";
}
.fa-egg {
--fa: "\f7fb";
}
.fa-house-medical-circle-xmark {
--fa: "\e513";
}
.fa-campground {
--fa: "\f6bb";
}
.fa-folder-plus {
--fa: "\f65e";
}
.fa-futbol {
--fa: "\f1e3";
}
.fa-futbol-ball {
--fa: "\f1e3";
}
.fa-soccer-ball {
--fa: "\f1e3";
}
.fa-paintbrush {
--fa: "\f1fc";
}
.fa-paint-brush {
--fa: "\f1fc";
}
.fa-lock {
--fa: "\f023";
}
.fa-gas-pump {
--fa: "\f52f";
}
.fa-hot-tub-person {
--fa: "\f593";
}
.fa-hot-tub {
--fa: "\f593";
}
.fa-map-location {
--fa: "\f59f";
}
.fa-map-marked {
--fa: "\f59f";
}
.fa-house-flood-water {
--fa: "\e50e";
}
.fa-tree {
--fa: "\f1bb";
}
.fa-bridge-lock {
--fa: "\e4cc";
}
.fa-sack-dollar {
--fa: "\f81d";
}
.fa-pen-to-square {
--fa: "\f044";
}
.fa-edit {
--fa: "\f044";
}
.fa-car-side {
--fa: "\f5e4";
}
.fa-share-nodes {
--fa: "\f1e0";
}
.fa-share-alt {
--fa: "\f1e0";
}
.fa-heart-circle-minus {
--fa: "\e4ff";
}
.fa-hourglass-half {
--fa: "\f252";
}
.fa-hourglass-2 {
--fa: "\f252";
}
.fa-microscope {
--fa: "\f610";
}
.fa-sink {
--fa: "\e06d";
}
.fa-bag-shopping {
--fa: "\f290";
}
.fa-shopping-bag {
--fa: "\f290";
}
.fa-arrow-down-z-a {
--fa: "\f881";
}
.fa-sort-alpha-desc {
--fa: "\f881";
}
.fa-sort-alpha-down-alt {
--fa: "\f881";
}
.fa-mitten {
--fa: "\f7b5";
}
.fa-person-rays {
--fa: "\e54d";
}
.fa-users {
--fa: "\f0c0";
}
.fa-eye-slash {
--fa: "\f070";
}
.fa-flask-vial {
--fa: "\e4f3";
}
.fa-hand {
--fa: "\f256";
}
.fa-hand-paper {
--fa: "\f256";
}
.fa-om {
--fa: "\f679";
}
.fa-worm {
--fa: "\e599";
}
.fa-house-circle-xmark {
--fa: "\e50b";
}
.fa-plug {
--fa: "\f1e6";
}
.fa-chevron-up {
--fa: "\f077";
}
.fa-hand-spock {
--fa: "\f259";
}
.fa-stopwatch {
--fa: "\f2f2";
}
.fa-face-kiss {
--fa: "\f596";
}
.fa-kiss {
--fa: "\f596";
}
.fa-bridge-circle-xmark {
--fa: "\e4cb";
}
.fa-face-grin-tongue {
--fa: "\f589";
}
.fa-grin-tongue {
--fa: "\f589";
}
.fa-chess-bishop {
--fa: "\f43a";
}
.fa-face-grin-wink {
--fa: "\f58c";
}
.fa-grin-wink {
--fa: "\f58c";
}
.fa-ear-deaf {
--fa: "\f2a4";
}
.fa-deaf {
--fa: "\f2a4";
}
.fa-deafness {
--fa: "\f2a4";
}
.fa-hard-of-hearing {
--fa: "\f2a4";
}
.fa-road-circle-check {
--fa: "\e564";
}
.fa-dice-five {
--fa: "\f523";
}
.fa-square-rss {
--fa: "\f143";
}
.fa-rss-square {
--fa: "\f143";
}
.fa-land-mine-on {
--fa: "\e51b";
}
.fa-i-cursor {
--fa: "\f246";
}
.fa-stamp {
--fa: "\f5bf";
}
.fa-stairs {
--fa: "\e289";
}
.fa-i {
--fa: "\49";
}
.fa-hryvnia-sign {
--fa: "\f6f2";
}
.fa-hryvnia {
--fa: "\f6f2";
}
.fa-pills {
--fa: "\f484";
}
.fa-face-grin-wide {
--fa: "\f581";
}
.fa-grin-alt {
--fa: "\f581";
}
.fa-tooth {
--fa: "\f5c9";
}
.fa-v {
--fa: "\56";
}
.fa-bangladeshi-taka-sign {
--fa: "\e2e6";
}
.fa-bicycle {
--fa: "\f206";
}
.fa-staff-snake {
--fa: "\e579";
}
.fa-rod-asclepius {
--fa: "\e579";
}
.fa-rod-snake {
--fa: "\e579";
}
.fa-staff-aesculapius {
--fa: "\e579";
}
.fa-head-side-cough-slash {
--fa: "\e062";
}
.fa-truck-medical {
--fa: "\f0f9";
}
.fa-ambulance {
--fa: "\f0f9";
}
.fa-wheat-awn-circle-exclamation {
--fa: "\e598";
}
.fa-snowman {
--fa: "\f7d0";
}
.fa-mortar-pestle {
--fa: "\f5a7";
}
.fa-road-barrier {
--fa: "\e562";
}
.fa-school {
--fa: "\f549";
}
.fa-igloo {
--fa: "\f7ae";
}
.fa-joint {
--fa: "\f595";
}
.fa-angle-right {
--fa: "\f105";
}
.fa-horse {
--fa: "\f6f0";
}
.fa-q {
--fa: "\51";
}
.fa-g {
--fa: "\47";
}
.fa-notes-medical {
--fa: "\f481";
}
.fa-temperature-half {
--fa: "\f2c9";
}
.fa-temperature-2 {
--fa: "\f2c9";
}
.fa-thermometer-2 {
--fa: "\f2c9";
}
.fa-thermometer-half {
--fa: "\f2c9";
}
.fa-dong-sign {
--fa: "\e169";
}
.fa-capsules {
--fa: "\f46b";
}
.fa-poo-storm {
--fa: "\f75a";
}
.fa-poo-bolt {
--fa: "\f75a";
}
.fa-face-frown-open {
--fa: "\f57a";
}
.fa-frown-open {
--fa: "\f57a";
}
.fa-hand-point-up {
--fa: "\f0a6";
}
.fa-money-bill {
--fa: "\f0d6";
}
.fa-bookmark {
--fa: "\f02e";
}
.fa-align-justify {
--fa: "\f039";
}
.fa-umbrella-beach {
--fa: "\f5ca";
}
.fa-helmet-un {
--fa: "\e503";
}
.fa-bullseye {
--fa: "\f140";
}
.fa-bacon {
--fa: "\f7e5";
}
.fa-hand-point-down {
--fa: "\f0a7";
}
.fa-arrow-up-from-bracket {
--fa: "\e09a";
}
.fa-folder {
--fa: "\f07b";
}
.fa-folder-blank {
--fa: "\f07b";
}
.fa-file-waveform {
--fa: "\f478";
}
.fa-file-medical-alt {
--fa: "\f478";
}
.fa-radiation {
--fa: "\f7b9";
}
.fa-chart-simple {
--fa: "\e473";
}
.fa-mars-stroke {
--fa: "\f229";
}
.fa-vial {
--fa: "\f492";
}
.fa-gauge {
--fa: "\f624";
}
.fa-dashboard {
--fa: "\f624";
}
.fa-gauge-med {
--fa: "\f624";
}
.fa-tachometer-alt-average {
--fa: "\f624";
}
.fa-wand-magic-sparkles {
--fa: "\e2ca";
}
.fa-magic-wand-sparkles {
--fa: "\e2ca";
}
.fa-e {
--fa: "\45";
}
.fa-pen-clip {
--fa: "\f305";
}
.fa-pen-alt {
--fa: "\f305";
}
.fa-bridge-circle-exclamation {
--fa: "\e4ca";
}
.fa-user {
--fa: "\f007";
}
.fa-school-circle-check {
--fa: "\e56b";
}
.fa-dumpster {
--fa: "\f793";
}
.fa-van-shuttle {
--fa: "\f5b6";
}
.fa-shuttle-van {
--fa: "\f5b6";
}
.fa-building-user {
--fa: "\e4da";
}
.fa-square-caret-left {
--fa: "\f191";
}
.fa-caret-square-left {
--fa: "\f191";
}
.fa-highlighter {
--fa: "\f591";
}
.fa-key {
--fa: "\f084";
}
.fa-bullhorn {
--fa: "\f0a1";
}
.fa-globe {
--fa: "\f0ac";
}
.fa-synagogue {
--fa: "\f69b";
}
.fa-person-half-dress {
--fa: "\e548";
}
.fa-road-bridge {
--fa: "\e563";
}
.fa-location-arrow {
--fa: "\f124";
}
.fa-c {
--fa: "\43";
}
.fa-tablet-button {
--fa: "\f10a";
}
.fa-building-lock {
--fa: "\e4d6";
}
.fa-pizza-slice {
--fa: "\f818";
}
.fa-money-bill-wave {
--fa: "\f53a";
}
.fa-chart-area {
--fa: "\f1fe";
}
.fa-area-chart {
--fa: "\f1fe";
}
.fa-house-flag {
--fa: "\e50d";
}
.fa-person-circle-minus {
--fa: "\e540";
}
.fa-ban {
--fa: "\f05e";
}
.fa-cancel {
--fa: "\f05e";
}
.fa-camera-rotate {
--fa: "\e0d8";
}
.fa-spray-can-sparkles {
--fa: "\f5d0";
}
.fa-air-freshener {
--fa: "\f5d0";
}
.fa-star {
--fa: "\f005";
}
.fa-repeat {
--fa: "\f363";
}
.fa-cross {
--fa: "\f654";
}
.fa-box {
--fa: "\f466";
}
.fa-venus-mars {
--fa: "\f228";
}
.fa-arrow-pointer {
--fa: "\f245";
}
.fa-mouse-pointer {
--fa: "\f245";
}
.fa-maximize {
--fa: "\f31e";
}
.fa-expand-arrows-alt {
--fa: "\f31e";
}
.fa-charging-station {
--fa: "\f5e7";
}
.fa-shapes {
--fa: "\f61f";
}
.fa-triangle-circle-square {
--fa: "\f61f";
}
.fa-shuffle {
--fa: "\f074";
}
.fa-random {
--fa: "\f074";
}
.fa-person-running {
--fa: "\f70c";
}
.fa-running {
--fa: "\f70c";
}
.fa-mobile-retro {
--fa: "\e527";
}
.fa-grip-lines-vertical {
--fa: "\f7a5";
}
.fa-spider {
--fa: "\f717";
}
.fa-hands-bound {
--fa: "\e4f9";
}
.fa-file-invoice-dollar {
--fa: "\f571";
}
.fa-plane-circle-exclamation {
--fa: "\e556";
}
.fa-x-ray {
--fa: "\f497";
}
.fa-spell-check {
--fa: "\f891";
}
.fa-slash {
--fa: "\f715";
}
.fa-computer-mouse {
--fa: "\f8cc";
}
.fa-mouse {
--fa: "\f8cc";
}
.fa-arrow-right-to-bracket {
--fa: "\f090";
}
.fa-sign-in {
--fa: "\f090";
}
.fa-shop-slash {
--fa: "\e070";
}
.fa-store-alt-slash {
--fa: "\e070";
}
.fa-server {
--fa: "\f233";
}
.fa-virus-covid-slash {
--fa: "\e4a9";
}
.fa-shop-lock {
--fa: "\e4a5";
}
.fa-hourglass-start {
--fa: "\f251";
}
.fa-hourglass-1 {
--fa: "\f251";
}
.fa-blender-phone {
--fa: "\f6b6";
}
.fa-building-wheat {
--fa: "\e4db";
}
.fa-person-breastfeeding {
--fa: "\e53a";
}
.fa-right-to-bracket {
--fa: "\f2f6";
}
.fa-sign-in-alt {
--fa: "\f2f6";
}
.fa-venus {
--fa: "\f221";
}
.fa-passport {
--fa: "\f5ab";
}
.fa-thumbtack-slash {
--fa: "\e68f";
}
.fa-thumb-tack-slash {
--fa: "\e68f";
}
.fa-heart-pulse {
--fa: "\f21e";
}
.fa-heartbeat {
--fa: "\f21e";
}
.fa-people-carry-box {
--fa: "\f4ce";
}
.fa-people-carry {
--fa: "\f4ce";
}
.fa-temperature-high {
--fa: "\f769";
}
.fa-microchip {
--fa: "\f2db";
}
.fa-crown {
--fa: "\f521";
}
.fa-weight-hanging {
--fa: "\f5cd";
}
.fa-xmarks-lines {
--fa: "\e59a";
}
.fa-file-prescription {
--fa: "\f572";
}
.fa-weight-scale {
--fa: "\f496";
}
.fa-weight {
--fa: "\f496";
}
.fa-user-group {
--fa: "\f500";
}
.fa-user-friends {
--fa: "\f500";
}
.fa-arrow-up-a-z {
--fa: "\f15e";
}
.fa-sort-alpha-up {
--fa: "\f15e";
}
.fa-chess-knight {
--fa: "\f441";
}
.fa-face-laugh-squint {
--fa: "\f59b";
}
.fa-laugh-squint {
--fa: "\f59b";
}
.fa-wheelchair {
--fa: "\f193";
}
.fa-circle-arrow-up {
--fa: "\f0aa";
}
.fa-arrow-circle-up {
--fa: "\f0aa";
}
.fa-toggle-on {
--fa: "\f205";
}
.fa-person-walking {
--fa: "\f554";
}
.fa-walking {
--fa: "\f554";
}
.fa-l {
--fa: "\4c";
}
.fa-fire {
--fa: "\f06d";
}
.fa-bed-pulse {
--fa: "\f487";
}
.fa-procedures {
--fa: "\f487";
}
.fa-shuttle-space {
--fa: "\f197";
}
.fa-space-shuttle {
--fa: "\f197";
}
.fa-face-laugh {
--fa: "\f599";
}
.fa-laugh {
--fa: "\f599";
}
.fa-folder-open {
--fa: "\f07c";
}
.fa-heart-circle-plus {
--fa: "\e500";
}
.fa-code-fork {
--fa: "\e13b";
}
.fa-city {
--fa: "\f64f";
}
.fa-microphone-lines {
--fa: "\f3c9";
}
.fa-microphone-alt {
--fa: "\f3c9";
}
.fa-pepper-hot {
--fa: "\f816";
}
.fa-unlock {
--fa: "\f09c";
}
.fa-colon-sign {
--fa: "\e140";
}
.fa-headset {
--fa: "\f590";
}
.fa-store-slash {
--fa: "\e071";
}
.fa-road-circle-xmark {
--fa: "\e566";
}
.fa-user-minus {
--fa: "\f503";
}
.fa-mars-stroke-up {
--fa: "\f22a";
}
.fa-mars-stroke-v {
--fa: "\f22a";
}
.fa-champagne-glasses {
--fa: "\f79f";
}
.fa-glass-cheers {
--fa: "\f79f";
}
.fa-clipboard {
--fa: "\f328";
}
.fa-house-circle-exclamation {
--fa: "\e50a";
}
.fa-file-arrow-up {
--fa: "\f574";
}
.fa-file-upload {
--fa: "\f574";
}
.fa-wifi {
--fa: "\f1eb";
}
.fa-wifi-3 {
--fa: "\f1eb";
}
.fa-wifi-strong {
--fa: "\f1eb";
}
.fa-bath {
--fa: "\f2cd";
}
.fa-bathtub {
--fa: "\f2cd";
}
.fa-underline {
--fa: "\f0cd";
}
.fa-user-pen {
--fa: "\f4ff";
}
.fa-user-edit {
--fa: "\f4ff";
}
.fa-signature {
--fa: "\f5b7";
}
.fa-stroopwafel {
--fa: "\f551";
}
.fa-bold {
--fa: "\f032";
}
.fa-anchor-lock {
--fa: "\e4ad";
}
.fa-building-ngo {
--fa: "\e4d7";
}
.fa-manat-sign {
--fa: "\e1d5";
}
.fa-not-equal {
--fa: "\f53e";
}
.fa-border-top-left {
--fa: "\f853";
}
.fa-border-style {
--fa: "\f853";
}
.fa-map-location-dot {
--fa: "\f5a0";
}
.fa-map-marked-alt {
--fa: "\f5a0";
}
.fa-jedi {
--fa: "\f669";
}
.fa-square-poll-vertical {
--fa: "\f681";
}
.fa-poll {
--fa: "\f681";
}
.fa-mug-hot {
--fa: "\f7b6";
}
.fa-car-battery {
--fa: "\f5df";
}
.fa-battery-car {
--fa: "\f5df";
}
.fa-gift {
--fa: "\f06b";
}
.fa-dice-two {
--fa: "\f528";
}
.fa-chess-queen {
--fa: "\f445";
}
.fa-glasses {
--fa: "\f530";
}
.fa-chess-board {
--fa: "\f43c";
}
.fa-building-circle-check {
--fa: "\e4d2";
}
.fa-person-chalkboard {
--fa: "\e53d";
}
.fa-mars-stroke-right {
--fa: "\f22b";
}
.fa-mars-stroke-h {
--fa: "\f22b";
}
.fa-hand-back-fist {
--fa: "\f255";
}
.fa-hand-rock {
--fa: "\f255";
}
.fa-square-caret-up {
--fa: "\f151";
}
.fa-caret-square-up {
--fa: "\f151";
}
.fa-cloud-showers-water {
--fa: "\e4e4";
}
.fa-chart-bar {
--fa: "\f080";
}
.fa-bar-chart {
--fa: "\f080";
}
.fa-hands-bubbles {
--fa: "\e05e";
}
.fa-hands-wash {
--fa: "\e05e";
}
.fa-less-than-equal {
--fa: "\f537";
}
.fa-train {
--fa: "\f238";
}
.fa-eye-low-vision {
--fa: "\f2a8";
}
.fa-low-vision {
--fa: "\f2a8";
}
.fa-crow {
--fa: "\f520";
}
.fa-sailboat {
--fa: "\e445";
}
.fa-window-restore {
--fa: "\f2d2";
}
.fa-square-plus {
--fa: "\f0fe";
}
.fa-plus-square {
--fa: "\f0fe";
}
.fa-torii-gate {
--fa: "\f6a1";
}
.fa-frog {
--fa: "\f52e";
}
.fa-bucket {
--fa: "\e4cf";
}
.fa-image {
--fa: "\f03e";
}
.fa-microphone {
--fa: "\f130";
}
.fa-cow {
--fa: "\f6c8";
}
.fa-caret-up {
--fa: "\f0d8";
}
.fa-screwdriver {
--fa: "\f54a";
}
.fa-folder-closed {
--fa: "\e185";
}
.fa-house-tsunami {
--fa: "\e515";
}
.fa-square-nfi {
--fa: "\e576";
}
.fa-arrow-up-from-ground-water {
--fa: "\e4b5";
}
.fa-martini-glass {
--fa: "\f57b";
}
.fa-glass-martini-alt {
--fa: "\f57b";
}
.fa-square-binary {
--fa: "\e69b";
}
.fa-rotate-left {
--fa: "\f2ea";
}
.fa-rotate-back {
--fa: "\f2ea";
}
.fa-rotate-backward {
--fa: "\f2ea";
}
.fa-undo-alt {
--fa: "\f2ea";
}
.fa-table-columns {
--fa: "\f0db";
}
.fa-columns {
--fa: "\f0db";
}
.fa-lemon {
--fa: "\f094";
}
.fa-head-side-mask {
--fa: "\e063";
}
.fa-handshake {
--fa: "\f2b5";
}
.fa-gem {
--fa: "\f3a5";
}
.fa-dolly {
--fa: "\f472";
}
.fa-dolly-box {
--fa: "\f472";
}
.fa-smoking {
--fa: "\f48d";
}
.fa-minimize {
--fa: "\f78c";
}
.fa-compress-arrows-alt {
--fa: "\f78c";
}
.fa-monument {
--fa: "\f5a6";
}
.fa-snowplow {
--fa: "\f7d2";
}
.fa-angles-right {
--fa: "\f101";
}
.fa-angle-double-right {
--fa: "\f101";
}
.fa-cannabis {
--fa: "\f55f";
}
.fa-circle-play {
--fa: "\f144";
}
.fa-play-circle {
--fa: "\f144";
}
.fa-tablets {
--fa: "\f490";
}
.fa-ethernet {
--fa: "\f796";
}
.fa-euro-sign {
--fa: "\f153";
}
.fa-eur {
--fa: "\f153";
}
.fa-euro {
--fa: "\f153";
}
.fa-chair {
--fa: "\f6c0";
}
.fa-circle-check {
--fa: "\f058";
}
.fa-check-circle {
--fa: "\f058";
}
.fa-circle-stop {
--fa: "\f28d";
}
.fa-stop-circle {
--fa: "\f28d";
}
.fa-compass-drafting {
--fa: "\f568";
}
.fa-drafting-compass {
--fa: "\f568";
}
.fa-plate-wheat {
--fa: "\e55a";
}
.fa-icicles {
--fa: "\f7ad";
}
.fa-person-shelter {
--fa: "\e54f";
}
.fa-neuter {
--fa: "\f22c";
}
.fa-id-badge {
--fa: "\f2c1";
}
.fa-marker {
--fa: "\f5a1";
}
.fa-face-laugh-beam {
--fa: "\f59a";
}
.fa-laugh-beam {
--fa: "\f59a";
}
.fa-helicopter-symbol {
--fa: "\e502";
}
.fa-universal-access {
--fa: "\f29a";
}
.fa-circle-chevron-up {
--fa: "\f139";
}
.fa-chevron-circle-up {
--fa: "\f139";
}
.fa-lari-sign {
--fa: "\e1c8";
}
.fa-volcano {
--fa: "\f770";
}
.fa-person-walking-dashed-line-arrow-right {
--fa: "\e553";
}
.fa-sterling-sign {
--fa: "\f154";
}
.fa-gbp {
--fa: "\f154";
}
.fa-pound-sign {
--fa: "\f154";
}
.fa-viruses {
--fa: "\e076";
}
.fa-square-person-confined {
--fa: "\e577";
}
.fa-user-tie {
--fa: "\f508";
}
.fa-arrow-down-long {
--fa: "\f175";
}
.fa-long-arrow-down {
--fa: "\f175";
}
.fa-tent-arrow-down-to-line {
--fa: "\e57e";
}
.fa-certificate {
--fa: "\f0a3";
}
.fa-reply-all {
--fa: "\f122";
}
.fa-mail-reply-all {
--fa: "\f122";
}
.fa-suitcase {
--fa: "\f0f2";
}
.fa-person-skating {
--fa: "\f7c5";
}
.fa-skating {
--fa: "\f7c5";
}
.fa-filter-circle-dollar {
--fa: "\f662";
}
.fa-funnel-dollar {
--fa: "\f662";
}
.fa-camera-retro {
--fa: "\f083";
}
.fa-circle-arrow-down {
--fa: "\f0ab";
}
.fa-arrow-circle-down {
--fa: "\f0ab";
}
.fa-file-import {
--fa: "\f56f";
}
.fa-arrow-right-to-file {
--fa: "\f56f";
}
.fa-square-arrow-up-right {
--fa: "\f14c";
}
.fa-external-link-square {
--fa: "\f14c";
}
.fa-box-open {
--fa: "\f49e";
}
.fa-scroll {
--fa: "\f70e";
}
.fa-spa {
--fa: "\f5bb";
}
.fa-location-pin-lock {
--fa: "\e51f";
}
.fa-pause {
--fa: "\f04c";
}
.fa-hill-avalanche {
--fa: "\e507";
}
.fa-temperature-empty {
--fa: "\f2cb";
}
.fa-temperature-0 {
--fa: "\f2cb";
}
.fa-thermometer-0 {
--fa: "\f2cb";
}
.fa-thermometer-empty {
--fa: "\f2cb";
}
.fa-bomb {
--fa: "\f1e2";
}
.fa-registered {
--fa: "\f25d";
}
.fa-address-card {
--fa: "\f2bb";
}
.fa-contact-card {
--fa: "\f2bb";
}
.fa-vcard {
--fa: "\f2bb";
}
.fa-scale-unbalanced-flip {
--fa: "\f516";
}
.fa-balance-scale-right {
--fa: "\f516";
}
.fa-subscript {
--fa: "\f12c";
}
.fa-diamond-turn-right {
--fa: "\f5eb";
}
.fa-directions {
--fa: "\f5eb";
}
.fa-burst {
--fa: "\e4dc";
}
.fa-house-laptop {
--fa: "\e066";
}
.fa-laptop-house {
--fa: "\e066";
}
.fa-face-tired {
--fa: "\f5c8";
}
.fa-tired {
--fa: "\f5c8";
}
.fa-money-bills {
--fa: "\e1f3";
}
.fa-smog {
--fa: "\f75f";
}
.fa-crutch {
--fa: "\f7f7";
}
.fa-cloud-arrow-up {
--fa: "\f0ee";
}
.fa-cloud-upload {
--fa: "\f0ee";
}
.fa-cloud-upload-alt {
--fa: "\f0ee";
}
.fa-palette {
--fa: "\f53f";
}
.fa-arrows-turn-right {
--fa: "\e4c0";
}
.fa-vest {
--fa: "\e085";
}
.fa-ferry {
--fa: "\e4ea";
}
.fa-arrows-down-to-people {
--fa: "\e4b9";
}
.fa-seedling {
--fa: "\f4d8";
}
.fa-sprout {
--fa: "\f4d8";
}
.fa-left-right {
--fa: "\f337";
}
.fa-arrows-alt-h {
--fa: "\f337";
}
.fa-boxes-packing {
--fa: "\e4c7";
}
.fa-circle-arrow-left {
--fa: "\f0a8";
}
.fa-arrow-circle-left {
--fa: "\f0a8";
}
.fa-group-arrows-rotate {
--fa: "\e4f6";
}
.fa-bowl-food {
--fa: "\e4c6";
}
.fa-candy-cane {
--fa: "\f786";
}
.fa-arrow-down-wide-short {
--fa: "\f160";
}
.fa-sort-amount-asc {
--fa: "\f160";
}
.fa-sort-amount-down {
--fa: "\f160";
}
.fa-cloud-bolt {
--fa: "\f76c";
}
.fa-thunderstorm {
--fa: "\f76c";
}
.fa-text-slash {
--fa: "\f87d";
}
.fa-remove-format {
--fa: "\f87d";
}
.fa-face-smile-wink {
--fa: "\f4da";
}
.fa-smile-wink {
--fa: "\f4da";
}
.fa-file-word {
--fa: "\f1c2";
}
.fa-file-powerpoint {
--fa: "\f1c4";
}
.fa-arrows-left-right {
--fa: "\f07e";
}
.fa-arrows-h {
--fa: "\f07e";
}
.fa-house-lock {
--fa: "\e510";
}
.fa-cloud-arrow-down {
--fa: "\f0ed";
}
.fa-cloud-download {
--fa: "\f0ed";
}
.fa-cloud-download-alt {
--fa: "\f0ed";
}
.fa-children {
--fa: "\e4e1";
}
.fa-chalkboard {
--fa: "\f51b";
}
.fa-blackboard {
--fa: "\f51b";
}
.fa-user-large-slash {
--fa: "\f4fa";
}
.fa-user-alt-slash {
--fa: "\f4fa";
}
.fa-envelope-open {
--fa: "\f2b6";
}
.fa-handshake-simple-slash {
--fa: "\e05f";
}
.fa-handshake-alt-slash {
--fa: "\e05f";
}
.fa-mattress-pillow {
--fa: "\e525";
}
.fa-guarani-sign {
--fa: "\e19a";
}
.fa-arrows-rotate {
--fa: "\f021";
}
.fa-refresh {
--fa: "\f021";
}
.fa-sync {
--fa: "\f021";
}
.fa-fire-extinguisher {
--fa: "\f134";
}
.fa-cruzeiro-sign {
--fa: "\e152";
}
.fa-greater-than-equal {
--fa: "\f532";
}
.fa-shield-halved {
--fa: "\f3ed";
}
.fa-shield-alt {
--fa: "\f3ed";
}
.fa-book-atlas {
--fa: "\f558";
}
.fa-atlas {
--fa: "\f558";
}
.fa-virus {
--fa: "\e074";
}
.fa-envelope-circle-check {
--fa: "\e4e8";
}
.fa-layer-group {
--fa: "\f5fd";
}
.fa-arrows-to-dot {
--fa: "\e4be";
}
.fa-archway {
--fa: "\f557";
}
.fa-heart-circle-check {
--fa: "\e4fd";
}
.fa-house-chimney-crack {
--fa: "\f6f1";
}
.fa-house-damage {
--fa: "\f6f1";
}
.fa-file-zipper {
--fa: "\f1c6";
}
.fa-file-archive {
--fa: "\f1c6";
}
.fa-square {
--fa: "\f0c8";
}
.fa-martini-glass-empty {
--fa: "\f000";
}
.fa-glass-martini {
--fa: "\f000";
}
.fa-couch {
--fa: "\f4b8";
}
.fa-cedi-sign {
--fa: "\e0df";
}
.fa-italic {
--fa: "\f033";
}
.fa-table-cells-column-lock {
--fa: "\e678";
}
.fa-church {
--fa: "\f51d";
}
.fa-comments-dollar {
--fa: "\f653";
}
.fa-democrat {
--fa: "\f747";
}
.fa-z {
--fa: "\5a";
}
.fa-person-skiing {
--fa: "\f7c9";
}
.fa-skiing {
--fa: "\f7c9";
}
.fa-road-lock {
--fa: "\e567";
}
.fa-a {
--fa: "\41";
}
.fa-temperature-arrow-down {
--fa: "\e03f";
}
.fa-temperature-down {
--fa: "\e03f";
}
.fa-feather-pointed {
--fa: "\f56b";
}
.fa-feather-alt {
--fa: "\f56b";
}
.fa-p {
--fa: "\50";
}
.fa-snowflake {
--fa: "\f2dc";
}
.fa-newspaper {
--fa: "\f1ea";
}
.fa-rectangle-ad {
--fa: "\f641";
}
.fa-ad {
--fa: "\f641";
}
.fa-circle-arrow-right {
--fa: "\f0a9";
}
.fa-arrow-circle-right {
--fa: "\f0a9";
}
.fa-filter-circle-xmark {
--fa: "\e17b";
}
.fa-locust {
--fa: "\e520";
}
.fa-sort {
--fa: "\f0dc";
}
.fa-unsorted {
--fa: "\f0dc";
}
.fa-list-ol {
--fa: "\f0cb";
}
.fa-list-1-2 {
--fa: "\f0cb";
}
.fa-list-numeric {
--fa: "\f0cb";
}
.fa-person-dress-burst {
--fa: "\e544";
}
.fa-money-check-dollar {
--fa: "\f53d";
}
.fa-money-check-alt {
--fa: "\f53d";
}
.fa-vector-square {
--fa: "\f5cb";
}
.fa-bread-slice {
--fa: "\f7ec";
}
.fa-language {
--fa: "\f1ab";
}
.fa-face-kiss-wink-heart {
--fa: "\f598";
}
.fa-kiss-wink-heart {
--fa: "\f598";
}
.fa-filter {
--fa: "\f0b0";
}
.fa-question {
--fa: "\3f";
}
.fa-file-signature {
--fa: "\f573";
}
.fa-up-down-left-right {
--fa: "\f0b2";
}
.fa-arrows-alt {
--fa: "\f0b2";
}
.fa-house-chimney-user {
--fa: "\e065";
}
.fa-hand-holding-heart {
--fa: "\f4be";
}
.fa-puzzle-piece {
--fa: "\f12e";
}
.fa-money-check {
--fa: "\f53c";
}
.fa-star-half-stroke {
--fa: "\f5c0";
}
.fa-star-half-alt {
--fa: "\f5c0";
}
.fa-code {
--fa: "\f121";
}
.fa-whiskey-glass {
--fa: "\f7a0";
}
.fa-glass-whiskey {
--fa: "\f7a0";
}
.fa-building-circle-exclamation {
--fa: "\e4d3";
}
.fa-magnifying-glass-chart {
--fa: "\e522";
}
.fa-arrow-up-right-from-square {
--fa: "\f08e";
}
.fa-external-link {
--fa: "\f08e";
}
.fa-cubes-stacked {
--fa: "\e4e6";
}
.fa-won-sign {
--fa: "\f159";
}
.fa-krw {
--fa: "\f159";
}
.fa-won {
--fa: "\f159";
}
.fa-virus-covid {
--fa: "\e4a8";
}
.fa-austral-sign {
--fa: "\e0a9";
}
.fa-f {
--fa: "\46";
}
.fa-leaf {
--fa: "\f06c";
}
.fa-road {
--fa: "\f018";
}
.fa-taxi {
--fa: "\f1ba";
}
.fa-cab {
--fa: "\f1ba";
}
.fa-person-circle-plus {
--fa: "\e541";
}
.fa-chart-pie {
--fa: "\f200";
}
.fa-pie-chart {
--fa: "\f200";
}
.fa-bolt-lightning {
--fa: "\e0b7";
}
.fa-sack-xmark {
--fa: "\e56a";
}
.fa-file-excel {
--fa: "\f1c3";
}
.fa-file-contract {
--fa: "\f56c";
}
.fa-fish-fins {
--fa: "\e4f2";
}
.fa-building-flag {
--fa: "\e4d5";
}
.fa-face-grin-beam {
--fa: "\f582";
}
.fa-grin-beam {
--fa: "\f582";
}
.fa-object-ungroup {
--fa: "\f248";
}
.fa-poop {
--fa: "\f619";
}
.fa-location-pin {
--fa: "\f041";
}
.fa-map-marker {
--fa: "\f041";
}
.fa-kaaba {
--fa: "\f66b";
}
.fa-toilet-paper {
--fa: "\f71e";
}
.fa-helmet-safety {
--fa: "\f807";
}
.fa-hard-hat {
--fa: "\f807";
}
.fa-hat-hard {
--fa: "\f807";
}
.fa-eject {
--fa: "\f052";
}
.fa-circle-right {
--fa: "\f35a";
}
.fa-arrow-alt-circle-right {
--fa: "\f35a";
}
.fa-plane-circle-check {
--fa: "\e555";
}
.fa-face-rolling-eyes {
--fa: "\f5a5";
}
.fa-meh-rolling-eyes {
--fa: "\f5a5";
}
.fa-object-group {
--fa: "\f247";
}
.fa-chart-line {
--fa: "\f201";
}
.fa-line-chart {
--fa: "\f201";
}
.fa-mask-ventilator {
--fa: "\e524";
}
.fa-arrow-right {
--fa: "\f061";
}
.fa-signs-post {
--fa: "\f277";
}
.fa-map-signs {
--fa: "\f277";
}
.fa-cash-register {
--fa: "\f788";
}
.fa-person-circle-question {
--fa: "\e542";
}
.fa-h {
--fa: "\48";
}
.fa-tarp {
--fa: "\e57b";
}
.fa-screwdriver-wrench {
--fa: "\f7d9";
}
.fa-tools {
--fa: "\f7d9";
}
.fa-arrows-to-eye {
--fa: "\e4bf";
}
.fa-plug-circle-bolt {
--fa: "\e55b";
}
.fa-heart {
--fa: "\f004";
}
.fa-mars-and-venus {
--fa: "\f224";
}
.fa-house-user {
--fa: "\e1b0";
}
.fa-home-user {
--fa: "\e1b0";
}
.fa-dumpster-fire {
--fa: "\f794";
}
.fa-house-crack {
--fa: "\e3b1";
}
.fa-martini-glass-citrus {
--fa: "\f561";
}
.fa-cocktail {
--fa: "\f561";
}
.fa-face-surprise {
--fa: "\f5c2";
}
.fa-surprise {
--fa: "\f5c2";
}
.fa-bottle-water {
--fa: "\e4c5";
}
.fa-circle-pause {
--fa: "\f28b";
}
.fa-pause-circle {
--fa: "\f28b";
}
.fa-toilet-paper-slash {
--fa: "\e072";
}
.fa-apple-whole {
--fa: "\f5d1";
}
.fa-apple-alt {
--fa: "\f5d1";
}
.fa-kitchen-set {
--fa: "\e51a";
}
.fa-r {
--fa: "\52";
}
.fa-temperature-quarter {
--fa: "\f2ca";
}
.fa-temperature-1 {
--fa: "\f2ca";
}
.fa-thermometer-1 {
--fa: "\f2ca";
}
.fa-thermometer-quarter {
--fa: "\f2ca";
}
.fa-cube {
--fa: "\f1b2";
}
.fa-bitcoin-sign {
--fa: "\e0b4";
}
.fa-shield-dog {
--fa: "\e573";
}
.fa-solar-panel {
--fa: "\f5ba";
}
.fa-lock-open {
--fa: "\f3c1";
}
.fa-elevator {
--fa: "\e16d";
}
.fa-money-bill-transfer {
--fa: "\e528";
}
.fa-money-bill-trend-up {
--fa: "\e529";
}
.fa-house-flood-water-circle-arrow-right {
--fa: "\e50f";
}
.fa-square-poll-horizontal {
--fa: "\f682";
}
.fa-poll-h {
--fa: "\f682";
}
.fa-circle {
--fa: "\f111";
}
.fa-backward-fast {
--fa: "\f049";
}
.fa-fast-backward {
--fa: "\f049";
}
.fa-recycle {
--fa: "\f1b8";
}
.fa-user-astronaut {
--fa: "\f4fb";
}
.fa-plane-slash {
--fa: "\e069";
}
.fa-trademark {
--fa: "\f25c";
}
.fa-basketball {
--fa: "\f434";
}
.fa-basketball-ball {
--fa: "\f434";
}
.fa-satellite-dish {
--fa: "\f7c0";
}
.fa-circle-up {
--fa: "\f35b";
}
.fa-arrow-alt-circle-up {
--fa: "\f35b";
}
.fa-mobile-screen-button {
--fa: "\f3cd";
}
.fa-mobile-alt {
--fa: "\f3cd";
}
.fa-volume-high {
--fa: "\f028";
}
.fa-volume-up {
--fa: "\f028";
}
.fa-users-rays {
--fa: "\e593";
}
.fa-wallet {
--fa: "\f555";
}
.fa-clipboard-check {
--fa: "\f46c";
}
.fa-file-audio {
--fa: "\f1c7";
}
.fa-burger {
--fa: "\f805";
}
.fa-hamburger {
--fa: "\f805";
}
.fa-wrench {
--fa: "\f0ad";
}
.fa-bugs {
--fa: "\e4d0";
}
.fa-rupee-sign {
--fa: "\f156";
}
.fa-rupee {
--fa: "\f156";
}
.fa-file-image {
--fa: "\f1c5";
}
.fa-circle-question {
--fa: "\f059";
}
.fa-question-circle {
--fa: "\f059";
}
.fa-plane-departure {
--fa: "\f5b0";
}
.fa-handshake-slash {
--fa: "\e060";
}
.fa-book-bookmark {
--fa: "\e0bb";
}
.fa-code-branch {
--fa: "\f126";
}
.fa-hat-cowboy {
--fa: "\f8c0";
}
.fa-bridge {
--fa: "\e4c8";
}
.fa-phone-flip {
--fa: "\f879";
}
.fa-phone-alt {
--fa: "\f879";
}
.fa-truck-front {
--fa: "\e2b7";
}
.fa-cat {
--fa: "\f6be";
}
.fa-anchor-circle-exclamation {
--fa: "\e4ab";
}
.fa-truck-field {
--fa: "\e58d";
}
.fa-route {
--fa: "\f4d7";
}
.fa-clipboard-question {
--fa: "\e4e3";
}
.fa-panorama {
--fa: "\e209";
}
.fa-comment-medical {
--fa: "\f7f5";
}
.fa-teeth-open {
--fa: "\f62f";
}
.fa-file-circle-minus {
--fa: "\e4ed";
}
.fa-tags {
--fa: "\f02c";
}
.fa-wine-glass {
--fa: "\f4e3";
}
.fa-forward-fast {
--fa: "\f050";
}
.fa-fast-forward {
--fa: "\f050";
}
.fa-face-meh-blank {
--fa: "\f5a4";
}
.fa-meh-blank {
--fa: "\f5a4";
}
.fa-square-parking {
--fa: "\f540";
}
.fa-parking {
--fa: "\f540";
}
.fa-house-signal {
--fa: "\e012";
}
.fa-bars-progress {
--fa: "\f828";
}
.fa-tasks-alt {
--fa: "\f828";
}
.fa-faucet-drip {
--fa: "\e006";
}
.fa-cart-flatbed {
--fa: "\f474";
}
.fa-dolly-flatbed {
--fa: "\f474";
}
.fa-ban-smoking {
--fa: "\f54d";
}
.fa-smoking-ban {
--fa: "\f54d";
}
.fa-terminal {
--fa: "\f120";
}
.fa-mobile-button {
--fa: "\f10b";
}
.fa-house-medical-flag {
--fa: "\e514";
}
.fa-basket-shopping {
--fa: "\f291";
}
.fa-shopping-basket {
--fa: "\f291";
}
.fa-tape {
--fa: "\f4db";
}
.fa-bus-simple {
--fa: "\f55e";
}
.fa-bus-alt {
--fa: "\f55e";
}
.fa-eye {
--fa: "\f06e";
}
.fa-face-sad-cry {
--fa: "\f5b3";
}
.fa-sad-cry {
--fa: "\f5b3";
}
.fa-audio-description {
--fa: "\f29e";
}
.fa-person-military-to-person {
--fa: "\e54c";
}
.fa-file-shield {
--fa: "\e4f0";
}
.fa-user-slash {
--fa: "\f506";
}
.fa-pen {
--fa: "\f304";
}
.fa-tower-observation {
--fa: "\e586";
}
.fa-file-code {
--fa: "\f1c9";
}
.fa-signal {
--fa: "\f012";
}
.fa-signal-5 {
--fa: "\f012";
}
.fa-signal-perfect {
--fa: "\f012";
}
.fa-bus {
--fa: "\f207";
}
.fa-heart-circle-xmark {
--fa: "\e501";
}
.fa-house-chimney {
--fa: "\e3af";
}
.fa-home-lg {
--fa: "\e3af";
}
.fa-window-maximize {
--fa: "\f2d0";
}
.fa-face-frown {
--fa: "\f119";
}
.fa-frown {
--fa: "\f119";
}
.fa-prescription {
--fa: "\f5b1";
}
.fa-shop {
--fa: "\f54f";
}
.fa-store-alt {
--fa: "\f54f";
}
.fa-floppy-disk {
--fa: "\f0c7";
}
.fa-save {
--fa: "\f0c7";
}
.fa-vihara {
--fa: "\f6a7";
}
.fa-scale-unbalanced {
--fa: "\f515";
}
.fa-balance-scale-left {
--fa: "\f515";
}
.fa-sort-up {
--fa: "\f0de";
}
.fa-sort-asc {
--fa: "\f0de";
}
.fa-comment-dots {
--fa: "\f4ad";
}
.fa-commenting {
--fa: "\f4ad";
}
.fa-plant-wilt {
--fa: "\e5aa";
}
.fa-diamond {
--fa: "\f219";
}
.fa-face-grin-squint {
--fa: "\f585";
}
.fa-grin-squint {
--fa: "\f585";
}
.fa-hand-holding-dollar {
--fa: "\f4c0";
}
.fa-hand-holding-usd {
--fa: "\f4c0";
}
.fa-chart-diagram {
--fa: "\e695";
}
.fa-bacterium {
--fa: "\e05a";
}
.fa-hand-pointer {
--fa: "\f25a";
}
.fa-drum-steelpan {
--fa: "\f56a";
}
.fa-hand-scissors {
--fa: "\f257";
}
.fa-hands-praying {
--fa: "\f684";
}
.fa-praying-hands {
--fa: "\f684";
}
.fa-arrow-rotate-right {
--fa: "\f01e";
}
.fa-arrow-right-rotate {
--fa: "\f01e";
}
.fa-arrow-rotate-forward {
--fa: "\f01e";
}
.fa-redo {
--fa: "\f01e";
}
.fa-biohazard {
--fa: "\f780";
}
.fa-location-crosshairs {
--fa: "\f601";
}
.fa-location {
--fa: "\f601";
}
.fa-mars-double {
--fa: "\f227";
}
.fa-child-dress {
--fa: "\e59c";
}
.fa-users-between-lines {
--fa: "\e591";
}
.fa-lungs-virus {
--fa: "\e067";
}
.fa-face-grin-tears {
--fa: "\f588";
}
.fa-grin-tears {
--fa: "\f588";
}
.fa-phone {
--fa: "\f095";
}
.fa-calendar-xmark {
--fa: "\f273";
}
.fa-calendar-times {
--fa: "\f273";
}
.fa-child-reaching {
--fa: "\e59d";
}
.fa-head-side-virus {
--fa: "\e064";
}
.fa-user-gear {
--fa: "\f4fe";
}
.fa-user-cog {
--fa: "\f4fe";
}
.fa-arrow-up-1-9 {
--fa: "\f163";
}
.fa-sort-numeric-up {
--fa: "\f163";
}
.fa-door-closed {
--fa: "\f52a";
}
.fa-shield-virus {
--fa: "\e06c";
}
.fa-dice-six {
--fa: "\f526";
}
.fa-mosquito-net {
--fa: "\e52c";
}
.fa-file-fragment {
--fa: "\e697";
}
.fa-bridge-water {
--fa: "\e4ce";
}
.fa-person-booth {
--fa: "\f756";
}
.fa-text-width {
--fa: "\f035";
}
.fa-hat-wizard {
--fa: "\f6e8";
}
.fa-pen-fancy {
--fa: "\f5ac";
}
.fa-person-digging {
--fa: "\f85e";
}
.fa-digging {
--fa: "\f85e";
}
.fa-trash {
--fa: "\f1f8";
}
.fa-gauge-simple {
--fa: "\f629";
}
.fa-gauge-simple-med {
--fa: "\f629";
}
.fa-tachometer-average {
--fa: "\f629";
}
.fa-book-medical {
--fa: "\f7e6";
}
.fa-poo {
--fa: "\f2fe";
}
.fa-quote-right {
--fa: "\f10e";
}
.fa-quote-right-alt {
--fa: "\f10e";
}
.fa-shirt {
--fa: "\f553";
}
.fa-t-shirt {
--fa: "\f553";
}
.fa-tshirt {
--fa: "\f553";
}
.fa-cubes {
--fa: "\f1b3";
}
.fa-divide {
--fa: "\f529";
}
.fa-tenge-sign {
--fa: "\f7d7";
}
.fa-tenge {
--fa: "\f7d7";
}
.fa-headphones {
--fa: "\f025";
}
.fa-hands-holding {
--fa: "\f4c2";
}
.fa-hands-clapping {
--fa: "\e1a8";
}
.fa-republican {
--fa: "\f75e";
}
.fa-arrow-left {
--fa: "\f060";
}
.fa-person-circle-xmark {
--fa: "\e543";
}
.fa-ruler {
--fa: "\f545";
}
.fa-align-left {
--fa: "\f036";
}
.fa-dice-d6 {
--fa: "\f6d1";
}
.fa-restroom {
--fa: "\f7bd";
}
.fa-j {
--fa: "\4a";
}
.fa-users-viewfinder {
--fa: "\e595";
}
.fa-file-video {
--fa: "\f1c8";
}
.fa-up-right-from-square {
--fa: "\f35d";
}
.fa-external-link-alt {
--fa: "\f35d";
}
.fa-table-cells {
--fa: "\f00a";
}
.fa-th {
--fa: "\f00a";
}
.fa-file-pdf {
--fa: "\f1c1";
}
.fa-book-bible {
--fa: "\f647";
}
.fa-bible {
--fa: "\f647";
}
.fa-o {
--fa: "\4f";
}
.fa-suitcase-medical {
--fa: "\f0fa";
}
.fa-medkit {
--fa: "\f0fa";
}
.fa-user-secret {
--fa: "\f21b";
}
.fa-otter {
--fa: "\f700";
}
.fa-person-dress {
--fa: "\f182";
}
.fa-female {
--fa: "\f182";
}
.fa-comment-dollar {
--fa: "\f651";
}
.fa-business-time {
--fa: "\f64a";
}
.fa-briefcase-clock {
--fa: "\f64a";
}
.fa-table-cells-large {
--fa: "\f009";
}
.fa-th-large {
--fa: "\f009";
}
.fa-book-tanakh {
--fa: "\f827";
}
.fa-tanakh {
--fa: "\f827";
}
.fa-phone-volume {
--fa: "\f2a0";
}
.fa-volume-control-phone {
--fa: "\f2a0";
}
.fa-hat-cowboy-side {
--fa: "\f8c1";
}
.fa-clipboard-user {
--fa: "\f7f3";
}
.fa-child {
--fa: "\f1ae";
}
.fa-lira-sign {
--fa: "\f195";
}
.fa-satellite {
--fa: "\f7bf";
}
.fa-plane-lock {
--fa: "\e558";
}
.fa-tag {
--fa: "\f02b";
}
.fa-comment {
--fa: "\f075";
}
.fa-cake-candles {
--fa: "\f1fd";
}
.fa-birthday-cake {
--fa: "\f1fd";
}
.fa-cake {
--fa: "\f1fd";
}
.fa-envelope {
--fa: "\f0e0";
}
.fa-angles-up {
--fa: "\f102";
}
.fa-angle-double-up {
--fa: "\f102";
}
.fa-paperclip {
--fa: "\f0c6";
}
.fa-arrow-right-to-city {
--fa: "\e4b3";
}
.fa-ribbon {
--fa: "\f4d6";
}
.fa-lungs {
--fa: "\f604";
}
.fa-arrow-up-9-1 {
--fa: "\f887";
}
.fa-sort-numeric-up-alt {
--fa: "\f887";
}
.fa-litecoin-sign {
--fa: "\e1d3";
}
.fa-border-none {
--fa: "\f850";
}
.fa-circle-nodes {
--fa: "\e4e2";
}
.fa-parachute-box {
--fa: "\f4cd";
}
.fa-indent {
--fa: "\f03c";
}
.fa-truck-field-un {
--fa: "\e58e";
}
.fa-hourglass {
--fa: "\f254";
}
.fa-hourglass-empty {
--fa: "\f254";
}
.fa-mountain {
--fa: "\f6fc";
}
.fa-user-doctor {
--fa: "\f0f0";
}
.fa-user-md {
--fa: "\f0f0";
}
.fa-circle-info {
--fa: "\f05a";
}
.fa-info-circle {
--fa: "\f05a";
}
.fa-cloud-meatball {
--fa: "\f73b";
}
.fa-camera {
--fa: "\f030";
}
.fa-camera-alt {
--fa: "\f030";
}
.fa-square-virus {
--fa: "\e578";
}
.fa-meteor {
--fa: "\f753";
}
.fa-car-on {
--fa: "\e4dd";
}
.fa-sleigh {
--fa: "\f7cc";
}
.fa-arrow-down-1-9 {
--fa: "\f162";
}
.fa-sort-numeric-asc {
--fa: "\f162";
}
.fa-sort-numeric-down {
--fa: "\f162";
}
.fa-hand-holding-droplet {
--fa: "\f4c1";
}
.fa-hand-holding-water {
--fa: "\f4c1";
}
.fa-water {
--fa: "\f773";
}
.fa-calendar-check {
--fa: "\f274";
}
.fa-braille {
--fa: "\f2a1";
}
.fa-prescription-bottle-medical {
--fa: "\f486";
}
.fa-prescription-bottle-alt {
--fa: "\f486";
}
.fa-landmark {
--fa: "\f66f";
}
.fa-truck {
--fa: "\f0d1";
}
.fa-crosshairs {
--fa: "\f05b";
}
.fa-person-cane {
--fa: "\e53c";
}
.fa-tent {
--fa: "\e57d";
}
.fa-vest-patches {
--fa: "\e086";
}
.fa-check-double {
--fa: "\f560";
}
.fa-arrow-down-a-z {
--fa: "\f15d";
}
.fa-sort-alpha-asc {
--fa: "\f15d";
}
.fa-sort-alpha-down {
--fa: "\f15d";
}
.fa-money-bill-wheat {
--fa: "\e52a";
}
.fa-cookie {
--fa: "\f563";
}
.fa-arrow-rotate-left {
--fa: "\f0e2";
}
.fa-arrow-left-rotate {
--fa: "\f0e2";
}
.fa-arrow-rotate-back {
--fa: "\f0e2";
}
.fa-arrow-rotate-backward {
--fa: "\f0e2";
}
.fa-undo {
--fa: "\f0e2";
}
.fa-hard-drive {
--fa: "\f0a0";
}
.fa-hdd {
--fa: "\f0a0";
}
.fa-face-grin-squint-tears {
--fa: "\f586";
}
.fa-grin-squint-tears {
--fa: "\f586";
}
.fa-dumbbell {
--fa: "\f44b";
}
.fa-rectangle-list {
--fa: "\f022";
}
.fa-list-alt {
--fa: "\f022";
}
.fa-tarp-droplet {
--fa: "\e57c";
}
.fa-house-medical-circle-check {
--fa: "\e511";
}
.fa-person-skiing-nordic {
--fa: "\f7ca";
}
.fa-skiing-nordic {
--fa: "\f7ca";
}
.fa-calendar-plus {
--fa: "\f271";
}
.fa-plane-arrival {
--fa: "\f5af";
}
.fa-circle-left {
--fa: "\f359";
}
.fa-arrow-alt-circle-left {
--fa: "\f359";
}
.fa-train-subway {
--fa: "\f239";
}
.fa-subway {
--fa: "\f239";
}
.fa-chart-gantt {
--fa: "\e0e4";
}
.fa-indian-rupee-sign {
--fa: "\e1bc";
}
.fa-indian-rupee {
--fa: "\e1bc";
}
.fa-inr {
--fa: "\e1bc";
}
.fa-crop-simple {
--fa: "\f565";
}
.fa-crop-alt {
--fa: "\f565";
}
.fa-money-bill-1 {
--fa: "\f3d1";
}
.fa-money-bill-alt {
--fa: "\f3d1";
}
.fa-left-long {
--fa: "\f30a";
}
.fa-long-arrow-alt-left {
--fa: "\f30a";
}
.fa-dna {
--fa: "\f471";
}
.fa-virus-slash {
--fa: "\e075";
}
.fa-minus {
--fa: "\f068";
}
.fa-subtract {
--fa: "\f068";
}
.fa-chess {
--fa: "\f439";
}
.fa-arrow-left-long {
--fa: "\f177";
}
.fa-long-arrow-left {
--fa: "\f177";
}
.fa-plug-circle-check {
--fa: "\e55c";
}
.fa-street-view {
--fa: "\f21d";
}
.fa-franc-sign {
--fa: "\e18f";
}
.fa-volume-off {
--fa: "\f026";
}
.fa-hands-asl-interpreting {
--fa: "\f2a3";
}
.fa-american-sign-language-interpreting {
--fa: "\f2a3";
}
.fa-asl-interpreting {
--fa: "\f2a3";
}
.fa-hands-american-sign-language-interpreting {
--fa: "\f2a3";
}
.fa-gear {
--fa: "\f013";
}
.fa-cog {
--fa: "\f013";
}
.fa-droplet-slash {
--fa: "\f5c7";
}
.fa-tint-slash {
--fa: "\f5c7";
}
.fa-mosque {
--fa: "\f678";
}
.fa-mosquito {
--fa: "\e52b";
}
.fa-star-of-david {
--fa: "\f69a";
}
.fa-person-military-rifle {
--fa: "\e54b";
}
.fa-cart-shopping {
--fa: "\f07a";
}
.fa-shopping-cart {
--fa: "\f07a";
}
.fa-vials {
--fa: "\f493";
}
.fa-plug-circle-plus {
--fa: "\e55f";
}
.fa-place-of-worship {
--fa: "\f67f";
}
.fa-grip-vertical {
--fa: "\f58e";
}
.fa-hexagon-nodes {
--fa: "\e699";
}
.fa-arrow-turn-up {
--fa: "\f148";
}
.fa-level-up {
--fa: "\f148";
}
.fa-u {
--fa: "\55";
}
.fa-square-root-variable {
--fa: "\f698";
}
.fa-square-root-alt {
--fa: "\f698";
}
.fa-clock {
--fa: "\f017";
}
.fa-clock-four {
--fa: "\f017";
}
.fa-backward-step {
--fa: "\f048";
}
.fa-step-backward {
--fa: "\f048";
}
.fa-pallet {
--fa: "\f482";
}
.fa-faucet {
--fa: "\e005";
}
.fa-baseball-bat-ball {
--fa: "\f432";
}
.fa-s {
--fa: "\53";
}
.fa-timeline {
--fa: "\e29c";
}
.fa-keyboard {
--fa: "\f11c";
}
.fa-caret-down {
--fa: "\f0d7";
}
.fa-house-chimney-medical {
--fa: "\f7f2";
}
.fa-clinic-medical {
--fa: "\f7f2";
}
.fa-temperature-three-quarters {
--fa: "\f2c8";
}
.fa-temperature-3 {
--fa: "\f2c8";
}
.fa-thermometer-3 {
--fa: "\f2c8";
}
.fa-thermometer-three-quarters {
--fa: "\f2c8";
}
.fa-mobile-screen {
--fa: "\f3cf";
}
.fa-mobile-android-alt {
--fa: "\f3cf";
}
.fa-plane-up {
--fa: "\e22d";
}
.fa-piggy-bank {
--fa: "\f4d3";
}
.fa-battery-half {
--fa: "\f242";
}
.fa-battery-3 {
--fa: "\f242";
}
.fa-mountain-city {
--fa: "\e52e";
}
.fa-coins {
--fa: "\f51e";
}
.fa-khanda {
--fa: "\f66d";
}
.fa-sliders {
--fa: "\f1de";
}
.fa-sliders-h {
--fa: "\f1de";
}
.fa-folder-tree {
--fa: "\f802";
}
.fa-network-wired {
--fa: "\f6ff";
}
.fa-map-pin {
--fa: "\f276";
}
.fa-hamsa {
--fa: "\f665";
}
.fa-cent-sign {
--fa: "\e3f5";
}
.fa-flask {
--fa: "\f0c3";
}
.fa-person-pregnant {
--fa: "\e31e";
}
.fa-wand-sparkles {
--fa: "\f72b";
}
.fa-ellipsis-vertical {
--fa: "\f142";
}
.fa-ellipsis-v {
--fa: "\f142";
}
.fa-ticket {
--fa: "\f145";
}
.fa-power-off {
--fa: "\f011";
}
.fa-right-long {
--fa: "\f30b";
}
.fa-long-arrow-alt-right {
--fa: "\f30b";
}
.fa-flag-usa {
--fa: "\f74d";
}
.fa-laptop-file {
--fa: "\e51d";
}
.fa-tty {
--fa: "\f1e4";
}
.fa-teletype {
--fa: "\f1e4";
}
.fa-diagram-next {
--fa: "\e476";
}
.fa-person-rifle {
--fa: "\e54e";
}
.fa-house-medical-circle-exclamation {
--fa: "\e512";
}
.fa-closed-captioning {
--fa: "\f20a";
}
.fa-person-hiking {
--fa: "\f6ec";
}
.fa-hiking {
--fa: "\f6ec";
}
.fa-venus-double {
--fa: "\f226";
}
.fa-images {
--fa: "\f302";
}
.fa-calculator {
--fa: "\f1ec";
}
.fa-people-pulling {
--fa: "\e535";
}
.fa-n {
--fa: "\4e";
}
.fa-cable-car {
--fa: "\f7da";
}
.fa-tram {
--fa: "\f7da";
}
.fa-cloud-rain {
--fa: "\f73d";
}
.fa-building-circle-xmark {
--fa: "\e4d4";
}
.fa-ship {
--fa: "\f21a";
}
.fa-arrows-down-to-line {
--fa: "\e4b8";
}
.fa-download {
--fa: "\f019";
}
.fa-face-grin {
--fa: "\f580";
}
.fa-grin {
--fa: "\f580";
}
.fa-delete-left {
--fa: "\f55a";
}
.fa-backspace {
--fa: "\f55a";
}
.fa-eye-dropper {
--fa: "\f1fb";
}
.fa-eye-dropper-empty {
--fa: "\f1fb";
}
.fa-eyedropper {
--fa: "\f1fb";
}
.fa-file-circle-check {
--fa: "\e5a0";
}
.fa-forward {
--fa: "\f04e";
}
.fa-mobile {
--fa: "\f3ce";
}
.fa-mobile-android {
--fa: "\f3ce";
}
.fa-mobile-phone {
--fa: "\f3ce";
}
.fa-face-meh {
--fa: "\f11a";
}
.fa-meh {
--fa: "\f11a";
}
.fa-align-center {
--fa: "\f037";
}
.fa-book-skull {
--fa: "\f6b7";
}
.fa-book-dead {
--fa: "\f6b7";
}
.fa-id-card {
--fa: "\f2c2";
}
.fa-drivers-license {
--fa: "\f2c2";
}
.fa-outdent {
--fa: "\f03b";
}
.fa-dedent {
--fa: "\f03b";
}
.fa-heart-circle-exclamation {
--fa: "\e4fe";
}
.fa-house {
--fa: "\f015";
}
.fa-home {
--fa: "\f015";
}
.fa-home-alt {
--fa: "\f015";
}
.fa-home-lg-alt {
--fa: "\f015";
}
.fa-calendar-week {
--fa: "\f784";
}
.fa-laptop-medical {
--fa: "\f812";
}
.fa-b {
--fa: "\42";
}
.fa-file-medical {
--fa: "\f477";
}
.fa-dice-one {
--fa: "\f525";
}
.fa-kiwi-bird {
--fa: "\f535";
}
.fa-arrow-right-arrow-left {
--fa: "\f0ec";
}
.fa-exchange {
--fa: "\f0ec";
}
.fa-rotate-right {
--fa: "\f2f9";
}
.fa-redo-alt {
--fa: "\f2f9";
}
.fa-rotate-forward {
--fa: "\f2f9";
}
.fa-utensils {
--fa: "\f2e7";
}
.fa-cutlery {
--fa: "\f2e7";
}
.fa-arrow-up-wide-short {
--fa: "\f161";
}
.fa-sort-amount-up {
--fa: "\f161";
}
.fa-mill-sign {
--fa: "\e1ed";
}
.fa-bowl-rice {
--fa: "\e2eb";
}
.fa-skull {
--fa: "\f54c";
}
.fa-tower-broadcast {
--fa: "\f519";
}
.fa-broadcast-tower {
--fa: "\f519";
}
.fa-truck-pickup {
--fa: "\f63c";
}
.fa-up-long {
--fa: "\f30c";
}
.fa-long-arrow-alt-up {
--fa: "\f30c";
}
.fa-stop {
--fa: "\f04d";
}
.fa-code-merge {
--fa: "\f387";
}
.fa-upload {
--fa: "\f093";
}
.fa-hurricane {
--fa: "\f751";
}
.fa-mound {
--fa: "\e52d";
}
.fa-toilet-portable {
--fa: "\e583";
}
.fa-compact-disc {
--fa: "\f51f";
}
.fa-file-arrow-down {
--fa: "\f56d";
}
.fa-file-download {
--fa: "\f56d";
}
.fa-caravan {
--fa: "\f8ff";
}
.fa-shield-cat {
--fa: "\e572";
}
.fa-bolt {
--fa: "\f0e7";
}
.fa-zap {
--fa: "\f0e7";
}
.fa-glass-water {
--fa: "\e4f4";
}
.fa-oil-well {
--fa: "\e532";
}
.fa-vault {
--fa: "\e2c5";
}
.fa-mars {
--fa: "\f222";
}
.fa-toilet {
--fa: "\f7d8";
}
.fa-plane-circle-xmark {
--fa: "\e557";
}
.fa-yen-sign {
--fa: "\f157";
}
.fa-cny {
--fa: "\f157";
}
.fa-jpy {
--fa: "\f157";
}
.fa-rmb {
--fa: "\f157";
}
.fa-yen {
--fa: "\f157";
}
.fa-ruble-sign {
--fa: "\f158";
}
.fa-rouble {
--fa: "\f158";
}
.fa-rub {
--fa: "\f158";
}
.fa-ruble {
--fa: "\f158";
}
.fa-sun {
--fa: "\f185";
}
.fa-guitar {
--fa: "\f7a6";
}
.fa-face-laugh-wink {
--fa: "\f59c";
}
.fa-laugh-wink {
--fa: "\f59c";
}
.fa-horse-head {
--fa: "\f7ab";
}
.fa-bore-hole {
--fa: "\e4c3";
}
.fa-industry {
--fa: "\f275";
}
.fa-circle-down {
--fa: "\f358";
}
.fa-arrow-alt-circle-down {
--fa: "\f358";
}
.fa-arrows-turn-to-dots {
--fa: "\e4c1";
}
.fa-florin-sign {
--fa: "\e184";
}
.fa-arrow-down-short-wide {
--fa: "\f884";
}
.fa-sort-amount-desc {
--fa: "\f884";
}
.fa-sort-amount-down-alt {
--fa: "\f884";
}
.fa-less-than {
--fa: "\3c";
}
.fa-angle-down {
--fa: "\f107";
}
.fa-car-tunnel {
--fa: "\e4de";
}
.fa-head-side-cough {
--fa: "\e061";
}
.fa-grip-lines {
--fa: "\f7a4";
}
.fa-thumbs-down {
--fa: "\f165";
}
.fa-user-lock {
--fa: "\f502";
}
.fa-arrow-right-long {
--fa: "\f178";
}
.fa-long-arrow-right {
--fa: "\f178";
}
.fa-anchor-circle-xmark {
--fa: "\e4ac";
}
.fa-ellipsis {
--fa: "\f141";
}
.fa-ellipsis-h {
--fa: "\f141";
}
.fa-chess-pawn {
--fa: "\f443";
}
.fa-kit-medical {
--fa: "\f479";
}
.fa-first-aid {
--fa: "\f479";
}
.fa-person-through-window {
--fa: "\e5a9";
}
.fa-toolbox {
--fa: "\f552";
}
.fa-hands-holding-circle {
--fa: "\e4fb";
}
.fa-bug {
--fa: "\f188";
}
.fa-credit-card {
--fa: "\f09d";
}
.fa-credit-card-alt {
--fa: "\f09d";
}
.fa-car {
--fa: "\f1b9";
}
.fa-automobile {
--fa: "\f1b9";
}
.fa-hand-holding-hand {
--fa: "\e4f7";
}
.fa-book-open-reader {
--fa: "\f5da";
}
.fa-book-reader {
--fa: "\f5da";
}
.fa-mountain-sun {
--fa: "\e52f";
}
.fa-arrows-left-right-to-line {
--fa: "\e4ba";
}
.fa-dice-d20 {
--fa: "\f6cf";
}
.fa-truck-droplet {
--fa: "\e58c";
}
.fa-file-circle-xmark {
--fa: "\e5a1";
}
.fa-temperature-arrow-up {
--fa: "\e040";
}
.fa-temperature-up {
--fa: "\e040";
}
.fa-medal {
--fa: "\f5a2";
}
.fa-bed {
--fa: "\f236";
}
.fa-square-h {
--fa: "\f0fd";
}
.fa-h-square {
--fa: "\f0fd";
}
.fa-podcast {
--fa: "\f2ce";
}
.fa-temperature-full {
--fa: "\f2c7";
}
.fa-temperature-4 {
--fa: "\f2c7";
}
.fa-thermometer-4 {
--fa: "\f2c7";
}
.fa-thermometer-full {
--fa: "\f2c7";
}
.fa-bell {
--fa: "\f0f3";
}
.fa-superscript {
--fa: "\f12b";
}
.fa-plug-circle-xmark {
--fa: "\e560";
}
.fa-star-of-life {
--fa: "\f621";
}
.fa-phone-slash {
--fa: "\f3dd";
}
.fa-paint-roller {
--fa: "\f5aa";
}
.fa-handshake-angle {
--fa: "\f4c4";
}
.fa-hands-helping {
--fa: "\f4c4";
}
.fa-location-dot {
--fa: "\f3c5";
}
.fa-map-marker-alt {
--fa: "\f3c5";
}
.fa-file {
--fa: "\f15b";
}
.fa-greater-than {
--fa: "\3e";
}
.fa-person-swimming {
--fa: "\f5c4";
}
.fa-swimmer {
--fa: "\f5c4";
}
.fa-arrow-down {
--fa: "\f063";
}
.fa-droplet {
--fa: "\f043";
}
.fa-tint {
--fa: "\f043";
}
.fa-eraser {
--fa: "\f12d";
}
.fa-earth-americas {
--fa: "\f57d";
}
.fa-earth {
--fa: "\f57d";
}
.fa-earth-america {
--fa: "\f57d";
}
.fa-globe-americas {
--fa: "\f57d";
}
.fa-person-burst {
--fa: "\e53b";
}
.fa-dove {
--fa: "\f4ba";
}
.fa-battery-empty {
--fa: "\f244";
}
.fa-battery-0 {
--fa: "\f244";
}
.fa-socks {
--fa: "\f696";
}
.fa-inbox {
--fa: "\f01c";
}
.fa-section {
--fa: "\e447";
}
.fa-gauge-high {
--fa: "\f625";
}
.fa-tachometer-alt {
--fa: "\f625";
}
.fa-tachometer-alt-fast {
--fa: "\f625";
}
.fa-envelope-open-text {
--fa: "\f658";
}
.fa-hospital {
--fa: "\f0f8";
}
.fa-hospital-alt {
--fa: "\f0f8";
}
.fa-hospital-wide {
--fa: "\f0f8";
}
.fa-wine-bottle {
--fa: "\f72f";
}
.fa-chess-rook {
--fa: "\f447";
}
.fa-bars-staggered {
--fa: "\f550";
}
.fa-reorder {
--fa: "\f550";
}
.fa-stream {
--fa: "\f550";
}
.fa-dharmachakra {
--fa: "\f655";
}
.fa-hotdog {
--fa: "\f80f";
}
.fa-person-walking-with-cane {
--fa: "\f29d";
}
.fa-blind {
--fa: "\f29d";
}
.fa-drum {
--fa: "\f569";
}
.fa-ice-cream {
--fa: "\f810";
}
.fa-heart-circle-bolt {
--fa: "\e4fc";
}
.fa-fax {
--fa: "\f1ac";
}
.fa-paragraph {
--fa: "\f1dd";
}
.fa-check-to-slot {
--fa: "\f772";
}
.fa-vote-yea {
--fa: "\f772";
}
.fa-star-half {
--fa: "\f089";
}
.fa-boxes-stacked {
--fa: "\f468";
}
.fa-boxes {
--fa: "\f468";
}
.fa-boxes-alt {
--fa: "\f468";
}
.fa-link {
--fa: "\f0c1";
}
.fa-chain {
--fa: "\f0c1";
}
.fa-ear-listen {
--fa: "\f2a2";
}
.fa-assistive-listening-systems {
--fa: "\f2a2";
}
.fa-tree-city {
--fa: "\e587";
}
.fa-play {
--fa: "\f04b";
}
.fa-font {
--fa: "\f031";
}
.fa-table-cells-row-lock {
--fa: "\e67a";
}
.fa-rupiah-sign {
--fa: "\e23d";
}
.fa-magnifying-glass {
--fa: "\f002";
}
.fa-search {
--fa: "\f002";
}
.fa-table-tennis-paddle-ball {
--fa: "\f45d";
}
.fa-ping-pong-paddle-ball {
--fa: "\f45d";
}
.fa-table-tennis {
--fa: "\f45d";
}
.fa-person-dots-from-line {
--fa: "\f470";
}
.fa-diagnoses {
--fa: "\f470";
}
.fa-trash-can-arrow-up {
--fa: "\f82a";
}
.fa-trash-restore-alt {
--fa: "\f82a";
}
.fa-naira-sign {
--fa: "\e1f6";
}
.fa-cart-arrow-down {
--fa: "\f218";
}
.fa-walkie-talkie {
--fa: "\f8ef";
}
.fa-file-pen {
--fa: "\f31c";
}
.fa-file-edit {
--fa: "\f31c";
}
.fa-receipt {
--fa: "\f543";
}
.fa-square-pen {
--fa: "\f14b";
}
.fa-pen-square {
--fa: "\f14b";
}
.fa-pencil-square {
--fa: "\f14b";
}
.fa-suitcase-rolling {
--fa: "\f5c1";
}
.fa-person-circle-exclamation {
--fa: "\e53f";
}
.fa-chevron-down {
--fa: "\f078";
}
.fa-battery-full {
--fa: "\f240";
}
.fa-battery {
--fa: "\f240";
}
.fa-battery-5 {
--fa: "\f240";
}
.fa-skull-crossbones {
--fa: "\f714";
}
.fa-code-compare {
--fa: "\e13a";
}
.fa-list-ul {
--fa: "\f0ca";
}
.fa-list-dots {
--fa: "\f0ca";
}
.fa-school-lock {
--fa: "\e56f";
}
.fa-tower-cell {
--fa: "\e585";
}
.fa-down-long {
--fa: "\f309";
}
.fa-long-arrow-alt-down {
--fa: "\f309";
}
.fa-ranking-star {
--fa: "\e561";
}
.fa-chess-king {
--fa: "\f43f";
}
.fa-person-harassing {
--fa: "\e549";
}
.fa-brazilian-real-sign {
--fa: "\e46c";
}
.fa-landmark-dome {
--fa: "\f752";
}
.fa-landmark-alt {
--fa: "\f752";
}
.fa-arrow-up {
--fa: "\f062";
}
.fa-tv {
--fa: "\f26c";
}
.fa-television {
--fa: "\f26c";
}
.fa-tv-alt {
--fa: "\f26c";
}
.fa-shrimp {
--fa: "\e448";
}
.fa-list-check {
--fa: "\f0ae";
}
.fa-tasks {
--fa: "\f0ae";
}
.fa-jug-detergent {
--fa: "\e519";
}
.fa-circle-user {
--fa: "\f2bd";
}
.fa-user-circle {
--fa: "\f2bd";
}
.fa-user-shield {
--fa: "\f505";
}
.fa-wind {
--fa: "\f72e";
}
.fa-car-burst {
--fa: "\f5e1";
}
.fa-car-crash {
--fa: "\f5e1";
}
.fa-y {
--fa: "\59";
}
.fa-person-snowboarding {
--fa: "\f7ce";
}
.fa-snowboarding {
--fa: "\f7ce";
}
.fa-truck-fast {
--fa: "\f48b";
}
.fa-shipping-fast {
--fa: "\f48b";
}
.fa-fish {
--fa: "\f578";
}
.fa-user-graduate {
--fa: "\f501";
}
.fa-circle-half-stroke {
--fa: "\f042";
}
.fa-adjust {
--fa: "\f042";
}
.fa-clapperboard {
--fa: "\e131";
}
.fa-circle-radiation {
--fa: "\f7ba";
}
.fa-radiation-alt {
--fa: "\f7ba";
}
.fa-baseball {
--fa: "\f433";
}
.fa-baseball-ball {
--fa: "\f433";
}
.fa-jet-fighter-up {
--fa: "\e518";
}
.fa-diagram-project {
--fa: "\f542";
}
.fa-project-diagram {
--fa: "\f542";
}
.fa-copy {
--fa: "\f0c5";
}
.fa-volume-xmark {
--fa: "\f6a9";
}
.fa-volume-mute {
--fa: "\f6a9";
}
.fa-volume-times {
--fa: "\f6a9";
}
.fa-hand-sparkles {
--fa: "\e05d";
}
.fa-grip {
--fa: "\f58d";
}
.fa-grip-horizontal {
--fa: "\f58d";
}
.fa-share-from-square {
--fa: "\f14d";
}
.fa-share-square {
--fa: "\f14d";
}
.fa-child-combatant {
--fa: "\e4e0";
}
.fa-child-rifle {
--fa: "\e4e0";
}
.fa-gun {
--fa: "\e19b";
}
.fa-square-phone {
--fa: "\f098";
}
.fa-phone-square {
--fa: "\f098";
}
.fa-plus {
--fa: "\2b";
}
.fa-add {
--fa: "\2b";
}
.fa-expand {
--fa: "\f065";
}
.fa-computer {
--fa: "\e4e5";
}
.fa-xmark {
--fa: "\f00d";
}
.fa-close {
--fa: "\f00d";
}
.fa-multiply {
--fa: "\f00d";
}
.fa-remove {
--fa: "\f00d";
}
.fa-times {
--fa: "\f00d";
}
.fa-arrows-up-down-left-right {
--fa: "\f047";
}
.fa-arrows {
--fa: "\f047";
}
.fa-chalkboard-user {
--fa: "\f51c";
}
.fa-chalkboard-teacher {
--fa: "\f51c";
}
.fa-peso-sign {
--fa: "\e222";
}
.fa-building-shield {
--fa: "\e4d8";
}
.fa-baby {
--fa: "\f77c";
}
.fa-users-line {
--fa: "\e592";
}
.fa-quote-left {
--fa: "\f10d";
}
.fa-quote-left-alt {
--fa: "\f10d";
}
.fa-tractor {
--fa: "\f722";
}
.fa-trash-arrow-up {
--fa: "\f829";
}
.fa-trash-restore {
--fa: "\f829";
}
.fa-arrow-down-up-lock {
--fa: "\e4b0";
}
.fa-lines-leaning {
--fa: "\e51e";
}
.fa-ruler-combined {
--fa: "\f546";
}
.fa-copyright {
--fa: "\f1f9";
}
.fa-equals {
--fa: "\3d";
}
.fa-blender {
--fa: "\f517";
}
.fa-teeth {
--fa: "\f62e";
}
.fa-shekel-sign {
--fa: "\f20b";
}
.fa-ils {
--fa: "\f20b";
}
.fa-shekel {
--fa: "\f20b";
}
.fa-sheqel {
--fa: "\f20b";
}
.fa-sheqel-sign {
--fa: "\f20b";
}
.fa-map {
--fa: "\f279";
}
.fa-rocket {
--fa: "\f135";
}
.fa-photo-film {
--fa: "\f87c";
}
.fa-photo-video {
--fa: "\f87c";
}
.fa-folder-minus {
--fa: "\f65d";
}
.fa-hexagon-nodes-bolt {
--fa: "\e69a";
}
.fa-store {
--fa: "\f54e";
}
.fa-arrow-trend-up {
--fa: "\e098";
}
.fa-plug-circle-minus {
--fa: "\e55e";
}
.fa-sign-hanging {
--fa: "\f4d9";
}
.fa-sign {
--fa: "\f4d9";
}
.fa-bezier-curve {
--fa: "\f55b";
}
.fa-bell-slash {
--fa: "\f1f6";
}
.fa-tablet {
--fa: "\f3fb";
}
.fa-tablet-android {
--fa: "\f3fb";
}
.fa-school-flag {
--fa: "\e56e";
}
.fa-fill {
--fa: "\f575";
}
.fa-angle-up {
--fa: "\f106";
}
.fa-drumstick-bite {
--fa: "\f6d7";
}
.fa-holly-berry {
--fa: "\f7aa";
}
.fa-chevron-left {
--fa: "\f053";
}
.fa-bacteria {
--fa: "\e059";
}
.fa-hand-lizard {
--fa: "\f258";
}
.fa-notdef {
--fa: "\e1fe";
}
.fa-disease {
--fa: "\f7fa";
}
.fa-briefcase-medical {
--fa: "\f469";
}
.fa-genderless {
--fa: "\f22d";
}
.fa-chevron-right {
--fa: "\f054";
}
.fa-retweet {
--fa: "\f079";
}
.fa-car-rear {
--fa: "\f5de";
}
.fa-car-alt {
--fa: "\f5de";
}
.fa-pump-soap {
--fa: "\e06b";
}
.fa-video-slash {
--fa: "\f4e2";
}
.fa-battery-quarter {
--fa: "\f243";
}
.fa-battery-2 {
--fa: "\f243";
}
.fa-radio {
--fa: "\f8d7";
}
.fa-baby-carriage {
--fa: "\f77d";
}
.fa-carriage-baby {
--fa: "\f77d";
}
.fa-traffic-light {
--fa: "\f637";
}
.fa-thermometer {
--fa: "\f491";
}
.fa-vr-cardboard {
--fa: "\f729";
}
.fa-hand-middle-finger {
--fa: "\f806";
}
.fa-percent {
--fa: "\25";
}
.fa-percentage {
--fa: "\25";
}
.fa-truck-moving {
--fa: "\f4df";
}
.fa-glass-water-droplet {
--fa: "\e4f5";
}
.fa-display {
--fa: "\e163";
}
.fa-face-smile {
--fa: "\f118";
}
.fa-smile {
--fa: "\f118";
}
.fa-thumbtack {
--fa: "\f08d";
}
.fa-thumb-tack {
--fa: "\f08d";
}
.fa-trophy {
--fa: "\f091";
}
.fa-person-praying {
--fa: "\f683";
}
.fa-pray {
--fa: "\f683";
}
.fa-hammer {
--fa: "\f6e3";
}
.fa-hand-peace {
--fa: "\f25b";
}
.fa-rotate {
--fa: "\f2f1";
}
.fa-sync-alt {
--fa: "\f2f1";
}
.fa-spinner {
--fa: "\f110";
}
.fa-robot {
--fa: "\f544";
}
.fa-peace {
--fa: "\f67c";
}
.fa-gears {
--fa: "\f085";
}
.fa-cogs {
--fa: "\f085";
}
.fa-warehouse {
--fa: "\f494";
}
.fa-arrow-up-right-dots {
--fa: "\e4b7";
}
.fa-splotch {
--fa: "\f5bc";
}
.fa-face-grin-hearts {
--fa: "\f584";
}
.fa-grin-hearts {
--fa: "\f584";
}
.fa-dice-four {
--fa: "\f524";
}
.fa-sim-card {
--fa: "\f7c4";
}
.fa-transgender {
--fa: "\f225";
}
.fa-transgender-alt {
--fa: "\f225";
}
.fa-mercury {
--fa: "\f223";
}
.fa-arrow-turn-down {
--fa: "\f149";
}
.fa-level-down {
--fa: "\f149";
}
.fa-person-falling-burst {
--fa: "\e547";
}
.fa-award {
--fa: "\f559";
}
.fa-ticket-simple {
--fa: "\f3ff";
}
.fa-ticket-alt {
--fa: "\f3ff";
}
.fa-building {
--fa: "\f1ad";
}
.fa-angles-left {
--fa: "\f100";
}
.fa-angle-double-left {
--fa: "\f100";
}
.fa-qrcode {
--fa: "\f029";
}
.fa-clock-rotate-left {
--fa: "\f1da";
}
.fa-history {
--fa: "\f1da";
}
.fa-face-grin-beam-sweat {
--fa: "\f583";
}
.fa-grin-beam-sweat {
--fa: "\f583";
}
.fa-file-export {
--fa: "\f56e";
}
.fa-arrow-right-from-file {
--fa: "\f56e";
}
.fa-shield {
--fa: "\f132";
}
.fa-shield-blank {
--fa: "\f132";
}
.fa-arrow-up-short-wide {
--fa: "\f885";
}
.fa-sort-amount-up-alt {
--fa: "\f885";
}
.fa-comment-nodes {
--fa: "\e696";
}
.fa-house-medical {
--fa: "\e3b2";
}
.fa-golf-ball-tee {
--fa: "\f450";
}
.fa-golf-ball {
--fa: "\f450";
}
.fa-circle-chevron-left {
--fa: "\f137";
}
.fa-chevron-circle-left {
--fa: "\f137";
}
.fa-house-chimney-window {
--fa: "\e00d";
}
.fa-pen-nib {
--fa: "\f5ad";
}
.fa-tent-arrow-turn-left {
--fa: "\e580";
}
.fa-tents {
--fa: "\e582";
}
.fa-wand-magic {
--fa: "\f0d0";
}
.fa-magic {
--fa: "\f0d0";
}
.fa-dog {
--fa: "\f6d3";
}
.fa-carrot {
--fa: "\f787";
}
.fa-moon {
--fa: "\f186";
}
.fa-wine-glass-empty {
--fa: "\f5ce";
}
.fa-wine-glass-alt {
--fa: "\f5ce";
}
.fa-cheese {
--fa: "\f7ef";
}
.fa-yin-yang {
--fa: "\f6ad";
}
.fa-music {
--fa: "\f001";
}
.fa-code-commit {
--fa: "\f386";
}
.fa-temperature-low {
--fa: "\f76b";
}
.fa-person-biking {
--fa: "\f84a";
}
.fa-biking {
--fa: "\f84a";
}
.fa-broom {
--fa: "\f51a";
}
.fa-shield-heart {
--fa: "\e574";
}
.fa-gopuram {
--fa: "\f664";
}
.fa-earth-oceania {
--fa: "\e47b";
}
.fa-globe-oceania {
--fa: "\e47b";
}
.fa-square-xmark {
--fa: "\f2d3";
}
.fa-times-square {
--fa: "\f2d3";
}
.fa-xmark-square {
--fa: "\f2d3";
}
.fa-hashtag {
--fa: "\23";
}
.fa-up-right-and-down-left-from-center {
--fa: "\f424";
}
.fa-expand-alt {
--fa: "\f424";
}
.fa-oil-can {
--fa: "\f613";
}
.fa-t {
--fa: "\54";
}
.fa-hippo {
--fa: "\f6ed";
}
.fa-chart-column {
--fa: "\e0e3";
}
.fa-infinity {
--fa: "\f534";
}
.fa-vial-circle-check {
--fa: "\e596";
}
.fa-person-arrow-down-to-line {
--fa: "\e538";
}
.fa-voicemail {
--fa: "\f897";
}
.fa-fan {
--fa: "\f863";
}
.fa-person-walking-luggage {
--fa: "\e554";
}
.fa-up-down {
--fa: "\f338";
}
.fa-arrows-alt-v {
--fa: "\f338";
}
.fa-cloud-moon-rain {
--fa: "\f73c";
}
.fa-calendar {
--fa: "\f133";
}
.fa-trailer {
--fa: "\e041";
}
.fa-bahai {
--fa: "\f666";
}
.fa-haykal {
--fa: "\f666";
}
.fa-sd-card {
--fa: "\f7c2";
}
.fa-dragon {
--fa: "\f6d5";
}
.fa-shoe-prints {
--fa: "\f54b";
}
.fa-circle-plus {
--fa: "\f055";
}
.fa-plus-circle {
--fa: "\f055";
}
.fa-face-grin-tongue-wink {
--fa: "\f58b";
}
.fa-grin-tongue-wink {
--fa: "\f58b";
}
.fa-hand-holding {
--fa: "\f4bd";
}
.fa-plug-circle-exclamation {
--fa: "\e55d";
}
.fa-link-slash {
--fa: "\f127";
}
.fa-chain-broken {
--fa: "\f127";
}
.fa-chain-slash {
--fa: "\f127";
}
.fa-unlink {
--fa: "\f127";
}
.fa-clone {
--fa: "\f24d";
}
.fa-person-walking-arrow-loop-left {
--fa: "\e551";
}
.fa-arrow-up-z-a {
--fa: "\f882";
}
.fa-sort-alpha-up-alt {
--fa: "\f882";
}
.fa-fire-flame-curved {
--fa: "\f7e4";
}
.fa-fire-alt {
--fa: "\f7e4";
}
.fa-tornado {
--fa: "\f76f";
}
.fa-file-circle-plus {
--fa: "\e494";
}
.fa-book-quran {
--fa: "\f687";
}
.fa-quran {
--fa: "\f687";
}
.fa-anchor {
--fa: "\f13d";
}
.fa-border-all {
--fa: "\f84c";
}
.fa-face-angry {
--fa: "\f556";
}
.fa-angry {
--fa: "\f556";
}
.fa-cookie-bite {
--fa: "\f564";
}
.fa-arrow-trend-down {
--fa: "\e097";
}
.fa-rss {
--fa: "\f09e";
}
.fa-feed {
--fa: "\f09e";
}
.fa-draw-polygon {
--fa: "\f5ee";
}
.fa-scale-balanced {
--fa: "\f24e";
}
.fa-balance-scale {
--fa: "\f24e";
}
.fa-gauge-simple-high {
--fa: "\f62a";
}
.fa-tachometer {
--fa: "\f62a";
}
.fa-tachometer-fast {
--fa: "\f62a";
}
.fa-shower {
--fa: "\f2cc";
}
.fa-desktop {
--fa: "\f390";
}
.fa-desktop-alt {
--fa: "\f390";
}
.fa-m {
--fa: "\4d";
}
.fa-table-list {
--fa: "\f00b";
}
.fa-th-list {
--fa: "\f00b";
}
.fa-comment-sms {
--fa: "\f7cd";
}
.fa-sms {
--fa: "\f7cd";
}
.fa-book {
--fa: "\f02d";
}
.fa-user-plus {
--fa: "\f234";
}
.fa-check {
--fa: "\f00c";
}
.fa-battery-three-quarters {
--fa: "\f241";
}
.fa-battery-4 {
--fa: "\f241";
}
.fa-house-circle-check {
--fa: "\e509";
}
.fa-angle-left {
--fa: "\f104";
}
.fa-diagram-successor {
--fa: "\e47a";
}
.fa-truck-arrow-right {
--fa: "\e58b";
}
.fa-arrows-split-up-and-left {
--fa: "\e4bc";
}
.fa-hand-fist {
--fa: "\f6de";
}
.fa-fist-raised {
--fa: "\f6de";
}
.fa-cloud-moon {
--fa: "\f6c3";
}
.fa-briefcase {
--fa: "\f0b1";
}
.fa-person-falling {
--fa: "\e546";
}
.fa-image-portrait {
--fa: "\f3e0";
}
.fa-portrait {
--fa: "\f3e0";
}
.fa-user-tag {
--fa: "\f507";
}
.fa-rug {
--fa: "\e569";
}
.fa-earth-europe {
--fa: "\f7a2";
}
.fa-globe-europe {
--fa: "\f7a2";
}
.fa-cart-flatbed-suitcase {
--fa: "\f59d";
}
.fa-luggage-cart {
--fa: "\f59d";
}
.fa-rectangle-xmark {
--fa: "\f410";
}
.fa-rectangle-times {
--fa: "\f410";
}
.fa-times-rectangle {
--fa: "\f410";
}
.fa-window-close {
--fa: "\f410";
}
.fa-baht-sign {
--fa: "\e0ac";
}
.fa-book-open {
--fa: "\f518";
}
.fa-book-journal-whills {
--fa: "\f66a";
}
.fa-journal-whills {
--fa: "\f66a";
}
.fa-handcuffs {
--fa: "\e4f8";
}
.fa-triangle-exclamation {
--fa: "\f071";
}
.fa-exclamation-triangle {
--fa: "\f071";
}
.fa-warning {
--fa: "\f071";
}
.fa-database {
--fa: "\f1c0";
}
.fa-share {
--fa: "\f064";
}
.fa-mail-forward {
--fa: "\f064";
}
.fa-bottle-droplet {
--fa: "\e4c4";
}
.fa-mask-face {
--fa: "\e1d7";
}
.fa-hill-rockslide {
--fa: "\e508";
}
.fa-right-left {
--fa: "\f362";
}
.fa-exchange-alt {
--fa: "\f362";
}
.fa-paper-plane {
--fa: "\f1d8";
}
.fa-road-circle-exclamation {
--fa: "\e565";
}
.fa-dungeon {
--fa: "\f6d9";
}
.fa-align-right {
--fa: "\f038";
}
.fa-money-bill-1-wave {
--fa: "\f53b";
}
.fa-money-bill-wave-alt {
--fa: "\f53b";
}
.fa-life-ring {
--fa: "\f1cd";
}
.fa-hands {
--fa: "\f2a7";
}
.fa-sign-language {
--fa: "\f2a7";
}
.fa-signing {
--fa: "\f2a7";
}
.fa-calendar-day {
--fa: "\f783";
}
.fa-water-ladder {
--fa: "\f5c5";
}
.fa-ladder-water {
--fa: "\f5c5";
}
.fa-swimming-pool {
--fa: "\f5c5";
}
.fa-arrows-up-down {
--fa: "\f07d";
}
.fa-arrows-v {
--fa: "\f07d";
}
.fa-face-grimace {
--fa: "\f57f";
}
.fa-grimace {
--fa: "\f57f";
}
.fa-wheelchair-move {
--fa: "\e2ce";
}
.fa-wheelchair-alt {
--fa: "\e2ce";
}
.fa-turn-down {
--fa: "\f3be";
}
.fa-level-down-alt {
--fa: "\f3be";
}
.fa-person-walking-arrow-right {
--fa: "\e552";
}
.fa-square-envelope {
--fa: "\f199";
}
.fa-envelope-square {
--fa: "\f199";
}
.fa-dice {
--fa: "\f522";
}
.fa-bowling-ball {
--fa: "\f436";
}
.fa-brain {
--fa: "\f5dc";
}
.fa-bandage {
--fa: "\f462";
}
.fa-band-aid {
--fa: "\f462";
}
.fa-calendar-minus {
--fa: "\f272";
}
.fa-circle-xmark {
--fa: "\f057";
}
.fa-times-circle {
--fa: "\f057";
}
.fa-xmark-circle {
--fa: "\f057";
}
.fa-gifts {
--fa: "\f79c";
}
.fa-hotel {
--fa: "\f594";
}
.fa-earth-asia {
--fa: "\f57e";
}
.fa-globe-asia {
--fa: "\f57e";
}
.fa-id-card-clip {
--fa: "\f47f";
}
.fa-id-card-alt {
--fa: "\f47f";
}
.fa-magnifying-glass-plus {
--fa: "\f00e";
}
.fa-search-plus {
--fa: "\f00e";
}
.fa-thumbs-up {
--fa: "\f164";
}
.fa-user-clock {
--fa: "\f4fd";
}
.fa-hand-dots {
--fa: "\f461";
}
.fa-allergies {
--fa: "\f461";
}
.fa-file-invoice {
--fa: "\f570";
}
.fa-window-minimize {
--fa: "\f2d1";
}
.fa-mug-saucer {
--fa: "\f0f4";
}
.fa-coffee {
--fa: "\f0f4";
}
.fa-brush {
--fa: "\f55d";
}
.fa-file-half-dashed {
--fa: "\e698";
}
.fa-mask {
--fa: "\f6fa";
}
.fa-magnifying-glass-minus {
--fa: "\f010";
}
.fa-search-minus {
--fa: "\f010";
}
.fa-ruler-vertical {
--fa: "\f548";
}
.fa-user-large {
--fa: "\f406";
}
.fa-user-alt {
--fa: "\f406";
}
.fa-train-tram {
--fa: "\e5b4";
}
.fa-user-nurse {
--fa: "\f82f";
}
.fa-syringe {
--fa: "\f48e";
}
.fa-cloud-sun {
--fa: "\f6c4";
}
.fa-stopwatch-20 {
--fa: "\e06f";
}
.fa-square-full {
--fa: "\f45c";
}
.fa-magnet {
--fa: "\f076";
}
.fa-jar {
--fa: "\e516";
}
.fa-note-sticky {
--fa: "\f249";
}
.fa-sticky-note {
--fa: "\f249";
}
.fa-bug-slash {
--fa: "\e490";
}
.fa-arrow-up-from-water-pump {
--fa: "\e4b6";
}
.fa-bone {
--fa: "\f5d7";
}
.fa-table-cells-row-unlock {
--fa: "\e691";
}
.fa-user-injured {
--fa: "\f728";
}
.fa-face-sad-tear {
--fa: "\f5b4";
}
.fa-sad-tear {
--fa: "\f5b4";
}
.fa-plane {
--fa: "\f072";
}
.fa-tent-arrows-down {
--fa: "\e581";
}
.fa-exclamation {
--fa: "\21";
}
.fa-arrows-spin {
--fa: "\e4bb";
}
.fa-print {
--fa: "\f02f";
}
.fa-turkish-lira-sign {
--fa: "\e2bb";
}
.fa-try {
--fa: "\e2bb";
}
.fa-turkish-lira {
--fa: "\e2bb";
}
.fa-dollar-sign {
--fa: "\24";
}
.fa-dollar {
--fa: "\24";
}
.fa-usd {
--fa: "\24";
}
.fa-x {
--fa: "\58";
}
.fa-magnifying-glass-dollar {
--fa: "\f688";
}
.fa-search-dollar {
--fa: "\f688";
}
.fa-users-gear {
--fa: "\f509";
}
.fa-users-cog {
--fa: "\f509";
}
.fa-person-military-pointing {
--fa: "\e54a";
}
.fa-building-columns {
--fa: "\f19c";
}
.fa-bank {
--fa: "\f19c";
}
.fa-institution {
--fa: "\f19c";
}
.fa-museum {
--fa: "\f19c";
}
.fa-university {
--fa: "\f19c";
}
.fa-umbrella {
--fa: "\f0e9";
}
.fa-trowel {
--fa: "\e589";
}
.fa-d {
--fa: "\44";
}
.fa-stapler {
--fa: "\e5af";
}
.fa-masks-theater {
--fa: "\f630";
}
.fa-theater-masks {
--fa: "\f630";
}
.fa-kip-sign {
--fa: "\e1c4";
}
.fa-hand-point-left {
--fa: "\f0a5";
}
.fa-handshake-simple {
--fa: "\f4c6";
}
.fa-handshake-alt {
--fa: "\f4c6";
}
.fa-jet-fighter {
--fa: "\f0fb";
}
.fa-fighter-jet {
--fa: "\f0fb";
}
.fa-square-share-nodes {
--fa: "\f1e1";
}
.fa-share-alt-square {
--fa: "\f1e1";
}
.fa-barcode {
--fa: "\f02a";
}
.fa-plus-minus {
--fa: "\e43c";
}
.fa-video {
--fa: "\f03d";
}
.fa-video-camera {
--fa: "\f03d";
}
.fa-graduation-cap {
--fa: "\f19d";
}
.fa-mortar-board {
--fa: "\f19d";
}
.fa-hand-holding-medical {
--fa: "\e05c";
}
.fa-person-circle-check {
--fa: "\e53e";
}
.fa-turn-up {
--fa: "\f3bf";
}
.fa-level-up-alt {
--fa: "\f3bf";
}
.sr-only,
.fa-sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
:root,
:host {
--fa-style-family-brands: 'Font Awesome 6 Brands';
--fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands';
}
@font-face {
font-family: 'Font Awesome 6 Brands';
font-style: normal;
font-weight: 400;
font-display: block;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-brands-400.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-brands-400.ttf) format("truetype");
}
.fab,
.fa-brands {
font-weight: 400;
}
.fa-monero {
--fa: "\f3d0";
}
.fa-hooli {
--fa: "\f427";
}
.fa-yelp {
--fa: "\f1e9";
}
.fa-cc-visa {
--fa: "\f1f0";
}
.fa-lastfm {
--fa: "\f202";
}
.fa-shopware {
--fa: "\f5b5";
}
.fa-creative-commons-nc {
--fa: "\f4e8";
}
.fa-aws {
--fa: "\f375";
}
.fa-redhat {
--fa: "\f7bc";
}
.fa-yoast {
--fa: "\f2b1";
}
.fa-cloudflare {
--fa: "\e07d";
}
.fa-ups {
--fa: "\f7e0";
}
.fa-pixiv {
--fa: "\e640";
}
.fa-wpexplorer {
--fa: "\f2de";
}
.fa-dyalog {
--fa: "\f399";
}
.fa-bity {
--fa: "\f37a";
}
.fa-stackpath {
--fa: "\f842";
}
.fa-buysellads {
--fa: "\f20d";
}
.fa-first-order {
--fa: "\f2b0";
}
.fa-modx {
--fa: "\f285";
}
.fa-guilded {
--fa: "\e07e";
}
.fa-vnv {
--fa: "\f40b";
}
.fa-square-js {
--fa: "\f3b9";
}
.fa-js-square {
--fa: "\f3b9";
}
.fa-microsoft {
--fa: "\f3ca";
}
.fa-qq {
--fa: "\f1d6";
}
.fa-orcid {
--fa: "\f8d2";
}
.fa-java {
--fa: "\f4e4";
}
.fa-invision {
--fa: "\f7b0";
}
.fa-creative-commons-pd-alt {
--fa: "\f4ed";
}
.fa-centercode {
--fa: "\f380";
}
.fa-glide-g {
--fa: "\f2a6";
}
.fa-drupal {
--fa: "\f1a9";
}
.fa-jxl {
--fa: "\e67b";
}
.fa-dart-lang {
--fa: "\e693";
}
.fa-hire-a-helper {
--fa: "\f3b0";
}
.fa-creative-commons-by {
--fa: "\f4e7";
}
.fa-unity {
--fa: "\e049";
}
.fa-whmcs {
--fa: "\f40d";
}
.fa-rocketchat {
--fa: "\f3e8";
}
.fa-vk {
--fa: "\f189";
}
.fa-untappd {
--fa: "\f405";
}
.fa-mailchimp {
--fa: "\f59e";
}
.fa-css3-alt {
--fa: "\f38b";
}
.fa-square-reddit {
--fa: "\f1a2";
}
.fa-reddit-square {
--fa: "\f1a2";
}
.fa-vimeo-v {
--fa: "\f27d";
}
.fa-contao {
--fa: "\f26d";
}
.fa-square-font-awesome {
--fa: "\e5ad";
}
.fa-deskpro {
--fa: "\f38f";
}
.fa-brave {
--fa: "\e63c";
}
.fa-sistrix {
--fa: "\f3ee";
}
.fa-square-instagram {
--fa: "\e055";
}
.fa-instagram-square {
--fa: "\e055";
}
.fa-battle-net {
--fa: "\f835";
}
.fa-the-red-yeti {
--fa: "\f69d";
}
.fa-square-hacker-news {
--fa: "\f3af";
}
.fa-hacker-news-square {
--fa: "\f3af";
}
.fa-edge {
--fa: "\f282";
}
.fa-threads {
--fa: "\e618";
}
.fa-napster {
--fa: "\f3d2";
}
.fa-square-snapchat {
--fa: "\f2ad";
}
.fa-snapchat-square {
--fa: "\f2ad";
}
.fa-google-plus-g {
--fa: "\f0d5";
}
.fa-artstation {
--fa: "\f77a";
}
.fa-markdown {
--fa: "\f60f";
}
.fa-sourcetree {
--fa: "\f7d3";
}
.fa-google-plus {
--fa: "\f2b3";
}
.fa-diaspora {
--fa: "\f791";
}
.fa-foursquare {
--fa: "\f180";
}
.fa-stack-overflow {
--fa: "\f16c";
}
.fa-github-alt {
--fa: "\f113";
}
.fa-phoenix-squadron {
--fa: "\f511";
}
.fa-pagelines {
--fa: "\f18c";
}
.fa-algolia {
--fa: "\f36c";
}
.fa-red-river {
--fa: "\f3e3";
}
.fa-creative-commons-sa {
--fa: "\f4ef";
}
.fa-safari {
--fa: "\f267";
}
.fa-google {
--fa: "\f1a0";
}
.fa-square-font-awesome-stroke {
--fa: "\f35c";
}
.fa-font-awesome-alt {
--fa: "\f35c";
}
.fa-atlassian {
--fa: "\f77b";
}
.fa-linkedin-in {
--fa: "\f0e1";
}
.fa-digital-ocean {
--fa: "\f391";
}
.fa-nimblr {
--fa: "\f5a8";
}
.fa-chromecast {
--fa: "\f838";
}
.fa-evernote {
--fa: "\f839";
}
.fa-hacker-news {
--fa: "\f1d4";
}
.fa-creative-commons-sampling {
--fa: "\f4f0";
}
.fa-adversal {
--fa: "\f36a";
}
.fa-creative-commons {
--fa: "\f25e";
}
.fa-watchman-monitoring {
--fa: "\e087";
}
.fa-fonticons {
--fa: "\f280";
}
.fa-weixin {
--fa: "\f1d7";
}
.fa-shirtsinbulk {
--fa: "\f214";
}
.fa-codepen {
--fa: "\f1cb";
}
.fa-git-alt {
--fa: "\f841";
}
.fa-lyft {
--fa: "\f3c3";
}
.fa-rev {
--fa: "\f5b2";
}
.fa-windows {
--fa: "\f17a";
}
.fa-wizards-of-the-coast {
--fa: "\f730";
}
.fa-square-viadeo {
--fa: "\f2aa";
}
.fa-viadeo-square {
--fa: "\f2aa";
}
.fa-meetup {
--fa: "\f2e0";
}
.fa-centos {
--fa: "\f789";
}
.fa-adn {
--fa: "\f170";
}
.fa-cloudsmith {
--fa: "\f384";
}
.fa-opensuse {
--fa: "\e62b";
}
.fa-pied-piper-alt {
--fa: "\f1a8";
}
.fa-square-dribbble {
--fa: "\f397";
}
.fa-dribbble-square {
--fa: "\f397";
}
.fa-codiepie {
--fa: "\f284";
}
.fa-node {
--fa: "\f419";
}
.fa-mix {
--fa: "\f3cb";
}
.fa-steam {
--fa: "\f1b6";
}
.fa-cc-apple-pay {
--fa: "\f416";
}
.fa-scribd {
--fa: "\f28a";
}
.fa-debian {
--fa: "\e60b";
}
.fa-openid {
--fa: "\f19b";
}
.fa-instalod {
--fa: "\e081";
}
.fa-files-pinwheel {
--fa: "\e69f";
}
.fa-expeditedssl {
--fa: "\f23e";
}
.fa-sellcast {
--fa: "\f2da";
}
.fa-square-twitter {
--fa: "\f081";
}
.fa-twitter-square {
--fa: "\f081";
}
.fa-r-project {
--fa: "\f4f7";
}
.fa-delicious {
--fa: "\f1a5";
}
.fa-freebsd {
--fa: "\f3a4";
}
.fa-vuejs {
--fa: "\f41f";
}
.fa-accusoft {
--fa: "\f369";
}
.fa-ioxhost {
--fa: "\f208";
}
.fa-fonticons-fi {
--fa: "\f3a2";
}
.fa-app-store {
--fa: "\f36f";
}
.fa-cc-mastercard {
--fa: "\f1f1";
}
.fa-itunes-note {
--fa: "\f3b5";
}
.fa-golang {
--fa: "\e40f";
}
.fa-kickstarter {
--fa: "\f3bb";
}
.fa-square-kickstarter {
--fa: "\f3bb";
}
.fa-grav {
--fa: "\f2d6";
}
.fa-weibo {
--fa: "\f18a";
}
.fa-uncharted {
--fa: "\e084";
}
.fa-firstdraft {
--fa: "\f3a1";
}
.fa-square-youtube {
--fa: "\f431";
}
.fa-youtube-square {
--fa: "\f431";
}
.fa-wikipedia-w {
--fa: "\f266";
}
.fa-wpressr {
--fa: "\f3e4";
}
.fa-rendact {
--fa: "\f3e4";
}
.fa-angellist {
--fa: "\f209";
}
.fa-galactic-republic {
--fa: "\f50c";
}
.fa-nfc-directional {
--fa: "\e530";
}
.fa-skype {
--fa: "\f17e";
}
.fa-joget {
--fa: "\f3b7";
}
.fa-fedora {
--fa: "\f798";
}
.fa-stripe-s {
--fa: "\f42a";
}
.fa-meta {
--fa: "\e49b";
}
.fa-laravel {
--fa: "\f3bd";
}
.fa-hotjar {
--fa: "\f3b1";
}
.fa-bluetooth-b {
--fa: "\f294";
}
.fa-square-letterboxd {
--fa: "\e62e";
}
.fa-sticker-mule {
--fa: "\f3f7";
}
.fa-creative-commons-zero {
--fa: "\f4f3";
}
.fa-hips {
--fa: "\f452";
}
.fa-css {
--fa: "\e6a2";
}
.fa-behance {
--fa: "\f1b4";
}
.fa-reddit {
--fa: "\f1a1";
}
.fa-discord {
--fa: "\f392";
}
.fa-chrome {
--fa: "\f268";
}
.fa-app-store-ios {
--fa: "\f370";
}
.fa-cc-discover {
--fa: "\f1f2";
}
.fa-wpbeginner {
--fa: "\f297";
}
.fa-confluence {
--fa: "\f78d";
}
.fa-shoelace {
--fa: "\e60c";
}
.fa-mdb {
--fa: "\f8ca";
}
.fa-dochub {
--fa: "\f394";
}
.fa-accessible-icon {
--fa: "\f368";
}
.fa-ebay {
--fa: "\f4f4";
}
.fa-amazon {
--fa: "\f270";
}
.fa-unsplash {
--fa: "\e07c";
}
.fa-yarn {
--fa: "\f7e3";
}
.fa-square-steam {
--fa: "\f1b7";
}
.fa-steam-square {
--fa: "\f1b7";
}
.fa-500px {
--fa: "\f26e";
}
.fa-square-vimeo {
--fa: "\f194";
}
.fa-vimeo-square {
--fa: "\f194";
}
.fa-asymmetrik {
--fa: "\f372";
}
.fa-font-awesome {
--fa: "\f2b4";
}
.fa-font-awesome-flag {
--fa: "\f2b4";
}
.fa-font-awesome-logo-full {
--fa: "\f2b4";
}
.fa-gratipay {
--fa: "\f184";
}
.fa-apple {
--fa: "\f179";
}
.fa-hive {
--fa: "\e07f";
}
.fa-gitkraken {
--fa: "\f3a6";
}
.fa-keybase {
--fa: "\f4f5";
}
.fa-apple-pay {
--fa: "\f415";
}
.fa-padlet {
--fa: "\e4a0";
}
.fa-amazon-pay {
--fa: "\f42c";
}
.fa-square-github {
--fa: "\f092";
}
.fa-github-square {
--fa: "\f092";
}
.fa-stumbleupon {
--fa: "\f1a4";
}
.fa-fedex {
--fa: "\f797";
}
.fa-phoenix-framework {
--fa: "\f3dc";
}
.fa-shopify {
--fa: "\e057";
}
.fa-neos {
--fa: "\f612";
}
.fa-square-threads {
--fa: "\e619";
}
.fa-hackerrank {
--fa: "\f5f7";
}
.fa-researchgate {
--fa: "\f4f8";
}
.fa-swift {
--fa: "\f8e1";
}
.fa-angular {
--fa: "\f420";
}
.fa-speakap {
--fa: "\f3f3";
}
.fa-angrycreative {
--fa: "\f36e";
}
.fa-y-combinator {
--fa: "\f23b";
}
.fa-empire {
--fa: "\f1d1";
}
.fa-envira {
--fa: "\f299";
}
.fa-google-scholar {
--fa: "\e63b";
}
.fa-square-gitlab {
--fa: "\e5ae";
}
.fa-gitlab-square {
--fa: "\e5ae";
}
.fa-studiovinari {
--fa: "\f3f8";
}
.fa-pied-piper {
--fa: "\f2ae";
}
.fa-wordpress {
--fa: "\f19a";
}
.fa-product-hunt {
--fa: "\f288";
}
.fa-firefox {
--fa: "\f269";
}
.fa-linode {
--fa: "\f2b8";
}
.fa-goodreads {
--fa: "\f3a8";
}
.fa-square-odnoklassniki {
--fa: "\f264";
}
.fa-odnoklassniki-square {
--fa: "\f264";
}
.fa-jsfiddle {
--fa: "\f1cc";
}
.fa-sith {
--fa: "\f512";
}
.fa-themeisle {
--fa: "\f2b2";
}
.fa-page4 {
--fa: "\f3d7";
}
.fa-hashnode {
--fa: "\e499";
}
.fa-react {
--fa: "\f41b";
}
.fa-cc-paypal {
--fa: "\f1f4";
}
.fa-squarespace {
--fa: "\f5be";
}
.fa-cc-stripe {
--fa: "\f1f5";
}
.fa-creative-commons-share {
--fa: "\f4f2";
}
.fa-bitcoin {
--fa: "\f379";
}
.fa-keycdn {
--fa: "\f3ba";
}
.fa-opera {
--fa: "\f26a";
}
.fa-itch-io {
--fa: "\f83a";
}
.fa-umbraco {
--fa: "\f8e8";
}
.fa-galactic-senate {
--fa: "\f50d";
}
.fa-ubuntu {
--fa: "\f7df";
}
.fa-draft2digital {
--fa: "\f396";
}
.fa-stripe {
--fa: "\f429";
}
.fa-houzz {
--fa: "\f27c";
}
.fa-gg {
--fa: "\f260";
}
.fa-dhl {
--fa: "\f790";
}
.fa-square-pinterest {
--fa: "\f0d3";
}
.fa-pinterest-square {
--fa: "\f0d3";
}
.fa-xing {
--fa: "\f168";
}
.fa-blackberry {
--fa: "\f37b";
}
.fa-creative-commons-pd {
--fa: "\f4ec";
}
.fa-playstation {
--fa: "\f3df";
}
.fa-quinscape {
--fa: "\f459";
}
.fa-less {
--fa: "\f41d";
}
.fa-blogger-b {
--fa: "\f37d";
}
.fa-opencart {
--fa: "\f23d";
}
.fa-vine {
--fa: "\f1ca";
}
.fa-signal-messenger {
--fa: "\e663";
}
.fa-paypal {
--fa: "\f1ed";
}
.fa-gitlab {
--fa: "\f296";
}
.fa-typo3 {
--fa: "\f42b";
}
.fa-reddit-alien {
--fa: "\f281";
}
.fa-yahoo {
--fa: "\f19e";
}
.fa-dailymotion {
--fa: "\e052";
}
.fa-affiliatetheme {
--fa: "\f36b";
}
.fa-pied-piper-pp {
--fa: "\f1a7";
}
.fa-bootstrap {
--fa: "\f836";
}
.fa-odnoklassniki {
--fa: "\f263";
}
.fa-nfc-symbol {
--fa: "\e531";
}
.fa-mintbit {
--fa: "\e62f";
}
.fa-ethereum {
--fa: "\f42e";
}
.fa-speaker-deck {
--fa: "\f83c";
}
.fa-creative-commons-nc-eu {
--fa: "\f4e9";
}
.fa-patreon {
--fa: "\f3d9";
}
.fa-avianex {
--fa: "\f374";
}
.fa-ello {
--fa: "\f5f1";
}
.fa-gofore {
--fa: "\f3a7";
}
.fa-bimobject {
--fa: "\f378";
}
.fa-brave-reverse {
--fa: "\e63d";
}
.fa-facebook-f {
--fa: "\f39e";
}
.fa-square-google-plus {
--fa: "\f0d4";
}
.fa-google-plus-square {
--fa: "\f0d4";
}
.fa-web-awesome {
--fa: "\e682";
}
.fa-mandalorian {
--fa: "\f50f";
}
.fa-first-order-alt {
--fa: "\f50a";
}
.fa-osi {
--fa: "\f41a";
}
.fa-google-wallet {
--fa: "\f1ee";
}
.fa-d-and-d-beyond {
--fa: "\f6ca";
}
.fa-periscope {
--fa: "\f3da";
}
.fa-fulcrum {
--fa: "\f50b";
}
.fa-cloudscale {
--fa: "\f383";
}
.fa-forumbee {
--fa: "\f211";
}
.fa-mizuni {
--fa: "\f3cc";
}
.fa-schlix {
--fa: "\f3ea";
}
.fa-square-xing {
--fa: "\f169";
}
.fa-xing-square {
--fa: "\f169";
}
.fa-bandcamp {
--fa: "\f2d5";
}
.fa-wpforms {
--fa: "\f298";
}
.fa-cloudversify {
--fa: "\f385";
}
.fa-usps {
--fa: "\f7e1";
}
.fa-megaport {
--fa: "\f5a3";
}
.fa-magento {
--fa: "\f3c4";
}
.fa-spotify {
--fa: "\f1bc";
}
.fa-optin-monster {
--fa: "\f23c";
}
.fa-fly {
--fa: "\f417";
}
.fa-square-bluesky {
--fa: "\e6a3";
}
.fa-aviato {
--fa: "\f421";
}
.fa-itunes {
--fa: "\f3b4";
}
.fa-cuttlefish {
--fa: "\f38c";
}
.fa-blogger {
--fa: "\f37c";
}
.fa-flickr {
--fa: "\f16e";
}
.fa-viber {
--fa: "\f409";
}
.fa-soundcloud {
--fa: "\f1be";
}
.fa-digg {
--fa: "\f1a6";
}
.fa-tencent-weibo {
--fa: "\f1d5";
}
.fa-letterboxd {
--fa: "\e62d";
}
.fa-symfony {
--fa: "\f83d";
}
.fa-maxcdn {
--fa: "\f136";
}
.fa-etsy {
--fa: "\f2d7";
}
.fa-facebook-messenger {
--fa: "\f39f";
}
.fa-audible {
--fa: "\f373";
}
.fa-think-peaks {
--fa: "\f731";
}
.fa-bilibili {
--fa: "\e3d9";
}
.fa-erlang {
--fa: "\f39d";
}
.fa-x-twitter {
--fa: "\e61b";
}
.fa-cotton-bureau {
--fa: "\f89e";
}
.fa-dashcube {
--fa: "\f210";
}
.fa-42-group {
--fa: "\e080";
}
.fa-innosoft {
--fa: "\e080";
}
.fa-stack-exchange {
--fa: "\f18d";
}
.fa-elementor {
--fa: "\f430";
}
.fa-square-pied-piper {
--fa: "\e01e";
}
.fa-pied-piper-square {
--fa: "\e01e";
}
.fa-creative-commons-nd {
--fa: "\f4eb";
}
.fa-palfed {
--fa: "\f3d8";
}
.fa-superpowers {
--fa: "\f2dd";
}
.fa-resolving {
--fa: "\f3e7";
}
.fa-xbox {
--fa: "\f412";
}
.fa-square-web-awesome-stroke {
--fa: "\e684";
}
.fa-searchengin {
--fa: "\f3eb";
}
.fa-tiktok {
--fa: "\e07b";
}
.fa-square-facebook {
--fa: "\f082";
}
.fa-facebook-square {
--fa: "\f082";
}
.fa-renren {
--fa: "\f18b";
}
.fa-linux {
--fa: "\f17c";
}
.fa-glide {
--fa: "\f2a5";
}
.fa-linkedin {
--fa: "\f08c";
}
.fa-hubspot {
--fa: "\f3b2";
}
.fa-deploydog {
--fa: "\f38e";
}
.fa-twitch {
--fa: "\f1e8";
}
.fa-flutter {
--fa: "\e694";
}
.fa-ravelry {
--fa: "\f2d9";
}
.fa-mixer {
--fa: "\e056";
}
.fa-square-lastfm {
--fa: "\f203";
}
.fa-lastfm-square {
--fa: "\f203";
}
.fa-vimeo {
--fa: "\f40a";
}
.fa-mendeley {
--fa: "\f7b3";
}
.fa-uniregistry {
--fa: "\f404";
}
.fa-figma {
--fa: "\f799";
}
.fa-creative-commons-remix {
--fa: "\f4ee";
}
.fa-cc-amazon-pay {
--fa: "\f42d";
}
.fa-dropbox {
--fa: "\f16b";
}
.fa-instagram {
--fa: "\f16d";
}
.fa-cmplid {
--fa: "\e360";
}
.fa-upwork {
--fa: "\e641";
}
.fa-facebook {
--fa: "\f09a";
}
.fa-gripfire {
--fa: "\f3ac";
}
.fa-jedi-order {
--fa: "\f50e";
}
.fa-uikit {
--fa: "\f403";
}
.fa-fort-awesome-alt {
--fa: "\f3a3";
}
.fa-phabricator {
--fa: "\f3db";
}
.fa-ussunnah {
--fa: "\f407";
}
.fa-earlybirds {
--fa: "\f39a";
}
.fa-trade-federation {
--fa: "\f513";
}
.fa-autoprefixer {
--fa: "\f41c";
}
.fa-whatsapp {
--fa: "\f232";
}
.fa-square-upwork {
--fa: "\e67c";
}
.fa-slideshare {
--fa: "\f1e7";
}
.fa-google-play {
--fa: "\f3ab";
}
.fa-viadeo {
--fa: "\f2a9";
}
.fa-line {
--fa: "\f3c0";
}
.fa-google-drive {
--fa: "\f3aa";
}
.fa-servicestack {
--fa: "\f3ec";
}
.fa-simplybuilt {
--fa: "\f215";
}
.fa-bitbucket {
--fa: "\f171";
}
.fa-imdb {
--fa: "\f2d8";
}
.fa-deezer {
--fa: "\e077";
}
.fa-raspberry-pi {
--fa: "\f7bb";
}
.fa-jira {
--fa: "\f7b1";
}
.fa-docker {
--fa: "\f395";
}
.fa-screenpal {
--fa: "\e570";
}
.fa-bluetooth {
--fa: "\f293";
}
.fa-gitter {
--fa: "\f426";
}
.fa-d-and-d {
--fa: "\f38d";
}
.fa-microblog {
--fa: "\e01a";
}
.fa-cc-diners-club {
--fa: "\f24c";
}
.fa-gg-circle {
--fa: "\f261";
}
.fa-pied-piper-hat {
--fa: "\f4e5";
}
.fa-kickstarter-k {
--fa: "\f3bc";
}
.fa-yandex {
--fa: "\f413";
}
.fa-readme {
--fa: "\f4d5";
}
.fa-html5 {
--fa: "\f13b";
}
.fa-sellsy {
--fa: "\f213";
}
.fa-square-web-awesome {
--fa: "\e683";
}
.fa-sass {
--fa: "\f41e";
}
.fa-wirsindhandwerk {
--fa: "\e2d0";
}
.fa-wsh {
--fa: "\e2d0";
}
.fa-buromobelexperte {
--fa: "\f37f";
}
.fa-salesforce {
--fa: "\f83b";
}
.fa-octopus-deploy {
--fa: "\e082";
}
.fa-medapps {
--fa: "\f3c6";
}
.fa-ns8 {
--fa: "\f3d5";
}
.fa-pinterest-p {
--fa: "\f231";
}
.fa-apper {
--fa: "\f371";
}
.fa-fort-awesome {
--fa: "\f286";
}
.fa-waze {
--fa: "\f83f";
}
.fa-bluesky {
--fa: "\e671";
}
.fa-cc-jcb {
--fa: "\f24b";
}
.fa-snapchat {
--fa: "\f2ab";
}
.fa-snapchat-ghost {
--fa: "\f2ab";
}
.fa-fantasy-flight-games {
--fa: "\f6dc";
}
.fa-rust {
--fa: "\e07a";
}
.fa-wix {
--fa: "\f5cf";
}
.fa-square-behance {
--fa: "\f1b5";
}
.fa-behance-square {
--fa: "\f1b5";
}
.fa-supple {
--fa: "\f3f9";
}
.fa-webflow {
--fa: "\e65c";
}
.fa-rebel {
--fa: "\f1d0";
}
.fa-css3 {
--fa: "\f13c";
}
.fa-staylinked {
--fa: "\f3f5";
}
.fa-kaggle {
--fa: "\f5fa";
}
.fa-space-awesome {
--fa: "\e5ac";
}
.fa-deviantart {
--fa: "\f1bd";
}
.fa-cpanel {
--fa: "\f388";
}
.fa-goodreads-g {
--fa: "\f3a9";
}
.fa-square-git {
--fa: "\f1d2";
}
.fa-git-square {
--fa: "\f1d2";
}
.fa-square-tumblr {
--fa: "\f174";
}
.fa-tumblr-square {
--fa: "\f174";
}
.fa-trello {
--fa: "\f181";
}
.fa-creative-commons-nc-jp {
--fa: "\f4ea";
}
.fa-get-pocket {
--fa: "\f265";
}
.fa-perbyte {
--fa: "\e083";
}
.fa-grunt {
--fa: "\f3ad";
}
.fa-weebly {
--fa: "\f5cc";
}
.fa-connectdevelop {
--fa: "\f20e";
}
.fa-leanpub {
--fa: "\f212";
}
.fa-black-tie {
--fa: "\f27e";
}
.fa-themeco {
--fa: "\f5c6";
}
.fa-python {
--fa: "\f3e2";
}
.fa-android {
--fa: "\f17b";
}
.fa-bots {
--fa: "\e340";
}
.fa-free-code-camp {
--fa: "\f2c5";
}
.fa-hornbill {
--fa: "\f592";
}
.fa-js {
--fa: "\f3b8";
}
.fa-ideal {
--fa: "\e013";
}
.fa-git {
--fa: "\f1d3";
}
.fa-dev {
--fa: "\f6cc";
}
.fa-sketch {
--fa: "\f7c6";
}
.fa-yandex-international {
--fa: "\f414";
}
.fa-cc-amex {
--fa: "\f1f3";
}
.fa-uber {
--fa: "\f402";
}
.fa-github {
--fa: "\f09b";
}
.fa-php {
--fa: "\f457";
}
.fa-alipay {
--fa: "\f642";
}
.fa-youtube {
--fa: "\f167";
}
.fa-skyatlas {
--fa: "\f216";
}
.fa-firefox-browser {
--fa: "\e007";
}
.fa-replyd {
--fa: "\f3e6";
}
.fa-suse {
--fa: "\f7d6";
}
.fa-jenkins {
--fa: "\f3b6";
}
.fa-twitter {
--fa: "\f099";
}
.fa-rockrms {
--fa: "\f3e9";
}
.fa-pinterest {
--fa: "\f0d2";
}
.fa-buffer {
--fa: "\f837";
}
.fa-npm {
--fa: "\f3d4";
}
.fa-yammer {
--fa: "\f840";
}
.fa-btc {
--fa: "\f15a";
}
.fa-dribbble {
--fa: "\f17d";
}
.fa-stumbleupon-circle {
--fa: "\f1a3";
}
.fa-internet-explorer {
--fa: "\f26b";
}
.fa-stubber {
--fa: "\e5c7";
}
.fa-telegram {
--fa: "\f2c6";
}
.fa-telegram-plane {
--fa: "\f2c6";
}
.fa-old-republic {
--fa: "\f510";
}
.fa-odysee {
--fa: "\e5c6";
}
.fa-square-whatsapp {
--fa: "\f40c";
}
.fa-whatsapp-square {
--fa: "\f40c";
}
.fa-node-js {
--fa: "\f3d3";
}
.fa-edge-legacy {
--fa: "\e078";
}
.fa-slack {
--fa: "\f198";
}
.fa-slack-hash {
--fa: "\f198";
}
.fa-medrt {
--fa: "\f3c8";
}
.fa-usb {
--fa: "\f287";
}
.fa-tumblr {
--fa: "\f173";
}
.fa-vaadin {
--fa: "\f408";
}
.fa-quora {
--fa: "\f2c4";
}
.fa-square-x-twitter {
--fa: "\e61a";
}
.fa-reacteurope {
--fa: "\f75d";
}
.fa-medium {
--fa: "\f23a";
}
.fa-medium-m {
--fa: "\f23a";
}
.fa-amilia {
--fa: "\f36d";
}
.fa-mixcloud {
--fa: "\f289";
}
.fa-flipboard {
--fa: "\f44d";
}
.fa-viacoin {
--fa: "\f237";
}
.fa-critical-role {
--fa: "\f6c9";
}
.fa-sitrox {
--fa: "\e44a";
}
.fa-discourse {
--fa: "\f393";
}
.fa-joomla {
--fa: "\f1aa";
}
.fa-mastodon {
--fa: "\f4f6";
}
.fa-airbnb {
--fa: "\f834";
}
.fa-wolf-pack-battalion {
--fa: "\f514";
}
.fa-buy-n-large {
--fa: "\f8a6";
}
.fa-gulp {
--fa: "\f3ae";
}
.fa-creative-commons-sampling-plus {
--fa: "\f4f1";
}
.fa-strava {
--fa: "\f428";
}
.fa-ember {
--fa: "\f423";
}
.fa-canadian-maple-leaf {
--fa: "\f785";
}
.fa-teamspeak {
--fa: "\f4f9";
}
.fa-pushed {
--fa: "\f3e1";
}
.fa-wordpress-simple {
--fa: "\f411";
}
.fa-nutritionix {
--fa: "\f3d6";
}
.fa-wodu {
--fa: "\e088";
}
.fa-google-pay {
--fa: "\e079";
}
.fa-intercom {
--fa: "\f7af";
}
.fa-zhihu {
--fa: "\f63f";
}
.fa-korvue {
--fa: "\f42f";
}
.fa-pix {
--fa: "\e43a";
}
.fa-steam-symbol {
--fa: "\f3f6";
}
:root,
:host {
--fa-style-family-classic: 'Font Awesome 6 Free';
--fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free';
}
@font-face {
font-family: 'Font Awesome 6 Free';
font-style: normal;
font-weight: 400;
font-display: block;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-regular-400.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-regular-400.ttf) format("truetype");
}
.far,
.fa-regular {
font-weight: 400;
}
:root,
:host {
--fa-style-family-classic: 'Font Awesome 6 Free';
--fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free';
}
@font-face {
font-family: 'Font Awesome 6 Free';
font-style: normal;
font-weight: 900;
font-display: block;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-solid-900.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-solid-900.ttf) format("truetype");
}
.fas,
.fa-solid {
font-weight: 900;
}
@font-face {
font-family: 'Font Awesome 5 Brands';
font-display: block;
font-weight: 400;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-brands-400.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-brands-400.ttf) format("truetype");
}
@font-face {
font-family: 'Font Awesome 5 Free';
font-display: block;
font-weight: 900;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-solid-900.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-solid-900.ttf) format("truetype");
}
@font-face {
font-family: 'Font Awesome 5 Free';
font-display: block;
font-weight: 400;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-regular-400.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-regular-400.ttf) format("truetype");
}
@font-face {
font-family: 'FontAwesome';
font-display: block;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-solid-900.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-solid-900.ttf) format("truetype");
}
@font-face {
font-family: 'FontAwesome';
font-display: block;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-brands-400.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-brands-400.ttf) format("truetype");
}
@font-face {
font-family: 'FontAwesome';
font-display: block;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-regular-400.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-regular-400.ttf) format("truetype");
unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D, U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088, U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5, U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A, U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E, U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7, U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D, U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA, U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC;
}
@font-face {
font-family: 'FontAwesome';
font-display: block;
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-v4compatibility.woff2) format("woff2"), url(//arosa.capital/wp-content/themes/square-plus/css/fonts/fontawesome/fa-v4compatibility.ttf) format("truetype");
unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B, U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4, U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E, U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F27A;
}.fa.fa-glass:before {
content: "\f000";
}
.fa.fa-envelope-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-envelope-o:before {
content: "\f0e0";
}
.fa.fa-star-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-star-o:before {
content: "\f005";
}
.fa.fa-remove:before {
content: "\f00d";
}
.fa.fa-close:before {
content: "\f00d";
}
.fa.fa-gear:before {
content: "\f013";
}
.fa.fa-trash-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-trash-o:before {
content: "\f2ed";
}
.fa.fa-home:before {
content: "\f015";
}
.fa.fa-file-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-o:before {
content: "\f15b";
}
.fa.fa-clock-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-clock-o:before {
content: "\f017";
}
.fa.fa-arrow-circle-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-arrow-circle-o-down:before {
content: "\f358";
}
.fa.fa-arrow-circle-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-arrow-circle-o-up:before {
content: "\f35b";
}
.fa.fa-play-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-play-circle-o:before {
content: "\f144";
}
.fa.fa-repeat:before {
content: "\f01e";
}
.fa.fa-rotate-right:before {
content: "\f01e";
}
.fa.fa-refresh:before {
content: "\f021";
}
.fa.fa-list-alt {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-list-alt:before {
content: "\f022";
}
.fa.fa-dedent:before {
content: "\f03b";
}
.fa.fa-video-camera:before {
content: "\f03d";
}
.fa.fa-picture-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-picture-o:before {
content: "\f03e";
}
.fa.fa-photo {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-photo:before {
content: "\f03e";
}
.fa.fa-image {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-image:before {
content: "\f03e";
}
.fa.fa-map-marker:before {
content: "\f3c5";
}
.fa.fa-pencil-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-pencil-square-o:before {
content: "\f044";
}
.fa.fa-edit {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-edit:before {
content: "\f044";
}
.fa.fa-share-square-o:before {
content: "\f14d";
}
.fa.fa-check-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-check-square-o:before {
content: "\f14a";
}
.fa.fa-arrows:before {
content: "\f0b2";
}
.fa.fa-times-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-times-circle-o:before {
content: "\f057";
}
.fa.fa-check-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-check-circle-o:before {
content: "\f058";
}
.fa.fa-mail-forward:before {
content: "\f064";
}
.fa.fa-expand:before {
content: "\f424";
}
.fa.fa-compress:before {
content: "\f422";
}
.fa.fa-eye {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-eye-slash {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-warning:before {
content: "\f071";
}
.fa.fa-calendar:before {
content: "\f073";
}
.fa.fa-arrows-v:before {
content: "\f338";
}
.fa.fa-arrows-h:before {
content: "\f337";
}
.fa.fa-bar-chart:before {
content: "\e0e3";
}
.fa.fa-bar-chart-o:before {
content: "\e0e3";
}
.fa.fa-twitter-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-twitter-square:before {
content: "\f081";
}
.fa.fa-facebook-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-facebook-square:before {
content: "\f082";
}
.fa.fa-gears:before {
content: "\f085";
}
.fa.fa-thumbs-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-thumbs-o-up:before {
content: "\f164";
}
.fa.fa-thumbs-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-thumbs-o-down:before {
content: "\f165";
}
.fa.fa-heart-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-heart-o:before {
content: "\f004";
}
.fa.fa-sign-out:before {
content: "\f2f5";
}
.fa.fa-linkedin-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-linkedin-square:before {
content: "\f08c";
}
.fa.fa-thumb-tack:before {
content: "\f08d";
}
.fa.fa-external-link:before {
content: "\f35d";
}
.fa.fa-sign-in:before {
content: "\f2f6";
}
.fa.fa-github-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-github-square:before {
content: "\f092";
}
.fa.fa-lemon-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-lemon-o:before {
content: "\f094";
}
.fa.fa-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-square-o:before {
content: "\f0c8";
}
.fa.fa-bookmark-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-bookmark-o:before {
content: "\f02e";
}
.fa.fa-twitter {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-facebook {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-facebook:before {
content: "\f39e";
}
.fa.fa-facebook-f {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-facebook-f:before {
content: "\f39e";
}
.fa.fa-github {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-credit-card {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-feed:before {
content: "\f09e";
}
.fa.fa-hdd-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hdd-o:before {
content: "\f0a0";
}
.fa.fa-hand-o-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-o-right:before {
content: "\f0a4";
}
.fa.fa-hand-o-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-o-left:before {
content: "\f0a5";
}
.fa.fa-hand-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-o-up:before {
content: "\f0a6";
}
.fa.fa-hand-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-o-down:before {
content: "\f0a7";
}
.fa.fa-globe:before {
content: "\f57d";
}
.fa.fa-tasks:before {
content: "\f828";
}
.fa.fa-arrows-alt:before {
content: "\f31e";
}
.fa.fa-group:before {
content: "\f0c0";
}
.fa.fa-chain:before {
content: "\f0c1";
}
.fa.fa-cut:before {
content: "\f0c4";
}
.fa.fa-files-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-files-o:before {
content: "\f0c5";
}
.fa.fa-floppy-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-floppy-o:before {
content: "\f0c7";
}
.fa.fa-save {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-save:before {
content: "\f0c7";
}
.fa.fa-navicon:before {
content: "\f0c9";
}
.fa.fa-reorder:before {
content: "\f0c9";
}
.fa.fa-magic:before {
content: "\e2ca";
}
.fa.fa-pinterest {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-pinterest-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-pinterest-square:before {
content: "\f0d3";
}
.fa.fa-google-plus-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-google-plus-square:before {
content: "\f0d4";
}
.fa.fa-google-plus {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-google-plus:before {
content: "\f0d5";
}
.fa.fa-money:before {
content: "\f3d1";
}
.fa.fa-unsorted:before {
content: "\f0dc";
}
.fa.fa-sort-desc:before {
content: "\f0dd";
}
.fa.fa-sort-asc:before {
content: "\f0de";
}
.fa.fa-linkedin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-linkedin:before {
content: "\f0e1";
}
.fa.fa-rotate-left:before {
content: "\f0e2";
}
.fa.fa-legal:before {
content: "\f0e3";
}
.fa.fa-tachometer:before {
content: "\f625";
}
.fa.fa-dashboard:before {
content: "\f625";
}
.fa.fa-comment-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-comment-o:before {
content: "\f075";
}
.fa.fa-comments-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-comments-o:before {
content: "\f086";
}
.fa.fa-flash:before {
content: "\f0e7";
}
.fa.fa-clipboard:before {
content: "\f0ea";
}
.fa.fa-lightbulb-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-lightbulb-o:before {
content: "\f0eb";
}
.fa.fa-exchange:before {
content: "\f362";
}
.fa.fa-cloud-download:before {
content: "\f0ed";
}
.fa.fa-cloud-upload:before {
content: "\f0ee";
}
.fa.fa-bell-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-bell-o:before {
content: "\f0f3";
}
.fa.fa-cutlery:before {
content: "\f2e7";
}
.fa.fa-file-text-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-text-o:before {
content: "\f15c";
}
.fa.fa-building-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-building-o:before {
content: "\f1ad";
}
.fa.fa-hospital-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hospital-o:before {
content: "\f0f8";
}
.fa.fa-tablet:before {
content: "\f3fa";
}
.fa.fa-mobile:before {
content: "\f3cd";
}
.fa.fa-mobile-phone:before {
content: "\f3cd";
}
.fa.fa-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-circle-o:before {
content: "\f111";
}
.fa.fa-mail-reply:before {
content: "\f3e5";
}
.fa.fa-github-alt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-folder-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-folder-o:before {
content: "\f07b";
}
.fa.fa-folder-open-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-folder-open-o:before {
content: "\f07c";
}
.fa.fa-smile-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-smile-o:before {
content: "\f118";
}
.fa.fa-frown-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-frown-o:before {
content: "\f119";
}
.fa.fa-meh-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-meh-o:before {
content: "\f11a";
}
.fa.fa-keyboard-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-keyboard-o:before {
content: "\f11c";
}
.fa.fa-flag-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-flag-o:before {
content: "\f024";
}
.fa.fa-mail-reply-all:before {
content: "\f122";
}
.fa.fa-star-half-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-star-half-o:before {
content: "\f5c0";
}
.fa.fa-star-half-empty {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-star-half-empty:before {
content: "\f5c0";
}
.fa.fa-star-half-full {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-star-half-full:before {
content: "\f5c0";
}
.fa.fa-code-fork:before {
content: "\f126";
}
.fa.fa-chain-broken:before {
content: "\f127";
}
.fa.fa-unlink:before {
content: "\f127";
}
.fa.fa-calendar-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-calendar-o:before {
content: "\f133";
}
.fa.fa-maxcdn {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-html5 {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-css3 {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-unlock-alt:before {
content: "\f09c";
}
.fa.fa-minus-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-minus-square-o:before {
content: "\f146";
}
.fa.fa-level-up:before {
content: "\f3bf";
}
.fa.fa-level-down:before {
content: "\f3be";
}
.fa.fa-pencil-square:before {
content: "\f14b";
}
.fa.fa-external-link-square:before {
content: "\f360";
}
.fa.fa-compass {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-caret-square-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-caret-square-o-down:before {
content: "\f150";
}
.fa.fa-toggle-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-toggle-down:before {
content: "\f150";
}
.fa.fa-caret-square-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-caret-square-o-up:before {
content: "\f151";
}
.fa.fa-toggle-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-toggle-up:before {
content: "\f151";
}
.fa.fa-caret-square-o-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-caret-square-o-right:before {
content: "\f152";
}
.fa.fa-toggle-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-toggle-right:before {
content: "\f152";
}
.fa.fa-eur:before {
content: "\f153";
}
.fa.fa-euro:before {
content: "\f153";
}
.fa.fa-gbp:before {
content: "\f154";
}
.fa.fa-usd:before {
content: "\24";
}
.fa.fa-dollar:before {
content: "\24";
}
.fa.fa-inr:before {
content: "\e1bc";
}
.fa.fa-rupee:before {
content: "\e1bc";
}
.fa.fa-jpy:before {
content: "\f157";
}
.fa.fa-cny:before {
content: "\f157";
}
.fa.fa-rmb:before {
content: "\f157";
}
.fa.fa-yen:before {
content: "\f157";
}
.fa.fa-rub:before {
content: "\f158";
}
.fa.fa-ruble:before {
content: "\f158";
}
.fa.fa-rouble:before {
content: "\f158";
}
.fa.fa-krw:before {
content: "\f159";
}
.fa.fa-won:before {
content: "\f159";
}
.fa.fa-btc {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-bitcoin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-bitcoin:before {
content: "\f15a";
}
.fa.fa-file-text:before {
content: "\f15c";
}
.fa.fa-sort-alpha-asc:before {
content: "\f15d";
}
.fa.fa-sort-alpha-desc:before {
content: "\f881";
}
.fa.fa-sort-amount-asc:before {
content: "\f884";
}
.fa.fa-sort-amount-desc:before {
content: "\f160";
}
.fa.fa-sort-numeric-asc:before {
content: "\f162";
}
.fa.fa-sort-numeric-desc:before {
content: "\f886";
}
.fa.fa-youtube-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-youtube-square:before {
content: "\f431";
}
.fa.fa-youtube {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-xing {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-xing-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-xing-square:before {
content: "\f169";
}
.fa.fa-youtube-play {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-youtube-play:before {
content: "\f167";
}
.fa.fa-dropbox {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-stack-overflow {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-instagram {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-flickr {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-adn {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-bitbucket {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-bitbucket-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-bitbucket-square:before {
content: "\f171";
}
.fa.fa-tumblr {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-tumblr-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-tumblr-square:before {
content: "\f174";
}
.fa.fa-long-arrow-down:before {
content: "\f309";
}
.fa.fa-long-arrow-up:before {
content: "\f30c";
}
.fa.fa-long-arrow-left:before {
content: "\f30a";
}
.fa.fa-long-arrow-right:before {
content: "\f30b";
}
.fa.fa-apple {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-windows {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-android {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-linux {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-dribbble {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-skype {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-foursquare {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-trello {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-gratipay {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-gittip {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-gittip:before {
content: "\f184";
}
.fa.fa-sun-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-sun-o:before {
content: "\f185";
}
.fa.fa-moon-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-moon-o:before {
content: "\f186";
}
.fa.fa-vk {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-weibo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-renren {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-pagelines {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-stack-exchange {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-arrow-circle-o-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-arrow-circle-o-right:before {
content: "\f35a";
}
.fa.fa-arrow-circle-o-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-arrow-circle-o-left:before {
content: "\f359";
}
.fa.fa-caret-square-o-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-caret-square-o-left:before {
content: "\f191";
}
.fa.fa-toggle-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-toggle-left:before {
content: "\f191";
}
.fa.fa-dot-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-dot-circle-o:before {
content: "\f192";
}
.fa.fa-vimeo-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-vimeo-square:before {
content: "\f194";
}
.fa.fa-try:before {
content: "\e2bb";
}
.fa.fa-turkish-lira:before {
content: "\e2bb";
}
.fa.fa-plus-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-plus-square-o:before {
content: "\f0fe";
}
.fa.fa-slack {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-wordpress {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-openid {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-institution:before {
content: "\f19c";
}
.fa.fa-bank:before {
content: "\f19c";
}
.fa.fa-mortar-board:before {
content: "\f19d";
}
.fa.fa-yahoo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-google {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-reddit {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-reddit-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-reddit-square:before {
content: "\f1a2";
}
.fa.fa-stumbleupon-circle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-stumbleupon {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-delicious {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-digg {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-pied-piper-pp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-pied-piper-alt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-drupal {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-joomla {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-behance {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-behance-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-behance-square:before {
content: "\f1b5";
}
.fa.fa-steam {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-steam-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-steam-square:before {
content: "\f1b7";
}
.fa.fa-automobile:before {
content: "\f1b9";
}
.fa.fa-cab:before {
content: "\f1ba";
}
.fa.fa-spotify {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-deviantart {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-soundcloud {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-file-pdf-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-pdf-o:before {
content: "\f1c1";
}
.fa.fa-file-word-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-word-o:before {
content: "\f1c2";
}
.fa.fa-file-excel-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-excel-o:before {
content: "\f1c3";
}
.fa.fa-file-powerpoint-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-powerpoint-o:before {
content: "\f1c4";
}
.fa.fa-file-image-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-image-o:before {
content: "\f1c5";
}
.fa.fa-file-photo-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-photo-o:before {
content: "\f1c5";
}
.fa.fa-file-picture-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-picture-o:before {
content: "\f1c5";
}
.fa.fa-file-archive-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-archive-o:before {
content: "\f1c6";
}
.fa.fa-file-zip-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-zip-o:before {
content: "\f1c6";
}
.fa.fa-file-audio-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-audio-o:before {
content: "\f1c7";
}
.fa.fa-file-sound-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-sound-o:before {
content: "\f1c7";
}
.fa.fa-file-video-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-video-o:before {
content: "\f1c8";
}
.fa.fa-file-movie-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-movie-o:before {
content: "\f1c8";
}
.fa.fa-file-code-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-file-code-o:before {
content: "\f1c9";
}
.fa.fa-vine {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-codepen {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-jsfiddle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-life-bouy:before {
content: "\f1cd";
}
.fa.fa-life-buoy:before {
content: "\f1cd";
}
.fa.fa-life-saver:before {
content: "\f1cd";
}
.fa.fa-support:before {
content: "\f1cd";
}
.fa.fa-circle-o-notch:before {
content: "\f1ce";
}
.fa.fa-rebel {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-ra {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-ra:before {
content: "\f1d0";
}
.fa.fa-resistance {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-resistance:before {
content: "\f1d0";
}
.fa.fa-empire {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-ge {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-ge:before {
content: "\f1d1";
}
.fa.fa-git-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-git-square:before {
content: "\f1d2";
}
.fa.fa-git {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-hacker-news {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-y-combinator-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-y-combinator-square:before {
content: "\f1d4";
}
.fa.fa-yc-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-yc-square:before {
content: "\f1d4";
}
.fa.fa-tencent-weibo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-qq {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-weixin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-wechat {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-wechat:before {
content: "\f1d7";
}
.fa.fa-send:before {
content: "\f1d8";
}
.fa.fa-paper-plane-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-paper-plane-o:before {
content: "\f1d8";
}
.fa.fa-send-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-send-o:before {
content: "\f1d8";
}
.fa.fa-circle-thin {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-circle-thin:before {
content: "\f111";
}
.fa.fa-header:before {
content: "\f1dc";
}
.fa.fa-futbol-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-futbol-o:before {
content: "\f1e3";
}
.fa.fa-soccer-ball-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-soccer-ball-o:before {
content: "\f1e3";
}
.fa.fa-slideshare {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-twitch {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-yelp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-newspaper-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-newspaper-o:before {
content: "\f1ea";
}
.fa.fa-paypal {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-google-wallet {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-cc-visa {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-cc-mastercard {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-cc-discover {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-cc-amex {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-cc-paypal {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-cc-stripe {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-bell-slash-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-bell-slash-o:before {
content: "\f1f6";
}
.fa.fa-trash:before {
content: "\f2ed";
}
.fa.fa-copyright {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-eyedropper:before {
content: "\f1fb";
}
.fa.fa-area-chart:before {
content: "\f1fe";
}
.fa.fa-pie-chart:before {
content: "\f200";
}
.fa.fa-line-chart:before {
content: "\f201";
}
.fa.fa-lastfm {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-lastfm-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-lastfm-square:before {
content: "\f203";
}
.fa.fa-ioxhost {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-angellist {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-cc {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-cc:before {
content: "\f20a";
}
.fa.fa-ils:before {
content: "\f20b";
}
.fa.fa-shekel:before {
content: "\f20b";
}
.fa.fa-sheqel:before {
content: "\f20b";
}
.fa.fa-buysellads {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-connectdevelop {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-dashcube {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-forumbee {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-leanpub {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-sellsy {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-shirtsinbulk {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-simplybuilt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-skyatlas {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-diamond {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-diamond:before {
content: "\f3a5";
}
.fa.fa-transgender:before {
content: "\f224";
}
.fa.fa-intersex:before {
content: "\f224";
}
.fa.fa-transgender-alt:before {
content: "\f225";
}
.fa.fa-facebook-official {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-facebook-official:before {
content: "\f09a";
}
.fa.fa-pinterest-p {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-whatsapp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-hotel:before {
content: "\f236";
}
.fa.fa-viacoin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-medium {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-y-combinator {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-yc {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-yc:before {
content: "\f23b";
}
.fa.fa-optin-monster {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-opencart {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-expeditedssl {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-battery-4:before {
content: "\f240";
}
.fa.fa-battery:before {
content: "\f240";
}
.fa.fa-battery-3:before {
content: "\f241";
}
.fa.fa-battery-2:before {
content: "\f242";
}
.fa.fa-battery-1:before {
content: "\f243";
}
.fa.fa-battery-0:before {
content: "\f244";
}
.fa.fa-object-group {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-object-ungroup {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-sticky-note-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-sticky-note-o:before {
content: "\f249";
}
.fa.fa-cc-jcb {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-cc-diners-club {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-clone {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hourglass-o:before {
content: "\f254";
}
.fa.fa-hourglass-1:before {
content: "\f251";
}
.fa.fa-hourglass-2:before {
content: "\f252";
}
.fa.fa-hourglass-3:before {
content: "\f253";
}
.fa.fa-hand-rock-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-rock-o:before {
content: "\f255";
}
.fa.fa-hand-grab-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-grab-o:before {
content: "\f255";
}
.fa.fa-hand-paper-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-paper-o:before {
content: "\f256";
}
.fa.fa-hand-stop-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-stop-o:before {
content: "\f256";
}
.fa.fa-hand-scissors-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-scissors-o:before {
content: "\f257";
}
.fa.fa-hand-lizard-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-lizard-o:before {
content: "\f258";
}
.fa.fa-hand-spock-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-spock-o:before {
content: "\f259";
}
.fa.fa-hand-pointer-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-pointer-o:before {
content: "\f25a";
}
.fa.fa-hand-peace-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-hand-peace-o:before {
content: "\f25b";
}
.fa.fa-registered {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-creative-commons {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-gg {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-gg-circle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-odnoklassniki {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-odnoklassniki-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-odnoklassniki-square:before {
content: "\f264";
}
.fa.fa-get-pocket {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-wikipedia-w {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-safari {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-chrome {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-firefox {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-opera {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-internet-explorer {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-television:before {
content: "\f26c";
}
.fa.fa-contao {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-500px {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-amazon {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-calendar-plus-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-calendar-plus-o:before {
content: "\f271";
}
.fa.fa-calendar-minus-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-calendar-minus-o:before {
content: "\f272";
}
.fa.fa-calendar-times-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-calendar-times-o:before {
content: "\f273";
}
.fa.fa-calendar-check-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-calendar-check-o:before {
content: "\f274";
}
.fa.fa-map-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-map-o:before {
content: "\f279";
}
.fa.fa-commenting:before {
content: "\f4ad";
}
.fa.fa-commenting-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-commenting-o:before {
content: "\f4ad";
}
.fa.fa-houzz {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-vimeo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-vimeo:before {
content: "\f27d";
}
.fa.fa-black-tie {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-fonticons {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-reddit-alien {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-edge {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-credit-card-alt:before {
content: "\f09d";
}
.fa.fa-codiepie {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-modx {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-fort-awesome {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-usb {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-product-hunt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-mixcloud {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-scribd {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-pause-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-pause-circle-o:before {
content: "\f28b";
}
.fa.fa-stop-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-stop-circle-o:before {
content: "\f28d";
}
.fa.fa-bluetooth {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-bluetooth-b {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-gitlab {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-wpbeginner {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-wpforms {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-envira {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-wheelchair-alt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-wheelchair-alt:before {
content: "\f368";
}
.fa.fa-question-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-question-circle-o:before {
content: "\f059";
}
.fa.fa-volume-control-phone:before {
content: "\f2a0";
}
.fa.fa-asl-interpreting:before {
content: "\f2a3";
}
.fa.fa-deafness:before {
content: "\f2a4";
}
.fa.fa-hard-of-hearing:before {
content: "\f2a4";
}
.fa.fa-glide {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-glide-g {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-signing:before {
content: "\f2a7";
}
.fa.fa-viadeo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-viadeo-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-viadeo-square:before {
content: "\f2aa";
}
.fa.fa-snapchat {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-snapchat-ghost {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-snapchat-ghost:before {
content: "\f2ab";
}
.fa.fa-snapchat-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-snapchat-square:before {
content: "\f2ad";
}
.fa.fa-pied-piper {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-first-order {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-yoast {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-themeisle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-google-plus-official {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-google-plus-official:before {
content: "\f2b3";
}
.fa.fa-google-plus-circle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-google-plus-circle:before {
content: "\f2b3";
}
.fa.fa-font-awesome {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-fa {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-fa:before {
content: "\f2b4";
}
.fa.fa-handshake-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-handshake-o:before {
content: "\f2b5";
}
.fa.fa-envelope-open-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-envelope-open-o:before {
content: "\f2b6";
}
.fa.fa-linode {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-address-book-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-address-book-o:before {
content: "\f2b9";
}
.fa.fa-vcard:before {
content: "\f2bb";
}
.fa.fa-address-card-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-address-card-o:before {
content: "\f2bb";
}
.fa.fa-vcard-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-vcard-o:before {
content: "\f2bb";
}
.fa.fa-user-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-user-circle-o:before {
content: "\f2bd";
}
.fa.fa-user-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-user-o:before {
content: "\f007";
}
.fa.fa-id-badge {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-drivers-license:before {
content: "\f2c2";
}
.fa.fa-id-card-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-id-card-o:before {
content: "\f2c2";
}
.fa.fa-drivers-license-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-drivers-license-o:before {
content: "\f2c2";
}
.fa.fa-quora {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-free-code-camp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-telegram {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-thermometer-4:before {
content: "\f2c7";
}
.fa.fa-thermometer:before {
content: "\f2c7";
}
.fa.fa-thermometer-3:before {
content: "\f2c8";
}
.fa.fa-thermometer-2:before {
content: "\f2c9";
}
.fa.fa-thermometer-1:before {
content: "\f2ca";
}
.fa.fa-thermometer-0:before {
content: "\f2cb";
}
.fa.fa-bathtub:before {
content: "\f2cd";
}
.fa.fa-s15:before {
content: "\f2cd";
}
.fa.fa-window-maximize {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-window-restore {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-times-rectangle:before {
content: "\f410";
}
.fa.fa-window-close-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-window-close-o:before {
content: "\f410";
}
.fa.fa-times-rectangle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-times-rectangle-o:before {
content: "\f410";
}
.fa.fa-bandcamp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-grav {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-etsy {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-imdb {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-ravelry {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-eercast {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-eercast:before {
content: "\f2da";
}
.fa.fa-snowflake-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.fa.fa-snowflake-o:before {
content: "\f2dc";
}
.fa.fa-superpowers {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-wpexplorer {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.fa.fa-meetup {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}@font-face {
font-family: "EssentialIcon";
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/essentialicon/essentialicon.woff) format("woff"),
url(//arosa.capital/wp-content/themes/square-plus/css/fonts/essentialicon/essentialicon.ttf) format("truetype");
font-weight: normal;
font-style: normal;
}
[class^="essential-icon-"],
[class*=" essential-icon-"] {
font-family: 'EssentialIcon' !important;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
font-size: inherit;
text-rendering: auto;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.essential-icon-add:before {
content: "\f100";
}
.essential-icon-add-1:before {
content: "\f101";
}
.essential-icon-add-2:before {
content: "\f102";
}
.essential-icon-add-3:before {
content: "\f103";
}
.essential-icon-agenda:before {
content: "\f104";
}
.essential-icon-alarm:before {
content: "\f105";
}
.essential-icon-alarm-1:before {
content: "\f106";
}
.essential-icon-alarm-clock:before {
content: "\f107";
}
.essential-icon-alarm-clock-1:before {
content: "\f108";
}
.essential-icon-albums:before {
content: "\f109";
}
.essential-icon-app:before {
content: "\f10a";
}
.essential-icon-archive:before {
content: "\f10b";
}
.essential-icon-archive-1:before {
content: "\f10c";
}
.essential-icon-archive-2:before {
content: "\f10d";
}
.essential-icon-archive-3:before {
content: "\f10e";
}
.essential-icon-attachment:before {
content: "\f10f";
}
.essential-icon-back:before {
content: "\f110";
}
.essential-icon-battery:before {
content: "\f111";
}
.essential-icon-battery-1:before {
content: "\f112";
}
.essential-icon-battery-2:before {
content: "\f113";
}
.essential-icon-battery-3:before {
content: "\f114";
}
.essential-icon-battery-4:before {
content: "\f115";
}
.essential-icon-battery-5:before {
content: "\f116";
}
.essential-icon-battery-6:before {
content: "\f117";
}
.essential-icon-battery-7:before {
content: "\f118";
}
.essential-icon-battery-8:before {
content: "\f119";
}
.essential-icon-battery-9:before {
content: "\f11a";
}
.essential-icon-binoculars:before {
content: "\f11b";
}
.essential-icon-blueprint:before {
content: "\f11c";
}
.essential-icon-bluetooth:before {
content: "\f11d";
}
.essential-icon-bluetooth-1:before {
content: "\f11e";
}
.essential-icon-bookmark:before {
content: "\f11f";
}
.essential-icon-bookmark-1:before {
content: "\f120";
}
.essential-icon-briefcase:before {
content: "\f121";
}
.essential-icon-broken-link:before {
content: "\f122";
}
.essential-icon-calculator:before {
content: "\f123";
}
.essential-icon-calculator-1:before {
content: "\f124";
}
.essential-icon-calendar:before {
content: "\f125";
}
.essential-icon-calendar-1:before {
content: "\f126";
}
.essential-icon-calendar-2:before {
content: "\f127";
}
.essential-icon-calendar-3:before {
content: "\f128";
}
.essential-icon-calendar-4:before {
content: "\f129";
}
.essential-icon-calendar-5:before {
content: "\f12a";
}
.essential-icon-calendar-6:before {
content: "\f12b";
}
.essential-icon-calendar-7:before {
content: "\f12c";
}
.essential-icon-checked:before {
content: "\f12d";
}
.essential-icon-checked-1:before {
content: "\f12e";
}
.essential-icon-clock:before {
content: "\f12f";
}
.essential-icon-clock-1:before {
content: "\f130";
}
.essential-icon-close:before {
content: "\f131";
}
.essential-icon-cloud:before {
content: "\f132";
}
.essential-icon-cloud-computing:before {
content: "\f133";
}
.essential-icon-cloud-computing-1:before {
content: "\f134";
}
.essential-icon-cloud-computing-2:before {
content: "\f135";
}
.essential-icon-cloud-computing-3:before {
content: "\f136";
}
.essential-icon-cloud-computing-4:before {
content: "\f137";
}
.essential-icon-cloud-computing-5:before {
content: "\f138";
}
.essential-icon-command:before {
content: "\f139";
}
.essential-icon-compact-disc:before {
content: "\f13a";
}
.essential-icon-compact-disc-1:before {
content: "\f13b";
}
.essential-icon-compact-disc-2:before {
content: "\f13c";
}
.essential-icon-compass:before {
content: "\f13d";
}
.essential-icon-compose:before {
content: "\f13e";
}
.essential-icon-controls:before {
content: "\f13f";
}
.essential-icon-controls-1:before {
content: "\f140";
}
.essential-icon-controls-2:before {
content: "\f141";
}
.essential-icon-controls-3:before {
content: "\f142";
}
.essential-icon-controls-4:before {
content: "\f143";
}
.essential-icon-controls-5:before {
content: "\f144";
}
.essential-icon-controls-6:before {
content: "\f145";
}
.essential-icon-controls-7:before {
content: "\f146";
}
.essential-icon-controls-8:before {
content: "\f147";
}
.essential-icon-controls-9:before {
content: "\f148";
}
.essential-icon-database:before {
content: "\f149";
}
.essential-icon-database-1:before {
content: "\f14a";
}
.essential-icon-database-2:before {
content: "\f14b";
}
.essential-icon-database-3:before {
content: "\f14c";
}
.essential-icon-diamond:before {
content: "\f14d";
}
.essential-icon-diploma:before {
content: "\f14e";
}
.essential-icon-dislike:before {
content: "\f14f";
}
.essential-icon-dislike-1:before {
content: "\f150";
}
.essential-icon-divide:before {
content: "\f151";
}
.essential-icon-divide-1:before {
content: "\f152";
}
.essential-icon-division:before {
content: "\f153";
}
.essential-icon-document:before {
content: "\f154";
}
.essential-icon-download:before {
content: "\f155";
}
.essential-icon-edit:before {
content: "\f156";
}
.essential-icon-edit-1:before {
content: "\f157";
}
.essential-icon-eject:before {
content: "\f158";
}
.essential-icon-eject-1:before {
content: "\f159";
}
.essential-icon-equal:before {
content: "\f15a";
}
.essential-icon-equal-1:before {
content: "\f15b";
}
.essential-icon-equal-2:before {
content: "\f15c";
}
.essential-icon-error:before {
content: "\f15d";
}
.essential-icon-exit:before {
content: "\f15e";
}
.essential-icon-exit-1:before {
content: "\f15f";
}
.essential-icon-exit-2:before {
content: "\f160";
}
.essential-icon-eyeglasses:before {
content: "\f161";
}
.essential-icon-fast-forward:before {
content: "\f162";
}
.essential-icon-fast-forward-1:before {
content: "\f163";
}
.essential-icon-fax:before {
content: "\f164";
}
.essential-icon-file:before {
content: "\f165";
}
.essential-icon-file-1:before {
content: "\f166";
}
.essential-icon-file-2:before {
content: "\f167";
}
.essential-icon-film:before {
content: "\f168";
}
.essential-icon-fingerprint:before {
content: "\f169";
}
.essential-icon-flag:before {
content: "\f16a";
}
.essential-icon-flag-1:before {
content: "\f16b";
}
.essential-icon-flag-2:before {
content: "\f16c";
}
.essential-icon-flag-3:before {
content: "\f16d";
}
.essential-icon-flag-4:before {
content: "\f16e";
}
.essential-icon-focus:before {
content: "\f16f";
}
.essential-icon-folder:before {
content: "\f170";
}
.essential-icon-folder-1:before {
content: "\f171";
}
.essential-icon-folder-10:before {
content: "\f172";
}
.essential-icon-folder-11:before {
content: "\f173";
}
.essential-icon-folder-12:before {
content: "\f174";
}
.essential-icon-folder-13:before {
content: "\f175";
}
.essential-icon-folder-14:before {
content: "\f176";
}
.essential-icon-folder-15:before {
content: "\f177";
}
.essential-icon-folder-16:before {
content: "\f178";
}
.essential-icon-folder-17:before {
content: "\f179";
}
.essential-icon-folder-18:before {
content: "\f17a";
}
.essential-icon-folder-19:before {
content: "\f17b";
}
.essential-icon-folder-2:before {
content: "\f17c";
}
.essential-icon-folder-3:before {
content: "\f17d";
}
.essential-icon-folder-4:before {
content: "\f17e";
}
.essential-icon-folder-5:before {
content: "\f17f";
}
.essential-icon-folder-6:before {
content: "\f180";
}
.essential-icon-folder-7:before {
content: "\f181";
}
.essential-icon-folder-8:before {
content: "\f182";
}
.essential-icon-folder-9:before {
content: "\f183";
}
.essential-icon-forbidden:before {
content: "\f184";
}
.essential-icon-funnel:before {
content: "\f185";
}
.essential-icon-garbage:before {
content: "\f186";
}
.essential-icon-garbage-1:before {
content: "\f187";
}
.essential-icon-garbage-2:before {
content: "\f188";
}
.essential-icon-gift:before {
content: "\f189";
}
.essential-icon-help:before {
content: "\f18a";
}
.essential-icon-hide:before {
content: "\f18b";
}
.essential-icon-hold:before {
content: "\f18c";
}
.essential-icon-home:before {
content: "\f18d";
}
.essential-icon-home-1:before {
content: "\f18e";
}
.essential-icon-home-2:before {
content: "\f18f";
}
.essential-icon-hourglass:before {
content: "\f190";
}
.essential-icon-hourglass-1:before {
content: "\f191";
}
.essential-icon-hourglass-2:before {
content: "\f192";
}
.essential-icon-hourglass-3:before {
content: "\f193";
}
.essential-icon-house:before {
content: "\f194";
}
.essential-icon-id-card:before {
content: "\f195";
}
.essential-icon-id-card-1:before {
content: "\f196";
}
.essential-icon-id-card-2:before {
content: "\f197";
}
.essential-icon-id-card-3:before {
content: "\f198";
}
.essential-icon-id-card-4:before {
content: "\f199";
}
.essential-icon-id-card-5:before {
content: "\f19a";
}
.essential-icon-idea:before {
content: "\f19b";
}
.essential-icon-incoming:before {
content: "\f19c";
}
.essential-icon-infinity:before {
content: "\f19d";
}
.essential-icon-info:before {
content: "\f19e";
}
.essential-icon-internet:before {
content: "\f19f";
}
.essential-icon-key:before {
content: "\f1a0";
}
.essential-icon-lamp:before {
content: "\f1a1";
}
.essential-icon-layers:before {
content: "\f1a2";
}
.essential-icon-layers-1:before {
content: "\f1a3";
}
.essential-icon-like:before {
content: "\f1a4";
}
.essential-icon-like-1:before {
content: "\f1a5";
}
.essential-icon-like-2:before {
content: "\f1a6";
}
.essential-icon-link:before {
content: "\f1a7";
}
.essential-icon-list:before {
content: "\f1a8";
}
.essential-icon-list-1:before {
content: "\f1a9";
}
.essential-icon-lock:before {
content: "\f1aa";
}
.essential-icon-lock-1:before {
content: "\f1ab";
}
.essential-icon-locked:before {
content: "\f1ac";
}
.essential-icon-locked-1:before {
content: "\f1ad";
}
.essential-icon-locked-2:before {
content: "\f1ae";
}
.essential-icon-locked-3:before {
content: "\f1af";
}
.essential-icon-locked-4:before {
content: "\f1b0";
}
.essential-icon-locked-5:before {
content: "\f1b1";
}
.essential-icon-locked-6:before {
content: "\f1b2";
}
.essential-icon-login:before {
content: "\f1b3";
}
.essential-icon-magic-wand:before {
content: "\f1b4";
}
.essential-icon-magnet:before {
content: "\f1b5";
}
.essential-icon-magnet-1:before {
content: "\f1b6";
}
.essential-icon-magnet-2:before {
content: "\f1b7";
}
.essential-icon-map:before {
content: "\f1b8";
}
.essential-icon-map-1:before {
content: "\f1b9";
}
.essential-icon-map-2:before {
content: "\f1ba";
}
.essential-icon-map-location:before {
content: "\f1bb";
}
.essential-icon-megaphone:before {
content: "\f1bc";
}
.essential-icon-megaphone-1:before {
content: "\f1bd";
}
.essential-icon-menu:before {
content: "\f1be";
}
.essential-icon-menu-1:before {
content: "\f1bf";
}
.essential-icon-menu-2:before {
content: "\f1c0";
}
.essential-icon-menu-3:before {
content: "\f1c1";
}
.essential-icon-menu-4:before {
content: "\f1c2";
}
.essential-icon-microphone:before {
content: "\f1c3";
}
.essential-icon-microphone-1:before {
content: "\f1c4";
}
.essential-icon-minus:before {
content: "\f1c5";
}
.essential-icon-minus-1:before {
content: "\f1c6";
}
.essential-icon-more:before {
content: "\f1c7";
}
.essential-icon-more-1:before {
content: "\f1c8";
}
.essential-icon-more-2:before {
content: "\f1c9";
}
.essential-icon-multiply:before {
content: "\f1ca";
}
.essential-icon-multiply-1:before {
content: "\f1cb";
}
.essential-icon-music-player:before {
content: "\f1cc";
}
.essential-icon-music-player-1:before {
content: "\f1cd";
}
.essential-icon-music-player-2:before {
content: "\f1ce";
}
.essential-icon-music-player-3:before {
content: "\f1cf";
}
.essential-icon-mute:before {
content: "\f1d0";
}
.essential-icon-muted:before {
content: "\f1d1";
}
.essential-icon-navigation:before {
content: "\f1d2";
}
.essential-icon-navigation-1:before {
content: "\f1d3";
}
.essential-icon-network:before {
content: "\f1d4";
}
.essential-icon-newspaper:before {
content: "\f1d5";
}
.essential-icon-next:before {
content: "\f1d6";
}
.essential-icon-note:before {
content: "\f1d7";
}
.essential-icon-notebook:before {
content: "\f1d8";
}
.essential-icon-notebook-1:before {
content: "\f1d9";
}
.essential-icon-notebook-2:before {
content: "\f1da";
}
.essential-icon-notebook-3:before {
content: "\f1db";
}
.essential-icon-notebook-4:before {
content: "\f1dc";
}
.essential-icon-notebook-5:before {
content: "\f1dd";
}
.essential-icon-notepad:before {
content: "\f1de";
}
.essential-icon-notepad-1:before {
content: "\f1df";
}
.essential-icon-notepad-2:before {
content: "\f1e0";
}
.essential-icon-notification:before {
content: "\f1e1";
}
.essential-icon-paper-plane:before {
content: "\f1e2";
}
.essential-icon-paper-plane-1:before {
content: "\f1e3";
}
.essential-icon-pause:before {
content: "\f1e4";
}
.essential-icon-pause-1:before {
content: "\f1e5";
}
.essential-icon-percent:before {
content: "\f1e6";
}
.essential-icon-percent-1:before {
content: "\f1e7";
}
.essential-icon-perspective:before {
content: "\f1e8";
}
.essential-icon-photo-camera:before {
content: "\f1e9";
}
.essential-icon-photo-camera-1:before {
content: "\f1ea";
}
.essential-icon-photos:before {
content: "\f1eb";
}
.essential-icon-picture:before {
content: "\f1ec";
}
.essential-icon-picture-1:before {
content: "\f1ed";
}
.essential-icon-picture-2:before {
content: "\f1ee";
}
.essential-icon-pin:before {
content: "\f1ef";
}
.essential-icon-placeholder:before {
content: "\f1f0";
}
.essential-icon-placeholder-1:before {
content: "\f1f1";
}
.essential-icon-placeholder-2:before {
content: "\f1f2";
}
.essential-icon-placeholder-3:before {
content: "\f1f3";
}
.essential-icon-placeholders:before {
content: "\f1f4";
}
.essential-icon-play-button:before {
content: "\f1f5";
}
.essential-icon-play-button-1:before {
content: "\f1f6";
}
.essential-icon-plus:before {
content: "\f1f7";
}
.essential-icon-power:before {
content: "\f1f8";
}
.essential-icon-previous:before {
content: "\f1f9";
}
.essential-icon-price-tag:before {
content: "\f1fa";
}
.essential-icon-print:before {
content: "\f1fb";
}
.essential-icon-push-pin:before {
content: "\f1fc";
}
.essential-icon-radar:before {
content: "\f1fd";
}
.essential-icon-reading:before {
content: "\f1fe";
}
.essential-icon-record:before {
content: "\f1ff";
}
.essential-icon-repeat:before {
content: "\f200";
}
.essential-icon-repeat-1:before {
content: "\f201";
}
.essential-icon-restart:before {
content: "\f202";
}
.essential-icon-resume:before {
content: "\f203";
}
.essential-icon-rewind:before {
content: "\f204";
}
.essential-icon-rewind-1:before {
content: "\f205";
}
.essential-icon-route:before {
content: "\f206";
}
.essential-icon-save:before {
content: "\f207";
}
.essential-icon-search:before {
content: "\f208";
}
.essential-icon-search-1:before {
content: "\f209";
}
.essential-icon-send:before {
content: "\f20a";
}
.essential-icon-server:before {
content: "\f20b";
}
.essential-icon-server-1:before {
content: "\f20c";
}
.essential-icon-server-2:before {
content: "\f20d";
}
.essential-icon-server-3:before {
content: "\f20e";
}
.essential-icon-settings:before {
content: "\f20f";
}
.essential-icon-settings-1:before {
content: "\f210";
}
.essential-icon-settings-2:before {
content: "\f211";
}
.essential-icon-settings-3:before {
content: "\f212";
}
.essential-icon-settings-4:before {
content: "\f213";
}
.essential-icon-settings-5:before {
content: "\f214";
}
.essential-icon-settings-6:before {
content: "\f215";
}
.essential-icon-settings-7:before {
content: "\f216";
}
.essential-icon-settings-8:before {
content: "\f217";
}
.essential-icon-settings-9:before {
content: "\f218";
}
.essential-icon-share:before {
content: "\f219";
}
.essential-icon-share-1:before {
content: "\f21a";
}
.essential-icon-share-2:before {
content: "\f21b";
}
.essential-icon-shuffle:before {
content: "\f21c";
}
.essential-icon-shuffle-1:before {
content: "\f21d";
}
.essential-icon-shutdown:before {
content: "\f21e";
}
.essential-icon-sign:before {
content: "\f21f";
}
.essential-icon-sign-1:before {
content: "\f220";
}
.essential-icon-skip:before {
content: "\f221";
}
.essential-icon-smartphone:before {
content: "\f222";
}
.essential-icon-smartphone-1:before {
content: "\f223";
}
.essential-icon-smartphone-10:before {
content: "\f224";
}
.essential-icon-smartphone-11:before {
content: "\f225";
}
.essential-icon-smartphone-2:before {
content: "\f226";
}
.essential-icon-smartphone-3:before {
content: "\f227";
}
.essential-icon-smartphone-4:before {
content: "\f228";
}
.essential-icon-smartphone-5:before {
content: "\f229";
}
.essential-icon-smartphone-6:before {
content: "\f22a";
}
.essential-icon-smartphone-7:before {
content: "\f22b";
}
.essential-icon-smartphone-8:before {
content: "\f22c";
}
.essential-icon-smartphone-9:before {
content: "\f22d";
}
.essential-icon-speaker:before {
content: "\f22e";
}
.essential-icon-speaker-1:before {
content: "\f22f";
}
.essential-icon-speaker-2:before {
content: "\f230";
}
.essential-icon-speaker-3:before {
content: "\f231";
}
.essential-icon-speaker-4:before {
content: "\f232";
}
.essential-icon-speaker-5:before {
content: "\f233";
}
.essential-icon-speaker-6:before {
content: "\f234";
}
.essential-icon-speaker-7:before {
content: "\f235";
}
.essential-icon-speaker-8:before {
content: "\f236";
}
.essential-icon-spotlight:before {
content: "\f237";
}
.essential-icon-star:before {
content: "\f238";
}
.essential-icon-star-1:before {
content: "\f239";
}
.essential-icon-stop:before {
content: "\f23a";
}
.essential-icon-stop-1:before {
content: "\f23b";
}
.essential-icon-stopwatch:before {
content: "\f23c";
}
.essential-icon-stopwatch-1:before {
content: "\f23d";
}
.essential-icon-stopwatch-2:before {
content: "\f23e";
}
.essential-icon-stopwatch-3:before {
content: "\f23f";
}
.essential-icon-stopwatch-4:before {
content: "\f240";
}
.essential-icon-street:before {
content: "\f241";
}
.essential-icon-street-1:before {
content: "\f242";
}
.essential-icon-substract:before {
content: "\f243";
}
.essential-icon-substract-1:before {
content: "\f244";
}
.essential-icon-success:before {
content: "\f245";
}
.essential-icon-switch:before {
content: "\f246";
}
.essential-icon-switch-1:before {
content: "\f247";
}
.essential-icon-switch-2:before {
content: "\f248";
}
.essential-icon-switch-3:before {
content: "\f249";
}
.essential-icon-switch-4:before {
content: "\f24a";
}
.essential-icon-switch-5:before {
content: "\f24b";
}
.essential-icon-switch-6:before {
content: "\f24c";
}
.essential-icon-switch-7:before {
content: "\f24d";
}
.essential-icon-tabs:before {
content: "\f24e";
}
.essential-icon-tabs-1:before {
content: "\f24f";
}
.essential-icon-target:before {
content: "\f250";
}
.essential-icon-television:before {
content: "\f251";
}
.essential-icon-television-1:before {
content: "\f252";
}
.essential-icon-time:before {
content: "\f253";
}
.essential-icon-trash:before {
content: "\f254";
}
.essential-icon-umbrella:before {
content: "\f255";
}
.essential-icon-unlink:before {
content: "\f256";
}
.essential-icon-unlocked:before {
content: "\f257";
}
.essential-icon-unlocked-1:before {
content: "\f258";
}
.essential-icon-unlocked-2:before {
content: "\f259";
}
.essential-icon-upload:before {
content: "\f25a";
}
.essential-icon-user:before {
content: "\f25b";
}
.essential-icon-user-1:before {
content: "\f25c";
}
.essential-icon-user-2:before {
content: "\f25d";
}
.essential-icon-user-3:before {
content: "\f25e";
}
.essential-icon-user-4:before {
content: "\f25f";
}
.essential-icon-user-5:before {
content: "\f260";
}
.essential-icon-user-6:before {
content: "\f261";
}
.essential-icon-user-7:before {
content: "\f262";
}
.essential-icon-users:before {
content: "\f263";
}
.essential-icon-users-1:before {
content: "\f264";
}
.essential-icon-video-camera:before {
content: "\f265";
}
.essential-icon-video-camera-1:before {
content: "\f266";
}
.essential-icon-video-player:before {
content: "\f267";
}
.essential-icon-video-player-1:before {
content: "\f268";
}
.essential-icon-video-player-2:before {
content: "\f269";
}
.essential-icon-view:before {
content: "\f26a";
}
.essential-icon-view-1:before {
content: "\f26b";
}
.essential-icon-view-2:before {
content: "\f26c";
}
.essential-icon-volume-control:before {
content: "\f26d";
}
.essential-icon-volume-control-1:before {
content: "\f26e";
}
.essential-icon-warning:before {
content: "\f26f";
}
.essential-icon-wifi:before {
content: "\f270";
}
.essential-icon-wifi-1:before {
content: "\f271";
}
.essential-icon-windows:before {
content: "\f272";
}
.essential-icon-windows-1:before {
content: "\f273";
}
.essential-icon-windows-2:before {
content: "\f274";
}
.essential-icon-windows-3:before {
content: "\f275";
}
.essential-icon-windows-4:before {
content: "\f276";
}
.essential-icon-wireless-internet:before {
content: "\f277";
}
.essential-icon-worldwide:before {
content: "\f278";
}
.essential-icon-worldwide-1:before {
content: "\f279";
}
.essential-icon-zoom-in:before {
content: "\f27a";
}
.essential-icon-zoom-out:before {
content: "\f27b";
}@font-face{font-family:dashicons;src:url(//arosa.capital/wp-includes/fonts/dashicons.eot?99ac726223c749443b642ce33df8b800);src:url(//arosa.capital/wp-includes/fonts/dashicons.eot?99ac726223c749443b642ce33df8b800#iefix) format("embedded-opentype"),url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),url(//arosa.capital/wp-includes/fonts/dashicons.ttf?99ac726223c749443b642ce33df8b800) format("truetype");font-weight:400;font-style:normal}.dashicons,.dashicons-before:before{font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;font-size:20px;vertical-align:top;text-align:center;transition:color .1s ease-in}.dashicons-admin-appearance:before{content:"\f100"}.dashicons-admin-collapse:before{content:"\f148"}.dashicons-admin-comments:before{content:"\f101"}.dashicons-admin-customizer:before{content:"\f540"}.dashicons-admin-generic:before{content:"\f111"}.dashicons-admin-home:before{content:"\f102"}.dashicons-admin-links:before{content:"\f103"}.dashicons-admin-media:before{content:"\f104"}.dashicons-admin-multisite:before{content:"\f541"}.dashicons-admin-network:before{content:"\f112"}.dashicons-admin-page:before{content:"\f105"}.dashicons-admin-plugins:before{content:"\f106"}.dashicons-admin-post:before{content:"\f109"}.dashicons-admin-settings:before{content:"\f108"}.dashicons-admin-site-alt:before{content:"\f11d"}.dashicons-admin-site-alt2:before{content:"\f11e"}.dashicons-admin-site-alt3:before{content:"\f11f"}.dashicons-admin-site:before{content:"\f319"}.dashicons-admin-tools:before{content:"\f107"}.dashicons-admin-users:before{content:"\f110"}.dashicons-airplane:before{content:"\f15f"}.dashicons-album:before{content:"\f514"}.dashicons-align-center:before{content:"\f134"}.dashicons-align-full-width:before{content:"\f114"}.dashicons-align-left:before{content:"\f135"}.dashicons-align-none:before{content:"\f138"}.dashicons-align-pull-left:before{content:"\f10a"}.dashicons-align-pull-right:before{content:"\f10b"}.dashicons-align-right:before{content:"\f136"}.dashicons-align-wide:before{content:"\f11b"}.dashicons-amazon:before{content:"\f162"}.dashicons-analytics:before{content:"\f183"}.dashicons-archive:before{content:"\f480"}.dashicons-arrow-down-alt:before{content:"\f346"}.dashicons-arrow-down-alt2:before{content:"\f347"}.dashicons-arrow-down:before{content:"\f140"}.dashicons-arrow-left-alt:before{content:"\f340"}.dashicons-arrow-left-alt2:before{content:"\f341"}.dashicons-arrow-left:before{content:"\f141"}.dashicons-arrow-right-alt:before{content:"\f344"}.dashicons-arrow-right-alt2:before{content:"\f345"}.dashicons-arrow-right:before{content:"\f139"}.dashicons-arrow-up-alt:before{content:"\f342"}.dashicons-arrow-up-alt2:before{content:"\f343"}.dashicons-arrow-up-duplicate:before{content:"\f143"}.dashicons-arrow-up:before{content:"\f142"}.dashicons-art:before{content:"\f309"}.dashicons-awards:before{content:"\f313"}.dashicons-backup:before{content:"\f321"}.dashicons-bank:before{content:"\f16a"}.dashicons-beer:before{content:"\f16c"}.dashicons-bell:before{content:"\f16d"}.dashicons-block-default:before{content:"\f12b"}.dashicons-book-alt:before{content:"\f331"}.dashicons-book:before{content:"\f330"}.dashicons-buddicons-activity:before{content:"\f452"}.dashicons-buddicons-bbpress-logo:before{content:"\f477"}.dashicons-buddicons-buddypress-logo:before{content:"\f448"}.dashicons-buddicons-community:before{content:"\f453"}.dashicons-buddicons-forums:before{content:"\f449"}.dashicons-buddicons-friends:before{content:"\f454"}.dashicons-buddicons-groups:before{content:"\f456"}.dashicons-buddicons-pm:before{content:"\f457"}.dashicons-buddicons-replies:before{content:"\f451"}.dashicons-buddicons-topics:before{content:"\f450"}.dashicons-buddicons-tracking:before{content:"\f455"}.dashicons-building:before{content:"\f512"}.dashicons-businessman:before{content:"\f338"}.dashicons-businessperson:before{content:"\f12e"}.dashicons-businesswoman:before{content:"\f12f"}.dashicons-button:before{content:"\f11a"}.dashicons-calculator:before{content:"\f16e"}.dashicons-calendar-alt:before{content:"\f508"}.dashicons-calendar:before{content:"\f145"}.dashicons-camera-alt:before{content:"\f129"}.dashicons-camera:before{content:"\f306"}.dashicons-car:before{content:"\f16b"}.dashicons-carrot:before{content:"\f511"}.dashicons-cart:before{content:"\f174"}.dashicons-category:before{content:"\f318"}.dashicons-chart-area:before{content:"\f239"}.dashicons-chart-bar:before{content:"\f185"}.dashicons-chart-line:before{content:"\f238"}.dashicons-chart-pie:before{content:"\f184"}.dashicons-clipboard:before{content:"\f481"}.dashicons-clock:before{content:"\f469"}.dashicons-cloud-saved:before{content:"\f137"}.dashicons-cloud-upload:before{content:"\f13b"}.dashicons-cloud:before{content:"\f176"}.dashicons-code-standards:before{content:"\f13a"}.dashicons-coffee:before{content:"\f16f"}.dashicons-color-picker:before{content:"\f131"}.dashicons-columns:before{content:"\f13c"}.dashicons-controls-back:before{content:"\f518"}.dashicons-controls-forward:before{content:"\f519"}.dashicons-controls-pause:before{content:"\f523"}.dashicons-controls-play:before{content:"\f522"}.dashicons-controls-repeat:before{content:"\f515"}.dashicons-controls-skipback:before{content:"\f516"}.dashicons-controls-skipforward:before{content:"\f517"}.dashicons-controls-volumeoff:before{content:"\f520"}.dashicons-controls-volumeon:before{content:"\f521"}.dashicons-cover-image:before{content:"\f13d"}.dashicons-dashboard:before{content:"\f226"}.dashicons-database-add:before{content:"\f170"}.dashicons-database-export:before{content:"\f17a"}.dashicons-database-import:before{content:"\f17b"}.dashicons-database-remove:before{content:"\f17c"}.dashicons-database-view:before{content:"\f17d"}.dashicons-database:before{content:"\f17e"}.dashicons-desktop:before{content:"\f472"}.dashicons-dismiss:before{content:"\f153"}.dashicons-download:before{content:"\f316"}.dashicons-drumstick:before{content:"\f17f"}.dashicons-edit-large:before{content:"\f327"}.dashicons-edit-page:before{content:"\f186"}.dashicons-edit:before{content:"\f464"}.dashicons-editor-aligncenter:before{content:"\f207"}.dashicons-editor-alignleft:before{content:"\f206"}.dashicons-editor-alignright:before{content:"\f208"}.dashicons-editor-bold:before{content:"\f200"}.dashicons-editor-break:before{content:"\f474"}.dashicons-editor-code-duplicate:before{content:"\f494"}.dashicons-editor-code:before{content:"\f475"}.dashicons-editor-contract:before{content:"\f506"}.dashicons-editor-customchar:before{content:"\f220"}.dashicons-editor-expand:before{content:"\f211"}.dashicons-editor-help:before{content:"\f223"}.dashicons-editor-indent:before{content:"\f222"}.dashicons-editor-insertmore:before{content:"\f209"}.dashicons-editor-italic:before{content:"\f201"}.dashicons-editor-justify:before{content:"\f214"}.dashicons-editor-kitchensink:before{content:"\f212"}.dashicons-editor-ltr:before{content:"\f10c"}.dashicons-editor-ol-rtl:before{content:"\f12c"}.dashicons-editor-ol:before{content:"\f204"}.dashicons-editor-outdent:before{content:"\f221"}.dashicons-editor-paragraph:before{content:"\f476"}.dashicons-editor-paste-text:before{content:"\f217"}.dashicons-editor-paste-word:before{content:"\f216"}.dashicons-editor-quote:before{content:"\f205"}.dashicons-editor-removeformatting:before{content:"\f218"}.dashicons-editor-rtl:before{content:"\f320"}.dashicons-editor-spellcheck:before{content:"\f210"}.dashicons-editor-strikethrough:before{content:"\f224"}.dashicons-editor-table:before{content:"\f535"}.dashicons-editor-textcolor:before{content:"\f215"}.dashicons-editor-ul:before{content:"\f203"}.dashicons-editor-underline:before{content:"\f213"}.dashicons-editor-unlink:before{content:"\f225"}.dashicons-editor-video:before{content:"\f219"}.dashicons-ellipsis:before{content:"\f11c"}.dashicons-email-alt:before{content:"\f466"}.dashicons-email-alt2:before{content:"\f467"}.dashicons-email:before{content:"\f465"}.dashicons-embed-audio:before{content:"\f13e"}.dashicons-embed-generic:before{content:"\f13f"}.dashicons-embed-photo:before{content:"\f144"}.dashicons-embed-post:before{content:"\f146"}.dashicons-embed-video:before{content:"\f149"}.dashicons-excerpt-view:before{content:"\f164"}.dashicons-exit:before{content:"\f14a"}.dashicons-external:before{content:"\f504"}.dashicons-facebook-alt:before{content:"\f305"}.dashicons-facebook:before{content:"\f304"}.dashicons-feedback:before{content:"\f175"}.dashicons-filter:before{content:"\f536"}.dashicons-flag:before{content:"\f227"}.dashicons-food:before{content:"\f187"}.dashicons-format-aside:before{content:"\f123"}.dashicons-format-audio:before{content:"\f127"}.dashicons-format-chat:before{content:"\f125"}.dashicons-format-gallery:before{content:"\f161"}.dashicons-format-image:before{content:"\f128"}.dashicons-format-quote:before{content:"\f122"}.dashicons-format-status:before{content:"\f130"}.dashicons-format-video:before{content:"\f126"}.dashicons-forms:before{content:"\f314"}.dashicons-fullscreen-alt:before{content:"\f188"}.dashicons-fullscreen-exit-alt:before{content:"\f189"}.dashicons-games:before{content:"\f18a"}.dashicons-google:before{content:"\f18b"}.dashicons-googleplus:before{content:"\f462"}.dashicons-grid-view:before{content:"\f509"}.dashicons-groups:before{content:"\f307"}.dashicons-hammer:before{content:"\f308"}.dashicons-heading:before{content:"\f10e"}.dashicons-heart:before{content:"\f487"}.dashicons-hidden:before{content:"\f530"}.dashicons-hourglass:before{content:"\f18c"}.dashicons-html:before{content:"\f14b"}.dashicons-id-alt:before{content:"\f337"}.dashicons-id:before{content:"\f336"}.dashicons-image-crop:before{content:"\f165"}.dashicons-image-filter:before{content:"\f533"}.dashicons-image-flip-horizontal:before{content:"\f169"}.dashicons-image-flip-vertical:before{content:"\f168"}.dashicons-image-rotate-left:before{content:"\f166"}.dashicons-image-rotate-right:before{content:"\f167"}.dashicons-image-rotate:before{content:"\f531"}.dashicons-images-alt:before{content:"\f232"}.dashicons-images-alt2:before{content:"\f233"}.dashicons-index-card:before{content:"\f510"}.dashicons-info-outline:before{content:"\f14c"}.dashicons-info:before{content:"\f348"}.dashicons-insert-after:before{content:"\f14d"}.dashicons-insert-before:before{content:"\f14e"}.dashicons-insert:before{content:"\f10f"}.dashicons-instagram:before{content:"\f12d"}.dashicons-laptop:before{content:"\f547"}.dashicons-layout:before{content:"\f538"}.dashicons-leftright:before{content:"\f229"}.dashicons-lightbulb:before{content:"\f339"}.dashicons-linkedin:before{content:"\f18d"}.dashicons-list-view:before{content:"\f163"}.dashicons-location-alt:before{content:"\f231"}.dashicons-location:before{content:"\f230"}.dashicons-lock-duplicate:before{content:"\f315"}.dashicons-lock:before{content:"\f160"}.dashicons-marker:before{content:"\f159"}.dashicons-media-archive:before{content:"\f501"}.dashicons-media-audio:before{content:"\f500"}.dashicons-media-code:before{content:"\f499"}.dashicons-media-default:before{content:"\f498"}.dashicons-media-document:before{content:"\f497"}.dashicons-media-interactive:before{content:"\f496"}.dashicons-media-spreadsheet:before{content:"\f495"}.dashicons-media-text:before{content:"\f491"}.dashicons-media-video:before{content:"\f490"}.dashicons-megaphone:before{content:"\f488"}.dashicons-menu-alt:before{content:"\f228"}.dashicons-menu-alt2:before{content:"\f329"}.dashicons-menu-alt3:before{content:"\f349"}.dashicons-menu:before{content:"\f333"}.dashicons-microphone:before{content:"\f482"}.dashicons-migrate:before{content:"\f310"}.dashicons-minus:before{content:"\f460"}.dashicons-money-alt:before{content:"\f18e"}.dashicons-money:before{content:"\f526"}.dashicons-move:before{content:"\f545"}.dashicons-nametag:before{content:"\f484"}.dashicons-networking:before{content:"\f325"}.dashicons-no-alt:before{content:"\f335"}.dashicons-no:before{content:"\f158"}.dashicons-open-folder:before{content:"\f18f"}.dashicons-palmtree:before{content:"\f527"}.dashicons-paperclip:before{content:"\f546"}.dashicons-pdf:before{content:"\f190"}.dashicons-performance:before{content:"\f311"}.dashicons-pets:before{content:"\f191"}.dashicons-phone:before{content:"\f525"}.dashicons-pinterest:before{content:"\f192"}.dashicons-playlist-audio:before{content:"\f492"}.dashicons-playlist-video:before{content:"\f493"}.dashicons-plugins-checked:before{content:"\f485"}.dashicons-plus-alt:before{content:"\f502"}.dashicons-plus-alt2:before{content:"\f543"}.dashicons-plus:before{content:"\f132"}.dashicons-podio:before{content:"\f19c"}.dashicons-portfolio:before{content:"\f322"}.dashicons-post-status:before{content:"\f173"}.dashicons-pressthis:before{content:"\f157"}.dashicons-printer:before{content:"\f193"}.dashicons-privacy:before{content:"\f194"}.dashicons-products:before{content:"\f312"}.dashicons-randomize:before{content:"\f503"}.dashicons-reddit:before{content:"\f195"}.dashicons-redo:before{content:"\f172"}.dashicons-remove:before{content:"\f14f"}.dashicons-rest-api:before{content:"\f124"}.dashicons-rss:before{content:"\f303"}.dashicons-saved:before{content:"\f15e"}.dashicons-schedule:before{content:"\f489"}.dashicons-screenoptions:before{content:"\f180"}.dashicons-search:before{content:"\f179"}.dashicons-share-alt:before{content:"\f240"}.dashicons-share-alt2:before{content:"\f242"}.dashicons-share:before{content:"\f237"}.dashicons-shield-alt:before{content:"\f334"}.dashicons-shield:before{content:"\f332"}.dashicons-shortcode:before{content:"\f150"}.dashicons-slides:before{content:"\f181"}.dashicons-smartphone:before{content:"\f470"}.dashicons-smiley:before{content:"\f328"}.dashicons-sort:before{content:"\f156"}.dashicons-sos:before{content:"\f468"}.dashicons-spotify:before{content:"\f196"}.dashicons-star-empty:before{content:"\f154"}.dashicons-star-filled:before{content:"\f155"}.dashicons-star-half:before{content:"\f459"}.dashicons-sticky:before{content:"\f537"}.dashicons-store:before{content:"\f513"}.dashicons-superhero-alt:before{content:"\f197"}.dashicons-superhero:before{content:"\f198"}.dashicons-table-col-after:before{content:"\f151"}.dashicons-table-col-before:before{content:"\f152"}.dashicons-table-col-delete:before{content:"\f15a"}.dashicons-table-row-after:before{content:"\f15b"}.dashicons-table-row-before:before{content:"\f15c"}.dashicons-table-row-delete:before{content:"\f15d"}.dashicons-tablet:before{content:"\f471"}.dashicons-tag:before{content:"\f323"}.dashicons-tagcloud:before{content:"\f479"}.dashicons-testimonial:before{content:"\f473"}.dashicons-text-page:before{content:"\f121"}.dashicons-text:before{content:"\f478"}.dashicons-thumbs-down:before{content:"\f542"}.dashicons-thumbs-up:before{content:"\f529"}.dashicons-tickets-alt:before{content:"\f524"}.dashicons-tickets:before{content:"\f486"}.dashicons-tide:before{content:"\f10d"}.dashicons-translation:before{content:"\f326"}.dashicons-trash:before{content:"\f182"}.dashicons-twitch:before{content:"\f199"}.dashicons-twitter-alt:before{content:"\f302"}.dashicons-twitter:before{content:"\f301"}.dashicons-undo:before{content:"\f171"}.dashicons-universal-access-alt:before{content:"\f507"}.dashicons-universal-access:before{content:"\f483"}.dashicons-unlock:before{content:"\f528"}.dashicons-update-alt:before{content:"\f113"}.dashicons-update:before{content:"\f463"}.dashicons-upload:before{content:"\f317"}.dashicons-vault:before{content:"\f178"}.dashicons-video-alt:before{content:"\f234"}.dashicons-video-alt2:before{content:"\f235"}.dashicons-video-alt3:before{content:"\f236"}.dashicons-visibility:before{content:"\f177"}.dashicons-warning:before{content:"\f534"}.dashicons-welcome-add-page:before{content:"\f133"}.dashicons-welcome-comments:before{content:"\f117"}.dashicons-welcome-learn-more:before{content:"\f118"}.dashicons-welcome-view-site:before{content:"\f115"}.dashicons-welcome-widgets-menus:before{content:"\f116"}.dashicons-welcome-write-blog:before{content:"\f119"}.dashicons-whatsapp:before{content:"\f19a"}.dashicons-wordpress-alt:before{content:"\f324"}.dashicons-wordpress:before{content:"\f120"}.dashicons-xing:before{content:"\f19d"}.dashicons-yes-alt:before{content:"\f12a"}.dashicons-yes:before{content:"\f147"}.dashicons-youtube:before{content:"\f19b"}.dashicons-editor-distractionfree:before{content:"\f211"}.dashicons-exerpt-view:before{content:"\f164"}.dashicons-format-links:before{content:"\f103"}.dashicons-format-standard:before{content:"\f109"}.dashicons-post-trash:before{content:"\f182"}.dashicons-share1:before{content:"\f237"}.dashicons-welcome-edit-page:before{content:"\f119"}#preloader-1 {
height: 200px;
width: 200px;
}
#preloader-1 .object {
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
position: absolute;
border-left: 5px solid #FFF;
border-right: 5px solid #FFF;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
-webkit-animation: preloader-1 2s infinite;
animation: preloader-1 2s infinite;
}
#preloader-1 #object_one {
left: 75px;
top: 75px;
width: 50px;
height: 50px;
}
#preloader-1 #object_two {
left: 65px;
top: 65px;
width: 70px;
height: 70px;
-webkit-animation-delay: 0.1s;
animation-delay: 0.1s;
}
#preloader-1 #object_three {
left: 55px;
top: 55px;
width: 90px;
height: 90px;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#preloader-1 #object_four {
left: 45px;
top: 45px;
width: 110px;
height: 110px;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
@-webkit-keyframes preloader-1 {
50% {
-ms-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
100% {
-ms-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes preloader-1 {
50% {
-ms-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
100% {
-ms-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
#preloader-2 {
height: 150px;
width: 150px;
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
#preloader-2 .object {
width: 20px;
height: 20px;
background-color: #FFF;
position: absolute;
left: 65px;
top: 65px;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
}
#preloader-2 .object:nth-child(2n+0) {
margin-right: 0px;
}
#preloader-2 #object_one {
-webkit-animation: preloader2_object_one 2s infinite;
animation: preloader2_object_one 2s infinite;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#preloader-2 #object_two {
-webkit-animation: preloader2_object_two 2s infinite;
animation: preloader2_object_two 2s infinite;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
#preloader-2 #object_three {
-webkit-animation: preloader2_object_three 2s infinite;
animation: preloader2_object_three 2s infinite;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
#preloader-2 #object_four {
-webkit-animation: preloader2_object_four 2s infinite;
animation: preloader2_object_four 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#preloader-2 #object_five {
-webkit-animation: preloader2_object_five 2s infinite;
animation: preloader2_object_five 2s infinite;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
#preloader-2 #object_six {
-webkit-animation: preloader2_object_six 2s infinite;
animation: preloader2_object_six 2s infinite;
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
#preloader-2 #object_seven {
-webkit-animation: preloader2_object_seven 2s infinite;
animation: preloader2_object_seven 2s infinite;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#preloader-2 #object_eight {
-webkit-animation: preloader2_object_eight 2s infinite;
animation: preloader2_object_eight 2s infinite;
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
#preloader-2 #object_big {
position: absolute;
width: 50px;
height: 50px;
left: 50px;
top: 50px;
-webkit-animation: preloader2_object_big 2s infinite;
animation: preloader2_object_big 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
@-webkit-keyframes preloader2_object_big {
50% {
-webkit-transform: scale(0.5);
}
}
@keyframes preloader2_object_big {
50% {
transform: scale(0.5);
-webkit-transform: scale(0.5);
}
}
@-webkit-keyframes preloader2_object_one {
50% {
-webkit-transform: translate(-65px, -65px);
}
}
@keyframes preloader2_object_one {
50% {
transform: translate(-65px, -65px);
-webkit-transform: translate(-65px, -65px);
}
}
@-webkit-keyframes preloader2_object_two {
50% {
-webkit-transform: translate(0, -65px);
}
}
@keyframes preloader2_object_two {
50% {
transform: translate(0, -65px);
-webkit-transform: translate(0, -65px);
}
}
@-webkit-keyframes preloader2_object_three {
50% {
-webkit-transform: translate(65px, -65px);
}
}
@keyframes preloader2_object_three {
50% {
transform: translate(65px, -65px);
-webkit-transform: translate(65px, -65px);
}
}
@-webkit-keyframes preloader2_object_four {
50% {
-webkit-transform: translate(65px, 0);
}
}
@keyframes preloader2_object_four {
50% {
transform: translate(65px, 0);
-webkit-transform: translate(65px, 0);
}
}
@-webkit-keyframes preloader2_object_five {
50% {
-webkit-transform: translate(65px, 65px);
}
}
@keyframes preloader2_object_five {
50% {
transform: translate(65px, 65px);
-webkit-transform: translate(65px, 65px);
}
}
@-webkit-keyframes preloader2_object_six {
50% {
-webkit-transform: translate(0, 65px);
}
}
@keyframes preloader2_object_six {
50% {
transform: translate(0, 65px);
-webkit-transform: translate(0, 65px);
}
}
@-webkit-keyframes preloader2_object_seven {
50% {
-webkit-transform: translate(-65px, 65px);
}
}
@keyframes preloader2_object_seven {
50% {
transform: translate(-65px, 65px);
-webkit-transform: translate(-65px, 65px);
}
}
@-webkit-keyframes preloader2_object_eight {
50% {
-webkit-transform: translate(-65px, 0);
}
}
@keyframes preloader2_object_eight {
50% {
transform: translate(-65px, 0);
-webkit-transform: translate(-65px, 0);
}
}
#preloader-3 {
height: 50px;
width: 300px;
}
#preloader-3 .object {
width: 18px;
height: 18px;
background-color: #FFF;
float: left;
margin-top: 15px;
margin-right: 15px;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
-webkit-animation: preloader_3_object 1s infinite;
animation: preloader_3_object 1s infinite;
}
#preloader-3 .object:last-child {
margin-right: 0px;
}
#preloader-3 .object:nth-child(9) {
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
#preloader-3 .object:nth-child(8) {
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#preloader-3 .object:nth-child(7) {
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
#preloader-3 .object:nth-child(6) {
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
#preloader-3 .object:nth-child(5) {
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#preloader-3 .object:nth-child(4) {
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
#preloader-3 .object:nth-child(3) {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
#preloader-3 .object:nth-child(2) {
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
@-webkit-keyframes preloader_3_object {
50% {
-ms-transform: translate(0, -50px);
-webkit-transform: translate(0, -50px);
transform: translate(0, -50px);
}
}
@keyframes preloader_3_object {
50% {
-ms-transform: translate(0, -50px);
-webkit-transform: translate(0, -50px);
transform: translate(0, -50px);
}
}
#preloader-4 {
height: 60px;
width: 60px;
-ms-transform: rotate(0deg) !important;
-webkit-transform: rotate(0deg) !important;
transform: rotate(0deg) !important;
margin-top: -30px;
margin-left: -30px;
-webkit-animation: preloader_4 1s infinite;
animation: preloader_4 1s infinite;
}
#preloader-4 .object {
width: 20px;
height: 20px;
background-color: #FFF;
float: left;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
margin-right: 20px;
margin-bottom: 20px;
}
#preloader-4 .object:nth-child(2n+0) {
margin-right: 0px;
}
#preloader-4 #object_one {
-webkit-animation: preloader_4_object_one 1s infinite;
animation: preloader_4_object_one 1s infinite;
}
#preloader-4 #object_two {
-webkit-animation: preloader_4_object_two 1s infinite;
animation: preloader_4_object_two 1s infinite;
}
#preloader-4 #object_three {
-webkit-animation: preloader_4_object_three 1s infinite;
animation: preloader_4_object_three 1s infinite;
}
#preloader-4 #object_four {
-webkit-animation: preloader_4_object_four 1s infinite;
animation: preloader_4_object_four 1s infinite;
}
@-webkit-keyframes preloader_4 {
100% {
-ms-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes preloader_4 {
100% {
-ms-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes preloader_4_object_one {
50% {
-ms-transform: translate(20px, 20px);
-webkit-transform: translate(20px, 20px);
transform: translate(20px, 20px);
}
}
@keyframes preloader_4_object_one {
50% {
-ms-transform: translate(20px, 20px);
-webkit-transform: translate(20px, 20px);
transform: translate(20px, 20px);
}
}
@-webkit-keyframes preloader_4_object_two {
50% {
-ms-transform: translate(-20px, 20px);
-webkit-transform: translate(-20px, 20px);
transform: translate(-20px, 20px);
}
}
@keyframes preloader_4_object_two {
50% {
-ms-transform: translate(-20px, 20px);
-webkit-transform: translate(-20px, 20px);
transform: translate(-20px, 20px);
}
}
@-webkit-keyframes preloader_4_object_three {
50% {
-ms-transform: translate(20px, -20px);
-webkit-transform: translate(20px, -20px);
transform: translate(20px, -20px);
}
}
@keyframes preloader_4_object_three {
50% {
-ms-transform: translate(20px, -20px);
-webkit-transform: translate(20px, -20px);
transform: translate(20px, -20px);
}
}
@-webkit-keyframes preloader_4_object_four {
50% {
-ms-transform: translate(-20px, -20px);
-webkit-transform: translate(-20px, -20px);
transform: translate(-20px, -20px);
}
}
@keyframes preloader_4_object_four {
50% {
-ms-transform: translate(-20px, -20px);
-webkit-transform: translate(-20px, -20px);
transform: translate(-20px, -20px);
}
}
#preloader-5 {
height: 20px;
width: 140px;
margin-top: -10px;
margin-left: -70px;
-ms-transform: rotate(0deg) !important;
-webkit-transform: rotate(0deg) !important;
transform: rotate(0deg) !important;
-webkit-animation: preloader_5 1s infinite;
animation: preloader_5 1s infinite;
}
#preloader-5 .object {
width: 20px;
height: 20px;
background-color: #FFF;
float: left;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
margin-right: 20px;
margin-bottom: 20px;
}
#preloader-5 .object:last-child {
margin-right: 0px;
}
#preloader-5 #object_one {
-webkit-animation: preloader_5_object_one 1s infinite;
animation: preloader_5_object_one 1s infinite;
}
#preloader-5 #object_two {
-webkit-animation: preloader_5_object_two 1s infinite;
animation: preloader_5_object_two 1s infinite;
}
#preloader-5 #object_three {
-webkit-animation: preloader_5_object_three 1s infinite;
animation: preloader_5_object_three 1s infinite;
}
#preloader-5 #object_four {
-webkit-animation: preloader_5_object_four 1s infinite;
animation: preloader_5_object_four 1s infinite;
}
@-webkit-keyframes preloader_5 {
100% {
-ms-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes preloader_5 {
100% {
-ms-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes preloader_5_object_one {
50% {
-ms-transform: translate(20px, 20px);
-webkit-transform: translate(20px, 20px);
transform: translate(20px, 20px);
}
}
@keyframes preloader_5_object_one {
50% {
-ms-transform: translate(20px, 20px);
-webkit-transform: translate(20px, 20px);
transform: translate(20px, 20px);
}
}
@-webkit-keyframes preloader_5_object_two {
50% {
-ms-transform: translate(-20px, 20px);
-webkit-transform: translate(-20px, 20px);
transform: translate(-20px, 20px);
}
}
@keyframes preloader_5_object_two {
50% {
-ms-transform: translate(-20px, 20px);
-webkit-transform: translate(-20px, 20px);
transform: translate(-20px, 20px);
}
}
@-webkit-keyframes preloader_5_object_three {
50% {
-ms-transform: translate(20px, -20px);
-webkit-transform: translate(20px, -20px);
transform: translate(20px, -20px);
}
}
@keyframes preloader_5_object_three {
50% {
-ms-transform: translate(20px, -20px);
-webkit-transform: translate(20px, -20px);
transform: translate(20px, -20px);
}
}
@-webkit-keyframes preloader_5_object_four {
50% {
-ms-transform: translate(-20px, -20px);
-webkit-transform: translate(-20px, -20px);
transform: translate(-20px, -20px);
}
}
@keyframes preloader_5_object_four {
50% {
-ms-transform: translate(-20px, -20px);
-webkit-transform: translate(-20px, -20px);
transform: translate(-20px, -20px);
}
}
#preloader-6 {
height: 20px;
width: 100px;
}
#preloader-6 .object {
width: 20px;
height: 20px;
background-color: #FFF;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
margin-right: 20px;
margin-bottom: 20px;
position: absolute;
}
#preloader-6 #object_one {
-webkit-animation: preloader_6_object 2s linear infinite;
animation: preloader_6_object 2s linear infinite;
}
#preloader-6 #object_two {
-webkit-animation: preloader_6_object 2s linear infinite -.4s;
animation: preloader_6_object 2s linear infinite -.4s;
}
#preloader-6 #object_three {
-webkit-animation: preloader_6_object 2s linear infinite -.8s;
animation: preloader_6_object 2s linear infinite -.8s;
}
#preloader-6 #object_four {
-webkit-animation: preloader_6_object 2s linear infinite -1.2s;
animation: preloader_6_object 2s linear infinite -1.2s;
}
#preloader-6 #object_five {
-webkit-animation: preloader_6_object 2s linear infinite -1.6s;
animation: preloader_6_object 2s linear infinite -1.6s;
}
@-webkit-keyframes preloader_6_object {
0% {
left: 100px;
top: 0
}
80% {
left: 0;
top: 0;
}
85% {
left: 0;
top: -20px;
width: 20px;
height: 20px;
}
90% {
width: 40px;
height: 15px;
}
95% {
left: 100px;
top: -20px;
width: 20px;
height: 20px;
}
100% {
left: 100px;
top: 0;
}
}
@keyframes preloader_6_object {
0% {
left: 100px;
top: 0
}
80% {
left: 0;
top: 0;
}
85% {
left: 0;
top: -20px;
width: 20px;
height: 20px;
}
90% {
width: 40px;
height: 15px;
}
95% {
left: 100px;
top: -20px;
width: 20px;
height: 20px;
}
100% {
left: 100px;
top: 0;
}
}
#preloader-7 {
height: 150px;
width: 150px;
margin-top: -75px;
margin-left: -75px;
-ms-transform: rotate(45deg) !important;
-webkit-transform: rotate(45deg) !important;
transform: rotate(45deg) !important;
}
#preloader-7 .object {
width: 20px;
height: 20px;
background-color: #FFF;
position: absolute;
left: 65px;
top: 65px;
}
#preloader-7 .object:nth-child(2n+0) {
margin-right: 0px;
}
#preloader-7 #object_one {
-webkit-animation: preloader_7_object_one 2s infinite;
animation: preloader_7_object_one 2s infinite;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#preloader-7 #object_two {
-webkit-animation: preloader_7_object_two 2s infinite;
animation: preloader_7_object_two 2s infinite;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
#preloader-7 #object_three {
-webkit-animation: preloader_7_object_three 2s infinite;
animation: preloader_7_object_three 2s infinite;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
#preloader-7 #object_four {
-webkit-animation: preloader_7_object_four 2s infinite;
animation: preloader_7_object_four 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#preloader-7 #object_five {
-webkit-animation: preloader_7_object_five 2s infinite;
animation: preloader_7_object_five 2s infinite;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
#preloader-7 #object_six {
-webkit-animation: preloader_7_object_six 2s infinite;
animation: preloader_7_object_six 2s infinite;
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
#preloader-7 #object_seven {
-webkit-animation: preloader_7_object_seven 2s infinite;
animation: preloader_7_object_seven 2s infinite;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#preloader-7 #object_eight {
-webkit-animation: preloader_7_object_eight 2s infinite;
animation: preloader_7_object_eight 2s infinite;
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
#preloader-7 #object_big {
position: absolute;
width: 50px;
height: 50px;
left: 50px;
top: 50px;
-webkit-animation: preloader_7_object_big 2s infinite;
animation: preloader_7_object_big 2s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
@-webkit-keyframes preloader_7_object_big {
50% {
-webkit-transform: scale(0.5);
}
}
@keyframes preloader_7_object_big {
50% {
transform: scale(0.5);
-webkit-transform: scale(0.5);
}
}
@-webkit-keyframes preloader_7_object_one {
50% {
-webkit-transform: translate(-65px, -65px);
}
}
@keyframes preloader_7_object_one {
50% {
transform: translate(-65px, -65px);
-webkit-transform: translate(-65px, -65px);
}
}
@-webkit-keyframes preloader_7_object_two {
50% {
-webkit-transform: translate(0, -65px);
}
}
@keyframes preloader_7_object_two {
50% {
transform: translate(0, -65px);
-webkit-transform: translate(0, -65px);
}
}
@-webkit-keyframes preloader_7_object_three {
50% {
-webkit-transform: translate(65px, -65px);
}
}
@keyframes preloader_7_object_three {
50% {
transform: translate(65px, -65px);
-webkit-transform: translate(65px, -65px);
}
}
@-webkit-keyframes preloader_7_object_four {
50% {
-webkit-transform: translate(65px, 0);
}
}
@keyframes preloader_7_object_four {
50% {
transform: translate(65px, 0);
-webkit-transform: translate(65px, 0);
}
}
@-webkit-keyframes preloader_7_object_five {
50% {
-webkit-transform: translate(65px, 65px);
}
}
@keyframes preloader_7_object_five {
50% {
transform: translate(65px, 65px);
-webkit-transform: translate(65px, 65px);
}
}
@-webkit-keyframes preloader_7_object_six {
50% {
-webkit-transform: translate(0, 65px);
}
}
@keyframes preloader_7_object_six {
50% {
transform: translate(0, 65px);
-webkit-transform: translate(0, 65px);
}
}
@-webkit-keyframes preloader_7_object_seven {
50% {
-webkit-transform: translate(-65px, 65px);
}
}
@keyframes preloader_7_object_seven {
50% {
transform: translate(-65px, 65px);
-webkit-transform: translate(-65px, 65px);
}
}
@-webkit-keyframes preloader_7_object_eight {
50% {
-webkit-transform: translate(-65px, 0);
}
}
@keyframes preloader_7_object_eight {
50% {
transform: translate(-65px, 0);
-webkit-transform: translate(-65px, 0);
}
}
#preloader-8 {
height: 200px;
width: 200px;
}
#preloader-8 .object {
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0);
margin-right: auto;
margin-left: auto;
border: 4px solid #FFF;
left: 73px;
top: 73px;
position: absolute;
}
#preloader-8 #first_object {
-webkit-animation: first_object_animate 1s infinite ease-in-out;
animation: first_object_animate 1s infinite ease-in-out;
}
#preloader-8 #second_object {
-webkit-animation: second_object 1s forwards, second_object_animate 1s infinite ease-in-out;
animation: second_object 1s forwards, second_object_animate 1s infinite ease-in-out;
}
#preloader-8 #third_object {
-webkit-animation: third_object 1s forwards, third_object_animate 1s infinite ease-in-out;
animation: third_object 1s forwards, third_object_animate 1s infinite ease-in-out;
}
@-webkit-keyframes second_object {
100% {
width: 100px;
height: 100px;
left: 48px;
top: 48px;
}
}
@keyframes second_object {
100% {
width: 100px;
height: 100px;
left: 48px;
top: 48px;
}
}
@-webkit-keyframes third_object {
100% {
width: 150px;
height: 150px;
left: 23px;
top: 23px;
}
}
@keyframes third_object {
100% {
width: 150px;
height: 150px;
left: 23px;
top: 23px;
}
}
@-webkit-keyframes first_object_animate {
0% {
-webkit-transform: perspective(100px);
}
50% {
-webkit-transform: perspective(100px) rotateY(-180deg);
}
100% {
-webkit-transform: perspective(100px) rotateY(-180deg) rotateX(-180deg);
}
}
@keyframes first_object_animate {
0% {
transform: perspective(100px) rotateX(0deg) rotateY(0deg);
-webkit-transform: perspective(100px) rotateX(0deg) rotateY(0deg);
}
50% {
transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
-webkit-transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
}
100% {
transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
-webkit-transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
}
}
@-webkit-keyframes second_object_animate {
0% {
-webkit-transform: perspective(200px);
}
50% {
-webkit-transform: perspective(200px) rotateY(180deg);
}
100% {
-webkit-transform: perspective(200px) rotateY(180deg) rotateX(180deg);
}
}
@keyframes second_object_animate {
0% {
transform: perspective(200px) rotateX(0deg) rotateY(0deg);
-webkit-transform: perspective(200px) rotateX(0deg) rotateY(0deg);
}
50% {
transform: perspective(200px) rotateX(180deg) rotateY(0deg);
-webkit-transform: perspective(200px) rotateX(180deg) rotateY(0deg);
}
100% {
transform: perspective(200px) rotateX(180deg) rotateY(180deg);
-webkit-transform: perspective(200px) rotateX(180deg) rotateY(180deg);
}
}
@-webkit-keyframes third_object_animate {
0% {
-webkit-transform: perspective(300px);
}
50% {
-webkit-transform: perspective(300px) rotateY(-180deg);
}
100% {
-webkit-transform: perspective(300px) rotateY(-180deg) rotateX(-180deg);
}
}
@keyframes third_object_animate {
0% {
transform: perspective(300px) rotateX(0deg) rotateY(0deg);
-webkit-transform: perspective(300px) rotateX(0deg) rotateY(0deg);
}
50% {
transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
-webkit-transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
}
100% {
transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
-webkit-transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
}
}
#preloader-9 {
height: 100px;
width: 100px;
}
#preloader-9 .object {
width: 25px;
height: 25px;
background-color: rgba(255, 255, 255, 0);
margin-right: auto;
margin-left: auto;
border: 4px solid rgba(239, 74, 74, 1);
left: 37px;
top: 37px;
position: absolute;
}
#preloader-9 #first_object {
-webkit-animation: preloader_9_first_object 1s infinite;
animation: preloader_9_first_object 1s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#preloader-9 #second_object {
-webkit-animation: preloader_9_second_object 1s infinite;
animation: preloader_9_second_object 1s infinite;
}
#preloader-9 #third_object {
-webkit-animation: preloader_9_third_object 1s infinite;
animation: preloader_9_third_object 1s infinite;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#preloader-9 #forth_object {
-webkit-animation: preloader_9_forth_object 1s infinite;
animation: preloader_9_forth_object 1s infinite;
}
@-webkit-keyframes preloader_9_first_object {
0% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
50% {
-ms-transform: translate(150%, 150%) scale(2, 2);
-webkit-transform: translate(150%, 150%) scale(2, 2);
transform: translate(150%, 150%) scale(2, 2);
}
100% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
}
@keyframes preloader_9_first_object {
0% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
50% {
-ms-transform: translate(150%, 150%) scale(2, 2);
-webkit-transform: translate(150%, 150%) scale(2, 2);
transform: translate(150%, 150%) scale(2, 2);
}
100% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
}
@-webkit-keyframes preloader_9_second_object {
0% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
50% {
-ms-transform: translate(-150%, 150%) scale(2, 2);
-webkit-transform: translate(-150%, 150%) scale(2, 2);
transform: translate(-150%, 150%) scale(2, 2);
}
100% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
}
@keyframes preloader_9_second_object {
0% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
50% {
-ms-transform: translate(-150%, 150%) scale(2, 2);
-webkit-transform: translate(-150%, 150%) scale(2, 2);
transform: translate(-150%, 150%) scale(2, 2);
}
100% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
}
@-webkit-keyframes preloader_9_third_object {
0% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
50% {
-ms-transform: translate(-150%, -150%) scale(2, 2);
-webkit-transform: translate(-150%, -150%) scale(2, 2);
transform: translate(-150%, -150%) scale(2, 2);
}
100% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
}
@keyframes preloader_9_third_object {
0% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
50% {
-ms-transform: translate(-150%, -150%) scale(2, 2);
-webkit-transform: translate(-150%, -150%) scale(2, 2);
transform: translate(-150%, -150%) scale(2, 2);
}
100% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
}
@-webkit-keyframes preloader_9_forth_object {
0% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
50% {
-ms-transform: translate(150%, -150%) scale(2, 2);
-webkit-transform: translate(150%, -150%) scale(2, 2);
transform: translate(150%, -150%) scale(2, 2);
}
100% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
}
@keyframes preloader_9_forth_object {
0% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
50% {
-ms-transform: translate(150%, -150%) scale(2, 2);
-webkit-transform: translate(150%, -150%) scale(2, 2);
transform: translate(150%, -150%) scale(2, 2);
}
100% {
-ms-transform: translate(1, 1) scale(1, 1);
-webkit-transform: translate(1, 1) scale(1, 1);
transform: translate(1, 1) scale(1, 1);
}
}
#preloader-10 {
height: 118px;
width: 118px;
}
#preloader-10 .object {
width: 20px;
height: 20px;
background-color: #FFF;
margin-right: 20px;
float: left;
margin-bottom: 20px;
}
#preloader-10 .object:nth-child(3n+0) {
margin-right: 0px;
}
#preloader-10 #object_one {
-webkit-animation: preloader_10_animate 1s -0.9s ease-in-out infinite;
animation: preloader_10_animate 1s -0.9s ease-in-out infinite;
}
#preloader-10 #object_two {
-webkit-animation: preloader_10_animate 1s -0.8s ease-in-out infinite;
animation: preloader_10_animate 1s -0.8s ease-in-out infinite;
}
#preloader-10 #object_three {
-webkit-animation: preloader_10_animate 1s -0.7s ease-in-out infinite;
animation: preloader_10_animate 1s -0.7s ease-in-out infinite;
}
#preloader-10 #object_four {
-webkit-animation: preloader_10_animate 1s -0.6s ease-in-out infinite;
animation: preloader_10_animate 1s -0.6s ease-in-out infinite;
}
#preloader-10 #object_five {
-webkit-animation: preloader_10_animate 1s -0.5s ease-in-out infinite;
animation: preloader_10_animate 1s -0.5s ease-in-out infinite;
}
#preloader-10 #object_six {
-webkit-animation: preloader_10_animate 1s -0.4s ease-in-out infinite;
animation: preloader_10_animate 1s -0.4s ease-in-out infinite;
}
#preloader-10 #object_seven {
-webkit-animation: preloader_10_animate 1s -0.3s ease-in-out infinite;
animation: preloader_10_animate 1s -0.3s ease-in-out infinite;
}
#preloader-10 #object_eight {
-webkit-animation: preloader_10_animate 1s -0.2s ease-in-out infinite;
animation: preloader_10_animate 1s -0.2s ease-in-out infinite;
}
#preloader-10 #object_nine {
-webkit-animation: preloader_10_animate 1s -0.1s ease-in-out infinite;
animation: preloader_10_animate 1s -0.1s ease-in-out infinite;
}
@-webkit-keyframes preloader_10_animate {
50% {
-ms-transform: scale(1.5, 1.5);
-webkit-transform: scale(1.5, 1.5);
transform: scale(1.5, 1.5);
}
100% {
-ms-transform: scale(1, 1);
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
}
}
@keyframes preloader_10_animate {
50% {
-ms-transform: scale(1.5, 1.5);
-webkit-transform: scale(1.5, 1.5);
transform: scale(1.5, 1.5);
}
100% {
-ms-transform: scale(1, 1);
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
}
}
#preloader-11 {
height: 100px;
width: 100px;
}
#preloader-11 .object {
width: 25px;
height: 25px;
background-color: #FFF;
margin-right: 50px;
float: left;
margin-bottom: 50px;
}
#preloader-11 .object:nth-child(2n+0) {
margin-right: 0px;
}
#preloader-11 #object_one {
-webkit-animation: preloader_11_object_one 2s infinite;
animation: preloader_11_object_one 2s infinite;
}
#preloader-11 #object_two {
-webkit-animation: preloader_11_object_two 2s infinite;
animation: preloader_11_object_two 2s infinite;
}
#preloader-11 #object_three {
-webkit-animation: preloader_11_object_three 2s infinite;
animation: preloader_11_object_three 2s infinite;
}
#preloader-11 #object_four {
-webkit-animation: preloader_11_object_four 2s infinite;
animation: preloader_11_object_four 2s infinite;
}
@-webkit-keyframes preloader_11_object_one {
25% {
-webkit-transform: translate(75px, 0) rotate(-90deg) scale(0.5);
}
50% {
-webkit-transform: translate(75px, 75px) rotate(-180deg);
}
75% {
-webkit-transform: translate(0, 75px) rotate(-270deg) scale(0.5);
}
100% {
-webkit-transform: rotate(-360deg);
}
}
@keyframes preloader_11_object_one {
25% {
transform: translate(75px, 0) rotate(-90deg) scale(0.5);
-webkit-transform: translate(75px, 0) rotate(-90deg) scale(0.5);
}
50% {
transform: translate(75px, 75px) rotate(-180deg);
-webkit-transform: translate(75px, 75px) rotate(-180deg);
}
75% {
transform: translate(0, 75px) rotate(-270deg) scale(0.5);
-webkit-transform: translate(0, 75px) rotate(-270deg) scale(0.5);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}
@-webkit-keyframes preloader_11_object_two {
25% {
-webkit-transform: translate(0, 75px) rotate(-90deg) scale(0.5);
}
50% {
-webkit-transform: translate(-75px, 75px) rotate(-180deg);
}
75% {
-webkit-transform: translate(-75px, 0) rotate(-270deg) scale(0.5);
}
100% {
-webkit-transform: rotate(-360deg);
}
}
@keyframes preloader_11_object_two {
25% {
transform: translate(0, 75px) rotate(-90deg) scale(0.5);
-webkit-transform: translate(0, 75px) rotate(-90deg) scale(0.5);
}
50% {
transform: translate(-75px, 75px) rotate(-180deg);
-webkit-transform: translate(-75px, 75px) rotate(-180deg);
}
75% {
transform: translate(-75px, 0) rotate(-270deg) scale(0.5);
-webkit-transform: translate(-75px, 0) rotate(-270deg) scale(0.5);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}
@-webkit-keyframes preloader_11_object_three {
25% {
-webkit-transform: translate(0, -75px) rotate(-90deg) scale(0.5);
}
50% {
-webkit-transform: translate(75px, -75px) rotate(-180deg);
}
75% {
-webkit-transform: translate(75px, 0) rotate(-270deg) scale(0.5);
}
100% {
-webkit-transform: rotate(-360deg);
}
}
@keyframes preloader_11_object_three {
25% {
transform: translate(0, -75px) rotate(-90deg) scale(0.5);
-webkit-transform: translate(0, -75px) rotate(-90deg) scale(0.5);
}
50% {
transform: translate(75px, -75px) rotate(-180deg);
-webkit-transform: translate(75px, -75px) rotate(-180deg);
}
75% {
transform: translate(75px, 0) rotate(-270deg) scale(0.5);
-webkit-transform: translate(75px, 0) rotate(-270deg) scale(0.5);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}
@-webkit-keyframes preloader_11_object_four {
25% {
-webkit-transform: translate(-75px, 0) rotate(-90deg) scale(0.5);
}
50% {
-webkit-transform: translate(-75px, -75px) rotate(-180deg);
}
75% {
-webkit-transform: translate(0, -75px) rotate(-270deg) scale(0.5);
}
100% {
-webkit-transform: rotate(-360deg);
}
}
@keyframes preloader_11_object_four {
25% {
transform: translate(-75px, 0) rotate(-90deg) scale(0.5);
-webkit-transform: translate(-75px, 0) rotate(-90deg) scale(0.5);
}
50% {
transform: translate(-75px, -75px) rotate(-180deg);
-webkit-transform: translate(-75px, -75px) rotate(-180deg);
}
75% {
transform: translate(0, -75px) rotate(-270deg) scale(0.5);
-webkit-transform: translate(0, -75px) rotate(-270deg) scale(0.5);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}
#preloader-12 {
height: 50px;
width: 50px;
margin-top: -25px;
margin-left: -25px;
-ms-transform: rotate(45deg) !important;
-webkit-transform: rotate(45deg) !important;
transform: rotate(45deg) !important;
-webkit-animation: preloader_12 1.5s infinite;
animation: preloader_12 1.5s infinite;
}
#preloader-12 .object {
width: 25px;
height: 25px;
background-color: #FFF;
float: left;
}
#preloader-12 #object_one {
-webkit-animation: preloader_12_object_one 1.5s infinite;
animation: preloader_12_object_one 1.5s infinite;
}
#preloader-12 #object_two {
-webkit-animation: preloader_12_object_two 1.5s infinite;
animation: preloader_12_object_two 1.5s infinite;
}
#preloader-12 #object_three {
-webkit-animation: preloader_12_object_three 1.5s infinite;
animation: preloader_12_object_three 1.5s infinite;
}
#preloader-12 #object_four {
-webkit-animation: preloader_12_object_four 1.5s infinite;
animation: preloader_12_object_four 1.5s infinite;
}
@-webkit-keyframes preloader_12 {
100% {
-webkit-transform: rotate(-45deg);
}
}
@keyframes preloader_12 {
100% {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
}
}
@-webkit-keyframes preloader_12_object_one {
25% {
-webkit-transform: translate(0, -50px) rotate(-180deg);
}
100% {
-webkit-transform: translate(0, 0) rotate(-180deg);
}
}
@keyframes preloader_12_object_one {
25% {
transform: translate(0, -50px) rotate(-180deg);
-webkit-transform: translate(0, -50px) rotate(-180deg);
}
100% {
transform: translate(0, 0) rotate(-180deg);
-webkit-transform: translate(0, 0) rotate(-180deg);
}
}
@-webkit-keyframes preloader_12_object_two {
25% {
-webkit-transform: translate(50px, 0) rotate(-180deg);
}
100% {
-webkit-transform: translate(0, 0) rotate(-180deg);
}
}
@keyframes preloader_12_object_two {
25% {
transform: translate(50px, 0) rotate(-180deg);
-webkit-transform: translate(50px, 0) rotate(-180deg);
}
100% {
transform: translate(0, 0) rotate(-180deg);
-webkit-transform: translate(0, 0) rotate(-180deg);
}
}
@-webkit-keyframes preloader_12_object_three {
25% {
-webkit-transform: translate(-50px, 0) rotate(-180deg);
}
100% {
-webkit-transform: translate(0, 0) rotate(-180deg);
}
}
@keyframes preloader_12_object_three {
25% {
transform: translate(-50px, 0) rotate(-180deg);
-webkit-transform: translate(-50px, 0) rotate(-180deg);
}
100% {
transform: translate(0, 0) rotate(-180deg);
-webkit-transform: rtranslate(0, 0) rotate(-180deg);
}
}
@-webkit-keyframes preloader_12_object_four {
25% {
-webkit-transform: translate(0, 50px) rotate(-180deg);
}
100% {
-webkit-transform: translate(0, 0) rotate(-180deg);
}
}
@keyframes preloader_12_object_four {
25% {
transform: translate(0, 50px) rotate(-180deg);
-webkit-transform: translate(0, 50px) rotate(-180deg);
}
100% {
transform: translate(0, 0) rotate(-180deg);
-webkit-transform: translate(0, 0) rotate(-180deg);
}
}
#preloader-13 {
height: 100px;
width: 50px;
}
#preloader-13 .object {
width: 50px;
height: 8px;
margin-bottom: 15px;
background-color: #FFF;
-webkit-animation: preloader_13_animate 0.8s infinite;
animation: preloader_13_animate 0.8s infinite;
}
#preloader-13 #object_two {
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#preloader-13 #object_four {
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
@-webkit-keyframes preloader_13_animate {
50% {
-ms-transform: translate(50%, 0);
-webkit-transform: translate(50%, 0);
transform: translate(50%, 0);
}
}
@keyframes preloader_13_animate {
50% {
-ms-transform: translate(50%, 0);
-webkit-transform: translate(50%, 0);
transform: translate(50%, 0);
}
}
#preloader-14 {
height: 50px;
width: 150px;
}
#preloader-14 .object {
width: 8px;
height: 50px;
margin-right: 5px;
background-color: #FFF;
-webkit-animation: preloader_14_animate 1s infinite;
animation: preloader_14_animate 1s infinite;
float: left;
}
#preloader-14 .object:last-child {
margin-right: 0px;
}
#preloader-14 .object:nth-child(10) {
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
#preloader-14 .object:nth-child(9) {
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
#preloader-14 .object:nth-child(8) {
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
#preloader-14 .object:nth-child(7) {
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
#preloader-14 .object:nth-child(6) {
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
#preloader-14 .object:nth-child(5) {
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
#preloader-14 .object:nth-child(4) {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
#preloader-14 .object:nth-child(3) {
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
#preloader-14 .object:nth-child(2) {
-webkit-animation-delay: 0.1s;
animation-delay: 0.1s;
}
@-webkit-keyframes preloader_14_animate {
50% {
-ms-transform: translateX(-25px) scaleY(0.5);
-webkit-transform: translateX(-25px) scaleY(0.5);
transform: translateX(-25px) scaleY(0.5);
}
}
@keyframes preloader_14_animate {
50% {
-ms-transform: translateX(-25px) scaleY(0.5);
-webkit-transform: translateX(-25px) scaleY(0.5);
transform: translateX(-25px) scaleY(0.5);
}
}
.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 #fff;
border-left: 25px solid #fff;
border-bottom: 25px solid #fff;
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 #fff;
border-left: 25px solid #fff;
border-bottom: 25px solid #fff;
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: #fff;
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 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);
}
}
#preloader-15.loading {
width: 112px;
height: 70px;
*zoom: 1;
}
#preloader-15.loading:before,
#preloader-15.loading:after {
display: table;
content: "";
}
#preloader-15.loading:after {
clear: both;
}
#preloader-15.loading .finger {
float: left;
margin: 0 2px 0 0;
width: 20px;
height: 100%;
}
#preloader-15.loading .finger-1 {
-webkit-animation: finger-1-animation 2s infinite ease-out;
animation: finger-1-animation 2s infinite ease-out;
}
#preloader-15.loading .finger-1 span {
-webkit-animation: finger-1-animation-span 2s infinite ease-out;
animation: finger-1-animation-span 2s infinite ease-out;
}
#preloader-15.loading .finger-1 i {
-webkit-animation: finger-1-animation-i 2s infinite ease-out;
animation: finger-1-animation-i 2s infinite ease-out;
}
#preloader-15.loading .finger-2 {
-webkit-animation: finger-2-animation 2s infinite ease-out;
animation: finger-2-animation 2s infinite ease-out;
}
#preloader-15.loading .finger-2 span {
-webkit-animation: finger-2-animation-span 2s infinite ease-out;
animation: finger-2-animation-span 2s infinite ease-out;
}
#preloader-15.loading .finger-2 i {
-webkit-animation: finger-2-animation-i 2s infinite ease-out;
animation: finger-2-animation-i 2s infinite ease-out;
}
#preloader-15.loading .finger-3 {
-webkit-animation: finger-3-animation 2s infinite ease-out;
animation: finger-3-animation 2s infinite ease-out;
}
#preloader-15.loading .finger-3 span {
-webkit-animation: finger-3-animation-span 2s infinite ease-out;
animation: finger-3-animation-span 2s infinite ease-out;
}
#preloader-15.loading .finger-3 i {
-webkit-animation: finger-3-animation-i 2s infinite ease-out;
animation: finger-3-animation-i 2s infinite ease-out;
}
#preloader-15.loading .finger-4 {
-webkit-animation: finger-4-animation 2s infinite ease-out;
animation: finger-4-animation 2s infinite ease-out;
}
#preloader-15.loading .finger-4 span {
-webkit-animation: finger-4-animation-span 2s infinite ease-out;
animation: finger-4-animation-span 2s infinite ease-out;
}
#preloader-15.loading .finger-4 i {
-webkit-animation: finger-4-animation-i 2s infinite ease-out;
animation: finger-4-animation-i 2s infinite ease-out;
}
#preloader-15.loading .finger-item {
position: relative;
width: 100%;
height: 100%;
-webkit-border-radius: 6px 6px 8px 8px;
-webkit-background-clip: padding-box;
-moz-border-radius: 6px 6px 8px 8px;
-moz-background-clip: padding;
border-radius: 6px 6px 8px 8px;
background-clip: padding-box;
background: #fff;
}
#preloader-15.loading .finger-item span {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: auto;
padding: 5px 5px 0 5px;
}
#preloader-15.loading .finger-item span:before,
#preloader-15.loading .finger-item span:after {
content: '';
position: relative;
display: block;
margin: 0 0 2px 0;
width: 100%;
height: 2px;
background: #4492f4;
}
#preloader-15.loading .finger-item i {
position: absolute;
left: 3px;
bottom: 3px;
width: 14px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
background: #4492f4;
}
#preloader-15.loading .last-finger {
position: relative;
float: left;
width: 24px;
height: 100%;
overflow: hidden;
}
#preloader-15.loading .last-finger-item {
position: absolute;
right: 0;
top: 32px;
width: 110%;
height: 20px;
-webkit-border-radius: 0 5px 14px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 5px 14px 0;
-moz-background-clip: padding;
border-radius: 0 5px 14px 0;
background-clip: padding-box;
background: #fff;
-webkit-animation: finger-5-animation 2s infinite linear;
animation: finger-5-animation 2s infinite linear;
}
#preloader-15.loading .last-finger-item i {
position: absolute;
left: 0;
top: -8px;
width: 22px;
height: 8px;
background: #fff;
overflow: hidden;
}
#preloader-15.loading .last-finger-item i:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 34px;
height: 20px;
-webkit-border-radius: 0 0 15px 15px;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 0 15px 15px;
-moz-background-clip: padding;
border-radius: 0 0 15px 15px;
background-clip: padding-box;
background: #4492f4;
}
@-webkit-keyframes finger-1-animation {
0% {
padding: 12px 0 5px 0;
}
20% {
padding: 12px 0 5px 0;
}
29% {
padding: 4px 0 24px 0;
}
35% {
padding: 4px 0 24px 0;
}
41% {
padding: 12px 0 5px 0;
}
100% {
padding: 12px 0 5px 0;
}
}
@keyframes finger-1-animation {
0% {
padding: 12px 0 5px 0;
}
20% {
padding: 12px 0 5px 0;
}
29% {
padding: 4px 0 24px 0;
}
35% {
padding: 4px 0 24px 0;
}
41% {
padding: 12px 0 5px 0;
}
100% {
padding: 12px 0 5px 0;
}
}
@-webkit-keyframes finger-1-animation-span {
0% {
top: 0;
}
20% {
top: 0;
}
29% {
top: -7px;
}
35% {
top: -7px;
}
41% {
top: 0;
}
100% {
top: 0;
}
}
@keyframes finger-1-animation-span {
0% {
top: 0;
}
20% {
top: 0;
}
29% {
top: -7px;
}
35% {
top: -7px;
}
41% {
top: 0;
}
100% {
top: 0;
}
}
@-webkit-keyframes finger-1-animation-i {
0% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
20% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
29% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
35% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
41% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
100% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
}
@keyframes finger-1-animation-i {
0% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
20% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
29% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
35% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
41% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
100% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
}
@-webkit-keyframes finger-2-animation {
0% {
padding: 6px 0 2px 0;
}
24% {
padding: 6px 0 2px 0;
}
33% {
padding: 2px 0 16px 0;
}
39% {
padding: 2px 0 16px 0;
}
45% {
padding: 6px 0 2px 0;
}
100% {
padding: 6px 0 2px 0;
}
}
@keyframes finger-2-animation {
0% {
padding: 6px 0 2px 0;
}
24% {
padding: 6px 0 2px 0;
}
33% {
padding: 2px 0 16px 0;
}
39% {
padding: 2px 0 16px 0;
}
45% {
padding: 6px 0 2px 0;
}
100% {
padding: 6px 0 2px 0;
}
}
@-webkit-keyframes finger-2-animation-span {
0% {
top: 0;
}
24% {
top: 0;
}
33% {
top: -7px;
}
39% {
top: -7px;
}
45% {
top: 0;
}
100% {
top: 0;
}
}
@keyframes finger-2-animation-span {
0% {
top: 0;
}
24% {
top: 0;
}
33% {
top: -7px;
}
39% {
top: -7px;
}
45% {
top: 0;
}
100% {
top: 0;
}
}
@-webkit-keyframes finger-2-animation-i {
0% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
24% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
33% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
39% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
45% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
100% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
}
@keyframes finger-2-animation-i {
0% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
24% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
33% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
39% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
45% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
100% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
}
@-webkit-keyframes finger-3-animation {
0% {
padding: 0 0 0 0;
}
28% {
padding: 0 0 0 0;
}
37% {
padding: 0 0 12px 0;
}
43% {
padding: 0 0 12px 0;
}
49% {
padding: 0 0 0 0;
}
100% {
padding: 0 0 0 0;
}
}
@keyframes finger-3-animation {
0% {
padding: 0 0 0 0;
}
28% {
padding: 0 0 0 0;
}
37% {
padding: 0 0 12px 0;
}
43% {
padding: 0 0 12px 0;
}
49% {
padding: 0 0 0 0;
}
100% {
padding: 0 0 0 0;
}
}
@-webkit-keyframes finger-3-animation-span {
0% {
top: 0;
}
28% {
top: 0;
}
37% {
top: -7px;
}
43% {
top: -7px;
}
49% {
top: 0;
}
100% {
top: 0;
}
}
@keyframes finger-3-animation-span {
0% {
top: 0;
}
28% {
top: 0;
}
37% {
top: -7px;
}
43% {
top: -7px;
}
49% {
top: 0;
}
100% {
top: 0;
}
}
@-webkit-keyframes finger-3-animation-i {
0% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
28% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
37% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
43% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
49% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
100% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
}
@keyframes finger-3-animation-i {
0% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
28% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
37% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
43% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
49% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
100% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
}
@-webkit-keyframes finger-4-animation {
0% {
padding: 8px 0 3px 0;
}
32% {
padding: 8px 0 3px 0;
}
41% {
padding: 4px 0 20px 0;
}
47% {
padding: 4px 0 20px 0;
}
53% {
padding: 8px 0 3px 0;
}
100% {
padding: 8px 0 3px 0;
}
}
@keyframes finger-4-animation {
0% {
padding: 8px 0 3px 0;
}
32% {
padding: 8px 0 3px 0;
}
41% {
padding: 4px 0 20px 0;
}
47% {
padding: 4px 0 20px 0;
}
53% {
padding: 8px 0 3px 0;
}
100% {
padding: 8px 0 3px 0;
}
}
@-webkit-keyframes finger-4-animation-span {
0% {
top: 0;
}
32% {
top: 0;
}
41% {
top: -7px;
}
47% {
top: -7px;
}
53% {
top: 0;
}
100% {
top: 0;
}
}
@keyframes finger-4-animation-span {
0% {
top: 0;
}
32% {
top: 0;
}
41% {
top: -7px;
}
47% {
top: -7px;
}
53% {
top: 0;
}
100% {
top: 0;
}
}
@-webkit-keyframes finger-4-animation-i {
0% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
32% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
41% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
47% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
53% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
100% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
}
@keyframes finger-4-animation-i {
0% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
32% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
41% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
47% {
bottom: 8px;
height: 12px;
-webkit-border-radius: 7px 7px 4px 4px;
-webkit-background-clip: padding-box;
-moz-border-radius: 7px 7px 4px 4px;
-moz-background-clip: padding;
border-radius: 7px 7px 4px 4px;
background-clip: padding-box;
}
53% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
100% {
bottom: 3px;
height: 14px;
-webkit-border-radius: 10px 10px 7px 7px;
-webkit-background-clip: padding-box;
-moz-border-radius: 10px 10px 7px 7px;
-moz-background-clip: padding;
border-radius: 10px 10px 7px 7px;
background-clip: padding-box;
}
}
@-webkit-keyframes finger-5-animation {
0% {
top: 32px;
right: 0;
-webkit-border-radius: 0 5px 14px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 5px 14px 0;
-moz-background-clip: padding;
border-radius: 0 5px 14px 0;
background-clip: padding-box;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
34% {
top: 32px;
right: 0;
-webkit-border-radius: 0 5px 14px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 5px 14px 0;
-moz-background-clip: padding;
border-radius: 0 5px 14px 0;
background-clip: padding-box;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
43% {
top: 20px;
right: 2px;
-webkit-border-radius: 0 8px 20px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 8px 20px 0;
-moz-background-clip: padding;
border-radius: 0 8px 20px 0;
background-clip: padding-box;
-webkit-transform: rotate(-12deg);
transform: rotate(-12deg);
}
50% {
top: 20px;
right: 2px;
-webkit-border-radius: 0 8px 20px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 8px 20px 0;
-moz-background-clip: padding;
border-radius: 0 8px 20px 0;
background-clip: padding-box;
-webkit-transform: rotate(-12deg);
transform: rotate(-12deg);
}
60% {
top: 32px;
right: 0;
-webkit-border-radius: 0 5px 14px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 5px 14px 0;
-moz-background-clip: padding;
border-radius: 0 5px 14px 0;
background-clip: padding-box;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
top: 32px;
right: 0;
-webkit-border-radius: 0 5px 14px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 5px 14px 0;
-moz-background-clip: padding;
border-radius: 0 5px 14px 0;
background-clip: padding-box;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes finger-5-animation {
0% {
top: 32px;
right: 0;
-webkit-border-radius: 0 5px 14px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 5px 14px 0;
-moz-background-clip: padding;
border-radius: 0 5px 14px 0;
background-clip: padding-box;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
34% {
top: 32px;
right: 0;
-webkit-border-radius: 0 5px 14px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 5px 14px 0;
-moz-background-clip: padding;
border-radius: 0 5px 14px 0;
background-clip: padding-box;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
43% {
top: 20px;
right: 2px;
-webkit-border-radius: 0 8px 20px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 8px 20px 0;
-moz-background-clip: padding;
border-radius: 0 8px 20px 0;
background-clip: padding-box;
-webkit-transform: rotate(-12deg);
transform: rotate(-12deg);
}
50% {
top: 20px;
right: 2px;
-webkit-border-radius: 0 8px 20px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 8px 20px 0;
-moz-background-clip: padding;
border-radius: 0 8px 20px 0;
background-clip: padding-box;
-webkit-transform: rotate(-12deg);
transform: rotate(-12deg);
}
60% {
top: 32px;
right: 0;
-webkit-border-radius: 0 5px 14px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 5px 14px 0;
-moz-background-clip: padding;
border-radius: 0 5px 14px 0;
background-clip: padding-box;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
top: 32px;
right: 0;
-webkit-border-radius: 0 5px 14px 0;
-webkit-background-clip: padding-box;
-moz-border-radius: 0 5px 14px 0;
-moz-background-clip: padding;
border-radius: 0 5px 14px 0;
background-clip: padding-box;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
@keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
@keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from,
11.1%,
to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from,
11.1%,
to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%,
60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%,
80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%,
60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%,
80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}@font-face {
font-family: "IcoFont";
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/icofont/icofont.woff2) format("woff2"),
url(//arosa.capital/wp-content/themes/square-plus/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: 1;
-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";
}.owl-carousel {
display: none;
width: 100%;
-webkit-tap-highlight-color: transparent; position: relative;
z-index: 1;
}
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
touch-action: manipulation;
-moz-backface-visibility: hidden; }
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden; -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
display: block;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
background: none;
color: inherit;
border: none;
padding: 0 !important;
font: inherit;
}
.owl-carousel.owl-loaded {
display: block;
}
.owl-carousel.owl-loading {
opacity: 0;
display: block;
}
.owl-carousel.owl-hidden {
opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.owl-carousel.owl-grab {
cursor: move;
cursor: -webkit-grab;
cursor: grab;
}
.owl-carousel.owl-rtl {
direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
float: right;
} .no-js .owl-carousel {
display: block;
} .owl-carousel .animated {
-webkit-animation-duration: 1000ms;
animation-duration: 1000ms;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
z-index: 0;
}
.owl-carousel .owl-animated-out {
z-index: 1;
}
.owl-carousel .fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
} .owl-height {
-webkit-transition: height 500ms ease-in-out;
transition: height 500ms ease-in-out;
} .owl-carousel .owl-item { }
.owl-carousel .owl-item .owl-lazy {
opacity: 0;
-webkit-transition: opacity 400ms ease;
transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
} .owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000;
}
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url(//arosa.capital/wp-content/themes/square-plus/css/owl.video.play.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
-webkit-transition: -webkit-transform 100ms ease;
transition: -webkit-transform 100ms ease;
transition: transform 100ms ease;
transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
-webkit-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
display: none;
}
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
-webkit-transition: opacity 400ms ease;
transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%;
}@font-face {
font-family: 'lg';
src: url(//arosa.capital/wp-content/themes/square-plus/css/fonts/lightgallery/lg.woff?n1z373) format("woff"),
url(//arosa.capital/wp-content/themes/square-plus/css/fonts/lightgallery/lg.ttf?n1z373) 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: inherit; -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(//arosa.capital/wp-content/themes/square-plus/css/img/vimeo-play.png) no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
background: url(//arosa.capital/wp-content/themes/square-plus/css/img/vimeo-play.png) no-repeat scroll 0 -58px transparent;
}
.lg-outer .lg-has-html5 .lg-video-play {
background: transparent url(//arosa.capital/wp-content/themes/square-plus/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(//arosa.capital/wp-content/themes/square-plus/css/img/youtube-play.png) no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
background: url(//arosa.capital/wp-content/themes/square-plus/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(//arosa.capital/wp-content/themes/square-plus/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;
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);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
top: 0;
left: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.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(//arosa.capital/wp-content/themes/square-plus/css/images/raster.png)
}
.YTPOverlay.raster.retina {
background: url(//arosa.capital/wp-content/themes/square-plus/css/images/raster@2x.png)
}
.YTPOverlay.raster-dot {
background: url(//arosa.capital/wp-content/themes/square-plus/css/images/raster_dot.png)
}
.YTPOverlay.raster-dot.retina {
background: url(//arosa.capital/wp-content/themes/square-plus/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;
max-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(//arosa.capital/wp-content/themes/square-plus/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,
.justified-gallery > figure {
position: absolute;
display: inline-block;
overflow: hidden; filter: "alpha(opacity=10)";
opacity: 0.1;
margin: 0;
padding: 0;
}
.justified-gallery > a > img,
.justified-gallery > div > img,
.justified-gallery > figure > img,
.justified-gallery > a > a > img,
.justified-gallery > div > a > img,
.justified-gallery > figure > a > img,
.justified-gallery > a > svg,
.justified-gallery > div > svg,
.justified-gallery > figure > svg,
.justified-gallery > a > a > svg,
.justified-gallery > div > a > svg,
.justified-gallery > figure > a > svg {
position: absolute;
top: 50%;
left: 50%;
margin: 0;
padding: 0;
border: none;
filter: "alpha(opacity=0)";
opacity: 0;
}
.justified-gallery > a > .jg-caption,
.justified-gallery > div > .jg-caption,
.justified-gallery > figure > .jg-caption {
display: none;
position: absolute;
bottom: 0;
padding: 5px;
background-color: #000000;
left: 0;
right: 0;
margin: 0;
color: white;
font-size: 12px;
font-weight: 300;
font-family: sans-serif;
}
.justified-gallery > a > .jg-caption.jg-caption-visible,
.justified-gallery > div > .jg-caption.jg-caption-visible,
.justified-gallery > figure > .jg-caption.jg-caption-visible {
display: initial;
filter: "alpha(opacity=70)";
opacity: 0.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 > .jg-entry-visible {
filter: "alpha(opacity=100)";
opacity: 1;
background: none;
}
.justified-gallery > .jg-entry-visible > img,
.justified-gallery > .jg-entry-visible > a > img,
.justified-gallery > .jg-entry-visible > svg,
.justified-gallery > .jg-entry-visible > a > svg {
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 > .jg-spinner {
position: absolute;
bottom: 0;
margin-left: -24px;
padding: 10px 0 10px 0;
left: 50%;
filter: "alpha(opacity=100)";
opacity: 1;
overflow: initial;
}
.justified-gallery > .jg-spinner > span {
display: inline-block;
filter: "alpha(opacity=0)";
opacity: 0;
width: 8px;
height: 8px;
margin: 0 4px 0 4px;
background-color: #000;
border-radius: 6px;
}html {
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
display: block;
margin: 0;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {}
hr {
-webkit-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin-right: 10px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #EEE;
}
td,
th {
padding: 10px 20px;
border: 1px solid #EEE;
text-align: left;
} body,
button,
input,
select,
textarea {
color: #444;
font-size: 18px;
line-height: 1.6;
font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-weight: bold;
line-height: 1.2;
}
h1 {
font-size: 28px;
margin-bottom: 15px;
}
h2 {
font-size: 26px;
margin-bottom: 15px;
}
h3 {
font-size: 24px;
margin-bottom: 15px;
}
h4 {
font-size: 22px;
margin-bottom: 10px;
}
h5 {
font-size: 20px;
margin-bottom: 10px;
}
h6 {
font-size: 18px;
margin-bottom: 10px;
}
p {
margin: 0 0 15px;
}
dfn,
cite,
em,
i {
font-style: italic;
}
blockquote {
margin: 0 15px;
}
address {
margin: 0 0 15px;
}
pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
line-height: 1.6;
margin-bottom: 15px;
max-width: 100%;
overflow: auto;
padding: 15px;
}
code,
kbd,
tt,
var {
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
font-size: 15px;
}
abbr,
acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
mark,
ins {
background: none;
text-decoration: none;
}
big {
font-size: 125%;
} html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*,
*:before,
*:after { -webkit-box-sizing: inherit;
box-sizing: inherit;
}
body {
background: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
}
blockquote,
q {
quotes: "" "";
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 15px;
}
ul,
ol {
margin: 0 0 15px 25px;
padding: 0;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 15px;
}
dt {
font-weight: bold;
}
dd {
margin: 0 15px 15px;
}
img {
height: auto; max-width: 100%; vertical-align: middle;
}
table {
margin: 0 0 15px;
width: 100%;
} button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.ht-button {
display: inline-block;
background: #5bc2ce;
padding: 10px 25px;
color: #FFF;
border: 0;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
height: 50px;
line-height: 30px;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.ht-button:hover {
background: #333;
color: #FFF;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
outline: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
color: #404040;
border: 1px solid #EEE;
transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
vertical-align: top;
width: 100%;
}
select {
border: 1px solid #EEE;
height: 50px;
padding: 3px 40px 3px 8px;
background-color: transparent;
line-height: 100%;
outline: 0;
background-image: url(//arosa.capital/wp-content/themes/square-plus/images/arrow.png);
background-position: right;
background-repeat: no-repeat;
position: relative;
cursor: pointer;
-webkit-appearance: none;
-moz-appearance: none;
width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
outline: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
padding: 10px 20px;
height: 50px;
}
textarea {
padding: 10px 20px;
width: 100%;
} a {
color: #5bc2ce;
text-decoration: none;
}
a:visited {}
a:hover {
color: #5bc2ce;
}
a:focus {
outline: 0;
}
a:hover,
a:active {
outline: 0;
}  .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; } .alignleft {
display: inline;
float: left;
margin-right: 20px;
margin-bottom: 10px;
}
.alignright {
display: inline;
float: right;
margin-left: 20px;
margin-bottom: 10px;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
} .ht-clearfix:before,
.ht-clearfix:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-footer:before,
.site-footer:after {
content: "";
display: table;
}
.ht-clearfix:after,
.entry-content:after,
.comment-content:after,
.site-footer:after {
clear: both;
} .widget {
margin: 0 0 15px;
} .widget select {
max-width: 100%;
} .widget_calendar table th,
.widget_calendar table td {
padding: 5px;
text-align: center;
} .widget_search .search-submit {
display: none;
} .ht-contact-box {
color: inherit;
}
.ht-contact-field {
position: relative;
}
.ht-contact-field i {
font-size: 30px;
width: 30px;
}
.ht-contact-text h6 {
font-size: 1.2rem;
margin-bottom: 10px;
white-space: nowrap;
}
.ht-site-header .ht-contact-text h6 {
margin-bottom: 5px;
}
.ht-contact-text p {
margin-bottom: 0 !important;
line-height: 1.2;
}
.ht-site-header .ht-contact-text p {
line-height: 1.2;
}
.ht-contact-box .ht-contact-text a,
.ht-contact-box .ht-contact-text a:hover {
color: inherit;
}
.ht-contact-text a:hover {
text-decoration: underline;
}
.ht-site-header .ht-contact-text > div {
font-size: 0.9rem;
}
.ht-contact-box.style1,
.ht-contact-box.style2 {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 20px 0;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.ht-site-header .ht-contact-box.style1,
.ht-site-header .ht-contact-box.style2 {
padding: 0;
}
.ht-top-footer .ht-contact-box.style1,
.ht-bottom-top-footer .ht-contact-box.style1 {
padding: 0;
}
.ht-contact-box.style1 .ht-contact-field,
.ht-contact-box.style3 .ht-contact-field {
padding: 15px 30px;
margin-bottom: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
min-width: 200px;
width: 33.33%
}
.ht-contact-box.style1 .ht-contact-field > span {
content: '';
width: 1px;
height: 100%;
border-right: 1px solid #CCC;
position: absolute;
top: 0;
right: 0;
opacity: 0.3;
}
.ht-contact-box.style1 .ht-contact-field:last-child {
padding-right: 0;
margin-bottom: 0;
}
.ht-contact-box.style1 .ht-contact-field i,
.ht-contact-box.style3 .ht-contact-field i {
margin-right: 20px;
}
.ht-contact-box.style1 .ht-contact-text {
text-align: left;
}
.ht-contact-box.style2 .ht-contact-field {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
padding: 0 15px;
-ms-flex-preferred-size: 0;
flex-basis: 0;
}
.ht-contact-box.style2 .ht-contact-field i {
margin-bottom: 15px;
}
.ht-contact-box.style3 .ht-contact-field {
padding: 0;
margin-bottom: 20px;
text-align: left;
}
.ht-contact-box.style3 .ht-contact-field:last-child {
margin-bottom: 0;
} .ht-personal-info .widget-title {
color: inherit;
}
.ht-personal-info.ht-pi-center .ht-pi-image,
.ht-personal-info.ht-pi-center .ht-pi-name,
.ht-personal-info.ht-pi-center .ht-pi-intro {
text-align: center;
}
.ht-personal-info.ht-pi-right .ht-pi-image,
.ht-personal-info.ht-pi-right .ht-pi-name,
.ht-personal-info.ht-pi-right .ht-pi-intro {
text-align: right;
}
.ht-pi-image {
margin-bottom: 30px;
}
.ht-pi-image.ht-round-image img {
border-radius: 50%;
}
.ht-pi-name {
margin-bottom: 15px;
}
.ht-pi-readmore {
margin-top: 30px;
}
.ht-pi-readmore i {
margin-left: 5px;
color: inherit;
}
.ht-personal-info.ht-pi-center .ht-pi-readmore {
text-align: center;
}
.ht-personal-info.ht-pi-right .ht-pi-readmore {
text-align: right;
} .ht-contact-info .widget-title {
color: inherit;
}
.ht-contact-info ul {
list-style: none;
padding: 0;
margin: 0 !important;
}
.ht-contact-info ul li {
padding: 8px 0 8px 40px !important;
border: none;
}
.ht-contact-info ul li p:last-child {
margin: 0;
}
.ht-contact-info ul li i {
float: left;
margin-left: -40px;
width: 30px;
text-align: center;
line-height: inherit;
} .ht-accordion .ht-accordion-content-wrap ul {
list-style: disc outside;
margin-left: 20px;
}
.ht-accordion .ht-accordion-content-wrap p:last-child {
margin-bottom: 0 !important;
}
.ht-style1-accordion .ht-accordion-box {
border: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 0;
}
.ht-style1-accordion .ht-accordion-box:last-child {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ht-style1-accordion .ht-accordion-header {
padding: 15px 40px 15px 15px;
text-transform: uppercase;
cursor: pointer;
border-bottom: none;
position: relative;
font-weight: bold;
}
.ht-style1-accordion .ht-accordion-header:after {
content: "\f102";
font-family: "EssentialIcon";
position: absolute;
right: 10px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0.6;
}
.ht-style1-accordion .ht-accordion-box.open .ht-accordion-header:after {
content: "\f244";
}
.ht-style1-accordion .ht-accordion-content-wrap {
padding: 25px;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.ht-style2-accordion .ht-accordion-box {
margin-bottom: 15px;
cursor: pointer;
}
.ht-style2-accordion .ht-accordion-content-wrap {
padding: 25px;
border: 1px solid #5bc2ce;
}
.ht-style2-accordion .ht-accordion-header {
position: relative;
overflow: hidden;
padding: 15px 20px 15px 60px;
text-transform: uppercase;
color: #FFF;
background: #5bc2ce;
}
.ht-style2-accordion .ht-accordion-header:after {
content: "";
position: absolute;
height: 40px;
width: 50px;
left: -10px;
top: 50%;
line-height: 35px;
text-align: center;
background: #FFF;
-webkit-transform: translateY(-50%) skewX(-15deg);
transform: translateY(-50%) skewX(-15deg);
}
.ht-style2-accordion .ht-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: #333;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 9;
}
.ht-style2-accordion .ht-accordion-box.open .ht-accordion-header:before {
content: "\eab9";
} .ht-icon-text .ht-it-title {
margin-bottom: 20px;
}
.ht-it-pos-top {
text-align: center;
}
.ht-it-pos-top.ht-icon-text > i {
margin-bottom: 20px;
}
.ht-it-pos-left.ht-icon-text > i {
font-size: 30px;
float: left;
margin-top: 10px;
}
.ht-it-pos-left .ht-it-content {
margin-left: 60px;
}
.ht-it-pos-right.ht-icon-text > i {
float: right;
margin-top: 10px;
}
.ht-it-pos-right .ht-it-content {
text-align: right;
margin-right: 60px;
}
.ht-it-excerpt {
margin-bottom: 20px;
}
.ht-it-readmore a i {
margin-left: 5px;
}
.ht-it-style-default.ht-icon-text > i {
font-size: 38px;
}
.ht-it-style-circle.ht-icon-text > i,
.ht-it-style-square.ht-icon-text > i,
.ht-it-style-circle-bg.ht-icon-text > i,
.ht-it-style-square-bg.ht-icon-text > i {
height: 70px;
width: 70px;
text-align: center;
line-height: 70px;
font-size: 22px;
}
.ht-it-style-circle-bg.ht-icon-text > i,
.ht-it-style-square-bg.ht-icon-text > i {
background: #5bc2ce;
color: #FFF;
}
.ht-it-style-circle.ht-icon-text > i,
.ht-it-style-square.ht-icon-text > i {
border: 1px solid #666;
}
.ht-it-style-circle.ht-icon-text > i,
.ht-it-style-circle-bg.ht-icon-text > i {
border-radius: 50%;
}
.ht-it-pos-right.ht-it-style-circle .ht-it-content,
.ht-it-pos-right.ht-it-style-square .ht-it-content,
.ht-it-pos-right.ht-it-style-circle-bg .ht-it-content,
.ht-it-pos-right.ht-it-style-square-bg .ht-it-content {
margin-right: 100px;
}
.ht-it-pos-left.ht-it-style-circle .ht-it-content,
.ht-it-pos-left.ht-it-style-square .ht-it-content,
.ht-it-pos-left.ht-it-style-circle-bg .ht-it-content,
.ht-it-pos-left.ht-it-style-square-bg .ht-it-content {
margin-left: 100px;
} .ht-cta {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-position: center;
background-size: cover;
text-align: left;
}
.ht-cta-content-wrap {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
line-height: 1.8;
font-size: 1.2rem;
}
.ht-cta-title:last-child {
margin-bottom: 0;
}
.ht-cta.ht-button-left .ht-cta-buttons {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
padding-right: 50px;
}
.ht-cta.ht-button-right .ht-cta-buttons {
padding-left: 50px;
}
.ht-cta.ht-button-center {
display: block;
text-align: center;
}
.ht-cta.ht-button-center .ht-cta-buttons,
.ht-cta.ht-button-left-bottom .ht-cta-buttons,
.ht-cta.ht-button-right-bottom .ht-cta-buttons {
margin-top: 40px;
}
.ht-cta.ht-button-left-bottom {
display: block;
text-align: left;
}
.ht-cta.ht-button-right-bottom {
display: block;
text-align: right;
}
.ht-round-button.ht-cta-buttons a {
border-radius: 100px;
}
.ht-sidebar-style2 .widget-area .widget.widget_square_plus_cta,
.ht-sidebar-style3 .widget-area .widget.widget_square_plus_cta {
padding: 0;
border: 0;
} .ht-countdown {
text-align: center;
}
.ht-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;
}
.ht-countdown.ht-enable-shadow > div {
-webkit-box-shadow: 0px 14px 10px -6px rgba(0, 0, 0, 0.3);
box-shadow: 0px 14px 10px -6px rgba(0, 0, 0, 0.3);
}
.ht-countdown.circular > div {
border-radius: 50%;
min-width: 3em;
min-height: 3em;
vertical-align: middle;
position: relative;
}
.ht-countdown.circular > div > div {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.ht-countdown label {
display: block;
margin-top: 0.2rem;
}
.ht-countdown.circular label {
position: relative;
top: 50%;
}
.ht-countdown.border-block > div {
border-left: none;
border-right: none;
border-bottom: none;
border-width: 5px;
}
.ht-countdown.diamond > div {
min-width: 2.4em;
min-height: 2.4em;
vertical-align: middle;
position: relative;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
margin: 0.6em;
border-radius: 12px;
}
.ht-countdown.diamond > div > div {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%) rotate(-45deg);
transform: translate(-50%, -50%) rotate(-45deg);
} .ht-counter-widget .ht-counter-count:before {
content: attr(data-prefix);
margin-right: 5px;
}
.ht-counter-widget .ht-counter-count:after {
content: attr(data-suffix);
margin-left: 5px;
}
.ht-counter-widget .odometer-inside {
display: inline;
}
.ht-counter-widget .ht-counter {
float: none;
width: auto;
margin-left: 0;
text-align: center;
margin-bottom: 0;
position: relative;
}
.ht-counter-widget .ht-counter-count {
letter-spacing: 3px;
}
.ht-counter-widget.style1 .ht-counter {
text-align: center;
position: relative;
}
.ht-counter-widget.style1 .ht-counter-count {
font-size: 48px;
line-height: 1;
margin-bottom: 15px;
letter-spacing: 3px;
}
.ht-counter-widget.style1 .ht-counter-icon {
font-size: 26px;
line-height: 36px;
position: relative;
margin-bottom: 15px;
}
.ht-counter-widget.style1 .ht-counter-icon span:first-child {
content: "";
position: absolute;
right: 15%;
left: 50%;
margin-left: 30px;
top: 50%;
height: 1px;
background: #333;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.ht-counter-widget.style1 .ht-counter-icon span:last-child {
content: "";
position: absolute;
left: 15%;
right: 50%;
margin-right: 30px;
top: 50%;
height: 1px;
background: #333;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.ht-counter-widget.style1 .ht-counter-title {
margin-top: 15px;
margin: 0;
}
.ht-counter-widget.style2 .ht-counter-icon {
position: absolute;
left: 30%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-size: 3rem;
line-height: 1;
opacity: 0.1;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.ht-counter-widget.style2 .ht-counter-icon span {
display: none;
}
.ht-counter-widget.style2 .ht-counter:hover .ht-counter-icon {
-webkit-transform: translate(-50%, -50%) scale(1.4);
transform: translate(-50%, -50%) scale(1.4);
}
.ht-counter-widget.style2 .ht-counter-count {
font-size: 3rem;
line-height: 1;
}
.ht-counter-widget.style2 .ht-counter-title {
margin-top: 10px;
}
.ht-counter-widget.style3 .ht-counter {
position: relative;
}
.ht-counter-widget.style3 .ht-counter > span {
content: "";
position: absolute;
left: 20%;
right: 20%;
top: 20%;
bottom: 20%;
border: 10px solid #333;
opacity: 0.1;
}
.ht-counter-widget.style3 .ht-counter-icon {
font-size: 3rem;
line-height: 1;
margin-bottom: 15px;
position: relative;
z-index: 9;
}
.ht-counter-widget.style3 .ht-counter-count {
font-size: 2rem;
line-height: 1;
margin-bottom: 15px;
position: relative;
z-index: 9;
}
.ht-counter-widget.style4 .ht-counter {
text-align: left;
padding-left: 80px;
}
.ht-counter-widget.style4 .ht-counter-icon {
font-size: 42px;
width: 50px;
float: left;
text-align: center;
opacity: 0.8;
margin-left: -70px;
line-height: 1;
margin-top: 24px;
}
.ht-counter-widget.style4 .ht-counter-count {
font-size: 2rem;
line-height: 1;
margin-bottom: 22px;
position: relative;
}
.ht-counter-widget.style4 .ht-counter-title {
position: relative;
}
.ht-counter-widget.style4 .ht-counter-title > span {
content: "";
position: absolute;
bottom: 100%;
background: #333;
height: 2px;
width: 50px;
left: 0;
margin-bottom: 10px;
} .ht-image-box.image-top .ht-ib-image {
margin: 0 auto 15px;
}
.ht-ib-title {
margin-bottom: 15px;
}
.ht-ib-readmore {
margin-top: 20px;
font-size: 0.9rem;
}
.ht-ib-readmore a > i {
margin-left: 5px;
color: inherit !important;
}
.ht-image-box.ht-left {
text-align: left;
}
.ht-image-box.ht-right {
text-align: right;
}
.ht-image-box.ht-center {
text-align: center;
}
.ht-image-box.image-left .ht-image-box-wrap,
.ht-image-box.image-right .ht-image-box-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.ht-image-box.image-left .ht-ib-image {
margin-right: 3%;
}
.ht-image-box.image-right .ht-ib-image {
margin-left: 3%;
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
} .ht-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.9rem;
line-height: 1;
} .owl-carousel .ht-portfolio-carousel-item {
-webkit-transition: -webkit-transform 0.3s ease;
transition: -webkit-transform 0.3s ease;
transition: transform 0.3s ease;
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
-webkit-transition: transform 0.3s ease;
-webkit-transform: scale(1);
transform: scale(1);
}
.owl-carousel .ht-portfolio-carousel-item.htpc-loading {
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
.ht-portfolio-carousel-button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 40px;
}
.ht-portfolio-filter-btn {
cursor: pointer;
display: inline-block;
transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
font-size: 0.9rem;
}
.ht-portfolio-carousel-button.style1 .ht-portfolio-filter-btn {
margin: 0 10px 20px;
line-height: 1;
position: relative;
font-size: 0.85rem;
text-transform: uppercase;
}
.ht-portfolio-carousel-button.style1 .ht-portfolio-filter-btn:after {
content: "";
position: absolute;
left: 50%;
right: 50%;
bottom: 0;
height: 2px;
background: #5bc2ce;
margin-bottom: -15px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-portfolio-carousel-button.style1 .ht-portfolio-filter-btn:hover:after,
.ht-portfolio-carousel-button.style1 .ht-portfolio-filter-btn.btn-active:after {
left: 0;
right: 0;
}
.ht-portfolio-carousel-button.style2 .ht-portfolio-filter-btn {
text-transform: uppercase;
margin: 0 10px 20px;
font-size: 0.85rem;
line-height: 1;
position: relative;
text-transform: uppercase;
}
.ht-portfolio-carousel-button.style2 .ht-portfolio-filter-btn:after {
content: "";
position: absolute;
top: -15px;
left: 0;
width: 0;
height: 2px;
background: #5bc2ce;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-portfolio-carousel-button.style2 .ht-portfolio-filter-btn.btn-active:after,
.ht-portfolio-carousel-button.style2 .ht-portfolio-filter-btn:hover:after {
width: 20px;
}
.ht-portfolio-carousel-button.style2 .ht-portfolio-filter-btn.btn-active,
.ht-portfolio-carousel-button.style2 .ht-portfolio-filter-btn:hover {
color: #5bc2ce;
}
.ht-portfolio-carousel-button.style3 .ht-portfolio-filter-btns-wrap {
position: relative;
z-index: 99;
}
.ht-portfolio-carousel-button.style3 .ht-portfolio-switch {
background: #5bc2ce;
height: 50px;
width: 50px;
text-align: center;
cursor: pointer;
line-height: 1;
}
.ht-portfolio-carousel-button.style3 .ht-portfolio-switch i {
color: #FFFFFF;
font-size: 30px;
line-height: 50px;
}
.ht-portfolio-carousel-button.style3 .ht-portfolio-filter-wrap {
position: absolute;
width: 240px;
left: 0;
background: #5bc2ce;
visibility: hidden;
opacity: 0;
top: 100px;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.ht-portfolio-carousel-button.style3 .ht-portfolio-filter-btns-wrap:hover .ht-portfolio-filter-wrap {
visibility: visible;
opacity: 1;
top: 50px;
}
.ht-portfolio-carousel-button.style3 .ht-portfolio-filter-btn {
display: block;
padding: 14px 20px;
line-height: 1;
font-size: 0.85rem;
}
.ht-portfolio-carousel-button.style3 .ht-portfolio-filter-btn.btn-active {
background: rgba(0, 0, 0, 0.05);
}
.ht-portfolio-carousel-button.style4 .ht-portfolio-filter-btn {
font-size: 0.85rem;
line-height: 1;
padding: 10px 20px;
border-radius: 2px;
text-transform: uppercase;
margin-bottom: 10px;
}
.ht-portfolio-carousel-button.style4 .ht-portfolio-filter-btn.btn-active {
background: #5bc2ce;
}
.ht-portfolio-slider .ht-owl-nav {
float: right;
white-space: nowrap;
}
.ht-portfolio-slider .ht-owl-nav .owl-prev,
.ht-portfolio-slider .ht-owl-nav .owl-next {
display: inline-block;
cursor: pointer;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
background: #5bc2ce;
color: #FFF;
}
.ht-portfolio-slider .ht-owl-nav .owl-prev:hover,
.ht-portfolio-slider .ht-owl-nav .owl-next:hover {
background: #111111;
color: #FFF;
}
.ht-portfolio-carousel-image-wrap {
position: relative;
overflow: hidden;
}
.ht-portfolio-carousel-image-wrap:before {
content: "";
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
opacity: 0;
z-index: 1;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-portfolio-carousel-image-wrap:hover:before {
opacity: 1;
}
.ht-portfolio-carousel-image-wrap img {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
margin: 0 auto;
}
.ht-portfolio-carousel-image-wrap:hover img {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
.ht-portfolio-carousel-image,
.ht-portfolio-carousel-link {
position: absolute;
top: 10px;
height: 40px;
width: 40px;
text-align: center;
line-height: 40px;
background: #5bc2ce;
color: #FFF;
z-index: 2;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-portfolio-carousel-image {
-webkit-transform: translate(-100px, -100px);
transform: translate(-100px, -100px);
left: 10px;
}
.ht-portfolio-carousel-link {
-webkit-transform: translate(100px, -100px);
transform: translate(100px, -100px);
right: 10px;
}
.ht-portfolio-carousel-image-wrap:hover .ht-portfolio-carousel-image,
.ht-portfolio-carousel-image-wrap:hover .ht-portfolio-carousel-link {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
.ht-portfolio-carousel-image-wrap a i {
color: inherit;
}
.ht-portfolio-carousel-image-wrap h5 {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 20px 10px;
margin: 0;
font-size: 1.4rem;
text-align: center;
z-index: 2;
color: #FFF;
}
.ht-portfolio-carousel-image-wrap h5 span {
position: relative;
z-index: 9;
opacity: 0;
}
.ht-portfolio-carousel-image-wrap:hover h5 span {
opacity: 1;
-webkit-transition: opacity 0.3s ease-in-out 0.1s;
transition: opacity 0.3s ease-in-out 0.1s;
}
.ht-portfolio-carousel-image-wrap h5:before {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: #5bc2ce;
-webkit-transform: translateY(100%);
transform: translateY(100%);
-webkit-transition: -webkit-transform .4s cubic-bezier(.48, .01, .25, .97);
transition: -webkit-transform .4s cubic-bezier(.48, .01, .25, .97);
transition: transform .4s cubic-bezier(.48, .01, .25, .97);
transition: transform .4s cubic-bezier(.48, .01, .25, .97), -webkit-transform .4s cubic-bezier(.48, .01, .25, .97);
}
.ht-portfolio-carousel-image-wrap:hover h5:before {
-webkit-transform: translateY(0);
transform: translateY(0);
}
.ht-portfolio-carousel .ht-portfolio-carousel-slides.owl-carousel .owl-stage-outer {
margin-bottom: 40px;
}
.ht-portfolio-carousel .owl-dots {
text-align: center;
margin: 0;
}
.ht-portfolio-carousel .owl-carousel .owl-dot {
display: inline-block;
height: 8px;
width: 10px;
background: #333;
margin: 0 5px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
border-radius: 20px;
}
.ht-portfolio-carousel .owl-carousel .owl-dot.active {
width: 30px;
} .ht-progress {
margin-bottom: 30px;
}
.ht-progress:last-child {
margin-bottom: 0;
}
.ht-progress h6 {
margin-bottom: 8px;
}
.ht-progress-bar {
height: 8px;
width: 100%;
position: relative;
background: #f6f6f6
}
.ht-progress-bar-length {
background: #5bc2ce;
height: 100%;
text-align: right;
width: 0;
}
.ht-progress-bar-length span {
position: absolute;
right: 0;
bottom: 100%;
}
.ht-progress.ht-pb-style2 .ht-progress-bar-length {
position: relative;
}
.ht-progress.ht-pb-style2 .ht-progress-bar-length span {
background: #222;
color: #FFF;
padding: 0 6px;
border-radius: 3px;
opacity: 0;
-webkit-transform: translateX(50%);
transform: translateX(50%);
margin-bottom: 10px;
font-size: 12px;
}
.ht-progress.ht-pb-style2 .ht-progress-bar-length span:before {
content: "";
border-width: 6px;
border-style: solid;
border-color: #222 transparent transparent transparent;
position: absolute;
top: 100%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
left: 50%;
}
.ht-progress.ht-pb-style3 .ht-progress-bar {
height: 14px;
padding: 3px;
background: #F0F0F0;
border-radius: 20px;
}
.ht-progress.ht-pb-style3 .ht-progress-bar-length {
position: relative;
border-radius: 20px;
}
.ht-progress.ht-pb-style3 .ht-progress-bar-length span {
color: #FFF;
border-radius: 3px;
opacity: 0;
-webkit-transform: translateX(50%);
transform: translateX(50%);
margin-bottom: 15px;
font-size: 10px;
width: 32px;
height: 32px;
line-height: 36px;
text-align: center;
}
.ht-progress.ht-pb-style3 .ht-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;
-webkit-transform: rotate(225deg);
transform: rotate(225deg);
}
.ht-progress.ht-pb-style4 .ht-progress-bar-length {
position: relative;
border-radius: 20px;
}
.ht-progress.ht-pb-style4 .ht-progress-bar {
height: 10px;
border-radius: 20px;
}
.ht-progress.ht-pb-style4 .ht-progress-bar-length span {
background: #5bc2ce;
color: #fff;
height: 40px;
width: 40px;
opacity: 0;
-webkit-transform: translate(50%, 50%);
transform: translate(50%, 50%);
margin-bottom: -4px;
font-size: 12px;
border-radius: 50%;
line-height: 40px;
text-align: center;
} .ht-social-icons .ht-social-button {
display: inline-block;
background-color: #fff;
color: #333;
text-align: center;
position: relative;
padding: 0;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.ht-social-icons.si-fade-in .ht-social-button i {
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.ht-social-icons.icon-small .ht-social-button {
font-size: 18px;
width: 40px;
height: 40px;
line-height: 40px;
margin: 3px;
}
.ht-social-icons.icon-normal .ht-social-button {
font-size: 28px;
width: 60px;
height: 60px;
line-height: 60px;
margin: 6px;
}
.ht-social-icons.icon-big .ht-social-button {
font-size: 42px;
width: 90px;
height: 90px;
line-height: 90px;
margin: 12px;
}
.ht-social-icons.icon-large .ht-social-button {
font-size: 70px;
width: 160px;
height: 160px;
line-height: 160px;
margin: 20px;
}
.ht-social-icons.icon-left {
text-align: left;
}
.ht-social-icons.icon-center {
text-align: center;
}
.ht-social-icons.icon-right {
text-align: right;
}
.ht-social-icons.si-fade-in .ht-social-button i {
opacity: 0.8;
}
.ht-social-icons.si-fade-in .ht-social-button:hover i {
opacity: 1;
}
.ht-social-icons.si-zoom .ht-social-button {
-webkit-transform: scale(1);
transform: scale(1);
}
.ht-social-icons.si-zoom .ht-social-button:hover {
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
.ht-social-icons.si-rotate .ht-social-button {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
.ht-social-icons.si-rotate .ht-social-button:hover {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
.ht-social-icons.si-slide-up .ht-social-button {
-webkit-transform: translateY(0);
transform: translateY(0);
}
.ht-social-icons.si-slide-up .ht-social-button:hover {
-webkit-transform: translateY(-5%);
transform: translateY(-5%);
}
.ht-social-icons.style1 .ht-social-button {
-webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}
.ht-social-icons.style2 .ht-social-button {
border-radius: 50%;
-webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}
.ht-social-icons.style3 .ht-social-button {
background: none;
border: 2px solid #333;
-webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}
.ht-social-icons.style4 .ht-social-button {
background: none;
border: 2px solid #333;
-webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
border-radius: 50%;
}
.ht-social-icons.rounded-corner.icon-small .ht-social-button {
border-radius: 4px;
}
.ht-social-icons.rounded-corner.icon-normal .ht-social-button {
border-radius: 6px;
}
.ht-social-icons.rounded-corner.icon-big .ht-social-button {
border-radius: 8px;
}
.ht-social-icons.rounded-corner.icon-large .ht-social-button {
border-radius: 18px;
}
.ht-social-icons.style6 .ht-social-button:after {
content: "";
position: absolute;
left: 5px;
right: 5px;
top: 5px;
bottom: 5px;
background: #FFF;
border-radius: 50%;
z-index: 8;
}
.ht-social-icons.style6 .ht-social-button i {
-webkit-transform: scale(0.8);
transform: scale(0.8);
z-index: 9;
position: relative
}
.ht-social-icons.style6.icon-normal .ht-social-button:after {
margin: 2px;
}
.ht-social-icons.style6.icon-big .ht-social-button:after {
margin: 6px;
}
.ht-social-icons.style6.icon-large .ht-social-button:after {
margin: 10px;
}
.ht-social-icons.style7.icon-small .ht-social-button {
-webkit-box-shadow: 0 -3px 0 rgba(0, 0, 0, .1) inset;
box-shadow: 0 -3px 0 rgba(0, 0, 0, .1) inset
}
.ht-social-icons.style7.icon-normal .ht-social-button {
-webkit-box-shadow: 0 -6px 0 rgba(0, 0, 0, .08) inset;
box-shadow: 0 -6px 0 rgba(0, 0, 0, .08) inset
}
.ht-social-icons.style7.icon-big .ht-social-button {
-webkit-box-shadow: 0 -8px 0 rgba(0, 0, 0, .08) inset;
box-shadow: 0 -8px 0 rgba(0, 0, 0, .08) inset
}
.ht-social-icons.style7.icon-large .ht-social-button {
-webkit-box-shadow: 0 -12px 0 rgba(0, 0, 0, .08) inset;
box-shadow: 0 -12px 0 rgba(0, 0, 0, .08) inset
}
.ht-social-icons a i {
color: inherit !important;
} ul.ht-latest-posts {
margin: 0;
padding: 0;
list-style: none;
}
ul.ht-latest-posts li {
margin: 0 0 20px !important;
padding: 0 !important;
border: 0 !important;
}
.ht-lp-image {
float: left;
width: 30%;
}
.ht-lp-image + .ht-lp-content {
width: 70%;
float: right;
padding-left: 20px;
font-size: 0.9rem;
}
.ht-lp-date {
font-size: 0.8rem;
opacity: 0.8;
margin-top: 10px;
}
.ht-lp-title a {
color: inherit;
}
.ht-lp-excerpt {
margin-top: 10px;
} #ht-preloader-wrap {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: red;
z-index: 99999;
overflow: hidden;
}
body.elementor-editor-active #ht-preloader-wrap {
display: none;
}
#ht-preloader-wrap > div {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#ht-preloader-wrap img {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
} body.ht-boxed #ht-page {
margin: 0 auto;
position: relative;
background: #FFF;
}
body.ht-boxed .ht-container {
padding-left: 80px;
padding-right: 80px;
max-width: 100%;
}
.sticky {
display: block;
}
.hentry,
.square-plus-hentry {
margin: 0 0 60px;
}
.byline,
.updated:not(.published) {
display: none;
}
.page-content p,
.entry-content p,
.page-content ul,
.entry-content ul,
.page-content ol,
.entry-content ol {
margin-bottom: 30px;
}
.page-content ul ul,
.entry-content ul ul,
.page-content ol ol,
.entry-content ol ol {
margin-bottom: 0;
}
.page-content li,
.entry-content li {}
.page-links {
clear: both;
margin: 0 0 15px;
}
#primary {
width: 70%;
float: left;
}
#secondary {
width: 27%;
float: right;
}
.ht-no-sidebar #primary {
width: auto;
float: none;
}
.ht-no-sidebar-narrow #primary {
width: 76%;
float: none;
margin: 0 auto;
}
.ht-left-sidebar #primary {
float: right;
}
.ht-left-sidebar #secondary {
float: left;
} .entry-header .entry-title {
margin-bottom: 20px;
}
.entry-header .entry-title a {
text-decoration: none;
color: inherit;
}
.entry-meta {
margin-bottom: 20px;
font-size: 0.9em;
opacity: 0.9;
}
.entry-meta > span {
display: inline-block;
margin-right: 40px;
}
.entry-meta > span i {
display: inline-block;
margin-right: 5px;
}
.entry-meta a {
color: inherit;
}
.entry-readmore {
margin-top: 40px;
}
.ht-main-content .entry-readmore a {
background: #5bc2ce;
padding: 12px 20px;
line-height: 1.2;
color: #FFF;
border: 0;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
display: inline-block;
}
.ht-main-content .entry-readmore a:hover {
background: #333;
color: #FFF;
}
.entry-comment i {
margin-right: 5px;
}
.blog-layout1 .entry-figure {
margin-bottom: 30px;
}
.blog-layout1 .entry-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 30px;
}
.blog-layout1 .entry-header .entry-title:last-child {
margin-bottom: 0;
}
.blog-layout1 .ht-post-date {
float: left;
line-height: 1.3;
border-right: 2px solid rgba(0, 0, 0, 0.1);
padding-right: 30px;
margin-right: 30px;
text-align: center;
}
.blog-layout1 .ht-post-date .entry-date {
display: block;
font-size: 0.9rem;
}
.blog-layout1 .ht-post-date .entry-date span {
display: block;
text-transform: uppercase;
color: #5bc2ce;
}
.blog-layout1 .ht-post-date .entry-date span.ht-day {
font-size: 30px;
line-height: 1.3;
}
.blog-layout1 .post-header {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
.blog-layout1 .entry-meta {
font-size: 0.9rem;
opacity: 0.9;
}
.blog-layout1 .entry-meta > span {
margin-right: 40px;
} .blog-layout2 .entry-body {
padding: 40px;
background: rgba(0, 0, 0, 0.02);
}
.blog-layout2 .ht-post-info {
float: left;
width: 20%;
text-align: center;
z-index: 99;
padding-right: 40px;
}
.blog-layout2 .ht-post-info + .ht-post-content {
float: left;
width: 80%;
}
.blog-layout2 .ht-post-date {
text-align: center;
}
.blog-layout2 .entry-date {
display: inline-block;
background: #5bc2ce;
width: 70px;
color: #FFF;
text-align: center;
padding: 10px 15px;
font-size: 0.9rem;
margin-top: -40px;
margin-bottom: 40px;
line-height: 1.3;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.blog-layout2 .ht-day {
display: block;
font-size: 30px;
color: #FFF;
}
.blog-layout2 img.avatar {
border-radius: 50%;
}
.blog-layout2 .entry-author {
margin-top: 15px;
font-size: 0.9rem;
}
.blog-layout2 .entry-comment {
display: block;
border-top: 1px solid rgba(0, 0, 0, 0.1);
padding-top: 15px;
margin-top: 15px;
font-size: 0.9rem;
line-height: 1.3;
}
.blog-layout2 .ht-post-content .entry-meta {
font-size: 0.9rem;
opacity: 0.9;
}
.blog-layout2 .ht-post-content .entry-meta > span {
margin-right: 40px;
}
.blog-layout2 .entry-header .entry-title {
margin-bottom: 20px;
}
.blog-layout2 .entry-readmore {
text-align: right;
} .blog-layout3 .ht-post-content {
background: #FFF;
padding: 40px 40px 0;
margin-right: 5%;
margin-left: 5%;
position: relative;
}
.blog-layout3 .entry-figure + .ht-post-content {
margin-top: -100px;
}
.blog-layout3 .entry-meta {
font-size: 0.9rem;
}
.blog-layout3 .entry-meta > span {
margin-right: 40px;
}
.blog-layout3 .entry-header {
margin-bottom: 30px;
}
.blog-layout3 .entry-header .entry-title {
margin-bottom: 20px;
}
.blog-layout3 .ht-post-content > .entry-meta {
margin-top: 30px;
} .blog-layout4 .entry-figure {
position: relative;
}
.blog-layout4 .ht-post-date {
position: absolute;
top: 0;
left: 30px;
background: #5bc2ce;
width: 70px;
color: #FFF;
text-align: center;
padding: 10px 15px;
font-size: 0.9rem;
line-height: 1.3;
}
.blog-layout4 .ht-day {
display: block;
font-size: 30px;
color: #FFF;
}
.blog-layout4 .entry-meta > span {
margin-right: 20px;
}
.blog-layout4.square-plus-hentry {
border: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-layout4 .entry-meta {
font-size: 0.8rem;
margin-bottom: 10px;
}
.square-plus-hentry-wrap {
margin-left: -5%;
}
.square-plus-hentry-wrap .blog-layout4.square-plus-hentry {
width: 45%;
float: left;
margin-left: 5%;
}
.square-plus-hentry-wrap .blog-layout4.square-plus-hentry:nth-child(2n+1) {
clear: both;
}
.blog-layout4 .ht-post-content {
padding: 30px;
}
.square-plus-hentry-wrap .blog-layout4 .entry-header .entry-title {
font-size: 1.2rem;
}
.square-plus-hentry-wrap .blog-layout4 .entry-meta {
font-size: 0.8rem;
}
.square-plus-hentry-wrap .blog-layout4 .entry-content {
font-size: 0.9rem;
} .single .entry-header {
margin-bottom: 30px
}
.single .entry-header .entry-title {
margin-bottom: 0;
}
.single .entry-header .ht-sub-title {
margin-top: 20px;
}
.single-entry-content,
.single-entry-figure {
margin-bottom: 40px;
}
.single-entry-content p,
.single-entry-content ul,
.single-entry-content ol {
margin-bottom: 30px;
}
.single-entry-meta {
margin-bottom: 40px;
font-size: 0.9rem;
}
.single-entry-meta a {
color: inherit;
}
.single-entry-meta > span > i {
margin-right: 5px;
font-size: 0.8em;
}
.single-entry-meta img {
border-radius: 50%;
margin-right: 10px;
}
.single-entry-meta > span {
display: inline-block;
margin-right: 40px;
opacity: 0.8;
}
blockquote:not(.wp-block-quote) {
background: #F6F6F6;
padding: 40px;
clear: both;
margin: 0 0 30px;
border-left: 3px solid #5bc2ce;
font-style: italic;
font-size: 1.1rem;
}
blockquote:not(.wp-block-quote) p:last-child {
margin-bottom: 0;
}
blockquote:not(.wp-block-quote) cite {
font-size: 0.9rem;
display: block;
margin-top: 20px;
}
.single-entry-footer {
margin-bottom: 40px;
font-size: 0.8rem;
line-height: 1;
}
.single-entry-category {
margin-bottom: 40px;
font-size: 1rem;
line-height: 1;
}
.single-entry-footer span {
background: #111;
padding: 4px 20px;
border-radius: 20px;
color: #FFF;
margin-right: 20px;
display: inline-block;
margin-bottom: 10px;
}
.single-entry-footer span i,
.single-entry-category span i {
margin-right: 8px;
font-size: 0.8em;
}
.single-entry-footer a {
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 4px 20px;
display: inline-block;
margin-right: 10px;
color: #333;
border-radius: 20px;
}
.single-entry-footer a:hover {}
.ht-social-share {
border-top: 1px solid rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
padding: 10px 0;
margin-bottom: 40px;
text-transform: uppercase;
font-size: 0.9rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ht-social-share > span {
border-right: 1px solid rgba(0, 0, 0, 0.05);
padding-right: 30px;
margin-right: 30px;
}
.ht-social-share > span i {
margin-right: 10px;
display: inline-block;
}
.square-plus-share-buttons {
float: right;
margin-left: 40px;
}
.square-plus-share-buttons a {
display: inline-block;
line-height: 38px;
width: 38px;
height: 38px;
margin: 10px 0 10px 10px;
text-align: center;
color: #FFF !important;
background: #333;
font-size: 20px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.square-plus-share-buttons a:hover {
-webkit-transform: translateY(-5px);
transform: translateY(-5px);
}
.square-plus-share-buttons a i {
display: block;
line-height: 38px;
color: #FFF;
}
.square-plus-share-buttons .twitter-share {
background: #000;
}
.square-plus-share-buttons .facebook-share {
background: #204385;
}
.square-plus-share-buttons .googleplus-share {
background: #d3492c;
}
.square-plus-share-buttons .pinterest-share {
background: #ca2128;
}
.square-plus-share-buttons .linkedin-share {
background: #02669a;
}
.square-plus-share-buttons .stumbleupon-share {
background: #eb4924;
}
.post-navigation {
margin-bottom: 40px;
font-size: 1.1rem;
line-height: 1.4;
}
.post-navigation .nav-links {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
width: 50%;
}
.post-navigation .nav-previous {
padding-right: 20px;
}
.post-navigation .nav-next {
text-align: right;
border-left: 1px solid #EEE;
padding-left: 20px;
}
.post-navigation a {
color: inherit;
}
.post-navigation a span {
display: block;
text-transform: uppercase;
font-size: 0.9rem;
margin-bottom: 10px;
}
.post-navigation .nav-previous a span i {
margin-right: 10px;
}
.post-navigation .nav-next a span i {
margin-left: 10px;
}
.square-plus-author-info {
margin-bottom: 40px;
border: 1px solid rgba(0, 0, 0, 0.05);
padding: 30px;
}
.square-plus-author-avatar {
float: left;
}
.square-plus-author-description {
padding-left: 130px;
}
.square-plus-author-icons {
margin: 0 -5px;
}
.square-plus-author-icons a {
color: #666;
padding: 5px;
}
.square-plus-related-post {
margin-bottom: 40px;
}
ul.square-plus-related-post-wrap {
margin: 0 0 0 -3%;
padding: 0;
list-style: none;
}
ul.square-plus-related-post-wrap li {
float: left;
width: 30.33%;
margin-left: 3%;
}
ul.square-plus-related-post-wrap .relatedthumb {
margin-bottom: 15px;
}
ul.square-plus-related-post-wrap h4 {
font-size: 1.1rem;
}
ul.square-plus-related-post-wrap h4 a {
color: inherit;
} .content-area .widget-title {
margin-bottom: 30px;
}
.widget-area .widget-title {
position: relative;
margin-bottom: 15px;
}
.widget-area ul {
list-style: none;
padding: 0;
margin: 0;
}
.widget-area ul ul {
margin-top: 15px;
margin-left: 10px;
}
.widget-area ul ul li {
padding-left: 10px;
}
.widget-area ul ul li:last-child {
border-bottom: 0;
padding-bottom: 0;
}
.widget-area li {
padding: 10px 0;
line-height: 1.3rem;
}
.widget-area a {
text-decoration: none;
}
.widget-area .widget {
margin-bottom: 40px;
}
.ht-sidebar-style1 .widget-area .widget-title {
position: relative;
padding-bottom: 10px;
margin-bottom: 20px;
}
.ht-sidebar-style1 .widget-area .widget-title:after {
content: "";
position: absolute;
left: 0;
top: 100%;
width: 30px;
background: #5bc2ce;
height: 2px;
}
.ht-sidebar-style1 .widget-area li {
padding: 15px 0;
border-bottom: 1px solid #f9f9f9;
}
.ht-sidebar-style1 .widget-area ul ul {
border-top: 1px solid #f9f9f9;
}
.ht-sidebar-style2 .widget-area .widget-title {
padding-bottom: 15px;
border-bottom: 1px solid #f9f9f9;
}
.ht-sidebar-style2 .widget-area .widget {
border: 1px solid #f9f9f9;
padding: 30px;
}
.ht-sidebar-style3 .widget-area .widget {
background: #f9f9f9;
padding: 30px;
}
.ht-sidebar-style3 .widget-area .widget-title:after {
content: "";
position: absolute;
top: 50%;
left: -30px;
width: 10px;
height: 10px;
background: #000000;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
} .comment-content a {
word-wrap: break-word;
}
.bypostauthor {
display: block;
}
.author-email-url {
margin-left: -2%;
}
.comment-form-author,
.comment-form-email {
float: left;
margin-left: 2%;
width: 48%;
}
.comment-form-url {}
.author-email-url input {
width: 100%;
}
.comment-form .form-submit {
margin-bottom: 0
}
#comments {
margin-bottom: 40px;
}
#reply-title,
#comments .comments-title,
.square-plus-related-post .related-post-title {
font-size: 1.5rem;
position: relative;
margin-bottom: 30px;
display: block;
}
.ht-sidebar-style1 #reply-title,
.ht-sidebar-style1 .comments-title,
.ht-sidebar-style1 .square-plus-related-post .related-post-title {
padding-bottom: 15px;
}
.ht-sidebar-style1 #reply-title:after,
.ht-sidebar-style1 .comments-title:after,
.ht-sidebar-style1 .square-plus-related-post .related-post-title:after {
content: "";
position: absolute;
left: 0;
top: 100%;
width: 30px;
background: #5bc2ce;
height: 2px;
}
.ht-sidebar-style2 #reply-title,
.ht-sidebar-style2 .comments-title,
.ht-sidebar-style2 .square-plus-related-post .related-post-title {
padding-bottom: 15px;
border-bottom: 1px solid #F9F9F9;
}
.ht-sidebar-style3 #reply-title,
.ht-sidebar-style3 .comments-title,
.ht-sidebar-style3 .square-plus-related-post .related-post-title {
padding-left: 30px;
}
.ht-sidebar-style3 #reply-title:after,
.ht-sidebar-style3 .comments-title:after,
.ht-sidebar-style3 .square-plus-related-post .related-post-title:after {
content: "";
position: absolute;
top: 50%;
left: 0;
width: 10px;
height: 10px;
background: #000000;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.logged-in-as,
.comment-notes {
margin-bottom: 25px;
}
.logged-in-as a {
color: inherit;
}
#comments ul {
list-style: none;
margin: 0;
padding: 0;
}
#comments li.comment .children {
display: block;
margin: 0 0 0 80px;
padding: 0px;
list-style: none;
}
article.comment-body {
margin: 0 0 30px;
}
.comment-list a {
color: #404040;
}
.comment-list a:hover {
color: #5bc2ce;
}
.comment-list .sp-comment-avatar {
margin-right: 20px;
float: left;
}
.comment-list .sp-comment-content {
position: relative;
border: 1px solid #EEE;
padding: 20px;
margin-left: 80px;
}
.comment-list .comment-header {
margin-bottom: 15px;
}
.comment-list .vcard .fn {
font-weight: normal;
font-size: 1.1rem;
}
.comment-list .vcard > a {
font-style: italic;
opacity: 0.9;
}
.comment-list .reply {
position: absolute;
top: 20px;
right: 20px;
text-transform: uppercase;
font-size: 0.9rem;
}
.comment-list .edit-link a {
font-size: 0.9rem;
display: inline-block;
}
.comment-list .comment-respond {
padding-left: 80px;
margin-bottom: 30px;
}
#cancel-comment-reply-link {
float: right;
}
.no-comments {
color: #5bc2ce;
}
.pagination {
clear: both;
text-align: center;
margin-bottom: 60px;
}
.pagination .page-numbers {
display: inline-block;
margin: 0 2px;
background: #5bc2ce;
color: #FFF;
padding: 12px 20px;
line-height: 1;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
background: #333;
color: #FFF;
} .page-content .wp-smiley,
.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;
} .ht-container {
max-width: 1170px;
width: 100%;
margin: 0 auto;
}
.ht-fullwidth-container {
margin-left: calc(-100vw / 2 + 100% / 2 + 10px);
margin-right: calc(-100vw / 2 + 100% / 2 + 10px);
max-width: 100vw;
}
.ht-mac-os .ht-fullwidth-container {
margin-left: calc(-100vw / 2 + 100% / 2);
margin-right: calc(-100vw / 2 + 100% / 2);
max-width: 100vw;
}
.ht-boxed .ht-fullwidth-container {
margin-left: -80px;
margin-right: -80px;
}
#ht-page {
position: relative;
}
#ht-content {
clear: both;
} #ht-masthead {
z-index: 999;
transition: height 0.3s ease;
-moz-transition: height 0.3s ease;
-webkit-transition: height 0.3s ease;
}
.ht-header-above #ht-masthead {
position: relative;
}
.ht-header-over #ht-masthead {
position: absolute;
left: 0;
right: 0;
}
.ht-hide-titlebar .ht-site-header {
padding-bottom: 60px;
}
.ht-top-header {
background: #5bc2ce;
padding: 10px 0;
font-size: 0.86rem;
line-height: 1.2;
color: #FFF;
}
.ht-mobile-top-header {
display: none;
}
.ht-top-header a {
text-decoration: none;
color: #FFF;
}
.ht-top-header p {
margin-bottom: 0;
}
.ht-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;
}
.ht-th-left {
float: left;
max-width: 80%;
}
.ht-th-right {
float: right;
max-width: 80%;
}
.ht-th-right .widget {
margin: 0;
}
.ht-top-header .widget_polylang ul li {
display: inline-block;
margin: 0 5px;
}
.ht-header {
position: relative;
}
#ht-site-branding {
padding: 15px 0;
transition: padding 0.3s ease;
-moz-transition: padding 0.3s ease;
-webkit-transition: padding 0.3s ease;
}
#ht-site-branding img {
max-height: 50px;
width: auto;
}
.ht-header-widget .widget:last-child {
margin-bottom: 0;
}
.ht-main-header {
background: #f7f9fd;
padding: 45px 0;
margin-bottom: 60px;
position: relative;
}
body.ht-no-header-space .ht-main-header {
margin-bottom: 0;
}
body.ht-no-header-space.ht-hide-titlebar .ht-site-header {
padding-bottom: 0;
}
.ht-header-over.ht-hide-titlebar #ht-masthead {
position: relative;
}
.ht-main-header:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.ht-main-header > .ht-container {
position: relative;
}
.ht-main-title {
margin: 0 0 15px;
letter-spacing: 1px;
font-size: 30px;
font-weight: 400;
line-height: 1.5;
}
.ht-main-title:last-child,
.ht-sub-title:last-child {
margin-bottom: 0;
}
.ht-sub-title {
margin-bottom: 15px;
font-size: 1.2rem;
}
.ht-site-title {
font-weight: 400;
margin: 0 0 8px;
letter-spacing: 1px;
text-transform: uppercase;
font-size: 32px;
}
.ht-site-title:last-child {
margin: 0;
}
.ht-site-title a {
text-decoration: none;
color: #5bc2ce;
}
.ht-site-description {
color: #EEE;
margin: 0;
font-size: 15px;
line-height: 1;
margin: 5px 0 0;
}
.ht-site-description a {
color: #333;
}
.breadcrumb-trail,
.woocommerce .woocommerce-breadcrumb {
font-size: 15px;
margin: 0;
color: inherit;
}
.breadcrumb-trail ul {
list-style: none;
margin: 0;
padding: 0;
}
.breadcrumb-trail ul li {
display: inline-block;
}
.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: #000;
}
.woocommerce .woocommerce-breadcrumb a:hover,
.breadcrumb-trail a:hover span {
color: #5bc2ce;
}
.taxonomy-description,
.term-description {
margin-bottom: 15px;
}
.taxonomy-description p:last-child,
.term-description p:last-child {
margin-bottom: 0;
}
.site-main .comment-navigation {
margin: 0 0 15px;
overflow: hidden;
}
.comment-navigation .nav-previous {
float: left;
width: 50%;
}
.comment-navigation .nav-next {
float: right;
text-align: right;
width: 50%;
} .ht-main-navigation ul {
list-style: none;
margin: 0;
padding: 0;
}
.ht-menu li.menu-item {
position: relative;
}
.ht-menu > ul > li.menu-item {
float: left;
margin-left: 6px;
}
.ht-menu li.menu-item > a {
position: relative;
display: block;
}
.ht-menu li.menu-item > a .mm-menu-title {
display: flex;
align-items: center;
}
.ht-menu > ul > li.menu-item > a {
padding: 0 15px;
}
.ht-menu li.menu-item > a > i {
line-height: inherit !important;
font-size: 1em !important;
}
.ht-menu > ul > li.menu-item > a .dropdown-nav {
position: relative;
right: -4px;
line-height: 1;
}
.ht-menu ul ul {
display: none;
position: absolute;
padding: 0;
left: 0;
top: 100%;
background: #FFF;
min-width: 270px;
z-index: 999;
-webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}
.ht-menu ul ul ul {
left: 100%;
top: 0;
margin: 0;
border-top: 0;
}
.ht-menu ul ul li.menu-item {
float: none;
margin: 0;
}
.ht-menu ul ul li.menu-item > a {
font-weight: 400;
color: #444;
line-height: 1.5;
padding: 12px 30px;
}
.ht-menu ul ul li.menu-item > a:after {
content: "";
position: absolute;
left: 10px;
top: 50%;
height: 1px;
width: 0;
background: #333;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: width 0.3s ease-in-out;
transition: width 0.3s ease-in-out;
}
.ht-menu ul ul li.menu-item:last-child a {
border-bottom: 0;
}
.ht-menu ul ul a .dropdown-nav {
position: absolute;
right: 10px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.ht-menu ul li.menu-item:hover > ul {
display: block;
}
.ht-menu ul ul li.menu-item:hover > a:after {
width: 10px;
}
.ht-menu > ul > li.menu-item:hover > a,
.ht-menu > ul > li.menu-item.current_page_item > a,
.ht-menu > ul > li.menu-item.current-menu-item > a,
.ht-menu > ul > li.menu-item.current_page_ancestor > a {
background: none;
color: inherit;
}
.ht-header-bttn {
display: inline-block;
margin-left: 20px;
padding: 0 20px;
white-space: nowrap;
}
.hover-style9 .ht-header-bttn,
.hover-style8 .ht-header-bttn {
margin-left: 25px;
}
.ht-header-three.hover-style5 .ht-header-bttn,
.ht-header-three.hover-style6 .ht-header-bttn {
margin-right: -20px;
} .ht-header-one .ht-header {
-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.ht-header-one .ht-header .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.ht-header-one .ht-main-navigation {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
} #ht-masthead.ht-header-two {
margin-top: 40px;
position: absolute;
left: 0;
right: 0;
}
.ht-boxed #ht-masthead.ht-header-two {
left: 40px;
right: 40px;
}
.ht-header-two .ht-header .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 0;
}
.ht-header-two .ht-header-nav-wrap {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
.ht-header-two .ht-top-header {
padding-left: 20px;
padding-right: 20px;
}
.ht-header-two .ht-main-navigation {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 0 20px;
}
.ht-header-two.hover-style5 .ht-main-navigation,
.ht-header-two.hover-style6 .ht-main-navigation {
padding: 0;
}
.ht-header-two #ht-site-branding {
border-right: 1px solid rgba(0, 0, 0, 0.05);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: distribute;
justify-content: space-around;
padding: 15px;
max-width: 50%;
} #ht-masthead.ht-header-three {
position: absolute;
left: 0;
right: 0;
}
.ht-header-three .ht-top-header {
margin-bottom: 20px;
}
.ht-header-three .ht-header .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 0 20px;
}
.ht-sticky-header .ht-header-three .ht-header.headroom.headroom--not-top .ht-container {
border-bottom: 0;
}
.ht-header-three .ht-main-navigation {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ht-header-three.hover-style6 .ht-menu > ul > li.menu-item > a:before {
bottom: auto;
top: 0;
}
.ht-header-three .ht-menu > ul {
float: right;
} .ht-header-four .ht-middle-header {
border-top: 4px solid #5bc2ce;
}
.ht-header-four .ht-top-header + .ht-middle-header {
border-top: 0
}
.ht-header-four .ht-middle-header .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding-top: 20px;
padding-bottom: 20px;
}
.ht-header-four .ht-header {
transform: translateY(-50%);
-moz-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
}
.ht-sticky-header .ht-header-four .ht-header.headroom--not-top {
transform: translateY(0);
-moz-transform: translateY(0);
-webkit-transform: translateY(0);
}
.ht-header-four .ht-header-wrap {
position: absolute;
width: 100%;
z-index: 99;
}
.ht-header-four .ht-header .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
padding: 0 20px;
-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.ht-sticky-header .ht-header-four .ht-header.headroom--not-top .ht-container {
-webkit-box-shadow: none;
box-shadow: none;
}
.ht-header-four #ht-site-branding {
float: left;
}
.ht-header-four #ht-site-branding img {
max-height: none;
}
.ht-header-four .ht-main-navigation {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ht-header-four.hover-style5 .ht-main-navigation {
webkit-box-align: stretch;
-ms-flex-align: stretch;
-webkit-box-align: stretch;
align-items: stretch;
}
.ht-sticky-header .ht-header-four .ht-header.headroom.headroom--not-top .ht-main-navigation {
-webkit-box-shadow: none;
box-shadow: none;
}
.ht-header-four.hover-style5 .ht-header .ht-container,
.ht-header-four.hover-style6 .ht-header .ht-container {
padding: 0;
}
.ht-header-four .ht-menu > ul > li.menu-item,
.ht-header-four.hover-style8 .ht-menu > ul > li.menu-item,
.ht-header-four.hover-style9 .ht-menu > ul > li.menu-item {
margin: 0;
}
.ht-header-four .ht-menu > ul > li.menu-item > a {
margin: 0 10px;
}
.ht-site-header.ht-header-four.hover-style5 .ht-menu > ul > li.menu-item > a {
margin: 0;
padding-left: 30px;
padding-right: 30px;
}
.ht-header-four .ht-menu > ul > li.menu-item:after {
content: "";
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 1px;
background: rgba(255, 255, 255, 0.07);
}
.ht-header-four.hover-style2 .ht-menu > ul > li.menu-item > a:after,
.ht-header-four.hover-style4 .ht-menu > ul > li.menu-item > a:after {
right: -11px;
}
.ht-header-four.hover-style5 .ht-menu > ul > li.menu-item > a:after {
right: 0;
}
.ht-header-four .ht-menu > ul > li.menu-item:last-child:after {
display: none;
}
.ht-header-four.hover-style6 .ht-menu > ul > li.menu-item:hover > a:before,
.ht-header-four.hover-style6 .ht-menu > ul > li.menu-item.current_page_item > a:before,
.ht-header-four.hover-style6 .ht-menu > ul > li.menu-item.current-menu-item > a:before,
.ht-header-four.hover-style6 .ht-menu > ul > li.menu-item.current_page_ancestor > a:before,
.ht-header-four.hover-style6 .ht-menu > ul > li.menu-item.current > a:before {
width: 100%;
top: auto;
}
.ht-site-header.ht-header-four .ht-menu > ul > li.menu-item > a {
padding-left: 20px;
padding-right: 20px;
} .ht-header-five#ht-masthead {
position: relative;
}
.ht-header-five .ht-middle-header {
background: #FFF;
}
.ht-header-five .ht-middle-header .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding-top: 20px;
padding-bottom: 20px;
}
.ht-header-five .ht-main-navigation {
background: #5bc2ce;
position: relative;
}
.ht-header-five .ht-main-navigation .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.ht-header-five .ht-menu > ul > li.menu-item:first-child {
margin-left: 0;
} .ht-top-header-off #ht-masthead.ht-header-six {
position: absolute;
left: 0;
right: 0;
}
.ht-top-header-off .ht-header-six .ht-header {
top: 40px;
}
.ht-top-header-on .ht-header-six .ht-header {
position: absolute;
width: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.ht-header-six .ht-header .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
body.ht-wide .ht-header-six .ht-header .ht-container,
body.ht-fluid .ht-header-six .ht-header .ht-container {
padding: 0 20px;
}
.ht-header-six .ht-main-navigation {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ht-header-six .ht-top-header {
position: relative;
}
.ht-sticky-header .ht-header-six .ht-header.headroom.headroom--not-top {
-webkit-transform: translateY(0);
transform: translateY(0)
} @-webkit-keyframes headerSlideDown {
0% {
margin-top: -200px
}
to {
margin-top: 0
}
}
@keyframes headerSlideDown {
0% {
margin-top: -200px
}
to {
margin-top: 0
}
}
.ht-sticky-header .headroom.headroom--not-top {
position: fixed;
top: 0;
left: 0;
z-index: 9999;
width: 100%;
-webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
}
.admin-bar.ht-sticky-header .headroom.headroom--not-top {
top: 32px;
}
.ht-sticky-header .ht-header-two.ht-site-header .headroom.headroom--not-top .ht-top-header {
display: none;
} .hover-style1 .ht-menu > ul > li.menu-item:hover > a,
.hover-style1 .ht-menu > ul > li.menu-item.current_page_item > a,
.hover-style1 .ht-menu > ul > li.menu-item.current-menu-item > a,
.hover-style1 .ht-menu > ul > li.menu-item.current_page_ancestor > a,
.hover-style1 .ht-menu > ul > li.menu-item.current > a {
background: #5bc2ce;
color: #FFF;
}
.hover-style2 .ht-menu > ul > li.menu-item > a,
.hover-style4 .ht-menu > ul > li.menu-item > a {
border: 1px solid transparent;
}
.hover-style2 .ht-menu > ul > li.menu-item:hover > a,
.hover-style2 .ht-menu > ul > li.menu-item.current_page_item > a,
.hover-style2 .ht-menu > ul > li.menu-item.current-menu-item > a,
.hover-style2 .ht-menu > ul > li.menu-item.current_page_ancestor > a,
.hover-style2 .ht-menu > ul > li.menu-item.current > a,
.hover-style4 .ht-menu > ul > li.menu-item:hover > a,
.hover-style4 .ht-menu > ul > li.menu-item.current_page_item > a,
.hover-style4 .ht-menu > ul > li.menu-item.current-menu-item > a,
.hover-style4 .ht-menu > ul > li.menu-item.current_page_ancestor > a,
.hover-style4 .ht-menu > ul > li.menu-item.current > a {
border: 1px solid #5bc2ce;
color: #5bc2ce;
}
.hover-style3 .ht-menu > ul > li.menu-item > a,
.hover-style4 .ht-menu > ul > li.menu-item > a {
border-radius: 30px;
}
.hover-style3 .ht-menu > ul > li.menu-item > a,
.hover-style5 .ht-menu > ul > li.menu-item > a {
padding-left: 20px;
padding-right: 20px;
}
.hover-style3 .ht-menu > ul > li.menu-item:hover > a,
.hover-style3 .ht-menu > ul > li.menu-item.current_page_item > a,
.hover-style3 .ht-menu > ul > li.menu-item.current-menu-item > a,
.hover-style3 .ht-menu > ul > li.menu-item.current_page_ancestor > a,
.hover-style3 .ht-menu > ul > li.menu-item.current > a {
background: #5bc2ce;
}
.hover-style5 .ht-menu li.menu-item {
margin-left: 0;
}
.hover-style6 .ht-menu > ul > li.menu-item > a {
position: relative;
}
.hover-style6 .ht-menu > ul > li.menu-item:hover > a:before,
.hover-style6 .ht-menu > ul > li.menu-item.current_page_item > a:before,
.hover-style6 .ht-menu > ul > li.menu-item.current-menu-item > a:before,
.hover-style6 .ht-menu > ul > li.menu-item.current_page_ancestor > a:before,
.hover-style6 .ht-menu > ul > li.menu-item.current > a:before {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 6px;
background: #5bc2ce;
}
.hover-style7 .ht-menu > ul > li.menu-item > a {
position: relative;
}
.hover-style7 .ht-menu > ul > li.menu-item > a:before,
.hover-style7 .ht-menu > ul > li.menu-item > a:after {
height: 14px;
width: 14px;
position: absolute;
content: '';
-webkit-transition: all 0.35s ease;
transition: all 0.35s ease;
opacity: 0;
}
.hover-style7 .ht-menu > ul > li.menu-item > a:before {
left: 0;
top: 0;
border-left: 1px solid #5bc2ce;
border-top: 1px solid #5bc2ce;
-webkit-transform: translate(100%, 50%);
transform: translate(100%, 50%);
}
.hover-style7 .ht-menu > ul > li.menu-item > a:after {
right: 0;
bottom: 0;
border-right: 1px solid #5bc2ce;
border-bottom: 1px solid #5bc2ce;
-webkit-transform: translate(-100%, -50%);
transform: translate(-100%, -50%);
}
.hover-style7 .ht-menu > ul > li.menu-item:hover > a:before,
.hover-style7 .ht-menu > ul > li.menu-item.current_page_item > a:before,
.hover-style7 .ht-menu > ul > li.menu-item.current-menu-item > a:before,
.hover-style7 .ht-menu > ul > li.menu-item.current_page_ancestor > a:before,
.hover-style7 .ht-menu > ul > li.menu-item.current > a:before,
.hover-style7 .ht-menu > ul > li.menu-item:hover > a:after,
.hover-style7 .ht-menu > ul > li.menu-item.current_page_item > a:after,
.hover-style7 .ht-menu > ul > li.menu-item.current-menu-item > a:after,
.hover-style7 .ht-menu > ul > li.menu-item.current_page_ancestor > a:after,
.hover-style7 .ht-menu > ul > li.menu-item.current > a:after {
-webkit-transform: translate(0%, 0%);
transform: translate(0%, 0%);
opacity: 1;
}
.hover-style8 .ht-menu > ul > li.menu-item {
margin-left: 25px;
}
.hover-style8 .ht-menu > ul > li.menu-item > a,
.hover-style8.ht-header-four .ht-menu > ul > li.menu-item > a {
position: relative;
padding-left: 0;
padding-right: 0;
}
.hover-style8.ht-header-four .ht-menu > ul > li.menu-item > a {
margin: 0 25px;
}
.hover-style8 .ht-menu > ul > li.menu-item > a:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 0;
height: 2px;
background: #5bc2ce;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.hover-style8 .ht-menu > ul > li.menu-item:hover > a:before,
.hover-style8 .ht-menu > ul > li.menu-item.current_page_item > a:before,
.hover-style8 .ht-menu > ul > li.menu-item.current-menu-item > a:before,
.hover-style8 .ht-menu > ul > li.menu-item.current_page_ancestor > a:before,
.hover-style8 .ht-menu > ul > li.menu-item.current > a:before {
width: 20px;
}
.hover-style9 .ht-menu > ul > li.menu-item {
margin-left: 25px;
}
.hover-style9 .ht-menu > ul > li.menu-item > a,
.ht-site-header.ht-header-four.hover-style9 .ht-menu > ul > li.menu-item > a {
position: relative;
padding-left: 0;
padding-right: 0;
}
.ht-header-four.hover-style9 .ht-menu > ul > li.menu-item > a {
margin: 0 25px;
}
.hover-style9 .ht-menu > ul > li.menu-item > a:before {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 1px;
background: #5bc2ce;
-webkit-transform: scale3d(0, 1, 1);
transform: scale3d(0, 1, 1);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-transition: -webkit-transform 0.5s;
transition: -webkit-transform 0.5s;
transition: transform 0.5s;
transition: transform 0.5s, -webkit-transform 0.5s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.hover-style9 .ht-menu > ul > li.menu-item:hover > a:before,
.hover-style9 .ht-menu > ul > li.menu-item.current_page_item > a:before,
.hover-style9 .ht-menu > ul > li.menu-item.current-menu-item > a:before,
.hover-style9 .ht-menu > ul > li.menu-item.current_page_ancestor > a:before,
.hover-style9 .ht-menu > ul > li.menu-item.current > a:before {
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
} .ht-menu > ul > li.menu-item.menu-item-social-icon {
display: flex;
gap: 6px;
margin-left: 25px !important;
}
.ht-menu > ul > li.menu-item.menu-item-social-icon > a,
.ht-site-header.ht-header-four .ht-menu > ul > li.menu-item.menu-item-social-icon > a {
padding: 0 5px;
}
.hover-style1 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a,
.hover-style3 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a,
.hover-style5 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a {
background: none;
}
.ht-header-four .ht-menu > ul > li.menu-item.menu-item-social-icon > a {
margin: 0;
}
.ht-header-four .ht-menu > ul > li.menu-item.menu-item-social-icon:after,
.hover-style6 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a:before {
background: none;
}
.hover-style2 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a,
.hover-style4 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a {
border-color: transparent;
}
.hover-style7 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a:before,
.hover-style7 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a:after {
opacity: 0;
}
.hover-style8 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a:before,
.hover-style8 .ht-menu > ul > li.menu-item.menu-item-search:hover > a:before {
width: 0;
}
.hover-style9 .ht-menu > ul > li.menu-item.menu-item-social-icon:hover > a:before {
-webkit-transform: scale(0);
transform: scale(0);
} .ht-main-navigation .ht-menu ul.megamenu {
padding: 20px 0;
}
.ht-menu ul li:not(.megamenu-category) ul.megamenu ul {
opacity: 1 !important;
display: block !important;
position: static;
background: none;
-webkit-box-shadow: none;
box-shadow: none;
min-width: 0;
padding: 0;
}
.ht-menu ul ul.megamenu > li.menu-item {
float: left;
padding: 0 20px;
}
.ht-menu ul ul.megamenu li.menu-item > a:after {
left: -15px;
}
.ht-menu ul ul.megamenu ul li.menu-item {
padding: 0;
}
.ht-menu .megamenu-auto-width .megamenu.col-1 {
width: 220px;
}
.ht-menu .megamenu-auto-width .megamenu.col-2 {
width: 440px;
}
.ht-menu .megamenu-auto-width .megamenu.col-3 {
width: 660px;
}
.ht-menu .megamenu-auto-width .megamenu.col-4 {
width: 880px;
}
.ht-menu .megamenu-auto-width .megamenu.col-5 {
width: 1000px;
}
.ht-menu .megamenu-auto-width .megamenu.col-6 {
width: 1220px;
}
.ht-main-navigation li.megamenu-auto-width ul.megamenu {
padding: 20px 0;
}
.ht-menu ul li.megamenu-auto-width ul.megamenu > li.menu-item {
padding: 0 20px;
}
.ht-menu .megamenu.col-1 > li.menu-item {
width: 100%;
}
.ht-menu .megamenu.col-2 > li.menu-item {
width: 50%;
}
.ht-menu .megamenu.col-3 > li.menu-item {
width: 33.33%;
}
.ht-menu .megamenu.col-4 > li.menu-item {
width: 25%;
}
.ht-menu .megamenu.col-5 > li.menu-item {
width: 20%;
}
.ht-menu .megamenu.col-6 > li.menu-item {
width: 16.66%;
}
.ht-menu .megamenu.col-2 > li.menu-item:nth-child(2n+1) {
clear: both;
}
.ht-menu .megamenu.col-3 > li.menu-item:nth-child(3n+1) {
clear: both;
}
.ht-menu .megamenu.col-4 > li.menu-item:nth-child(4n+1) {
clear: both;
}
.ht-menu .megamenu.col-5 > li.menu-item:nth-child(5n+1) {
clear: both;
}
.ht-menu .megamenu.col-6 > li.menu-item:nth-child(6n+1) {
clear: both;
}
.ht-menu ul.megamenu li.menu-item.heading-yes .heading-yes {
margin-top: 20px;
}
.ht-menu ul.megamenu li.menu-item.heading-yes > a {
font-size: 1rem;
text-transform: uppercase;
}
.ht-menu ul.megamenu li.menu-item.heading-yes > a:after {
display: none;
}
li.menu-item.heading-hide > a {
display: none !important;
}
.ht-menu ul ul.megamenu li.menu-item > a {
padding: 6px 0;
}
ul.megamenu > li.menu-item a .dropdown-nav {
display: none;
}
.ht-menu .menu-template,
.ht-menu .menu-widget {
margin-bottom: 20px;
}
.ht-menu .menu-template:last-child,
.ht-menu .menu-widget:last-child {
margin-bottom: 0;
}
li.menu-item.heading-yes > a {
pointer-events: none;
color: inherit !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;
}
.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-title a {
font-size: inherit;
line-height: 1.2 !important;
display: block;
}
.megamenu-full-width.megamenu-category .mega-post-link {
display: block;
margin-bottom: 10px;
}
.megamenu-full-width.megamenu-category .mega-post-date {
font-size: 0.9rem;
opacity: 0.7;
} .menu-item [class*="mm-font-icon-"],
.menu-item [class*="mm-font-icon-"]:before {
line-height: 1;
display: inline-block;
width: auto;
height: auto;
font-size: inherit;
transition: none;
}
.mm-font-icon-before {
margin-right: 0.4em;
}
.mm-font-icon-after {
margin-left: 0.4em;
}
.mm-no-title {
margin: 0;
} .ht-section {
background: #FFF;
}
[data-pllx-bg-ratio] {
background-attachment: fixed !important;
}
.ht-section-wrap {
padding: 100px 0;
position: relative;
}
.ht-flex-box {
display: flex;
align-items: center;
}
.ht-section-tagline-text {
font-size: 1.3rem;
}
.ht-section-title-tagline {
margin-bottom: 60px;
}
.ht-section-super-title {
display: block;
margin-bottom: 15px;
font-size: 1.1rem;
opacity: 0.9;
}
.ht-section-title {
font-weight: 400;
letter-spacing: 1px;
text-transform: uppercase;
font-size: 36px;
margin: 0;
}
.ht-section-title-wrap {
margin-bottom: 15px;
}
.ht-section-title-wrap:last-child {
margin-bottom: 0;
}
.ht-section-title-top-center {
text-align: center;
width: 80%;
margin: 0 auto 60px;
}
.ht-section-title-top-cs {
text-align: center;
width: 80%;
margin: 0 auto 60px;
}
.ht-section-title-top-cs .ht-section-title {
position: relative;
padding-bottom: 15px;
}
.ht-section-title-top-cs .ht-section-title:after {
content: "";
position: absolute;
left: 50%;
top: 100%;
width: 60px;
margin-left: -30px;
margin-top: -3px;
height: 3px;
background: #333;
}
.ht-section-title-top-ls .ht-section-title {
position: relative;
padding-bottom: 15px;
}
.ht-section-title-top-ls .ht-section-title:after {
content: "";
position: absolute;
left: 0;
top: 100%;
width: 60px;
margin-top: -3px;
height: 3px;
background: #333;
}
.ht-section-title-side {
width: 30%;
float: left;
text-align: left;
margin-bottom: 0;
padding-right: 40px;
}
.ht-section-title-side + .ht-section-content {
width: 70%;
float: left;
margin-left: 0;
margin-right: 0;
}
.ht-section-title-side .ht-section-tagline-text {
font-size: 1.15rem;
}
.ht-section-title-single-row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
.ht-section-title-single-row .ht-section-title-wrap {
width: 30%;
padding-right: 40px;
border-right: 3px solid #333;
margin-bottom: 0;
}
.ht-section-title-single-row .ht-section-title {
margin-bottom: 0;
letter-spacing: 0;
line-height: 1.2;
}
.ht-section-title-single-row .ht-section-tagline {
width: 70%;
padding-left: 40px;
}
.ht-section-title-single-row .ht-section-tagline p:last-child {
margin-bottom: 0;
}
.ht-section-title-big {
text-align: center;
}
.ht-section-title-big .ht-section-title-wrap {
position: relative;
}
.ht-section-title-big .ht-section-super-title {
position: absolute;
font-size: 6rem;
font-weight: bold;
color: #000000;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 100%;
margin: 0;
line-height: 1.1;
opacity: 0.05;
}
.ht-section-title-big .ht-section-title {
padding-bottom: 40px;
margin: 0;
position: relative;
}
.ht-section-title-big .ht-section-super-title + .ht-section-title {
padding: 40px 0;
}
.ht-section-title-big .ht-section-title:after {
content: "";
position: absolute;
top: 100%;
left: 50%;
width: 70px;
height: 2px;
background: #5bc2ce;
-webkit-box-shadow: -35px -8px 0px 0px #5bc2ce;
box-shadow: -35px -8px 0px 0px #5bc2ce;
margin-left: -35px;
margin-top: -20px;
}
.ht-section-button {
margin-top: 50px;
}
.ht-section-button .ht-button,
.ht-section-button .ht-button:hover {
color: #FFF;
}
.ht-section-content .ht-section-button {
text-align: center;
}
.ht-section-seperator {
position: absolute;
left: 0;
right: 0;
z-index: 9;
}
.top-section-seperator {
top: -1px;
}
.bottom-section-seperator {
bottom: -1px;
}
.ht-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 {
-webkit-transform: rotate(180deg) scaleX(-1);
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 {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.bottom-section-seperator.svg-big-triangle-right-wrap svg,
.bottom-section-seperator.svg-tilt-right-wrap svg {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
} #ht-home-slider-section {
position: relative;
}
.ht-slide {
position: relative;
}
.ht-slide:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.1);
}
.ht-full-window-slider .ht-slide {
background-position: center;
background-size: cover;
min-height: 100vh;
}
.ht-slide img {
width: 100%;
}
.ht-slide-overlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.2);
}
.ht-slide .ht-container {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.ht-slide-caption {
position: absolute;
top: 50%;
left: 50%;
width: 600px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.2);
}
.ht-caption-bg .ht-slide-caption {
padding: 30px;
}
.ht-caption-no-bg .ht-slide-caption {
background: none !important;
}
.ht-slide-caption.ht-slide-center {
text-align: center;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.ht-slide-caption.ht-slide-left {
left: 0;
}
.ht-slide-caption.ht-slide-right {
text-align: right;
right: 0;
left: auto;
}
.ht-slide-cap-title {
font-size: 42px;
color: #FFF;
margin-bottom: 10px;
line-height: 1.2;
letter-spacing: 2px;
font-weight: bold;
}
.ht-caption-no-bg .ht-slide-cap-title {
font-size: 52px;
}
.ht-slide-cap-desc {
font-size: 22px;
line-height: 1.4;
color: #FFF;
}
.ht-slide-button {
margin-top: 30px;
}
.ht-slide-button a {
display: inline-block;
padding: 10px 20px;
background: #FFF;
color: #333;
}
.ht-slide-button a:hover {
background: #333;
color: #FFF;
}
#ht-home-slider-section .owl-nav [class*=owl-] {
position: absolute;
height: 80px;
width: 30px;
top: 50%;
margin-top: -40px;
background: #222;
color: #FFF;
font-size: 28px;
}
#ht-home-slider-section .owl-carousel .owl-nav .owl-prev {
left: 0;
}
#ht-home-slider-section .owl-carousel .owl-nav .owl-next {
right: 0;
}
#ht-home-slider-section .owl-carousel.ht-arrow-bottom .owl-nav [class*=owl-] {
height: 50px;
width: 50px;
top: auto;
bottom: 30px;
margin: 0;
left: 50%;
right: auto;
display: flex;
align-items: center;
justify-content: center;
}
#ht-home-slider-section .owl-carousel.ht-arrow-bottom .owl-nav .owl-prev {
margin-left: -55px;
}
#ht-home-slider-section .owl-carousel.ht-arrow-bottom .owl-nav .owl-next {
margin-right: -55px;
}
#ht-home-slider-section .owl-dots {
position: absolute;
bottom: 20px;
right: 0;
left: 0;
text-align: center;
}
#ht-home-slider-section .owl-dots .owl-dot {
display: inline-block;
height: 10px;
width: 15px;
background: #FFF;
margin: 0 4px;
border-radius: 10px;
-webkit-transition: width 0.3s ease;
transition: width 0.3s ease;
}
#ht-home-slider-section .owl-dots .owl-dot.active {
width: 25px;
}
#ht-home-slider-section .owl-carousel.ht-arrow-bottom .owl-nav .owl-prev {
margin-left: -55px;
}
#ht-home-slider-section .owl-carousel.ht-arrow-bottom .owl-nav .owl-next {
margin-right: -55px;
}
#ht-home-slider-section .owl-carousel.ht-arrow-bottom .owl-dots {
position: absolute;
bottom: 20px;
right: 0;
left: 0;
bottom: auto;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
text-align: center;
}
#ht-home-slider-section .owl-carousel.ht-arrow-bottom .owl-dots .owl-dot {
display: block;
margin: 8px 0;
height: 5px;
}
#ht-home-slider-section .owl-carousel.ht-arrow-bottom .owl-dots {
width: 30px;
left: auto;
right: 20px;
}
.ht-slide-caption {
opacity: 0;
-webkit-transition: all 0.2s ease 0.5s;
transition: all 0.2s ease 0.5s;
}
.active .ht-slide-caption {
opacity: 1;
}
.ht-slide-cap-title {
opacity: 0;
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
-webkit-transition: all 0.3s ease 0.6s;
transition: all 0.3s ease 0.6s;
}
.active .ht-slide-cap-title {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
.ht-slide-cap-desc {
opacity: 0;
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
-webkit-transition: all 0.3s ease 1s;
transition: all 0.3s ease 1s;
}
.active .ht-slide-cap-desc {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
.ht-slide-button {
opacity: 0;
-webkit-transform: translateY(-50px);
transform: translateY(-50px);
-webkit-transition: all 0.3s ease 1.5s;
transition: all 0.3s ease 1.5s;
}
.active .ht-slide-button {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
.ht-main-banner {
background-size: cover;
background-position: center top;
background-attachment: fixed;
background-repeat: no-repeat;
position: relative;
}
.ht-main-banner:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.ht-main-banner .ht-container {
min-height: 100vh;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ht-banner-caption {
color: #FFF;
width: 50%;
padding: 80px 0;
}
.ht-main-banner.ht-caption-bg .ht-banner-caption-bg {
padding: 30px;
background: rgba(0, 0, 0, 0.3);
}
.ht-banner-right {
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.ht-banner-right .ht-banner-caption {
text-align: right;
}
.ht-banner-center .ht-banner-caption {
text-align: center;
margin: 0 auto;
}
.ht-banner-title {
font-size: 60px;
margin-bottom: 20px;
color: #FFF;
}
.ht-main-banner.ht-caption-bg .ht-banner-title {
font-size: 42px;
margin-bottom: 10px;
}
.ht-banner-subtitle {
font-size: 24px;
margin-bottom: 30px;
}
.ht-main-banner.ht-caption-bg .ht-banner-subtitle {
font-size: 20px;
}
.ht-full-height {
min-height: 100vh;
}
.ht-slider-shadow {
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 9;
}
.ht-slider-shadow img {
width: 100%;
display: block;
} #ht-about-section .ht-container {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
overflow: hidden;
}
.ht-about-sec {
padding-right: 30px;
}
.ht-about-sec.fullwidth {
width: 100%;
padding: 0;
}
.ht-about-sec h2 {
text-align: left;
width: auto;
margin-bottom: 30px;
}
.ht-about-sidebar {
width: 40%;
padding-left: 30px;
}
#ht-about-section .ht-sidebar-below-content.ht-container {
display: block;
text-align: center;
margin: 0 auto;
}
.ht-sidebar-below-content .ht-about-sec {
width: 100%;
padding-right: 0;
margin: 0 auto;
}
.ht-sidebar-below-content .ht-about-sidebar {
padding-left: 0;
margin: 40px auto 0;
}
.ht-sidebar-below-content .ht-about-sec h2 {
text-align: center;
}
.sq-elasticstack {
position: relative;
padding: 0;
width: 100%;
max-width: 350px;
height: 420px;
list-style: none;
-webkit-perspective: 1000px;
-webkit-perspective-origin: 50%-50%;
perspective: 1000px;
-webkit-perspective-origin: 50% -50%;
perspective-origin: 50% -50%;
margin: 30px auto 0;
float: right;
}
.ht-sidebar-below-content .sq-elasticstack {
float: none;
}
.no-js .sq-elasticstack {
max-width: 1090px;
width: 100%;
height: auto;
text-align: center;
}
.sq-elasticstack li {
position: absolute;
z-index: 1;
opacity: 0;
cursor: pointer;
-webkit-transform: translate3d(0, 0, -180px);
transform: translate3d(0, 0, -180px);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.no-js .sq-elasticstack li {
position: relative;
display: inline-block;
opacity: 1;
margin: 10px;
cursor: default;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.sq-elasticstack li img {
display: block;
}
.sq-elasticstack li.animate {
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.sq-elasticstack li.move-back {
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.470, 1); -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.470, 1.515);
transition-timing-function: cubic-bezier(0.175, 0.885, 0.470, 1.515);
} .ht-featured-post-wrap {
margin: -40px -20px 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.ht-featured-container {
position: relative;
z-index: 9;
}
.ht-featured-post-wrap.ht-featured-space-off {
margin: 0;
}
.ht-featured-box {
float: left;
padding: 0 20px;
margin: 40px 0 0;
width: 33.33%;
}
.ht-featured-post {
text-align: center;
background: #F6F7F8;
color: #333333;
padding: 45px 40px;
height: 100%;
}
.ht-featured-gradient-on .ht-featured-post {
background-image: url(//arosa.capital/wp-content/themes/square-plus/images/featured-bg.png);
background-repeat: repeat-y;
background-size: 100%;
}
.ht-featured-space-off .ht-featured-box {
margin: 0;
padding: 0;
}
.ht-featured-post-inner * {
color: #333333
}
.ht-featured-post h5 {
margin-bottom: 20px;
}
.ht-featured-link a {
display: inline-block;
font-size: 0.9rem;
}
.ht-featured-icon i {
vertical-align: middle;
}
.ht-featured-link {
margin-top: 30px;
}
.ht-featured-link i {
margin-left: 5px;
}
.ht-featured-excerpt {
opacity: 0.9;
}
.ht-col-2 .ht-featured-box {
width: 50%;
}
.ht-col-3 .ht-featured-box {
width: 33.33%;
}
.ht-col-4 .ht-featured-box {
width: 25%;
}
.ht-col-5 .ht-featured-box {
width: 20%;
}
.ht-col-6 .ht-featured-box {
width: 16.66%;
}
.ht-col-2 .ht-featured-box:nth-child(2n+1) {
clear: both;
}
.ht-col-3 .ht-featured-box:nth-child(3n+1) {
clear: both;
}
.ht-col-4 .ht-featured-box:nth-child(4n+1) {
clear: both;
}
.ht-col-5 .ht-featured-box:nth-child(5n+1) {
clear: both;
}
.ht-col-6 .ht-featured-box:nth-child(6n+1) {
clear: both;
}
.ht-featured-section .style1 .ht-featured-post {
border: 2px solid #FFF;
padding: 0 30px 60px;
position: relative;
border-top: 0;
margin-bottom: 70px;
}
.ht-featured-section .style1 .ht-featured-post:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 50%;
margin-right: 80px;
height: 2px;
background: #FFF;
}
.ht-featured-section .style1 .ht-featured-post:after {
content: "";
position: absolute;
top: 0;
right: 0;
left: 50%;
margin-left: 80px;
height: 2px;
background: #FFF;
}
.ht-featured-section .style1 .ht-featured-icon {
display: inline-block;
color: #FFF;
font-size: 46px;
line-height: 80px;
width: 160px;
margin-bottom: 10px;
}
.ht-featured-section .style1 .ht-featured-link {
position: absolute;
left: 50%;
bottom: 0;
-webkit-transform: translate(-50%, 50%);
transform: translate(-50%, 50%);
}
.ht-featured-section .style1 .ht-featured-link a {
color: #FFF;
padding: 10px 20px;
}
.ht-featured-section .style2 .ht-featured-post {
background: #FFF;
padding: 30px;
-webkit-box-shadow: 0px 1px 20px -8px rgba(158, 153, 158, 1);
box-shadow: 0px 1px 20px -8px rgba(158, 153, 158, 1);
border-top: 3px solid #5bc2ce;
}
.ht-featured-section .style2 .ht-featured-post * {
color: #444;
}
.ht-featured-section .style2 .ht-featured-icon {
color: #333;
font-size: 46px;
margin-bottom: 20px;
}
.ht-featured-section .style3 .ht-featured-post {
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 30px;
margin-bottom: 40px;
}
.ht-featured-section .style3 .ht-featured-icon {
font-size: 40px;
margin-bottom: 30px;
}
.ht-featured-section .style4 .ht-featured-post {
text-align: left;
}
.ht-featured-section .style4 .ht-featured-icon {
font-size: 38px;
margin-bottom: 10px;
}
.ht-featured-section .style4 .ht-featured-link {
margin-top: 15px;
}
.ht-featured-section .style4 .ht-featured-excerpt {
font-size: 0.94rem;
}
.ht-featured-section .style5 .ht-featured-icon {
font-size: 40px;
margin-bottom: 10px;
}
.ht-featured-section .style6 .ht-featured-post {
padding-left: 80px;
text-align: left;
}
.ht-featured-section .style6 .ht-featured-icon {
float: left;
font-size: 40px;
margin-left: -60px;
}
.ht-featured-section .style6 .ht-featured-post h5 {
margin-bottom: 20px;
}
.ht-featured-section .style6 .ht-featured-post .ht-featured-link {
margin-top: 20px;
}
.ht-featured-section .style7 .ht-featured-post {
background: #FFF;
padding: 30px 40px;
text-align: left;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-featured-section .style7 .ht-featured-post:hover {
-webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
.ht-featured-section .style7 .ht-featured-post * {
color: #333;
}
.ht-featured-section .style7 .ht-featured-post h5 {
text-transform: uppercase;
color: #5bc2ce;
}
.ht-featured-section .style7 .ht-featured-icon {
position: relative;
display: inline-block;
background: #5bc2ce;
height: 60px;
width: 60px;
top: -30px;
text-align: center;
font-size: 30px;
}
.ht-featured-section .style7 .ht-featured-icon i {
color: #FFF;
line-height: 60px;
display: block;
}
.ht-featured-section .style7 .ht-featured-link a {
text-transform: uppercase;
font-weight: bold;
opacity: 0.8;
} .ht-highlight-post-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.ht-highlight-post {
position: relative;
width: 33.33%;
overflow: hidden;
background-size: cover;
padding: 50px 40px;
text-align: center
}
.ht-fullwidth-container .ht-highlight-post {
padding: 5%;
}
.ht-highlight-post * {
color: inherit !important;
}
.ht-highlight-section .ht-highlight-post * {
color: #FFFFFF;
}
.ht-highlight-post-overlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(255, 193, 7, 0.8);
}
.ht-highlight-post-content {
position: relative;
}
.ht-highlight-icon {
margin-bottom: 20px;
}
.ht-highlight-icon i {
vertical-align: middle;
font-size: 38px;
}
.ht-highlight-post h5 {
margin-bottom: 20px;
}
.ht-highlight-post h5:last-child {
margin-bottom: 0;
}
.ht-highlight-link {
margin-top: 20px;
}
.ht-highlight-link i {
margin-left: 5px;
}
.ht-col-2 .ht-highlight-post {
width: 50%;
}
.ht-col-3 .ht-highlight-post {
width: 33.33%;
}
.ht-col-4 .ht-highlight-post {
width: 25%;
}
.ht-highlight-post-wrap.style2 .ht-highlight-post {
padding-left: 100px;
text-align: left;
}
.ht-highlight-post-wrap.style2 .ht-highlight-icon {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 60px;
margin-bottom: 0;
}
.ht-highlight-post-wrap.style2 .ht-highlight-icon i {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
} .ht-portfolio-cat-name-list {
margin-bottom: 40px;
}
.ht-portfolio-cat-name {
cursor: pointer;
display: inline-block;
transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
font-size: 0.9rem;
}
.ht-portfolio-cat-name-list.style1 {
text-align: center;
}
.ht-portfolio-cat-name-list.style1 .ht-portfolio-cat-name {
margin: 0 10px 20px;
line-height: 1;
position: relative;
font-size: 0.85rem;
text-transform: uppercase;
}
.ht-portfolio-cat-name-list.style1 .ht-portfolio-cat-name:after {
content: "";
position: absolute;
left: 50%;
right: 50%;
bottom: 0;
height: 2px;
margin-bottom: -15px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-portfolio-cat-name-list.style1 .ht-portfolio-cat-name:hover:after,
.ht-portfolio-cat-name-list.style1 .ht-portfolio-cat-name.active:after {
left: 0;
right: 0;
}
.ht-portfolio-cat-name-list.style1 .ht-portfolio-post-wrap {
margin: 0 -7.5px;
}
.ht-portfolio-cat-name-list.style2 {
text-align: center;
}
.ht-portfolio-cat-name-list.style2 .ht-portfolio-cat-name {
text-transform: uppercase;
margin: 0 10px 20px;
font-size: 0.85rem;
line-height: 1;
position: relative;
text-transform: uppercase;
}
.ht-portfolio-cat-name-list.style2 .ht-portfolio-cat-name:after {
content: "";
position: absolute;
top: -15px;
left: 0;
width: 0;
height: 2px;
background: #5bc2ce;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-portfolio-cat-name-list.style2 .ht-portfolio-cat-name.active:after,
.ht-portfolio-cat-name-list.style2 .ht-portfolio-cat-name:hover:after {
width: 20px;
}
.ht-portfolio-cat-name-list.style3 .ht-portfolio-cat-name-wrap {
float: right;
position: relative;
z-index: 99;
}
.ht-portfolio-cat-name-list.style3 .ht-portfolio-switch {
background: #5bc2ce;
height: 55px;
width: 55px;
text-align: center;
cursor: pointer;
line-height: 1;
}
.ht-portfolio-cat-name-list.style3 .ht-portfolio-switch i {
color: #FFFFFF;
font-size: 30px;
line-height: 55px;
}
.ht-portfolio-cat-name-list.style3 .ht-portfolio-cat-wrap {
position: absolute;
width: 240px;
right: 0;
background: #5bc2ce;
visibility: hidden;
opacity: 0;
top: 100px;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.ht-portfolio-cat-name-list.style3 .ht-portfolio-cat-name-wrap:hover .ht-portfolio-cat-wrap {
visibility: visible;
opacity: 1;
top: 55px;
}
.ht-portfolio-cat-name-list.style3 .ht-portfolio-cat-name {
display: block;
padding: 14px 20px;
line-height: 1;
font-size: 0.85rem;
}
.ht-portfolio-cat-name-list.style3 .ht-portfolio-cat-name.active {
background: rgba(0, 0, 0, 0.05);
}
.ht-portfolio-cat-name-list.style4 {
text-align: center;
}
.ht-portfolio-cat-name-list.style4 .ht-portfolio-cat-wrap {
display: inline-block;
}
.ht-portfolio-cat-name-list.style4 .ht-portfolio-cat-name {
font-size: 0.85rem;
line-height: 1;
padding: 10px 20px;
border-radius: 2px;
text-transform: uppercase;
margin-bottom: 10px;
}
.ht-portfolio-cat-name-list.style4 .ht-portfolio-cat-name.active {
background: #5bc2ce;
}
.ht-portfolio-posts {
position: relative;
margin-left: -10px;
margin-right: -10px;
}
.ht-fullwidth-container .ht-portfolio-posts {
margin-left: 0;
margin-right: 0;
}
.ht-portfolio {
float: left;
}
.ht-portfolio-post-wrap[data-gutter="1"] .ht-portfolio-outer-wrap {
margin: 10px;
}
.ht-portfolio-outer-wrap {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
overflow: hidden;
}
.ht-portfolio-wrap {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-color: #f9f9f9;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.ht-portfolio-caption {
position: absolute;
left: 15px;
right: 15px;
bottom: 15px;
top: 15px;
}
.ht-portfolio-caption:after {
content: "";
background: #5bc2ce;
opacity: 0.9;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 2;
display: block;
-webkit-transform-origin: right;
transform-origin: right;
-webkit-transition: -webkit-transform .7s cubic-bezier(.19, 1, .22, 1);
transition: -webkit-transform .7s cubic-bezier(.19, 1, .22, 1);
transition: transform .7s cubic-bezier(.19, 1, .22, 1);
transition: transform .7s cubic-bezier(.19, 1, .22, 1), -webkit-transform .7s cubic-bezier(.19, 1, .22, 1);
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
.ht-portfolio-wrap:hover .ht-portfolio-caption:after {
-webkit-transform: scaleX(1);
transform: scaleX(1);
-webkit-transform-origin: left;
transform-origin: left;
-webkit-transition: -webkit-transform .5s cubic-bezier(1, 0, 0, 1);
transition: -webkit-transform .5s cubic-bezier(1, 0, 0, 1);
transition: transform .5s cubic-bezier(1, 0, 0, 1);
transition: transform .5s cubic-bezier(1, 0, 0, 1), -webkit-transform .5s cubic-bezier(1, 0, 0, 1);
}
.ht-portfolio-caption h5 {
color: #FFF;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
position: absolute;
z-index: 3;
top: 30px;
left: 20px;
right: 20px;
margin: 0;
text-align: center;
opacity: 0;
-webkit-transform: translate(0, -20px);
transform: translate(0, -20px);
}
.ht-portfolio-caption h5:after {
content: "";
position: absolute;
left: 50%;
bottom: -10px;
width: 20px;
height: 2px;
background: #FFF;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.ht-portfolio-wrap:hover .ht-portfolio-caption h5 {
opacity: 1;
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
-webkit-transition: opacity 0.3s ease-in-out 0.5s, -webkit-transform 0.3s ease-in-out 0.5s;
transition: opacity 0.3s ease-in-out 0.5s, -webkit-transform 0.3s ease-in-out 0.5s;
transition: transform 0.3s ease-in-out 0.5s, opacity 0.3s ease-in-out 0.5s;
transition: transform 0.3s ease-in-out 0.5s, opacity 0.3s ease-in-out 0.5s, -webkit-transform 0.3s ease-in-out 0.5s;
}
.ht-portfolio-caption a {
position: absolute;
display: block;
color: #FFFFFF;
font-size: 26px;
padding: 10px;
opacity: 0;
bottom: 0;
visibility: hidden;
z-index: 9;
}
.ht-portfolio-caption a.ht-portfolio-image {
-webkit-transform: translate(-30px, 0);
transform: translate(-30px, 0);
left: 20px;
}
.ht-portfolio-caption a.ht-portfolio-link {
-webkit-transform: translate(30px, 0);
transform: translate(30px, 0);
right: 20px;
}
.ht-portfolio-wrap:hover .ht-portfolio-caption a.ht-portfolio-link,
.ht-portfolio-wrap:hover .ht-portfolio-caption a.ht-portfolio-image {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
opacity: 1;
visibility: visible;
-webkit-transition: opacity 0.3s ease 0.6s, -webkit-transform 0.3s ease 0.6s;
transition: opacity 0.3s ease 0.6s, -webkit-transform 0.3s ease 0.6s;
transition: transform 0.3s ease 0.6s, opacity 0.3s ease 0.6s;
transition: transform 0.3s ease 0.6s, opacity 0.3s ease 0.6s, -webkit-transform 0.3s ease 0.6s;
} .ht-service-bg {
position: absolute;
top: 0;
bottom: 0;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
min-height: 200px;
width: 50%;
}
.ht-bg-right .ht-service-bg {
margin-left: 50%;
right: 0;
}
.ht-bg-left .ht-service-bg {
margin-right: 50%;
left: 0;
}
.ht-service-section.style4.ht-bg-right .ht-service-posts {
float: left;
width: 50%;
}
.ht-service-section.style4.ht-bg-left .ht-service-posts {
float: right;
width: 50%;
}
.ht-service-section.style1 .ht-service-post-wrap,
.ht-service-section.style4 .ht-service-post-wrap {
position: relative;
}
.ht-service-section.style1 .ht-service-posts .ht-section-title-top-cs,
.ht-service-section.style1 .ht-service-posts .ht-section-title-top-center,
.ht-service-section.style4 .ht-service-posts .ht-section-title-top-cs,
.ht-service-section.style4 .ht-service-posts .ht-section-title-top-center {
width: auto;
}
.ht-service-section.style1 .ht-container {
width: 100%;
max-width: none;
}
.ht-service-section.style1 .ht-service-posts {
padding: 0 8%;
width: 50%;
}
.ht-service-section.style1.ht-bg-left .ht-service-posts {
float: right;
}
.ht-service-section.style1 .ht-service-post {
text-align: center;
padding: 10px 0;
}
.ht-service-section.style1 .ht-service-icon {
text-align: center;
font-size: 40px;
}
.ht-service-section.style1 .ht-service-excerpt h5 {
margin: 10px 0 20px;
font-size: 1.8rem;
}
.ht-service-section.style1 .ht-service-more {
margin-top: 40px;
display: inline-block;
line-height: 1.2;
}
.ht-service-post-wrap.owl-carousel .owl-nav button.owl-prev,
.ht-service-post-wrap.owl-carousel .owl-nav button.owl-next {
position: absolute;
top: 50%;
font-size: 30px;
}
.ht-service-post-wrap.owl-carousel .owl-nav button.owl-prev {
left: -60px;
}
.ht-service-post-wrap.owl-carousel .owl-nav button.owl-next {
right: -60px;
}
.ht-service-section.style1 .ht-section-button a {
display: block;
}
.ht-service-section.style2 .ht-container {
position: relative;
width: 100%;
max-width: none;
}
.ht-service-section.style2 .ht-service-posts {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ht-service-section.style2 .ht-section-title-tagline {
width: 40%;
float: left;
margin: 0 5%;
padding: 60px;
border: 4px solid #333;
}
.ht-service-section.style2 .ht-section-tagline {
width: auto;
}
.ht-service-section.style2.ht-bg-right .ht-section-title-tagline {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
.ht-service-section.style2 .ht-service-post-holder {
width: 50%;
}
.ht-service-section.style2 .ht-service-post-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0 8%;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.ht-service-section.style2 .ht-service-post {
width: 47%;
margin: 20px 0;
padding-left: 60px;
}
.ht-service-section.style2 .ht-service-icon {
float: left;
margin-left: -60px;
}
.ht-service-section.style2 .ht-service-icon i {
font-size: 40px;
line-height: 1;
}
.ht-service-section.style2 .ht-service-excerpt h5 {
margin-bottom: 20px;
}
.ht-service-section.style2 .ht-service-text {
font-size: 0.9rem;
}
.ht-service-section.style2 .ht-service-more {
display: inline-block;
margin-top: 10px;
}
.ht-service-section.style3 .ht-section-wrap > .ht-service-bg {
display: none;
}
.ht-service-section.style3 .ht-service-post-holder {
position: relative;
}
.ht-service-section.style3 .ht-service-bg {
left: 35% !important;
right: 35% !important;
bottom: 0;
top: 0;
margin: 0 !important;
width: auto !important;
}
.ht-service-section.style3 .ht-container {
position: relative
}
.ht-service-section.style3 .ht-service-post-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: -50px;
}
.ht-service-section.style3 .ht-service-post {
width: 35%;
margin: 50px 0 0;
}
.ht-service-section.style3 .ht-service-post:nth-child(odd) {
padding-right: 100px;
text-align: right;
}
.ht-service-section.style3 .ht-service-post:nth-child(even) {
padding-left: 100px;
}
.ht-service-section.style3 .ht-service-icon {
width: 80px;
text-align: center;
margin-top: 10px;
}
.ht-service-section.style3 .ht-service-post:nth-child(odd) .ht-service-icon {
float: right;
margin-right: -80px;
}
.ht-service-section.style3 .ht-service-post:nth-child(even) .ht-service-icon {
float: left;
margin-left: -80px;
}
.ht-service-section.style3 .ht-service-icon i {
font-size: 40px;
line-height: 1;
}
.ht-service-section.style3 .ht-service-more {
display: inline-block;
margin-top: 10px;
}
.ht-service-section.style4.ht-bg-right .ht-service-posts {
padding-right: 80px;
}
.ht-service-section.style4.ht-bg-left .ht-service-posts {
padding-left: 80px;
}
.ht-service-section.style4.ht-bg-left .ht-service-post-wrap {
margin-left: -113px;
}
.ht-service-section.style4 .ht-service-post {
padding-left: 113px;
margin-top: 40px;
}
.ht-service-section.style4 .ht-service-icon {
margin-left: -113px;
float: left;
font-size: 28px;
width: 66px;
height: 66px;
line-height: 66px;
text-align: center;
background: #FFF;
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.ht-service-section.style4 .ht-service-more {
display: inline-block;
margin-top: 10px;
}
.ht-service-section .ht-service-more > i {
margin-left: 5px;
line-height: inherit;
} .ht-team-grid {
margin: -40px -20px 0;
display: flex;
flex-wrap: wrap;
}
.ht-team-grid .ht-team-member {
width: 25%;
padding: 0 20px;
float: left;
margin-top: 40px;
position: relative;
}
.ht-team-col-2 .ht-team-member {
width: 50%;
}
.ht-team-col-3 .ht-team-member {
width: 33.33%;
}
.ht-team-col-4 .ht-team-member {
width: 25%;
}
.ht-team-col-2 .ht-team-member:nth-child(2n+1) {
clear: both;
}
.ht-team-col-3 .ht-team-member:nth-child(3n+1) {
clear: both;
}
.ht-team-col-4 .ht-team-member:nth-child(4n+1) {
clear: both;
}
.ht-team-designation {
font-size: 0.9rem;
opacity: 0.8;
margin-bottom: 15px;
}
.ht-team-member img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: top center;
object-position: top center;
}
.ht-team-member h5 {
margin-bottom: 10px
}
.ht-team-member a.ht-team-detail {
margin-top: 10px;
display: inline-block
}
.ht-team-member .team-short-content {
font-size: 0.94rem;
}
.ht-team-member.style1 {
overflow: hidden;
}
.ht-team-member.style1 .ht-team-member-inner {
position: relative;
}
.ht-team-member.style1 .ht-team-social-id {
margin-top: 20px;
}
.ht-team-member.style1 .ht-team-social-id a {
display: inline-block;
margin-right: 10px;
font-size: 16px;
}
.ht-team-member.style1 .ht-team-member-excerpt {
padding: 30px;
position: absolute;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
-webkit-transform: translateY(100%) translateY(-120px);
transform: translateY(100%) translateY(-120px);
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#99000000', GradientType=0);
transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-webkit-transition: all 0.4s ease;
}
.ht-team-member.style1 .ht-team-member-span {
width: 100%;
}
.ht-team-member.style1:hover .ht-team-member-excerpt {
-webkit-transform: translateY(0);
transform: translateY(0);
}
.ht-team-member.style1 .team-short-content {
padding: 40px 0 0;
line-height: 1.4;
}
.ht-team-member.style1 h5 {
position: relative;
padding-bottom: 10px;
}
.ht-team-member.style1 h5 a {
text-decoration: none;
color: inherit;
}
.ht-team-member.style1 .ht-team-member-excerpt h5:after {
content: "";
position: absolute;
width: 50px;
left: 0;
height: 2px;
background: #FFF;
bottom: -2px;
}
.ht-team-member.style1 .ht-team-designation {
margin-bottom: 0;
}
.ht-team-member.style1 .ht-team-detail {
display: inline-block;
text-decoration: none;
line-height: 30px;
font-size: 0.9rem;
}
.ht-team-member.style2 .ht-team-member-inner {
border: 1px solid rgba(0, 0, 0, 0.1);
}
.ht-team-member.style2 .ht-team-content {
padding: 20px;
}
.ht-team-member.style2 .ht-team-designation {
margin-bottom: 10px;
font-size: 0.9rem;
}
.ht-team-member.style2 .ht-team-social-id {
border-top: 1px solid rgba(0, 0, 0, 0.1);
padding-top: 20px;
margin-top: 20px;
}
.ht-team-member.style2 .ht-team-social-id a {
text-align: center;
margin-right: 10px;
display: inline-block;
font-size: 18px;
}
.ht-team-member.style3 {
text-align: center;
}
.ht-team-member.style3 .ht-team-image {
position: relative;
overflow: hidden
}
.ht-team-member.style3 .ht-team-image-overlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.9);
padding: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
opacity: 0;
transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.ht-team-member.style3 .ht-team-image-overlay-inner {
width: 100%;
}
.ht-team-member.style3 .team-short-content {
transform: translateY(-300px);
-ms-transform: translateY(-300px);
-webkit-transform: translateY(-300px);
transition: all 0.5s ease 0.2s;
-ms-transition: all 0.5s ease 0.2s;
-webkit-transition: all 0.5s ease 0.2s;
}
.ht-team-member.style3 .ht-team-social-id {
transform: translateY(300px);
-ms-transform: translateY(300px);
-webkit-transform: translateY(300px);
transition: all 0.5s ease 0.2s;
-ms-transition: all 0.5s ease 0.2s;
-webkit-transition: all 0.5s ease 0.2s;
}
.ht-team-member.style3:hover .ht-team-image-overlay {
opacity: 1;
}
.ht-team-member.style3:hover .team-short-content {
transform: translateY(0);
-ms-transform: translateY(0);
-webkit-transform: translateY(0);
}
.ht-team-member.style3:hover .ht-team-social-id {
transform: translateY(0);
-ms-transform: translateY(0);
-webkit-transform: translateY(0);
}
.ht-team-member.style3 .ht-team-content {
padding: 20px;
border-bottom: 3px solid #333;
}
.ht-team-member.style3 .ht-team-social-id {
margin-top: 20px;
}
.ht-team-member.style3 .ht-team-social-id a {
height: 36px;
width: 36px;
line-height: 36px;
text-align: center;
border: 1px solid #222;
color: #222;
border-radius: 50%;
margin: 0 4px;
display: inline-block;
font-size: 15px;
}
.ht-team-member.style3 .ht-team-designation {
margin-bottom: 0;
}
.ht-team-member.style3 a.ht-team-detail {
position: relative;
}
.ht-team-member.style4 .ht-team-member-inner {
background: #FFF;
text-align: center;
padding-top: 40px;
-webkit-box-shadow: 0px 4px 26px -6px rgba(0, 0, 0, 0.2);
box-shadow: 0px 4px 26px -6px rgba(0, 0, 0, 0.2);
}
.ht-team-member.style4 .ht-team-image {
width: 150px;
height: 150px;
margin: 0 auto;
border-radius: 50%;
overflow: hidden;
border: 1px solid #EEE;
padding: 10px;
}
.ht-team-member.style4 .ht-team-image img {
border-radius: 50%;
object-fit: cover;
height: 100%;
width: 100%;
}
.ht-team-member.style4 .ht-team-content {
padding: 30px;
}
.ht-team-member.style4 .ht-team-social-id {
margin-top: 20px;
}
.ht-team-member.style4 .ht-team-social-id a {
margin: 0 5px;
border: 1px solid #999;
height: 38px;
width: 38px;
display: inline-block;
border-radius: 50%;
line-height: 38px;
font-size: 16px;
}
.ht-team-member.style4 a.ht-team-detail {
position: relative;
}
.ht-team-carousel .ht-team-member {
margin: 10px;
}
.ht-team-carousel .owl-nav {
text-align: center;
margin-top: 30px;
}
.ht-team-carousel.owl-carousel .owl-nav .owl-prev,
.ht-team-carousel.owl-carousel .owl-nav .owl-next {
display: inline-block;
height: 50px;
width: 50px;
border: 0;
line-height: 50px;
margin: 0 5px;
background: #FFF;
color: #333;
-webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
} .ht-counter-section .ht-counter-wrap {
margin-left: -5%;
margin-top: -60px;
}
.ht-counter-section .ht-counter {
float: left;
width: 20%;
margin-left: 5%;
text-align: center;
margin-top: 60px;
position: relative;
}
.ht-counter-section .ht-counter-count {
font-weight: bold;
white-space: nowrap;
letter-spacing: 1px;
}
.ht-counter-section .ht-counter-title {
margin: 0;
letter-spacing: 1px;
}
.ht-counter-col-2 .ht-counter {
width: 45%;
}
.ht-counter-col-3 .ht-counter {
width: 28.33%;
}
.ht-counter-col-4 .ht-counter {
width: 20%;
}
.ht-counter-col-5 .ht-counter {
width: 15%;
}
.ht-counter-col-6 .ht-counter {
width: 11.66%;
}
.ht-counter-col-2 .ht-counter:nth-child(2n+1) {
clear: both;
}
.ht-counter-col-3 .ht-counter:nth-child(3n+1) {
clear: both;
}
.ht-counter-col-4 .ht-counter:nth-child(4n+1) {
clear: both;
}
.ht-counter-col-5 .ht-counter:nth-child(5n+1) {
clear: both;
}
.ht-counter-col-6 .ht-counter:nth-child(6n+1) {
clear: both;
}
.ht-counter-section .style1 .ht-counter {
float: left;
text-align: center;
position: relative;
}
.ht-counter-section .style1 .ht-counter-count {
font-size: 48px;
line-height: 1;
margin-bottom: 15px;
letter-spacing: 3px;
}
.ht-counter-section .style1 .ht-counter-icon {
font-size: 26px;
line-height: 36px;
position: relative;
margin-bottom: 15px;
}
.ht-counter-section .style1 .ht-counter-icon:after {
content: "";
position: absolute;
right: 15%;
left: 50%;
margin-left: 30px;
top: 50%;
height: 1px;
background: #333;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.ht-counter-section .style1 .ht-counter-icon:before {
content: "";
position: absolute;
left: 15%;
right: 50%;
margin-right: 30px;
top: 50%;
height: 1px;
background: #333;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.ht-counter-section .style1 .ht-counter-title {
margin-top: 15px;
margin: 0;
}
.ht-counter-section .style2 .ht-counter-icon {
position: absolute;
left: 30%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-size: 3rem;
line-height: 1;
opacity: 0.1;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.ht-counter-section .style2 .ht-counter:hover .ht-counter-icon {
-webkit-transform: translate(-50%, -50%) scale(1.4);
transform: translate(-50%, -50%) scale(1.4);
}
.ht-counter-section .style2 .ht-counter-count {
font-size: 3rem;
line-height: 1;
}
.ht-counter-section .style2 .ht-counter-title {
margin-top: 10px;
}
.ht-counter-section .style3 .ht-counter {
position: relative;
}
.ht-counter-section .style3 .ht-counter:after {
content: "";
position: absolute;
left: 20%;
right: 20%;
top: 20%;
bottom: 20%;
border: 10px solid #333;
opacity: 0.1;
}
.ht-counter-section .style3 .ht-counter-icon {
font-size: 3rem;
line-height: 1;
margin-bottom: 15px;
position: relative;
z-index: 9;
}
.ht-counter-section .style3 .ht-counter-count {
font-size: 2rem;
line-height: 1;
margin-bottom: 15px;
position: relative;
z-index: 9;
}
.ht-counter-wrap.style4 {
margin-top: -100px;
}
.ht-counter-section .style4 .ht-counter {
text-align: left;
padding-left: 80px;
margin-top: 100px;
}
.ht-counter-section .style4 .ht-counter-icon {
font-size: 42px;
width: 50px;
float: left;
text-align: center;
opacity: 0.8;
margin-left: -70px;
line-height: 1;
margin-top: 24px;
}
.ht-counter-section .style4 .ht-counter-count {
font-size: 2rem;
line-height: 1;
margin-bottom: 22px;
position: relative;
}
.ht-counter-section .style4 .ht-counter-count:after {
content: "";
position: absolute;
top: 100%;
background: #333;
height: 2px;
width: 50px;
left: 0;
margin-top: 10px;
} .ht-logo-carousel.owl-carousel .owl-stage {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ht-logo-section ul {
list-style: none;
padding: 15px;
}
.ht-logo-section .style1 img {
padding: 2px;
}
.ht-logo-section .style1 .owl-dots {
text-align: center;
margin-top: 40px;
}
.ht-logo-section .style1 .owl-dots .owl-dot {
display: inline-block;
height: 8px;
width: 10px;
background: #333;
margin: 0 5px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
border-radius: 20px;
}
.ht-logo-section .style1 .owl-dots .owl-dot.active {
width: 30px;
}
.ht-logo-section .style2 .flipster-carousel .flip-items .flip-item {
background-color: #ffffff;
opacity: 1;
}
.ht-logo-section .style2 .flipster-carousel .flip-items .flip-content {
width: 400px;
height: 400px;
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.ht-logo-section .style2 .flipto-prev,
.ht-logo-section .style2 .flipto-next {
position: absolute;
top: 50%;
height: 40px;
width: 36px;
margin-top: -20px;
text-align: center;
font-size: 20px;
background: #5bc2ce;
}
.ht-logo-section .style2 .flipto-prev i,
.ht-logo-section .style2 .flipto-next i {
color: #FFF !important;
}
.ht-logo-section .style2 .flipto-prev i,
.ht-logo-section .style2 .flipto-next i {
line-height: 40px;
}
.ht-logo-section .style2 .flipto-prev {
left: 0;
}
.ht-logo-section .style2 .flipto-next {
right: 0;
}
.ht-logo-section .style3 .ht-logo-grid {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 -30px;
}
.ht-logo-section .style3 .ht-logo-grid .ht-logo-item {
width: 25%;
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 30px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.ht-logo-section .style4 .ht-logo-grid {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.ht-logo-section .style4 .ht-logo-grid .ht-logo-item {
width: 25%;
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
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);
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.ht-logo-section .style4 .ht-logo-grid .ht-logo-item:nth-child(4n+1),
.ht-logo-section .style4 .ht-logo-grid .ht-logo-item:nth-child(1) {
border-left: 0;
}
.ht-logo-section .style4 .ht-logo-grid .ht-logo-item.last-row {
border-bottom: 0;
} .slick-slider .slick-slide {
outline: none;
}
.ht-testimonial-wrap .ht-testimonial-image-wrap {
max-width: 500px;
width: 100%;
margin: 0 auto 40px;
}
.ht-testimonial-wrap .ht-testimonial-image-wrap[data-count="1"],
.ht-testimonial-wrap .ht-testimonial-image-wrap[data-count="2"],
.ht-testimonial-wrap .ht-testimonial-image-wrap[data-count="3"] {
max-width: 150px;
}
.el-testimonial-wrap .el-testimonial-image-wrap[data-count="1"] .slick-track {
transform: translate3d(0, 0, 0) !important;
}
.ht-testimonial-wrap .ht-testimonial-excerpt {
margin-bottom: 20px
}
.ht-section-title-side + .ht-testimonial-content .ht-testimonial-wrap.style2 .ht-testimonial-content-wrap {
width: 100%;
}
.ht-testimonial-wrap .ht-testimonial-excerpt .icofont-quote-left {
position: absolute;
top: 50%;
right: 0;
font-size: 68px;
color: rgba(0, 0, 0, 0.1);
opacity: 0.5;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.ht-testimonial-wrap .ht-testimonial h5 {
text-align: center;
margin: 0 0 5px;
}
.ht-testimonial-wrap .ht-testimonial .designation {
text-align: center;
}
.ht-testimonial-wrap.style1 {
margin-left: 5%;
margin-right: 5%
}
.ht-testimonial-wrap.style1 .ht-testimonial {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: #FFF;
padding: 50px;
-webkit-box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
margin: 10px;
}
.ht-testimonial-wrap.style1 .ht-testimonial-excerpt {
width: 70%;
position: relative;
padding-right: 80px;
margin: 0;
}
.ht-testimonial-wrap.style1 .ht-testimonial img {
height: 150px;
width: 150px;
margin: 0 auto 20px;
transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-o-object-fit: cover;
object-fit: cover;
}
.ht-testimonial-wrap.style1 .ht-testimonial-person {
width: 30%;
}
.ht-testimonial-wrap.style1 .owl-dots {
text-align: center;
margin-top: 40px;
}
.ht-testimonial-wrap.style1 .owl-dots .owl-dot {
display: inline-block;
height: 8px;
width: 10px;
background: #333;
margin: 0 5px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
border-radius: 20px;
}
.ht-testimonial-wrap.style1 .owl-dots .owl-dot.active {
width: 30px;
}
.ht-testimonial-wrap.style2 .ht-testimonial-image-wrap,
.ht-testimonial-wrap.style2 .ht-testimonial-content-wrap {
display: none;
}
.ht-testimonial-wrap.style2 .ht-testimonial-image-wrap.slick-initialized,
.ht-testimonial-wrap.style2 .ht-testimonial-content-wrap.slick-initialized {
display: block
}
.ht-testimonial-wrap.style2 .ht-testimonial-content-wrap {
width: 80%;
margin: 0 auto;
text-align: center;
}
.ht-testimonial-image-slide img {
transform: scale(0.7);
-webkit-transform: scale(0.7);
-moz-transform: scale(0.7);
transition: all 0.4s ease;
-ms-transition: all 0.4s ease;
-webkit-transition: all 0.4s ease;
cursor: pointer;
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.ht-testimonial-image-slide.slick-center img {
transform: scale(0.9);
-webkit-transform: scale(0.9);
-moz-transform: scale(0.9);
}
.ht-testimonial-wrap.style2 .slick-dots {
display: block;
width: 100%;
padding: 0;
margin: 40px 0 0;
list-style: none;
text-align: center;
}
.ht-testimonial-wrap.style2 .slick-dots li {
display: inline-block;
height: 8px;
width: 10px;
background: #333;
margin: 0 5px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
border-radius: 20px;
cursor: pointer;
}
.ht-testimonial-wrap.style2 .slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
padding: 0;
height: 0;
width: 0;
}
.ht-testimonial-wrap.style2 .slick-dots li.slick-active {
width: 30px;
}
.ht-testimonial-section .style3 .ht-testimonial-wrap {
margin-left: -3%;
}
.ht-testimonial-section .style3 .ht-testimonial-box-wrap {
width: 33.33%;
float: left;
padding: 0 20px;
margin-top: 40px;
}
.ht-testimonial-section .style3 .ht-testimonial-box {
background: #FFF;
padding: 30px;
-webkit-box-shadow: 2px 2px 18px -6px rgba(0, 0, 0, 0.2);
box-shadow: 2px 2px 18px -6px rgba(0, 0, 0, 0.2);
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
}
.ht-testimonial-section .ht-section-title-side + .ht-testimonial-content .style3 .ht-testimonial-box-wrap {
width: 50%;
}
.ht-testimonial-section .ht-section-title-side + .ht-section-content .owl-item.center .ht-testimonial-box {
opacity: 1;
}
.ht-testimonial-section .ht-testimonial-wrap.style3 {
margin: -40px -20px 0;
display: flex;
flex-wrap: wrap;
}
.ht-testimonial-section .style3 .ht-testimonial-box:hover {
-webkit-box-shadow: 2px 2px 28px 0px rgba(0, 0, 0, 0.2);
box-shadow: 2px 2px 28px 0px rgba(0, 0, 0, 0.2);
}
.ht-section-title-side + .ht-testimonial-content .style3 .ht-testimonial-box:nth-child(3n+1) {
clear: none;
}
.ht-testimonial-section .style3 .ht-testimonial-box:nth-child(3n+1),
.ht-section-title-side + .ht-testimonial-content .style3 .ht-testimonial-box:nth-child(2n+1) {
clear: both
}
.ht-testimonial-section .style3 .ht-testimonial-excerpt {
position: relative;
padding: 20px 0 0;
margin: 25px 0 0;
text-align: left;
width: auto;
}
.ht-testimonial-section .style3 .ht-testimonial-excerpt:after {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
height: 1px;
background: #333;
opacity: 0.1;
}
.ht-testimonial-section .style3 .ht-testimonial-footer {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}
.ht-testimonial-section .style3 .ht-testimonial-box img {
width: 80px;
height: 80px;
-o-object-fit: cover;
object-fit: cover;
margin-right: 20px;
border-radius: 50%;
}
.ht-testimonial-section .style3 .ht-testimonial-box h5,
.ht-testimonial-section .style4 .ht-testimonial-box h5 {
line-height: 1.2;
margin-bottom: 5px;
}
.ht-testimonial-section .style3 .ht-testimonial-box .designation,
.ht-testimonial-section .style4 .ht-testimonial-box .designation {
font-size: 0.85rem;
}
.ht-testimonial-section .ht-section-title-side + .ht-section-content .style4 .ht-testimonial-box {
opacity: 0.6;
}
.ht-testimonial-section .style4 .ht-testimonial-box {
background: #FFF;
padding: 25px;
-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
transform: scale(0.9);
-ms-transform: scale(0.9);
-webkit-transform: scale(0.9);
margin: 60px 10px 10px;
text-align: center;
}
.ht-testimonial-section .style4 .owl-item.center .ht-testimonial-box {
transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
opacity: 1;
}
.ht-testimonial-section .ht-testimonial-wrap.style4 .ht-testimonial-excerpt {
margin-bottom: 0;
}
.ht-testimonial-section .style4 .ht-testimonial-footer {
text-align: center;
margin: -75px 0 20px;
}
.ht-testimonial-section .style4 .ht-testimonial-box img {
display: inline-block;
width: 100px;
height: 100px;
-o-object-fit: cover;
object-fit: cover;
margin-bottom: 20px;
border-radius: 50%;
background: #FFF;
padding: 5px;
}
.ht-testimonial-section .style4 .owl-nav {
text-align: center;
margin-top: 40px;
}
.ht-testimonial-section .style4 .owl-nav [class^="owl-"] {
display: inline-block;
margin: 0 10px;
font-size: 26px;
} .ht-blog-wrap {
margin: -40px -20px 0;
display: flex;
flex-wrap: wrap;
}
.ht-blog-box {
float: left;
padding: 0 20px;
width: 33.33%;
margin-top: 40px;
}
.ht-blog-col-2 .ht-blog-box {
width: 50%;
}
.ht-blog-col-3 .ht-blog-box {
width: 33.33%;
}
.ht-blog-col-4 .ht-blog-box {
width: 25%;
}
.ht-blog-col-2 .ht-blog-box:nth-child(2n+1) {
clear: both;
}
.ht-blog-col-3 .ht-blog-box:nth-child(3n+1) {
clear: both;
}
.ht-blog-col-4 .ht-blog-box:nth-child(4n+1) {
clear: both;
}
.ht-blog-excerpt h5 {
margin-bottom: 15px
}
.ht-blog-excerpt h5 a {
color: #333;
}
.ht-blog-date {
font-size: 14px;
opacity: 0.8;
margin-bottom: 10px;
text-transform: uppercase;
}
.ht-blog-date i {
margin-right: 10px;
}
.ht-blog-read-more {
margin-top: 20px
}
.ht-blog-section .ht-blog-read-more a {
display: inline-block;
color: inherit;
letter-spacing: 1px;
text-transform: uppercase;
font-size: 0.8rem;
}
.ht-blog-section .ht-blog-thumbnail img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
}
.ht-blog-section .ht-blog-excerpt-text {
font-size: 0.9rem;
}
.ht-blog-section .style1 .ht-blog-post {
position: relative;
border: 12px solid rgba(0, 0, 0, 0.05);
background: #FFF;
height: 100%;
}
.ht-blog-section .style1 .ht-blog-thumbnail:after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: rgba(0, 0, 0, 0.7);
}
.ht-blog-section .style1 .ht-blog-thumbnail {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
height: auto !important;
opacity: 0;
-webkit-transition: opacity 0.3s ease;
transition: opacity 0.3s ease;
}
.ht-blog-section .style1 .ht-blog-post:hover .ht-blog-thumbnail {
opacity: 1;
}
.ht-blog-section .style1 .ht-blog-post:hover * {
color: #FFF;
}
.ht-blog-section .style1 .ht-blog-footer {
font-size: 0.9rem;
margin-bottom: 15px;
opacity: 0.8;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.ht-blog-section .style1 .ht-blog-footer i {
margin-right: 10px;
}
.ht-blog-section .style1 .ht-blog-excerpt {
position: relative;
z-index: 9;
padding: 30px;
}
.ht-blog-section .style2 .ht-blog-thumbnail {
margin-bottom: 25px;
}
.ht-blog-section .style2 .ht-blog-footer {
position: relative;
font-size: 0.9rem;
margin-top: 15px;
padding-top: 10px;
opacity: 0.8;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.ht-blog-section .style2 .ht-blog-footer:after {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
height: 1px;
background: rgba(0, 0, 0, 0.2);
opacity: 0.5;
}
.ht-blog-section .style2 .ht-blog-footer i {
margin-right: 10px;
}
.ht-blog-section .style3 .ht-blog-post {
-webkit-box-shadow: 0 0 15px 0 rgba(41, 61, 88, .1);
box-shadow: 0 0 15px 0 rgba(41, 61, 88, .1);
border-bottom: 4px solid #5bc2ce;
background: #FFF;
}
.ht-blog-section .style3 .ht-blog-thumbnail {
margin-bottom: 0;
position: relative;
}
.ht-blog-section .style3 .ht-blog-excerpt {
padding: 50px 20px 20px;
}
.ht-blog-section .style3 .ht-blog-excerpt.ht-no-date {
padding-top: 20px;
}
.ht-blog-section .style3 .ht-blog-excerpt-text {
border-top: 1px solid rgba(0, 0, 0, .05);
padding-top: 15px;
}
.ht-blog-section .style3 .ht-blog-date {
position: absolute;
left: 20px;
top: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 1;
width: 80px;
text-align: center;
color: #FFF;
padding: 8px;
white-space: nowrap;
}
.ht-blog-section .style3 .ht-blog-date span {
display: block;
line-height: 1;
color: #FFF;
font-size: 30px;
}
.ht-blog-section .style3 .ht-blog-footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
font-size: 0.9rem;
margin-bottom: 10px;
}
.ht-blog-section .style3 .ht-blog-footer span {
margin-right: 10px;
}
.ht-blog-section .style3 .ht-blog-footer span i {
margin-right: 5px;
}
.ht-blog-section .style3 .ht-blog-excerpt h5 {
margin-bottom: 15px;
}
.ht-blog-section .style4 .ht-blog-thumbnail {
position: relative;
background: #000;
overflow: hidden;
}
.ht-blog-section .style4 .ht-blog-thumbnail img {
opacity: 0.6;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-blog-section .style4 .ht-blog-thumbnail:hover img {
opacity: 0.4;
}
.ht-blog-section .style4 .ht-blog-excerpt {
position: absolute;
top: 50%;
left: 0;
right: 0;
text-align: center;
padding: 30px;
pointer-events: none;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-blog-section .style4 .ht-blog-excerpt h5 {
margin-bottom: 0;
}
.ht-blog-section .style4 .ht-blog-date {
line-height: 1;
margin: 0;
opacity: 1;
margin-bottom: 15px;
}
.ht-blog-section .style4 .ht-blog-footer {
line-height: 1;
margin-top: 25px;
}
.ht-blog-section .style4 .ht-blog-footer span {
margin: 0 5px;
}
.ht-blog-section .style4 .ht-blog-footer i {
margin-right: 10px;
} .ht-tab-wrap .ht-content {
display: none;
}
.ht-tab-wrap .ht-content h5 {
font-size: 1.8rem;
margin-bottom: 30px;
}
.ht-tab-wrap.style1 .ht-tabs {
width: 25%;
float: left;
border-right: 1px solid #ccc;
padding: 20px 0;
}
.ht-tab-wrap.style1 .ht-tab-content {
position: relative;
width: 75%;
float: right;
padding: 15px 0 15px 80px;
}
.ht-tab-wrap.style1 .ht-tab {
position: relative;
cursor: pointer;
padding: 25px 30px 25px 40px;
font-size: 1.1rem;
line-height: 1.2;
}
.ht-tab-wrap.style1 .ht-tab.ht-active:after {
content: "";
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 6px;
background: #5bc2ce;
margin-right: -3px;
z-index: 99;
border-radius: 6px;
}
.ht-tab-wrap.style1 .ht-tab i {
float: left;
margin-left: -40px;
line-height: 1.2;
}
.ht-tab-wrap.style2 .ht-tabs {
width: 25%;
float: left;
padding: 20px 0;
}
.ht-tab-wrap.style2 .ht-tab-content {
position: relative;
width: 75%;
float: right;
padding: 15px 0 15px 80px;
}
.ht-tab-wrap.style2 .ht-tab {
position: relative;
cursor: pointer;
text-transform: uppercase;
padding: 20px 30px 20px 60px;
font-size: 1.1rem;
line-height: 1.1;
background: #333;
margin-bottom: 6px;
color: #FFF;
}
.ht-tab-wrap.style2 .ht-tab i {
float: left;
margin-left: -40px;
line-height: 1.2;
}
.ht-tab-wrap.style2 .ht-tab.ht-active {
background: #5bc2ce;
}
.ht-tab-wrap.style2 .ht-tab.ht-active:after {
content: "";
position: absolute;
left: 100%;
top: 50%;
border-color: transparent;
border-left-color: #5bc2ce;
border-width: 20px;
border-style: solid;
margin-top: -20px;
}
.ht-tab-wrap.style3 .ht-tabs {
text-align: center;
margin-bottom: 40px;
}
.ht-tab-wrap.style3 .ht-tab {
display: inline-block;
padding: 20px 30px 15px 30px;
cursor: pointer;
border-bottom: 5px solid transparent;
min-width: 150px;
max-width: 300px;
}
.ht-tab-wrap.style3 .ht-tab.ht-active {
background: #FFF;
border-bottom: 5px solid #5bc2ce;
-webkit-box-shadow: 0 0px 9px rgba(0, 0, 0, 0.1);
box-shadow: 0 0px 9px rgba(0, 0, 0, 0.1);
}
.ht-tab-wrap.style3 .ht-tab i {
font-size: 36px;
opacity: 0.7;
line-height: 1;
}
.ht-tab-wrap.style3 .ht-tab span {
display: block;
text-transform: uppercase;
margin-top: 10px;
line-height: 1.2;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.ht-tab-wrap.style4 .ht-tabs {
text-align: center;
margin-bottom: 40px;
}
.ht-tab-wrap.style4 .ht-tab {
position: relative;
display: inline-block;
cursor: pointer;
margin: 0 30px;
min-width: 150px;
max-width: 300px;
}
.ht-tab-wrap.style4 .ht-tab span {
display: block;
border-top: 2px solid #5bc2ce;
margin-top: 20px;
padding: 20px 0;
text-transform: uppercase;
position: relative;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.ht-tab-wrap.style4 .ht-tab.ht-active span:before {
content: "";
position: absolute;
left: 50%;
top: 100%;
width: 40px;
height: 2px;
background: #5bc2ce;
margin-left: -20px;
margin-top: -4px;
}
.ht-tab-wrap.style4 .ht-tab:after {
content: "";
position: absolute;
top: 50%;
left: 100%;
width: 15px;
height: 15px;
border: 2px solid #5bc2ce;
margin-left: 25px;
border-radius: 50%;
margin-top: -15px;
}
.ht-tab-wrap.style4 .ht-tab:last-child:after {
display: none;
}
.ht-tab-wrap.style4 .ht-tab i {
font-size: 30px;
line-height: 1;
}
.ht-tab-wrap.style5 {}
.ht-tab-wrap.style5 .ht-tab-content {
padding: 60px;
background: #FFF;
color: #333;
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.ht-tab-wrap.style5 .ht-tabs {
padding: 0;
text-align: center;
}
.ht-tab-wrap.style5 .ht-tab {
display: inline-block;
padding: 20px 40px;
cursor: pointer;
min-width: 150px;
max-width: 300px;
}
.ht-tab-wrap.style5 .ht-tab.ht-active {
background: #5bc2ce;
color: #FFF;
position: relative;
}
.ht-tab-wrap.style5 .ht-tab i {
font-size: 36px;
line-height: 1;
}
.ht-tab-wrap.style5 .ht-tab span {
display: block;
margin-top: 4px;
position: relative;
z-index: 9;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-transform: uppercase;
} .ht-cta-buttons a {
display: inline-block;
padding: 10px 25px;
color: #FFF;
border-radius: 1px;
margin: 0 4px;
line-height: 30px;
height: 50px;
}
.ht-cta-buttons a.ht-cta-button1 {
background: #5bc2ce;
}
.ht-cta-buttons a.ht-cta-button2 {
background: #333;
}
.ht-cta-buttons a.ht-cta-button1:hover {
background: #333;
color: #FFF;
}
.ht-cta-buttons a.ht-cta-button2:hover {
background: #5bc2ce;
color: #FFF;
}
.ht-cta-section .ht-section-title,
.ht-cta-section .ht-section-tagline {
width: auto;
}
.ht-cta-section .ht-section-title-tagline {
margin-bottom: 30px;
}
.ht-cta-section.style1 .ht-section-title-tagline {
padding-left: 10%;
padding-right: 10%
}
.ht-cta-section.style1 .ht-section-title-tagline,
.ht-cta-section.style1 .ht-cta-buttons {
text-align: center;
}
.ht-cta-section.style2 .ht-section-title-tagline,
.ht-cta-section.style2 .ht-cta-buttons {
text-align: left;
}
.ht-cta-section.style3 .ht-section-title-tagline,
.ht-cta-section.style3 .ht-cta-buttons {
text-align: right;
}
.ht-cta-section.style4 .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ht-cta-section.style4 .ht-section-title-tagline,
.ht-cta-section.style4 .ht-cta-buttons {
text-align: left;
}
.ht-cta-section.style4 .ht-section-title-tagline {
padding-right: 40px;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
margin-bottom: 0;
}
.ht-cta-section.style4 #cta-video {
text-align: center;
}
.ht-cta-buttons {
white-space: nowrap;
}
#cta-video {
margin-bottom: 40px;
}
#cta-video a {
margin: 0;
padding: 0;
}
#cta-video a img {
height: 100%;
width: auto;
}
#cta-video:last-child {
margin-bottom: 0;
}
#cta-video .video-play-button {
display: inline-block;
width: 80px;
height: 80px;
border-radius: 50%;
position: relative;
margin: 20px 0;
text-align: center;
}
#cta-video .video-play-button:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
border-radius: 50%;
-webkit-animation: pulse-border 1500ms ease-out infinite;
animation: pulse-border 1500ms ease-out infinite;
background: #5bc2ce;
}
#cta-video .video-play-button:after {
content: "";
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
border-radius: 50%;
background: #5bc2ce;
}
#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% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
-ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@-webkit-keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
-ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
} .ht-pricing-wrap {
margin-left: -5%;
margin-top: -40px;
}
.ht-pricing-wrap .ht-pricing {
float: left;
margin-left: 5%;
margin-top: 40px;
}
.ht-pricing * {
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-pricing ul {
list-style: none;
padding: 0;
margin: 0;
}
.ht-pricing-col-2 .ht-pricing {
width: 45%;
}
.ht-pricing-col-3 .ht-pricing {
width: 28.33%;
}
.ht-pricing-col-4 .ht-pricing {
width: 20%;
}
.ht-pricing-col-2 .ht-pricing:nth-child(2n+1) {
clear: both;
}
.ht-pricing-col-3 .ht-pricing:nth-child(3n+1) {
clear: both;
}
.ht-pricing-col-4 .ht-pricing:nth-child(4n+1) {
clear: both;
}
.ht-pricing.style1 {
background: #FFF;
text-align: center;
-webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.3);
}
.ht-pricing.style1 * {
color: #333;
}
.ht-pricing.style1 .ht-pricing-header {
padding: 40px 20px;
background: #F1F1F1;
margin: 0 15% 40px;
position: relative;
border-radius: 0 0 40px 40px;
}
.ht-pricing.style1 .ht-pricing-header h5 {
margin-bottom: 25px;
}
.ht-pricing.style1 .ht-pricing-price {
font-size: 52px;
font-weight: bold;
line-height: 1;
}
.ht-pricing.style1 .ht-pricing-price span {
font-size: 14px;
}
.ht-pricing.style1 .ht-pricing-list {
padding: 0 30px;
}
.ht-pricing.style1 .ht-pricing-list li {
padding: 10px;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.ht-pricing.style1 .ht-pricing-list li:last-child {
border-bottom: 0;
}
.ht-pricing.style1 .ht-pricing-button {
padding: 40px 15% 0;
}
.ht-pricing.style1 .ht-pricing-button a {
display: block;
background: #333;
padding: 15px 30px;
color: #FFF;
line-height: 1;
border-radius: 10px 10px 0 0;
}
.ht-pricing.style1:hover .ht-pricing-header,
.ht-pricing.style1:hover .ht-pricing-header:before,
.ht-pricing.style1:hover .ht-pricing-header:after,
.ht-pricing.style1:hover .ht-pricing-button a,
.ht-pricing.style1.ht-featured .ht-pricing-header,
.ht-pricing.style1.ht-featured .ht-pricing-header:before,
.ht-pricing.style1.ht-featured .ht-pricing-header:after,
.ht-pricing.style1.ht-featured .ht-pricing-button a {
background: #5bc2ce;
}
.ht-pricing.style1:hover .ht-pricing-header *,
.ht-pricing.style1:hover .ht-pricing-button a,
.ht-pricing.style1.ht-featured .ht-pricing-header *,
.ht-pricing.style1.ht-featured .ht-pricing-button a {
color: #FFF
}
.ht-pricing.style1.ht-featured {
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
.ht-pricing.style2 {
background: #FFF;
-webkit-box-shadow: 0px 12px 25px -10px rgba(0, 0, 0, 0.4);
box-shadow: 0px 12px 25px -10px rgba(0, 0, 0, 0.4);
text-align: center
}
.ht-pricing.style2 .ht-pricing-header {
padding: 40px;
background: #414141;
margin: 0 0 40px;
position: relative;
}
.ht-pricing.style2 .ht-pricing-header * {
color: #FFF;
}
.ht-pricing.style2 .ht-pricing-header h5 {
margin-bottom: 10px;
}
.ht-pricing.style2 .ht-pricing-price {
position: relative;
font-size: 52px;
line-height: 1.5;
}
.ht-pricing.style2 .ht-pricing-price .ht-price-per {
position: absolute;
left: 50%;
top: 100%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: inline-block;
font-size: 15px;
background: #FFF;
padding: 10px 40px;
border-radius: 30px;
margin-top: 40px;
-webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.1);
box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.1);
color: #333 !important;
line-height: 1;
white-space: nowrap;
}
.ht-pricing.style2 .ht-pricing-list * {
color: #333;
}
.ht-pricing.style2 .ht-pricing-list li {
padding: 10px;
}
.ht-pricing.style2 .ht-pricing-list li:nth-child(even) {
background: #FAFAFA;
}
.ht-pricing.style2 .ht-pricing-button {
padding: 40px;
}
.ht-pricing.style2 .ht-pricing-button a {
display: inline-block;
background: #5bc2ce;
padding: 15px 40px;
border-radius: 60px;
color: #FFF;
line-height: 1;
}
.ht-pricing.style2:hover .ht-pricing-header,
.ht-pricing.style2.ht-featured .ht-pricing-header {
background: #5bc2ce;
}
.ht-pricing.style2.ht-featured {
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
.ht-pricing.style3 {
background: #5bc2ce;
color: #FFF;
text-align: center
}
.ht-pricing.style3 .ht-pricing-header {
overflow: hidden;
}
.ht-pricing.style3 .ht-pricing-header h5 {
padding: 50px 20px;
color: #FFF;
margin: 0;
text-transform: uppercase;
}
.ht-pricing.style3 .ht-pricing-price {
position: relative;
color: #333;
padding-top: 30px;
padding-bottom: 30px;
padding-left: 30px;
padding-right: 20%;
margin-bottom: 40px;
}
.ht-pricing.style3 .ht-pricing-price .ht-pricing-price-inner {
position: relative;
z-index: 1;
text-align: left;
font-size: 3rem;
line-height: 1;
white-space: nowrap;
}
.ht-pricing.style3 .ht-pricing-price:after {
position: absolute;
left: -20%;
top: 0;
width: 100%;
background-color: #fff;
border-radius: 25px;
content: '';
height: 100%;
-webkit-transform: skewX(-35deg);
transform: skewX(-35deg);
}
.ht-pricing.style3 .ht-pricing-price span {
font-size: 15px;
}
.ht-pricing.style3 .ht-pricing-list {}
.ht-pricing.style3 .ht-pricing-list li {
padding: 10px;
}
.ht-pricing.style3 .ht-pricing-button {
padding: 40px;
text-align: center;
}
.ht-pricing.style3 .ht-pricing-button a {
display: inline-block;
background: #FFF;
border-radius: 40px;
padding: 15px 30px;
line-height: 1;
color: #333;
}
.ht-pricing.style3.ht-featured {
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
.ht-pricing.style4 {
background: #FFF;
text-align: center;
-webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.ht-pricing.style4 .ht-pricing-header {
position: relative;
padding: 30px 30px 100px;
background: #5bc2ce;
color: #FFF;
}
.ht-pricing.style4 .ht-pricing-header * {
color: #FFF;
}
.ht-pricing.style4 .ht-pricing-header h5 {
margin-bottom: 20px;
}
.ht-pricing.style4 .ht-pricing-price {
font-size: 60px;
line-height: 1;
}
.ht-pricing.style4 .ht-price-per {
display: block;
font-size: 0.9rem;
margin-top: 10px;
}
.ht-pricing.style4 .ht-pricing-list {
position: relative;
}
.ht-pricing.style4 .ht-pricing-list:after {
content: "";
position: absolute;
left: 0;
top: -60px;
bottom: -60px;
right: 0;
-webkit-transform: skewY(-10deg);
transform: skewY(-10deg);
background: #FFF;
}
.ht-pricing.style4 .ht-pricing-list * {
color: #333;
}
.ht-pricing.style4 .ht-pricing-list li {
padding: 10px;
position: relative;
z-index: 1;
}
.ht-pricing.style4 .ht-pricing-button {
background: #5bc2ce;
padding-top: 100px;
}
.ht-pricing.style4 .ht-pricing-button a {
display: block;
padding: 10px 20px 20px;
text-transform: uppercase;
color: #FFF;
font-weight: bold;
font-size: 0.9rem;
}
.ht-pricing.style4.ht-featured {
-webkit-transform: scale(1.05);
transform: scale(1.05);
} .ht-news {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.ht-news-image {
width: 60%;
float: left;
}
.ht-news-content {
width: 35%;
float: right;
}
.ht-news-content h5 {
font-size: 1.8rem;
margin-bottom: 20px;
}
.ht-news-section .ht-news-text {
margin-bottom: 30px;
}
.ht-news-section .ht-news-text a {
text-decoration: underline;
}
.ht-news-section .ht-news-link {
background: #333;
padding: 12px 20px;
line-height: 1;
color: #FFF;
display: inline-block;
}
.ht-news-section .ht-news-link i {
margin-left: 10px;
}
.ht-news-wrap.style1.owl-carousel .owl-stage-outer {
padding-top: 100px;
}
.ht-news-wrap.style1 .ht-news {
background: #f7f9fd;
padding: 60px;
}
.ht-news-wrap.style1 .ht-news-image {
margin-top: -140px;
}
.ht-news-wrap.owl-carousel .owl-nav {
text-align: right;
margin-left: 60px;
position: absolute;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
top: 100px;
}
.ht-news-wrap.style2.owl-carousel .owl-nav {
margin-left: 0;
top: 0;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.ht-news-wrap.owl-carousel .owl-nav button.owl-prev,
.ht-news-wrap.owl-carousel .owl-nav button.owl-next {
background: #333;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
color: #FFF;
margin-right: 5px;
}
.ht-news-wrap.owl-carousel .owl-nav button.owl-prev span,
.ht-news-wrap.owl-carousel .owl-nav button.owl-next span {
display: block;
font-size: 16px;
}
.ht-news-section .style2 .ht-news-image {
position: relative;
width: 35%;
margin: 80px -150px 80px 0;
z-index: 1;
background-size: cover;
background-position: center;
}
.ht-news-section .style2 .ht-news-content {
position: relative;
background: #f7f9fd;
padding: 80px 80px 80px 200px;
width: 80%;
} #ht-contact-section {
position: relative;
}
.ht-contact-section .ht-section-wrap {
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.ht-contact-content {
float: right;
width: 50%;
padding: 0 5%;
}
#ht-contact-section .ht-contact-form textarea {
height: 100px;
background: none;
border-top: 0;
border-left: 0;
border-right: 0;
border-bottom: 2px solid #EEE;
padding-left: 0;
padding-right: 0;
resize: none;
}
#ht-contact-section .ht-contact-form input[type="text"],
#ht-contact-section .ht-contact-form input[type="email"],
#ht-contact-section .ht-contact-form input[type="url"],
#ht-contact-section .ht-contact-form input[type="password"],
#ht-contact-section .ht-contact-form input[type="search"],
#ht-contact-section .ht-contact-form input[type="number"],
#ht-contact-section .ht-contact-form input[type="tel"],
#ht-contact-section .ht-contact-form input[type="range"],
#ht-contact-section .ht-contact-form input[type="date"],
#ht-contact-section .ht-contact-form input[type="month"],
#ht-contact-section .ht-contact-form input[type="week"],
#ht-contact-section .ht-contact-form input[type="time"],
#ht-contact-section .ht-contact-form input[type="datetime"],
#ht-contact-section .ht-contact-form input[type="datetime-local"],
#ht-contact-section .ht-contact-form input[type="color"] {
border-top: 0;
border-left: 0;
border-right: 0;
border-bottom: 2px solid #EEE;
background: none;
width: 100%;
padding-left: 0;
padding-right: 0;
}
#ht-contact-section .ht-contact-form select {
border-top: 0;
border-left: 0;
border-right: 0;
border-bottom: 2px solid #EEE;
background-color: none;
width: 100%;
padding-left: 0;
border-radius: 0;
}
#ht-contact-section .ht-contact-form div.wpforms-container-full .wpforms-form .wpforms-field-label {
font-weight: normal;
}
.ht-contact-form p {
margin-bottom: 30px;
}
.ht-contact-form p:last-of-type {
margin-bottom: 0;
}
.ht-contact-detail {
margin-top: 50px;
}
.ht-contact-social-icon {
margin-top: 20px;
}
.ht-contact-social-icon a {
height: 40px;
width: 40px;
line-height: 40px;
text-align: center;
background: #FFF;
display: inline-block;
margin-right: 12px;
font-size: 16px;
}
.ht-contact-section .ht-contact-detail .ht-contact-social-icon a i {
color: #5bc2ce;
}
.ht-contact-detail-on #ht-google-map {
position: absolute;
overflow: hidden;
left: 0;
right: 50%;
top: 0;
bottom: 0;
}
.ht-contact-detail-off #ht-google-map,
.ht-contact-detail-off #ht-google-map > iframe {
min-height: 600px;
}
.ht-contact-detail-off .ht-section-wrap {
padding: 0 !important;
}
.ht-contact-google-map {
width: 100%;
}
.ht-window-height #ht-google-map {
min-height: 100vh;
}
#ht-google-map > iframe {
height: 100%;
width: 100%;
display: block;
}
.animated-dot {
width: 20px;
height: 20px;
left: -9px;
top: -5px;
position: relative
}
.animated-dot .middle-dot:after {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-family: IcoFont;
content: "\ef79";
font-size: 62px
}
.animated-dot .signal,
.animated-dot .signal2 {
width: 200px;
height: 200px;
pointer-events: none;
border-radius: 50%;
position: absolute;
left: -90px;
top: -90px;
opacity: 0;
-webkit-animation: animationSignal cubic-bezier(0, .55, .55, 1) 2s;
animation: animationSignal cubic-bezier(0, .55, .55, 1) 2s;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-delay: .78s;
animation-delay: .78s
}
.animated-dot .signal {
border: 2px solid rgba(0, 0, 0, .2);
-webkit-box-shadow: inset 0 0 35px 10px rgba(0, 0, 0, .18);
box-shadow: inset 0 0 35px 10px rgba(0, 0, 0, .18);
-webkit-animation-delay: .78s;
animation-delay: .78s
}
.animated-dot .signal2 {
border: 2px solid #000;
-webkit-animation-delay: 1s;
animation-delay: 1s
}
@-webkit-keyframes animationSignal {
0% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0)
}
1% {
opacity: .4
}
20% {
opacity: .4
}
60% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0
}
}
@keyframes animationSignal {
0% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0)
}
1% {
opacity: .4
}
20% {
opacity: .4
}
60% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0
}
} #ht-colophon {
margin-top: 40px;
position: relative;
}
body.ht-no-footer-space #ht-colophon {
margin-top: 0;
}
.elementor-template-full-width #ht-colophon,
.page-template-home-template #ht-colophon,
.page-template-page-builder-template #ht-colophon,
.home.blog #ht-colophon,
.ht-enable-frontpage #ht-colophon {
margin-top: 0 !important;
}
.footer-style1 .ht-main-footer a {
color: #BBB;
text-decoration: none;
}
#ht-colophon .widget-title {
text-transform: uppercase;
margin-bottom: 20px;
position: relative;
}
#ht-colophon .widget-title * {
color: inherit
}
.ht-sidebar-style1 .ht-site-footer .widget-title {
padding-bottom: 10px
}
.ht-sidebar-style1 .ht-site-footer .widget-title:after {
content: "";
position: absolute;
left: 0;
top: 100%;
width: 30px;
background: #5bc2ce;
height: 2px;
}
.ht-sidebar-style1 .ht-site-footer .ht-top-footer .widget-title:after {
left: 50%;
margin-left: -15px;
}
.ht-sidebar-style2 .ht-site-footer .widget-title {
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
padding-bottom: 10px
}
.ht-sidebar-style3 .ht-site-footer .widget-title {
padding-left: 30px;
}
.ht-sidebar-style3 .ht-site-footer .widget-title:after {
content: "";
position: absolute;
top: 50%;
left: 0;
width: 10px;
height: 10px;
background: #000000;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.ht-sidebar-style3 .ht-site-footer .ht-top-footer .widget-title:after {
display: none;
}
.ht-top-footer,
.ht-main-footer,
.ht-bottom-top-footer,
.ht-bottom-footer {
position: relative
}
.ht-top-footer .widget {
margin-bottom: 30px;
}
.ht-top-footer .widget:last-child,
.ht-bottom-top-footer .widget:last-child {
margin-bottom: 0;
}
.footer-style1 .ht-main-footer:before,
.footer-style2.ht-site-footer:before,
.footer-style3.ht-site-footer:before,
.footer-style4.ht-site-footer:before,
.footer-style5.ht-site-footer:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.ht-main-footer .ht-container {
position: relative;
}
.ht-footer {
float: left;
width: 22%;
margin-left: 3%;
}
.ht-footer .widget {
margin-bottom: 30px;
}
.ht-footer .widget_block,
.ht-footer .widget:last-child {
margin-bottom: 0;
}
.ht-footer ul {
list-style: none;
margin: 0;
padding: 0;
}
.ht-footer li {
padding: 5px 0;
line-height: 1.3rem;
}
.col-1-1 .ht-footer1 {
width: 100%;
}
.col-2-1-1 .ht-footer {
width: 47%;
}
.col-3-1-1-1 .ht-footer {
width: 30.33%;
}
.col-3-1-2 .ht-footer1 {
width: 30.33%;
}
.col-3-1-2 .ht-footer2 {
width: 63.66%;
}
.col-3-2-1 .ht-footer1 {
width: 63.66%;
}
.col-3-2-1 .ht-footer2 {
width: 30.33%;
}
.col-4-1-1-1-1 .ht-footer {
width: 22%;
}
.col-4-1-1-2 .ht-footer1 {
width: 22%;
}
.col-4-1-1-2 .ht-footer2 {
width: 22%;
}
.col-4-1-1-2 .ht-footer3 {
width: 47%;
}
.col-4-2-1-1 .ht-footer1 {
width: 47%;
}
.col-4-2-1-1 .ht-footer2 {
width: 22%;
}
.col-4-2-1-1 .ht-footer3 {
width: 22%;
}
.col-4-1-2-1 .ht-footer1 {
width: 22%;
}
.col-4-1-2-1 .ht-footer2 {
width: 47%;
}
.col-4-1-2-1 .ht-footer3 {
width: 22%;
}
.col-4-1-3 .ht-footer1 {
width: 22%;
}
.col-4-1-3 .ht-footer2 {
width: 72%;
}
.col-4-3-1 .ht-footer1 {
width: 72%;
}
.col-4-3-1 .ht-footer2 {
width: 22%;
}
.ht-bottom-footer {
font-size: 0.9rem;
}
.footer-style1 .ht-top-footer {
background: rgba(0, 0, 0, 0.05);
padding: 30px 0;
text-align: center;
}
.footer-style1 .ht-main-footer {
color: #BBB;
padding: 50px 0;
}
.footer-style1 .ht-main-footer-wrap {
margin-left: -3%;
}
.footer-style1 .ht-bottom-top-footer {
position: relative;
background: rgba(0, 0, 0, 0.05);
padding: 30px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-style1 .ht-bottom-footer {
background: rgba(0, 0, 0, 0.05);
padding: 30px 0;
color: #AAA;
line-height: 1.2;
text-align: center;
}
.footer-style2 .ht-top-footer .ht-container {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 30px 0;
text-align: center
}
.footer-style2 .ht-main-footer .ht-container {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-style2 .ht-main-footer-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.footer-style2 .ht-footer {
border-right: 1px solid rgba(0, 0, 0, 0.1);
margin: 0;
padding: 60px 30px;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
.footer-style2 .ht-top-footer + .ht-main-footer .ht-footer {
padding: 30px;
}
.footer-style2 .ht-footer:last-child {
border-right: 0;
}
.footer-style2 .ht-bottom-top-footer .ht-container {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 30px 0;
position: relative;
}
.footer-style2 .ht-bottom-footer .ht-container {
position: relative;
padding: 20px 0;
text-align: center
}
#ht-colophon.footer-style3 {
margin-top: 100px;
}
.footer-style3 .ht-top-footer {
position: relative;
top: -50px;
z-index: 99;
}
.footer-style3 .ht-top-footer .ht-container {
background: rgba(0, 0, 0, 0.1);
padding: 30px;
text-align: center;
}
.footer-style3 .ht-main-footer {
padding-top: 50px;
}
.footer-style3 .ht-top-footer + .ht-main-footer {
padding-top: 0;
}
.footer-style3 .ht-main-footer-wrap {
margin-left: -3%;
padding: 0 0 40px;
}
.footer-style3 .ht-bottom-footer {
padding-bottom: 30px;
text-align: center;
}
.footer-style3 .ht-bottom-top-footer .ht-container {
position: relative;
background: rgba(0, 0, 0, 0.1);
padding: 30px;
margin-bottom: 15px;
}
.footer-style3 .ht-bottom-footer .ht-container {
background: rgba(0, 0, 0, 0.1);
padding: 20px;
}
.footer-style4 .ht-top-footer {
padding: 40px 0;
text-align: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-style4 .ht-main-footer-wrap {
margin-left: -3%;
}
.footer-style4 .ht-main-footer {
padding: 40px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-style4 .ht-bottom-top-footer {
position: relative;
padding: 25px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-style4 .ht-bottom-footer {
padding: 25px 0;
text-align: center;
}
.footer-style5 .ht-top-footer {
padding: 40px 0;
text-align: center;
}
.footer-style5 .ht-main-footer {
background: rgba(0, 0, 0, 0.2);
padding: 40px 0;
margin: 0 4%;
}
.footer-style5 .ht-main-footer-wrap {
margin-left: -3%;
}
.footer-style5 .ht-bottom-top-footer {
position: relative;
background: rgba(0, 0, 0, 0.2);
padding: 30px 0;
margin: 0 4%;
margin-top: 15px;
}
.footer-style5 .ht-bottom-footer {
padding: 20px 0;
text-align: center;
}
#back-to-top {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
border-radius: 50%;
-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
z-index: 10;
background-color: transparent;
visibility: hidden;
opacity: 0;
-webkit-transform: scale(0.9);
transform: scale(0.9);
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out
}
#back-to-top.ht-st-right {
left: auto;
}
#back-to-top.ht-st-left {
right: auto;
}
#back-to-top.ht-st-center {
right: auto;
left: 50%;
transform: translate(-50%, 0) scale(1);
}
#back-to-top.ht-show {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
#back-to-top svg path {
fill: none
}
#back-to-top svg.progress-circle path {
stroke-width: 3
}
#back-to-top i {
position: absolute;
} .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;
} .ht-search-wrapper {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.9);
z-index: 99999;
-webkit-transform: scaleX(0.2);
transform: scaleX(0.2);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.ht-search-wrapper.ht-search-triggered {
-webkit-transform: scaleX(1);
transform: scaleX(1);
opacity: 1;
visibility: visible;
}
.ht-search-close {
position: absolute;
top: 0;
right: 0;
cursor: pointer;
height: 60px;
width: 60px;
text-align: center;
line-height: 60px;
background: #5bc2ce;
color: #FFF;
font-size: 24px;
}
.ht-search-container {
position: absolute;
left: 10%;
right: 10%;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
text-align: center;
}
.ht-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;
}
.ht-search-container .search-submit {
background: none !important;
border: 3px solid #AAA;
padding: 16px 60px;
font-size: 20px;
border-radius: 40px;
color: #AAA;
height: 70px;
} .odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
display: block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
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;
-webkit-backface-visibility: hidden;
}
.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 {
-webkit-transition: -webkit-transform 2s;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-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 {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
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 {
-webkit-transition: -webkit-transform 2s;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-transform 2s;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
text-align: center;
} .square-plus-privacy-policy {
position: fixed;
background: #333;
bottom: 0;
left: 0;
right: 0;
padding: 20px 0;
z-index: 9999;
color: #FFF;
font-size: 0.9rem;
display: none;
}
.customizer-gdpr-section .square-plus-privacy-policy {
display: block;
}
.policy-text a {
color: #FFF;
text-decoration: underline;
}
.policy-buttons a {
display: inline-block;
background: #5bc2ce;
padding: 12px 25px;
color: #FFF;
margin: 0 4px;
border-radius: 1px;
line-height: 1.2;
text-transform: uppercase;
font-size: 0.88rem;
}
.policy-buttons a:hover {
color: #FFF;
}
.square-plus-privacy-policy.top-full-width {
top: 0;
bottom: auto;
}
.square-plus-privacy-policy.top-full-width .ht-container,
.square-plus-privacy-policy.bottom-full-width .ht-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
body.logged-in.admin-bar .square-plus-privacy-policy.top-full-width {
top: auto;
}
.square-plus-privacy-policy.top-full-width .policy-text,
.square-plus-privacy-policy.bottom-full-width .policy-text {
margin-right: 40px;
}
.square-plus-privacy-policy.top-full-width .policy-buttons,
.square-plus-privacy-policy.bottom-full-width .policy-buttons {
white-space: nowrap;
}
.square-plus-privacy-policy.bottom-left-float .policy-buttons,
.square-plus-privacy-policy.bottom-right-float .policy-buttons {
margin-top: 10px;
}
.square-plus-privacy-policy.bottom-left-float .policy-buttons a,
.square-plus-privacy-policy.bottom-right-float .policy-buttons a {
margin-top: 10px;
}
.square-plus-privacy-policy.bottom-left-float {
width: 40%;
left: 40px;
bottom: 40px;
right: auto;
padding: 20px;
border-radius: 8px;
-webkit-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
}
.square-plus-privacy-policy.bottom-right-float {
width: 40%;
left: auto;
bottom: 40px;
right: 40px;
padding: 20px;
border-radius: 8px;
-webkit-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
}
.square-plus-privacy-policy.bottom-left-float .ht-container,
.square-plus-privacy-policy.bottom-right-float .ht-container {
width: 100%;
} @media screen and (min-width: 768px) {
.alignfull,
.alignwide {
width: auto;
max-width: 1000%;
}
body.ht-no-sidebar:not(.ht-boxed) .alignfull,
body.ht-no-sidebar-narrow:not(.ht-boxed) .alignfull {
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
}
body.ht-no-sidebar:not(.ht-boxed) .alignwide,
body.ht-no-sidebar-narrow:not(.ht-boxed) .alignwide {
margin-left: calc(25% - 25vw);
margin-right: calc(25% - 25vw);
}
body.ht-right-sidebar:not(.ht-boxed) .alignfull {
margin-left: calc(50% / .70 - 50vw);
}
body.ht-right-sidebar:not(.ht-boxed) .alignwide {
margin-left: calc(25% / .70 - 25vw);
}
body.ht-right-sidebar:not(.ht-boxed) .align-wrap {
width: auto;
margin-left: calc(50% / .7 - 50vw);
}
body.ht-left-sidebar :not(.ht-boxed).alignfull {
margin-right: calc(50% / .70 - 50vw);
}
body.ht-left-sidebar:not(.ht-boxed) .alignwide {
margin-right: calc(25% / .70 - 25vw);
}
body.ht-left-sidebar:not(.ht-boxed) .align-wrap {
width: auto;
margin-right: calc(50% / .7 - 50vw);
}
body.ht-no-sidebar.ht-boxed .alignfull,
body.ht-no-sidebar-narrow.ht-boxed .alignfull {
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
}
body.ht-right-sidebar.ht-boxed .alignfull {
margin-left: calc(50% / .7 - 50vw);
margin-right: 0;
}
body.ht-left-sidebar.ht-boxed .alignfull {
margin-right: calc(50% / .7 - 50vw);
margin-left: 0;
}
}
body.ht-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.9rem;
}  .woocommerce ul.products li.product a img {
margin-bottom: 0;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
display: block;
}
.woocommerce ul.products li.product .square-plus-product-title-wrap {
padding: 15px;
border-top: 2px solid #5bc2ce;
border-bottom: 2px solid #5bc2ce;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
padding: 0;
margin: 0 0 8px;
text-transform: uppercase;
}
.woocommerce ul.products li.product .price {
font-size: 1rem;
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 .square-plus-product-image-wrap {
position: relative;
}
.woocommerce ul.products li.product .square-plus-product-actions {
position: absolute;
left: 10px;
top: 0;
bottom: 0;
text-align: center;
}
.woocommerce ul.products li.product .square-plus-product-actions-wrap {
display: flex;
flex-direction: column;
height: 100%;
justify-content: center;
}
.woocommerce ul.products li.product .square-plus-product-actions > .clear,
.woocommerce ul.products li.product .square-plus-product-actions .feedback {
display: none;
}
.woocommerce ul.products li.product .compare:not(.totalplus-compare-button),
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist:not(.totalplus-wishlist-button){
display: none !important;
}
.woocommerce ul.products li.product .totalplus-product-actions .totalplus-product-icon {
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 .totalplus-product-icon {
transform: translateY(0);
visibility: visible;
opacity: 1;
}
.woocommerce ul.products li.product .totalplus-product-actions .totalplus-product-icon:nth-child(1) {
transition: all 0.3s ease 0.1s;
}
.woocommerce ul.products li.product .totalplus-product-actions .totalplus-product-icon:nth-child(2) {
transition: all 0.3s ease 0.2s;
}
.woocommerce ul.products li.product .totalplus-product-actions .totalplus-product-icon:nth-child(3) {
transition: all 0.3s ease 0.3s;
}
.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;
margin: 0 !important;
cursor: pointer;
top: auto;
left: auto;
bottom: auto;
right: auto;
}
.woocommerce ul.products li.product .totalplus-product-actions a i {
font-size: 16px;
margin: 0;
}
.woocommerce ul.products li.product .totalplus-product-actions .totalplus-product-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 .totalplus-product-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 .totalplus-product-icon:hover .totalplus-product-tooltip {
visibility: visible !important;
opacity: 1 !important;
}
.woocommerce ul.products li.product .square-plus-product-image-wrap > .button,
.woocommerce ul.products li.product .square-plus-product-image-wrap > a.added_to_cart {
position: absolute;
right: 10px;
bottom: 10px;
text-transform: uppercase;
white-space: nowrap;
margin: 0;
padding-top: 5px;
padding-bottom: 5px;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.woocommerce ul.products li.product:hover .square-plus-product-image-wrap > .button,
.woocommerce ul.products li.product:hover .square-plus-product-image-wrap > a.added_to_cart {
opacity: 1;
visibility: visible;
}
.woocommerce ul.products li.product .square-plus-product-image-wrap > .button.added {
display: none;
}
.woocommerce #respond input#submit.loading::after,
.woocommerce a.button.loading::after,
.woocommerce button.button.loading::after,
.woocommerce input.button.loading::after {
top: 0.4em;
}
.woocommerce ul.products li.product .button.loading {
opacity: 1;
}
.woocommerce ul.products li.product .square-plus-product-image-wrap > a.added_to_cart {
display: block;
}
.woocommerce ul.products li.product .onsale {
margin: -5px 5px 0 0;
} .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: #5bc2ce;
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: #5bc2ce;
color: #fff;
font-size: 14px;
margin: 10px 0 0 -6px;
top: 0;
left: 0;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
color: #5bc2ce
}
.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: #5bc2ce;
}
.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 #5bc2ce;
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;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
background: #5bc2ce;
position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before {
content: "";
position: absolute;
left: 50%;
border-color: #5bc2ce 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;
}
.woocommerce table.shop_attributes th {
font-weight: normal;
text-transform: uppercase;
}
.woocommerce #reviews #comments 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,
.woocommerce a.added_to_cart {
padding: 10px 20px;
font-weight: 400;
border-radius: 0;
color: #FFF;
background-color: #5bc2ce;
border: 1px solid #5bc2ce;
line-height: 20px;
font-size: 0.9rem;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.added_to_cart: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: #5bc2ce;
background-color: #5bc2ce;
}
.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: #5bc2ce;
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: #5bc2ce;
border-color: #5bc2ce;
} .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.4rem;
}
#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.2rem;
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;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
line-height: 30px;
padding: 10px 20px;
outline: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 50px;
}
.select2-results {
font-size: 0.9rem;
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;
-webkit-box-shadow: none !important;
box-shadow: none !important;
} .woocommerce-error,
.woocommerce-info,
.woocommerce-message {
border-top-color: #5bc2ce;
font-size: 0.9rem;
}
.woocommerce-error:before,
.woocommerce-info:before,
.woocommerce-message:before {
color: #5bc2ce;
}
.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: #5bc2ce;
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 #5bc2ce;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
background-color: #5bc2ce
}
.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;
} .menu-item-ht-cart i {
position: relative;
}
.menu-item-ht-cart .cart-count {
font-size: 0.8rem;
margin-left: 6px;
position: relative;
top: -8px;
line-height: 14px;
font-family: Arial;
}
.menu-item-ht-cart .widget_shopping_cart {
position: absolute;
display: none;
right: 0;
top: 100%;
width: 300px;
background: #FFF;
padding: 25px;
text-transform: none;
margin: 0;
-webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}
.menu-item-ht-cart:hover .widget_shopping_cart {
display: block;
}
.menu-item-ht-cart .widget_shopping_cart ul {
display: block;
position: static;
background: none;
min-width: 0;
padding: 0;
-webkit-box-shadow: none;
box-shadow: none;
max-height: 300px;
}
.menu-item-ht-cart .widget_shopping_cart .woocommerce-mini-cart a {
padding: 0;
}
.menu-item-ht-cart .woocommerce.widget_shopping_cart .total {
padding: 15px 0;
border: 0;
margin: 0;
border-top: 1px solid #FFF;
}
.menu-item-ht-cart .woocommerce-mini-cart__buttons {
margin: 0;
}
.menu-item-ht-cart .woocommerce.widget_shopping_cart .buttons a {
display: block;
margin: 0 0 10px;
text-align: center;
color: #FFFF;
}
.menu-item-ht-cart .woocommerce-mini-cart__total .woocommerce-Price-amount {
float: right
}
.menu-item-ht-cart .woocommerce.widget_shopping_cart .cart_list li {
padding: 10px 20px 10px 0;
}
.menu-item-ht-cart ul.product_list_widget li img {
width: 72px;
float: left;
margin: 0 10px 0 0;
}
.menu-item-ht-cart .woocommerce.widget_shopping_cart .cart_list li a.remove {
left: auto;
right: 0;
top: 20px;
}
.menu-item-ht-cart .woocommerce.widget_shopping_cart .cart_list li .quantity {
font-size: 0.9rem;
}
.menu-item-ht-cart .woocommerce-mini-cart__empty-message {
margin-bottom: 0;
}
#ht-responsive-menu .menu-item-ht-cart .widget_shopping_cart {
display: none !important;
} .woocommerce table.wishlist_table {
font-size: 1rem;
}
.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 tbody td {
border-color: #EEE;
padding: 15px;
}
.woocommerce .wishlist_table td.product-add-to-cart a.add_to_cart_button: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: 1rem;
width: 1rem;
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.4rem;
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;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
#yith-quick-view-close:before {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
#yith-quick-view-close:after {
-webkit-transform: rotate(-45deg);
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;
} #ht-mobile-menu {
display: none;
margin-left: 30px;
}
.ht-header-four #ht-mobile-menu,
.ht-header-five #ht-mobile-menu {
margin-left: 0;
}
.collapse-button {
padding: 6px 12px;
color: #FFFFFF;
text-align: center;
background-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: #F5F5F5;
border-radius: 1px
}
#ht-responsive-menu {
position: absolute;
left: 0;
right: 0;
top: 100%;
background: #FFF;
z-index: 99;
margin: 0;
padding: 0;
list-style: none;
display: none;
}
#ht-responsive-menu ul {
margin: 0;
list-style: none;
display: none;
}
#ht-responsive-menu li.megamenu-auto-width ul.megamenu {
padding: 0;
}
#ht-responsive-menu li.menu-item {
position: relative;
float: none;
}
#ht-responsive-menu li.menu-item > a {
position: relative;
padding: 15px 30px;
display: block;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
color: #333;
}
#ht-responsive-menu li.menu-item > a .mm-menu-title {
display: flex;
align-items: center;
padding-right: 40px;
}
#ht-responsive-menu li.menu-item.menu-item-social-icon {
display: flex;
justify-content: center;
gap: 6px;
flex-wrap: wrap;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#ht-responsive-menu li.menu-item.menu-item-social-icon > a {
padding-left: 8px;
padding-right: 8px;
border: 0;
}
#ht-responsive-menu li.menu-item.menu-item-search {
display: flex;
justify-content: center;
}
#ht-responsive-menu ul.megamenu li.menu-item > a {
padding: 15px 40px;
}
#ht-responsive-menu ul.megamenu .menu-template,
#ht-responsive-menu ul.megamenu .menu-widget {
padding: 40px 40px 0;
}
#ht-responsive-menu ul li.menu-item > a {
padding-left: 40px;
}
#ht-responsive-menu ul ul li.menu-item > a {
padding-left: 50px;
}
#ht-responsive-menu ul ul ul li.menu-item > a {
padding-left: 60px;
}
#ht-responsive-menu ul ul ul ul li.menu-item > a {
padding-left: 70px;
}
#ht-responsive-menu ul ul ul ul ul li.menu-item > a {
padding-left: 80px;
}
#ht-responsive-menu li .dropdown-nav {
position: absolute;
right: 30px;
top: 50%;
z-index: 999;
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%);
}
#ht-responsive-menu li.menu-item .nav-desc {
display: block;
font-size: 0.8em;
margin-top: 2px;
padding-right: 40px;
}
#ht-responsive-menu li .dropdown-nav:before {
content: "\33";
}
#ht-responsive-menu li .dropdown-nav.ht-opened:before {
content: "\32";
}
#ht-responsive-menu li.menu-item-ht-cart .dropdown-nav {
display: none;
}
#ht-responsive-menu .megamenu .dropdown-nav {
display: none;
}
#ht-responsive-menu .megamenu ul {
display: block !important;
}
#ht-responsive-menu .megamenu li.heading-yes > a {
background: rgba(0, 0, 0, 0.05);
} #ht-maintenance-page {
min-height: 100vh;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
}
.ht-maintenance-bg {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: -1;
}
.maintenance-style2 #ht-maintenance-page {
width: 50%;
}
.maintenance-style2 .ht-maintenance-bg {
left: 50%;
}
.ht-maintenance-slide {
background-position: center;
background-size: cover;
min-height: 100vh;
}
.ht-maintenance-bg:after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 9;
}
body.video .ht-maintenance-bg:after {
background-image: url(//arosa.capital/wp-content/themes/square-plus/images/dot.png);
}
.ht-maintenance-page {
max-width: 1000px;
margin: 0 auto;
padding: 60px 40px;
}
.ht-maintenance-banner {
min-height: 100%;
background-size: cover;
background-position: center;
}
.ht-maintenance-video {
min-height: 100vh;
}
.ht-maintenance-logo {
margin-bottom: 40px;
}
.ht-maintenance-page h1 {
margin-bottom: 20px;
}
.ht-maintenance-countdown {
margin: 60px 0 30px;
}
.ht-maintenance-countdown > .ht-count-label {
display: inline-block;
margin: 0 40px 30px;
}
.ht-maintenance-countdown > .ht-count-label span {
display: block;
font-size: 60px;
line-height: 1.1;
margin-bottom: 5px;
font-weight: bold;
}
.ht-maintenance-countdown > .ht-count-label label {
text-transform: uppercase;
}
.ht-maintenance-page header {
font-size: 1.2rem;
margin-bottom: 30px;
}
.ht-maintenance-page footer {
margin-top: 80px;
}
.ht-maintenance-social a {
font-size: 28px;
margin: 0 15px;
text-align: center;
display: inline-block;
}
.ht-maintenance-social a i {
display: block;
}
.mbYTP_wrapper iframe {
margin-top: 0 !important;
top: 50% !important;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
.ht-slide-cap-title,
.ht-caption-no-bg .ht-slide-cap-title {
font-size: 40px;
font-size: 4vw;
margin-bottom: 10px;
}
.ht-banner-title,
.ht-main-banner.ht-caption-bg .ht-banner-title {
font-size: 40px;
font-size: 6vw;
margin-bottom: 10px;
}
.ht-slide-cap-desc,
.ht-banner-subtitle,
.ht-main-banner.ht-caption-bg .ht-banner-subtitle {
font-size: 14px;
font-size: 2.5vw;
}
.ht-team-col-4 .ht-team-member,
.ht-col-4 .ht-highlight-post,
.ht-blog-col-4 .ht-blog-box {
width: 33.33%;
}
.ht-pricing-col-4 .ht-pricing {
width: 28.33%;
}
.ht-team-col-4 .ht-team-member:nth-child(4n+1),
.ht-col-4 .ht-highlight-post:nth-child(4n+1),
.ht-pricing-col-4 .ht-pricing:nth-child(4n+1),
.ht-blog-col-4 .ht-blog-box:nth-child(4n+1) {
clear: none;
}
.ht-team-col-4 .ht-team-member:nth-child(3n+1),
.ht-col-4 .ht-highlight-post:nth-child(3n+1),
.ht-pricing-col-4 .ht-pricing:nth-child(3n+1),
.ht-blog-col-4 .ht-blog-box:nth-child(3n+1) {
clear: both;
}
.ht-team-grid .ht-team-member.style2 {
width: 50%;
}
.ht-team-grid .ht-team-member.style2:nth-child(3n+1) {
clear: none;
}
.ht-team-grid .ht-team-member.style2:nth-child(2n+1) {
clear: both;
}
.ht-col-6 .ht-featured-box,
.ht-col-5 .ht-featured-box {
width: 25%;
}
.ht-col-4 .ht-featured-box {
width: 33.33%;
}
.ht-col-6 .ht-featured-box:nth-child(6n+1),
.ht-col-5 .ht-featured-box:nth-child(5n+1),
.ht-col-4 .ht-featured-box:nth-child(4n+1) {
clear: none;
}
.ht-col-6 .ht-featured-box:nth-child(4n+1),
.ht-col-5 .ht-featured-box:nth-child(4n+1),
.ht-col-4 .ht-featured-box:nth-child(3n+1) {
clear: both;
}
.ht-counter-col-6 .ht-counter,
.ht-counter-col-5 .ht-counter {
width: 20%;
}
.ht-counter-col-4 .ht-counter {
width: 28.33%;
}
.ht-counter-col-6 .ht-counter:nth-child(6n+1),
.ht-counter-col-5 .ht-counter:nth-child(5n+1),
.ht-counter-col-4 .ht-counter:nth-child(4n+1) {
clear: none;
}
.ht-counter-col-6 .ht-counter:nth-child(4n+1),
.ht-counter-col-5 .ht-counter:nth-child(4n+1),
.ht-counter-col-4 .ht-counter:nth-child(3n+1) {
clear: both;
}
.ht-service-section.style2 .ht-service-posts {
display: block;
}
.ht-service-section.style2 .ht-section-title-tagline {
width: auto;
padding: 40px;
margin-bottom: 60px;
float: none;
}
.ht-service-section.style2 .ht-service-post-holder {
width: auto;
}
.ht-service-section.style3 .ht-service-bg {
display: none;
}
.ht-service-section.style3 .ht-service-post {
width: 50%;
}
.ht-logo-section .style2 .flipster-carousel .flip-items .flip-content {
width: 300px;
height: 300px;
}
}
@media screen and (max-width: 768px) {
.ht-main-banner {
background-attachment: scroll;
}
.ht-th-left,
.ht-th-right {
float: none;
width: auto;
max-width: none;
text-align: center;
}
.ht-th-left {
margin-bottom: 10px;
}
.ht-button {
height: auto;
}
.ht-section-title-top-center,
.ht-section-title-top-cs {
width: auto;
}
.ht-section-title-single-row {
display: block;
}
.ht-section-title-single-row .ht-section-title-wrap,
.ht-section-title-single-row .ht-section-tagline {
width: auto;
padding: 0;
border: 0;
}
.ht-flex-box {
display: block;
}
.ht-section-title-side,
.ht-section-title-side + .ht-section-content {
float: none;
width: auto;
padding: 0;
}
.ht-section-title-tagline.ht-section-title-side {
margin-bottom: 60px;
}
.ht-section-title-single-row .ht-section-title-wrap {
margin-bottom: 15px;
}
.ht-section-title-big .ht-section-super-title {
font-size: 4rem;
}
.ht-team-grid .ht-team-member {
width: 50%;
}
.ht-team-grid .ht-team-member:nth-child(3n+1) {
clear: none;
}
.ht-team-grid .ht-team-member:nth-child(2n+1) {
clear: both;
}
.ht-team-grid .ht-team-member.style2 {
width: 100%;
}
.ht-tab-wrap.style1 .ht-tabs,
.ht-tab-wrap.style2 .ht-tabs,
.ht-tab-wrap.style1 .ht-tab-content,
.ht-tab-wrap.style2 .ht-tab-content {
width: auto;
float: none;
padding: 20px 0;
}
.ht-tab-wrap.style2 .ht-tab.ht-active:after,
.ht-tab-wrap.style4 .ht-tab:after {
display: none;
}
.ht-tab-wrap.style3 .ht-tab,
.ht-tab-wrap.style4 .ht-tab,
.ht-tab-wrap.style5 .ht-tab {
display: block;
max-width: none;
margin-bottom: 20px;
}
.ht-tab-wrap.style5 .ht-tab {
padding-bottom: 20px;
}
.ht-tab-wrap.style5 .ht-tabs {
padding: 0 30px;
}
.ht-tab-wrap.style5 .ht-tab-content {
padding: 30px;
}
.ht-testimonial-wrap.style1 {
margin-left: 0;
margin-right: 0;
}
.ht-testimonial-wrap.style1 .ht-testimonial {
padding: 30px;
}
.ht-testimonial-section .style3 .ht-testimonial-box-wrap {
width: 50%;
}
.ht-testimonial-section .style3 .ht-testimonial-box:nth-child(3n+1) {
clear: none;
}
.ht-testimonial-section .style3 .ht-testimonial-box:nth-child(2n+1) {
clear: both;
}
.ht-testimonial-section .style4 .ht-testimonial-box {
-webkit-transform: scale(1);
transform: scale(1);
}
.ht-testimonial-section .ht-section-title-side + .ht-section-content .style4 .ht-testimonial-box {
opacity: 1;
}
#ht-about-section .ht-container {
display: block;
}
#ht-about-section .ht-about-sec {
width: auto;
float: none;
padding: 0;
margin-bottom: 30px;
}
#ht-about-section .ht-about-sidebar {
width: auto;
float: none;
padding: 0;
text-align: center;
}
.ht-news {
width: auto;
display: block;
}
.ht-news-image,
.ht-news-content {
width: auto !important;
float: none !important;
}
.ht-news-wrap.style1.owl-carousel .owl-stage-outer {
padding-top: 30px;
}
.ht-news-wrap.owl-carousel .owl-nav {
top: 30px;
}
.ht-news-wrap.style1 .ht-news-image {
margin-top: 40px;
}
.ht-news-section .style2 .ht-news-content {
padding: 40px
}
.ht-news-section .style2 .ht-news-image {
margin: 25px 0 40px;
padding-bottom: 53%;
}
.ht-highlight-post-wrap .ht-highlight-post {
width: 50%;
}
.ht-highlight-post-wrap .ht-highlight-post:nth-child(3n+1) {
clear: none;
}
.ht-highlight-post-wrap .ht-highlight-post:nth-child(2n+1) {
clear: both;
}
.ht-pricing-wrap .ht-pricing {
width: 45%;
}
.ht-pricing-wrap .ht-pricing:nth-child(3n+1) {
clear: none;
}
.ht-pricing-wrap .ht-pricing:nth-child(2n+1) {
clear: both;
}
#ht-featured-section .ht-featured-post-wrap .ht-featured-box {
width: 50%;
}
#ht-featured-section .ht-featured-post-wrap .ht-featured-box:nth-child(6n+1),
#ht-featured-section .ht-featured-post-wrap .ht-featured-box:nth-child(5n+1),
#ht-featured-section .ht-featured-post-wrap .ht-featured-box:nth-child(4n+1),
#ht-featured-section .ht-featured-post-wrap .ht-featured-box:nth-child(3n+1) {
clear: none;
}
#ht-featured-section .ht-featured-post-wrap .ht-featured-box:nth-child(2n+1) {
clear: both;
}
.ht-counter-wrap .ht-counter {
width: 45%;
}
.ht-counter-wrap .ht-counter:nth-child(6n+1),
.ht-counter-wrap .ht-counter:nth-child(5n+1),
.ht-counter-wrap .ht-counter:nth-child(4n+1),
.ht-counter-wrap .ht-counter:nth-child(3n+1) {
clear: none;
}
.ht-counter-wrap .ht-counter:nth-child(2n+1) {
clear: both;
}
.ht-service-bg {
display: none;
}
.ht-service-section.style1.ht-bg-left .ht-service-posts,
.ht-service-section.style4.ht-bg-left .ht-service-posts,
.ht-service-section.style1.ht-bg-right .ht-service-posts,
.ht-service-section.style4.ht-bg-right .ht-service-posts {
float: none;
width: auto;
padding: 0;
}
.ht-service-section.style1 .ht-service-post-holder {
padding: 0 60px;
}
.ht-service-section.style2 .ht-section-title-tagline {
margin-left: 0;
margin-right: 0;
padding: 30px;
}
.ht-service-section.style2 .ht-service-post-wrap {
padding: 0;
}
.ht-service-section.style3 .ht-service-post {
width: 100%;
}
.ht-service-section.style3 .ht-service-post:nth-child(odd) {
padding-right: 0;
padding-left: 100px;
text-align: left;
}
.ht-service-section.style3 .ht-service-post:nth-child(odd) .ht-service-icon {
float: left;
margin-left: -80px;
}
.ht-service-section.style4.ht-bg-left .ht-service-post-wrap {
margin-left: 0;
}
.ht-blog-wrap .ht-blog-box {
width: 50%;
}
.ht-blog-wrap .ht-blog-box:nth-child(3n+1) {
clear: none;
}
.ht-blog-wrap .ht-blog-box:nth-child(2n+1) {
clear: both;
}
.ht-contact-content {
display: block;
}
.ht-contact-form,
.ht-contact-detail {
width: auto;
}
.ht-cta-section.style4 .ht-container {
display: block;
}
.ht-cta-section.style4 .ht-section-title-tagline {
width: auto;
padding-right: 0;
margin-bottom: 30px;
}
.ht-cta-section.style4 .ht-cta-buttons {
width: auto;
}
.ht-logo-section .style2 .flipster-carousel .flip-items .flip-content {
width: 200px;
height: 200px;
}
.ht-logo-section .style3 .ht-logo-grid .ht-logo-item,
.ht-logo-section .style4 .ht-logo-grid .ht-logo-item {
width: 33.33%;
}
.ht-logo-section .style4 .ht-logo-grid .ht-logo-item {
border: 0 !important;
}
.ht-cta {
display: block;
}
.ht-cta-content-wrap {
width: 100%;
margin-bottom: 40px;
text-align: center;
}
.ht-cta.ht-button-right .ht-cta-buttons {
padding: 0;
text-align: center
}
.ht-contact-detail-on #ht-google-map {
position: relative;
width: 100%;
float: none;
right: 0;
padding-bottom: 60%;
margin-bottom: 50px;
}
#ht-google-map > iframe {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.ht-contact-content {
width: 100%;
float: none;
}
.footer-style2 .ht-main-footer-wrap {
display: block;
}
.footer-style2 .ht-footer {
border-right: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
margin: 0 !important;
padding: 40px 0;
}
.footer-style2 .ht-footer:last-child {
border-bottom: 0;
}
.ht-main-footer-wrap {
margin-left: 0 !important;
}
.ht-footer {
width: auto !important;
margin: 0 0 30px !important;
float: none !important;
}
.ht-footer:last-child {
margin-bottom: 0 !important;
}
#primary {
width: auto !important;
float: none !important;
margin-bottom: 30px;
}
#secondary {
width: auto !important;
float: none !important;
margin-bottom: 30px;
}
.square-plus-privacy-policy.bottom-left-float,
.square-plus-privacy-policy.bottom-right-float {
width: auto;
left: 40px;
right: 40px;
text-align: center;
}
.square-plus-privacy-policy.top-full-width .ht-container,
.square-plus-privacy-policy.bottom-full-width .ht-container {
display: block;
text-align: center;
}
.square-plus-privacy-policy.top-full-width .policy-text,
.square-plus-privacy-policy.bottom-full-width .policy-text {
margin-right: 0;
margin-bottom: 10px;
}
.square-plus-privacy-policy.top-full-width .policy-buttons,
.square-plus-privacy-policy.bottom-full-width .policy-buttons {
white-space: normal;
}
.square-plus-privacy-policy.top-full-width .policy-buttons a,
.square-plus-privacy-policy.bottom-full-width .policy-buttons a {
margin-top: 10px;
}
.maintenance-style2 .ht-maintenance-bg {
display: none;
}
.maintenance-style2 #ht-maintenance-page {
width: 100%;
}
}
@media screen and (max-width: 580px) {
body .ht-slide-caption,
body .ht-banner-caption {
width: 100%;
}
.ht-slide-cap-title {
font-size: 30px !important;
font-size: 6vw !important;
}
.ht-slide-cap-desc {
font-size: 14px !important;
font-size: 4vw !important;
}
.ht-banner-title {
font-size: 30px !important;
font-size: 8vw !important;
}
.ht-banner-subtitle {
font-size: 14px !important;
font-size: 5vw !important;
}
.ht-slide-button a,
.ht-banner-button a {
font-size: 2vw;
}
.ht-topheader-mobile-disable .ht-top-header {
display: none !important;
}
ul.square-plus-related-post-wrap {
margin-left: 0;
}
ul.square-plus-related-post-wrap li {
float: none;
width: auto;
margin: 0 0 30px;
}
.ht-image-box.image-left .ht-image-box-wrap,
.ht-image-box.image-right .ht-image-box-wrap {
display: block;
}
.ht-image-box.image-left .ht-ib-image,
.ht-image-box.image-right .ht-ib-image {
margin: 0 0 30px;
width: auto !important;
}
.ht-ib-content {
width: auto !important;
}
.ht-team-grid .ht-team-member {
width: 100%;
}
.ht-testimonial-wrap.style1 .ht-testimonial {
display: block;
}
.ht-testimonial-wrap.style1 .ht-testimonial-excerpt,
.ht-testimonial-wrap.style1 .ht-testimonial-person {
width: auto;
float: none;
padding: 0;
}
.ht-testimonial-wrap.style1 .ht-testimonial-excerpt {
margin-bottom: 30px;
}
.ht-testimonial-section .style3 .ht-testimonial-box-wrap {
width: 100%;
}
.ht-news-wrap.style1 .ht-news {
padding: 60px 30px 30px;
}
.ht-news-wrap.style2 .ht-news .ht-news-content {
padding: 30px;
}
.ht-highlight-post-wrap .ht-highlight-post {
width: 100%;
}
.ht-pricing-wrap .ht-pricing {
width: 95%;
}
#ht-featured-section .ht-featured-post-wrap .ht-featured-box {
width: 100%;
}
.ht-service-section.style2 .ht-service-post-wrap {
display: block;
}
.ht-service-section.style2 .ht-service-post {
width: auto;
margin: 30px 0;
}
.ht-blog-wrap .ht-blog-post img {
width: 100%;
}
.ht-blog-wrap .ht-blog-box {
width: 100%;
}
#ht-home-slider-section .owl-nav,
#ht-home-slider-section .owl-dots {
display: none;
}
.blog-layout2 .ht-post-info {
width: 30%;
}
.blog-layout2 .ht-post-info + .ht-post-content {
width: 70%;
}
.policy-hide-mobile,
.customizer-gdpr-section .square-plus-privacy-policy.policy-hide-mobile {
display: none !important;
}
}
@media screen and (max-width: 480px) {
.ht-banner-title {
font-size: 30px;
font-size: 9vw;
}
.ht-banner-subtitle {
font-size: 14px;
font-size: 5vw;
}
.ht-slide-button {
margin-top: 10px;
}
.ht-team-member.style2 .ht-team-member-inner {
display: block;
}
.ht-team-member.style2 .ht-team-content,
.ht-team-member.style2 .ht-team-image {
width: auto;
}
.ht-testimonial-wrap .ht-testimonial-excerpt {
width: auto;
}
.ht-testimonial-wrap .ht-testimonial-excerpt .icofont-quote-left {
left: 0;
}
.ht-counter-wrap .ht-counter {
width: 95%;
}
.ht-cta-buttons a {
display: block;
margin: 0 0 15px;
text-align: center;
}
.ht-logo-section .style3 .ht-logo-grid .ht-logo-item,
.ht-logo-section .style4 .ht-logo-grid .ht-logo-item {
width: 50%;
}
.blog-layout1 .entry-header {
display: block;
}
.blog-layout1 .ht-post-date {
width: auto;
float: none;
border-right: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
margin-bottom: 15px;
padding-bottom: 15px;
}
.blog-layout2 .entry-body {
padding: 20px;
}
.blog-layout2 .ht-post-info,
.blog-layout2 .ht-post-info + .ht-post-content {
width: auto;
float: none;
padding: 0;
}
.blog-layout2 .ht-post-info {
margin-bottom: 30px;
}
.blog-layout2 .entry-date {
margin-top: -20px;
margin-bottom: 0;
}
.blog-layout3 .ht-post-content {
padding: 20px 20px 0
}
.square-plus-hentry-wrap {
margin-left: 0;
}
.square-plus-hentry-wrap .blog-layout4.square-plus-hentry {
width: 100%;
float: none;
margin-left: 0;
}
.blog-layout4 .ht-post-content {
padding: 20px;
}
.ht-contact-box.style1 .ht-contact-field,
.ht-contact-box.style3 .ht-contact-field {
min-width: 100%;
}
.ht-contact-box.style1 .ht-contact-field > span {
border: none;
}
.ht-mobile-hide {
display: none !imporant;
}
.post-navigation .nav-links {
display: block;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
width: auto;
float: none;
padding: 0;
border: 0;
text-align: left;
margin-bottom: 20px;
}
} .tnp-widget-minimal form.tnp-form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.tnp-widget-minimal .tnp-form input.tnp-submit {
width: auto;
padding: 10px 30px;
}
.lg-outer + .elementor-lightbox {
display: none !important;
}